diff --git a/.github/workflows/snippets5000.yml b/.github/workflows/snippets5000.yml index d93d9390047..57fceb9bf92 100644 --- a/.github/workflows/snippets5000.yml +++ b/.github/workflows/snippets5000.yml @@ -1,4 +1,3 @@ -# This is a basic workflow to help you get started with Actions name: 'Snippets 5000' # Controls when the action will run. Triggers the workflow on push or pull request @@ -10,45 +9,41 @@ on: workflow_dispatch: inputs: reason: - description: 'The reason for running the workflow' + description: 'Run Snippets 5000 to compile code' required: true default: 'Manual run' env: - DOTNET_INSTALLER_CHANNEL: '8.0' - DOTNET_DO_INSTALL: 'false' # True to install preview versions, False to use the pre-installed (released) SDK + DOTNET_VERSION: '9.0.*' + DOTNET_QUALITY: 'preview' + DOTNET_DO_INSTALL: 'true' # To install a version of .NET not provided by the runner, set to true EnableNuGetPackageRestore: 'True' - repo: 'dotnet-api-docs' -# A workflow run is made up of one or more jobs that can run sequentially or in parallel jobs: - # This workflow contains a single job called "snippets-build" snippets-build: - # The type of runner that the job will run on runs-on: windows-2022 permissions: statuses: write - # Steps represent a sequence of tasks that will be executed as part of the job steps: - # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 #@v3.1.0 + # Check out the repository for the PR + - name: Check out repository + uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b #@v4.1.5 # Get the latest preview SDK (or sdk not installed by the runner) - - name: Setup .NET SDK + - name: Set up .NET SDK if: ${{ env.DOTNET_DO_INSTALL == 'true' }} - run: | - echo "Downloading dotnet-install.ps1" - Invoke-WebRequest https://raw.githubusercontent.com/dotnet/install-scripts/master/src/dotnet-install.ps1 -OutFile dotnet-install.ps1 - echo "Installing dotnet version ${{ env.DOTNET_INSTALLER_CHANNEL }}" - .\dotnet-install.ps1 -InstallDir "c:\program files\dotnet" -Channel "${{ env.DOTNET_INSTALLER_CHANNEL }}" -Quality preview + uses: actions/setup-dotnet@4d6c8fcf3c8f7a60068d26b594648e99df24cee3 #@4.0.0 + with: + dotnet-version: ${{ env.DOTNET_VERSION }} + dotnet-quality: ${{ env.DOTNET_QUALITY }} # Print dotnet info - name: Display .NET info run: | dotnet --info - # Clone docs tools repo + # Clone docs-tools repo - name: Clone docs-tools repository run: | git clone https://github.com/dotnet/docs-tools @@ -58,11 +53,4 @@ jobs: env: GitHubKey: ${{ secrets.GITHUB_TOKEN }} run: | - dotnet run --project docs-tools\snippets5000\Snippets5000\Snippets5000.csproj -- --sourcepath "${{ github.workspace }}" --pullrequest ${{ github.event.number }} --owner ${{ github.repository_owner }} --repo ${{ github.event.repository.name }} - - # Update build output json file - - name: Upload build results - uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce #@v3.1.2 - with: - name: build - path: ./output.json + dotnet run --project docs-tools/snippets5000/Snippets5000/Snippets5000.csproj -- --sourcepath "${{ github.workspace }}" --pullrequest ${{ github.event.number }} --owner ${{ github.repository_owner }} --repo ${{ github.event.repository.name }} diff --git a/snippets/csharp/System.Threading/Lock/Overview/Project.csproj b/snippets/csharp/System.Threading/Lock/Overview/Project.csproj new file mode 100644 index 00000000000..0ea05c389bc --- /dev/null +++ b/snippets/csharp/System.Threading/Lock/Overview/Project.csproj @@ -0,0 +1,8 @@ + + + Exe + net9.0 + + true + + diff --git a/snippets/csharp/System.Threading/Lock/Overview/UsagePatterns.cs b/snippets/csharp/System.Threading/Lock/Overview/UsagePatterns.cs new file mode 100644 index 00000000000..14294e99d8e --- /dev/null +++ b/snippets/csharp/System.Threading/Lock/Overview/UsagePatterns.cs @@ -0,0 +1,47 @@ +using System; +using System.Threading; + +static class Program +{ + private static void Main() + { + var dataStructure = new ExampleDataStructure(); + dataStructure.Modify(); + } +} + +// +public sealed class ExampleDataStructure +{ + private readonly Lock _lockObj = new(); + + public void Modify() + { + lock (_lockObj) + { + // Critical section associated with _lockObj + } + + using (_lockObj.EnterScope()) + { + // Critical section associated with _lockObj + } + + _lockObj.Enter(); + try + { + // Critical section associated with _lockObj + } + finally { _lockObj.Exit(); } + + if (_lockObj.TryEnter()) + { + try + { + // Critical section associated with _lockObj + } + finally { _lockObj.Exit(); } + } + } +} +// diff --git a/xml/FrameworksIndex/net-6.0.xml b/xml/FrameworksIndex/net-6.0.xml index 59c1bfbb8d0..d6e816e79ea 100644 --- a/xml/FrameworksIndex/net-6.0.xml +++ b/xml/FrameworksIndex/net-6.0.xml @@ -2,13 +2,13 @@ - - + + - - - + + + @@ -20,17 +20,17 @@ - + - - - - - + + + + + @@ -39,9 +39,9 @@ - + - + @@ -50,15 +50,15 @@ - + - - - - + + + + @@ -3193,9 +3193,11 @@ + + diff --git a/xml/FrameworksIndex/net-8.0.xml b/xml/FrameworksIndex/net-8.0.xml index 143a6c49e55..9b26f25246f 100644 --- a/xml/FrameworksIndex/net-8.0.xml +++ b/xml/FrameworksIndex/net-8.0.xml @@ -8,8 +8,8 @@ - - + + @@ -35,7 +35,7 @@ - + @@ -56,7 +56,7 @@ - + @@ -3515,9 +3515,11 @@ + + @@ -35646,6 +35648,7 @@ + @@ -35665,6 +35668,7 @@ + @@ -76655,6 +76659,7 @@ + @@ -76698,6 +76703,7 @@ + @@ -76885,7 +76891,9 @@ + + @@ -77215,6 +77223,7 @@ + @@ -77451,6 +77460,7 @@ + @@ -78781,6 +78791,8 @@ + + @@ -78828,6 +78840,10 @@ + + + + diff --git a/xml/FrameworksIndex/net-9.0.xml b/xml/FrameworksIndex/net-9.0.xml index c25a32d2bc4..1cfb1526acb 100644 --- a/xml/FrameworksIndex/net-9.0.xml +++ b/xml/FrameworksIndex/net-9.0.xml @@ -5,6 +5,7 @@ + @@ -385,6 +386,12 @@ + + + + + + @@ -408,6 +415,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -534,6 +598,10 @@ + + + + @@ -558,6 +626,10 @@ + + + + @@ -3508,9 +3580,11 @@ + + @@ -7309,6 +7383,7 @@ + @@ -7327,6 +7402,7 @@ + @@ -8257,6 +8333,8 @@ + + @@ -8428,6 +8506,7 @@ + @@ -8503,6 +8582,8 @@ + + @@ -9103,6 +9184,8 @@ + + @@ -11185,6 +11268,8 @@ + + @@ -11425,6 +11510,8 @@ + + @@ -11454,12 +11541,14 @@ + + @@ -11491,10 +11580,14 @@ + + + + @@ -11534,6 +11627,7 @@ + @@ -11578,12 +11672,15 @@ + + + @@ -14988,6 +15085,7 @@ + @@ -15007,6 +15105,7 @@ + @@ -34922,7 +35021,7 @@ - + @@ -35805,6 +35904,7 @@ + @@ -35824,6 +35924,7 @@ + @@ -37751,6 +37852,7 @@ + @@ -37785,6 +37887,7 @@ + @@ -37947,6 +38050,7 @@ + @@ -37957,6 +38061,7 @@ + @@ -38069,6 +38174,7 @@ + @@ -38095,6 +38201,7 @@ + @@ -39046,6 +39153,7 @@ + @@ -46948,6 +47056,8 @@ + + @@ -47359,11 +47469,15 @@ + + + + @@ -49522,6 +49636,8 @@ + + @@ -49536,6 +49652,8 @@ + + @@ -49595,6 +49713,9 @@ + + + @@ -49959,6 +50080,7 @@ + @@ -54004,6 +54126,7 @@ + @@ -54023,6 +54146,7 @@ + @@ -54895,6 +55019,8 @@ + + @@ -59332,11 +59458,15 @@ + + + + @@ -59587,11 +59717,15 @@ + + + + @@ -59842,11 +59976,15 @@ + + + + @@ -60093,11 +60231,15 @@ + + + + @@ -67483,6 +67625,7 @@ + @@ -67495,12 +67638,16 @@ + + + + @@ -67513,6 +67660,9 @@ + + + @@ -73011,18 +73161,24 @@ + + + + + + @@ -73521,6 +73677,7 @@ + @@ -73564,6 +73721,7 @@ + @@ -73751,7 +73909,9 @@ + + @@ -74081,6 +74241,7 @@ + @@ -74317,6 +74478,7 @@ + @@ -74963,6 +75125,7 @@ + @@ -75668,6 +75831,8 @@ + + @@ -75715,6 +75880,10 @@ + + + + @@ -75859,6 +76028,8 @@ + + @@ -75875,15 +76046,25 @@ + + + + + + + + + + diff --git a/xml/FrameworksIndex/netframework-4.6.2.xml b/xml/FrameworksIndex/netframework-4.6.2.xml index e8937fa2838..1ddb2d9876d 100644 --- a/xml/FrameworksIndex/netframework-4.6.2.xml +++ b/xml/FrameworksIndex/netframework-4.6.2.xml @@ -10,9 +10,10 @@ - + + @@ -56,7 +57,7 @@ - + @@ -618,6 +619,12 @@ + + + + + + @@ -641,6 +648,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -766,6 +830,10 @@ + + + + @@ -790,6 +858,10 @@ + + + + @@ -3695,9 +3767,11 @@ + + @@ -53442,6 +53516,7 @@ + @@ -53461,6 +53536,7 @@ + @@ -100066,6 +100142,7 @@ + @@ -100109,6 +100186,7 @@ + @@ -100296,7 +100374,9 @@ + + @@ -100626,6 +100706,7 @@ + @@ -100857,6 +100938,7 @@ + diff --git a/xml/FrameworksIndex/netframework-4.7.1.xml b/xml/FrameworksIndex/netframework-4.7.1.xml index 74a19d246ef..d84da9df982 100644 --- a/xml/FrameworksIndex/netframework-4.7.1.xml +++ b/xml/FrameworksIndex/netframework-4.7.1.xml @@ -10,9 +10,10 @@ - + + @@ -56,7 +57,7 @@ - + @@ -619,6 +620,12 @@ + + + + + + @@ -642,6 +649,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -767,6 +831,10 @@ + + + + @@ -791,6 +859,10 @@ + + + + @@ -3696,9 +3768,11 @@ + + @@ -53773,6 +53847,7 @@ + @@ -53792,6 +53867,7 @@ + @@ -100613,6 +100689,7 @@ + @@ -100656,6 +100733,7 @@ + @@ -100843,7 +100921,9 @@ + + @@ -101173,6 +101253,7 @@ + @@ -101404,6 +101485,7 @@ + diff --git a/xml/FrameworksIndex/netframework-4.7.2.xml b/xml/FrameworksIndex/netframework-4.7.2.xml index 4a66617b561..54989e53aa9 100644 --- a/xml/FrameworksIndex/netframework-4.7.2.xml +++ b/xml/FrameworksIndex/netframework-4.7.2.xml @@ -10,9 +10,10 @@ - + + @@ -56,7 +57,7 @@ - + @@ -621,6 +622,12 @@ + + + + + + @@ -644,6 +651,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -769,6 +833,10 @@ + + + + @@ -793,6 +861,10 @@ + + + + @@ -3698,9 +3770,11 @@ + + @@ -53856,6 +53930,7 @@ + @@ -53875,6 +53950,7 @@ + @@ -100815,6 +100891,7 @@ + @@ -100858,6 +100935,7 @@ + @@ -101045,7 +101123,9 @@ + + @@ -101375,6 +101455,7 @@ + @@ -101606,6 +101687,7 @@ + diff --git a/xml/FrameworksIndex/netframework-4.7.xml b/xml/FrameworksIndex/netframework-4.7.xml index 174107beea0..4f018012b93 100644 --- a/xml/FrameworksIndex/netframework-4.7.xml +++ b/xml/FrameworksIndex/netframework-4.7.xml @@ -10,9 +10,10 @@ - + + @@ -56,7 +57,7 @@ - + @@ -619,6 +620,12 @@ + + + + + + @@ -642,6 +649,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -767,6 +831,10 @@ + + + + @@ -791,6 +859,10 @@ + + + + @@ -3696,9 +3768,11 @@ + + @@ -53662,6 +53736,7 @@ + @@ -53681,6 +53756,7 @@ + @@ -100395,6 +100471,7 @@ + @@ -100438,6 +100515,7 @@ + @@ -100625,7 +100703,9 @@ + + @@ -100955,6 +101035,7 @@ + @@ -101186,6 +101267,7 @@ + diff --git a/xml/FrameworksIndex/netframework-4.8.1.xml b/xml/FrameworksIndex/netframework-4.8.1.xml index 5dcd5093f85..80d39f11231 100644 --- a/xml/FrameworksIndex/netframework-4.8.1.xml +++ b/xml/FrameworksIndex/netframework-4.8.1.xml @@ -10,9 +10,10 @@ - + + @@ -56,7 +57,7 @@ - + @@ -621,6 +622,12 @@ + + + + + + @@ -644,6 +651,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -769,6 +833,10 @@ + + + + @@ -793,6 +861,10 @@ + + + + @@ -3698,9 +3770,11 @@ + + @@ -53857,6 +53931,7 @@ + @@ -53876,6 +53951,7 @@ + @@ -100989,6 +101065,7 @@ + @@ -101032,6 +101109,7 @@ + @@ -101219,7 +101297,9 @@ + + @@ -101549,6 +101629,7 @@ + @@ -101780,6 +101861,7 @@ + diff --git a/xml/FrameworksIndex/netframework-4.8.xml b/xml/FrameworksIndex/netframework-4.8.xml index c5026f3879d..9f5971ae1ad 100644 --- a/xml/FrameworksIndex/netframework-4.8.xml +++ b/xml/FrameworksIndex/netframework-4.8.xml @@ -10,9 +10,10 @@ - + + @@ -56,7 +57,7 @@ - + @@ -621,6 +622,12 @@ + + + + + + @@ -644,6 +651,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -769,6 +833,10 @@ + + + + @@ -793,6 +861,10 @@ + + + + @@ -3698,9 +3770,11 @@ + + @@ -53857,6 +53931,7 @@ + @@ -53876,6 +53951,7 @@ + @@ -100989,6 +101065,7 @@ + @@ -101032,6 +101109,7 @@ + @@ -101219,7 +101297,9 @@ + + @@ -101549,6 +101629,7 @@ + @@ -101780,6 +101861,7 @@ + diff --git a/xml/FrameworksIndex/netstandard-2.0.xml b/xml/FrameworksIndex/netstandard-2.0.xml index 3d31659d50a..169b0e7a21e 100644 --- a/xml/FrameworksIndex/netstandard-2.0.xml +++ b/xml/FrameworksIndex/netstandard-2.0.xml @@ -8,12 +8,11 @@ + - - @@ -22,7 +21,6 @@ - @@ -180,6 +178,12 @@ + + + + + + @@ -203,6 +207,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -323,32 +384,15 @@ - - - - - - - - - - - - - - - - - - - - - + + + + @@ -373,6 +417,10 @@ + + + + @@ -390,38 +438,7 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -656,14 +673,6 @@ - - - - - - - - @@ -789,24 +798,6 @@ - - - - - - - - - - - - - - - - - - @@ -1047,9 +1038,6 @@ - - - @@ -30066,6 +30054,7 @@ + @@ -30085,6 +30074,7 @@ + @@ -59391,6 +59381,7 @@ + @@ -59434,6 +59425,7 @@ + @@ -59621,7 +59613,9 @@ + + @@ -59951,6 +59945,7 @@ + @@ -60182,6 +60177,7 @@ + diff --git a/xml/FrameworksIndex/netstandard-2.1.xml b/xml/FrameworksIndex/netstandard-2.1.xml index ca287b08af2..575afff3140 100644 --- a/xml/FrameworksIndex/netstandard-2.1.xml +++ b/xml/FrameworksIndex/netstandard-2.1.xml @@ -4,9 +4,10 @@ + - + @@ -23,6 +24,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/xml/FrameworksIndex/windowsdesktop-9.0.xml b/xml/FrameworksIndex/windowsdesktop-9.0.xml index 898be6b643c..19cb1301922 100644 --- a/xml/FrameworksIndex/windowsdesktop-9.0.xml +++ b/xml/FrameworksIndex/windowsdesktop-9.0.xml @@ -9477,7 +9477,7 @@ - + diff --git a/xml/Microsoft.Extensions.AmbientMetadata/ApplicationMetadata.xml b/xml/Microsoft.Extensions.AmbientMetadata/ApplicationMetadata.xml index 595f09d0dd6..f4beebf804d 100644 --- a/xml/Microsoft.Extensions.AmbientMetadata/ApplicationMetadata.xml +++ b/xml/Microsoft.Extensions.AmbientMetadata/ApplicationMetadata.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.AmbientMetadata.Application 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -41,7 +42,7 @@ Constructor Microsoft.Extensions.AmbientMetadata.Application - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -60,7 +61,7 @@ Property Microsoft.Extensions.AmbientMetadata.Application - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -90,7 +91,7 @@ Property Microsoft.Extensions.AmbientMetadata.Application - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -128,7 +129,7 @@ Property Microsoft.Extensions.AmbientMetadata.Application - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -166,7 +167,7 @@ Property Microsoft.Extensions.AmbientMetadata.Application - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.AsyncState/AsyncStateToken.xml b/xml/Microsoft.Extensions.AsyncState/AsyncStateToken.xml index 5e883ff9016..e77ed6fde93 100644 --- a/xml/Microsoft.Extensions.AsyncState/AsyncStateToken.xml +++ b/xml/Microsoft.Extensions.AsyncState/AsyncStateToken.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.AsyncState 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -45,7 +46,7 @@ Microsoft.Extensions.AsyncState - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -74,7 +75,7 @@ Method Microsoft.Extensions.AsyncState - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -109,7 +110,7 @@ Method Microsoft.Extensions.AsyncState - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -134,7 +135,7 @@ Method Microsoft.Extensions.AsyncState - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -165,7 +166,7 @@ Method Microsoft.Extensions.AsyncState - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.AsyncState/IAsyncContext`1.xml b/xml/Microsoft.Extensions.AsyncState/IAsyncContext`1.xml index 9a670efa1bc..24a508a423c 100644 --- a/xml/Microsoft.Extensions.AsyncState/IAsyncContext`1.xml +++ b/xml/Microsoft.Extensions.AsyncState/IAsyncContext`1.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.AsyncState 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -47,7 +48,7 @@ Method Microsoft.Extensions.AsyncState - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -76,7 +77,7 @@ Method Microsoft.Extensions.AsyncState - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -107,7 +108,7 @@ Method Microsoft.Extensions.AsyncState - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.AsyncState/IAsyncLocalContext`1.xml b/xml/Microsoft.Extensions.AsyncState/IAsyncLocalContext`1.xml index 5971bddd50e..fb5c39334d0 100644 --- a/xml/Microsoft.Extensions.AsyncState/IAsyncLocalContext`1.xml +++ b/xml/Microsoft.Extensions.AsyncState/IAsyncLocalContext`1.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.AsyncState 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.AsyncState/IAsyncState.xml b/xml/Microsoft.Extensions.AsyncState/IAsyncState.xml index ddf97f72364..22e5c74aba1 100644 --- a/xml/Microsoft.Extensions.AsyncState/IAsyncState.xml +++ b/xml/Microsoft.Extensions.AsyncState/IAsyncState.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.AsyncState 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -36,7 +37,7 @@ Method Microsoft.Extensions.AsyncState - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -65,7 +66,7 @@ Method Microsoft.Extensions.AsyncState - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -89,7 +90,7 @@ Method Microsoft.Extensions.AsyncState - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -114,7 +115,7 @@ Method Microsoft.Extensions.AsyncState - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -138,7 +139,7 @@ Method Microsoft.Extensions.AsyncState - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -168,7 +169,7 @@ Method Microsoft.Extensions.AsyncState - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Caching.Distributed/IBufferDistributedCache.xml b/xml/Microsoft.Extensions.Caching.Distributed/IBufferDistributedCache.xml new file mode 100644 index 00000000000..1d22b3979ea --- /dev/null +++ b/xml/Microsoft.Extensions.Caching.Distributed/IBufferDistributedCache.xml @@ -0,0 +1,162 @@ + + + + + + + + + Microsoft.Extensions.Caching.Hybrid + 9.0.0.0 + + + + Microsoft.Extensions.Caching.Distributed.IDistributedCache + + + + + [System.Runtime.CompilerServices.NullableContext(1)] + [<System.Runtime.CompilerServices.NullableContext(1)>] + + + + To be added. + To be added. + + + + + + + + + + Method + + Microsoft.Extensions.Caching.Hybrid + 9.0.0.0 + + + System.Void + + + + + + + [System.Runtime.CompilerServices.Nullable(0)] + [<System.Runtime.CompilerServices.Nullable(0)>] + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + + + + + + + + + Method + + Microsoft.Extensions.Caching.Hybrid + 9.0.0.0 + + + System.Threading.Tasks.ValueTask + + + + + + + [System.Runtime.CompilerServices.Nullable(0)] + [<System.Runtime.CompilerServices.Nullable(0)>] + + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + + + + + + + + + + Method + + Microsoft.Extensions.Caching.Hybrid + 9.0.0.0 + + + System.Boolean + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + + + + + + + + + Method + + Microsoft.Extensions.Caching.Hybrid + 9.0.0.0 + + + System.Threading.Tasks.ValueTask<System.Boolean> + + + [System.Runtime.CompilerServices.Nullable(0)] + [<System.Runtime.CompilerServices.Nullable(0)>] + + + + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + + + + diff --git a/xml/Microsoft.Extensions.Caching.Hybrid/HybridCache.xml b/xml/Microsoft.Extensions.Caching.Hybrid/HybridCache.xml new file mode 100644 index 00000000000..5a9b80289a3 --- /dev/null +++ b/xml/Microsoft.Extensions.Caching.Hybrid/HybridCache.xml @@ -0,0 +1,359 @@ + + + + + + + + + Microsoft.Extensions.Caching.Hybrid + 9.0.0.0 + + + System.Object + + + + + [System.Runtime.CompilerServices.Nullable(0)] + [<System.Runtime.CompilerServices.Nullable(0)>] + + + [System.Runtime.CompilerServices.NullableContext(1)] + [<System.Runtime.CompilerServices.NullableContext(1)>] + + + + To be added. + To be added. + + + + + + + + + Constructor + + Microsoft.Extensions.Caching.Hybrid + 9.0.0.0 + + + + To be added. + To be added. + + + + + + + + + Method + + Microsoft.Extensions.Caching.Hybrid + 9.0.0.0 + + + + [System.Runtime.CompilerServices.NullableContext(2)] + [<System.Runtime.CompilerServices.NullableContext(2)>] + + + + System.Threading.Tasks.ValueTask<T> + + + [System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 1 })] + [<System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 1 })>] + + + + + + + + + + + [System.Runtime.CompilerServices.Nullable(1)] + [<System.Runtime.CompilerServices.Nullable(1)>] + + + + + + + [System.Runtime.CompilerServices.Nullable(new System.Byte[] { 1, 0, 1 })] + [<System.Runtime.CompilerServices.Nullable(new System.Byte[] { 1, 0, 1 })>] + + + + + + + + [System.Runtime.CompilerServices.Nullable(new System.Byte[] { 2, 1 })] + [<System.Runtime.CompilerServices.Nullable(new System.Byte[] { 2, 1 })>] + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + + + + + + + + + Method + + Microsoft.Extensions.Caching.Hybrid + 9.0.0.0 + + + + [System.Runtime.CompilerServices.NullableContext(2)] + [<System.Runtime.CompilerServices.NullableContext(2)>] + + + + System.Threading.Tasks.ValueTask<T> + + + [System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 1 })] + [<System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 1 })>] + + + + + + + + + + + + [System.Runtime.CompilerServices.Nullable(1)] + [<System.Runtime.CompilerServices.Nullable(1)>] + + + + + + + [System.Runtime.CompilerServices.Nullable(1)] + [<System.Runtime.CompilerServices.Nullable(1)>] + + + + + + + [System.Runtime.CompilerServices.Nullable(new System.Byte[] { 1, 1, 0, 1 })] + [<System.Runtime.CompilerServices.Nullable(new System.Byte[] { 1, 1, 0, 1 })>] + + + + + + + + [System.Runtime.CompilerServices.Nullable(new System.Byte[] { 2, 1 })] + [<System.Runtime.CompilerServices.Nullable(new System.Byte[] { 2, 1 })>] + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + + + + + + + + + Method + + Microsoft.Extensions.Caching.Hybrid + 9.0.0.0 + + + System.Threading.Tasks.ValueTask + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + + + + + + + + + Method + + Microsoft.Extensions.Caching.Hybrid + 9.0.0.0 + + + System.Threading.Tasks.ValueTask + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + + + + + + + + + Method + + Microsoft.Extensions.Caching.Hybrid + 9.0.0.0 + + + System.Threading.Tasks.ValueTask + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + + + + + + + + + Method + + Microsoft.Extensions.Caching.Hybrid + 9.0.0.0 + + + System.Threading.Tasks.ValueTask + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + + + + + + + + + Method + + Microsoft.Extensions.Caching.Hybrid + 9.0.0.0 + + + System.Threading.Tasks.ValueTask + + + + + + [System.Runtime.CompilerServices.Nullable(2)] + [<System.Runtime.CompilerServices.Nullable(2)>] + + + + + + + + + + + [System.Runtime.CompilerServices.Nullable(2)] + [<System.Runtime.CompilerServices.Nullable(2)>] + + + + + + + [System.Runtime.CompilerServices.Nullable(new System.Byte[] { 2, 1 })] + [<System.Runtime.CompilerServices.Nullable(new System.Byte[] { 2, 1 })>] + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + + + + diff --git a/xml/Microsoft.Extensions.Caching.Hybrid/HybridCacheBuilderExtensions.xml b/xml/Microsoft.Extensions.Caching.Hybrid/HybridCacheBuilderExtensions.xml new file mode 100644 index 00000000000..f1fec1db248 --- /dev/null +++ b/xml/Microsoft.Extensions.Caching.Hybrid/HybridCacheBuilderExtensions.xml @@ -0,0 +1,186 @@ + + + + + + + + + Microsoft.Extensions.Caching.Hybrid + 9.0.0.0 + + + System.Object + + + + + [System.Runtime.CompilerServices.Nullable(0)] + [<System.Runtime.CompilerServices.Nullable(0)>] + + + [System.Runtime.CompilerServices.NullableContext(1)] + [<System.Runtime.CompilerServices.NullableContext(1)>] + + + + To be added. + To be added. + + + + + + + + + + Method + + Microsoft.Extensions.Caching.Hybrid + 9.0.0.0 + + + Microsoft.Extensions.Caching.Hybrid.IHybridCacheBuilder + + + + + + [System.Runtime.CompilerServices.Nullable(2)] + [<System.Runtime.CompilerServices.Nullable(2)>] + + + + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + + + + + + + + + + Method + + Microsoft.Extensions.Caching.Hybrid + 9.0.0.0 + + + Microsoft.Extensions.Caching.Hybrid.IHybridCacheBuilder + + + + + + [System.Runtime.CompilerServices.Nullable(2)] + [<System.Runtime.CompilerServices.Nullable(2)>] + + + + + + + [System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembers(System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicConstructors)] + [<System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembers(System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicConstructors)>] + + + + ReferenceTypeConstraint + Microsoft.Extensions.Caching.Hybrid.IHybridCacheSerializer<T> + + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + + + + + + + + + + Method + + Microsoft.Extensions.Caching.Hybrid + 9.0.0.0 + + + Microsoft.Extensions.Caching.Hybrid.IHybridCacheBuilder + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + + + + + + + + + + Method + + Microsoft.Extensions.Caching.Hybrid + 9.0.0.0 + + + Microsoft.Extensions.Caching.Hybrid.IHybridCacheBuilder + + + + + + [System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembers(System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicConstructors)] + [<System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembers(System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicConstructors)>] + + + + ReferenceTypeConstraint + Microsoft.Extensions.Caching.Hybrid.IHybridCacheSerializerFactory + + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + + + + diff --git a/xml/Microsoft.Extensions.Caching.Hybrid/HybridCacheEntryFlags.xml b/xml/Microsoft.Extensions.Caching.Hybrid/HybridCacheEntryFlags.xml new file mode 100644 index 00000000000..a934e43af1b --- /dev/null +++ b/xml/Microsoft.Extensions.Caching.Hybrid/HybridCacheEntryFlags.xml @@ -0,0 +1,207 @@ + + + + + + + + + Microsoft.Extensions.Caching.Hybrid + 9.0.0.0 + + + System.Enum + + + + [System.Flags] + [<System.Flags>] + + + + To be added. + To be added. + + + + + + + + + + Field + + Microsoft.Extensions.Caching.Hybrid + 9.0.0.0 + + + Microsoft.Extensions.Caching.Hybrid.HybridCacheEntryFlags + + 32 + + To be added. + + + + + + + + + + Field + + Microsoft.Extensions.Caching.Hybrid + 9.0.0.0 + + + Microsoft.Extensions.Caching.Hybrid.HybridCacheEntryFlags + + 12 + + To be added. + + + + + + + + + + Field + + Microsoft.Extensions.Caching.Hybrid + 9.0.0.0 + + + Microsoft.Extensions.Caching.Hybrid.HybridCacheEntryFlags + + 4 + + To be added. + + + + + + + + + + Field + + Microsoft.Extensions.Caching.Hybrid + 9.0.0.0 + + + Microsoft.Extensions.Caching.Hybrid.HybridCacheEntryFlags + + 8 + + To be added. + + + + + + + + + + Field + + Microsoft.Extensions.Caching.Hybrid + 9.0.0.0 + + + Microsoft.Extensions.Caching.Hybrid.HybridCacheEntryFlags + + 3 + + To be added. + + + + + + + + + + Field + + Microsoft.Extensions.Caching.Hybrid + 9.0.0.0 + + + Microsoft.Extensions.Caching.Hybrid.HybridCacheEntryFlags + + 1 + + To be added. + + + + + + + + + + Field + + Microsoft.Extensions.Caching.Hybrid + 9.0.0.0 + + + Microsoft.Extensions.Caching.Hybrid.HybridCacheEntryFlags + + 2 + + To be added. + + + + + + + + + + Field + + Microsoft.Extensions.Caching.Hybrid + 9.0.0.0 + + + Microsoft.Extensions.Caching.Hybrid.HybridCacheEntryFlags + + 16 + + To be added. + + + + + + + + + + Field + + Microsoft.Extensions.Caching.Hybrid + 9.0.0.0 + + + Microsoft.Extensions.Caching.Hybrid.HybridCacheEntryFlags + + 0 + + To be added. + + + + diff --git a/xml/Microsoft.Extensions.Caching.Hybrid/HybridCacheEntryOptions.xml b/xml/Microsoft.Extensions.Caching.Hybrid/HybridCacheEntryOptions.xml new file mode 100644 index 00000000000..36c6818a16e --- /dev/null +++ b/xml/Microsoft.Extensions.Caching.Hybrid/HybridCacheEntryOptions.xml @@ -0,0 +1,102 @@ + + + + + + + + + Microsoft.Extensions.Caching.Hybrid + 9.0.0.0 + + + System.Object + + + + To be added. + To be added. + + + + + + + + + Constructor + + Microsoft.Extensions.Caching.Hybrid + 9.0.0.0 + + + + To be added. + To be added. + + + + + + + + + + Property + + Microsoft.Extensions.Caching.Hybrid + 9.0.0.0 + + + System.Nullable<System.TimeSpan> + + + To be added. + To be added. + To be added. + + + + + + + + + + Property + + Microsoft.Extensions.Caching.Hybrid + 9.0.0.0 + + + System.Nullable<Microsoft.Extensions.Caching.Hybrid.HybridCacheEntryFlags> + + + To be added. + To be added. + To be added. + + + + + + + + + + Property + + Microsoft.Extensions.Caching.Hybrid + 9.0.0.0 + + + System.Nullable<System.TimeSpan> + + + To be added. + To be added. + To be added. + + + + diff --git a/xml/Microsoft.Extensions.Caching.Hybrid/HybridCacheOptions.xml b/xml/Microsoft.Extensions.Caching.Hybrid/HybridCacheOptions.xml new file mode 100644 index 00000000000..c8916cdfc27 --- /dev/null +++ b/xml/Microsoft.Extensions.Caching.Hybrid/HybridCacheOptions.xml @@ -0,0 +1,154 @@ + + + + + + + + + Microsoft.Extensions.Caching.Hybrid + 9.0.0.0 + + + System.Object + + + + + [System.Runtime.CompilerServices.Nullable(0)] + [<System.Runtime.CompilerServices.Nullable(0)>] + + + [System.Runtime.CompilerServices.NullableContext(2)] + [<System.Runtime.CompilerServices.NullableContext(2)>] + + + + To be added. + To be added. + + + + + + + + + Constructor + + Microsoft.Extensions.Caching.Hybrid + 9.0.0.0 + + + + To be added. + To be added. + + + + + + + + + + Property + + Microsoft.Extensions.Caching.Hybrid + 9.0.0.0 + + + Microsoft.Extensions.Caching.Hybrid.HybridCacheEntryOptions + + + To be added. + To be added. + To be added. + + + + + + + + + + Property + + Microsoft.Extensions.Caching.Hybrid + 9.0.0.0 + + + System.Boolean + + + To be added. + To be added. + To be added. + + + + + + + + + + Property + + Microsoft.Extensions.Caching.Hybrid + 9.0.0.0 + + + System.Int32 + + + To be added. + To be added. + To be added. + + + + + + + + + + Property + + Microsoft.Extensions.Caching.Hybrid + 9.0.0.0 + + + System.Int64 + + + To be added. + To be added. + To be added. + + + + + + + + + + Property + + Microsoft.Extensions.Caching.Hybrid + 9.0.0.0 + + + System.Boolean + + + To be added. + To be added. + To be added. + + + + diff --git a/xml/Microsoft.Extensions.Caching.Hybrid/HybridCacheServiceExtensions.xml b/xml/Microsoft.Extensions.Caching.Hybrid/HybridCacheServiceExtensions.xml new file mode 100644 index 00000000000..cb7fa84e4e2 --- /dev/null +++ b/xml/Microsoft.Extensions.Caching.Hybrid/HybridCacheServiceExtensions.xml @@ -0,0 +1,84 @@ + + + + + + + + + Microsoft.Extensions.Caching.Hybrid + 9.0.0.0 + + + System.Object + + + + + [System.Runtime.CompilerServices.Nullable(0)] + [<System.Runtime.CompilerServices.Nullable(0)>] + + + [System.Runtime.CompilerServices.NullableContext(1)] + [<System.Runtime.CompilerServices.NullableContext(1)>] + + + + To be added. + To be added. + + + + + + + + + + Method + + Microsoft.Extensions.Caching.Hybrid + 9.0.0.0 + + + Microsoft.Extensions.Caching.Hybrid.IHybridCacheBuilder + + + + + + To be added. + To be added. + To be added. + To be added. + + + + + + + + + + Method + + Microsoft.Extensions.Caching.Hybrid + 9.0.0.0 + + + Microsoft.Extensions.Caching.Hybrid.IHybridCacheBuilder + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + + + + diff --git a/xml/Microsoft.Extensions.Caching.Hybrid/IHybridCacheBuilder.xml b/xml/Microsoft.Extensions.Caching.Hybrid/IHybridCacheBuilder.xml new file mode 100644 index 00000000000..81f8fd4426a --- /dev/null +++ b/xml/Microsoft.Extensions.Caching.Hybrid/IHybridCacheBuilder.xml @@ -0,0 +1,46 @@ + + + + + + + + + Microsoft.Extensions.Caching.Hybrid + 9.0.0.0 + + + + + [System.Runtime.CompilerServices.NullableContext(1)] + [<System.Runtime.CompilerServices.NullableContext(1)>] + + + + To be added. + To be added. + + + + + + + + + + Property + + Microsoft.Extensions.Caching.Hybrid + 9.0.0.0 + + + Microsoft.Extensions.DependencyInjection.IServiceCollection + + + To be added. + To be added. + To be added. + + + + diff --git a/xml/Microsoft.Extensions.Caching.Hybrid/IHybridCacheSerializerFactory.xml b/xml/Microsoft.Extensions.Caching.Hybrid/IHybridCacheSerializerFactory.xml new file mode 100644 index 00000000000..ad185d1e2af --- /dev/null +++ b/xml/Microsoft.Extensions.Caching.Hybrid/IHybridCacheSerializerFactory.xml @@ -0,0 +1,65 @@ + + + + + + + + + Microsoft.Extensions.Caching.Hybrid + 9.0.0.0 + + + + + [System.Runtime.CompilerServices.NullableContext(2)] + [<System.Runtime.CompilerServices.NullableContext(2)>] + + + + To be added. + To be added. + + + + + + + + + + Method + + Microsoft.Extensions.Caching.Hybrid + 9.0.0.0 + + + System.Boolean + + + + + + + + + [System.Diagnostics.CodeAnalysis.NotNullWhen(true)] + [<System.Diagnostics.CodeAnalysis.NotNullWhen(true)>] + + + [System.Runtime.CompilerServices.Nullable(new System.Byte[] { 2, 1 })] + [<System.Runtime.CompilerServices.Nullable(new System.Byte[] { 2, 1 })>] + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + + + + diff --git a/xml/Microsoft.Extensions.Caching.Hybrid/IHybridCacheSerializer`1.xml b/xml/Microsoft.Extensions.Caching.Hybrid/IHybridCacheSerializer`1.xml new file mode 100644 index 00000000000..bc701b9e031 --- /dev/null +++ b/xml/Microsoft.Extensions.Caching.Hybrid/IHybridCacheSerializer`1.xml @@ -0,0 +1,93 @@ + + + + + + + + + Microsoft.Extensions.Caching.Hybrid + 9.0.0.0 + + + + + + [System.Runtime.CompilerServices.Nullable(2)] + [<System.Runtime.CompilerServices.Nullable(2)>] + + + + + + + To be added. + To be added. + To be added. + + + + + + + + + + Method + + Microsoft.Extensions.Caching.Hybrid + 9.0.0.0 + + + T + + + [System.Runtime.CompilerServices.Nullable(1)] + [<System.Runtime.CompilerServices.Nullable(1)>] + + + + + + + + To be added. + To be added. + To be added. + To be added. + + + + + + + + + + Method + + Microsoft.Extensions.Caching.Hybrid + 9.0.0.0 + + + + [System.Runtime.CompilerServices.NullableContext(1)] + [<System.Runtime.CompilerServices.NullableContext(1)>] + + + + System.Void + + + + + + + To be added. + To be added. + To be added. + To be added. + + + + diff --git a/xml/Microsoft.Extensions.Caching.Redis/RedisCache.xml b/xml/Microsoft.Extensions.Caching.Redis/RedisCache.xml deleted file mode 100644 index 85ec29df1a0..00000000000 --- a/xml/Microsoft.Extensions.Caching.Redis/RedisCache.xml +++ /dev/null @@ -1,315 +0,0 @@ - - - - - - - - - Microsoft.Extensions.Caching.Redis - 1.0.0.0 - 1.1.0.0 - 2.0.0.0 - 2.1.0.0 - 2.2.0.0 - - - System.Object - - - - Microsoft.Extensions.Caching.Distributed.IDistributedCache - - - System.IDisposable - - - - To be added. - To be added. - - - - - - - - - - Constructor - - Microsoft.Extensions.Caching.Redis - 2.2.0.0 - - - - - - To be added. - To be added. - To be added. - - - - - - - - - - Method - - M:System.IDisposable.Dispose - - - Microsoft.Extensions.Caching.Redis - 2.2.0.0 - - - System.Void - - - - Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. - To be added. - - - - - - - - - - Method - - M:Microsoft.Extensions.Caching.Distributed.IDistributedCache.Get(System.String) - - - Microsoft.Extensions.Caching.Redis - 2.2.0.0 - - - System.Byte[] - - - - - - A string identifying the requested value. - Gets a value with the given key. - The located value or . - To be added. - - - - - - - - - Method - - M:Microsoft.Extensions.Caching.Distributed.IDistributedCache.GetAsync(System.String,System.Threading.CancellationToken) - - - Microsoft.Extensions.Caching.Redis - 2.2.0.0 - - - System.Threading.Tasks.Task<System.Byte[]> - - - - - - - A string identifying the requested value. - Optional. The used to propagate notifications that the operation should be canceled. - Gets a value with the given key. - The that represents the asynchronous operation, containing the located value or . - This method stores in the task it returns all non-usage exceptions that the method's synchronous counterpart can throw. If an exception is stored into the returned task, that exception will be thrown when the task is awaited. Usage exceptions, such as , are still thrown synchronously. For the stored exceptions, see the exceptions thrown by . - The cancellation token was canceled. This exception is stored into the returned task. - - - - - - - - - - Method - - M:Microsoft.Extensions.Caching.Distributed.IDistributedCache.Refresh(System.String) - - - Microsoft.Extensions.Caching.Redis - 2.2.0.0 - - - System.Void - - - - - - A string identifying the requested value. - Refreshes a value in the cache based on its key, resetting its sliding expiration timeout (if any). - To be added. - - - - - - - - - Method - - M:Microsoft.Extensions.Caching.Distributed.IDistributedCache.RefreshAsync(System.String,System.Threading.CancellationToken) - - - Microsoft.Extensions.Caching.Redis - 2.2.0.0 - - - System.Threading.Tasks.Task - - - - - - - A string identifying the requested value. - Optional. The used to propagate notifications that the operation should be canceled. - Refreshes a value in the cache based on its key, resetting its sliding expiration timeout (if any). - The that represents the asynchronous operation. - This method stores in the task it returns all non-usage exceptions that the method's synchronous counterpart can throw. If an exception is stored into the returned task, that exception will be thrown when the task is awaited. Usage exceptions, such as , are still thrown synchronously. For the stored exceptions, see the exceptions thrown by . - The cancellation token was canceled. This exception is stored into the returned task. - - - - - - - - - - Method - - M:Microsoft.Extensions.Caching.Distributed.IDistributedCache.Remove(System.String) - - - Microsoft.Extensions.Caching.Redis - 2.2.0.0 - - - System.Void - - - - - - A string identifying the requested value. - Removes the value with the given key. - To be added. - - - - - - - - - Method - - M:Microsoft.Extensions.Caching.Distributed.IDistributedCache.RemoveAsync(System.String,System.Threading.CancellationToken) - - - Microsoft.Extensions.Caching.Redis - 2.2.0.0 - - - System.Threading.Tasks.Task - - - - - - - A string identifying the requested value. - Optional. The used to propagate notifications that the operation should be canceled. - Removes the value with the given key. - The that represents the asynchronous operation. - This method stores in the task it returns all non-usage exceptions that the method's synchronous counterpart can throw. If an exception is stored into the returned task, that exception will be thrown when the task is awaited. Usage exceptions, such as , are still thrown synchronously. For the stored exceptions, see the exceptions thrown by . - The cancellation token was canceled. This exception is stored into the returned task. - - - - - - - - - - Method - - M:Microsoft.Extensions.Caching.Distributed.IDistributedCache.Set(System.String,System.Byte[],Microsoft.Extensions.Caching.Distributed.DistributedCacheEntryOptions) - - - Microsoft.Extensions.Caching.Redis - 2.2.0.0 - - - System.Void - - - - - - - - A string identifying the requested value. - The value to set in the cache. - The cache options for the value. - Sets a value with the given key. - To be added. - - - - - - - - - Method - - M:Microsoft.Extensions.Caching.Distributed.IDistributedCache.SetAsync(System.String,System.Byte[],Microsoft.Extensions.Caching.Distributed.DistributedCacheEntryOptions,System.Threading.CancellationToken) - - - Microsoft.Extensions.Caching.Redis - 2.2.0.0 - - - System.Threading.Tasks.Task - - - - - - - - - A string identifying the requested value. - The value to set in the cache. - The cache options for the value. - Optional. The used to propagate notifications that the operation should be canceled. - Sets the value with the given key. - The that represents the asynchronous operation. - This method stores in the task it returns all non-usage exceptions that the method's synchronous counterpart can throw. If an exception is stored into the returned task, that exception will be thrown when the task is awaited. Usage exceptions, such as , are still thrown synchronously. For the stored exceptions, see the exceptions thrown by . - The cancellation token was canceled. This exception is stored into the returned task. - - - - diff --git a/xml/Microsoft.Extensions.Caching.Redis/RedisCacheOptions.xml b/xml/Microsoft.Extensions.Caching.Redis/RedisCacheOptions.xml deleted file mode 100644 index 26a9f71c40d..00000000000 --- a/xml/Microsoft.Extensions.Caching.Redis/RedisCacheOptions.xml +++ /dev/null @@ -1,135 +0,0 @@ - - - - - - - - - Microsoft.Extensions.Caching.Redis - 1.0.0.0 - 1.1.0.0 - 2.0.0.0 - 2.1.0.0 - 2.2.0.0 - - - System.Object - - - - Microsoft.Extensions.Options.IOptions<Microsoft.Extensions.Caching.Redis.RedisCacheOptions> - - - - Configuration options for . - To be added. - - - - - - - - - Constructor - - Microsoft.Extensions.Caching.Redis - 2.2.0.0 - - - - To be added. - To be added. - - - - - - - - - - Property - - Microsoft.Extensions.Caching.Redis - 2.2.0.0 - - - System.String - - - The configuration used to connect to Redis. - To be added. - To be added. - - - - - - - - - - Property - - Microsoft.Extensions.Caching.Redis - 2.2.0.0 - - - StackExchange.Redis.ConfigurationOptions - - - The configuration used to connect to Redis. - This is preferred over Configuration. - To be added. - To be added. - - - - - - - - - - Property - - Microsoft.Extensions.Caching.Redis - 2.2.0.0 - - - System.String - - - The Redis instance name. - To be added. - To be added. - - - - - - - - - - Property - - P:Microsoft.Extensions.Options.IOptions`1.Value - - - Microsoft.Extensions.Caching.Redis - 2.2.0.0 - - - Microsoft.Extensions.Caching.Redis.RedisCacheOptions - - - Gets the default configured instance. - An object that represents the Redis cache options. - To be added. - - - - diff --git a/xml/Microsoft.Extensions.Caching.SqlServer/SqlServerCache.xml b/xml/Microsoft.Extensions.Caching.SqlServer/SqlServerCache.xml index f54fd70f1ea..79eb12e8796 100644 --- a/xml/Microsoft.Extensions.Caching.SqlServer/SqlServerCache.xml +++ b/xml/Microsoft.Extensions.Caching.SqlServer/SqlServerCache.xml @@ -1,10 +1,15 @@ - - + + - - - + + + + + + + + Microsoft.Extensions.Caching.SqlServer 1.0.0.0 @@ -15,6 +20,7 @@ 3.0.0.0 3.1.0.0 8.0.4.0 + 8.0.5.0 9.0.0.0 @@ -24,6 +30,9 @@ Microsoft.Extensions.Caching.Distributed.IDistributedCache + + Microsoft.Extensions.Caching.Distributed.IBufferDistributedCache + @@ -50,7 +59,7 @@ Constructor Microsoft.Extensions.Caching.SqlServer - 8.0.4.0 + 8.0.5.0 9.0.0.0 @@ -75,7 +84,7 @@ Microsoft.Extensions.Caching.SqlServer - 8.0.4.0 + 8.0.5.0 9.0.0.0 @@ -109,7 +118,7 @@ Microsoft.Extensions.Caching.SqlServer - 8.0.4.0 + 8.0.5.0 9.0.0.0 @@ -134,6 +143,133 @@ The cancellation token was canceled. This exception is stored into the returned task. + + + + + + + + Method + + M:Microsoft.Extensions.Caching.Distributed.IBufferDistributedCache.Set(System.String,System.Buffers.ReadOnlySequence{System.Byte},Microsoft.Extensions.Caching.Distributed.DistributedCacheEntryOptions) + + + Microsoft.Extensions.Caching.SqlServer + 9.0.0.0 + + + System.Void + + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + + + + + + + + + + Method + + M:Microsoft.Extensions.Caching.Distributed.IBufferDistributedCache.SetAsync(System.String,System.Buffers.ReadOnlySequence{System.Byte},Microsoft.Extensions.Caching.Distributed.DistributedCacheEntryOptions,System.Threading.CancellationToken) + + + Microsoft.Extensions.Caching.SqlServer + 9.0.0.0 + + + System.Threading.Tasks.ValueTask + + + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + + + + + + + + + + Method + + M:Microsoft.Extensions.Caching.Distributed.IBufferDistributedCache.TryGet(System.String,System.Buffers.IBufferWriter{System.Byte}) + + + Microsoft.Extensions.Caching.SqlServer + 9.0.0.0 + + + System.Boolean + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + + + + + + + + + + Method + + M:Microsoft.Extensions.Caching.Distributed.IBufferDistributedCache.TryGetAsync(System.String,System.Buffers.IBufferWriter{System.Byte},System.Threading.CancellationToken) + + + Microsoft.Extensions.Caching.SqlServer + 9.0.0.0 + + + System.Threading.Tasks.ValueTask<System.Boolean> + + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + + @@ -147,7 +283,7 @@ Microsoft.Extensions.Caching.SqlServer - 8.0.4.0 + 8.0.5.0 9.0.0.0 @@ -174,7 +310,7 @@ Microsoft.Extensions.Caching.SqlServer - 8.0.4.0 + 8.0.5.0 9.0.0.0 @@ -206,7 +342,7 @@ Microsoft.Extensions.Caching.SqlServer - 8.0.4.0 + 8.0.5.0 9.0.0.0 @@ -233,7 +369,7 @@ Microsoft.Extensions.Caching.SqlServer - 8.0.4.0 + 8.0.5.0 9.0.0.0 @@ -265,7 +401,7 @@ Microsoft.Extensions.Caching.SqlServer - 8.0.4.0 + 8.0.5.0 9.0.0.0 @@ -296,7 +432,7 @@ Microsoft.Extensions.Caching.SqlServer - 8.0.4.0 + 8.0.5.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Caching.SqlServer/SqlServerCacheOptions.xml b/xml/Microsoft.Extensions.Caching.SqlServer/SqlServerCacheOptions.xml index c62902d90f3..750c10dd89a 100644 --- a/xml/Microsoft.Extensions.Caching.SqlServer/SqlServerCacheOptions.xml +++ b/xml/Microsoft.Extensions.Caching.SqlServer/SqlServerCacheOptions.xml @@ -15,6 +15,7 @@ 3.0.0.0 3.1.0.0 8.0.4.0 + 8.0.5.0 9.0.0.0 @@ -49,7 +50,7 @@ Constructor Microsoft.Extensions.Caching.SqlServer - 8.0.4.0 + 8.0.5.0 9.0.0.0 @@ -68,7 +69,7 @@ Property Microsoft.Extensions.Caching.SqlServer - 8.0.4.0 + 8.0.5.0 9.0.0.0 @@ -90,7 +91,7 @@ Property Microsoft.Extensions.Caching.SqlServer - 8.0.4.0 + 8.0.5.0 9.0.0.0 @@ -113,7 +114,7 @@ Property Microsoft.Extensions.Caching.SqlServer - 8.0.4.0 + 8.0.5.0 9.0.0.0 @@ -138,7 +139,7 @@ Microsoft.Extensions.Caching.SqlServer - 8.0.4.0 + 8.0.5.0 9.0.0.0 @@ -166,7 +167,7 @@ Property Microsoft.Extensions.Caching.SqlServer - 8.0.4.0 + 8.0.5.0 9.0.0.0 @@ -188,7 +189,7 @@ Property Microsoft.Extensions.Caching.SqlServer - 8.0.4.0 + 8.0.5.0 9.0.0.0 @@ -224,7 +225,7 @@ Property Microsoft.Extensions.Caching.SqlServer - 8.0.4.0 + 8.0.5.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Caching.StackExchangeRedis/RedisCache.xml b/xml/Microsoft.Extensions.Caching.StackExchangeRedis/RedisCache.xml index 91d44380c40..851528f2ecc 100644 --- a/xml/Microsoft.Extensions.Caching.StackExchangeRedis/RedisCache.xml +++ b/xml/Microsoft.Extensions.Caching.StackExchangeRedis/RedisCache.xml @@ -1,16 +1,22 @@ - - + + - - - + + + + + + + + Microsoft.Extensions.Caching.StackExchangeRedis 2.2.0.0 3.0.0.0 3.1.0.0 8.0.4.0 + 8.0.5.0 9.0.0.0 @@ -23,6 +29,9 @@ System.IDisposable + + Microsoft.Extensions.Caching.Distributed.IBufferDistributedCache + @@ -49,7 +58,7 @@ Constructor Microsoft.Extensions.Caching.StackExchangeRedis - 8.0.4.0 + 8.0.5.0 9.0.0.0 @@ -74,7 +83,7 @@ Microsoft.Extensions.Caching.StackExchangeRedis - 8.0.4.0 + 8.0.5.0 9.0.0.0 @@ -99,7 +108,7 @@ Microsoft.Extensions.Caching.StackExchangeRedis - 8.0.4.0 + 8.0.5.0 9.0.0.0 @@ -133,7 +142,7 @@ Microsoft.Extensions.Caching.StackExchangeRedis - 8.0.4.0 + 8.0.5.0 9.0.0.0 @@ -158,6 +167,133 @@ The cancellation token was canceled. This exception is stored into the returned task. + + + + + + + + Method + + M:Microsoft.Extensions.Caching.Distributed.IBufferDistributedCache.Set(System.String,System.Buffers.ReadOnlySequence{System.Byte},Microsoft.Extensions.Caching.Distributed.DistributedCacheEntryOptions) + + + Microsoft.Extensions.Caching.StackExchangeRedis + 9.0.0.0 + + + System.Void + + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + + + + + + + + + + Method + + M:Microsoft.Extensions.Caching.Distributed.IBufferDistributedCache.SetAsync(System.String,System.Buffers.ReadOnlySequence{System.Byte},Microsoft.Extensions.Caching.Distributed.DistributedCacheEntryOptions,System.Threading.CancellationToken) + + + Microsoft.Extensions.Caching.StackExchangeRedis + 9.0.0.0 + + + System.Threading.Tasks.ValueTask + + + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + + + + + + + + + + Method + + M:Microsoft.Extensions.Caching.Distributed.IBufferDistributedCache.TryGet(System.String,System.Buffers.IBufferWriter{System.Byte}) + + + Microsoft.Extensions.Caching.StackExchangeRedis + 9.0.0.0 + + + System.Boolean + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + + + + + + + + + + Method + + M:Microsoft.Extensions.Caching.Distributed.IBufferDistributedCache.TryGetAsync(System.String,System.Buffers.IBufferWriter{System.Byte},System.Threading.CancellationToken) + + + Microsoft.Extensions.Caching.StackExchangeRedis + 9.0.0.0 + + + System.Threading.Tasks.ValueTask<System.Boolean> + + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + + @@ -171,7 +307,7 @@ Microsoft.Extensions.Caching.StackExchangeRedis - 8.0.4.0 + 8.0.5.0 9.0.0.0 @@ -198,7 +334,7 @@ Microsoft.Extensions.Caching.StackExchangeRedis - 8.0.4.0 + 8.0.5.0 9.0.0.0 @@ -230,7 +366,7 @@ Microsoft.Extensions.Caching.StackExchangeRedis - 8.0.4.0 + 8.0.5.0 9.0.0.0 @@ -257,7 +393,7 @@ Microsoft.Extensions.Caching.StackExchangeRedis - 8.0.4.0 + 8.0.5.0 9.0.0.0 @@ -289,7 +425,7 @@ Microsoft.Extensions.Caching.StackExchangeRedis - 8.0.4.0 + 8.0.5.0 9.0.0.0 @@ -320,7 +456,7 @@ Microsoft.Extensions.Caching.StackExchangeRedis - 8.0.4.0 + 8.0.5.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Caching.StackExchangeRedis/RedisCacheOptions.xml b/xml/Microsoft.Extensions.Caching.StackExchangeRedis/RedisCacheOptions.xml index ddf4d7852b4..66ff54ac790 100644 --- a/xml/Microsoft.Extensions.Caching.StackExchangeRedis/RedisCacheOptions.xml +++ b/xml/Microsoft.Extensions.Caching.StackExchangeRedis/RedisCacheOptions.xml @@ -11,6 +11,7 @@ 3.0.0.0 3.1.0.0 8.0.4.0 + 8.0.5.0 9.0.0.0 @@ -45,7 +46,7 @@ Constructor Microsoft.Extensions.Caching.StackExchangeRedis - 8.0.4.0 + 8.0.5.0 9.0.0.0 @@ -64,7 +65,7 @@ Property Microsoft.Extensions.Caching.StackExchangeRedis - 8.0.4.0 + 8.0.5.0 9.0.0.0 @@ -86,7 +87,7 @@ Property Microsoft.Extensions.Caching.StackExchangeRedis - 8.0.4.0 + 8.0.5.0 9.0.0.0 @@ -109,7 +110,7 @@ Property Microsoft.Extensions.Caching.StackExchangeRedis - 8.0.4.0 + 8.0.5.0 9.0.0.0 @@ -137,7 +138,7 @@ Property Microsoft.Extensions.Caching.StackExchangeRedis - 8.0.4.0 + 8.0.5.0 9.0.0.0 @@ -162,7 +163,7 @@ Microsoft.Extensions.Caching.StackExchangeRedis - 8.0.4.0 + 8.0.5.0 9.0.0.0 @@ -190,7 +191,7 @@ Property Microsoft.Extensions.Caching.StackExchangeRedis - 8.0.4.0 + 8.0.5.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Compliance.Classification/DataClassification.xml b/xml/Microsoft.Extensions.Compliance.Classification/DataClassification.xml index fba037b84b0..2007b0f3bc3 100644 --- a/xml/Microsoft.Extensions.Compliance.Classification/DataClassification.xml +++ b/xml/Microsoft.Extensions.Compliance.Classification/DataClassification.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Compliance.Abstractions 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -50,7 +51,7 @@ Constructor Microsoft.Extensions.Compliance.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -79,7 +80,7 @@ Microsoft.Extensions.Compliance.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -108,7 +109,7 @@ Method Microsoft.Extensions.Compliance.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -143,7 +144,7 @@ Method Microsoft.Extensions.Compliance.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -168,7 +169,7 @@ Property Microsoft.Extensions.Compliance.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -192,7 +193,7 @@ Method Microsoft.Extensions.Compliance.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -223,7 +224,7 @@ Method Microsoft.Extensions.Compliance.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -254,7 +255,7 @@ Property Microsoft.Extensions.Compliance.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -278,7 +279,7 @@ Method Microsoft.Extensions.Compliance.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -303,7 +304,7 @@ Property Microsoft.Extensions.Compliance.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -327,7 +328,7 @@ Property Microsoft.Extensions.Compliance.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Compliance.Classification/DataClassificationAttribute.xml b/xml/Microsoft.Extensions.Compliance.Classification/DataClassificationAttribute.xml index f48694a563f..71674945c4f 100644 --- a/xml/Microsoft.Extensions.Compliance.Classification/DataClassificationAttribute.xml +++ b/xml/Microsoft.Extensions.Compliance.Classification/DataClassificationAttribute.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Compliance.Abstractions 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -46,7 +47,7 @@ Constructor Microsoft.Extensions.Compliance.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -70,7 +71,7 @@ Property Microsoft.Extensions.Compliance.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -94,7 +95,7 @@ Property Microsoft.Extensions.Compliance.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Compliance.Classification/DataClassificationSet.xml b/xml/Microsoft.Extensions.Compliance.Classification/DataClassificationSet.xml index 91bf93d514a..5c093c10476 100644 --- a/xml/Microsoft.Extensions.Compliance.Classification/DataClassificationSet.xml +++ b/xml/Microsoft.Extensions.Compliance.Classification/DataClassificationSet.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Compliance.Abstractions 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -46,7 +47,7 @@ Constructor Microsoft.Extensions.Compliance.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -70,7 +71,7 @@ Constructor Microsoft.Extensions.Compliance.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -101,7 +102,7 @@ Constructor Microsoft.Extensions.Compliance.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -128,7 +129,7 @@ Microsoft.Extensions.Compliance.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -163,7 +164,7 @@ Method Microsoft.Extensions.Compliance.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -198,7 +199,7 @@ Method Microsoft.Extensions.Compliance.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -226,7 +227,7 @@ Method Microsoft.Extensions.Compliance.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -251,7 +252,7 @@ Method Microsoft.Extensions.Compliance.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -279,7 +280,7 @@ Method Microsoft.Extensions.Compliance.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -304,7 +305,7 @@ Method Microsoft.Extensions.Compliance.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Compliance.Classification/NoDataClassificationAttribute.xml b/xml/Microsoft.Extensions.Compliance.Classification/NoDataClassificationAttribute.xml index 6561104e18a..2453daad455 100644 --- a/xml/Microsoft.Extensions.Compliance.Classification/NoDataClassificationAttribute.xml +++ b/xml/Microsoft.Extensions.Compliance.Classification/NoDataClassificationAttribute.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Compliance.Abstractions 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -31,7 +32,7 @@ Constructor Microsoft.Extensions.Compliance.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Compliance.Classification/UnknownDataClassificationAttribute.xml b/xml/Microsoft.Extensions.Compliance.Classification/UnknownDataClassificationAttribute.xml index 043f0475a36..fcff3fe73de 100644 --- a/xml/Microsoft.Extensions.Compliance.Classification/UnknownDataClassificationAttribute.xml +++ b/xml/Microsoft.Extensions.Compliance.Classification/UnknownDataClassificationAttribute.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Compliance.Abstractions 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -31,7 +32,7 @@ Constructor Microsoft.Extensions.Compliance.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Compliance.Redaction/ErasingRedactor.xml b/xml/Microsoft.Extensions.Compliance.Redaction/ErasingRedactor.xml index a8e20c2222c..26abfe3e9e9 100644 --- a/xml/Microsoft.Extensions.Compliance.Redaction/ErasingRedactor.xml +++ b/xml/Microsoft.Extensions.Compliance.Redaction/ErasingRedactor.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Compliance.Redaction 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -31,7 +32,7 @@ Constructor Microsoft.Extensions.Compliance.Redaction - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -50,7 +51,7 @@ Method Microsoft.Extensions.Compliance.Redaction - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -77,7 +78,7 @@ Property Microsoft.Extensions.Compliance.Redaction - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -111,7 +112,7 @@ Method Microsoft.Extensions.Compliance.Redaction - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Compliance.Redaction/FakeRedactionBuilderExtensions.xml b/xml/Microsoft.Extensions.Compliance.Redaction/FakeRedactionBuilderExtensions.xml index d36f54b1da6..9f28eefcd21 100644 --- a/xml/Microsoft.Extensions.Compliance.Redaction/FakeRedactionBuilderExtensions.xml +++ b/xml/Microsoft.Extensions.Compliance.Redaction/FakeRedactionBuilderExtensions.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Compliance.Testing 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -42,7 +43,7 @@ Method Microsoft.Extensions.Compliance.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -81,7 +82,7 @@ Method Microsoft.Extensions.Compliance.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -122,7 +123,7 @@ Method Microsoft.Extensions.Compliance.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Compliance.Redaction/HmacRedactor.xml b/xml/Microsoft.Extensions.Compliance.Redaction/HmacRedactor.xml index 9b873c7d101..960faaf5286 100644 --- a/xml/Microsoft.Extensions.Compliance.Redaction/HmacRedactor.xml +++ b/xml/Microsoft.Extensions.Compliance.Redaction/HmacRedactor.xml @@ -8,6 +8,7 @@ Microsoft.Extensions.Compliance.Redaction 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -31,7 +32,7 @@ Constructor Microsoft.Extensions.Compliance.Redaction - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -61,7 +62,7 @@ Method Microsoft.Extensions.Compliance.Redaction - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -88,7 +89,7 @@ Method Microsoft.Extensions.Compliance.Redaction - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Compliance.Redaction/HmacRedactorOptions.xml b/xml/Microsoft.Extensions.Compliance.Redaction/HmacRedactorOptions.xml index 708e8ba0ef3..b8df84ad53f 100644 --- a/xml/Microsoft.Extensions.Compliance.Redaction/HmacRedactorOptions.xml +++ b/xml/Microsoft.Extensions.Compliance.Redaction/HmacRedactorOptions.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Compliance.Redaction 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -41,7 +42,7 @@ Constructor Microsoft.Extensions.Compliance.Redaction - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -60,7 +61,7 @@ Property Microsoft.Extensions.Compliance.Redaction - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -105,7 +106,7 @@ Property Microsoft.Extensions.Compliance.Redaction - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Compliance.Redaction/IRedactionBuilder.xml b/xml/Microsoft.Extensions.Compliance.Redaction/IRedactionBuilder.xml index 62194095fdd..90c6d741846 100644 --- a/xml/Microsoft.Extensions.Compliance.Redaction/IRedactionBuilder.xml +++ b/xml/Microsoft.Extensions.Compliance.Redaction/IRedactionBuilder.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Compliance.Abstractions 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -35,7 +36,7 @@ Property Microsoft.Extensions.Compliance.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -59,7 +60,7 @@ Method Microsoft.Extensions.Compliance.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -102,7 +103,7 @@ Method Microsoft.Extensions.Compliance.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Compliance.Redaction/IRedactorProvider.xml b/xml/Microsoft.Extensions.Compliance.Redaction/IRedactorProvider.xml index e988be89218..c3c221ac028 100644 --- a/xml/Microsoft.Extensions.Compliance.Redaction/IRedactorProvider.xml +++ b/xml/Microsoft.Extensions.Compliance.Redaction/IRedactorProvider.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Compliance.Abstractions 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -35,7 +36,7 @@ Method Microsoft.Extensions.Compliance.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Compliance.Redaction/NullRedactor.xml b/xml/Microsoft.Extensions.Compliance.Redaction/NullRedactor.xml index 990f149ed32..0252a5b7e6d 100644 --- a/xml/Microsoft.Extensions.Compliance.Redaction/NullRedactor.xml +++ b/xml/Microsoft.Extensions.Compliance.Redaction/NullRedactor.xml @@ -13,6 +13,7 @@ Microsoft.Extensions.Compliance.Abstractions 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -49,7 +50,7 @@ Microsoft.Extensions.Compliance.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -72,7 +73,7 @@ Microsoft.Extensions.Compliance.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -109,7 +110,7 @@ Microsoft.Extensions.Compliance.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -137,7 +138,7 @@ Microsoft.Extensions.Compliance.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -175,7 +176,7 @@ Microsoft.Extensions.Compliance.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Compliance.Redaction/NullRedactorProvider.xml b/xml/Microsoft.Extensions.Compliance.Redaction/NullRedactorProvider.xml index ccf50eedfa7..5c2019c58ac 100644 --- a/xml/Microsoft.Extensions.Compliance.Redaction/NullRedactorProvider.xml +++ b/xml/Microsoft.Extensions.Compliance.Redaction/NullRedactorProvider.xml @@ -13,6 +13,7 @@ Microsoft.Extensions.Compliance.Abstractions 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -53,7 +54,7 @@ Microsoft.Extensions.Compliance.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -75,7 +76,7 @@ Microsoft.Extensions.Compliance.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -106,7 +107,7 @@ Microsoft.Extensions.Compliance.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Compliance.Redaction/RedactionExtensions.xml b/xml/Microsoft.Extensions.Compliance.Redaction/RedactionExtensions.xml index 199eb547975..4165b72adb4 100644 --- a/xml/Microsoft.Extensions.Compliance.Redaction/RedactionExtensions.xml +++ b/xml/Microsoft.Extensions.Compliance.Redaction/RedactionExtensions.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Compliance.Redaction 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -42,7 +43,7 @@ Method Microsoft.Extensions.Compliance.Redaction - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -83,7 +84,7 @@ Method Microsoft.Extensions.Compliance.Redaction - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Compliance.Redaction/Redactor.xml b/xml/Microsoft.Extensions.Compliance.Redaction/Redactor.xml index 5f929dcca1a..8d69a2c9324 100644 --- a/xml/Microsoft.Extensions.Compliance.Redaction/Redactor.xml +++ b/xml/Microsoft.Extensions.Compliance.Redaction/Redactor.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Compliance.Abstractions 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -31,7 +32,7 @@ Constructor Microsoft.Extensions.Compliance.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -50,7 +51,7 @@ Method Microsoft.Extensions.Compliance.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -78,7 +79,7 @@ Method Microsoft.Extensions.Compliance.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -112,7 +113,7 @@ Method Microsoft.Extensions.Compliance.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -140,7 +141,7 @@ Method Microsoft.Extensions.Compliance.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -185,7 +186,7 @@ Method Microsoft.Extensions.Compliance.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -217,7 +218,7 @@ Method Microsoft.Extensions.Compliance.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -257,7 +258,7 @@ Method Microsoft.Extensions.Compliance.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -314,7 +315,7 @@ Method Microsoft.Extensions.Compliance.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -382,7 +383,7 @@ Method Microsoft.Extensions.Compliance.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Compliance.Testing/FakeRedactionCollector.xml b/xml/Microsoft.Extensions.Compliance.Testing/FakeRedactionCollector.xml index 7b9ac23fe98..93e71decbac 100644 --- a/xml/Microsoft.Extensions.Compliance.Testing/FakeRedactionCollector.xml +++ b/xml/Microsoft.Extensions.Compliance.Testing/FakeRedactionCollector.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Compliance.Testing 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -41,7 +42,7 @@ Constructor Microsoft.Extensions.Compliance.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -60,7 +61,7 @@ Property Microsoft.Extensions.Compliance.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -84,7 +85,7 @@ Property Microsoft.Extensions.Compliance.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -108,7 +109,7 @@ Property Microsoft.Extensions.Compliance.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -133,7 +134,7 @@ Property Microsoft.Extensions.Compliance.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Compliance.Testing/FakeRedactor.xml b/xml/Microsoft.Extensions.Compliance.Testing/FakeRedactor.xml index ddfce0d5ce5..381198094a1 100644 --- a/xml/Microsoft.Extensions.Compliance.Testing/FakeRedactor.xml +++ b/xml/Microsoft.Extensions.Compliance.Testing/FakeRedactor.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Compliance.Testing 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -41,7 +42,7 @@ Constructor Microsoft.Extensions.Compliance.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -79,7 +80,7 @@ Method Microsoft.Extensions.Compliance.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -115,7 +116,7 @@ Property Microsoft.Extensions.Compliance.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -139,7 +140,7 @@ Method Microsoft.Extensions.Compliance.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -172,7 +173,7 @@ Method Microsoft.Extensions.Compliance.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Compliance.Testing/FakeRedactorOptions.xml b/xml/Microsoft.Extensions.Compliance.Testing/FakeRedactorOptions.xml index 445e6958d8f..1eb09185190 100644 --- a/xml/Microsoft.Extensions.Compliance.Testing/FakeRedactorOptions.xml +++ b/xml/Microsoft.Extensions.Compliance.Testing/FakeRedactorOptions.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Compliance.Testing 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -41,7 +42,7 @@ Constructor Microsoft.Extensions.Compliance.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -60,7 +61,7 @@ Property Microsoft.Extensions.Compliance.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Compliance.Testing/FakeRedactorProvider.xml b/xml/Microsoft.Extensions.Compliance.Testing/FakeRedactorProvider.xml index c1da5ba1686..c26eaf828c0 100644 --- a/xml/Microsoft.Extensions.Compliance.Testing/FakeRedactorProvider.xml +++ b/xml/Microsoft.Extensions.Compliance.Testing/FakeRedactorProvider.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Compliance.Testing 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -45,7 +46,7 @@ Constructor Microsoft.Extensions.Compliance.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -77,7 +78,7 @@ Property Microsoft.Extensions.Compliance.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -104,7 +105,7 @@ Microsoft.Extensions.Compliance.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Compliance.Testing/FakeTaxonomy.xml b/xml/Microsoft.Extensions.Compliance.Testing/FakeTaxonomy.xml index 42f532d3713..e03e34122ce 100644 --- a/xml/Microsoft.Extensions.Compliance.Testing/FakeTaxonomy.xml +++ b/xml/Microsoft.Extensions.Compliance.Testing/FakeTaxonomy.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Compliance.Testing 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -42,7 +43,7 @@ Property Microsoft.Extensions.Compliance.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -66,7 +67,7 @@ Property Microsoft.Extensions.Compliance.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -90,7 +91,7 @@ Property Microsoft.Extensions.Compliance.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Compliance.Testing/PrivateDataAttribute.xml b/xml/Microsoft.Extensions.Compliance.Testing/PrivateDataAttribute.xml index 85d98459bc7..acb7bdcaeff 100644 --- a/xml/Microsoft.Extensions.Compliance.Testing/PrivateDataAttribute.xml +++ b/xml/Microsoft.Extensions.Compliance.Testing/PrivateDataAttribute.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Compliance.Testing 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -31,7 +32,7 @@ Constructor Microsoft.Extensions.Compliance.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Compliance.Testing/PublicDataAttribute.xml b/xml/Microsoft.Extensions.Compliance.Testing/PublicDataAttribute.xml index d5b4766a0b1..62a0a6ceb36 100644 --- a/xml/Microsoft.Extensions.Compliance.Testing/PublicDataAttribute.xml +++ b/xml/Microsoft.Extensions.Compliance.Testing/PublicDataAttribute.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Compliance.Testing 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -31,7 +32,7 @@ Constructor Microsoft.Extensions.Compliance.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Compliance.Testing/RedactedData.xml b/xml/Microsoft.Extensions.Compliance.Testing/RedactedData.xml index 63be4d16ddc..ecdd6d078ea 100644 --- a/xml/Microsoft.Extensions.Compliance.Testing/RedactedData.xml +++ b/xml/Microsoft.Extensions.Compliance.Testing/RedactedData.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Compliance.Testing 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -50,7 +51,7 @@ Constructor Microsoft.Extensions.Compliance.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -81,7 +82,7 @@ Microsoft.Extensions.Compliance.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -110,7 +111,7 @@ Method Microsoft.Extensions.Compliance.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -145,7 +146,7 @@ Method Microsoft.Extensions.Compliance.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -170,7 +171,7 @@ Method Microsoft.Extensions.Compliance.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -201,7 +202,7 @@ Method Microsoft.Extensions.Compliance.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -232,7 +233,7 @@ Property Microsoft.Extensions.Compliance.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -256,7 +257,7 @@ Property Microsoft.Extensions.Compliance.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -280,7 +281,7 @@ Property Microsoft.Extensions.Compliance.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Compliance.Testing/RedactorRequested.xml b/xml/Microsoft.Extensions.Compliance.Testing/RedactorRequested.xml index 701cd76b392..e9335d0f2a9 100644 --- a/xml/Microsoft.Extensions.Compliance.Testing/RedactorRequested.xml +++ b/xml/Microsoft.Extensions.Compliance.Testing/RedactorRequested.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Compliance.Testing 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -50,7 +51,7 @@ Constructor Microsoft.Extensions.Compliance.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -76,7 +77,7 @@ Property Microsoft.Extensions.Compliance.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -103,7 +104,7 @@ Microsoft.Extensions.Compliance.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -132,7 +133,7 @@ Method Microsoft.Extensions.Compliance.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -167,7 +168,7 @@ Method Microsoft.Extensions.Compliance.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -192,7 +193,7 @@ Method Microsoft.Extensions.Compliance.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -223,7 +224,7 @@ Method Microsoft.Extensions.Compliance.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -254,7 +255,7 @@ Property Microsoft.Extensions.Compliance.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Configuration.AzureKeyVault/AzureKeyVaultConfigurationOptions.xml b/xml/Microsoft.Extensions.Configuration.AzureKeyVault/AzureKeyVaultConfigurationOptions.xml deleted file mode 100644 index d189850a870..00000000000 --- a/xml/Microsoft.Extensions.Configuration.AzureKeyVault/AzureKeyVaultConfigurationOptions.xml +++ /dev/null @@ -1,196 +0,0 @@ - - - - - - - - - Microsoft.Extensions.Configuration.AzureKeyVault - 3.0.0.0 - 3.1.0.0 - 3.1.24.0 - - - System.Object - - - - Options class used by the . - To be added. - - - - - - - - - Constructor - - Microsoft.Extensions.Configuration.AzureKeyVault - 3.1.24.0 - - - - Creates a new instance of . - To be added. - - - - - - - - - - Constructor - - Microsoft.Extensions.Configuration.AzureKeyVault - 3.1.24.0 - - - - - - The Azure KeyVault uri. - Creates a new instance of . - To be added. - - - - - - - - - - Constructor - - Microsoft.Extensions.Configuration.AzureKeyVault - 3.1.24.0 - - - - - - - - Azure KeyVault uri. - The application client id. - The to use for authentication. - Creates a new instance of . - To be added. - - - - - - - - - - Constructor - - Microsoft.Extensions.Configuration.AzureKeyVault - 3.1.24.0 - - - - - - - - The Azure KeyVault uri. - The application client id. - The client secret to use for authentication. - Creates a new instance of . - To be added. - - - - - - - - - - Property - - Microsoft.Extensions.Configuration.AzureKeyVault - 3.1.24.0 - - - Microsoft.Azure.KeyVault.KeyVaultClient - - - Gets or sets the to use for retrieving values. - To be added. - To be added. - - - - - - - - - - Property - - Microsoft.Extensions.Configuration.AzureKeyVault - 3.1.24.0 - - - Microsoft.Extensions.Configuration.AzureKeyVault.IKeyVaultSecretManager - - - Gets or sets the instance used to control secret loading. - To be added. - To be added. - - - - - - - - - - Property - - Microsoft.Extensions.Configuration.AzureKeyVault - 3.1.24.0 - - - System.Nullable<System.TimeSpan> - - - Gets or sets the timespan to wait between attempts at polling the Azure KeyVault for changes. to disable reloading. - To be added. - To be added. - - - - - - - - - - Property - - Microsoft.Extensions.Configuration.AzureKeyVault - 3.1.24.0 - - - System.String - - - Gets or sets the vault uri. - To be added. - To be added. - - - - diff --git a/xml/Microsoft.Extensions.Configuration.AzureKeyVault/DefaultKeyVaultSecretManager.xml b/xml/Microsoft.Extensions.Configuration.AzureKeyVault/DefaultKeyVaultSecretManager.xml deleted file mode 100644 index 3e38d9ad46a..00000000000 --- a/xml/Microsoft.Extensions.Configuration.AzureKeyVault/DefaultKeyVaultSecretManager.xml +++ /dev/null @@ -1,107 +0,0 @@ - - - - - - - - - Microsoft.Extensions.Configuration.AzureKeyVault - 1.0.0.0 - 2.0.0.0 - 2.1.0.0 - 2.2.0.0 - 3.0.0.0 - 3.1.0.0 - 3.1.24.0 - - - System.Object - - - - Microsoft.Extensions.Configuration.AzureKeyVault.IKeyVaultSecretManager - - - - Default implementation of that loads all secrets - and replaces '--' with ':" in key names. - To be added. - - - - - - - - - Constructor - - Microsoft.Extensions.Configuration.AzureKeyVault - 3.1.24.0 - - - - To be added. - To be added. - - - - - - - - - - Method - - M:Microsoft.Extensions.Configuration.AzureKeyVault.IKeyVaultSecretManager.GetKey(Microsoft.Azure.KeyVault.Models.SecretBundle) - - - Microsoft.Extensions.Configuration.AzureKeyVault - 3.1.24.0 - - - System.String - - - - - - The instance. - Maps secret to a configuration key. - Configuration key name to store secret value. - To be added. - - - - - - - - - - Method - - M:Microsoft.Extensions.Configuration.AzureKeyVault.IKeyVaultSecretManager.Load(Microsoft.Azure.KeyVault.Models.SecretItem) - - - Microsoft.Extensions.Configuration.AzureKeyVault - 3.1.24.0 - - - System.Boolean - - - - - - The instance. - Checks if value should be retrieved. - - if secrets value should be loaded, otherwise . - To be added. - - - - diff --git a/xml/Microsoft.Extensions.Configuration.AzureKeyVault/IKeyVaultSecretManager.xml b/xml/Microsoft.Extensions.Configuration.AzureKeyVault/IKeyVaultSecretManager.xml deleted file mode 100644 index c388a165bc9..00000000000 --- a/xml/Microsoft.Extensions.Configuration.AzureKeyVault/IKeyVaultSecretManager.xml +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - - - - Microsoft.Extensions.Configuration.AzureKeyVault - 1.0.0.0 - 2.0.0.0 - 2.1.0.0 - 2.2.0.0 - 3.0.0.0 - 3.1.0.0 - 3.1.24.0 - - - - The instance used to control secret loading. - To be added. - - - - - - - - - - Method - - Microsoft.Extensions.Configuration.AzureKeyVault - 3.1.24.0 - - - System.String - - - - - - The instance. - Maps secret to a configuration key. - Configuration key name to store secret value. - To be added. - - - - - - - - - - Method - - Microsoft.Extensions.Configuration.AzureKeyVault - 3.1.24.0 - - - System.Boolean - - - - - - The instance. - Checks if value should be retrieved. - - is secrets value should be loaded, otherwise . - To be added. - - - - diff --git a/xml/Microsoft.Extensions.Configuration.NewtonsoftJson/NewtonsoftJsonConfigurationProvider.xml b/xml/Microsoft.Extensions.Configuration.NewtonsoftJson/NewtonsoftJsonConfigurationProvider.xml deleted file mode 100644 index 19373e97367..00000000000 --- a/xml/Microsoft.Extensions.Configuration.NewtonsoftJson/NewtonsoftJsonConfigurationProvider.xml +++ /dev/null @@ -1,69 +0,0 @@ - - - - - - - - - Microsoft.Extensions.Configuration.NewtonsoftJson - 3.0.0.0 - 3.1.0.0 - 5.0.1.0 - - - Microsoft.Extensions.Configuration.FileConfigurationProvider - - - - A JSON file based . - To be added. - - - - - - - - - - Constructor - - Microsoft.Extensions.Configuration.NewtonsoftJson - 5.0.1.0 - - - - - - The source settings. - Initializes a new instance with the specified source. - To be added. - - - - - - - - - - Method - - Microsoft.Extensions.Configuration.NewtonsoftJson - 5.0.1.0 - - - System.Void - - - - - - The stream to read. - Loads the JSON data from a stream. - To be added. - - - - diff --git a/xml/Microsoft.Extensions.Configuration.NewtonsoftJson/NewtonsoftJsonConfigurationSource.xml b/xml/Microsoft.Extensions.Configuration.NewtonsoftJson/NewtonsoftJsonConfigurationSource.xml deleted file mode 100644 index 470d33e5a11..00000000000 --- a/xml/Microsoft.Extensions.Configuration.NewtonsoftJson/NewtonsoftJsonConfigurationSource.xml +++ /dev/null @@ -1,66 +0,0 @@ - - - - - - - - - Microsoft.Extensions.Configuration.NewtonsoftJson - 3.0.0.0 - 3.1.0.0 - 5.0.1.0 - - - Microsoft.Extensions.Configuration.FileConfigurationSource - - - - Represents a JSON file as an . - To be added. - - - - - - - - - Constructor - - Microsoft.Extensions.Configuration.NewtonsoftJson - 5.0.1.0 - - - - Initializes a new instance of . - To be added. - - - - - - - - - - Method - - Microsoft.Extensions.Configuration.NewtonsoftJson - 5.0.1.0 - - - Microsoft.Extensions.Configuration.IConfigurationProvider - - - - - - The . - Builds the for this source. - A . - To be added. - - - - diff --git a/xml/Microsoft.Extensions.Configuration.NewtonsoftJson/NewtonsoftJsonStreamConfigurationProvider.xml b/xml/Microsoft.Extensions.Configuration.NewtonsoftJson/NewtonsoftJsonStreamConfigurationProvider.xml deleted file mode 100644 index 5d2109ed6f8..00000000000 --- a/xml/Microsoft.Extensions.Configuration.NewtonsoftJson/NewtonsoftJsonStreamConfigurationProvider.xml +++ /dev/null @@ -1,69 +0,0 @@ - - - - - - - - - Microsoft.Extensions.Configuration.NewtonsoftJson - 3.0.0.0 - 3.1.0.0 - 5.0.1.0 - - - Microsoft.Extensions.Configuration.StreamConfigurationProvider - - - - Loads configuration key/values from a json stream into a provider. - To be added. - - - - - - - - - - Constructor - - Microsoft.Extensions.Configuration.NewtonsoftJson - 5.0.1.0 - - - - - - The source of configuration. - Constructor. - To be added. - - - - - - - - - - Method - - Microsoft.Extensions.Configuration.NewtonsoftJson - 5.0.1.0 - - - System.Void - - - - - - The json to load configuration data from. - Loads json configuration key/values from a stream into a provider. - To be added. - - - - diff --git a/xml/Microsoft.Extensions.Configuration.NewtonsoftJson/NewtonsoftJsonStreamConfigurationSource.xml b/xml/Microsoft.Extensions.Configuration.NewtonsoftJson/NewtonsoftJsonStreamConfigurationSource.xml deleted file mode 100644 index 50881f950fe..00000000000 --- a/xml/Microsoft.Extensions.Configuration.NewtonsoftJson/NewtonsoftJsonStreamConfigurationSource.xml +++ /dev/null @@ -1,66 +0,0 @@ - - - - - - - - - Microsoft.Extensions.Configuration.NewtonsoftJson - 3.0.0.0 - 3.1.0.0 - 5.0.1.0 - - - Microsoft.Extensions.Configuration.StreamConfigurationSource - - - - Represents a JSON file as an . - To be added. - - - - - - - - - Constructor - - Microsoft.Extensions.Configuration.NewtonsoftJson - 5.0.1.0 - - - - Initializes a new instance of . - To be added. - - - - - - - - - - Method - - Microsoft.Extensions.Configuration.NewtonsoftJson - 5.0.1.0 - - - Microsoft.Extensions.Configuration.IConfigurationProvider - - - - - - The . - Builds the for this source. - An . - To be added. - - - - diff --git a/xml/Microsoft.Extensions.Configuration/ApplicationMetadataConfigurationBuilderExtensions.xml b/xml/Microsoft.Extensions.Configuration/ApplicationMetadataConfigurationBuilderExtensions.xml index b02956f2804..005a24fe160 100644 --- a/xml/Microsoft.Extensions.Configuration/ApplicationMetadataConfigurationBuilderExtensions.xml +++ b/xml/Microsoft.Extensions.Configuration/ApplicationMetadataConfigurationBuilderExtensions.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.AmbientMetadata.Application 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -41,7 +42,7 @@ Method Microsoft.Extensions.AmbientMetadata.Application - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Configuration/AzureKeyVaultConfigurationExtensions.xml b/xml/Microsoft.Extensions.Configuration/AzureKeyVaultConfigurationExtensions.xml deleted file mode 100644 index ffcbde1e32c..00000000000 --- a/xml/Microsoft.Extensions.Configuration/AzureKeyVaultConfigurationExtensions.xml +++ /dev/null @@ -1,270 +0,0 @@ - - - - - - - - - Microsoft.Extensions.Configuration.AzureKeyVault - 1.0.0.0 - 2.0.0.0 - 2.1.0.0 - 2.2.0.0 - 3.0.0.0 - 3.1.0.0 - 3.1.24.0 - - - System.Object - - - - Extension methods for registering a configuration provider with . - To be added. - - - - - - - - - - Method - - Microsoft.Extensions.Configuration.AzureKeyVault - 3.1.24.0 - - - Microsoft.Extensions.Configuration.IConfigurationBuilder - - - - - - - The to add to. - The to use. - Adds an that reads configuration values from the Azure KeyVault. - The . - To be added. - - - - - - - - - - Method - - Microsoft.Extensions.Configuration.AzureKeyVault - 3.1.24.0 - - - Microsoft.Extensions.Configuration.IConfigurationBuilder - - - - - - - The to add to. - Azure KeyVault uri. - Adds an that reads configuration values from the Azure KeyVault. - The . - To be added. - - - - - - - - - - Method - - Microsoft.Extensions.Configuration.AzureKeyVault - 3.1.24.0 - - - Microsoft.Extensions.Configuration.IConfigurationBuilder - - - - - - - - The to add to. - Azure KeyVault uri. - The instance used to control secret loading. - Adds an that reads configuration values from the Azure KeyVault. - The . - To be added. - - - - - - - - - - Method - - Microsoft.Extensions.Configuration.AzureKeyVault - 3.1.24.0 - - - Microsoft.Extensions.Configuration.IConfigurationBuilder - - - - - - - - - The to add to. - Azure KeyVault uri. - The to use for retrieving values. - The instance used to control secret loading. - Adds an that reads configuration values from the Azure KeyVault. - The . - To be added. - - - - - - - - - - Method - - Microsoft.Extensions.Configuration.AzureKeyVault - 3.1.24.0 - - - Microsoft.Extensions.Configuration.IConfigurationBuilder - - - - - - - - - The to add to. - Azure KeyVault uri. - The application client id. - The to use for authentication. - Adds an that reads configuration values from the Azure KeyVault. - The . - To be added. - - - - - - - - - - Method - - Microsoft.Extensions.Configuration.AzureKeyVault - 3.1.24.0 - - - Microsoft.Extensions.Configuration.IConfigurationBuilder - - - - - - - - - The to add to. - The Azure KeyVault uri. - The application client id. - The client secret to use for authentication. - Adds an that reads configuration values from the Azure KeyVault. - The . - To be added. - - - - - - - - - - Method - - Microsoft.Extensions.Configuration.AzureKeyVault - 3.1.24.0 - - - Microsoft.Extensions.Configuration.IConfigurationBuilder - - - - - - - - - - The to add to. - Azure KeyVault uri. - The application client id. - The to use for authentication. - The instance used to control secret loading. - Adds an that reads configuration values from the Azure KeyVault. - The . - To be added. - - - - - - - - - - Method - - Microsoft.Extensions.Configuration.AzureKeyVault - 3.1.24.0 - - - Microsoft.Extensions.Configuration.IConfigurationBuilder - - - - - - - - - - The to add to. - The Azure KeyVault uri. - The application client id. - The client secret to use for authentication. - The instance used to control secret loading. - Adds an that reads configuration values from the Azure KeyVault. - The . - To be added. - - - - diff --git a/xml/Microsoft.Extensions.Configuration/NewtonsoftJsonConfigurationExtensions.xml b/xml/Microsoft.Extensions.Configuration/NewtonsoftJsonConfigurationExtensions.xml deleted file mode 100644 index a3f6fdff97d..00000000000 --- a/xml/Microsoft.Extensions.Configuration/NewtonsoftJsonConfigurationExtensions.xml +++ /dev/null @@ -1,202 +0,0 @@ - - - - - - - - - Microsoft.Extensions.Configuration.NewtonsoftJson - 3.0.0.0 - 3.1.0.0 - 5.0.1.0 - - - System.Object - - - - Extension methods for adding . - To be added. - - - - - - - - - - Method - - Microsoft.Extensions.Configuration.NewtonsoftJson - 5.0.1.0 - - - Microsoft.Extensions.Configuration.IConfigurationBuilder - - - - - - - The to add to. - Configures the source. - Adds a JSON configuration source to . - The . - To be added. - - - - - - - - - - Method - - Microsoft.Extensions.Configuration.NewtonsoftJson - 5.0.1.0 - - - Microsoft.Extensions.Configuration.IConfigurationBuilder - - - - - - - The to add to. - Path relative to the base path stored in - of . - Adds the JSON configuration provider at to . - The . - To be added. - - - - - - - - - - Method - - Microsoft.Extensions.Configuration.NewtonsoftJson - 5.0.1.0 - - - Microsoft.Extensions.Configuration.IConfigurationBuilder - - - - - - - - The to add to. - Path relative to the base path stored in - of . - Whether the file is optional. - Adds the JSON configuration provider at to . - The . - To be added. - - - - - - - - - - Method - - Microsoft.Extensions.Configuration.NewtonsoftJson - 5.0.1.0 - - - Microsoft.Extensions.Configuration.IConfigurationBuilder - - - - - - - - - The to add to. - Path relative to the base path stored in - of . - Whether the file is optional. - Whether the configuration should be reloaded if the file changes. - Adds the JSON configuration provider at to . - The . - To be added. - - - - - - - - - - Method - - Microsoft.Extensions.Configuration.NewtonsoftJson - 5.0.1.0 - - - Microsoft.Extensions.Configuration.IConfigurationBuilder - - - - - - - - - - The to add to. - The to use to access the file. - Path relative to the base path stored in - of . - Whether the file is optional. - Whether the configuration should be reloaded if the file changes. - Adds a JSON configuration source to . - The . - To be added. - - - - - - - - - - Method - - Microsoft.Extensions.Configuration.NewtonsoftJson - 5.0.1.0 - - - Microsoft.Extensions.Configuration.IConfigurationBuilder - - - - - - - The to add to. - The to read the json configuration data from. - Adds a Newtonsoft JSON configuration source to . - The . - To be added. - - - - diff --git a/xml/Microsoft.Extensions.DependencyInjection/ApplicationEnricherServiceCollectionExtensions.xml b/xml/Microsoft.Extensions.DependencyInjection/ApplicationEnricherServiceCollectionExtensions.xml index 1b87ae0ed1d..f1ac4e33a71 100644 --- a/xml/Microsoft.Extensions.DependencyInjection/ApplicationEnricherServiceCollectionExtensions.xml +++ b/xml/Microsoft.Extensions.DependencyInjection/ApplicationEnricherServiceCollectionExtensions.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Telemetry 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -42,7 +43,7 @@ Method Microsoft.Extensions.Telemetry - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -72,7 +73,7 @@ Method Microsoft.Extensions.Telemetry - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -103,7 +104,7 @@ Method Microsoft.Extensions.Telemetry - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.DependencyInjection/ApplicationMetadataServiceCollectionExtensions.xml b/xml/Microsoft.Extensions.DependencyInjection/ApplicationMetadataServiceCollectionExtensions.xml index 3b30917c189..e504f9bc648 100644 --- a/xml/Microsoft.Extensions.DependencyInjection/ApplicationMetadataServiceCollectionExtensions.xml +++ b/xml/Microsoft.Extensions.DependencyInjection/ApplicationMetadataServiceCollectionExtensions.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.AmbientMetadata.Application 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -42,7 +43,7 @@ Method Microsoft.Extensions.AmbientMetadata.Application - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -74,7 +75,7 @@ Method Microsoft.Extensions.AmbientMetadata.Application - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.DependencyInjection/AsyncStateExtensions.xml b/xml/Microsoft.Extensions.DependencyInjection/AsyncStateExtensions.xml index 1fc62e6c30a..cd5559208d5 100644 --- a/xml/Microsoft.Extensions.DependencyInjection/AsyncStateExtensions.xml +++ b/xml/Microsoft.Extensions.DependencyInjection/AsyncStateExtensions.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.AsyncState 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -32,7 +33,7 @@ Method Microsoft.Extensions.AsyncState - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.DependencyInjection/AutoActivationExtensions.xml b/xml/Microsoft.Extensions.DependencyInjection/AutoActivationExtensions.xml index 2c3beb5d7f2..87e5771b305 100644 --- a/xml/Microsoft.Extensions.DependencyInjection/AutoActivationExtensions.xml +++ b/xml/Microsoft.Extensions.DependencyInjection/AutoActivationExtensions.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.DependencyInjection.AutoActivation 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -42,7 +43,7 @@ Method Microsoft.Extensions.DependencyInjection.AutoActivation - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -81,7 +82,7 @@ Method Microsoft.Extensions.DependencyInjection.AutoActivation - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -126,7 +127,7 @@ Method Microsoft.Extensions.DependencyInjection.AutoActivation - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -156,7 +157,7 @@ Method Microsoft.Extensions.DependencyInjection.AutoActivation - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -192,7 +193,7 @@ Method Microsoft.Extensions.DependencyInjection.AutoActivation - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -238,7 +239,7 @@ Method Microsoft.Extensions.DependencyInjection.AutoActivation - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -286,7 +287,7 @@ Method Microsoft.Extensions.DependencyInjection.AutoActivation - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -334,7 +335,7 @@ Method Microsoft.Extensions.DependencyInjection.AutoActivation - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -385,7 +386,7 @@ Method Microsoft.Extensions.DependencyInjection.AutoActivation - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -439,7 +440,7 @@ Method Microsoft.Extensions.DependencyInjection.AutoActivation - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -497,7 +498,7 @@ Method Microsoft.Extensions.DependencyInjection.AutoActivation - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -558,7 +559,7 @@ Method Microsoft.Extensions.DependencyInjection.AutoActivation - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -596,7 +597,7 @@ Method Microsoft.Extensions.DependencyInjection.AutoActivation - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -635,7 +636,7 @@ Method Microsoft.Extensions.DependencyInjection.AutoActivation - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -674,7 +675,7 @@ Method Microsoft.Extensions.DependencyInjection.AutoActivation - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -716,7 +717,7 @@ Method Microsoft.Extensions.DependencyInjection.AutoActivation - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -754,7 +755,7 @@ Method Microsoft.Extensions.DependencyInjection.AutoActivation - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -803,7 +804,7 @@ Method Microsoft.Extensions.DependencyInjection.AutoActivation - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -848,7 +849,7 @@ Method Microsoft.Extensions.DependencyInjection.AutoActivation - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -893,7 +894,7 @@ Method Microsoft.Extensions.DependencyInjection.AutoActivation - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -940,7 +941,7 @@ Method Microsoft.Extensions.DependencyInjection.AutoActivation - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -987,7 +988,7 @@ Method Microsoft.Extensions.DependencyInjection.AutoActivation - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -1037,7 +1038,7 @@ Method Microsoft.Extensions.DependencyInjection.AutoActivation - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -1090,7 +1091,7 @@ Method Microsoft.Extensions.DependencyInjection.AutoActivation - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -1147,7 +1148,7 @@ Method Microsoft.Extensions.DependencyInjection.AutoActivation - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -1183,7 +1184,7 @@ Method Microsoft.Extensions.DependencyInjection.AutoActivation - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -1214,7 +1215,7 @@ Method Microsoft.Extensions.DependencyInjection.AutoActivation - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -1252,7 +1253,7 @@ Method Microsoft.Extensions.DependencyInjection.AutoActivation - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -1293,7 +1294,7 @@ Method Microsoft.Extensions.DependencyInjection.AutoActivation - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -1330,7 +1331,7 @@ Method Microsoft.Extensions.DependencyInjection.AutoActivation - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.DependencyInjection/CommonHealthChecksExtensions.xml b/xml/Microsoft.Extensions.DependencyInjection/CommonHealthChecksExtensions.xml index 46a3e020d08..06502e0fc81 100644 --- a/xml/Microsoft.Extensions.DependencyInjection/CommonHealthChecksExtensions.xml +++ b/xml/Microsoft.Extensions.DependencyInjection/CommonHealthChecksExtensions.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Diagnostics.HealthChecks.Common 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -42,7 +43,7 @@ Method Microsoft.Extensions.Diagnostics.HealthChecks.Common - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -74,7 +75,7 @@ Method Microsoft.Extensions.Diagnostics.HealthChecks.Common - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -111,7 +112,7 @@ Method Microsoft.Extensions.Diagnostics.HealthChecks.Common - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -143,7 +144,7 @@ Method Microsoft.Extensions.Diagnostics.HealthChecks.Common - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -182,7 +183,7 @@ Method Microsoft.Extensions.Diagnostics.HealthChecks.Common - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -212,7 +213,7 @@ Method Microsoft.Extensions.Diagnostics.HealthChecks.Common - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -244,7 +245,7 @@ Method Microsoft.Extensions.Diagnostics.HealthChecks.Common - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -276,7 +277,7 @@ Method Microsoft.Extensions.Diagnostics.HealthChecks.Common - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -305,7 +306,7 @@ Method Microsoft.Extensions.Diagnostics.HealthChecks.Common - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.DependencyInjection/ContextualOptionsServiceCollectionExtensions.xml b/xml/Microsoft.Extensions.DependencyInjection/ContextualOptionsServiceCollectionExtensions.xml index 6ae175c1c27..e7ca5275cdc 100644 --- a/xml/Microsoft.Extensions.DependencyInjection/ContextualOptionsServiceCollectionExtensions.xml +++ b/xml/Microsoft.Extensions.DependencyInjection/ContextualOptionsServiceCollectionExtensions.xml @@ -87,7 +87,7 @@ The options type to be configured. The to add the services to. - To be added. + The action used to configure the options. Registers an action used to configure a particular type of options. @@ -129,11 +129,13 @@ - To be added. - To be added. - To be added. - To be added. - To be added. + The options type to be configured. + The to add the services to. + The action used to configure the options. + + Registers an action used to configure a particular type of options. + + The value of . To be added. @@ -175,7 +177,7 @@ The options type to be configured. The to add the services to. The name of the options to configure. - To be added. + The action used to configure the options. Registers an action used to configure a particular type of options. @@ -225,12 +227,14 @@ - To be added. - To be added. - To be added. - To be added. - To be added. - To be added. + The options type to be configured. + The to add the services to. + The name of the options to configure. + The action used to configure the options. + + Registers an action used to configure a particular type of options. + + The value of . To be added. @@ -261,11 +265,13 @@ - To be added. - To be added. - To be added. - To be added. - To be added. + The options type to be configured. + The to add the services to. + The action used to configure the options. + + Registers an action used to configure all instances of a particular type of options. + + The value of . To be added. @@ -303,11 +309,13 @@ - To be added. - To be added. - To be added. - To be added. - To be added. + The options type to be configured. + The to add the services to. + The action used to configure the options. + + Registers an action used to configure all instances of a particular type of options. + + The value of . To be added. diff --git a/xml/Microsoft.Extensions.DependencyInjection/EnrichmentServiceCollectionExtensions.xml b/xml/Microsoft.Extensions.DependencyInjection/EnrichmentServiceCollectionExtensions.xml index 4e151ff7f16..c79b68eeaf4 100644 --- a/xml/Microsoft.Extensions.DependencyInjection/EnrichmentServiceCollectionExtensions.xml +++ b/xml/Microsoft.Extensions.DependencyInjection/EnrichmentServiceCollectionExtensions.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Telemetry.Abstractions 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -42,7 +43,7 @@ Method Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -74,7 +75,7 @@ Method Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -119,7 +120,7 @@ Method Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -151,7 +152,7 @@ Method Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.DependencyInjection/EntityFrameworkCoreHealthChecksBuilderExtensions.xml b/xml/Microsoft.Extensions.DependencyInjection/EntityFrameworkCoreHealthChecksBuilderExtensions.xml index 500d485f54b..16f7a0049e5 100644 --- a/xml/Microsoft.Extensions.DependencyInjection/EntityFrameworkCoreHealthChecksBuilderExtensions.xml +++ b/xml/Microsoft.Extensions.DependencyInjection/EntityFrameworkCoreHealthChecksBuilderExtensions.xml @@ -12,6 +12,7 @@ 7.0.0.0 8.0.0.0 8.0.4.0 + 8.0.5.0 9.0.0.0 @@ -34,7 +35,7 @@ Method Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore - 8.0.4.0 + 8.0.5.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.DependencyInjection/ExceptionSummarizationServiceCollectionExtensions.xml b/xml/Microsoft.Extensions.DependencyInjection/ExceptionSummarizationServiceCollectionExtensions.xml index 5526c5e1cb6..35e09e151fc 100644 --- a/xml/Microsoft.Extensions.DependencyInjection/ExceptionSummarizationServiceCollectionExtensions.xml +++ b/xml/Microsoft.Extensions.DependencyInjection/ExceptionSummarizationServiceCollectionExtensions.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Diagnostics.ExceptionSummarization 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -42,7 +43,7 @@ Method Microsoft.Extensions.Diagnostics.ExceptionSummarization - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -72,7 +73,7 @@ Method Microsoft.Extensions.Diagnostics.ExceptionSummarization - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.DependencyInjection/FakeLoggerServiceCollectionExtensions.xml b/xml/Microsoft.Extensions.DependencyInjection/FakeLoggerServiceCollectionExtensions.xml index 998501c9d61..04971f60d31 100644 --- a/xml/Microsoft.Extensions.DependencyInjection/FakeLoggerServiceCollectionExtensions.xml +++ b/xml/Microsoft.Extensions.DependencyInjection/FakeLoggerServiceCollectionExtensions.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Diagnostics.Testing 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -42,7 +43,7 @@ Method Microsoft.Extensions.Diagnostics.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -70,7 +71,7 @@ Method Microsoft.Extensions.Diagnostics.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -100,7 +101,7 @@ Method Microsoft.Extensions.Diagnostics.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.DependencyInjection/FakeRedactionServiceCollectionExtensions.xml b/xml/Microsoft.Extensions.DependencyInjection/FakeRedactionServiceCollectionExtensions.xml index b5212666976..33957197af3 100644 --- a/xml/Microsoft.Extensions.DependencyInjection/FakeRedactionServiceCollectionExtensions.xml +++ b/xml/Microsoft.Extensions.DependencyInjection/FakeRedactionServiceCollectionExtensions.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Compliance.Testing 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -42,7 +43,7 @@ Method Microsoft.Extensions.Compliance.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -72,7 +73,7 @@ Method Microsoft.Extensions.Compliance.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.DependencyInjection/HttpClientLatencyTelemetryExtensions.xml b/xml/Microsoft.Extensions.DependencyInjection/HttpClientLatencyTelemetryExtensions.xml index 060507bf71f..edaf896f36c 100644 --- a/xml/Microsoft.Extensions.DependencyInjection/HttpClientLatencyTelemetryExtensions.xml +++ b/xml/Microsoft.Extensions.DependencyInjection/HttpClientLatencyTelemetryExtensions.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Http.Diagnostics 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -42,7 +43,7 @@ Method Microsoft.Extensions.Http.Diagnostics - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -72,7 +73,7 @@ Method Microsoft.Extensions.Http.Diagnostics - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -104,7 +105,7 @@ Method Microsoft.Extensions.Http.Diagnostics - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.DependencyInjection/HttpClientLoggingHttpClientBuilderExtensions.xml b/xml/Microsoft.Extensions.DependencyInjection/HttpClientLoggingHttpClientBuilderExtensions.xml index 2137359e5b0..1da0ea12d22 100644 --- a/xml/Microsoft.Extensions.DependencyInjection/HttpClientLoggingHttpClientBuilderExtensions.xml +++ b/xml/Microsoft.Extensions.DependencyInjection/HttpClientLoggingHttpClientBuilderExtensions.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Http.Diagnostics 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -42,7 +43,7 @@ Method Microsoft.Extensions.Http.Diagnostics - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -75,7 +76,7 @@ Method Microsoft.Extensions.Http.Diagnostics - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -110,7 +111,7 @@ Method Microsoft.Extensions.Http.Diagnostics - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.DependencyInjection/HttpClientLoggingServiceCollectionExtensions.xml b/xml/Microsoft.Extensions.DependencyInjection/HttpClientLoggingServiceCollectionExtensions.xml index 35d191468db..b3ff6fdaafe 100644 --- a/xml/Microsoft.Extensions.DependencyInjection/HttpClientLoggingServiceCollectionExtensions.xml +++ b/xml/Microsoft.Extensions.DependencyInjection/HttpClientLoggingServiceCollectionExtensions.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Http.Diagnostics 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -42,7 +43,7 @@ Method Microsoft.Extensions.Http.Diagnostics - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -73,7 +74,7 @@ Method Microsoft.Extensions.Http.Diagnostics - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -106,7 +107,7 @@ Method Microsoft.Extensions.Http.Diagnostics - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -139,7 +140,7 @@ Method Microsoft.Extensions.Http.Diagnostics - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.DependencyInjection/HttpDiagnosticsServiceCollectionExtensions.xml b/xml/Microsoft.Extensions.DependencyInjection/HttpDiagnosticsServiceCollectionExtensions.xml index e4002cd7931..7f043a5a8f8 100644 --- a/xml/Microsoft.Extensions.DependencyInjection/HttpDiagnosticsServiceCollectionExtensions.xml +++ b/xml/Microsoft.Extensions.DependencyInjection/HttpDiagnosticsServiceCollectionExtensions.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Http.Diagnostics 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -42,7 +43,7 @@ Method Microsoft.Extensions.Http.Diagnostics - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -73,7 +74,7 @@ Method Microsoft.Extensions.Http.Diagnostics - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.DependencyInjection/LatencyConsoleExtensions.xml b/xml/Microsoft.Extensions.DependencyInjection/LatencyConsoleExtensions.xml index cb4fcbff646..efa2435d930 100644 --- a/xml/Microsoft.Extensions.DependencyInjection/LatencyConsoleExtensions.xml +++ b/xml/Microsoft.Extensions.DependencyInjection/LatencyConsoleExtensions.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Telemetry 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -42,7 +43,7 @@ Method Microsoft.Extensions.Telemetry - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -72,7 +73,7 @@ Method Microsoft.Extensions.Telemetry - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -103,7 +104,7 @@ Method Microsoft.Extensions.Telemetry - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.DependencyInjection/LatencyContextExtensions.xml b/xml/Microsoft.Extensions.DependencyInjection/LatencyContextExtensions.xml index e6b833dac36..7f1fe105102 100644 --- a/xml/Microsoft.Extensions.DependencyInjection/LatencyContextExtensions.xml +++ b/xml/Microsoft.Extensions.DependencyInjection/LatencyContextExtensions.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Telemetry 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -42,7 +43,7 @@ Method Microsoft.Extensions.Telemetry - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -70,7 +71,7 @@ Method Microsoft.Extensions.Telemetry - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -100,7 +101,7 @@ Method Microsoft.Extensions.Telemetry - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.DependencyInjection/LatencyRegistryServiceCollectionExtensions.xml b/xml/Microsoft.Extensions.DependencyInjection/LatencyRegistryServiceCollectionExtensions.xml index a5a336088d0..b45524ec0a4 100644 --- a/xml/Microsoft.Extensions.DependencyInjection/LatencyRegistryServiceCollectionExtensions.xml +++ b/xml/Microsoft.Extensions.DependencyInjection/LatencyRegistryServiceCollectionExtensions.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Telemetry.Abstractions 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -42,7 +43,7 @@ Method Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -81,7 +82,7 @@ Method Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -120,7 +121,7 @@ Method Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.DependencyInjection/NullLatencyContextServiceCollectionExtensions.xml b/xml/Microsoft.Extensions.DependencyInjection/NullLatencyContextServiceCollectionExtensions.xml index a52c2325fd6..83a1ac9797d 100644 --- a/xml/Microsoft.Extensions.DependencyInjection/NullLatencyContextServiceCollectionExtensions.xml +++ b/xml/Microsoft.Extensions.DependencyInjection/NullLatencyContextServiceCollectionExtensions.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Telemetry.Abstractions 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -32,7 +33,7 @@ Method Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.DependencyInjection/ObjectPoolServiceCollectionExtensions.xml b/xml/Microsoft.Extensions.DependencyInjection/ObjectPoolServiceCollectionExtensions.xml index 67ae9efe464..ad3ff1b6c09 100644 --- a/xml/Microsoft.Extensions.DependencyInjection/ObjectPoolServiceCollectionExtensions.xml +++ b/xml/Microsoft.Extensions.DependencyInjection/ObjectPoolServiceCollectionExtensions.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.ObjectPool.DependencyInjection 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -41,7 +42,7 @@ Method Microsoft.Extensions.ObjectPool.DependencyInjection - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -96,7 +97,7 @@ Method Microsoft.Extensions.ObjectPool.DependencyInjection - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -159,7 +160,7 @@ Method Microsoft.Extensions.ObjectPool.DependencyInjection - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -197,7 +198,7 @@ Method Microsoft.Extensions.ObjectPool.DependencyInjection - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.DependencyInjection/ProcessEnricherServiceCollectionExtensions.xml b/xml/Microsoft.Extensions.DependencyInjection/ProcessEnricherServiceCollectionExtensions.xml index 8c354b00fbd..ca3c73de7ac 100644 --- a/xml/Microsoft.Extensions.DependencyInjection/ProcessEnricherServiceCollectionExtensions.xml +++ b/xml/Microsoft.Extensions.DependencyInjection/ProcessEnricherServiceCollectionExtensions.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Telemetry 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -42,7 +43,7 @@ Method Microsoft.Extensions.Telemetry - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -72,7 +73,7 @@ Method Microsoft.Extensions.Telemetry - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -103,7 +104,7 @@ Method Microsoft.Extensions.Telemetry - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.DependencyInjection/RedactionServiceCollectionExtensions.xml b/xml/Microsoft.Extensions.DependencyInjection/RedactionServiceCollectionExtensions.xml index edab461e1b5..f763bdde5e5 100644 --- a/xml/Microsoft.Extensions.DependencyInjection/RedactionServiceCollectionExtensions.xml +++ b/xml/Microsoft.Extensions.DependencyInjection/RedactionServiceCollectionExtensions.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Compliance.Redaction 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -42,7 +43,7 @@ Method Microsoft.Extensions.Compliance.Redaction - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -72,7 +73,7 @@ Method Microsoft.Extensions.Compliance.Redaction - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.DependencyInjection/RedisCacheServiceCollectionExtensions.xml b/xml/Microsoft.Extensions.DependencyInjection/RedisCacheServiceCollectionExtensions.xml deleted file mode 100644 index 495f486cea2..00000000000 --- a/xml/Microsoft.Extensions.DependencyInjection/RedisCacheServiceCollectionExtensions.xml +++ /dev/null @@ -1,54 +0,0 @@ - - - - - - - - - Microsoft.Extensions.Caching.Redis - 1.0.0.0 - 1.1.0.0 - 2.0.0.0 - 2.1.0.0 - 2.2.0.0 - - - System.Object - - - - Extension methods for setting up Redis distributed cache related services in an . - To be added. - - - - - - - - - - Method - - Microsoft.Extensions.Caching.Redis - 2.2.0.0 - - - Microsoft.Extensions.DependencyInjection.IServiceCollection - - - - - - - The to add services to. - An to configure the provided - . - Adds Redis distributed caching services to the specified . - The so that additional calls can be chained. - To be added. - - - - diff --git a/xml/Microsoft.Extensions.DependencyInjection/ResilienceHttpClientBuilderExtensions.xml b/xml/Microsoft.Extensions.DependencyInjection/ResilienceHttpClientBuilderExtensions.xml index 0eda88cb4b2..1bfa00c1836 100644 --- a/xml/Microsoft.Extensions.DependencyInjection/ResilienceHttpClientBuilderExtensions.xml +++ b/xml/Microsoft.Extensions.DependencyInjection/ResilienceHttpClientBuilderExtensions.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Http.Resilience 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -42,7 +43,7 @@ Method Microsoft.Extensions.Http.Resilience - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -77,7 +78,7 @@ Method Microsoft.Extensions.Http.Resilience - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -112,7 +113,7 @@ Method Microsoft.Extensions.Http.Resilience - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -150,7 +151,7 @@ Method Microsoft.Extensions.Http.Resilience - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -190,7 +191,7 @@ Method Microsoft.Extensions.Http.Resilience - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -221,7 +222,7 @@ Method Microsoft.Extensions.Http.Resilience - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -254,7 +255,7 @@ Method Microsoft.Extensions.Http.Resilience - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.DependencyInjection/ResilienceServiceCollectionExtensions.xml b/xml/Microsoft.Extensions.DependencyInjection/ResilienceServiceCollectionExtensions.xml index 146002649b0..68f213984f1 100644 --- a/xml/Microsoft.Extensions.DependencyInjection/ResilienceServiceCollectionExtensions.xml +++ b/xml/Microsoft.Extensions.DependencyInjection/ResilienceServiceCollectionExtensions.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Resilience 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -32,7 +33,7 @@ Method Microsoft.Extensions.Resilience - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.DependencyInjection/ResourceMonitoringServiceCollectionExtensions.xml b/xml/Microsoft.Extensions.DependencyInjection/ResourceMonitoringServiceCollectionExtensions.xml index 44b82b3becc..9a7f499e07b 100644 --- a/xml/Microsoft.Extensions.DependencyInjection/ResourceMonitoringServiceCollectionExtensions.xml +++ b/xml/Microsoft.Extensions.DependencyInjection/ResourceMonitoringServiceCollectionExtensions.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Diagnostics.ResourceMonitoring 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -42,7 +43,7 @@ Method Microsoft.Extensions.Diagnostics.ResourceMonitoring - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -72,7 +73,7 @@ Method Microsoft.Extensions.Diagnostics.ResourceMonitoring - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.DependencyInjection/ResourceUtilizationHealthCheckExtensions.xml b/xml/Microsoft.Extensions.DependencyInjection/ResourceUtilizationHealthCheckExtensions.xml index de05909c8d4..0c11c432950 100644 --- a/xml/Microsoft.Extensions.DependencyInjection/ResourceUtilizationHealthCheckExtensions.xml +++ b/xml/Microsoft.Extensions.DependencyInjection/ResourceUtilizationHealthCheckExtensions.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -42,7 +43,7 @@ Method Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -74,7 +75,7 @@ Method Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -106,7 +107,7 @@ Method Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -138,7 +139,7 @@ Method Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -177,7 +178,7 @@ Method Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -211,7 +212,7 @@ Method Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -252,7 +253,7 @@ Method Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -286,7 +287,7 @@ Method Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.DependencyInjection/ServiceCollection.xml b/xml/Microsoft.Extensions.DependencyInjection/ServiceCollection.xml index 2ed5f513686..0457a48e5b0 100644 --- a/xml/Microsoft.Extensions.DependencyInjection/ServiceCollection.xml +++ b/xml/Microsoft.Extensions.DependencyInjection/ServiceCollection.xml @@ -25,8 +25,8 @@ 9.0.0.0 - - + + System.Object diff --git a/xml/Microsoft.Extensions.DependencyInjection/SqlServerCachingServicesExtensions.xml b/xml/Microsoft.Extensions.DependencyInjection/SqlServerCachingServicesExtensions.xml index 8d46ff34db3..e27b3fc3fc2 100644 --- a/xml/Microsoft.Extensions.DependencyInjection/SqlServerCachingServicesExtensions.xml +++ b/xml/Microsoft.Extensions.DependencyInjection/SqlServerCachingServicesExtensions.xml @@ -15,6 +15,7 @@ 3.0.0.0 3.1.0.0 8.0.4.0 + 8.0.5.0 9.0.0.0 @@ -46,7 +47,7 @@ Method Microsoft.Extensions.Caching.SqlServer - 8.0.4.0 + 8.0.5.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.DependencyInjection/StackExchangeRedisCacheServiceCollectionExtensions.xml b/xml/Microsoft.Extensions.DependencyInjection/StackExchangeRedisCacheServiceCollectionExtensions.xml index 1898d7055a3..848bc386d15 100644 --- a/xml/Microsoft.Extensions.DependencyInjection/StackExchangeRedisCacheServiceCollectionExtensions.xml +++ b/xml/Microsoft.Extensions.DependencyInjection/StackExchangeRedisCacheServiceCollectionExtensions.xml @@ -11,6 +11,7 @@ 3.0.0.0 3.1.0.0 8.0.4.0 + 8.0.5.0 9.0.0.0 @@ -32,7 +33,7 @@ Method Microsoft.Extensions.Caching.StackExchangeRedis - 8.0.4.0 + 8.0.5.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Diagnostics.Enrichment/ApplicationEnricherTags.xml b/xml/Microsoft.Extensions.Diagnostics.Enrichment/ApplicationEnricherTags.xml index ab0ae946b4e..8db142fe923 100644 --- a/xml/Microsoft.Extensions.Diagnostics.Enrichment/ApplicationEnricherTags.xml +++ b/xml/Microsoft.Extensions.Diagnostics.Enrichment/ApplicationEnricherTags.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Telemetry 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -42,7 +43,7 @@ Field Microsoft.Extensions.Telemetry - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -65,7 +66,7 @@ Field Microsoft.Extensions.Telemetry - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -88,7 +89,7 @@ Field Microsoft.Extensions.Telemetry - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -111,7 +112,7 @@ Property Microsoft.Extensions.Telemetry - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -135,7 +136,7 @@ Field Microsoft.Extensions.Telemetry - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Diagnostics.Enrichment/ApplicationLogEnricherOptions.xml b/xml/Microsoft.Extensions.Diagnostics.Enrichment/ApplicationLogEnricherOptions.xml index 330160db678..d4a6948cc28 100644 --- a/xml/Microsoft.Extensions.Diagnostics.Enrichment/ApplicationLogEnricherOptions.xml +++ b/xml/Microsoft.Extensions.Diagnostics.Enrichment/ApplicationLogEnricherOptions.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Telemetry 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -31,7 +32,7 @@ Constructor Microsoft.Extensions.Telemetry - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -50,7 +51,7 @@ Property Microsoft.Extensions.Telemetry - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -76,7 +77,7 @@ Property Microsoft.Extensions.Telemetry - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -102,7 +103,7 @@ Property Microsoft.Extensions.Telemetry - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -128,7 +129,7 @@ Property Microsoft.Extensions.Telemetry - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Diagnostics.Enrichment/IEnrichmentTagCollector.xml b/xml/Microsoft.Extensions.Diagnostics.Enrichment/IEnrichmentTagCollector.xml index 71b9980b9eb..01419c82924 100644 --- a/xml/Microsoft.Extensions.Diagnostics.Enrichment/IEnrichmentTagCollector.xml +++ b/xml/Microsoft.Extensions.Diagnostics.Enrichment/IEnrichmentTagCollector.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Telemetry.Abstractions 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -35,7 +36,7 @@ Method Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Diagnostics.Enrichment/ILogEnricher.xml b/xml/Microsoft.Extensions.Diagnostics.Enrichment/ILogEnricher.xml index 0e6a43e75af..8aca38cb8a6 100644 --- a/xml/Microsoft.Extensions.Diagnostics.Enrichment/ILogEnricher.xml +++ b/xml/Microsoft.Extensions.Diagnostics.Enrichment/ILogEnricher.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Telemetry.Abstractions 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -35,7 +36,7 @@ Method Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Diagnostics.Enrichment/IStaticLogEnricher.xml b/xml/Microsoft.Extensions.Diagnostics.Enrichment/IStaticLogEnricher.xml index 56c9e87b479..1ffcbcc565f 100644 --- a/xml/Microsoft.Extensions.Diagnostics.Enrichment/IStaticLogEnricher.xml +++ b/xml/Microsoft.Extensions.Diagnostics.Enrichment/IStaticLogEnricher.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Telemetry.Abstractions 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -35,7 +36,7 @@ Method Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Diagnostics.Enrichment/ProcessEnricherTagNames.xml b/xml/Microsoft.Extensions.Diagnostics.Enrichment/ProcessEnricherTagNames.xml index cad27c9c417..e843f43a55d 100644 --- a/xml/Microsoft.Extensions.Diagnostics.Enrichment/ProcessEnricherTagNames.xml +++ b/xml/Microsoft.Extensions.Diagnostics.Enrichment/ProcessEnricherTagNames.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Telemetry 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -42,7 +43,7 @@ Property Microsoft.Extensions.Telemetry - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -66,7 +67,7 @@ Field Microsoft.Extensions.Telemetry - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -89,7 +90,7 @@ Field Microsoft.Extensions.Telemetry - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Diagnostics.Enrichment/ProcessLogEnricherOptions.xml b/xml/Microsoft.Extensions.Diagnostics.Enrichment/ProcessLogEnricherOptions.xml index 1e638b9e17a..3d4b9162cf4 100644 --- a/xml/Microsoft.Extensions.Diagnostics.Enrichment/ProcessLogEnricherOptions.xml +++ b/xml/Microsoft.Extensions.Diagnostics.Enrichment/ProcessLogEnricherOptions.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Telemetry 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -31,7 +32,7 @@ Constructor Microsoft.Extensions.Telemetry - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -50,7 +51,7 @@ Property Microsoft.Extensions.Telemetry - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -76,7 +77,7 @@ Property Microsoft.Extensions.Telemetry - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Diagnostics.ExceptionSummarization/ExceptionSummarizationBuilderExtensions.xml b/xml/Microsoft.Extensions.Diagnostics.ExceptionSummarization/ExceptionSummarizationBuilderExtensions.xml index edc80607bf6..7817168abe0 100644 --- a/xml/Microsoft.Extensions.Diagnostics.ExceptionSummarization/ExceptionSummarizationBuilderExtensions.xml +++ b/xml/Microsoft.Extensions.Diagnostics.ExceptionSummarization/ExceptionSummarizationBuilderExtensions.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Diagnostics.ExceptionSummarization 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -32,7 +33,7 @@ Method Microsoft.Extensions.Diagnostics.ExceptionSummarization - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Diagnostics.ExceptionSummarization/ExceptionSummary.xml b/xml/Microsoft.Extensions.Diagnostics.ExceptionSummarization/ExceptionSummary.xml index 959730c6a4f..f5b24c71515 100644 --- a/xml/Microsoft.Extensions.Diagnostics.ExceptionSummarization/ExceptionSummary.xml +++ b/xml/Microsoft.Extensions.Diagnostics.ExceptionSummarization/ExceptionSummary.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Diagnostics.ExceptionSummarization 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -58,7 +59,7 @@ Constructor Microsoft.Extensions.Diagnostics.ExceptionSummarization - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -86,7 +87,7 @@ Property Microsoft.Extensions.Diagnostics.ExceptionSummarization - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -113,7 +114,7 @@ Property Microsoft.Extensions.Diagnostics.ExceptionSummarization - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -143,7 +144,7 @@ Microsoft.Extensions.Diagnostics.ExceptionSummarization - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -172,7 +173,7 @@ Method Microsoft.Extensions.Diagnostics.ExceptionSummarization - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -207,7 +208,7 @@ Property Microsoft.Extensions.Diagnostics.ExceptionSummarization - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -234,7 +235,7 @@ Method Microsoft.Extensions.Diagnostics.ExceptionSummarization - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -259,7 +260,7 @@ Method Microsoft.Extensions.Diagnostics.ExceptionSummarization - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -290,7 +291,7 @@ Method Microsoft.Extensions.Diagnostics.ExceptionSummarization - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -321,7 +322,7 @@ Method Microsoft.Extensions.Diagnostics.ExceptionSummarization - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Diagnostics.ExceptionSummarization/IExceptionSummarizationBuilder.xml b/xml/Microsoft.Extensions.Diagnostics.ExceptionSummarization/IExceptionSummarizationBuilder.xml index f09a436bf7a..ad3a9e37a74 100644 --- a/xml/Microsoft.Extensions.Diagnostics.ExceptionSummarization/IExceptionSummarizationBuilder.xml +++ b/xml/Microsoft.Extensions.Diagnostics.ExceptionSummarization/IExceptionSummarizationBuilder.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Diagnostics.ExceptionSummarization 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -35,7 +36,7 @@ Method Microsoft.Extensions.Diagnostics.ExceptionSummarization - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -75,7 +76,7 @@ Property Microsoft.Extensions.Diagnostics.ExceptionSummarization - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Diagnostics.ExceptionSummarization/IExceptionSummarizer.xml b/xml/Microsoft.Extensions.Diagnostics.ExceptionSummarization/IExceptionSummarizer.xml index f2fd8cc68e5..b5d452172fa 100644 --- a/xml/Microsoft.Extensions.Diagnostics.ExceptionSummarization/IExceptionSummarizer.xml +++ b/xml/Microsoft.Extensions.Diagnostics.ExceptionSummarization/IExceptionSummarizer.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Diagnostics.ExceptionSummarization 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -35,7 +36,7 @@ Method Microsoft.Extensions.Diagnostics.ExceptionSummarization - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Diagnostics.ExceptionSummarization/IExceptionSummaryProvider.xml b/xml/Microsoft.Extensions.Diagnostics.ExceptionSummarization/IExceptionSummaryProvider.xml index 9bdd4ba7029..07c5b713eb5 100644 --- a/xml/Microsoft.Extensions.Diagnostics.ExceptionSummarization/IExceptionSummaryProvider.xml +++ b/xml/Microsoft.Extensions.Diagnostics.ExceptionSummarization/IExceptionSummaryProvider.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Diagnostics.ExceptionSummarization 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -39,7 +40,7 @@ Method Microsoft.Extensions.Diagnostics.ExceptionSummarization - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -79,7 +80,7 @@ Property Microsoft.Extensions.Diagnostics.ExceptionSummarization - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -103,7 +104,7 @@ Property Microsoft.Extensions.Diagnostics.ExceptionSummarization - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Diagnostics.HealthChecks/IManualHealthCheck.xml b/xml/Microsoft.Extensions.Diagnostics.HealthChecks/IManualHealthCheck.xml index 7664807d681..f52df33ab62 100644 --- a/xml/Microsoft.Extensions.Diagnostics.HealthChecks/IManualHealthCheck.xml +++ b/xml/Microsoft.Extensions.Diagnostics.HealthChecks/IManualHealthCheck.xml @@ -13,6 +13,7 @@ Microsoft.Extensions.Diagnostics.HealthChecks.Common 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -41,7 +42,7 @@ Microsoft.Extensions.Diagnostics.HealthChecks.Common - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Diagnostics.HealthChecks/IManualHealthCheck`1.xml b/xml/Microsoft.Extensions.Diagnostics.HealthChecks/IManualHealthCheck`1.xml index b523fbe7153..361f57901ba 100644 --- a/xml/Microsoft.Extensions.Diagnostics.HealthChecks/IManualHealthCheck`1.xml +++ b/xml/Microsoft.Extensions.Diagnostics.HealthChecks/IManualHealthCheck`1.xml @@ -13,6 +13,7 @@ Microsoft.Extensions.Diagnostics.HealthChecks.Common 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Diagnostics.HealthChecks/ResourceUsageThresholds.xml b/xml/Microsoft.Extensions.Diagnostics.HealthChecks/ResourceUsageThresholds.xml index 1b96f2c2e5f..5a8270fee07 100644 --- a/xml/Microsoft.Extensions.Diagnostics.HealthChecks/ResourceUsageThresholds.xml +++ b/xml/Microsoft.Extensions.Diagnostics.HealthChecks/ResourceUsageThresholds.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -31,7 +32,7 @@ Constructor Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -50,7 +51,7 @@ Property Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -82,7 +83,7 @@ Property Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Diagnostics.HealthChecks/ResourceUtilizationHealthCheckOptions.xml b/xml/Microsoft.Extensions.Diagnostics.HealthChecks/ResourceUtilizationHealthCheckOptions.xml index 289c2671cac..c154d2e8031 100644 --- a/xml/Microsoft.Extensions.Diagnostics.HealthChecks/ResourceUtilizationHealthCheckOptions.xml +++ b/xml/Microsoft.Extensions.Diagnostics.HealthChecks/ResourceUtilizationHealthCheckOptions.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -41,7 +42,7 @@ Constructor Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -60,7 +61,7 @@ Property Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -93,7 +94,7 @@ Property Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -126,7 +127,7 @@ Property Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Diagnostics.HealthChecks/TelemetryHealthCheckPublisherOptions.xml b/xml/Microsoft.Extensions.Diagnostics.HealthChecks/TelemetryHealthCheckPublisherOptions.xml index b965e3a2bf2..3261732ad69 100644 --- a/xml/Microsoft.Extensions.Diagnostics.HealthChecks/TelemetryHealthCheckPublisherOptions.xml +++ b/xml/Microsoft.Extensions.Diagnostics.HealthChecks/TelemetryHealthCheckPublisherOptions.xml @@ -13,6 +13,7 @@ Microsoft.Extensions.Diagnostics.HealthChecks.Common 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -39,7 +40,7 @@ Microsoft.Extensions.Diagnostics.HealthChecks.Common - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -62,7 +63,7 @@ Microsoft.Extensions.Diagnostics.HealthChecks.Common - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Diagnostics.Latency/Checkpoint.xml b/xml/Microsoft.Extensions.Diagnostics.Latency/Checkpoint.xml index ed93169c955..310273c70c8 100644 --- a/xml/Microsoft.Extensions.Diagnostics.Latency/Checkpoint.xml +++ b/xml/Microsoft.Extensions.Diagnostics.Latency/Checkpoint.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Telemetry.Abstractions 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -54,7 +55,7 @@ Constructor Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -82,7 +83,7 @@ Property Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -109,7 +110,7 @@ Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -138,7 +139,7 @@ Method Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -173,7 +174,7 @@ Property Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -197,7 +198,7 @@ Method Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -222,7 +223,7 @@ Property Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -246,7 +247,7 @@ Method Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -277,7 +278,7 @@ Method Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Diagnostics.Latency/CheckpointToken.xml b/xml/Microsoft.Extensions.Diagnostics.Latency/CheckpointToken.xml index 75b6d17f49c..9c18a1ba250 100644 --- a/xml/Microsoft.Extensions.Diagnostics.Latency/CheckpointToken.xml +++ b/xml/Microsoft.Extensions.Diagnostics.Latency/CheckpointToken.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Telemetry.Abstractions 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -46,7 +47,7 @@ Constructor Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -74,7 +75,7 @@ Property Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -98,7 +99,7 @@ Property Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Diagnostics.Latency/ILatencyContext.xml b/xml/Microsoft.Extensions.Diagnostics.Latency/ILatencyContext.xml index a72b61320b4..4c73bb30cd2 100644 --- a/xml/Microsoft.Extensions.Diagnostics.Latency/ILatencyContext.xml +++ b/xml/Microsoft.Extensions.Diagnostics.Latency/ILatencyContext.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Telemetry.Abstractions 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -37,7 +38,7 @@ Method Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -67,7 +68,7 @@ Method Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -99,7 +100,7 @@ Method Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -123,7 +124,7 @@ Property Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -147,7 +148,7 @@ Method Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -176,7 +177,7 @@ Method Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Diagnostics.Latency/ILatencyContextProvider.xml b/xml/Microsoft.Extensions.Diagnostics.Latency/ILatencyContextProvider.xml index 4d34dde1c5f..cf9680d26a0 100644 --- a/xml/Microsoft.Extensions.Diagnostics.Latency/ILatencyContextProvider.xml +++ b/xml/Microsoft.Extensions.Diagnostics.Latency/ILatencyContextProvider.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Telemetry.Abstractions 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -35,7 +36,7 @@ Method Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Diagnostics.Latency/ILatencyContextTokenIssuer.xml b/xml/Microsoft.Extensions.Diagnostics.Latency/ILatencyContextTokenIssuer.xml index b917304d049..89d25aac80f 100644 --- a/xml/Microsoft.Extensions.Diagnostics.Latency/ILatencyContextTokenIssuer.xml +++ b/xml/Microsoft.Extensions.Diagnostics.Latency/ILatencyContextTokenIssuer.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Telemetry.Abstractions 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -35,7 +36,7 @@ Method Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -65,7 +66,7 @@ Method Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -96,7 +97,7 @@ Method Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Diagnostics.Latency/ILatencyDataExporter.xml b/xml/Microsoft.Extensions.Diagnostics.Latency/ILatencyDataExporter.xml index d6c88238c47..afdcd9c393c 100644 --- a/xml/Microsoft.Extensions.Diagnostics.Latency/ILatencyDataExporter.xml +++ b/xml/Microsoft.Extensions.Diagnostics.Latency/ILatencyDataExporter.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Telemetry.Abstractions 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -35,7 +36,7 @@ Method Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Diagnostics.Latency/LatencyConsoleOptions.xml b/xml/Microsoft.Extensions.Diagnostics.Latency/LatencyConsoleOptions.xml index 82a11584601..f3cc1019582 100644 --- a/xml/Microsoft.Extensions.Diagnostics.Latency/LatencyConsoleOptions.xml +++ b/xml/Microsoft.Extensions.Diagnostics.Latency/LatencyConsoleOptions.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Telemetry 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -31,7 +32,7 @@ Constructor Microsoft.Extensions.Telemetry - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -50,7 +51,7 @@ Property Microsoft.Extensions.Telemetry - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -76,7 +77,7 @@ Property Microsoft.Extensions.Telemetry - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -102,7 +103,7 @@ Property Microsoft.Extensions.Telemetry - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Diagnostics.Latency/LatencyContextOptions.xml b/xml/Microsoft.Extensions.Diagnostics.Latency/LatencyContextOptions.xml index 17036c67d34..ee0f7698460 100644 --- a/xml/Microsoft.Extensions.Diagnostics.Latency/LatencyContextOptions.xml +++ b/xml/Microsoft.Extensions.Diagnostics.Latency/LatencyContextOptions.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Telemetry 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -31,7 +32,7 @@ Constructor Microsoft.Extensions.Telemetry - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -50,7 +51,7 @@ Property Microsoft.Extensions.Telemetry - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Diagnostics.Latency/LatencyContextRegistrationOptions.xml b/xml/Microsoft.Extensions.Diagnostics.Latency/LatencyContextRegistrationOptions.xml index cbcd6efa247..7caa3025d26 100644 --- a/xml/Microsoft.Extensions.Diagnostics.Latency/LatencyContextRegistrationOptions.xml +++ b/xml/Microsoft.Extensions.Diagnostics.Latency/LatencyContextRegistrationOptions.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Telemetry.Abstractions 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -41,7 +42,7 @@ Constructor Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -60,7 +61,7 @@ Property Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -90,7 +91,7 @@ Property Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -120,7 +121,7 @@ Property Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Diagnostics.Latency/LatencyData.xml b/xml/Microsoft.Extensions.Diagnostics.Latency/LatencyData.xml index 66e377a8202..474a862c774 100644 --- a/xml/Microsoft.Extensions.Diagnostics.Latency/LatencyData.xml +++ b/xml/Microsoft.Extensions.Diagnostics.Latency/LatencyData.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Telemetry.Abstractions 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -38,7 +39,7 @@ Constructor Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -70,7 +71,7 @@ Property Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -94,7 +95,7 @@ Property Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -118,7 +119,7 @@ Property Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -142,7 +143,7 @@ Property Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -166,7 +167,7 @@ Property Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Diagnostics.Latency/Measure.xml b/xml/Microsoft.Extensions.Diagnostics.Latency/Measure.xml index 0dea23626b6..a8c18b8601e 100644 --- a/xml/Microsoft.Extensions.Diagnostics.Latency/Measure.xml +++ b/xml/Microsoft.Extensions.Diagnostics.Latency/Measure.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Telemetry.Abstractions 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -54,7 +55,7 @@ Constructor Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -83,7 +84,7 @@ Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -112,7 +113,7 @@ Method Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -147,7 +148,7 @@ Method Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -172,7 +173,7 @@ Property Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -196,7 +197,7 @@ Method Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -227,7 +228,7 @@ Method Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -258,7 +259,7 @@ Property Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Diagnostics.Latency/MeasureToken.xml b/xml/Microsoft.Extensions.Diagnostics.Latency/MeasureToken.xml index bf6f487f5f6..2bfbe073964 100644 --- a/xml/Microsoft.Extensions.Diagnostics.Latency/MeasureToken.xml +++ b/xml/Microsoft.Extensions.Diagnostics.Latency/MeasureToken.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Telemetry.Abstractions 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -46,7 +47,7 @@ Constructor Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -74,7 +75,7 @@ Property Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -98,7 +99,7 @@ Property Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Diagnostics.Latency/Tag.xml b/xml/Microsoft.Extensions.Diagnostics.Latency/Tag.xml index c829fc7aa6d..e5bf7ce65bf 100644 --- a/xml/Microsoft.Extensions.Diagnostics.Latency/Tag.xml +++ b/xml/Microsoft.Extensions.Diagnostics.Latency/Tag.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Telemetry.Abstractions 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -46,7 +47,7 @@ Constructor Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -72,7 +73,7 @@ Property Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -96,7 +97,7 @@ Property Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Diagnostics.Latency/TagToken.xml b/xml/Microsoft.Extensions.Diagnostics.Latency/TagToken.xml index a0e9c1fecf3..5a4d5025475 100644 --- a/xml/Microsoft.Extensions.Diagnostics.Latency/TagToken.xml +++ b/xml/Microsoft.Extensions.Diagnostics.Latency/TagToken.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Telemetry.Abstractions 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -46,7 +47,7 @@ Constructor Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -74,7 +75,7 @@ Property Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -98,7 +99,7 @@ Property Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Diagnostics.Metrics.Testing/CollectedMeasurement`1.xml b/xml/Microsoft.Extensions.Diagnostics.Metrics.Testing/CollectedMeasurement`1.xml index cdc02294077..10479bde990 100644 --- a/xml/Microsoft.Extensions.Diagnostics.Metrics.Testing/CollectedMeasurement`1.xml +++ b/xml/Microsoft.Extensions.Diagnostics.Metrics.Testing/CollectedMeasurement`1.xml @@ -13,6 +13,7 @@ Microsoft.Extensions.Diagnostics.Testing 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -56,7 +57,7 @@ Microsoft.Extensions.Diagnostics.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -100,7 +101,7 @@ Microsoft.Extensions.Diagnostics.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -146,7 +147,7 @@ Microsoft.Extensions.Diagnostics.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -190,7 +191,7 @@ Microsoft.Extensions.Diagnostics.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -236,7 +237,7 @@ Microsoft.Extensions.Diagnostics.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -270,7 +271,7 @@ Microsoft.Extensions.Diagnostics.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -298,7 +299,7 @@ Microsoft.Extensions.Diagnostics.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Diagnostics.Metrics.Testing/MeasurementExtensions.xml b/xml/Microsoft.Extensions.Diagnostics.Metrics.Testing/MeasurementExtensions.xml index 219902dd51f..975651477ed 100644 --- a/xml/Microsoft.Extensions.Diagnostics.Metrics.Testing/MeasurementExtensions.xml +++ b/xml/Microsoft.Extensions.Diagnostics.Metrics.Testing/MeasurementExtensions.xml @@ -13,6 +13,7 @@ Microsoft.Extensions.Diagnostics.Testing 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -40,7 +41,7 @@ Microsoft.Extensions.Diagnostics.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -102,7 +103,7 @@ Microsoft.Extensions.Diagnostics.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -164,7 +165,7 @@ Microsoft.Extensions.Diagnostics.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -213,7 +214,7 @@ Microsoft.Extensions.Diagnostics.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -275,7 +276,7 @@ Microsoft.Extensions.Diagnostics.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Diagnostics.Metrics.Testing/MetricCollector`1.xml b/xml/Microsoft.Extensions.Diagnostics.Metrics.Testing/MetricCollector`1.xml index 7bb99563508..73f7ba657b9 100644 --- a/xml/Microsoft.Extensions.Diagnostics.Metrics.Testing/MetricCollector`1.xml +++ b/xml/Microsoft.Extensions.Diagnostics.Metrics.Testing/MetricCollector`1.xml @@ -13,6 +13,7 @@ Microsoft.Extensions.Diagnostics.Testing 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -73,7 +74,7 @@ Microsoft.Extensions.Diagnostics.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -115,7 +116,7 @@ Microsoft.Extensions.Diagnostics.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -157,7 +158,7 @@ Microsoft.Extensions.Diagnostics.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -195,7 +196,7 @@ Microsoft.Extensions.Diagnostics.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -248,7 +249,7 @@ Microsoft.Extensions.Diagnostics.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -279,7 +280,7 @@ Microsoft.Extensions.Diagnostics.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -306,7 +307,7 @@ Microsoft.Extensions.Diagnostics.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -338,7 +339,7 @@ Microsoft.Extensions.Diagnostics.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -378,7 +379,7 @@ Microsoft.Extensions.Diagnostics.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -412,7 +413,7 @@ Microsoft.Extensions.Diagnostics.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -439,7 +440,7 @@ Microsoft.Extensions.Diagnostics.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -473,7 +474,7 @@ Microsoft.Extensions.Diagnostics.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Diagnostics.Metrics/CounterAttribute.xml b/xml/Microsoft.Extensions.Diagnostics.Metrics/CounterAttribute.xml index 22f3eb8922f..ca527a1e1e8 100644 --- a/xml/Microsoft.Extensions.Diagnostics.Metrics/CounterAttribute.xml +++ b/xml/Microsoft.Extensions.Diagnostics.Metrics/CounterAttribute.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Telemetry.Abstractions 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -61,7 +62,7 @@ Constructor Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -98,7 +99,7 @@ Constructor Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -128,7 +129,7 @@ Property Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -167,7 +168,7 @@ Property Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -197,7 +198,7 @@ Property Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Diagnostics.Metrics/CounterAttribute`1.xml b/xml/Microsoft.Extensions.Diagnostics.Metrics/CounterAttribute`1.xml index 2e587c017a2..98546c85ecb 100644 --- a/xml/Microsoft.Extensions.Diagnostics.Metrics/CounterAttribute`1.xml +++ b/xml/Microsoft.Extensions.Diagnostics.Metrics/CounterAttribute`1.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Telemetry.Abstractions 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -80,7 +81,7 @@ Constructor Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -117,7 +118,7 @@ Constructor Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -147,7 +148,7 @@ Property Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -185,7 +186,7 @@ Property Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -215,7 +216,7 @@ Property Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Diagnostics.Metrics/GaugeAttribute.xml b/xml/Microsoft.Extensions.Diagnostics.Metrics/GaugeAttribute.xml index 6104d250824..214df1cc5cc 100644 --- a/xml/Microsoft.Extensions.Diagnostics.Metrics/GaugeAttribute.xml +++ b/xml/Microsoft.Extensions.Diagnostics.Metrics/GaugeAttribute.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Telemetry.Abstractions 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -61,7 +62,7 @@ Constructor Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -98,7 +99,7 @@ Constructor Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -128,7 +129,7 @@ Property Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -166,7 +167,7 @@ Property Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -196,7 +197,7 @@ Property Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Diagnostics.Metrics/HistogramAttribute.xml b/xml/Microsoft.Extensions.Diagnostics.Metrics/HistogramAttribute.xml index 38e803e5803..06d12494a44 100644 --- a/xml/Microsoft.Extensions.Diagnostics.Metrics/HistogramAttribute.xml +++ b/xml/Microsoft.Extensions.Diagnostics.Metrics/HistogramAttribute.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Telemetry.Abstractions 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -61,7 +62,7 @@ Constructor Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -98,7 +99,7 @@ Constructor Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -128,7 +129,7 @@ Property Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -166,7 +167,7 @@ Property Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -196,7 +197,7 @@ Property Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Diagnostics.Metrics/HistogramAttribute`1.xml b/xml/Microsoft.Extensions.Diagnostics.Metrics/HistogramAttribute`1.xml index eb3e134fe33..a2787d1096f 100644 --- a/xml/Microsoft.Extensions.Diagnostics.Metrics/HistogramAttribute`1.xml +++ b/xml/Microsoft.Extensions.Diagnostics.Metrics/HistogramAttribute`1.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Telemetry.Abstractions 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -80,7 +81,7 @@ Constructor Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -117,7 +118,7 @@ Constructor Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -147,7 +148,7 @@ Property Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -185,7 +186,7 @@ Property Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -215,7 +216,7 @@ Property Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Diagnostics.Metrics/TagNameAttribute.xml b/xml/Microsoft.Extensions.Diagnostics.Metrics/TagNameAttribute.xml index 8369988112b..7449353f93a 100644 --- a/xml/Microsoft.Extensions.Diagnostics.Metrics/TagNameAttribute.xml +++ b/xml/Microsoft.Extensions.Diagnostics.Metrics/TagNameAttribute.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Telemetry.Abstractions 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -62,7 +63,7 @@ Constructor Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -86,7 +87,7 @@ Property Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Diagnostics.ResourceMonitoring/IResourceMonitor.xml b/xml/Microsoft.Extensions.Diagnostics.ResourceMonitoring/IResourceMonitor.xml index 75649ba9f61..9c632e3f8cc 100644 --- a/xml/Microsoft.Extensions.Diagnostics.ResourceMonitoring/IResourceMonitor.xml +++ b/xml/Microsoft.Extensions.Diagnostics.ResourceMonitoring/IResourceMonitor.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Diagnostics.ResourceMonitoring 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -29,7 +30,7 @@ Method Microsoft.Extensions.Diagnostics.ResourceMonitoring - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Diagnostics.ResourceMonitoring/IResourceMonitorBuilder.xml b/xml/Microsoft.Extensions.Diagnostics.ResourceMonitoring/IResourceMonitorBuilder.xml index 7899d7ae73e..27e00179cf4 100644 --- a/xml/Microsoft.Extensions.Diagnostics.ResourceMonitoring/IResourceMonitorBuilder.xml +++ b/xml/Microsoft.Extensions.Diagnostics.ResourceMonitoring/IResourceMonitorBuilder.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Diagnostics.ResourceMonitoring 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -35,7 +36,7 @@ Method Microsoft.Extensions.Diagnostics.ResourceMonitoring - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -75,7 +76,7 @@ Property Microsoft.Extensions.Diagnostics.ResourceMonitoring - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Diagnostics.ResourceMonitoring/IResourceUtilizationPublisher.xml b/xml/Microsoft.Extensions.Diagnostics.ResourceMonitoring/IResourceUtilizationPublisher.xml index 69579164933..ea0da79fe90 100644 --- a/xml/Microsoft.Extensions.Diagnostics.ResourceMonitoring/IResourceUtilizationPublisher.xml +++ b/xml/Microsoft.Extensions.Diagnostics.ResourceMonitoring/IResourceUtilizationPublisher.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Diagnostics.ResourceMonitoring 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -29,7 +30,7 @@ Method Microsoft.Extensions.Diagnostics.ResourceMonitoring - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Diagnostics.ResourceMonitoring/ResourceMonitoringBuilderExtensions.xml b/xml/Microsoft.Extensions.Diagnostics.ResourceMonitoring/ResourceMonitoringBuilderExtensions.xml index 64e65d0bf53..0536aa0576c 100644 --- a/xml/Microsoft.Extensions.Diagnostics.ResourceMonitoring/ResourceMonitoringBuilderExtensions.xml +++ b/xml/Microsoft.Extensions.Diagnostics.ResourceMonitoring/ResourceMonitoringBuilderExtensions.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Diagnostics.ResourceMonitoring 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -42,7 +43,7 @@ Method Microsoft.Extensions.Diagnostics.ResourceMonitoring - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -73,7 +74,7 @@ Method Microsoft.Extensions.Diagnostics.ResourceMonitoring - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Diagnostics.ResourceMonitoring/ResourceMonitoringOptions.xml b/xml/Microsoft.Extensions.Diagnostics.ResourceMonitoring/ResourceMonitoringOptions.xml index 07d208650a2..49fec434b79 100644 --- a/xml/Microsoft.Extensions.Diagnostics.ResourceMonitoring/ResourceMonitoringOptions.xml +++ b/xml/Microsoft.Extensions.Diagnostics.ResourceMonitoring/ResourceMonitoringOptions.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Diagnostics.ResourceMonitoring 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -41,7 +42,7 @@ Constructor Microsoft.Extensions.Diagnostics.ResourceMonitoring - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -60,7 +61,7 @@ Property Microsoft.Extensions.Diagnostics.ResourceMonitoring - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -89,7 +90,7 @@ Property Microsoft.Extensions.Diagnostics.ResourceMonitoring - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -118,7 +119,7 @@ Property Microsoft.Extensions.Diagnostics.ResourceMonitoring - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -147,7 +148,7 @@ Property Microsoft.Extensions.Diagnostics.ResourceMonitoring - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -175,7 +176,7 @@ Property Microsoft.Extensions.Diagnostics.ResourceMonitoring - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -203,7 +204,7 @@ Property Microsoft.Extensions.Diagnostics.ResourceMonitoring - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Diagnostics.ResourceMonitoring/ResourceUtilization.xml b/xml/Microsoft.Extensions.Diagnostics.ResourceMonitoring/ResourceUtilization.xml index 980ff13d042..35933effccd 100644 --- a/xml/Microsoft.Extensions.Diagnostics.ResourceMonitoring/ResourceUtilization.xml +++ b/xml/Microsoft.Extensions.Diagnostics.ResourceMonitoring/ResourceUtilization.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Diagnostics.ResourceMonitoring 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -38,7 +39,7 @@ Constructor Microsoft.Extensions.Diagnostics.ResourceMonitoring - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -66,7 +67,7 @@ Property Microsoft.Extensions.Diagnostics.ResourceMonitoring - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -92,7 +93,7 @@ Property Microsoft.Extensions.Diagnostics.ResourceMonitoring - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -116,7 +117,7 @@ Property Microsoft.Extensions.Diagnostics.ResourceMonitoring - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -142,7 +143,7 @@ Property Microsoft.Extensions.Diagnostics.ResourceMonitoring - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Diagnostics.ResourceMonitoring/SystemResources.xml b/xml/Microsoft.Extensions.Diagnostics.ResourceMonitoring/SystemResources.xml index ee4cab4d61d..8f5c8ea573c 100644 --- a/xml/Microsoft.Extensions.Diagnostics.ResourceMonitoring/SystemResources.xml +++ b/xml/Microsoft.Extensions.Diagnostics.ResourceMonitoring/SystemResources.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Diagnostics.ResourceMonitoring 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -38,7 +39,7 @@ Constructor Microsoft.Extensions.Diagnostics.ResourceMonitoring - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -68,7 +69,7 @@ Property Microsoft.Extensions.Diagnostics.ResourceMonitoring - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -83,6 +84,9 @@ This value corresponds to the number of the guaranteed CPUs as described by Kubernetes CPU request parameter, each 1000 CPU units represent 1 CPU or 1 Core. For example, if the POD is configured with 1500m units as the CPU request, this property will be assigned to 1.5 which means one and a half CPU will be dedicated for the POD. + For POD this value is calculated based on the cgroupv2 weight, using the formula. + y = (1 + ((x - 2) * 9999) / 262142), where y is the CPU weight and x is the CPU share (cgroup v1). + https://github.com/kubernetes/enhancements/tree/master/keps/sig-node/2254-cgroup-v2#phase-1-convert-from-cgroups-v1-settings-to-v2. @@ -96,7 +100,7 @@ Property Microsoft.Extensions.Diagnostics.ResourceMonitoring - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -122,7 +126,7 @@ Property Microsoft.Extensions.Diagnostics.ResourceMonitoring - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -150,7 +154,7 @@ Property Microsoft.Extensions.Diagnostics.ResourceMonitoring - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -158,7 +162,7 @@ - Gets the maximum memory allocated to the system in bytes. + Gets the Container's Request Memory Limit or the Maximum allocated for the VM. To be added. diff --git a/xml/Microsoft.Extensions.Hosting/ApplicationMetadataHostBuilderExtensions.xml b/xml/Microsoft.Extensions.Hosting/ApplicationMetadataHostBuilderExtensions.xml index 58198d925d5..76d29d35132 100644 --- a/xml/Microsoft.Extensions.Hosting/ApplicationMetadataHostBuilderExtensions.xml +++ b/xml/Microsoft.Extensions.Hosting/ApplicationMetadataHostBuilderExtensions.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.AmbientMetadata.Application 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -41,7 +42,7 @@ Method Microsoft.Extensions.AmbientMetadata.Application - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Http.Diagnostics/HttpRouteParameterRedactionMode.xml b/xml/Microsoft.Extensions.Http.Diagnostics/HttpRouteParameterRedactionMode.xml index 4a45d62f65e..6b752832bff 100644 --- a/xml/Microsoft.Extensions.Http.Diagnostics/HttpRouteParameterRedactionMode.xml +++ b/xml/Microsoft.Extensions.Http.Diagnostics/HttpRouteParameterRedactionMode.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Telemetry.Abstractions 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -31,7 +32,7 @@ Field Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -57,7 +58,7 @@ Field Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -80,7 +81,7 @@ Field Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Http.Diagnostics/IDownstreamDependencyMetadata.xml b/xml/Microsoft.Extensions.Http.Diagnostics/IDownstreamDependencyMetadata.xml index 271881989cd..c5957931716 100644 --- a/xml/Microsoft.Extensions.Http.Diagnostics/IDownstreamDependencyMetadata.xml +++ b/xml/Microsoft.Extensions.Http.Diagnostics/IDownstreamDependencyMetadata.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Telemetry.Abstractions 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -35,7 +36,7 @@ Property Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -59,7 +60,7 @@ Property Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -83,7 +84,7 @@ Property Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Http.Diagnostics/IOutgoingRequestContext.xml b/xml/Microsoft.Extensions.Http.Diagnostics/IOutgoingRequestContext.xml index e43832833fb..549853ce415 100644 --- a/xml/Microsoft.Extensions.Http.Diagnostics/IOutgoingRequestContext.xml +++ b/xml/Microsoft.Extensions.Http.Diagnostics/IOutgoingRequestContext.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Telemetry.Abstractions 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -35,7 +36,7 @@ Property Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -59,7 +60,7 @@ Method Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Http.Diagnostics/RequestMetadata.xml b/xml/Microsoft.Extensions.Http.Diagnostics/RequestMetadata.xml index 2f12aa6ae4f..bba9c541790 100644 --- a/xml/Microsoft.Extensions.Http.Diagnostics/RequestMetadata.xml +++ b/xml/Microsoft.Extensions.Http.Diagnostics/RequestMetadata.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Telemetry.Abstractions 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -41,7 +42,7 @@ Constructor Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -63,7 +64,7 @@ Constructor Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -94,7 +95,7 @@ Property Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -122,7 +123,7 @@ Property Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -148,7 +149,7 @@ Property Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -178,7 +179,7 @@ Property Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Http.Diagnostics/TelemetryConstants.xml b/xml/Microsoft.Extensions.Http.Diagnostics/TelemetryConstants.xml index 8e1867e1438..07c788abe6b 100644 --- a/xml/Microsoft.Extensions.Http.Diagnostics/TelemetryConstants.xml +++ b/xml/Microsoft.Extensions.Http.Diagnostics/TelemetryConstants.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Telemetry.Abstractions 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -42,7 +43,7 @@ Field Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -65,7 +66,7 @@ Field Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -88,7 +89,7 @@ Field Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -111,7 +112,7 @@ Field Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -134,7 +135,7 @@ Field Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Http.Latency/HttpClientLatencyTelemetryOptions.xml b/xml/Microsoft.Extensions.Http.Latency/HttpClientLatencyTelemetryOptions.xml index 2427aa5720e..6ccebbc9d6c 100644 --- a/xml/Microsoft.Extensions.Http.Latency/HttpClientLatencyTelemetryOptions.xml +++ b/xml/Microsoft.Extensions.Http.Latency/HttpClientLatencyTelemetryOptions.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Http.Diagnostics 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -31,7 +32,7 @@ Constructor Microsoft.Extensions.Http.Diagnostics - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -50,7 +51,7 @@ Property Microsoft.Extensions.Http.Diagnostics - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Http.Logging/HttpClientLoggingTagNames.xml b/xml/Microsoft.Extensions.Http.Logging/HttpClientLoggingTagNames.xml index 893b46765ec..da05280c2b2 100644 --- a/xml/Microsoft.Extensions.Http.Logging/HttpClientLoggingTagNames.xml +++ b/xml/Microsoft.Extensions.Http.Logging/HttpClientLoggingTagNames.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Http.Diagnostics 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -42,7 +43,7 @@ Field Microsoft.Extensions.Http.Diagnostics - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -65,7 +66,7 @@ Field Microsoft.Extensions.Http.Diagnostics - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -88,7 +89,7 @@ Field Microsoft.Extensions.Http.Diagnostics - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -111,7 +112,7 @@ Field Microsoft.Extensions.Http.Diagnostics - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -134,7 +135,7 @@ Field Microsoft.Extensions.Http.Diagnostics - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -157,7 +158,7 @@ Field Microsoft.Extensions.Http.Diagnostics - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -180,7 +181,7 @@ Field Microsoft.Extensions.Http.Diagnostics - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -203,7 +204,7 @@ Field Microsoft.Extensions.Http.Diagnostics - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -226,7 +227,7 @@ Field Microsoft.Extensions.Http.Diagnostics - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -249,7 +250,7 @@ Property Microsoft.Extensions.Http.Diagnostics - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Http.Logging/IHttpClientLogEnricher.xml b/xml/Microsoft.Extensions.Http.Logging/IHttpClientLogEnricher.xml index 3d0848c1cf5..41aaa9b46cd 100644 --- a/xml/Microsoft.Extensions.Http.Logging/IHttpClientLogEnricher.xml +++ b/xml/Microsoft.Extensions.Http.Logging/IHttpClientLogEnricher.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Http.Diagnostics 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -35,7 +36,7 @@ Method Microsoft.Extensions.Http.Diagnostics - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Http.Logging/LoggingOptions.xml b/xml/Microsoft.Extensions.Http.Logging/LoggingOptions.xml index 9f9ab18a88f..553dc085725 100644 --- a/xml/Microsoft.Extensions.Http.Logging/LoggingOptions.xml +++ b/xml/Microsoft.Extensions.Http.Logging/LoggingOptions.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Http.Diagnostics 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -41,7 +42,7 @@ Constructor Microsoft.Extensions.Http.Diagnostics - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -60,7 +61,7 @@ Property Microsoft.Extensions.Http.Diagnostics - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -88,7 +89,7 @@ Property Microsoft.Extensions.Http.Diagnostics - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -122,7 +123,7 @@ Property Microsoft.Extensions.Http.Diagnostics - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -150,7 +151,7 @@ Property Microsoft.Extensions.Http.Diagnostics - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -186,7 +187,7 @@ Property Microsoft.Extensions.Http.Diagnostics - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -215,7 +216,7 @@ Property Microsoft.Extensions.Http.Diagnostics - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -245,7 +246,7 @@ Property Microsoft.Extensions.Http.Diagnostics - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -280,7 +281,7 @@ Property Microsoft.Extensions.Http.Diagnostics - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -310,7 +311,7 @@ Property Microsoft.Extensions.Http.Diagnostics - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -336,7 +337,7 @@ Property Microsoft.Extensions.Http.Diagnostics - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -366,7 +367,7 @@ Property Microsoft.Extensions.Http.Diagnostics - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -401,7 +402,7 @@ Property Microsoft.Extensions.Http.Diagnostics - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Http.Logging/OutgoingPathLoggingMode.xml b/xml/Microsoft.Extensions.Http.Logging/OutgoingPathLoggingMode.xml index 34580e25745..10010067276 100644 --- a/xml/Microsoft.Extensions.Http.Logging/OutgoingPathLoggingMode.xml +++ b/xml/Microsoft.Extensions.Http.Logging/OutgoingPathLoggingMode.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Http.Diagnostics 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -31,7 +32,7 @@ Field Microsoft.Extensions.Http.Diagnostics - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -54,7 +55,7 @@ Field Microsoft.Extensions.Http.Diagnostics - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Http.Resilience/HedgingEndpointOptions.xml b/xml/Microsoft.Extensions.Http.Resilience/HedgingEndpointOptions.xml index 6e40a219d58..f1667ab9aac 100644 --- a/xml/Microsoft.Extensions.Http.Resilience/HedgingEndpointOptions.xml +++ b/xml/Microsoft.Extensions.Http.Resilience/HedgingEndpointOptions.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Http.Resilience 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -43,7 +44,7 @@ Constructor Microsoft.Extensions.Http.Resilience - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -62,7 +63,7 @@ Property Microsoft.Extensions.Http.Resilience - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -98,7 +99,7 @@ Property Microsoft.Extensions.Http.Resilience - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -134,7 +135,7 @@ Property Microsoft.Extensions.Http.Resilience - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Http.Resilience/HttpCircuitBreakerStrategyOptions.xml b/xml/Microsoft.Extensions.Http.Resilience/HttpCircuitBreakerStrategyOptions.xml index 42b019d0bdc..8910d0b6951 100644 --- a/xml/Microsoft.Extensions.Http.Resilience/HttpCircuitBreakerStrategyOptions.xml +++ b/xml/Microsoft.Extensions.Http.Resilience/HttpCircuitBreakerStrategyOptions.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Http.Resilience 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -40,7 +41,7 @@ Constructor Microsoft.Extensions.Http.Resilience - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Http.Resilience/HttpClientHedgingResiliencePredicates.xml b/xml/Microsoft.Extensions.Http.Resilience/HttpClientHedgingResiliencePredicates.xml index ab26e1d0bcc..9aa1a1152d3 100644 --- a/xml/Microsoft.Extensions.Http.Resilience/HttpClientHedgingResiliencePredicates.xml +++ b/xml/Microsoft.Extensions.Http.Resilience/HttpClientHedgingResiliencePredicates.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Http.Resilience 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -32,7 +33,7 @@ Method Microsoft.Extensions.Http.Resilience - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -49,7 +50,7 @@ - To be added. + The outcome of the user-specified callback. Determines whether an outcome should be treated by hedging as a transient failure. @@ -58,5 +59,49 @@ To be added. + + + + + + + + Method + + Microsoft.Extensions.Http.Resilience + 8.5.0.0 + 9.0.0.0 + + + + [System.Diagnostics.CodeAnalysis.Experimental("EXTEXP0001", UrlFormat="https://aka.ms/dotnet-extensions-warnings/{0}")] + [<System.Diagnostics.CodeAnalysis.Experimental("EXTEXP0001", UrlFormat="https://aka.ms/dotnet-extensions-warnings/{0}")>] + + + + System.Boolean + + + + + + [System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 1 })] + [<System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 1 })>] + + + + + + + The outcome of the user-specified callback. + The associated with the execution. + + Determines whether an should be treated by hedging as a transient failure. + + + if outcome is transient, if not. + To be added. + + diff --git a/xml/Microsoft.Extensions.Http.Resilience/HttpClientResiliencePredicates.xml b/xml/Microsoft.Extensions.Http.Resilience/HttpClientResiliencePredicates.xml index cf116a0b1d9..b9fe496c0f1 100644 --- a/xml/Microsoft.Extensions.Http.Resilience/HttpClientResiliencePredicates.xml +++ b/xml/Microsoft.Extensions.Http.Resilience/HttpClientResiliencePredicates.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Http.Resilience 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -42,7 +43,7 @@ Method Microsoft.Extensions.Http.Resilience - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -68,5 +69,49 @@ To be added. + + + + + + + + Method + + Microsoft.Extensions.Http.Resilience + 8.5.0.0 + 9.0.0.0 + + + + [System.Diagnostics.CodeAnalysis.Experimental("EXTEXP0001", UrlFormat="https://aka.ms/dotnet-extensions-warnings/{0}")] + [<System.Diagnostics.CodeAnalysis.Experimental("EXTEXP0001", UrlFormat="https://aka.ms/dotnet-extensions-warnings/{0}")>] + + + + System.Boolean + + + + + + [System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 1 })] + [<System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 1 })>] + + + + + + + The outcome of the user-specified callback. + The associated with the execution. + + Determines whether an should be treated by resilience strategies as a transient failure. + + + if outcome is transient, if not. + To be added. + + diff --git a/xml/Microsoft.Extensions.Http.Resilience/HttpHedgingStrategyOptions.xml b/xml/Microsoft.Extensions.Http.Resilience/HttpHedgingStrategyOptions.xml index 52a1919d341..14c2d10ba05 100644 --- a/xml/Microsoft.Extensions.Http.Resilience/HttpHedgingStrategyOptions.xml +++ b/xml/Microsoft.Extensions.Http.Resilience/HttpHedgingStrategyOptions.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Http.Resilience 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -40,7 +41,7 @@ Constructor Microsoft.Extensions.Http.Resilience - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -49,7 +50,7 @@ Initializes a new instance of the class. - By default the options is set to handle only transient failures, + By default, the options is set to handle only transient failures, i.e. timeouts, 5xx responses and exceptions. diff --git a/xml/Microsoft.Extensions.Http.Resilience/HttpRateLimiterStrategyOptions.xml b/xml/Microsoft.Extensions.Http.Resilience/HttpRateLimiterStrategyOptions.xml index a8ef9300141..5c676875a58 100644 --- a/xml/Microsoft.Extensions.Http.Resilience/HttpRateLimiterStrategyOptions.xml +++ b/xml/Microsoft.Extensions.Http.Resilience/HttpRateLimiterStrategyOptions.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Http.Resilience 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -31,7 +32,7 @@ Constructor Microsoft.Extensions.Http.Resilience - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Http.Resilience/HttpResiliencePipelineBuilderExtensions.xml b/xml/Microsoft.Extensions.Http.Resilience/HttpResiliencePipelineBuilderExtensions.xml index 71e034bf693..7c8a7223551 100644 --- a/xml/Microsoft.Extensions.Http.Resilience/HttpResiliencePipelineBuilderExtensions.xml +++ b/xml/Microsoft.Extensions.Http.Resilience/HttpResiliencePipelineBuilderExtensions.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Http.Resilience 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -42,7 +43,7 @@ Method Microsoft.Extensions.Http.Resilience - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -72,7 +73,7 @@ Method Microsoft.Extensions.Http.Resilience - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Http.Resilience/HttpRetryStrategyOptions.xml b/xml/Microsoft.Extensions.Http.Resilience/HttpRetryStrategyOptions.xml index ba924794e5c..285e492e634 100644 --- a/xml/Microsoft.Extensions.Http.Resilience/HttpRetryStrategyOptions.xml +++ b/xml/Microsoft.Extensions.Http.Resilience/HttpRetryStrategyOptions.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Http.Resilience 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -40,7 +41,7 @@ Constructor Microsoft.Extensions.Http.Resilience - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -64,7 +65,7 @@ Property Microsoft.Extensions.Http.Resilience - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Http.Resilience/HttpStandardHedgingResilienceOptions.xml b/xml/Microsoft.Extensions.Http.Resilience/HttpStandardHedgingResilienceOptions.xml index 6203b3a8b50..662b037d48d 100644 --- a/xml/Microsoft.Extensions.Http.Resilience/HttpStandardHedgingResilienceOptions.xml +++ b/xml/Microsoft.Extensions.Http.Resilience/HttpStandardHedgingResilienceOptions.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Http.Resilience 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -54,7 +55,7 @@ Constructor Microsoft.Extensions.Http.Resilience - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -73,7 +74,7 @@ Property Microsoft.Extensions.Http.Resilience - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -109,7 +110,7 @@ Property Microsoft.Extensions.Http.Resilience - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -145,7 +146,7 @@ Property Microsoft.Extensions.Http.Resilience - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Http.Resilience/HttpStandardResilienceOptions.xml b/xml/Microsoft.Extensions.Http.Resilience/HttpStandardResilienceOptions.xml index 4d68a3f3280..fa9f8b1cb0f 100644 --- a/xml/Microsoft.Extensions.Http.Resilience/HttpStandardResilienceOptions.xml +++ b/xml/Microsoft.Extensions.Http.Resilience/HttpStandardResilienceOptions.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Http.Resilience 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -48,7 +49,7 @@ Constructor Microsoft.Extensions.Http.Resilience - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -67,7 +68,7 @@ Property Microsoft.Extensions.Http.Resilience - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -104,7 +105,7 @@ Property Microsoft.Extensions.Http.Resilience - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -140,7 +141,7 @@ Property Microsoft.Extensions.Http.Resilience - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -176,7 +177,7 @@ Property Microsoft.Extensions.Http.Resilience - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -212,7 +213,7 @@ Property Microsoft.Extensions.Http.Resilience - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Http.Resilience/HttpStandardResiliencePipelineBuilderExtensions.xml b/xml/Microsoft.Extensions.Http.Resilience/HttpStandardResiliencePipelineBuilderExtensions.xml index 44c8854d47d..4dc2f3e9ce4 100644 --- a/xml/Microsoft.Extensions.Http.Resilience/HttpStandardResiliencePipelineBuilderExtensions.xml +++ b/xml/Microsoft.Extensions.Http.Resilience/HttpStandardResiliencePipelineBuilderExtensions.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Http.Resilience 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -42,7 +43,7 @@ Method Microsoft.Extensions.Http.Resilience - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -72,7 +73,7 @@ Method Microsoft.Extensions.Http.Resilience - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -102,7 +103,7 @@ Method Microsoft.Extensions.Http.Resilience - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -132,7 +133,7 @@ Method Microsoft.Extensions.Http.Resilience - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -162,7 +163,7 @@ Method Microsoft.Extensions.Http.Resilience - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Http.Resilience/HttpTimeoutStrategyOptions.xml b/xml/Microsoft.Extensions.Http.Resilience/HttpTimeoutStrategyOptions.xml index a6904ad707f..67e9be77564 100644 --- a/xml/Microsoft.Extensions.Http.Resilience/HttpTimeoutStrategyOptions.xml +++ b/xml/Microsoft.Extensions.Http.Resilience/HttpTimeoutStrategyOptions.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Http.Resilience 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -31,7 +32,7 @@ Constructor Microsoft.Extensions.Http.Resilience - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Http.Resilience/IHttpResiliencePipelineBuilder.xml b/xml/Microsoft.Extensions.Http.Resilience/IHttpResiliencePipelineBuilder.xml index ea76822d719..fa23ce41cbc 100644 --- a/xml/Microsoft.Extensions.Http.Resilience/IHttpResiliencePipelineBuilder.xml +++ b/xml/Microsoft.Extensions.Http.Resilience/IHttpResiliencePipelineBuilder.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Http.Resilience 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -35,7 +36,7 @@ Property Microsoft.Extensions.Http.Resilience - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -59,7 +60,7 @@ Property Microsoft.Extensions.Http.Resilience - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Http.Resilience/IHttpStandardResiliencePipelineBuilder.xml b/xml/Microsoft.Extensions.Http.Resilience/IHttpStandardResiliencePipelineBuilder.xml index 8079239276b..91ef3a83bce 100644 --- a/xml/Microsoft.Extensions.Http.Resilience/IHttpStandardResiliencePipelineBuilder.xml +++ b/xml/Microsoft.Extensions.Http.Resilience/IHttpStandardResiliencePipelineBuilder.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Http.Resilience 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -35,7 +36,7 @@ Property Microsoft.Extensions.Http.Resilience - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -59,7 +60,7 @@ Property Microsoft.Extensions.Http.Resilience - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Http.Resilience/IRoutingStrategyBuilder.xml b/xml/Microsoft.Extensions.Http.Resilience/IRoutingStrategyBuilder.xml index 8657cc5881d..1744be19cb3 100644 --- a/xml/Microsoft.Extensions.Http.Resilience/IRoutingStrategyBuilder.xml +++ b/xml/Microsoft.Extensions.Http.Resilience/IRoutingStrategyBuilder.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Http.Resilience 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -35,7 +36,7 @@ Property Microsoft.Extensions.Http.Resilience - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -59,7 +60,7 @@ Property Microsoft.Extensions.Http.Resilience - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Http.Resilience/IStandardHedgingHandlerBuilder.xml b/xml/Microsoft.Extensions.Http.Resilience/IStandardHedgingHandlerBuilder.xml index 977e8b64953..c2cd836d9f5 100644 --- a/xml/Microsoft.Extensions.Http.Resilience/IStandardHedgingHandlerBuilder.xml +++ b/xml/Microsoft.Extensions.Http.Resilience/IStandardHedgingHandlerBuilder.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Http.Resilience 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -35,7 +36,7 @@ Property Microsoft.Extensions.Http.Resilience - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -59,7 +60,7 @@ Property Microsoft.Extensions.Http.Resilience - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -83,7 +84,7 @@ Property Microsoft.Extensions.Http.Resilience - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Http.Resilience/OrderedGroupsRoutingOptions.xml b/xml/Microsoft.Extensions.Http.Resilience/OrderedGroupsRoutingOptions.xml index ff4de057a3f..469a9725d91 100644 --- a/xml/Microsoft.Extensions.Http.Resilience/OrderedGroupsRoutingOptions.xml +++ b/xml/Microsoft.Extensions.Http.Resilience/OrderedGroupsRoutingOptions.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Http.Resilience 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -43,7 +44,7 @@ Constructor Microsoft.Extensions.Http.Resilience - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -62,7 +63,7 @@ Property Microsoft.Extensions.Http.Resilience - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Http.Resilience/ResilienceHandler.xml b/xml/Microsoft.Extensions.Http.Resilience/ResilienceHandler.xml index 9c9d15ecb90..7297b9fca38 100644 --- a/xml/Microsoft.Extensions.Http.Resilience/ResilienceHandler.xml +++ b/xml/Microsoft.Extensions.Http.Resilience/ResilienceHandler.xml @@ -8,6 +8,7 @@ Microsoft.Extensions.Http.Resilience 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -45,7 +46,7 @@ Constructor Microsoft.Extensions.Http.Resilience - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -70,7 +71,7 @@ Constructor Microsoft.Extensions.Http.Resilience - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -95,7 +96,7 @@ Method Microsoft.Extensions.Http.Resilience - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Http.Resilience/ResilienceHandlerContext.xml b/xml/Microsoft.Extensions.Http.Resilience/ResilienceHandlerContext.xml index 1bc76b5d035..d815c87ee3f 100644 --- a/xml/Microsoft.Extensions.Http.Resilience/ResilienceHandlerContext.xml +++ b/xml/Microsoft.Extensions.Http.Resilience/ResilienceHandlerContext.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Http.Resilience 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -42,7 +43,7 @@ Property Microsoft.Extensions.Http.Resilience - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -65,7 +66,7 @@ Method Microsoft.Extensions.Http.Resilience - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -114,7 +115,7 @@ Method Microsoft.Extensions.Http.Resilience - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -162,7 +163,7 @@ Property Microsoft.Extensions.Http.Resilience - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -186,7 +187,7 @@ Method Microsoft.Extensions.Http.Resilience - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -213,7 +214,7 @@ Property Microsoft.Extensions.Http.Resilience - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Http.Resilience/RoutingStrategyBuilderExtensions.xml b/xml/Microsoft.Extensions.Http.Resilience/RoutingStrategyBuilderExtensions.xml index 5eca196760b..f9053b8ba13 100644 --- a/xml/Microsoft.Extensions.Http.Resilience/RoutingStrategyBuilderExtensions.xml +++ b/xml/Microsoft.Extensions.Http.Resilience/RoutingStrategyBuilderExtensions.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Http.Resilience 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -42,7 +43,7 @@ Method Microsoft.Extensions.Http.Resilience - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -78,7 +79,7 @@ Method Microsoft.Extensions.Http.Resilience - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -108,7 +109,7 @@ Method Microsoft.Extensions.Http.Resilience - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -138,7 +139,7 @@ Method Microsoft.Extensions.Http.Resilience - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -168,7 +169,7 @@ Method Microsoft.Extensions.Http.Resilience - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -198,7 +199,7 @@ Method Microsoft.Extensions.Http.Resilience - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Http.Resilience/StandardHedgingHandlerBuilderExtensions.xml b/xml/Microsoft.Extensions.Http.Resilience/StandardHedgingHandlerBuilderExtensions.xml index 198fc7f3aa4..aa22e561fa3 100644 --- a/xml/Microsoft.Extensions.Http.Resilience/StandardHedgingHandlerBuilderExtensions.xml +++ b/xml/Microsoft.Extensions.Http.Resilience/StandardHedgingHandlerBuilderExtensions.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Http.Resilience 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -42,7 +43,7 @@ Method Microsoft.Extensions.Http.Resilience - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -72,7 +73,7 @@ Method Microsoft.Extensions.Http.Resilience - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -102,7 +103,7 @@ Method Microsoft.Extensions.Http.Resilience - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -132,7 +133,7 @@ Method Microsoft.Extensions.Http.Resilience - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -162,7 +163,7 @@ Method Microsoft.Extensions.Http.Resilience - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Http.Resilience/UriEndpoint.xml b/xml/Microsoft.Extensions.Http.Resilience/UriEndpoint.xml index 968ecb8b47c..3cb7548a684 100644 --- a/xml/Microsoft.Extensions.Http.Resilience/UriEndpoint.xml +++ b/xml/Microsoft.Extensions.Http.Resilience/UriEndpoint.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Http.Resilience 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -41,7 +42,7 @@ Constructor Microsoft.Extensions.Http.Resilience - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -60,7 +61,7 @@ Property Microsoft.Extensions.Http.Resilience - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Http.Resilience/UriEndpointGroup.xml b/xml/Microsoft.Extensions.Http.Resilience/UriEndpointGroup.xml index a4a8e75584b..f4904fcc794 100644 --- a/xml/Microsoft.Extensions.Http.Resilience/UriEndpointGroup.xml +++ b/xml/Microsoft.Extensions.Http.Resilience/UriEndpointGroup.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Http.Resilience 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -41,7 +42,7 @@ Constructor Microsoft.Extensions.Http.Resilience - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -60,7 +61,7 @@ Property Microsoft.Extensions.Http.Resilience - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Http.Resilience/WeightedGroupSelectionMode.xml b/xml/Microsoft.Extensions.Http.Resilience/WeightedGroupSelectionMode.xml index baa8a56c5e3..8f609034783 100644 --- a/xml/Microsoft.Extensions.Http.Resilience/WeightedGroupSelectionMode.xml +++ b/xml/Microsoft.Extensions.Http.Resilience/WeightedGroupSelectionMode.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Http.Resilience 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -31,7 +32,7 @@ Field Microsoft.Extensions.Http.Resilience - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -54,7 +55,7 @@ Field Microsoft.Extensions.Http.Resilience - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Http.Resilience/WeightedGroupsRoutingOptions.xml b/xml/Microsoft.Extensions.Http.Resilience/WeightedGroupsRoutingOptions.xml index d730dd67e2f..f4b68338cde 100644 --- a/xml/Microsoft.Extensions.Http.Resilience/WeightedGroupsRoutingOptions.xml +++ b/xml/Microsoft.Extensions.Http.Resilience/WeightedGroupsRoutingOptions.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Http.Resilience 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -44,7 +45,7 @@ Constructor Microsoft.Extensions.Http.Resilience - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -63,7 +64,7 @@ Property Microsoft.Extensions.Http.Resilience - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -101,7 +102,7 @@ Property Microsoft.Extensions.Http.Resilience - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Http.Resilience/WeightedUriEndpoint.xml b/xml/Microsoft.Extensions.Http.Resilience/WeightedUriEndpoint.xml index 7a60aedde22..43fc3374cf7 100644 --- a/xml/Microsoft.Extensions.Http.Resilience/WeightedUriEndpoint.xml +++ b/xml/Microsoft.Extensions.Http.Resilience/WeightedUriEndpoint.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Http.Resilience 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -41,7 +42,7 @@ Constructor Microsoft.Extensions.Http.Resilience - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -60,7 +61,7 @@ Property Microsoft.Extensions.Http.Resilience - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -92,7 +93,7 @@ Property Microsoft.Extensions.Http.Resilience - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Http.Resilience/WeightedUriEndpointGroup.xml b/xml/Microsoft.Extensions.Http.Resilience/WeightedUriEndpointGroup.xml index 3d512e9b599..50854b0bc7b 100644 --- a/xml/Microsoft.Extensions.Http.Resilience/WeightedUriEndpointGroup.xml +++ b/xml/Microsoft.Extensions.Http.Resilience/WeightedUriEndpointGroup.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Http.Resilience 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -31,7 +32,7 @@ Constructor Microsoft.Extensions.Http.Resilience - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -50,7 +51,7 @@ Property Microsoft.Extensions.Http.Resilience - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Logging.AzureAppServices/AzureBlobLoggerContext.xml b/xml/Microsoft.Extensions.Logging.AzureAppServices/AzureBlobLoggerContext.xml index b9f67172fea..5a2f45ffd88 100644 --- a/xml/Microsoft.Extensions.Logging.AzureAppServices/AzureBlobLoggerContext.xml +++ b/xml/Microsoft.Extensions.Logging.AzureAppServices/AzureBlobLoggerContext.xml @@ -8,6 +8,7 @@ Microsoft.Extensions.Logging.AzureAppServices 8.0.4.0 + 8.0.5.0 9.0.0.0 @@ -35,7 +36,7 @@ Constructor Microsoft.Extensions.Logging.AzureAppServices - 8.0.4.0 + 8.0.5.0 9.0.0.0 @@ -61,7 +62,7 @@ Property Microsoft.Extensions.Logging.AzureAppServices - 8.0.4.0 + 8.0.5.0 9.0.0.0 @@ -83,7 +84,7 @@ Property Microsoft.Extensions.Logging.AzureAppServices - 8.0.4.0 + 8.0.5.0 9.0.0.0 @@ -105,7 +106,7 @@ Property Microsoft.Extensions.Logging.AzureAppServices - 8.0.4.0 + 8.0.5.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Logging.AzureAppServices/AzureBlobLoggerOptions.xml b/xml/Microsoft.Extensions.Logging.AzureAppServices/AzureBlobLoggerOptions.xml index 2d76535377a..72202c5d562 100644 --- a/xml/Microsoft.Extensions.Logging.AzureAppServices/AzureBlobLoggerOptions.xml +++ b/xml/Microsoft.Extensions.Logging.AzureAppServices/AzureBlobLoggerOptions.xml @@ -13,6 +13,7 @@ 3.0.0.0 3.1.0.0 8.0.4.0 + 8.0.5.0 9.0.0.0 @@ -33,7 +34,7 @@ Constructor Microsoft.Extensions.Logging.AzureAppServices - 8.0.4.0 + 8.0.5.0 9.0.0.0 @@ -52,7 +53,7 @@ Property Microsoft.Extensions.Logging.AzureAppServices - 8.0.4.0 + 8.0.5.0 9.0.0.0 @@ -74,7 +75,7 @@ Property Microsoft.Extensions.Logging.AzureAppServices - 8.0.4.0 + 8.0.5.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Logging.AzureAppServices/AzureFileLoggerOptions.xml b/xml/Microsoft.Extensions.Logging.AzureAppServices/AzureFileLoggerOptions.xml index faacd8badd1..4d2ff2e9606 100644 --- a/xml/Microsoft.Extensions.Logging.AzureAppServices/AzureFileLoggerOptions.xml +++ b/xml/Microsoft.Extensions.Logging.AzureAppServices/AzureFileLoggerOptions.xml @@ -13,6 +13,7 @@ 3.0.0.0 3.1.0.0 8.0.4.0 + 8.0.5.0 9.0.0.0 @@ -33,7 +34,7 @@ Constructor Microsoft.Extensions.Logging.AzureAppServices - 8.0.4.0 + 8.0.5.0 9.0.0.0 @@ -52,7 +53,7 @@ Property Microsoft.Extensions.Logging.AzureAppServices - 8.0.4.0 + 8.0.5.0 9.0.0.0 @@ -74,7 +75,7 @@ Property Microsoft.Extensions.Logging.AzureAppServices - 8.0.4.0 + 8.0.5.0 9.0.0.0 @@ -96,7 +97,7 @@ Property Microsoft.Extensions.Logging.AzureAppServices - 8.0.4.0 + 8.0.5.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Logging.AzureAppServices/BatchingLoggerOptions.xml b/xml/Microsoft.Extensions.Logging.AzureAppServices/BatchingLoggerOptions.xml index 35870b43929..6b819304085 100644 --- a/xml/Microsoft.Extensions.Logging.AzureAppServices/BatchingLoggerOptions.xml +++ b/xml/Microsoft.Extensions.Logging.AzureAppServices/BatchingLoggerOptions.xml @@ -10,6 +10,7 @@ 3.0.0.0 3.1.0.0 8.0.4.0 + 8.0.5.0 9.0.0.0 @@ -30,7 +31,7 @@ Constructor Microsoft.Extensions.Logging.AzureAppServices - 8.0.4.0 + 8.0.5.0 9.0.0.0 @@ -49,7 +50,7 @@ Property Microsoft.Extensions.Logging.AzureAppServices - 8.0.4.0 + 8.0.5.0 9.0.0.0 @@ -71,7 +72,7 @@ Property Microsoft.Extensions.Logging.AzureAppServices - 8.0.4.0 + 8.0.5.0 9.0.0.0 @@ -93,7 +94,7 @@ Property Microsoft.Extensions.Logging.AzureAppServices - 8.0.4.0 + 8.0.5.0 9.0.0.0 @@ -115,7 +116,7 @@ Property Microsoft.Extensions.Logging.AzureAppServices - 8.0.4.0 + 8.0.5.0 9.0.0.0 @@ -137,7 +138,7 @@ Property Microsoft.Extensions.Logging.AzureAppServices - 8.0.4.0 + 8.0.5.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Logging.AzureAppServices/BatchingLoggerProvider.xml b/xml/Microsoft.Extensions.Logging.AzureAppServices/BatchingLoggerProvider.xml index 12d23ef65cb..20a72fbec65 100644 --- a/xml/Microsoft.Extensions.Logging.AzureAppServices/BatchingLoggerProvider.xml +++ b/xml/Microsoft.Extensions.Logging.AzureAppServices/BatchingLoggerProvider.xml @@ -10,6 +10,7 @@ 3.0.0.0 3.1.0.0 8.0.4.0 + 8.0.5.0 9.0.0.0 @@ -44,7 +45,7 @@ Microsoft.Extensions.Logging.AzureAppServices - 8.0.4.0 + 8.0.5.0 9.0.0.0 @@ -73,7 +74,7 @@ Microsoft.Extensions.Logging.AzureAppServices - 8.0.4.0 + 8.0.5.0 9.0.0.0 @@ -95,7 +96,7 @@ Method Microsoft.Extensions.Logging.AzureAppServices - 8.0.4.0 + 8.0.5.0 9.0.0.0 @@ -124,7 +125,7 @@ Property Microsoft.Extensions.Logging.AzureAppServices - 8.0.4.0 + 8.0.5.0 9.0.0.0 @@ -149,7 +150,7 @@ Microsoft.Extensions.Logging.AzureAppServices - 8.0.4.0 + 8.0.5.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Logging.AzureAppServices/BlobLoggerProvider.xml b/xml/Microsoft.Extensions.Logging.AzureAppServices/BlobLoggerProvider.xml index 3e624b84af1..5f6c3077334 100644 --- a/xml/Microsoft.Extensions.Logging.AzureAppServices/BlobLoggerProvider.xml +++ b/xml/Microsoft.Extensions.Logging.AzureAppServices/BlobLoggerProvider.xml @@ -10,6 +10,7 @@ 3.0.0.0 3.1.0.0 8.0.4.0 + 8.0.5.0 9.0.0.0 @@ -37,7 +38,7 @@ Constructor Microsoft.Extensions.Logging.AzureAppServices - 8.0.4.0 + 8.0.5.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Logging.AzureAppServices/FileLoggerProvider.xml b/xml/Microsoft.Extensions.Logging.AzureAppServices/FileLoggerProvider.xml index 463f845a1c1..b73c6048aba 100644 --- a/xml/Microsoft.Extensions.Logging.AzureAppServices/FileLoggerProvider.xml +++ b/xml/Microsoft.Extensions.Logging.AzureAppServices/FileLoggerProvider.xml @@ -10,6 +10,7 @@ 3.0.0.0 3.1.0.0 8.0.4.0 + 8.0.5.0 9.0.0.0 @@ -37,7 +38,7 @@ Constructor Microsoft.Extensions.Logging.AzureAppServices - 8.0.4.0 + 8.0.5.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Logging.Testing/FakeLogCollector.xml b/xml/Microsoft.Extensions.Logging.Testing/FakeLogCollector.xml index 393debce204..d9d8d24a0b2 100644 --- a/xml/Microsoft.Extensions.Logging.Testing/FakeLogCollector.xml +++ b/xml/Microsoft.Extensions.Logging.Testing/FakeLogCollector.xml @@ -13,6 +13,7 @@ Microsoft.Extensions.Diagnostics.Testing 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -57,7 +58,7 @@ Microsoft.Extensions.Diagnostics.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -82,7 +83,7 @@ Microsoft.Extensions.Diagnostics.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -110,7 +111,7 @@ Microsoft.Extensions.Diagnostics.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -138,7 +139,7 @@ Microsoft.Extensions.Diagnostics.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -166,7 +167,7 @@ Microsoft.Extensions.Diagnostics.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -197,7 +198,7 @@ Microsoft.Extensions.Diagnostics.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -232,7 +233,7 @@ Microsoft.Extensions.Diagnostics.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Logging.Testing/FakeLogCollectorOptions.xml b/xml/Microsoft.Extensions.Logging.Testing/FakeLogCollectorOptions.xml index e8d3815a20c..a102a634ab1 100644 --- a/xml/Microsoft.Extensions.Logging.Testing/FakeLogCollectorOptions.xml +++ b/xml/Microsoft.Extensions.Logging.Testing/FakeLogCollectorOptions.xml @@ -13,6 +13,7 @@ Microsoft.Extensions.Diagnostics.Testing 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -49,7 +50,7 @@ Microsoft.Extensions.Diagnostics.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -72,7 +73,7 @@ Microsoft.Extensions.Diagnostics.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -103,7 +104,7 @@ Microsoft.Extensions.Diagnostics.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -134,7 +135,7 @@ Microsoft.Extensions.Diagnostics.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -165,7 +166,7 @@ Microsoft.Extensions.Diagnostics.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -193,7 +194,7 @@ Microsoft.Extensions.Diagnostics.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -229,7 +230,7 @@ Microsoft.Extensions.Diagnostics.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Logging.Testing/FakeLogRecord.xml b/xml/Microsoft.Extensions.Logging.Testing/FakeLogRecord.xml index fa28e0e64d6..c8365f52a61 100644 --- a/xml/Microsoft.Extensions.Logging.Testing/FakeLogRecord.xml +++ b/xml/Microsoft.Extensions.Logging.Testing/FakeLogRecord.xml @@ -13,6 +13,7 @@ Microsoft.Extensions.Diagnostics.Testing 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -50,7 +51,7 @@ Microsoft.Extensions.Diagnostics.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -108,7 +109,7 @@ Microsoft.Extensions.Diagnostics.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -138,7 +139,7 @@ Microsoft.Extensions.Diagnostics.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -162,7 +163,7 @@ Method Microsoft.Extensions.Diagnostics.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -203,7 +204,7 @@ Microsoft.Extensions.Diagnostics.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -231,7 +232,7 @@ Microsoft.Extensions.Diagnostics.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -259,7 +260,7 @@ Microsoft.Extensions.Diagnostics.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -287,7 +288,7 @@ Microsoft.Extensions.Diagnostics.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -325,7 +326,7 @@ Microsoft.Extensions.Diagnostics.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -359,7 +360,7 @@ Microsoft.Extensions.Diagnostics.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -387,7 +388,7 @@ Microsoft.Extensions.Diagnostics.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -427,7 +428,7 @@ Microsoft.Extensions.Diagnostics.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -455,7 +456,7 @@ Microsoft.Extensions.Diagnostics.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Logging.Testing/FakeLogger.xml b/xml/Microsoft.Extensions.Logging.Testing/FakeLogger.xml index 6942b8eb7b2..eb852958480 100644 --- a/xml/Microsoft.Extensions.Logging.Testing/FakeLogger.xml +++ b/xml/Microsoft.Extensions.Logging.Testing/FakeLogger.xml @@ -13,6 +13,7 @@ Microsoft.Extensions.Diagnostics.Testing 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -56,7 +57,7 @@ Microsoft.Extensions.Diagnostics.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -91,7 +92,7 @@ Microsoft.Extensions.Diagnostics.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -131,7 +132,7 @@ Microsoft.Extensions.Diagnostics.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -167,7 +168,7 @@ Microsoft.Extensions.Diagnostics.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -205,7 +206,7 @@ Microsoft.Extensions.Diagnostics.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -233,7 +234,7 @@ Microsoft.Extensions.Diagnostics.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -269,7 +270,7 @@ Microsoft.Extensions.Diagnostics.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -302,7 +303,7 @@ Microsoft.Extensions.Diagnostics.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -336,7 +337,7 @@ Microsoft.Extensions.Diagnostics.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Logging.Testing/FakeLoggerProvider.xml b/xml/Microsoft.Extensions.Logging.Testing/FakeLoggerProvider.xml index f36571f12f3..e0e5cbade9e 100644 --- a/xml/Microsoft.Extensions.Logging.Testing/FakeLoggerProvider.xml +++ b/xml/Microsoft.Extensions.Logging.Testing/FakeLoggerProvider.xml @@ -13,6 +13,7 @@ Microsoft.Extensions.Diagnostics.Testing 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -63,7 +64,7 @@ Microsoft.Extensions.Diagnostics.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -97,7 +98,7 @@ Microsoft.Extensions.Diagnostics.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -125,7 +126,7 @@ Microsoft.Extensions.Diagnostics.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -167,7 +168,7 @@ Microsoft.Extensions.Diagnostics.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -195,7 +196,7 @@ Microsoft.Extensions.Diagnostics.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -227,7 +228,7 @@ Microsoft.Extensions.Diagnostics.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -264,7 +265,7 @@ Microsoft.Extensions.Diagnostics.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -299,7 +300,7 @@ Microsoft.Extensions.Diagnostics.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Logging.Testing/FakeLogger`1.xml b/xml/Microsoft.Extensions.Logging.Testing/FakeLogger`1.xml index 2a5a6ef7cab..46076bf3c73 100644 --- a/xml/Microsoft.Extensions.Logging.Testing/FakeLogger`1.xml +++ b/xml/Microsoft.Extensions.Logging.Testing/FakeLogger`1.xml @@ -13,6 +13,7 @@ Microsoft.Extensions.Diagnostics.Testing 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -60,7 +61,7 @@ Microsoft.Extensions.Diagnostics.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -94,7 +95,7 @@ Microsoft.Extensions.Diagnostics.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Logging/AzureAppServicesLoggerFactoryExtensions.xml b/xml/Microsoft.Extensions.Logging/AzureAppServicesLoggerFactoryExtensions.xml index d348f5724f1..d20c785dd95 100644 --- a/xml/Microsoft.Extensions.Logging/AzureAppServicesLoggerFactoryExtensions.xml +++ b/xml/Microsoft.Extensions.Logging/AzureAppServicesLoggerFactoryExtensions.xml @@ -14,6 +14,7 @@ 3.0.0.0 3.1.0.0 8.0.4.0 + 8.0.5.0 9.0.0.0 @@ -35,7 +36,7 @@ Method Microsoft.Extensions.Logging.AzureAppServices - 8.0.4.0 + 8.0.5.0 9.0.0.0 @@ -61,7 +62,7 @@ Method Microsoft.Extensions.Logging.AzureAppServices - 8.0.4.0 + 8.0.5.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Logging/FakeLoggerBuilderExtensions.xml b/xml/Microsoft.Extensions.Logging/FakeLoggerBuilderExtensions.xml index 2abc1db8a46..f39bd702695 100644 --- a/xml/Microsoft.Extensions.Logging/FakeLoggerBuilderExtensions.xml +++ b/xml/Microsoft.Extensions.Logging/FakeLoggerBuilderExtensions.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Diagnostics.Testing 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -42,7 +43,7 @@ Method Microsoft.Extensions.Diagnostics.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -70,7 +71,7 @@ Method Microsoft.Extensions.Diagnostics.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -100,7 +101,7 @@ Method Microsoft.Extensions.Diagnostics.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Logging/ITagCollector.xml b/xml/Microsoft.Extensions.Logging/ITagCollector.xml index dbeabcb4da4..5b49b949608 100644 --- a/xml/Microsoft.Extensions.Logging/ITagCollector.xml +++ b/xml/Microsoft.Extensions.Logging/ITagCollector.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Telemetry.Abstractions 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -37,7 +38,7 @@ Method Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -79,7 +80,7 @@ Method Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Logging/LogPropertiesAttribute.xml b/xml/Microsoft.Extensions.Logging/LogPropertiesAttribute.xml index 274cf7c8582..fdd6061f4d9 100644 --- a/xml/Microsoft.Extensions.Logging/LogPropertiesAttribute.xml +++ b/xml/Microsoft.Extensions.Logging/LogPropertiesAttribute.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Telemetry.Abstractions 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -42,7 +43,7 @@ Constructor Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -61,7 +62,7 @@ Property Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -87,7 +88,7 @@ Property Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -113,7 +114,7 @@ Property Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Logging/LogPropertyIgnoreAttribute.xml b/xml/Microsoft.Extensions.Logging/LogPropertyIgnoreAttribute.xml index 6ef567ac07b..c6cdb73e75c 100644 --- a/xml/Microsoft.Extensions.Logging/LogPropertyIgnoreAttribute.xml +++ b/xml/Microsoft.Extensions.Logging/LogPropertyIgnoreAttribute.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Telemetry.Abstractions 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -42,7 +43,7 @@ Constructor Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Logging/LoggerEnrichmentOptions.xml b/xml/Microsoft.Extensions.Logging/LoggerEnrichmentOptions.xml index fd461ef7bbb..ed11420e52d 100644 --- a/xml/Microsoft.Extensions.Logging/LoggerEnrichmentOptions.xml +++ b/xml/Microsoft.Extensions.Logging/LoggerEnrichmentOptions.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Telemetry 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -31,7 +32,7 @@ Constructor Microsoft.Extensions.Telemetry - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -50,7 +51,7 @@ Property Microsoft.Extensions.Telemetry - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -81,7 +82,7 @@ Property Microsoft.Extensions.Telemetry - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -110,7 +111,7 @@ Property Microsoft.Extensions.Telemetry - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -146,7 +147,7 @@ Property Microsoft.Extensions.Telemetry - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Logging/LoggerMessageHelper.xml b/xml/Microsoft.Extensions.Logging/LoggerMessageHelper.xml index 9d62c9c9486..ca1ed7b5819 100644 --- a/xml/Microsoft.Extensions.Logging/LoggerMessageHelper.xml +++ b/xml/Microsoft.Extensions.Logging/LoggerMessageHelper.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Telemetry.Abstractions 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -46,7 +47,7 @@ Method Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -83,7 +84,7 @@ Method Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -132,7 +133,7 @@ Property Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Logging/LoggerMessageState+ClassifiedTag.xml b/xml/Microsoft.Extensions.Logging/LoggerMessageState+ClassifiedTag.xml index cce2c3b0892..ece71c48801 100644 --- a/xml/Microsoft.Extensions.Logging/LoggerMessageState+ClassifiedTag.xml +++ b/xml/Microsoft.Extensions.Logging/LoggerMessageState+ClassifiedTag.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Telemetry.Abstractions 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -46,7 +47,7 @@ Constructor Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -81,7 +82,7 @@ Property Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -105,7 +106,7 @@ Property Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -129,7 +130,7 @@ Property Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Logging/LoggerMessageState.xml b/xml/Microsoft.Extensions.Logging/LoggerMessageState.xml index dd8b1784d66..a0b16c2744f 100644 --- a/xml/Microsoft.Extensions.Logging/LoggerMessageState.xml +++ b/xml/Microsoft.Extensions.Logging/LoggerMessageState.xml @@ -10,6 +10,7 @@ Microsoft.Extensions.Telemetry.Abstractions 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -71,7 +72,7 @@ Constructor Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -90,7 +91,7 @@ Method Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -128,7 +129,7 @@ Method Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -164,7 +165,7 @@ Property Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -188,7 +189,7 @@ Property Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -212,7 +213,7 @@ Method Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -239,7 +240,7 @@ Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -275,7 +276,7 @@ Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -306,7 +307,7 @@ Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -344,7 +345,7 @@ Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -381,7 +382,7 @@ Property Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -411,7 +412,7 @@ Method Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -439,7 +440,7 @@ Method Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -470,7 +471,7 @@ Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -503,7 +504,7 @@ Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -529,7 +530,7 @@ Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -559,7 +560,7 @@ Property Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -589,7 +590,7 @@ Property Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -615,7 +616,7 @@ Property Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -639,7 +640,7 @@ Method Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Logging/LoggerRedactionOptions.xml b/xml/Microsoft.Extensions.Logging/LoggerRedactionOptions.xml index f7c75ef4273..e6350e01cbc 100644 --- a/xml/Microsoft.Extensions.Logging/LoggerRedactionOptions.xml +++ b/xml/Microsoft.Extensions.Logging/LoggerRedactionOptions.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Telemetry 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -31,7 +32,7 @@ Constructor Microsoft.Extensions.Telemetry - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -50,7 +51,7 @@ Property Microsoft.Extensions.Telemetry - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Logging/LoggingEnrichmentExtensions.xml b/xml/Microsoft.Extensions.Logging/LoggingEnrichmentExtensions.xml index a2c8412c2dd..54441121597 100644 --- a/xml/Microsoft.Extensions.Logging/LoggingEnrichmentExtensions.xml +++ b/xml/Microsoft.Extensions.Logging/LoggingEnrichmentExtensions.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Telemetry 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -42,7 +43,7 @@ Method Microsoft.Extensions.Telemetry - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -70,7 +71,7 @@ Method Microsoft.Extensions.Telemetry - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -100,7 +101,7 @@ Method Microsoft.Extensions.Telemetry - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Logging/LoggingRedactionExtensions.xml b/xml/Microsoft.Extensions.Logging/LoggingRedactionExtensions.xml index ab101cbfcd4..9381d65a050 100644 --- a/xml/Microsoft.Extensions.Logging/LoggingRedactionExtensions.xml +++ b/xml/Microsoft.Extensions.Logging/LoggingRedactionExtensions.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Telemetry 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -42,7 +43,7 @@ Method Microsoft.Extensions.Telemetry - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -70,7 +71,7 @@ Method Microsoft.Extensions.Telemetry - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -100,7 +101,7 @@ Method Microsoft.Extensions.Telemetry - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Logging/TagNameAttribute.xml b/xml/Microsoft.Extensions.Logging/TagNameAttribute.xml index 14163d44a0c..8be6cddda16 100644 --- a/xml/Microsoft.Extensions.Logging/TagNameAttribute.xml +++ b/xml/Microsoft.Extensions.Logging/TagNameAttribute.xml @@ -8,6 +8,7 @@ Microsoft.Extensions.Telemetry.Abstractions 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -54,7 +55,7 @@ Constructor Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -78,7 +79,7 @@ Property Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Logging/TagProviderAttribute.xml b/xml/Microsoft.Extensions.Logging/TagProviderAttribute.xml index a986380ce7e..6f7f84a988b 100644 --- a/xml/Microsoft.Extensions.Logging/TagProviderAttribute.xml +++ b/xml/Microsoft.Extensions.Logging/TagProviderAttribute.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Telemetry.Abstractions 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -51,7 +52,7 @@ Constructor Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -108,7 +109,7 @@ Property Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -134,7 +135,7 @@ Property Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -158,7 +159,7 @@ Property Microsoft.Extensions.Telemetry.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.ObjectPool/DependencyInjectionPoolOptions.xml b/xml/Microsoft.Extensions.ObjectPool/DependencyInjectionPoolOptions.xml index f98dcc980b8..008aad287a9 100644 --- a/xml/Microsoft.Extensions.ObjectPool/DependencyInjectionPoolOptions.xml +++ b/xml/Microsoft.Extensions.ObjectPool/DependencyInjectionPoolOptions.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.ObjectPool.DependencyInjection 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -31,7 +32,7 @@ Constructor Microsoft.Extensions.ObjectPool.DependencyInjection - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -50,7 +51,7 @@ Property Microsoft.Extensions.ObjectPool.DependencyInjection - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/Microsoft.Extensions.Options.Contextual.Provider/IConfigureContextualOptions`1.xml b/xml/Microsoft.Extensions.Options.Contextual.Provider/IConfigureContextualOptions`1.xml index be8422330b0..3c0db71865c 100644 --- a/xml/Microsoft.Extensions.Options.Contextual.Provider/IConfigureContextualOptions`1.xml +++ b/xml/Microsoft.Extensions.Options.Contextual.Provider/IConfigureContextualOptions`1.xml @@ -29,8 +29,10 @@ - To be added. - To be added. + The type of options configured. + + Represents something that configures the type. + To be added. @@ -52,8 +54,10 @@ - To be added. - To be added. + The options instance to configure. + + Invoked to configure a instance. + To be added. diff --git a/xml/Microsoft.Extensions.Options.Contextual.Provider/ILoadContextualOptions`1.xml b/xml/Microsoft.Extensions.Options.Contextual.Provider/ILoadContextualOptions`1.xml index dbdaba4a7e5..e2e18b6b161 100644 --- a/xml/Microsoft.Extensions.Options.Contextual.Provider/ILoadContextualOptions`1.xml +++ b/xml/Microsoft.Extensions.Options.Contextual.Provider/ILoadContextualOptions`1.xml @@ -24,8 +24,10 @@ - To be added. - To be added. + The type of options configured. + + Used to retrieve named configuration data from a contextual options provider implementation. + To be added. @@ -76,12 +78,14 @@ - To be added. - To be added. - To be added. - To be added. - To be added. - To be added. + A type defining the context for this request. + The name of the options to configure. + The context that will be used to configure the options. + The token to monitor for cancellation requests. + + Gets the data to configure an instance of . + + An object to configure an instance of . To be added. diff --git a/xml/Microsoft.Extensions.Options.Contextual.Provider/IOptionsContextReceiver.xml b/xml/Microsoft.Extensions.Options.Contextual.Provider/IOptionsContextReceiver.xml index c2a316d159a..020735ad45a 100644 --- a/xml/Microsoft.Extensions.Options.Contextual.Provider/IOptionsContextReceiver.xml +++ b/xml/Microsoft.Extensions.Options.Contextual.Provider/IOptionsContextReceiver.xml @@ -17,7 +17,9 @@ - To be added. + + Used by contextual options providers to collect context data. + To be added. @@ -51,10 +53,12 @@ - To be added. - To be added. - To be added. - To be added. + The type of the data. + The name of the data. + The data used to determine how to populate contextual options. + + Add a key-value pair to the context. + To be added. diff --git a/xml/Microsoft.Extensions.Options.Contextual.Provider/NullConfigureContextualOptions.xml b/xml/Microsoft.Extensions.Options.Contextual.Provider/NullConfigureContextualOptions.xml index 829f6c29975..9af9d581319 100644 --- a/xml/Microsoft.Extensions.Options.Contextual.Provider/NullConfigureContextualOptions.xml +++ b/xml/Microsoft.Extensions.Options.Contextual.Provider/NullConfigureContextualOptions.xml @@ -14,7 +14,9 @@ - To be added. + + Helper class. + To be added. @@ -48,9 +50,11 @@ - To be added. - To be added. - To be added. + The options type to configure. + + Gets a singleton instance of an empty configuration context. + + A do-nothing instance of . To be added. diff --git a/xml/Microsoft.Extensions.Options.Contextual/IContextualOptions`2.xml b/xml/Microsoft.Extensions.Options.Contextual/IContextualOptions`2.xml index a9d0bfc07ac..438a8d02a09 100644 --- a/xml/Microsoft.Extensions.Options.Contextual/IContextualOptions`2.xml +++ b/xml/Microsoft.Extensions.Options.Contextual/IContextualOptions`2.xml @@ -35,9 +35,11 @@ - To be added. - To be added. - To be added. + The type of options being requested. + A type defining the context for this request. + + Used to retrieve configured instances. + To be added. @@ -74,10 +76,12 @@ - To be added. - To be added. - To be added. - To be added. + The context that will be used to create the options. + The token to monitor for cancellation requests. + + Gets the configured instance. + + A configured instance of . To be added. diff --git a/xml/Microsoft.Extensions.Options.Contextual/INamedContextualOptions`2.xml b/xml/Microsoft.Extensions.Options.Contextual/INamedContextualOptions`2.xml index 4d19142d4f0..a31ef5ef0f4 100644 --- a/xml/Microsoft.Extensions.Options.Contextual/INamedContextualOptions`2.xml +++ b/xml/Microsoft.Extensions.Options.Contextual/INamedContextualOptions`2.xml @@ -39,9 +39,11 @@ - To be added. - To be added. - To be added. + The type of options being requested. + A type defining the context for this request. + + Used to retrieve named configured instances. + To be added. @@ -79,11 +81,13 @@ - To be added. - To be added. - To be added. - To be added. - To be added. + The name of the options to get. + The context that will be used to create the options. + The token to monitor for cancellation requests. + + Gets the named configured instance. + + A configured instance of . To be added. diff --git a/xml/Microsoft.Extensions.Time.Testing/FakeTimeProvider.xml b/xml/Microsoft.Extensions.Time.Testing/FakeTimeProvider.xml index 7049cde1f66..f6b68a57be7 100644 --- a/xml/Microsoft.Extensions.Time.Testing/FakeTimeProvider.xml +++ b/xml/Microsoft.Extensions.Time.Testing/FakeTimeProvider.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.TimeProvider.Testing 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -41,7 +42,7 @@ Constructor Microsoft.Extensions.TimeProvider.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -65,7 +66,7 @@ Constructor Microsoft.Extensions.TimeProvider.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -91,7 +92,7 @@ Method Microsoft.Extensions.TimeProvider.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -124,7 +125,7 @@ Property Microsoft.Extensions.TimeProvider.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -151,7 +152,7 @@ Method Microsoft.Extensions.TimeProvider.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -191,7 +192,7 @@ Method Microsoft.Extensions.TimeProvider.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -215,7 +216,7 @@ Method Microsoft.Extensions.TimeProvider.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -239,7 +240,7 @@ Property Microsoft.Extensions.TimeProvider.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -262,7 +263,7 @@ Method Microsoft.Extensions.TimeProvider.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -289,7 +290,7 @@ Method Microsoft.Extensions.TimeProvider.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -317,7 +318,7 @@ Property Microsoft.Extensions.TimeProvider.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -341,7 +342,7 @@ Property Microsoft.Extensions.TimeProvider.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -367,7 +368,7 @@ Method Microsoft.Extensions.TimeProvider.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/PackageInformation/net-6.0.json b/xml/PackageInformation/net-6.0.json index ae88c49845f..51ffc31deb7 100644 --- a/xml/PackageInformation/net-6.0.json +++ b/xml/PackageInformation/net-6.0.json @@ -1 +1 @@ -{"net-6.0":{"Microsoft.Extensions.AmbientMetadata.Application":{"Name":"Microsoft.Extensions.AmbientMetadata.Application","Version":"8.4.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.AsyncState":{"Name":"Microsoft.Extensions.AsyncState","Version":"8.4.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.Abstractions":{"Name":"Microsoft.Extensions.Caching.Abstractions","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.Memory":{"Name":"Microsoft.Extensions.Caching.Memory","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Compliance.Abstractions":{"Name":"Microsoft.Extensions.Compliance.Abstractions","Version":"8.4.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Compliance.Redaction":{"Name":"Microsoft.Extensions.Compliance.Redaction","Version":"8.4.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Compliance.Testing":{"Name":"Microsoft.Extensions.Compliance.Testing","Version":"8.4.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration":{"Name":"Microsoft.Extensions.Configuration","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Abstractions":{"Name":"Microsoft.Extensions.Configuration.Abstractions","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Binder":{"Name":"Microsoft.Extensions.Configuration.Binder","Version":"8.0.1","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.CommandLine":{"Name":"Microsoft.Extensions.Configuration.CommandLine","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.EnvironmentVariables":{"Name":"Microsoft.Extensions.Configuration.EnvironmentVariables","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.FileExtensions":{"Name":"Microsoft.Extensions.Configuration.FileExtensions","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Ini":{"Name":"Microsoft.Extensions.Configuration.Ini","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Json":{"Name":"Microsoft.Extensions.Configuration.Json","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.UserSecrets":{"Name":"Microsoft.Extensions.Configuration.UserSecrets","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Xml":{"Name":"Microsoft.Extensions.Configuration.Xml","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyInjection":{"Name":"Microsoft.Extensions.DependencyInjection","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyInjection.Abstractions":{"Name":"Microsoft.Extensions.DependencyInjection.Abstractions","Version":"8.0.1","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyInjection.AutoActivation":{"Name":"Microsoft.Extensions.DependencyInjection.AutoActivation","Version":"8.4.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyInjection.Specification.Tests":{"Name":"Microsoft.Extensions.DependencyInjection.Specification.Tests","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyModel":{"Name":"Microsoft.Extensions.DependencyModel","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics":{"Name":"Microsoft.Extensions.Diagnostics","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.Abstractions":{"Name":"Microsoft.Extensions.Diagnostics.Abstractions","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.ExceptionSummarization":{"Name":"Microsoft.Extensions.Diagnostics.ExceptionSummarization","Version":"8.4.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.HealthChecks.Common":{"Name":"Microsoft.Extensions.Diagnostics.HealthChecks.Common","Version":"8.4.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization":{"Name":"Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization","Version":"8.4.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.ResourceMonitoring":{"Name":"Microsoft.Extensions.Diagnostics.ResourceMonitoring","Version":"8.4.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.Testing":{"Name":"Microsoft.Extensions.Diagnostics.Testing","Version":"8.4.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileProviders.Abstractions":{"Name":"Microsoft.Extensions.FileProviders.Abstractions","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileProviders.Composite":{"Name":"Microsoft.Extensions.FileProviders.Composite","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileProviders.Physical":{"Name":"Microsoft.Extensions.FileProviders.Physical","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileSystemGlobbing":{"Name":"Microsoft.Extensions.FileSystemGlobbing","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting":{"Name":"Microsoft.Extensions.Hosting","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting.Abstractions":{"Name":"Microsoft.Extensions.Hosting.Abstractions","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting.Systemd":{"Name":"Microsoft.Extensions.Hosting.Systemd","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting.WindowsServices":{"Name":"Microsoft.Extensions.Hosting.WindowsServices","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Http":{"Name":"Microsoft.Extensions.Http","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Http.Diagnostics":{"Name":"Microsoft.Extensions.Http.Diagnostics","Version":"8.4.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Http.Resilience":{"Name":"Microsoft.Extensions.Http.Resilience","Version":"8.4.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging":{"Name":"Microsoft.Extensions.Logging","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Abstractions":{"Name":"Microsoft.Extensions.Logging.Abstractions","Version":"8.0.1","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Configuration":{"Name":"Microsoft.Extensions.Logging.Configuration","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Console":{"Name":"Microsoft.Extensions.Logging.Console","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Debug":{"Name":"Microsoft.Extensions.Logging.Debug","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.EventLog":{"Name":"Microsoft.Extensions.Logging.EventLog","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.EventSource":{"Name":"Microsoft.Extensions.Logging.EventSource","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.TraceSource":{"Name":"Microsoft.Extensions.Logging.TraceSource","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.ObjectPool.DependencyInjection":{"Name":"Microsoft.Extensions.ObjectPool.DependencyInjection","Version":"8.4.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Options":{"Name":"Microsoft.Extensions.Options","Version":"8.0.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Options.ConfigurationExtensions":{"Name":"Microsoft.Extensions.Options.ConfigurationExtensions","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Options.DataAnnotations":{"Name":"Microsoft.Extensions.Options.DataAnnotations","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Primitives":{"Name":"Microsoft.Extensions.Primitives","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Resilience":{"Name":"Microsoft.Extensions.Resilience","Version":"8.4.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Telemetry":{"Name":"Microsoft.Extensions.Telemetry","Version":"8.4.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Telemetry.Abstractions":{"Name":"Microsoft.Extensions.Telemetry.Abstractions","Version":"8.4.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.TimeProvider.Testing":{"Name":"Microsoft.Extensions.TimeProvider.Testing","Version":"8.4.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Win32.Registry.AccessControl":{"Name":"Microsoft.Win32.Registry.AccessControl","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Win32.SystemEvents":{"Name":"Microsoft.Win32.SystemEvents","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.CodeDom":{"Name":"System.CodeDom","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Collections.Immutable":{"Name":"System.Collections.Immutable","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.ComponentModel.Composition":{"Name":"System.ComponentModel.Composition","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.ComponentModel.Composition.Registration":{"Name":"System.ComponentModel.Composition.Registration","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.AttributedModel":{"Name":"System.Composition.AttributedModel","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.Convention":{"Name":"System.Composition.Convention","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.Hosting":{"Name":"System.Composition.Hosting","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.Runtime":{"Name":"System.Composition.Runtime","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.TypedParts":{"Name":"System.Composition.TypedParts","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Configuration.ConfigurationManager":{"Name":"System.Configuration.ConfigurationManager","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Data.Odbc":{"Name":"System.Data.Odbc","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Data.OleDb":{"Name":"System.Data.OleDb","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Diagnostics.DiagnosticSource":{"Name":"System.Diagnostics.DiagnosticSource","Version":"8.0.1","Feed":"https://api.nuget.org/v3/index.json"},"System.Diagnostics.EventLog":{"Name":"System.Diagnostics.EventLog","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Diagnostics.PerformanceCounter":{"Name":"System.Diagnostics.PerformanceCounter","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.DirectoryServices":{"Name":"System.DirectoryServices","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.DirectoryServices.AccountManagement":{"Name":"System.DirectoryServices.AccountManagement","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.DirectoryServices.Protocols":{"Name":"System.DirectoryServices.Protocols","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Drawing.Common":{"Name":"System.Drawing.Common","Version":"8.0.4","Feed":"https://api.nuget.org/v3/index.json"},"System.Formats.Asn1":{"Name":"System.Formats.Asn1","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Formats.Cbor":{"Name":"System.Formats.Cbor","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Hashing":{"Name":"System.IO.Hashing","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Packaging":{"Name":"System.IO.Packaging","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Pipelines":{"Name":"System.IO.Pipelines","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Ports":{"Name":"System.IO.Ports","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Management":{"Name":"System.Management","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Memory.Data":{"Name":"System.Memory.Data","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Net.Http.Json":{"Name":"System.Net.Http.Json","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Net.Http.WinHttpHandler":{"Name":"System.Net.Http.WinHttpHandler","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Numerics.Tensors":{"Name":"System.Numerics.Tensors","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Reflection.Context":{"Name":"System.Reflection.Context","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Reflection.Metadata":{"Name":"System.Reflection.Metadata","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Reflection.MetadataLoadContext":{"Name":"System.Reflection.MetadataLoadContext","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Resources.Extensions":{"Name":"System.Resources.Extensions","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Runtime.Caching":{"Name":"System.Runtime.Caching","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Runtime.CompilerServices.Unsafe":{"Name":"System.Runtime.CompilerServices.Unsafe","Version":"6.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.AccessControl":{"Name":"System.Security.AccessControl","Version":"6.0.1","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.Cose":{"Name":"System.Security.Cryptography.Cose","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.Pkcs":{"Name":"System.Security.Cryptography.Pkcs","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.ProtectedData":{"Name":"System.Security.Cryptography.ProtectedData","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.Xml":{"Name":"System.Security.Cryptography.Xml","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Permissions":{"Name":"System.Security.Permissions","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.ServiceModel.Duplex":{"Name":"System.ServiceModel.Duplex","Version":"6.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.ServiceModel.Security":{"Name":"System.ServiceModel.Security","Version":"6.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.ServiceModel.Syndication":{"Name":"System.ServiceModel.Syndication","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.ServiceProcess.ServiceController":{"Name":"System.ServiceProcess.ServiceController","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Speech":{"Name":"System.Speech","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Text.Encoding.CodePages":{"Name":"System.Text.Encoding.CodePages","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Text.Encodings.Web":{"Name":"System.Text.Encodings.Web","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Text.Json":{"Name":"System.Text.Json","Version":"8.0.3","Feed":"https://api.nuget.org/v3/index.json"},"System.Threading.AccessControl":{"Name":"System.Threading.AccessControl","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Threading.Channels":{"Name":"System.Threading.Channels","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Threading.Tasks.Dataflow":{"Name":"System.Threading.Tasks.Dataflow","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Windows.Extensions":{"Name":"System.Windows.Extensions","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"}}} \ No newline at end of file +{"net-6.0":{"Microsoft.Extensions.AmbientMetadata.Application":{"Name":"Microsoft.Extensions.AmbientMetadata.Application","Version":"8.5.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.AsyncState":{"Name":"Microsoft.Extensions.AsyncState","Version":"8.5.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.Abstractions":{"Name":"Microsoft.Extensions.Caching.Abstractions","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.Memory":{"Name":"Microsoft.Extensions.Caching.Memory","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Compliance.Abstractions":{"Name":"Microsoft.Extensions.Compliance.Abstractions","Version":"8.5.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Compliance.Redaction":{"Name":"Microsoft.Extensions.Compliance.Redaction","Version":"8.5.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Compliance.Testing":{"Name":"Microsoft.Extensions.Compliance.Testing","Version":"8.5.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration":{"Name":"Microsoft.Extensions.Configuration","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Abstractions":{"Name":"Microsoft.Extensions.Configuration.Abstractions","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Binder":{"Name":"Microsoft.Extensions.Configuration.Binder","Version":"8.0.1","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.CommandLine":{"Name":"Microsoft.Extensions.Configuration.CommandLine","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.EnvironmentVariables":{"Name":"Microsoft.Extensions.Configuration.EnvironmentVariables","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.FileExtensions":{"Name":"Microsoft.Extensions.Configuration.FileExtensions","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Ini":{"Name":"Microsoft.Extensions.Configuration.Ini","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Json":{"Name":"Microsoft.Extensions.Configuration.Json","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.UserSecrets":{"Name":"Microsoft.Extensions.Configuration.UserSecrets","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Xml":{"Name":"Microsoft.Extensions.Configuration.Xml","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyInjection":{"Name":"Microsoft.Extensions.DependencyInjection","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyInjection.Abstractions":{"Name":"Microsoft.Extensions.DependencyInjection.Abstractions","Version":"8.0.1","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyInjection.AutoActivation":{"Name":"Microsoft.Extensions.DependencyInjection.AutoActivation","Version":"8.5.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyInjection.Specification.Tests":{"Name":"Microsoft.Extensions.DependencyInjection.Specification.Tests","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyModel":{"Name":"Microsoft.Extensions.DependencyModel","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics":{"Name":"Microsoft.Extensions.Diagnostics","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.Abstractions":{"Name":"Microsoft.Extensions.Diagnostics.Abstractions","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.ExceptionSummarization":{"Name":"Microsoft.Extensions.Diagnostics.ExceptionSummarization","Version":"8.5.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.HealthChecks.Common":{"Name":"Microsoft.Extensions.Diagnostics.HealthChecks.Common","Version":"8.5.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization":{"Name":"Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization","Version":"8.5.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.ResourceMonitoring":{"Name":"Microsoft.Extensions.Diagnostics.ResourceMonitoring","Version":"8.5.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.Testing":{"Name":"Microsoft.Extensions.Diagnostics.Testing","Version":"8.5.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileProviders.Abstractions":{"Name":"Microsoft.Extensions.FileProviders.Abstractions","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileProviders.Composite":{"Name":"Microsoft.Extensions.FileProviders.Composite","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileProviders.Physical":{"Name":"Microsoft.Extensions.FileProviders.Physical","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileSystemGlobbing":{"Name":"Microsoft.Extensions.FileSystemGlobbing","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting":{"Name":"Microsoft.Extensions.Hosting","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting.Abstractions":{"Name":"Microsoft.Extensions.Hosting.Abstractions","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting.Systemd":{"Name":"Microsoft.Extensions.Hosting.Systemd","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting.WindowsServices":{"Name":"Microsoft.Extensions.Hosting.WindowsServices","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Http":{"Name":"Microsoft.Extensions.Http","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Http.Diagnostics":{"Name":"Microsoft.Extensions.Http.Diagnostics","Version":"8.5.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Http.Resilience":{"Name":"Microsoft.Extensions.Http.Resilience","Version":"8.5.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging":{"Name":"Microsoft.Extensions.Logging","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Abstractions":{"Name":"Microsoft.Extensions.Logging.Abstractions","Version":"8.0.1","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Configuration":{"Name":"Microsoft.Extensions.Logging.Configuration","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Console":{"Name":"Microsoft.Extensions.Logging.Console","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Debug":{"Name":"Microsoft.Extensions.Logging.Debug","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.EventLog":{"Name":"Microsoft.Extensions.Logging.EventLog","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.EventSource":{"Name":"Microsoft.Extensions.Logging.EventSource","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.TraceSource":{"Name":"Microsoft.Extensions.Logging.TraceSource","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.ObjectPool.DependencyInjection":{"Name":"Microsoft.Extensions.ObjectPool.DependencyInjection","Version":"8.5.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Options":{"Name":"Microsoft.Extensions.Options","Version":"8.0.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Options.ConfigurationExtensions":{"Name":"Microsoft.Extensions.Options.ConfigurationExtensions","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Options.DataAnnotations":{"Name":"Microsoft.Extensions.Options.DataAnnotations","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Primitives":{"Name":"Microsoft.Extensions.Primitives","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Resilience":{"Name":"Microsoft.Extensions.Resilience","Version":"8.5.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Telemetry":{"Name":"Microsoft.Extensions.Telemetry","Version":"8.5.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Telemetry.Abstractions":{"Name":"Microsoft.Extensions.Telemetry.Abstractions","Version":"8.5.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.TimeProvider.Testing":{"Name":"Microsoft.Extensions.TimeProvider.Testing","Version":"8.5.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Win32.Registry.AccessControl":{"Name":"Microsoft.Win32.Registry.AccessControl","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Win32.SystemEvents":{"Name":"Microsoft.Win32.SystemEvents","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.CodeDom":{"Name":"System.CodeDom","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Collections.Immutable":{"Name":"System.Collections.Immutable","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.ComponentModel.Composition":{"Name":"System.ComponentModel.Composition","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.ComponentModel.Composition.Registration":{"Name":"System.ComponentModel.Composition.Registration","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.AttributedModel":{"Name":"System.Composition.AttributedModel","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.Convention":{"Name":"System.Composition.Convention","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.Hosting":{"Name":"System.Composition.Hosting","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.Runtime":{"Name":"System.Composition.Runtime","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.TypedParts":{"Name":"System.Composition.TypedParts","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Configuration.ConfigurationManager":{"Name":"System.Configuration.ConfigurationManager","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Data.Odbc":{"Name":"System.Data.Odbc","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Data.OleDb":{"Name":"System.Data.OleDb","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Diagnostics.DiagnosticSource":{"Name":"System.Diagnostics.DiagnosticSource","Version":"8.0.1","Feed":"https://api.nuget.org/v3/index.json"},"System.Diagnostics.EventLog":{"Name":"System.Diagnostics.EventLog","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Diagnostics.PerformanceCounter":{"Name":"System.Diagnostics.PerformanceCounter","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.DirectoryServices":{"Name":"System.DirectoryServices","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.DirectoryServices.AccountManagement":{"Name":"System.DirectoryServices.AccountManagement","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.DirectoryServices.Protocols":{"Name":"System.DirectoryServices.Protocols","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Drawing.Common":{"Name":"System.Drawing.Common","Version":"8.0.5","Feed":"https://api.nuget.org/v3/index.json"},"System.Formats.Asn1":{"Name":"System.Formats.Asn1","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Formats.Cbor":{"Name":"System.Formats.Cbor","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Hashing":{"Name":"System.IO.Hashing","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Packaging":{"Name":"System.IO.Packaging","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Pipelines":{"Name":"System.IO.Pipelines","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Ports":{"Name":"System.IO.Ports","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Management":{"Name":"System.Management","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Memory.Data":{"Name":"System.Memory.Data","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Net.Http.Json":{"Name":"System.Net.Http.Json","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Net.Http.WinHttpHandler":{"Name":"System.Net.Http.WinHttpHandler","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Numerics.Tensors":{"Name":"System.Numerics.Tensors","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Reflection.Context":{"Name":"System.Reflection.Context","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Reflection.Metadata":{"Name":"System.Reflection.Metadata","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Reflection.MetadataLoadContext":{"Name":"System.Reflection.MetadataLoadContext","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Resources.Extensions":{"Name":"System.Resources.Extensions","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Runtime.Caching":{"Name":"System.Runtime.Caching","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Runtime.CompilerServices.Unsafe":{"Name":"System.Runtime.CompilerServices.Unsafe","Version":"6.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.AccessControl":{"Name":"System.Security.AccessControl","Version":"6.0.1","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.Cose":{"Name":"System.Security.Cryptography.Cose","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.Pkcs":{"Name":"System.Security.Cryptography.Pkcs","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.ProtectedData":{"Name":"System.Security.Cryptography.ProtectedData","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.Xml":{"Name":"System.Security.Cryptography.Xml","Version":"8.0.1","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Permissions":{"Name":"System.Security.Permissions","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.ServiceModel.Duplex":{"Name":"System.ServiceModel.Duplex","Version":"6.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.ServiceModel.Security":{"Name":"System.ServiceModel.Security","Version":"6.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.ServiceModel.Syndication":{"Name":"System.ServiceModel.Syndication","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.ServiceProcess.ServiceController":{"Name":"System.ServiceProcess.ServiceController","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Speech":{"Name":"System.Speech","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Text.Encoding.CodePages":{"Name":"System.Text.Encoding.CodePages","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Text.Encodings.Web":{"Name":"System.Text.Encodings.Web","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Text.Json":{"Name":"System.Text.Json","Version":"8.0.3","Feed":"https://api.nuget.org/v3/index.json"},"System.Threading.AccessControl":{"Name":"System.Threading.AccessControl","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Threading.Channels":{"Name":"System.Threading.Channels","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Threading.Tasks.Dataflow":{"Name":"System.Threading.Tasks.Dataflow","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Windows.Extensions":{"Name":"System.Windows.Extensions","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"}}} \ No newline at end of file diff --git a/xml/PackageInformation/net-7.0.json b/xml/PackageInformation/net-7.0.json index 35d517548e0..e370df945fc 100644 --- a/xml/PackageInformation/net-7.0.json +++ b/xml/PackageInformation/net-7.0.json @@ -1 +1 @@ -{"net-7.0":{"Microsoft.Extensions.Caching.Abstractions":{"Name":"Microsoft.Extensions.Caching.Abstractions","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.Memory":{"Name":"Microsoft.Extensions.Caching.Memory","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration":{"Name":"Microsoft.Extensions.Configuration","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Abstractions":{"Name":"Microsoft.Extensions.Configuration.Abstractions","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Binder":{"Name":"Microsoft.Extensions.Configuration.Binder","Version":"8.0.1","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.CommandLine":{"Name":"Microsoft.Extensions.Configuration.CommandLine","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.EnvironmentVariables":{"Name":"Microsoft.Extensions.Configuration.EnvironmentVariables","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.FileExtensions":{"Name":"Microsoft.Extensions.Configuration.FileExtensions","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Ini":{"Name":"Microsoft.Extensions.Configuration.Ini","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Json":{"Name":"Microsoft.Extensions.Configuration.Json","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.UserSecrets":{"Name":"Microsoft.Extensions.Configuration.UserSecrets","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Xml":{"Name":"Microsoft.Extensions.Configuration.Xml","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyInjection":{"Name":"Microsoft.Extensions.DependencyInjection","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyInjection.Abstractions":{"Name":"Microsoft.Extensions.DependencyInjection.Abstractions","Version":"8.0.1","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyInjection.Specification.Tests":{"Name":"Microsoft.Extensions.DependencyInjection.Specification.Tests","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyModel":{"Name":"Microsoft.Extensions.DependencyModel","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics":{"Name":"Microsoft.Extensions.Diagnostics","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.Abstractions":{"Name":"Microsoft.Extensions.Diagnostics.Abstractions","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileProviders.Composite":{"Name":"Microsoft.Extensions.FileProviders.Composite","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileProviders.Physical":{"Name":"Microsoft.Extensions.FileProviders.Physical","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileSystemGlobbing":{"Name":"Microsoft.Extensions.FileSystemGlobbing","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting":{"Name":"Microsoft.Extensions.Hosting","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting.Abstractions":{"Name":"Microsoft.Extensions.Hosting.Abstractions","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting.Systemd":{"Name":"Microsoft.Extensions.Hosting.Systemd","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting.WindowsServices":{"Name":"Microsoft.Extensions.Hosting.WindowsServices","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Http":{"Name":"Microsoft.Extensions.Http","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging":{"Name":"Microsoft.Extensions.Logging","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Abstractions":{"Name":"Microsoft.Extensions.Logging.Abstractions","Version":"8.0.1","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Configuration":{"Name":"Microsoft.Extensions.Logging.Configuration","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Console":{"Name":"Microsoft.Extensions.Logging.Console","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Debug":{"Name":"Microsoft.Extensions.Logging.Debug","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.EventLog":{"Name":"Microsoft.Extensions.Logging.EventLog","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.EventSource":{"Name":"Microsoft.Extensions.Logging.EventSource","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.TraceSource":{"Name":"Microsoft.Extensions.Logging.TraceSource","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Options":{"Name":"Microsoft.Extensions.Options","Version":"8.0.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Options.ConfigurationExtensions":{"Name":"Microsoft.Extensions.Options.ConfigurationExtensions","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Options.DataAnnotations":{"Name":"Microsoft.Extensions.Options.DataAnnotations","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Primitives":{"Name":"Microsoft.Extensions.Primitives","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Win32.Registry.AccessControl":{"Name":"Microsoft.Win32.Registry.AccessControl","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Win32.SystemEvents":{"Name":"Microsoft.Win32.SystemEvents","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.CodeDom":{"Name":"System.CodeDom","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Collections.Immutable":{"Name":"System.Collections.Immutable","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.ComponentModel.Composition":{"Name":"System.ComponentModel.Composition","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.ComponentModel.Composition.Registration":{"Name":"System.ComponentModel.Composition.Registration","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.AttributedModel":{"Name":"System.Composition.AttributedModel","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.Convention":{"Name":"System.Composition.Convention","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.Hosting":{"Name":"System.Composition.Hosting","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.Runtime":{"Name":"System.Composition.Runtime","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.TypedParts":{"Name":"System.Composition.TypedParts","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Configuration.ConfigurationManager":{"Name":"System.Configuration.ConfigurationManager","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Data.Odbc":{"Name":"System.Data.Odbc","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Data.OleDb":{"Name":"System.Data.OleDb","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Diagnostics.DiagnosticSource":{"Name":"System.Diagnostics.DiagnosticSource","Version":"8.0.1","Feed":"https://api.nuget.org/v3/index.json"},"System.Diagnostics.EventLog":{"Name":"System.Diagnostics.EventLog","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Diagnostics.PerformanceCounter":{"Name":"System.Diagnostics.PerformanceCounter","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.DirectoryServices":{"Name":"System.DirectoryServices","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.DirectoryServices.AccountManagement":{"Name":"System.DirectoryServices.AccountManagement","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.DirectoryServices.Protocols":{"Name":"System.DirectoryServices.Protocols","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Drawing.Common":{"Name":"System.Drawing.Common","Version":"8.0.4","Feed":"https://api.nuget.org/v3/index.json"},"System.Formats.Asn1":{"Name":"System.Formats.Asn1","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Formats.Cbor":{"Name":"System.Formats.Cbor","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Hashing":{"Name":"System.IO.Hashing","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Packaging":{"Name":"System.IO.Packaging","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Pipelines":{"Name":"System.IO.Pipelines","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Ports":{"Name":"System.IO.Ports","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Management":{"Name":"System.Management","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Memory.Data":{"Name":"System.Memory.Data","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Net.Http.Json":{"Name":"System.Net.Http.Json","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Net.Http.WinHttpHandler":{"Name":"System.Net.Http.WinHttpHandler","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Numerics.Tensors":{"Name":"System.Numerics.Tensors","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Reflection.Context":{"Name":"System.Reflection.Context","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Reflection.Metadata":{"Name":"System.Reflection.Metadata","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Reflection.MetadataLoadContext":{"Name":"System.Reflection.MetadataLoadContext","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Resources.Extensions":{"Name":"System.Resources.Extensions","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Runtime.Caching":{"Name":"System.Runtime.Caching","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Runtime.Serialization.Schema":{"Name":"System.Runtime.Serialization.Schema","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.Cose":{"Name":"System.Security.Cryptography.Cose","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.Pkcs":{"Name":"System.Security.Cryptography.Pkcs","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.ProtectedData":{"Name":"System.Security.Cryptography.ProtectedData","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.Xml":{"Name":"System.Security.Cryptography.Xml","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Permissions":{"Name":"System.Security.Permissions","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.ServiceModel.Syndication":{"Name":"System.ServiceModel.Syndication","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.ServiceProcess.ServiceController":{"Name":"System.ServiceProcess.ServiceController","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Speech":{"Name":"System.Speech","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Text.Encoding.CodePages":{"Name":"System.Text.Encoding.CodePages","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Text.Encodings.Web":{"Name":"System.Text.Encodings.Web","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Text.Json":{"Name":"System.Text.Json","Version":"8.0.3","Feed":"https://api.nuget.org/v3/index.json"},"System.Threading.AccessControl":{"Name":"System.Threading.AccessControl","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Threading.Channels":{"Name":"System.Threading.Channels","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Threading.Tasks.Dataflow":{"Name":"System.Threading.Tasks.Dataflow","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Windows.Extensions":{"Name":"System.Windows.Extensions","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"}}} \ No newline at end of file +{"net-7.0":{"Microsoft.Extensions.Caching.Abstractions":{"Name":"Microsoft.Extensions.Caching.Abstractions","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.Memory":{"Name":"Microsoft.Extensions.Caching.Memory","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration":{"Name":"Microsoft.Extensions.Configuration","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Abstractions":{"Name":"Microsoft.Extensions.Configuration.Abstractions","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Binder":{"Name":"Microsoft.Extensions.Configuration.Binder","Version":"8.0.1","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.CommandLine":{"Name":"Microsoft.Extensions.Configuration.CommandLine","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.EnvironmentVariables":{"Name":"Microsoft.Extensions.Configuration.EnvironmentVariables","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.FileExtensions":{"Name":"Microsoft.Extensions.Configuration.FileExtensions","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Ini":{"Name":"Microsoft.Extensions.Configuration.Ini","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Json":{"Name":"Microsoft.Extensions.Configuration.Json","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.UserSecrets":{"Name":"Microsoft.Extensions.Configuration.UserSecrets","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Xml":{"Name":"Microsoft.Extensions.Configuration.Xml","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyInjection":{"Name":"Microsoft.Extensions.DependencyInjection","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyInjection.Abstractions":{"Name":"Microsoft.Extensions.DependencyInjection.Abstractions","Version":"8.0.1","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyInjection.Specification.Tests":{"Name":"Microsoft.Extensions.DependencyInjection.Specification.Tests","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyModel":{"Name":"Microsoft.Extensions.DependencyModel","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics":{"Name":"Microsoft.Extensions.Diagnostics","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.Abstractions":{"Name":"Microsoft.Extensions.Diagnostics.Abstractions","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileProviders.Composite":{"Name":"Microsoft.Extensions.FileProviders.Composite","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileProviders.Physical":{"Name":"Microsoft.Extensions.FileProviders.Physical","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileSystemGlobbing":{"Name":"Microsoft.Extensions.FileSystemGlobbing","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting":{"Name":"Microsoft.Extensions.Hosting","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting.Abstractions":{"Name":"Microsoft.Extensions.Hosting.Abstractions","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting.Systemd":{"Name":"Microsoft.Extensions.Hosting.Systemd","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting.WindowsServices":{"Name":"Microsoft.Extensions.Hosting.WindowsServices","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Http":{"Name":"Microsoft.Extensions.Http","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging":{"Name":"Microsoft.Extensions.Logging","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Abstractions":{"Name":"Microsoft.Extensions.Logging.Abstractions","Version":"8.0.1","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Configuration":{"Name":"Microsoft.Extensions.Logging.Configuration","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Console":{"Name":"Microsoft.Extensions.Logging.Console","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Debug":{"Name":"Microsoft.Extensions.Logging.Debug","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.EventLog":{"Name":"Microsoft.Extensions.Logging.EventLog","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.EventSource":{"Name":"Microsoft.Extensions.Logging.EventSource","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.TraceSource":{"Name":"Microsoft.Extensions.Logging.TraceSource","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Options":{"Name":"Microsoft.Extensions.Options","Version":"8.0.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Options.ConfigurationExtensions":{"Name":"Microsoft.Extensions.Options.ConfigurationExtensions","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Options.DataAnnotations":{"Name":"Microsoft.Extensions.Options.DataAnnotations","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Primitives":{"Name":"Microsoft.Extensions.Primitives","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Win32.Registry.AccessControl":{"Name":"Microsoft.Win32.Registry.AccessControl","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Win32.SystemEvents":{"Name":"Microsoft.Win32.SystemEvents","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.CodeDom":{"Name":"System.CodeDom","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Collections.Immutable":{"Name":"System.Collections.Immutable","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.ComponentModel.Composition":{"Name":"System.ComponentModel.Composition","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.ComponentModel.Composition.Registration":{"Name":"System.ComponentModel.Composition.Registration","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.AttributedModel":{"Name":"System.Composition.AttributedModel","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.Convention":{"Name":"System.Composition.Convention","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.Hosting":{"Name":"System.Composition.Hosting","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.Runtime":{"Name":"System.Composition.Runtime","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.TypedParts":{"Name":"System.Composition.TypedParts","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Configuration.ConfigurationManager":{"Name":"System.Configuration.ConfigurationManager","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Data.Odbc":{"Name":"System.Data.Odbc","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Data.OleDb":{"Name":"System.Data.OleDb","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Diagnostics.DiagnosticSource":{"Name":"System.Diagnostics.DiagnosticSource","Version":"8.0.1","Feed":"https://api.nuget.org/v3/index.json"},"System.Diagnostics.EventLog":{"Name":"System.Diagnostics.EventLog","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Diagnostics.PerformanceCounter":{"Name":"System.Diagnostics.PerformanceCounter","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.DirectoryServices":{"Name":"System.DirectoryServices","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.DirectoryServices.AccountManagement":{"Name":"System.DirectoryServices.AccountManagement","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.DirectoryServices.Protocols":{"Name":"System.DirectoryServices.Protocols","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Drawing.Common":{"Name":"System.Drawing.Common","Version":"8.0.5","Feed":"https://api.nuget.org/v3/index.json"},"System.Formats.Asn1":{"Name":"System.Formats.Asn1","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Formats.Cbor":{"Name":"System.Formats.Cbor","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Hashing":{"Name":"System.IO.Hashing","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Packaging":{"Name":"System.IO.Packaging","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Pipelines":{"Name":"System.IO.Pipelines","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Ports":{"Name":"System.IO.Ports","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Management":{"Name":"System.Management","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Memory.Data":{"Name":"System.Memory.Data","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Net.Http.Json":{"Name":"System.Net.Http.Json","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Net.Http.WinHttpHandler":{"Name":"System.Net.Http.WinHttpHandler","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Numerics.Tensors":{"Name":"System.Numerics.Tensors","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Reflection.Context":{"Name":"System.Reflection.Context","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Reflection.Metadata":{"Name":"System.Reflection.Metadata","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Reflection.MetadataLoadContext":{"Name":"System.Reflection.MetadataLoadContext","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Resources.Extensions":{"Name":"System.Resources.Extensions","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Runtime.Caching":{"Name":"System.Runtime.Caching","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Runtime.Serialization.Schema":{"Name":"System.Runtime.Serialization.Schema","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.Cose":{"Name":"System.Security.Cryptography.Cose","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.Pkcs":{"Name":"System.Security.Cryptography.Pkcs","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.ProtectedData":{"Name":"System.Security.Cryptography.ProtectedData","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.Xml":{"Name":"System.Security.Cryptography.Xml","Version":"8.0.1","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Permissions":{"Name":"System.Security.Permissions","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.ServiceModel.Syndication":{"Name":"System.ServiceModel.Syndication","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.ServiceProcess.ServiceController":{"Name":"System.ServiceProcess.ServiceController","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Speech":{"Name":"System.Speech","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Text.Encoding.CodePages":{"Name":"System.Text.Encoding.CodePages","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Text.Encodings.Web":{"Name":"System.Text.Encodings.Web","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Text.Json":{"Name":"System.Text.Json","Version":"8.0.3","Feed":"https://api.nuget.org/v3/index.json"},"System.Threading.AccessControl":{"Name":"System.Threading.AccessControl","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Threading.Channels":{"Name":"System.Threading.Channels","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Threading.Tasks.Dataflow":{"Name":"System.Threading.Tasks.Dataflow","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Windows.Extensions":{"Name":"System.Windows.Extensions","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"}}} \ No newline at end of file diff --git a/xml/PackageInformation/net-8.0.json b/xml/PackageInformation/net-8.0.json index f8e2c38f1d5..9429a0b4840 100644 --- a/xml/PackageInformation/net-8.0.json +++ b/xml/PackageInformation/net-8.0.json @@ -1 +1 @@ -{"net-8.0":{"Microsoft.Bcl.Cryptography":{"Name":"Microsoft.Bcl.Cryptography","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Bcl.TimeProvider":{"Name":"Microsoft.Bcl.TimeProvider","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.AmbientMetadata.Application":{"Name":"Microsoft.Extensions.AmbientMetadata.Application","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.AsyncState":{"Name":"Microsoft.Extensions.AsyncState","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.Abstractions":{"Name":"Microsoft.Extensions.Caching.Abstractions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.Memory":{"Name":"Microsoft.Extensions.Caching.Memory","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.SqlServer":{"Name":"Microsoft.Extensions.Caching.SqlServer","Version":"8.0.4","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.StackExchangeRedis":{"Name":"Microsoft.Extensions.Caching.StackExchangeRedis","Version":"8.0.4","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Compliance.Abstractions":{"Name":"Microsoft.Extensions.Compliance.Abstractions","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Compliance.Redaction":{"Name":"Microsoft.Extensions.Compliance.Redaction","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Compliance.Testing":{"Name":"Microsoft.Extensions.Compliance.Testing","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration":{"Name":"Microsoft.Extensions.Configuration","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Abstractions":{"Name":"Microsoft.Extensions.Configuration.Abstractions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Binder":{"Name":"Microsoft.Extensions.Configuration.Binder","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.CommandLine":{"Name":"Microsoft.Extensions.Configuration.CommandLine","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.EnvironmentVariables":{"Name":"Microsoft.Extensions.Configuration.EnvironmentVariables","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.FileExtensions":{"Name":"Microsoft.Extensions.Configuration.FileExtensions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Ini":{"Name":"Microsoft.Extensions.Configuration.Ini","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Json":{"Name":"Microsoft.Extensions.Configuration.Json","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.KeyPerFile":{"Name":"Microsoft.Extensions.Configuration.KeyPerFile","Version":"8.0.4","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.UserSecrets":{"Name":"Microsoft.Extensions.Configuration.UserSecrets","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Xml":{"Name":"Microsoft.Extensions.Configuration.Xml","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyInjection":{"Name":"Microsoft.Extensions.DependencyInjection","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyInjection.Abstractions":{"Name":"Microsoft.Extensions.DependencyInjection.Abstractions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyInjection.AutoActivation":{"Name":"Microsoft.Extensions.DependencyInjection.AutoActivation","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyInjection.Specification.Tests":{"Name":"Microsoft.Extensions.DependencyInjection.Specification.Tests","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyModel":{"Name":"Microsoft.Extensions.DependencyModel","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics":{"Name":"Microsoft.Extensions.Diagnostics","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.Abstractions":{"Name":"Microsoft.Extensions.Diagnostics.Abstractions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.ExceptionSummarization":{"Name":"Microsoft.Extensions.Diagnostics.ExceptionSummarization","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.HealthChecks":{"Name":"Microsoft.Extensions.Diagnostics.HealthChecks","Version":"8.0.4","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions":{"Name":"Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions","Version":"8.0.4","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.HealthChecks.Common":{"Name":"Microsoft.Extensions.Diagnostics.HealthChecks.Common","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore":{"Name":"Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore","Version":"8.0.4","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization":{"Name":"Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.Probes":{"Name":"Microsoft.Extensions.Diagnostics.Probes","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.ResourceMonitoring":{"Name":"Microsoft.Extensions.Diagnostics.ResourceMonitoring","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.Testing":{"Name":"Microsoft.Extensions.Diagnostics.Testing","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileProviders.Abstractions":{"Name":"Microsoft.Extensions.FileProviders.Abstractions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileProviders.Composite":{"Name":"Microsoft.Extensions.FileProviders.Composite","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileProviders.Embedded":{"Name":"Microsoft.Extensions.FileProviders.Embedded","Version":"8.0.4","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileProviders.Physical":{"Name":"Microsoft.Extensions.FileProviders.Physical","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileSystemGlobbing":{"Name":"Microsoft.Extensions.FileSystemGlobbing","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting":{"Name":"Microsoft.Extensions.Hosting","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting.Abstractions":{"Name":"Microsoft.Extensions.Hosting.Abstractions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting.Systemd":{"Name":"Microsoft.Extensions.Hosting.Systemd","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting.Testing":{"Name":"Microsoft.Extensions.Hosting.Testing","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting.WindowsServices":{"Name":"Microsoft.Extensions.Hosting.WindowsServices","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Http":{"Name":"Microsoft.Extensions.Http","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Http.Diagnostics":{"Name":"Microsoft.Extensions.Http.Diagnostics","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Http.Resilience":{"Name":"Microsoft.Extensions.Http.Resilience","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Localization":{"Name":"Microsoft.Extensions.Localization","Version":"8.0.4","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Localization.Abstractions":{"Name":"Microsoft.Extensions.Localization.Abstractions","Version":"8.0.4","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging":{"Name":"Microsoft.Extensions.Logging","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Abstractions":{"Name":"Microsoft.Extensions.Logging.Abstractions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.AzureAppServices":{"Name":"Microsoft.Extensions.Logging.AzureAppServices","Version":"8.0.4","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Configuration":{"Name":"Microsoft.Extensions.Logging.Configuration","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Console":{"Name":"Microsoft.Extensions.Logging.Console","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Debug":{"Name":"Microsoft.Extensions.Logging.Debug","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.EventLog":{"Name":"Microsoft.Extensions.Logging.EventLog","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.EventSource":{"Name":"Microsoft.Extensions.Logging.EventSource","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.TraceSource":{"Name":"Microsoft.Extensions.Logging.TraceSource","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.ObjectPool":{"Name":"Microsoft.Extensions.ObjectPool","Version":"8.0.4","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.ObjectPool.DependencyInjection":{"Name":"Microsoft.Extensions.ObjectPool.DependencyInjection","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Options":{"Name":"Microsoft.Extensions.Options","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Options.ConfigurationExtensions":{"Name":"Microsoft.Extensions.Options.ConfigurationExtensions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Options.Contextual":{"Name":"Microsoft.Extensions.Options.Contextual","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Options.DataAnnotations":{"Name":"Microsoft.Extensions.Options.DataAnnotations","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Primitives":{"Name":"Microsoft.Extensions.Primitives","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Resilience":{"Name":"Microsoft.Extensions.Resilience","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Telemetry":{"Name":"Microsoft.Extensions.Telemetry","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Telemetry.Abstractions":{"Name":"Microsoft.Extensions.Telemetry.Abstractions","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.TimeProvider.Testing":{"Name":"Microsoft.Extensions.TimeProvider.Testing","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.WebEncoders":{"Name":"Microsoft.Extensions.WebEncoders","Version":"8.0.4","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Win32.Registry.AccessControl":{"Name":"Microsoft.Win32.Registry.AccessControl","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Win32.SystemEvents":{"Name":"Microsoft.Win32.SystemEvents","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.CodeDom":{"Name":"System.CodeDom","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Collections.Immutable":{"Name":"System.Collections.Immutable","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.ComponentModel.Composition":{"Name":"System.ComponentModel.Composition","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.ComponentModel.Composition.Registration":{"Name":"System.ComponentModel.Composition.Registration","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.AttributedModel":{"Name":"System.Composition.AttributedModel","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.Convention":{"Name":"System.Composition.Convention","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.Hosting":{"Name":"System.Composition.Hosting","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.Runtime":{"Name":"System.Composition.Runtime","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.TypedParts":{"Name":"System.Composition.TypedParts","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Configuration.ConfigurationManager":{"Name":"System.Configuration.ConfigurationManager","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Data.Odbc":{"Name":"System.Data.Odbc","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Data.OleDb":{"Name":"System.Data.OleDb","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Diagnostics.DiagnosticSource":{"Name":"System.Diagnostics.DiagnosticSource","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Diagnostics.EventLog":{"Name":"System.Diagnostics.EventLog","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Diagnostics.PerformanceCounter":{"Name":"System.Diagnostics.PerformanceCounter","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.DirectoryServices":{"Name":"System.DirectoryServices","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.DirectoryServices.AccountManagement":{"Name":"System.DirectoryServices.AccountManagement","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.DirectoryServices.Protocols":{"Name":"System.DirectoryServices.Protocols","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Drawing.Common":{"Name":"System.Drawing.Common","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Private.Windows.Core":{"Name":"System.Drawing.Common","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Formats.Asn1":{"Name":"System.Formats.Asn1","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Formats.Cbor":{"Name":"System.Formats.Cbor","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Hashing":{"Name":"System.IO.Hashing","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Packaging":{"Name":"System.IO.Packaging","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Pipelines":{"Name":"System.IO.Pipelines","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Ports":{"Name":"System.IO.Ports","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Management":{"Name":"System.Management","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Memory.Data":{"Name":"System.Memory.Data","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Net.Http.Json":{"Name":"System.Net.Http.Json","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Net.Http.WinHttpHandler":{"Name":"System.Net.Http.WinHttpHandler","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Numerics.Tensors":{"Name":"System.Numerics.Tensors","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Reflection.Context":{"Name":"System.Reflection.Context","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Reflection.Metadata":{"Name":"System.Reflection.Metadata","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Reflection.MetadataLoadContext":{"Name":"System.Reflection.MetadataLoadContext","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Resources.Extensions":{"Name":"System.Resources.Extensions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Runtime.Caching":{"Name":"System.Runtime.Caching","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Runtime.Serialization.Schema":{"Name":"System.Runtime.Serialization.Schema","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.Cose":{"Name":"System.Security.Cryptography.Cose","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.Pkcs":{"Name":"System.Security.Cryptography.Pkcs","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.ProtectedData":{"Name":"System.Security.Cryptography.ProtectedData","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.Xml":{"Name":"System.Security.Cryptography.Xml","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Permissions":{"Name":"System.Security.Permissions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.ServiceModel.Federation":{"Name":"System.ServiceModel.Federation","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.ServiceModel.Http":{"Name":"System.ServiceModel.Http","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.ServiceModel.NetFramingBase":{"Name":"System.ServiceModel.NetFramingBase","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.ServiceModel.NetNamedPipe":{"Name":"System.ServiceModel.NetNamedPipe","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.ServiceModel.NetTcp":{"Name":"System.ServiceModel.NetTcp","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.ServiceModel.Primitives":{"Name":"System.ServiceModel.Primitives","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.ServiceModel.Syndication":{"Name":"System.ServiceModel.Syndication","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.ServiceModel.UnixDomainSocket":{"Name":"System.ServiceModel.UnixDomainSocket","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.ServiceProcess.ServiceController":{"Name":"System.ServiceProcess.ServiceController","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Speech":{"Name":"System.Speech","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Text.Encoding.CodePages":{"Name":"System.Text.Encoding.CodePages","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Text.Encodings.Web":{"Name":"System.Text.Encodings.Web","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Text.Json":{"Name":"System.Text.Json","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Threading.AccessControl":{"Name":"System.Threading.AccessControl","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Threading.Channels":{"Name":"System.Threading.Channels","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Threading.Tasks.Dataflow":{"Name":"System.Threading.Tasks.Dataflow","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Windows.Extensions":{"Name":"System.Windows.Extensions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"}}} \ No newline at end of file +{"net-8.0":{"Microsoft.Bcl.Cryptography":{"Name":"Microsoft.Bcl.Cryptography","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Bcl.TimeProvider":{"Name":"Microsoft.Bcl.TimeProvider","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.AmbientMetadata.Application":{"Name":"Microsoft.Extensions.AmbientMetadata.Application","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.AsyncState":{"Name":"Microsoft.Extensions.AsyncState","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.Abstractions":{"Name":"Microsoft.Extensions.Caching.Abstractions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.Memory":{"Name":"Microsoft.Extensions.Caching.Memory","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.SqlServer":{"Name":"Microsoft.Extensions.Caching.SqlServer","Version":"8.0.5","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.StackExchangeRedis":{"Name":"Microsoft.Extensions.Caching.StackExchangeRedis","Version":"8.0.5","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Compliance.Abstractions":{"Name":"Microsoft.Extensions.Compliance.Abstractions","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Compliance.Redaction":{"Name":"Microsoft.Extensions.Compliance.Redaction","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Compliance.Testing":{"Name":"Microsoft.Extensions.Compliance.Testing","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration":{"Name":"Microsoft.Extensions.Configuration","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Abstractions":{"Name":"Microsoft.Extensions.Configuration.Abstractions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Binder":{"Name":"Microsoft.Extensions.Configuration.Binder","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.CommandLine":{"Name":"Microsoft.Extensions.Configuration.CommandLine","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.EnvironmentVariables":{"Name":"Microsoft.Extensions.Configuration.EnvironmentVariables","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.FileExtensions":{"Name":"Microsoft.Extensions.Configuration.FileExtensions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Ini":{"Name":"Microsoft.Extensions.Configuration.Ini","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Json":{"Name":"Microsoft.Extensions.Configuration.Json","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.KeyPerFile":{"Name":"Microsoft.Extensions.Configuration.KeyPerFile","Version":"8.0.5","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.UserSecrets":{"Name":"Microsoft.Extensions.Configuration.UserSecrets","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Xml":{"Name":"Microsoft.Extensions.Configuration.Xml","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyInjection":{"Name":"Microsoft.Extensions.DependencyInjection","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyInjection.Abstractions":{"Name":"Microsoft.Extensions.DependencyInjection.Abstractions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyInjection.AutoActivation":{"Name":"Microsoft.Extensions.DependencyInjection.AutoActivation","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyInjection.Specification.Tests":{"Name":"Microsoft.Extensions.DependencyInjection.Specification.Tests","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyModel":{"Name":"Microsoft.Extensions.DependencyModel","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics":{"Name":"Microsoft.Extensions.Diagnostics","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.Abstractions":{"Name":"Microsoft.Extensions.Diagnostics.Abstractions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.ExceptionSummarization":{"Name":"Microsoft.Extensions.Diagnostics.ExceptionSummarization","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.HealthChecks":{"Name":"Microsoft.Extensions.Diagnostics.HealthChecks","Version":"8.0.5","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions":{"Name":"Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions","Version":"8.0.5","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.HealthChecks.Common":{"Name":"Microsoft.Extensions.Diagnostics.HealthChecks.Common","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore":{"Name":"Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore","Version":"8.0.5","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization":{"Name":"Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.Probes":{"Name":"Microsoft.Extensions.Diagnostics.Probes","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.ResourceMonitoring":{"Name":"Microsoft.Extensions.Diagnostics.ResourceMonitoring","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.Testing":{"Name":"Microsoft.Extensions.Diagnostics.Testing","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileProviders.Abstractions":{"Name":"Microsoft.Extensions.FileProviders.Abstractions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileProviders.Composite":{"Name":"Microsoft.Extensions.FileProviders.Composite","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileProviders.Embedded":{"Name":"Microsoft.Extensions.FileProviders.Embedded","Version":"8.0.5","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileProviders.Physical":{"Name":"Microsoft.Extensions.FileProviders.Physical","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileSystemGlobbing":{"Name":"Microsoft.Extensions.FileSystemGlobbing","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting":{"Name":"Microsoft.Extensions.Hosting","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting.Abstractions":{"Name":"Microsoft.Extensions.Hosting.Abstractions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting.Systemd":{"Name":"Microsoft.Extensions.Hosting.Systemd","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting.Testing":{"Name":"Microsoft.Extensions.Hosting.Testing","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting.WindowsServices":{"Name":"Microsoft.Extensions.Hosting.WindowsServices","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Http":{"Name":"Microsoft.Extensions.Http","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Http.Diagnostics":{"Name":"Microsoft.Extensions.Http.Diagnostics","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Http.Resilience":{"Name":"Microsoft.Extensions.Http.Resilience","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Localization":{"Name":"Microsoft.Extensions.Localization","Version":"8.0.5","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Localization.Abstractions":{"Name":"Microsoft.Extensions.Localization.Abstractions","Version":"8.0.5","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging":{"Name":"Microsoft.Extensions.Logging","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Abstractions":{"Name":"Microsoft.Extensions.Logging.Abstractions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.AzureAppServices":{"Name":"Microsoft.Extensions.Logging.AzureAppServices","Version":"8.0.5","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Configuration":{"Name":"Microsoft.Extensions.Logging.Configuration","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Console":{"Name":"Microsoft.Extensions.Logging.Console","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Debug":{"Name":"Microsoft.Extensions.Logging.Debug","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.EventLog":{"Name":"Microsoft.Extensions.Logging.EventLog","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.EventSource":{"Name":"Microsoft.Extensions.Logging.EventSource","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.TraceSource":{"Name":"Microsoft.Extensions.Logging.TraceSource","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.ObjectPool":{"Name":"Microsoft.Extensions.ObjectPool","Version":"8.0.5","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.ObjectPool.DependencyInjection":{"Name":"Microsoft.Extensions.ObjectPool.DependencyInjection","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Options":{"Name":"Microsoft.Extensions.Options","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Options.ConfigurationExtensions":{"Name":"Microsoft.Extensions.Options.ConfigurationExtensions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Options.Contextual":{"Name":"Microsoft.Extensions.Options.Contextual","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Options.DataAnnotations":{"Name":"Microsoft.Extensions.Options.DataAnnotations","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Primitives":{"Name":"Microsoft.Extensions.Primitives","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Resilience":{"Name":"Microsoft.Extensions.Resilience","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Telemetry":{"Name":"Microsoft.Extensions.Telemetry","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Telemetry.Abstractions":{"Name":"Microsoft.Extensions.Telemetry.Abstractions","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.TimeProvider.Testing":{"Name":"Microsoft.Extensions.TimeProvider.Testing","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.WebEncoders":{"Name":"Microsoft.Extensions.WebEncoders","Version":"8.0.5","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Win32.Registry.AccessControl":{"Name":"Microsoft.Win32.Registry.AccessControl","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Win32.SystemEvents":{"Name":"Microsoft.Win32.SystemEvents","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.CodeDom":{"Name":"System.CodeDom","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Collections.Immutable":{"Name":"System.Collections.Immutable","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.ComponentModel.Composition":{"Name":"System.ComponentModel.Composition","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.ComponentModel.Composition.Registration":{"Name":"System.ComponentModel.Composition.Registration","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.AttributedModel":{"Name":"System.Composition.AttributedModel","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.Convention":{"Name":"System.Composition.Convention","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.Hosting":{"Name":"System.Composition.Hosting","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.Runtime":{"Name":"System.Composition.Runtime","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.TypedParts":{"Name":"System.Composition.TypedParts","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Configuration.ConfigurationManager":{"Name":"System.Configuration.ConfigurationManager","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Data.Odbc":{"Name":"System.Data.Odbc","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Data.OleDb":{"Name":"System.Data.OleDb","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Diagnostics.DiagnosticSource":{"Name":"System.Diagnostics.DiagnosticSource","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Diagnostics.EventLog":{"Name":"System.Diagnostics.EventLog","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Diagnostics.PerformanceCounter":{"Name":"System.Diagnostics.PerformanceCounter","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.DirectoryServices":{"Name":"System.DirectoryServices","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.DirectoryServices.AccountManagement":{"Name":"System.DirectoryServices.AccountManagement","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.DirectoryServices.Protocols":{"Name":"System.DirectoryServices.Protocols","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Drawing.Common":{"Name":"System.Drawing.Common","Version":"9.0.0-preview.4.24267.1","Feed":"https://api.nuget.org/v3/index.json"},"System.Private.Windows.Core":{"Name":"System.Drawing.Common","Version":"9.0.0-preview.4.24267.1","Feed":"https://api.nuget.org/v3/index.json"},"System.Formats.Asn1":{"Name":"System.Formats.Asn1","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Formats.Cbor":{"Name":"System.Formats.Cbor","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Hashing":{"Name":"System.IO.Hashing","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Packaging":{"Name":"System.IO.Packaging","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Pipelines":{"Name":"System.IO.Pipelines","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Ports":{"Name":"System.IO.Ports","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Management":{"Name":"System.Management","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Memory.Data":{"Name":"System.Memory.Data","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Net.Http.Json":{"Name":"System.Net.Http.Json","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Net.Http.WinHttpHandler":{"Name":"System.Net.Http.WinHttpHandler","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Numerics.Tensors":{"Name":"System.Numerics.Tensors","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Reflection.Context":{"Name":"System.Reflection.Context","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Reflection.Metadata":{"Name":"System.Reflection.Metadata","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Reflection.MetadataLoadContext":{"Name":"System.Reflection.MetadataLoadContext","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Resources.Extensions":{"Name":"System.Resources.Extensions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Runtime.Caching":{"Name":"System.Runtime.Caching","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Runtime.Serialization.Schema":{"Name":"System.Runtime.Serialization.Schema","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.Cose":{"Name":"System.Security.Cryptography.Cose","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.Pkcs":{"Name":"System.Security.Cryptography.Pkcs","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.ProtectedData":{"Name":"System.Security.Cryptography.ProtectedData","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.Xml":{"Name":"System.Security.Cryptography.Xml","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Permissions":{"Name":"System.Security.Permissions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.ServiceModel.Federation":{"Name":"System.ServiceModel.Federation","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.ServiceModel.Http":{"Name":"System.ServiceModel.Http","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.ServiceModel.NetFramingBase":{"Name":"System.ServiceModel.NetFramingBase","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.ServiceModel.NetNamedPipe":{"Name":"System.ServiceModel.NetNamedPipe","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.ServiceModel.NetTcp":{"Name":"System.ServiceModel.NetTcp","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.ServiceModel.Primitives":{"Name":"System.ServiceModel.Primitives","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.ServiceModel.Syndication":{"Name":"System.ServiceModel.Syndication","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.ServiceModel.UnixDomainSocket":{"Name":"System.ServiceModel.UnixDomainSocket","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.ServiceProcess.ServiceController":{"Name":"System.ServiceProcess.ServiceController","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Speech":{"Name":"System.Speech","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Text.Encoding.CodePages":{"Name":"System.Text.Encoding.CodePages","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Text.Encodings.Web":{"Name":"System.Text.Encodings.Web","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Text.Json":{"Name":"System.Text.Json","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Threading.AccessControl":{"Name":"System.Threading.AccessControl","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Threading.Channels":{"Name":"System.Threading.Channels","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Threading.Tasks.Dataflow":{"Name":"System.Threading.Tasks.Dataflow","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Windows.Extensions":{"Name":"System.Windows.Extensions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"}}} \ No newline at end of file diff --git a/xml/PackageInformation/net-9.0.json b/xml/PackageInformation/net-9.0.json index 95820e0fae9..8b81e42f94f 100644 --- a/xml/PackageInformation/net-9.0.json +++ b/xml/PackageInformation/net-9.0.json @@ -1 +1 @@ -{"net-9.0":{"Microsoft.Extensions.AmbientMetadata.Application":{"Name":"Microsoft.Extensions.AmbientMetadata.Application","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.AsyncState":{"Name":"Microsoft.Extensions.AsyncState","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.Abstractions":{"Name":"Microsoft.Extensions.Caching.Abstractions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.Memory":{"Name":"Microsoft.Extensions.Caching.Memory","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.SqlServer":{"Name":"Microsoft.Extensions.Caching.SqlServer","Version":"9.0.0-preview.3.24172.13","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.StackExchangeRedis":{"Name":"Microsoft.Extensions.Caching.StackExchangeRedis","Version":"9.0.0-preview.3.24172.13","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Compliance.Abstractions":{"Name":"Microsoft.Extensions.Compliance.Abstractions","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Compliance.Redaction":{"Name":"Microsoft.Extensions.Compliance.Redaction","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Compliance.Testing":{"Name":"Microsoft.Extensions.Compliance.Testing","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration":{"Name":"Microsoft.Extensions.Configuration","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Abstractions":{"Name":"Microsoft.Extensions.Configuration.Abstractions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Binder":{"Name":"Microsoft.Extensions.Configuration.Binder","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.CommandLine":{"Name":"Microsoft.Extensions.Configuration.CommandLine","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.EnvironmentVariables":{"Name":"Microsoft.Extensions.Configuration.EnvironmentVariables","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.FileExtensions":{"Name":"Microsoft.Extensions.Configuration.FileExtensions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Ini":{"Name":"Microsoft.Extensions.Configuration.Ini","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Json":{"Name":"Microsoft.Extensions.Configuration.Json","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.KeyPerFile":{"Name":"Microsoft.Extensions.Configuration.KeyPerFile","Version":"9.0.0-preview.3.24172.13","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.UserSecrets":{"Name":"Microsoft.Extensions.Configuration.UserSecrets","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Xml":{"Name":"Microsoft.Extensions.Configuration.Xml","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyInjection":{"Name":"Microsoft.Extensions.DependencyInjection","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyInjection.Abstractions":{"Name":"Microsoft.Extensions.DependencyInjection.Abstractions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyInjection.AutoActivation":{"Name":"Microsoft.Extensions.DependencyInjection.AutoActivation","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyInjection.Specification.Tests":{"Name":"Microsoft.Extensions.DependencyInjection.Specification.Tests","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyModel":{"Name":"Microsoft.Extensions.DependencyModel","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics":{"Name":"Microsoft.Extensions.Diagnostics","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.Abstractions":{"Name":"Microsoft.Extensions.Diagnostics.Abstractions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.ExceptionSummarization":{"Name":"Microsoft.Extensions.Diagnostics.ExceptionSummarization","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.HealthChecks":{"Name":"Microsoft.Extensions.Diagnostics.HealthChecks","Version":"9.0.0-preview.3.24172.13","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions":{"Name":"Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions","Version":"9.0.0-preview.3.24172.13","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.HealthChecks.Common":{"Name":"Microsoft.Extensions.Diagnostics.HealthChecks.Common","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore":{"Name":"Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore","Version":"9.0.0-preview.3.24172.13","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization":{"Name":"Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.Probes":{"Name":"Microsoft.Extensions.Diagnostics.Probes","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.ResourceMonitoring":{"Name":"Microsoft.Extensions.Diagnostics.ResourceMonitoring","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.Testing":{"Name":"Microsoft.Extensions.Diagnostics.Testing","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileProviders.Abstractions":{"Name":"Microsoft.Extensions.FileProviders.Abstractions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileProviders.Composite":{"Name":"Microsoft.Extensions.FileProviders.Composite","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileProviders.Embedded":{"Name":"Microsoft.Extensions.FileProviders.Embedded","Version":"9.0.0-preview.3.24172.13","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileProviders.Physical":{"Name":"Microsoft.Extensions.FileProviders.Physical","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileSystemGlobbing":{"Name":"Microsoft.Extensions.FileSystemGlobbing","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting":{"Name":"Microsoft.Extensions.Hosting","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting.Abstractions":{"Name":"Microsoft.Extensions.Hosting.Abstractions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting.Systemd":{"Name":"Microsoft.Extensions.Hosting.Systemd","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting.Testing":{"Name":"Microsoft.Extensions.Hosting.Testing","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting.WindowsServices":{"Name":"Microsoft.Extensions.Hosting.WindowsServices","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Http":{"Name":"Microsoft.Extensions.Http","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Http.Diagnostics":{"Name":"Microsoft.Extensions.Http.Diagnostics","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Http.Resilience":{"Name":"Microsoft.Extensions.Http.Resilience","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Localization":{"Name":"Microsoft.Extensions.Localization","Version":"9.0.0-preview.3.24172.13","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Localization.Abstractions":{"Name":"Microsoft.Extensions.Localization.Abstractions","Version":"9.0.0-preview.3.24172.13","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging":{"Name":"Microsoft.Extensions.Logging","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Abstractions":{"Name":"Microsoft.Extensions.Logging.Abstractions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.AzureAppServices":{"Name":"Microsoft.Extensions.Logging.AzureAppServices","Version":"9.0.0-preview.3.24172.13","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Configuration":{"Name":"Microsoft.Extensions.Logging.Configuration","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Console":{"Name":"Microsoft.Extensions.Logging.Console","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Debug":{"Name":"Microsoft.Extensions.Logging.Debug","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.EventLog":{"Name":"Microsoft.Extensions.Logging.EventLog","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.EventSource":{"Name":"Microsoft.Extensions.Logging.EventSource","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.TraceSource":{"Name":"Microsoft.Extensions.Logging.TraceSource","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.ObjectPool":{"Name":"Microsoft.Extensions.ObjectPool","Version":"9.0.0-preview.3.24172.13","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.ObjectPool.DependencyInjection":{"Name":"Microsoft.Extensions.ObjectPool.DependencyInjection","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Options":{"Name":"Microsoft.Extensions.Options","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Options.ConfigurationExtensions":{"Name":"Microsoft.Extensions.Options.ConfigurationExtensions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Options.Contextual":{"Name":"Microsoft.Extensions.Options.Contextual","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Options.DataAnnotations":{"Name":"Microsoft.Extensions.Options.DataAnnotations","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Primitives":{"Name":"Microsoft.Extensions.Primitives","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Resilience":{"Name":"Microsoft.Extensions.Resilience","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Telemetry":{"Name":"Microsoft.Extensions.Telemetry","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Telemetry.Abstractions":{"Name":"Microsoft.Extensions.Telemetry.Abstractions","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.TimeProvider.Testing":{"Name":"Microsoft.Extensions.TimeProvider.Testing","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.WebEncoders":{"Name":"Microsoft.Extensions.WebEncoders","Version":"9.0.0-preview.3.24172.13","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Win32.Registry.AccessControl":{"Name":"Microsoft.Win32.Registry.AccessControl","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Win32.SystemEvents":{"Name":"Microsoft.Win32.SystemEvents","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.CodeDom":{"Name":"System.CodeDom","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Collections.Immutable":{"Name":"System.Collections.Immutable","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.ComponentModel.Composition":{"Name":"System.ComponentModel.Composition","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.ComponentModel.Composition.Registration":{"Name":"System.ComponentModel.Composition.Registration","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.AttributedModel":{"Name":"System.Composition.AttributedModel","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.Convention":{"Name":"System.Composition.Convention","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.Hosting":{"Name":"System.Composition.Hosting","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.Runtime":{"Name":"System.Composition.Runtime","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.TypedParts":{"Name":"System.Composition.TypedParts","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Configuration.ConfigurationManager":{"Name":"System.Configuration.ConfigurationManager","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Data.Odbc":{"Name":"System.Data.Odbc","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Data.OleDb":{"Name":"System.Data.OleDb","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Diagnostics.DiagnosticSource":{"Name":"System.Diagnostics.DiagnosticSource","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Diagnostics.EventLog":{"Name":"System.Diagnostics.EventLog","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Diagnostics.PerformanceCounter":{"Name":"System.Diagnostics.PerformanceCounter","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.DirectoryServices":{"Name":"System.DirectoryServices","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.DirectoryServices.AccountManagement":{"Name":"System.DirectoryServices.AccountManagement","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.DirectoryServices.Protocols":{"Name":"System.DirectoryServices.Protocols","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Drawing.Common":{"Name":"System.Drawing.Common","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Private.Windows.Core":{"Name":"System.Drawing.Common","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Formats.Asn1":{"Name":"System.Formats.Asn1","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Formats.Cbor":{"Name":"System.Formats.Cbor","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Hashing":{"Name":"System.IO.Hashing","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Packaging":{"Name":"System.IO.Packaging","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Pipelines":{"Name":"System.IO.Pipelines","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Ports":{"Name":"System.IO.Ports","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Management":{"Name":"System.Management","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Memory.Data":{"Name":"System.Memory.Data","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Net.Http.Json":{"Name":"System.Net.Http.Json","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Net.Http.WinHttpHandler":{"Name":"System.Net.Http.WinHttpHandler","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Numerics.Tensors":{"Name":"System.Numerics.Tensors","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Reflection.Context":{"Name":"System.Reflection.Context","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Reflection.Metadata":{"Name":"System.Reflection.Metadata","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Reflection.MetadataLoadContext":{"Name":"System.Reflection.MetadataLoadContext","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Resources.Extensions":{"Name":"System.Resources.Extensions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Runtime.Caching":{"Name":"System.Runtime.Caching","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Runtime.Serialization.Schema":{"Name":"System.Runtime.Serialization.Schema","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.Cose":{"Name":"System.Security.Cryptography.Cose","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.Pkcs":{"Name":"System.Security.Cryptography.Pkcs","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.ProtectedData":{"Name":"System.Security.Cryptography.ProtectedData","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.Xml":{"Name":"System.Security.Cryptography.Xml","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Permissions":{"Name":"System.Security.Permissions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.ServiceModel.Syndication":{"Name":"System.ServiceModel.Syndication","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.ServiceProcess.ServiceController":{"Name":"System.ServiceProcess.ServiceController","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Speech":{"Name":"System.Speech","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Text.Encoding.CodePages":{"Name":"System.Text.Encoding.CodePages","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Text.Encodings.Web":{"Name":"System.Text.Encodings.Web","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Text.Json":{"Name":"System.Text.Json","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Threading.AccessControl":{"Name":"System.Threading.AccessControl","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Threading.Channels":{"Name":"System.Threading.Channels","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Threading.Tasks.Dataflow":{"Name":"System.Threading.Tasks.Dataflow","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Windows.Extensions":{"Name":"System.Windows.Extensions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"}}} \ No newline at end of file +{"net-9.0":{"Microsoft.Extensions.AmbientMetadata.Application":{"Name":"Microsoft.Extensions.AmbientMetadata.Application","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.AsyncState":{"Name":"Microsoft.Extensions.AsyncState","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.Abstractions":{"Name":"Microsoft.Extensions.Caching.Abstractions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.Hybrid":{"Name":"Microsoft.Extensions.Caching.Hybrid","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.Memory":{"Name":"Microsoft.Extensions.Caching.Memory","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.SqlServer":{"Name":"Microsoft.Extensions.Caching.SqlServer","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.StackExchangeRedis":{"Name":"Microsoft.Extensions.Caching.StackExchangeRedis","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Compliance.Abstractions":{"Name":"Microsoft.Extensions.Compliance.Abstractions","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Compliance.Redaction":{"Name":"Microsoft.Extensions.Compliance.Redaction","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Compliance.Testing":{"Name":"Microsoft.Extensions.Compliance.Testing","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration":{"Name":"Microsoft.Extensions.Configuration","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Abstractions":{"Name":"Microsoft.Extensions.Configuration.Abstractions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Binder":{"Name":"Microsoft.Extensions.Configuration.Binder","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.CommandLine":{"Name":"Microsoft.Extensions.Configuration.CommandLine","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.EnvironmentVariables":{"Name":"Microsoft.Extensions.Configuration.EnvironmentVariables","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.FileExtensions":{"Name":"Microsoft.Extensions.Configuration.FileExtensions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Ini":{"Name":"Microsoft.Extensions.Configuration.Ini","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Json":{"Name":"Microsoft.Extensions.Configuration.Json","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.KeyPerFile":{"Name":"Microsoft.Extensions.Configuration.KeyPerFile","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.UserSecrets":{"Name":"Microsoft.Extensions.Configuration.UserSecrets","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Xml":{"Name":"Microsoft.Extensions.Configuration.Xml","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyInjection":{"Name":"Microsoft.Extensions.DependencyInjection","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyInjection.Abstractions":{"Name":"Microsoft.Extensions.DependencyInjection.Abstractions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyInjection.AutoActivation":{"Name":"Microsoft.Extensions.DependencyInjection.AutoActivation","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyInjection.Specification.Tests":{"Name":"Microsoft.Extensions.DependencyInjection.Specification.Tests","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyModel":{"Name":"Microsoft.Extensions.DependencyModel","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics":{"Name":"Microsoft.Extensions.Diagnostics","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.Abstractions":{"Name":"Microsoft.Extensions.Diagnostics.Abstractions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.ExceptionSummarization":{"Name":"Microsoft.Extensions.Diagnostics.ExceptionSummarization","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.HealthChecks":{"Name":"Microsoft.Extensions.Diagnostics.HealthChecks","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions":{"Name":"Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.HealthChecks.Common":{"Name":"Microsoft.Extensions.Diagnostics.HealthChecks.Common","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore":{"Name":"Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization":{"Name":"Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.Probes":{"Name":"Microsoft.Extensions.Diagnostics.Probes","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.ResourceMonitoring":{"Name":"Microsoft.Extensions.Diagnostics.ResourceMonitoring","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.Testing":{"Name":"Microsoft.Extensions.Diagnostics.Testing","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileProviders.Abstractions":{"Name":"Microsoft.Extensions.FileProviders.Abstractions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileProviders.Composite":{"Name":"Microsoft.Extensions.FileProviders.Composite","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileProviders.Embedded":{"Name":"Microsoft.Extensions.FileProviders.Embedded","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileProviders.Physical":{"Name":"Microsoft.Extensions.FileProviders.Physical","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileSystemGlobbing":{"Name":"Microsoft.Extensions.FileSystemGlobbing","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting":{"Name":"Microsoft.Extensions.Hosting","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting.Abstractions":{"Name":"Microsoft.Extensions.Hosting.Abstractions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting.Systemd":{"Name":"Microsoft.Extensions.Hosting.Systemd","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting.Testing":{"Name":"Microsoft.Extensions.Hosting.Testing","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting.WindowsServices":{"Name":"Microsoft.Extensions.Hosting.WindowsServices","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Http":{"Name":"Microsoft.Extensions.Http","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Http.Diagnostics":{"Name":"Microsoft.Extensions.Http.Diagnostics","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Http.Resilience":{"Name":"Microsoft.Extensions.Http.Resilience","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Localization":{"Name":"Microsoft.Extensions.Localization","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Localization.Abstractions":{"Name":"Microsoft.Extensions.Localization.Abstractions","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging":{"Name":"Microsoft.Extensions.Logging","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Abstractions":{"Name":"Microsoft.Extensions.Logging.Abstractions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.AzureAppServices":{"Name":"Microsoft.Extensions.Logging.AzureAppServices","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Configuration":{"Name":"Microsoft.Extensions.Logging.Configuration","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Console":{"Name":"Microsoft.Extensions.Logging.Console","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Debug":{"Name":"Microsoft.Extensions.Logging.Debug","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.EventLog":{"Name":"Microsoft.Extensions.Logging.EventLog","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.EventSource":{"Name":"Microsoft.Extensions.Logging.EventSource","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.TraceSource":{"Name":"Microsoft.Extensions.Logging.TraceSource","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.ObjectPool":{"Name":"Microsoft.Extensions.ObjectPool","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.ObjectPool.DependencyInjection":{"Name":"Microsoft.Extensions.ObjectPool.DependencyInjection","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Options":{"Name":"Microsoft.Extensions.Options","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Options.ConfigurationExtensions":{"Name":"Microsoft.Extensions.Options.ConfigurationExtensions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Options.Contextual":{"Name":"Microsoft.Extensions.Options.Contextual","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Options.DataAnnotations":{"Name":"Microsoft.Extensions.Options.DataAnnotations","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Primitives":{"Name":"Microsoft.Extensions.Primitives","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Resilience":{"Name":"Microsoft.Extensions.Resilience","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Telemetry":{"Name":"Microsoft.Extensions.Telemetry","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Telemetry.Abstractions":{"Name":"Microsoft.Extensions.Telemetry.Abstractions","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.TimeProvider.Testing":{"Name":"Microsoft.Extensions.TimeProvider.Testing","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.WebEncoders":{"Name":"Microsoft.Extensions.WebEncoders","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Win32.Registry.AccessControl":{"Name":"Microsoft.Win32.Registry.AccessControl","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Win32.SystemEvents":{"Name":"Microsoft.Win32.SystemEvents","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.CodeDom":{"Name":"System.CodeDom","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Collections.Immutable":{"Name":"System.Collections.Immutable","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.ComponentModel.Composition":{"Name":"System.ComponentModel.Composition","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.ComponentModel.Composition.Registration":{"Name":"System.ComponentModel.Composition.Registration","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.AttributedModel":{"Name":"System.Composition.AttributedModel","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.Convention":{"Name":"System.Composition.Convention","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.Hosting":{"Name":"System.Composition.Hosting","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.Runtime":{"Name":"System.Composition.Runtime","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.TypedParts":{"Name":"System.Composition.TypedParts","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Configuration.ConfigurationManager":{"Name":"System.Configuration.ConfigurationManager","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Data.Odbc":{"Name":"System.Data.Odbc","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Data.OleDb":{"Name":"System.Data.OleDb","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Diagnostics.DiagnosticSource":{"Name":"System.Diagnostics.DiagnosticSource","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Diagnostics.EventLog":{"Name":"System.Diagnostics.EventLog","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Diagnostics.PerformanceCounter":{"Name":"System.Diagnostics.PerformanceCounter","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.DirectoryServices":{"Name":"System.DirectoryServices","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.DirectoryServices.AccountManagement":{"Name":"System.DirectoryServices.AccountManagement","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.DirectoryServices.Protocols":{"Name":"System.DirectoryServices.Protocols","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Drawing.Common":{"Name":"System.Drawing.Common","Version":"9.0.0-preview.4.24267.1","Feed":"https://api.nuget.org/v3/index.json"},"System.Private.Windows.Core":{"Name":"System.Drawing.Common","Version":"9.0.0-preview.4.24267.1","Feed":"https://api.nuget.org/v3/index.json"},"System.Formats.Asn1":{"Name":"System.Formats.Asn1","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Formats.Cbor":{"Name":"System.Formats.Cbor","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Hashing":{"Name":"System.IO.Hashing","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Packaging":{"Name":"System.IO.Packaging","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Pipelines":{"Name":"System.IO.Pipelines","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Ports":{"Name":"System.IO.Ports","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Management":{"Name":"System.Management","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Memory.Data":{"Name":"System.Memory.Data","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Net.Http.Json":{"Name":"System.Net.Http.Json","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Net.Http.WinHttpHandler":{"Name":"System.Net.Http.WinHttpHandler","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Numerics.Tensors":{"Name":"System.Numerics.Tensors","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Reflection.Context":{"Name":"System.Reflection.Context","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Reflection.Metadata":{"Name":"System.Reflection.Metadata","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Reflection.MetadataLoadContext":{"Name":"System.Reflection.MetadataLoadContext","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Resources.Extensions":{"Name":"System.Resources.Extensions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Runtime.Caching":{"Name":"System.Runtime.Caching","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Runtime.Serialization.Schema":{"Name":"System.Runtime.Serialization.Schema","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.Cose":{"Name":"System.Security.Cryptography.Cose","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.Pkcs":{"Name":"System.Security.Cryptography.Pkcs","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.ProtectedData":{"Name":"System.Security.Cryptography.ProtectedData","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.Xml":{"Name":"System.Security.Cryptography.Xml","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Permissions":{"Name":"System.Security.Permissions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.ServiceModel.Syndication":{"Name":"System.ServiceModel.Syndication","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.ServiceProcess.ServiceController":{"Name":"System.ServiceProcess.ServiceController","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Speech":{"Name":"System.Speech","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Text.Encoding.CodePages":{"Name":"System.Text.Encoding.CodePages","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Text.Encodings.Web":{"Name":"System.Text.Encodings.Web","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Text.Json":{"Name":"System.Text.Json","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Threading.AccessControl":{"Name":"System.Threading.AccessControl","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Threading.Channels":{"Name":"System.Threading.Channels","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Threading.Tasks.Dataflow":{"Name":"System.Threading.Tasks.Dataflow","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Windows.Extensions":{"Name":"System.Windows.Extensions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"}}} \ No newline at end of file diff --git a/xml/PackageInformation/netframework-4.6.2.json b/xml/PackageInformation/netframework-4.6.2.json index 0cf03b545fa..43ea1d89a6b 100644 --- a/xml/PackageInformation/netframework-4.6.2.json +++ b/xml/PackageInformation/netframework-4.6.2.json @@ -1 +1 @@ -{"netframework-4.6.2":{"Microsoft.Bcl.AsyncInterfaces":{"Name":"Microsoft.Bcl.AsyncInterfaces","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Bcl.Cryptography":{"Name":"Microsoft.Bcl.Cryptography","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Bcl.Numerics":{"Name":"Microsoft.Bcl.Numerics","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Bcl.TimeProvider":{"Name":"Microsoft.Bcl.TimeProvider","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.AmbientMetadata.Application":{"Name":"Microsoft.Extensions.AmbientMetadata.Application","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.AsyncState":{"Name":"Microsoft.Extensions.AsyncState","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.Abstractions":{"Name":"Microsoft.Extensions.Caching.Abstractions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.Memory":{"Name":"Microsoft.Extensions.Caching.Memory","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.SqlServer":{"Name":"Microsoft.Extensions.Caching.SqlServer","Version":"9.0.0-preview.3.24172.13","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.StackExchangeRedis":{"Name":"Microsoft.Extensions.Caching.StackExchangeRedis","Version":"9.0.0-preview.3.24172.13","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Compliance.Abstractions":{"Name":"Microsoft.Extensions.Compliance.Abstractions","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Compliance.Redaction":{"Name":"Microsoft.Extensions.Compliance.Redaction","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Compliance.Testing":{"Name":"Microsoft.Extensions.Compliance.Testing","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration":{"Name":"Microsoft.Extensions.Configuration","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Abstractions":{"Name":"Microsoft.Extensions.Configuration.Abstractions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Binder":{"Name":"Microsoft.Extensions.Configuration.Binder","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.CommandLine":{"Name":"Microsoft.Extensions.Configuration.CommandLine","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.EnvironmentVariables":{"Name":"Microsoft.Extensions.Configuration.EnvironmentVariables","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.FileExtensions":{"Name":"Microsoft.Extensions.Configuration.FileExtensions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Ini":{"Name":"Microsoft.Extensions.Configuration.Ini","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Json":{"Name":"Microsoft.Extensions.Configuration.Json","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.KeyPerFile":{"Name":"Microsoft.Extensions.Configuration.KeyPerFile","Version":"9.0.0-preview.3.24172.13","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.UserSecrets":{"Name":"Microsoft.Extensions.Configuration.UserSecrets","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Xml":{"Name":"Microsoft.Extensions.Configuration.Xml","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyInjection":{"Name":"Microsoft.Extensions.DependencyInjection","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyInjection.Abstractions":{"Name":"Microsoft.Extensions.DependencyInjection.Abstractions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyInjection.AutoActivation":{"Name":"Microsoft.Extensions.DependencyInjection.AutoActivation","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyInjection.Specification.Tests":{"Name":"Microsoft.Extensions.DependencyInjection.Specification.Tests","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyModel":{"Name":"Microsoft.Extensions.DependencyModel","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics":{"Name":"Microsoft.Extensions.Diagnostics","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.Abstractions":{"Name":"Microsoft.Extensions.Diagnostics.Abstractions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.ExceptionSummarization":{"Name":"Microsoft.Extensions.Diagnostics.ExceptionSummarization","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.HealthChecks":{"Name":"Microsoft.Extensions.Diagnostics.HealthChecks","Version":"9.0.0-preview.3.24172.13","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions":{"Name":"Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions","Version":"9.0.0-preview.3.24172.13","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.HealthChecks.Common":{"Name":"Microsoft.Extensions.Diagnostics.HealthChecks.Common","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization":{"Name":"Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.Probes":{"Name":"Microsoft.Extensions.Diagnostics.Probes","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.ResourceMonitoring":{"Name":"Microsoft.Extensions.Diagnostics.ResourceMonitoring","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.Testing":{"Name":"Microsoft.Extensions.Diagnostics.Testing","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileProviders.Abstractions":{"Name":"Microsoft.Extensions.FileProviders.Abstractions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileProviders.Composite":{"Name":"Microsoft.Extensions.FileProviders.Composite","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileProviders.Embedded":{"Name":"Microsoft.Extensions.FileProviders.Embedded","Version":"9.0.0-preview.3.24172.13","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileProviders.Physical":{"Name":"Microsoft.Extensions.FileProviders.Physical","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileSystemGlobbing":{"Name":"Microsoft.Extensions.FileSystemGlobbing","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting":{"Name":"Microsoft.Extensions.Hosting","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting.Abstractions":{"Name":"Microsoft.Extensions.Hosting.Abstractions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting.Testing":{"Name":"Microsoft.Extensions.Hosting.Testing","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting.WindowsServices":{"Name":"Microsoft.Extensions.Hosting.WindowsServices","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Http":{"Name":"Microsoft.Extensions.Http","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Http.Diagnostics":{"Name":"Microsoft.Extensions.Http.Diagnostics","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Http.Resilience":{"Name":"Microsoft.Extensions.Http.Resilience","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Localization":{"Name":"Microsoft.Extensions.Localization","Version":"9.0.0-preview.3.24172.13","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Localization.Abstractions":{"Name":"Microsoft.Extensions.Localization.Abstractions","Version":"9.0.0-preview.3.24172.13","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging":{"Name":"Microsoft.Extensions.Logging","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Abstractions":{"Name":"Microsoft.Extensions.Logging.Abstractions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.AzureAppServices":{"Name":"Microsoft.Extensions.Logging.AzureAppServices","Version":"9.0.0-preview.3.24172.13","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Configuration":{"Name":"Microsoft.Extensions.Logging.Configuration","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Console":{"Name":"Microsoft.Extensions.Logging.Console","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Debug":{"Name":"Microsoft.Extensions.Logging.Debug","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.EventLog":{"Name":"Microsoft.Extensions.Logging.EventLog","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.EventSource":{"Name":"Microsoft.Extensions.Logging.EventSource","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.TraceSource":{"Name":"Microsoft.Extensions.Logging.TraceSource","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.ObjectPool":{"Name":"Microsoft.Extensions.ObjectPool","Version":"9.0.0-preview.3.24172.13","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.ObjectPool.DependencyInjection":{"Name":"Microsoft.Extensions.ObjectPool.DependencyInjection","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Options":{"Name":"Microsoft.Extensions.Options","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Options.ConfigurationExtensions":{"Name":"Microsoft.Extensions.Options.ConfigurationExtensions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Options.Contextual":{"Name":"Microsoft.Extensions.Options.Contextual","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Options.DataAnnotations":{"Name":"Microsoft.Extensions.Options.DataAnnotations","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Primitives":{"Name":"Microsoft.Extensions.Primitives","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Resilience":{"Name":"Microsoft.Extensions.Resilience","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Telemetry":{"Name":"Microsoft.Extensions.Telemetry","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Telemetry.Abstractions":{"Name":"Microsoft.Extensions.Telemetry.Abstractions","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.TimeProvider.Testing":{"Name":"Microsoft.Extensions.TimeProvider.Testing","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.WebEncoders":{"Name":"Microsoft.Extensions.WebEncoders","Version":"9.0.0-preview.3.24172.13","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Win32.Registry.AccessControl":{"Name":"Microsoft.Win32.Registry.AccessControl","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Win32.SystemEvents":{"Name":"Microsoft.Win32.SystemEvents","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.CodeDom":{"Name":"System.CodeDom","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Collections.Immutable":{"Name":"System.Collections.Immutable","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.ComponentModel.TypeConverter":{"Name":"System.ComponentModel.TypeConverter","Version":"4.3.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.AttributedModel":{"Name":"System.Composition.AttributedModel","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.Convention":{"Name":"System.Composition.Convention","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.Hosting":{"Name":"System.Composition.Hosting","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.Runtime":{"Name":"System.Composition.Runtime","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.TypedParts":{"Name":"System.Composition.TypedParts","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Configuration.ConfigurationManager":{"Name":"System.Configuration.ConfigurationManager","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Data.Odbc":{"Name":"System.Data.Odbc","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Data.OleDb":{"Name":"System.Data.OleDb","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Diagnostics.DiagnosticSource":{"Name":"System.Diagnostics.DiagnosticSource","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Diagnostics.EventLog":{"Name":"System.Diagnostics.EventLog","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Diagnostics.PerformanceCounter":{"Name":"System.Diagnostics.PerformanceCounter","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Diagnostics.Tracing":{"Name":"System.Diagnostics.Tracing","Version":"4.3.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Drawing.Common":{"Name":"System.Drawing.Common","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Formats.Asn1":{"Name":"System.Formats.Asn1","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Formats.Cbor":{"Name":"System.Formats.Cbor","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.IO":{"Name":"System.IO","Version":"4.3.0","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Hashing":{"Name":"System.IO.Hashing","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Packaging":{"Name":"System.IO.Packaging","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Pipelines":{"Name":"System.IO.Pipelines","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Ports":{"Name":"System.IO.Ports","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Memory.Data":{"Name":"System.Memory.Data","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Net.Http.Json":{"Name":"System.Net.Http.Json","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Net.Http.WinHttpHandler":{"Name":"System.Net.Http.WinHttpHandler","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Numerics.Tensors":{"Name":"System.Numerics.Tensors","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Reflection":{"Name":"System.Reflection","Version":"4.3.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Reflection.Metadata":{"Name":"System.Reflection.Metadata","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Reflection.MetadataLoadContext":{"Name":"System.Reflection.MetadataLoadContext","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Resources.Extensions":{"Name":"System.Resources.Extensions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Runtime":{"Name":"System.Runtime","Version":"4.3.1","Feed":"https://api.nuget.org/v3/index.json"},"System.Runtime.Extensions":{"Name":"System.Runtime.Extensions","Version":"4.3.1","Feed":"https://api.nuget.org/v3/index.json"},"System.Runtime.InteropServices":{"Name":"System.Runtime.InteropServices","Version":"4.3.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.Cng":{"Name":"System.Security.Cryptography.Cng","Version":"5.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.Cose":{"Name":"System.Security.Cryptography.Cose","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.Pkcs":{"Name":"System.Security.Cryptography.Pkcs","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.ProtectedData":{"Name":"System.Security.Cryptography.ProtectedData","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.Xml":{"Name":"System.Security.Cryptography.Xml","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Permissions":{"Name":"System.Security.Permissions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.ServiceModel.Syndication":{"Name":"System.ServiceModel.Syndication","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.ServiceProcess.ServiceController":{"Name":"System.ServiceProcess.ServiceController","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Text.Encoding.CodePages":{"Name":"System.Text.Encoding.CodePages","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Text.Encodings.Web":{"Name":"System.Text.Encodings.Web","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Text.Json":{"Name":"System.Text.Json","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Threading.AccessControl":{"Name":"System.Threading.AccessControl","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Threading.Channels":{"Name":"System.Threading.Channels","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Threading.Tasks.Dataflow":{"Name":"System.Threading.Tasks.Dataflow","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"}}} \ No newline at end of file +{"netframework-4.6.2":{"Microsoft.Bcl.AsyncInterfaces":{"Name":"Microsoft.Bcl.AsyncInterfaces","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Bcl.Cryptography":{"Name":"Microsoft.Bcl.Cryptography","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Bcl.Numerics":{"Name":"Microsoft.Bcl.Numerics","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Bcl.TimeProvider":{"Name":"Microsoft.Bcl.TimeProvider","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.AmbientMetadata.Application":{"Name":"Microsoft.Extensions.AmbientMetadata.Application","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.AsyncState":{"Name":"Microsoft.Extensions.AsyncState","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.Abstractions":{"Name":"Microsoft.Extensions.Caching.Abstractions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.Hybrid":{"Name":"Microsoft.Extensions.Caching.Hybrid","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.Memory":{"Name":"Microsoft.Extensions.Caching.Memory","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.SqlServer":{"Name":"Microsoft.Extensions.Caching.SqlServer","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.StackExchangeRedis":{"Name":"Microsoft.Extensions.Caching.StackExchangeRedis","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Compliance.Abstractions":{"Name":"Microsoft.Extensions.Compliance.Abstractions","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Compliance.Redaction":{"Name":"Microsoft.Extensions.Compliance.Redaction","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Compliance.Testing":{"Name":"Microsoft.Extensions.Compliance.Testing","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration":{"Name":"Microsoft.Extensions.Configuration","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Abstractions":{"Name":"Microsoft.Extensions.Configuration.Abstractions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Binder":{"Name":"Microsoft.Extensions.Configuration.Binder","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.CommandLine":{"Name":"Microsoft.Extensions.Configuration.CommandLine","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.EnvironmentVariables":{"Name":"Microsoft.Extensions.Configuration.EnvironmentVariables","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.FileExtensions":{"Name":"Microsoft.Extensions.Configuration.FileExtensions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Ini":{"Name":"Microsoft.Extensions.Configuration.Ini","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Json":{"Name":"Microsoft.Extensions.Configuration.Json","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.KeyPerFile":{"Name":"Microsoft.Extensions.Configuration.KeyPerFile","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.UserSecrets":{"Name":"Microsoft.Extensions.Configuration.UserSecrets","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Xml":{"Name":"Microsoft.Extensions.Configuration.Xml","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyInjection":{"Name":"Microsoft.Extensions.DependencyInjection","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyInjection.Abstractions":{"Name":"Microsoft.Extensions.DependencyInjection.Abstractions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyInjection.AutoActivation":{"Name":"Microsoft.Extensions.DependencyInjection.AutoActivation","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyInjection.Specification.Tests":{"Name":"Microsoft.Extensions.DependencyInjection.Specification.Tests","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyModel":{"Name":"Microsoft.Extensions.DependencyModel","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics":{"Name":"Microsoft.Extensions.Diagnostics","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.Abstractions":{"Name":"Microsoft.Extensions.Diagnostics.Abstractions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.ExceptionSummarization":{"Name":"Microsoft.Extensions.Diagnostics.ExceptionSummarization","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.HealthChecks":{"Name":"Microsoft.Extensions.Diagnostics.HealthChecks","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions":{"Name":"Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.HealthChecks.Common":{"Name":"Microsoft.Extensions.Diagnostics.HealthChecks.Common","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization":{"Name":"Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.Probes":{"Name":"Microsoft.Extensions.Diagnostics.Probes","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.ResourceMonitoring":{"Name":"Microsoft.Extensions.Diagnostics.ResourceMonitoring","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.Testing":{"Name":"Microsoft.Extensions.Diagnostics.Testing","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileProviders.Abstractions":{"Name":"Microsoft.Extensions.FileProviders.Abstractions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileProviders.Composite":{"Name":"Microsoft.Extensions.FileProviders.Composite","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileProviders.Embedded":{"Name":"Microsoft.Extensions.FileProviders.Embedded","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileProviders.Physical":{"Name":"Microsoft.Extensions.FileProviders.Physical","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileSystemGlobbing":{"Name":"Microsoft.Extensions.FileSystemGlobbing","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting":{"Name":"Microsoft.Extensions.Hosting","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting.Abstractions":{"Name":"Microsoft.Extensions.Hosting.Abstractions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting.Testing":{"Name":"Microsoft.Extensions.Hosting.Testing","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting.WindowsServices":{"Name":"Microsoft.Extensions.Hosting.WindowsServices","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Http":{"Name":"Microsoft.Extensions.Http","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Http.Diagnostics":{"Name":"Microsoft.Extensions.Http.Diagnostics","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Http.Resilience":{"Name":"Microsoft.Extensions.Http.Resilience","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Localization":{"Name":"Microsoft.Extensions.Localization","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Localization.Abstractions":{"Name":"Microsoft.Extensions.Localization.Abstractions","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging":{"Name":"Microsoft.Extensions.Logging","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Abstractions":{"Name":"Microsoft.Extensions.Logging.Abstractions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.AzureAppServices":{"Name":"Microsoft.Extensions.Logging.AzureAppServices","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Configuration":{"Name":"Microsoft.Extensions.Logging.Configuration","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Console":{"Name":"Microsoft.Extensions.Logging.Console","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Debug":{"Name":"Microsoft.Extensions.Logging.Debug","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.EventLog":{"Name":"Microsoft.Extensions.Logging.EventLog","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.EventSource":{"Name":"Microsoft.Extensions.Logging.EventSource","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.TraceSource":{"Name":"Microsoft.Extensions.Logging.TraceSource","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.ObjectPool":{"Name":"Microsoft.Extensions.ObjectPool","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.ObjectPool.DependencyInjection":{"Name":"Microsoft.Extensions.ObjectPool.DependencyInjection","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Options":{"Name":"Microsoft.Extensions.Options","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Options.ConfigurationExtensions":{"Name":"Microsoft.Extensions.Options.ConfigurationExtensions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Options.Contextual":{"Name":"Microsoft.Extensions.Options.Contextual","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Options.DataAnnotations":{"Name":"Microsoft.Extensions.Options.DataAnnotations","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Primitives":{"Name":"Microsoft.Extensions.Primitives","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Resilience":{"Name":"Microsoft.Extensions.Resilience","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Telemetry":{"Name":"Microsoft.Extensions.Telemetry","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Telemetry.Abstractions":{"Name":"Microsoft.Extensions.Telemetry.Abstractions","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.TimeProvider.Testing":{"Name":"Microsoft.Extensions.TimeProvider.Testing","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.WebEncoders":{"Name":"Microsoft.Extensions.WebEncoders","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Win32.Registry.AccessControl":{"Name":"Microsoft.Win32.Registry.AccessControl","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Win32.SystemEvents":{"Name":"Microsoft.Win32.SystemEvents","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.CodeDom":{"Name":"System.CodeDom","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Collections.Immutable":{"Name":"System.Collections.Immutable","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.ComponentModel.TypeConverter":{"Name":"System.ComponentModel.TypeConverter","Version":"4.3.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.AttributedModel":{"Name":"System.Composition.AttributedModel","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.Convention":{"Name":"System.Composition.Convention","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.Hosting":{"Name":"System.Composition.Hosting","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.Runtime":{"Name":"System.Composition.Runtime","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.TypedParts":{"Name":"System.Composition.TypedParts","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Configuration.ConfigurationManager":{"Name":"System.Configuration.ConfigurationManager","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Data.Odbc":{"Name":"System.Data.Odbc","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Data.OleDb":{"Name":"System.Data.OleDb","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Diagnostics.DiagnosticSource":{"Name":"System.Diagnostics.DiagnosticSource","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Diagnostics.EventLog":{"Name":"System.Diagnostics.EventLog","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Diagnostics.PerformanceCounter":{"Name":"System.Diagnostics.PerformanceCounter","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Diagnostics.Tracing":{"Name":"System.Diagnostics.Tracing","Version":"4.3.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Drawing.Common":{"Name":"System.Drawing.Common","Version":"9.0.0-preview.4.24267.1","Feed":"https://api.nuget.org/v3/index.json"},"System.Formats.Asn1":{"Name":"System.Formats.Asn1","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Formats.Cbor":{"Name":"System.Formats.Cbor","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.IO":{"Name":"System.IO","Version":"4.3.0","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Hashing":{"Name":"System.IO.Hashing","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Packaging":{"Name":"System.IO.Packaging","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Pipelines":{"Name":"System.IO.Pipelines","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Ports":{"Name":"System.IO.Ports","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Memory.Data":{"Name":"System.Memory.Data","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Net.Http.Json":{"Name":"System.Net.Http.Json","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Net.Http.WinHttpHandler":{"Name":"System.Net.Http.WinHttpHandler","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Numerics.Tensors":{"Name":"System.Numerics.Tensors","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Reflection":{"Name":"System.Reflection","Version":"4.3.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Reflection.Metadata":{"Name":"System.Reflection.Metadata","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Reflection.MetadataLoadContext":{"Name":"System.Reflection.MetadataLoadContext","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Resources.Extensions":{"Name":"System.Resources.Extensions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Runtime":{"Name":"System.Runtime","Version":"4.3.1","Feed":"https://api.nuget.org/v3/index.json"},"System.Runtime.Extensions":{"Name":"System.Runtime.Extensions","Version":"4.3.1","Feed":"https://api.nuget.org/v3/index.json"},"System.Runtime.InteropServices":{"Name":"System.Runtime.InteropServices","Version":"4.3.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.Cng":{"Name":"System.Security.Cryptography.Cng","Version":"5.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.Cose":{"Name":"System.Security.Cryptography.Cose","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.Pkcs":{"Name":"System.Security.Cryptography.Pkcs","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.ProtectedData":{"Name":"System.Security.Cryptography.ProtectedData","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.Xml":{"Name":"System.Security.Cryptography.Xml","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Permissions":{"Name":"System.Security.Permissions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.ServiceModel.Syndication":{"Name":"System.ServiceModel.Syndication","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.ServiceProcess.ServiceController":{"Name":"System.ServiceProcess.ServiceController","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Text.Encoding.CodePages":{"Name":"System.Text.Encoding.CodePages","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Text.Encodings.Web":{"Name":"System.Text.Encodings.Web","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Text.Json":{"Name":"System.Text.Json","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Threading.AccessControl":{"Name":"System.Threading.AccessControl","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Threading.Channels":{"Name":"System.Threading.Channels","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Threading.Tasks.Dataflow":{"Name":"System.Threading.Tasks.Dataflow","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"}}} \ No newline at end of file diff --git a/xml/PackageInformation/netframework-4.7.1.json b/xml/PackageInformation/netframework-4.7.1.json index c53b78f35c8..24b039db389 100644 --- a/xml/PackageInformation/netframework-4.7.1.json +++ b/xml/PackageInformation/netframework-4.7.1.json @@ -1 +1 @@ -{"netframework-4.7.1":{"Microsoft.Bcl.AsyncInterfaces":{"Name":"Microsoft.Bcl.AsyncInterfaces","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Bcl.Cryptography":{"Name":"Microsoft.Bcl.Cryptography","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Bcl.Numerics":{"Name":"Microsoft.Bcl.Numerics","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Bcl.TimeProvider":{"Name":"Microsoft.Bcl.TimeProvider","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.AmbientMetadata.Application":{"Name":"Microsoft.Extensions.AmbientMetadata.Application","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.AsyncState":{"Name":"Microsoft.Extensions.AsyncState","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.Abstractions":{"Name":"Microsoft.Extensions.Caching.Abstractions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.Memory":{"Name":"Microsoft.Extensions.Caching.Memory","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.SqlServer":{"Name":"Microsoft.Extensions.Caching.SqlServer","Version":"9.0.0-preview.3.24172.13","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.StackExchangeRedis":{"Name":"Microsoft.Extensions.Caching.StackExchangeRedis","Version":"9.0.0-preview.3.24172.13","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Compliance.Abstractions":{"Name":"Microsoft.Extensions.Compliance.Abstractions","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Compliance.Redaction":{"Name":"Microsoft.Extensions.Compliance.Redaction","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Compliance.Testing":{"Name":"Microsoft.Extensions.Compliance.Testing","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration":{"Name":"Microsoft.Extensions.Configuration","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Abstractions":{"Name":"Microsoft.Extensions.Configuration.Abstractions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Binder":{"Name":"Microsoft.Extensions.Configuration.Binder","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.CommandLine":{"Name":"Microsoft.Extensions.Configuration.CommandLine","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.EnvironmentVariables":{"Name":"Microsoft.Extensions.Configuration.EnvironmentVariables","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.FileExtensions":{"Name":"Microsoft.Extensions.Configuration.FileExtensions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Ini":{"Name":"Microsoft.Extensions.Configuration.Ini","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Json":{"Name":"Microsoft.Extensions.Configuration.Json","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.KeyPerFile":{"Name":"Microsoft.Extensions.Configuration.KeyPerFile","Version":"9.0.0-preview.3.24172.13","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.UserSecrets":{"Name":"Microsoft.Extensions.Configuration.UserSecrets","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Xml":{"Name":"Microsoft.Extensions.Configuration.Xml","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyInjection":{"Name":"Microsoft.Extensions.DependencyInjection","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyInjection.Abstractions":{"Name":"Microsoft.Extensions.DependencyInjection.Abstractions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyInjection.AutoActivation":{"Name":"Microsoft.Extensions.DependencyInjection.AutoActivation","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyInjection.Specification.Tests":{"Name":"Microsoft.Extensions.DependencyInjection.Specification.Tests","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyModel":{"Name":"Microsoft.Extensions.DependencyModel","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics":{"Name":"Microsoft.Extensions.Diagnostics","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.Abstractions":{"Name":"Microsoft.Extensions.Diagnostics.Abstractions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.ExceptionSummarization":{"Name":"Microsoft.Extensions.Diagnostics.ExceptionSummarization","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.HealthChecks":{"Name":"Microsoft.Extensions.Diagnostics.HealthChecks","Version":"9.0.0-preview.3.24172.13","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions":{"Name":"Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions","Version":"9.0.0-preview.3.24172.13","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.HealthChecks.Common":{"Name":"Microsoft.Extensions.Diagnostics.HealthChecks.Common","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization":{"Name":"Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.Probes":{"Name":"Microsoft.Extensions.Diagnostics.Probes","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.ResourceMonitoring":{"Name":"Microsoft.Extensions.Diagnostics.ResourceMonitoring","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.Testing":{"Name":"Microsoft.Extensions.Diagnostics.Testing","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileProviders.Abstractions":{"Name":"Microsoft.Extensions.FileProviders.Abstractions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileProviders.Composite":{"Name":"Microsoft.Extensions.FileProviders.Composite","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileProviders.Embedded":{"Name":"Microsoft.Extensions.FileProviders.Embedded","Version":"9.0.0-preview.3.24172.13","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileProviders.Physical":{"Name":"Microsoft.Extensions.FileProviders.Physical","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileSystemGlobbing":{"Name":"Microsoft.Extensions.FileSystemGlobbing","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting":{"Name":"Microsoft.Extensions.Hosting","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting.Abstractions":{"Name":"Microsoft.Extensions.Hosting.Abstractions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting.Testing":{"Name":"Microsoft.Extensions.Hosting.Testing","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting.WindowsServices":{"Name":"Microsoft.Extensions.Hosting.WindowsServices","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Http":{"Name":"Microsoft.Extensions.Http","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Http.Diagnostics":{"Name":"Microsoft.Extensions.Http.Diagnostics","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Http.Resilience":{"Name":"Microsoft.Extensions.Http.Resilience","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Localization":{"Name":"Microsoft.Extensions.Localization","Version":"9.0.0-preview.3.24172.13","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Localization.Abstractions":{"Name":"Microsoft.Extensions.Localization.Abstractions","Version":"9.0.0-preview.3.24172.13","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging":{"Name":"Microsoft.Extensions.Logging","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Abstractions":{"Name":"Microsoft.Extensions.Logging.Abstractions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.AzureAppServices":{"Name":"Microsoft.Extensions.Logging.AzureAppServices","Version":"9.0.0-preview.3.24172.13","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Configuration":{"Name":"Microsoft.Extensions.Logging.Configuration","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Console":{"Name":"Microsoft.Extensions.Logging.Console","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Debug":{"Name":"Microsoft.Extensions.Logging.Debug","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.EventLog":{"Name":"Microsoft.Extensions.Logging.EventLog","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.EventSource":{"Name":"Microsoft.Extensions.Logging.EventSource","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.TraceSource":{"Name":"Microsoft.Extensions.Logging.TraceSource","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.ObjectPool":{"Name":"Microsoft.Extensions.ObjectPool","Version":"9.0.0-preview.3.24172.13","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.ObjectPool.DependencyInjection":{"Name":"Microsoft.Extensions.ObjectPool.DependencyInjection","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Options":{"Name":"Microsoft.Extensions.Options","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Options.ConfigurationExtensions":{"Name":"Microsoft.Extensions.Options.ConfigurationExtensions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Options.Contextual":{"Name":"Microsoft.Extensions.Options.Contextual","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Options.DataAnnotations":{"Name":"Microsoft.Extensions.Options.DataAnnotations","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Primitives":{"Name":"Microsoft.Extensions.Primitives","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Resilience":{"Name":"Microsoft.Extensions.Resilience","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Telemetry":{"Name":"Microsoft.Extensions.Telemetry","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Telemetry.Abstractions":{"Name":"Microsoft.Extensions.Telemetry.Abstractions","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.TimeProvider.Testing":{"Name":"Microsoft.Extensions.TimeProvider.Testing","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.WebEncoders":{"Name":"Microsoft.Extensions.WebEncoders","Version":"9.0.0-preview.3.24172.13","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Win32.Registry.AccessControl":{"Name":"Microsoft.Win32.Registry.AccessControl","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Win32.SystemEvents":{"Name":"Microsoft.Win32.SystemEvents","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.CodeDom":{"Name":"System.CodeDom","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Collections.Immutable":{"Name":"System.Collections.Immutable","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.ComponentModel.TypeConverter":{"Name":"System.ComponentModel.TypeConverter","Version":"4.3.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.AttributedModel":{"Name":"System.Composition.AttributedModel","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.Convention":{"Name":"System.Composition.Convention","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.Hosting":{"Name":"System.Composition.Hosting","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.Runtime":{"Name":"System.Composition.Runtime","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.TypedParts":{"Name":"System.Composition.TypedParts","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Configuration.ConfigurationManager":{"Name":"System.Configuration.ConfigurationManager","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Data.Odbc":{"Name":"System.Data.Odbc","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Data.OleDb":{"Name":"System.Data.OleDb","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Diagnostics.DiagnosticSource":{"Name":"System.Diagnostics.DiagnosticSource","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Diagnostics.EventLog":{"Name":"System.Diagnostics.EventLog","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Diagnostics.PerformanceCounter":{"Name":"System.Diagnostics.PerformanceCounter","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Diagnostics.Tracing":{"Name":"System.Diagnostics.Tracing","Version":"4.3.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Drawing.Common":{"Name":"System.Drawing.Common","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Formats.Asn1":{"Name":"System.Formats.Asn1","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Formats.Cbor":{"Name":"System.Formats.Cbor","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.IO":{"Name":"System.IO","Version":"4.3.0","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Hashing":{"Name":"System.IO.Hashing","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Packaging":{"Name":"System.IO.Packaging","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Pipelines":{"Name":"System.IO.Pipelines","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Ports":{"Name":"System.IO.Ports","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Memory.Data":{"Name":"System.Memory.Data","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Net.Http.Json":{"Name":"System.Net.Http.Json","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Net.Http.WinHttpHandler":{"Name":"System.Net.Http.WinHttpHandler","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Numerics.Tensors":{"Name":"System.Numerics.Tensors","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Reflection":{"Name":"System.Reflection","Version":"4.3.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Reflection.Metadata":{"Name":"System.Reflection.Metadata","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Reflection.MetadataLoadContext":{"Name":"System.Reflection.MetadataLoadContext","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Resources.Extensions":{"Name":"System.Resources.Extensions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Runtime":{"Name":"System.Runtime","Version":"4.3.1","Feed":"https://api.nuget.org/v3/index.json"},"System.Runtime.Extensions":{"Name":"System.Runtime.Extensions","Version":"4.3.1","Feed":"https://api.nuget.org/v3/index.json"},"System.Runtime.InteropServices":{"Name":"System.Runtime.InteropServices","Version":"4.3.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.Cng":{"Name":"System.Security.Cryptography.Cng","Version":"5.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.Cose":{"Name":"System.Security.Cryptography.Cose","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.Pkcs":{"Name":"System.Security.Cryptography.Pkcs","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.ProtectedData":{"Name":"System.Security.Cryptography.ProtectedData","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.Xml":{"Name":"System.Security.Cryptography.Xml","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Permissions":{"Name":"System.Security.Permissions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.ServiceModel.Syndication":{"Name":"System.ServiceModel.Syndication","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.ServiceProcess.ServiceController":{"Name":"System.ServiceProcess.ServiceController","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Text.Encoding.CodePages":{"Name":"System.Text.Encoding.CodePages","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Text.Encodings.Web":{"Name":"System.Text.Encodings.Web","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Text.Json":{"Name":"System.Text.Json","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Threading.AccessControl":{"Name":"System.Threading.AccessControl","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Threading.Channels":{"Name":"System.Threading.Channels","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Threading.Tasks.Dataflow":{"Name":"System.Threading.Tasks.Dataflow","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.ValueTuple":{"Name":"System.ValueTuple","Version":"4.5.0","Feed":"https://api.nuget.org/v3/index.json"}}} \ No newline at end of file +{"netframework-4.7.1":{"Microsoft.Bcl.AsyncInterfaces":{"Name":"Microsoft.Bcl.AsyncInterfaces","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Bcl.Cryptography":{"Name":"Microsoft.Bcl.Cryptography","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Bcl.Numerics":{"Name":"Microsoft.Bcl.Numerics","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Bcl.TimeProvider":{"Name":"Microsoft.Bcl.TimeProvider","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.AmbientMetadata.Application":{"Name":"Microsoft.Extensions.AmbientMetadata.Application","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.AsyncState":{"Name":"Microsoft.Extensions.AsyncState","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.Abstractions":{"Name":"Microsoft.Extensions.Caching.Abstractions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.Hybrid":{"Name":"Microsoft.Extensions.Caching.Hybrid","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.Memory":{"Name":"Microsoft.Extensions.Caching.Memory","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.SqlServer":{"Name":"Microsoft.Extensions.Caching.SqlServer","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.StackExchangeRedis":{"Name":"Microsoft.Extensions.Caching.StackExchangeRedis","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Compliance.Abstractions":{"Name":"Microsoft.Extensions.Compliance.Abstractions","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Compliance.Redaction":{"Name":"Microsoft.Extensions.Compliance.Redaction","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Compliance.Testing":{"Name":"Microsoft.Extensions.Compliance.Testing","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration":{"Name":"Microsoft.Extensions.Configuration","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Abstractions":{"Name":"Microsoft.Extensions.Configuration.Abstractions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Binder":{"Name":"Microsoft.Extensions.Configuration.Binder","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.CommandLine":{"Name":"Microsoft.Extensions.Configuration.CommandLine","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.EnvironmentVariables":{"Name":"Microsoft.Extensions.Configuration.EnvironmentVariables","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.FileExtensions":{"Name":"Microsoft.Extensions.Configuration.FileExtensions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Ini":{"Name":"Microsoft.Extensions.Configuration.Ini","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Json":{"Name":"Microsoft.Extensions.Configuration.Json","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.KeyPerFile":{"Name":"Microsoft.Extensions.Configuration.KeyPerFile","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.UserSecrets":{"Name":"Microsoft.Extensions.Configuration.UserSecrets","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Xml":{"Name":"Microsoft.Extensions.Configuration.Xml","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyInjection":{"Name":"Microsoft.Extensions.DependencyInjection","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyInjection.Abstractions":{"Name":"Microsoft.Extensions.DependencyInjection.Abstractions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyInjection.AutoActivation":{"Name":"Microsoft.Extensions.DependencyInjection.AutoActivation","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyInjection.Specification.Tests":{"Name":"Microsoft.Extensions.DependencyInjection.Specification.Tests","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyModel":{"Name":"Microsoft.Extensions.DependencyModel","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics":{"Name":"Microsoft.Extensions.Diagnostics","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.Abstractions":{"Name":"Microsoft.Extensions.Diagnostics.Abstractions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.ExceptionSummarization":{"Name":"Microsoft.Extensions.Diagnostics.ExceptionSummarization","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.HealthChecks":{"Name":"Microsoft.Extensions.Diagnostics.HealthChecks","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions":{"Name":"Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.HealthChecks.Common":{"Name":"Microsoft.Extensions.Diagnostics.HealthChecks.Common","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization":{"Name":"Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.Probes":{"Name":"Microsoft.Extensions.Diagnostics.Probes","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.ResourceMonitoring":{"Name":"Microsoft.Extensions.Diagnostics.ResourceMonitoring","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.Testing":{"Name":"Microsoft.Extensions.Diagnostics.Testing","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileProviders.Abstractions":{"Name":"Microsoft.Extensions.FileProviders.Abstractions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileProviders.Composite":{"Name":"Microsoft.Extensions.FileProviders.Composite","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileProviders.Embedded":{"Name":"Microsoft.Extensions.FileProviders.Embedded","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileProviders.Physical":{"Name":"Microsoft.Extensions.FileProviders.Physical","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileSystemGlobbing":{"Name":"Microsoft.Extensions.FileSystemGlobbing","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting":{"Name":"Microsoft.Extensions.Hosting","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting.Abstractions":{"Name":"Microsoft.Extensions.Hosting.Abstractions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting.Testing":{"Name":"Microsoft.Extensions.Hosting.Testing","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting.WindowsServices":{"Name":"Microsoft.Extensions.Hosting.WindowsServices","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Http":{"Name":"Microsoft.Extensions.Http","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Http.Diagnostics":{"Name":"Microsoft.Extensions.Http.Diagnostics","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Http.Resilience":{"Name":"Microsoft.Extensions.Http.Resilience","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Localization":{"Name":"Microsoft.Extensions.Localization","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Localization.Abstractions":{"Name":"Microsoft.Extensions.Localization.Abstractions","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging":{"Name":"Microsoft.Extensions.Logging","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Abstractions":{"Name":"Microsoft.Extensions.Logging.Abstractions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.AzureAppServices":{"Name":"Microsoft.Extensions.Logging.AzureAppServices","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Configuration":{"Name":"Microsoft.Extensions.Logging.Configuration","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Console":{"Name":"Microsoft.Extensions.Logging.Console","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Debug":{"Name":"Microsoft.Extensions.Logging.Debug","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.EventLog":{"Name":"Microsoft.Extensions.Logging.EventLog","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.EventSource":{"Name":"Microsoft.Extensions.Logging.EventSource","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.TraceSource":{"Name":"Microsoft.Extensions.Logging.TraceSource","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.ObjectPool":{"Name":"Microsoft.Extensions.ObjectPool","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.ObjectPool.DependencyInjection":{"Name":"Microsoft.Extensions.ObjectPool.DependencyInjection","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Options":{"Name":"Microsoft.Extensions.Options","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Options.ConfigurationExtensions":{"Name":"Microsoft.Extensions.Options.ConfigurationExtensions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Options.Contextual":{"Name":"Microsoft.Extensions.Options.Contextual","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Options.DataAnnotations":{"Name":"Microsoft.Extensions.Options.DataAnnotations","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Primitives":{"Name":"Microsoft.Extensions.Primitives","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Resilience":{"Name":"Microsoft.Extensions.Resilience","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Telemetry":{"Name":"Microsoft.Extensions.Telemetry","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Telemetry.Abstractions":{"Name":"Microsoft.Extensions.Telemetry.Abstractions","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.TimeProvider.Testing":{"Name":"Microsoft.Extensions.TimeProvider.Testing","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.WebEncoders":{"Name":"Microsoft.Extensions.WebEncoders","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Win32.Registry.AccessControl":{"Name":"Microsoft.Win32.Registry.AccessControl","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Win32.SystemEvents":{"Name":"Microsoft.Win32.SystemEvents","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.CodeDom":{"Name":"System.CodeDom","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Collections.Immutable":{"Name":"System.Collections.Immutable","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.ComponentModel.TypeConverter":{"Name":"System.ComponentModel.TypeConverter","Version":"4.3.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.AttributedModel":{"Name":"System.Composition.AttributedModel","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.Convention":{"Name":"System.Composition.Convention","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.Hosting":{"Name":"System.Composition.Hosting","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.Runtime":{"Name":"System.Composition.Runtime","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.TypedParts":{"Name":"System.Composition.TypedParts","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Configuration.ConfigurationManager":{"Name":"System.Configuration.ConfigurationManager","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Data.Odbc":{"Name":"System.Data.Odbc","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Data.OleDb":{"Name":"System.Data.OleDb","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Diagnostics.DiagnosticSource":{"Name":"System.Diagnostics.DiagnosticSource","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Diagnostics.EventLog":{"Name":"System.Diagnostics.EventLog","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Diagnostics.PerformanceCounter":{"Name":"System.Diagnostics.PerformanceCounter","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Diagnostics.Tracing":{"Name":"System.Diagnostics.Tracing","Version":"4.3.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Drawing.Common":{"Name":"System.Drawing.Common","Version":"9.0.0-preview.4.24267.1","Feed":"https://api.nuget.org/v3/index.json"},"System.Formats.Asn1":{"Name":"System.Formats.Asn1","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Formats.Cbor":{"Name":"System.Formats.Cbor","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.IO":{"Name":"System.IO","Version":"4.3.0","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Hashing":{"Name":"System.IO.Hashing","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Packaging":{"Name":"System.IO.Packaging","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Pipelines":{"Name":"System.IO.Pipelines","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Ports":{"Name":"System.IO.Ports","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Memory.Data":{"Name":"System.Memory.Data","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Net.Http.Json":{"Name":"System.Net.Http.Json","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Net.Http.WinHttpHandler":{"Name":"System.Net.Http.WinHttpHandler","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Numerics.Tensors":{"Name":"System.Numerics.Tensors","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Reflection":{"Name":"System.Reflection","Version":"4.3.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Reflection.Metadata":{"Name":"System.Reflection.Metadata","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Reflection.MetadataLoadContext":{"Name":"System.Reflection.MetadataLoadContext","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Resources.Extensions":{"Name":"System.Resources.Extensions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Runtime":{"Name":"System.Runtime","Version":"4.3.1","Feed":"https://api.nuget.org/v3/index.json"},"System.Runtime.Extensions":{"Name":"System.Runtime.Extensions","Version":"4.3.1","Feed":"https://api.nuget.org/v3/index.json"},"System.Runtime.InteropServices":{"Name":"System.Runtime.InteropServices","Version":"4.3.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.Cng":{"Name":"System.Security.Cryptography.Cng","Version":"5.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.Cose":{"Name":"System.Security.Cryptography.Cose","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.Pkcs":{"Name":"System.Security.Cryptography.Pkcs","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.ProtectedData":{"Name":"System.Security.Cryptography.ProtectedData","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.Xml":{"Name":"System.Security.Cryptography.Xml","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Permissions":{"Name":"System.Security.Permissions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.ServiceModel.Syndication":{"Name":"System.ServiceModel.Syndication","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.ServiceProcess.ServiceController":{"Name":"System.ServiceProcess.ServiceController","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Text.Encoding.CodePages":{"Name":"System.Text.Encoding.CodePages","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Text.Encodings.Web":{"Name":"System.Text.Encodings.Web","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Text.Json":{"Name":"System.Text.Json","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Threading.AccessControl":{"Name":"System.Threading.AccessControl","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Threading.Channels":{"Name":"System.Threading.Channels","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Threading.Tasks.Dataflow":{"Name":"System.Threading.Tasks.Dataflow","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.ValueTuple":{"Name":"System.ValueTuple","Version":"4.5.0","Feed":"https://api.nuget.org/v3/index.json"}}} \ No newline at end of file diff --git a/xml/PackageInformation/netframework-4.7.2.json b/xml/PackageInformation/netframework-4.7.2.json index 440b0199c6d..6c5f8d84808 100644 --- a/xml/PackageInformation/netframework-4.7.2.json +++ b/xml/PackageInformation/netframework-4.7.2.json @@ -1 +1 @@ -{"netframework-4.7.2":{"Microsoft.Bcl.AsyncInterfaces":{"Name":"Microsoft.Bcl.AsyncInterfaces","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Bcl.Cryptography":{"Name":"Microsoft.Bcl.Cryptography","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Bcl.Numerics":{"Name":"Microsoft.Bcl.Numerics","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Bcl.TimeProvider":{"Name":"Microsoft.Bcl.TimeProvider","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.AmbientMetadata.Application":{"Name":"Microsoft.Extensions.AmbientMetadata.Application","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.AsyncState":{"Name":"Microsoft.Extensions.AsyncState","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.Abstractions":{"Name":"Microsoft.Extensions.Caching.Abstractions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.Memory":{"Name":"Microsoft.Extensions.Caching.Memory","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.SqlServer":{"Name":"Microsoft.Extensions.Caching.SqlServer","Version":"9.0.0-preview.3.24172.13","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.StackExchangeRedis":{"Name":"Microsoft.Extensions.Caching.StackExchangeRedis","Version":"9.0.0-preview.3.24172.13","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Compliance.Abstractions":{"Name":"Microsoft.Extensions.Compliance.Abstractions","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Compliance.Redaction":{"Name":"Microsoft.Extensions.Compliance.Redaction","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Compliance.Testing":{"Name":"Microsoft.Extensions.Compliance.Testing","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration":{"Name":"Microsoft.Extensions.Configuration","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Abstractions":{"Name":"Microsoft.Extensions.Configuration.Abstractions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Binder":{"Name":"Microsoft.Extensions.Configuration.Binder","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.CommandLine":{"Name":"Microsoft.Extensions.Configuration.CommandLine","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.EnvironmentVariables":{"Name":"Microsoft.Extensions.Configuration.EnvironmentVariables","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.FileExtensions":{"Name":"Microsoft.Extensions.Configuration.FileExtensions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Ini":{"Name":"Microsoft.Extensions.Configuration.Ini","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Json":{"Name":"Microsoft.Extensions.Configuration.Json","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.KeyPerFile":{"Name":"Microsoft.Extensions.Configuration.KeyPerFile","Version":"9.0.0-preview.3.24172.13","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.UserSecrets":{"Name":"Microsoft.Extensions.Configuration.UserSecrets","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Xml":{"Name":"Microsoft.Extensions.Configuration.Xml","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyInjection":{"Name":"Microsoft.Extensions.DependencyInjection","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyInjection.Abstractions":{"Name":"Microsoft.Extensions.DependencyInjection.Abstractions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyInjection.AutoActivation":{"Name":"Microsoft.Extensions.DependencyInjection.AutoActivation","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyInjection.Specification.Tests":{"Name":"Microsoft.Extensions.DependencyInjection.Specification.Tests","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyModel":{"Name":"Microsoft.Extensions.DependencyModel","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics":{"Name":"Microsoft.Extensions.Diagnostics","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.Abstractions":{"Name":"Microsoft.Extensions.Diagnostics.Abstractions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.ExceptionSummarization":{"Name":"Microsoft.Extensions.Diagnostics.ExceptionSummarization","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.HealthChecks":{"Name":"Microsoft.Extensions.Diagnostics.HealthChecks","Version":"9.0.0-preview.3.24172.13","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions":{"Name":"Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions","Version":"9.0.0-preview.3.24172.13","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.HealthChecks.Common":{"Name":"Microsoft.Extensions.Diagnostics.HealthChecks.Common","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization":{"Name":"Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.Probes":{"Name":"Microsoft.Extensions.Diagnostics.Probes","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.ResourceMonitoring":{"Name":"Microsoft.Extensions.Diagnostics.ResourceMonitoring","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.Testing":{"Name":"Microsoft.Extensions.Diagnostics.Testing","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileProviders.Abstractions":{"Name":"Microsoft.Extensions.FileProviders.Abstractions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileProviders.Composite":{"Name":"Microsoft.Extensions.FileProviders.Composite","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileProviders.Embedded":{"Name":"Microsoft.Extensions.FileProviders.Embedded","Version":"9.0.0-preview.3.24172.13","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileProviders.Physical":{"Name":"Microsoft.Extensions.FileProviders.Physical","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileSystemGlobbing":{"Name":"Microsoft.Extensions.FileSystemGlobbing","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting":{"Name":"Microsoft.Extensions.Hosting","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting.Abstractions":{"Name":"Microsoft.Extensions.Hosting.Abstractions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting.Testing":{"Name":"Microsoft.Extensions.Hosting.Testing","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting.WindowsServices":{"Name":"Microsoft.Extensions.Hosting.WindowsServices","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Http":{"Name":"Microsoft.Extensions.Http","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Http.Diagnostics":{"Name":"Microsoft.Extensions.Http.Diagnostics","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Http.Resilience":{"Name":"Microsoft.Extensions.Http.Resilience","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Localization":{"Name":"Microsoft.Extensions.Localization","Version":"9.0.0-preview.3.24172.13","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Localization.Abstractions":{"Name":"Microsoft.Extensions.Localization.Abstractions","Version":"9.0.0-preview.3.24172.13","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging":{"Name":"Microsoft.Extensions.Logging","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Abstractions":{"Name":"Microsoft.Extensions.Logging.Abstractions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.AzureAppServices":{"Name":"Microsoft.Extensions.Logging.AzureAppServices","Version":"9.0.0-preview.3.24172.13","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Configuration":{"Name":"Microsoft.Extensions.Logging.Configuration","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Console":{"Name":"Microsoft.Extensions.Logging.Console","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Debug":{"Name":"Microsoft.Extensions.Logging.Debug","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.EventLog":{"Name":"Microsoft.Extensions.Logging.EventLog","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.EventSource":{"Name":"Microsoft.Extensions.Logging.EventSource","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.TraceSource":{"Name":"Microsoft.Extensions.Logging.TraceSource","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.ObjectPool":{"Name":"Microsoft.Extensions.ObjectPool","Version":"9.0.0-preview.3.24172.13","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.ObjectPool.DependencyInjection":{"Name":"Microsoft.Extensions.ObjectPool.DependencyInjection","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Options":{"Name":"Microsoft.Extensions.Options","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Options.ConfigurationExtensions":{"Name":"Microsoft.Extensions.Options.ConfigurationExtensions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Options.Contextual":{"Name":"Microsoft.Extensions.Options.Contextual","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Options.DataAnnotations":{"Name":"Microsoft.Extensions.Options.DataAnnotations","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Primitives":{"Name":"Microsoft.Extensions.Primitives","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Resilience":{"Name":"Microsoft.Extensions.Resilience","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Telemetry":{"Name":"Microsoft.Extensions.Telemetry","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Telemetry.Abstractions":{"Name":"Microsoft.Extensions.Telemetry.Abstractions","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.TimeProvider.Testing":{"Name":"Microsoft.Extensions.TimeProvider.Testing","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.WebEncoders":{"Name":"Microsoft.Extensions.WebEncoders","Version":"9.0.0-preview.3.24172.13","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Win32.Registry.AccessControl":{"Name":"Microsoft.Win32.Registry.AccessControl","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Win32.SystemEvents":{"Name":"Microsoft.Win32.SystemEvents","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.CodeDom":{"Name":"System.CodeDom","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Collections.Immutable":{"Name":"System.Collections.Immutable","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.ComponentModel.TypeConverter":{"Name":"System.ComponentModel.TypeConverter","Version":"4.3.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.AttributedModel":{"Name":"System.Composition.AttributedModel","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.Convention":{"Name":"System.Composition.Convention","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.Hosting":{"Name":"System.Composition.Hosting","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.Runtime":{"Name":"System.Composition.Runtime","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.TypedParts":{"Name":"System.Composition.TypedParts","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Configuration.ConfigurationManager":{"Name":"System.Configuration.ConfigurationManager","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Data.Odbc":{"Name":"System.Data.Odbc","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Data.OleDb":{"Name":"System.Data.OleDb","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Diagnostics.DiagnosticSource":{"Name":"System.Diagnostics.DiagnosticSource","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Diagnostics.EventLog":{"Name":"System.Diagnostics.EventLog","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Diagnostics.PerformanceCounter":{"Name":"System.Diagnostics.PerformanceCounter","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Diagnostics.Tracing":{"Name":"System.Diagnostics.Tracing","Version":"4.3.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Drawing.Common":{"Name":"System.Drawing.Common","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Formats.Asn1":{"Name":"System.Formats.Asn1","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Formats.Cbor":{"Name":"System.Formats.Cbor","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.IO":{"Name":"System.IO","Version":"4.3.0","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Hashing":{"Name":"System.IO.Hashing","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Packaging":{"Name":"System.IO.Packaging","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Pipelines":{"Name":"System.IO.Pipelines","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Ports":{"Name":"System.IO.Ports","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Memory.Data":{"Name":"System.Memory.Data","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Net.Http.Json":{"Name":"System.Net.Http.Json","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Net.Http.WinHttpHandler":{"Name":"System.Net.Http.WinHttpHandler","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Numerics.Tensors":{"Name":"System.Numerics.Tensors","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Reflection":{"Name":"System.Reflection","Version":"4.3.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Reflection.Metadata":{"Name":"System.Reflection.Metadata","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Reflection.MetadataLoadContext":{"Name":"System.Reflection.MetadataLoadContext","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Reflection.TypeExtensions":{"Name":"System.Reflection.TypeExtensions","Version":"4.7.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Resources.Extensions":{"Name":"System.Resources.Extensions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Runtime":{"Name":"System.Runtime","Version":"4.3.1","Feed":"https://api.nuget.org/v3/index.json"},"System.Runtime.Extensions":{"Name":"System.Runtime.Extensions","Version":"4.3.1","Feed":"https://api.nuget.org/v3/index.json"},"System.Runtime.InteropServices":{"Name":"System.Runtime.InteropServices","Version":"4.3.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.Cng":{"Name":"System.Security.Cryptography.Cng","Version":"5.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.Cose":{"Name":"System.Security.Cryptography.Cose","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.Pkcs":{"Name":"System.Security.Cryptography.Pkcs","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.ProtectedData":{"Name":"System.Security.Cryptography.ProtectedData","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.Xml":{"Name":"System.Security.Cryptography.Xml","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Permissions":{"Name":"System.Security.Permissions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.ServiceModel.Syndication":{"Name":"System.ServiceModel.Syndication","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.ServiceProcess.ServiceController":{"Name":"System.ServiceProcess.ServiceController","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Text.Encoding.CodePages":{"Name":"System.Text.Encoding.CodePages","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Text.Encodings.Web":{"Name":"System.Text.Encodings.Web","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Text.Json":{"Name":"System.Text.Json","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Threading.AccessControl":{"Name":"System.Threading.AccessControl","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Threading.Channels":{"Name":"System.Threading.Channels","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Threading.Tasks.Dataflow":{"Name":"System.Threading.Tasks.Dataflow","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.ValueTuple":{"Name":"System.ValueTuple","Version":"4.5.0","Feed":"https://api.nuget.org/v3/index.json"}}} \ No newline at end of file +{"netframework-4.7.2":{"Microsoft.Bcl.AsyncInterfaces":{"Name":"Microsoft.Bcl.AsyncInterfaces","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Bcl.Cryptography":{"Name":"Microsoft.Bcl.Cryptography","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Bcl.Numerics":{"Name":"Microsoft.Bcl.Numerics","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Bcl.TimeProvider":{"Name":"Microsoft.Bcl.TimeProvider","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.AmbientMetadata.Application":{"Name":"Microsoft.Extensions.AmbientMetadata.Application","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.AsyncState":{"Name":"Microsoft.Extensions.AsyncState","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.Abstractions":{"Name":"Microsoft.Extensions.Caching.Abstractions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.Hybrid":{"Name":"Microsoft.Extensions.Caching.Hybrid","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.Memory":{"Name":"Microsoft.Extensions.Caching.Memory","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.SqlServer":{"Name":"Microsoft.Extensions.Caching.SqlServer","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.StackExchangeRedis":{"Name":"Microsoft.Extensions.Caching.StackExchangeRedis","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Compliance.Abstractions":{"Name":"Microsoft.Extensions.Compliance.Abstractions","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Compliance.Redaction":{"Name":"Microsoft.Extensions.Compliance.Redaction","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Compliance.Testing":{"Name":"Microsoft.Extensions.Compliance.Testing","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration":{"Name":"Microsoft.Extensions.Configuration","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Abstractions":{"Name":"Microsoft.Extensions.Configuration.Abstractions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Binder":{"Name":"Microsoft.Extensions.Configuration.Binder","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.CommandLine":{"Name":"Microsoft.Extensions.Configuration.CommandLine","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.EnvironmentVariables":{"Name":"Microsoft.Extensions.Configuration.EnvironmentVariables","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.FileExtensions":{"Name":"Microsoft.Extensions.Configuration.FileExtensions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Ini":{"Name":"Microsoft.Extensions.Configuration.Ini","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Json":{"Name":"Microsoft.Extensions.Configuration.Json","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.KeyPerFile":{"Name":"Microsoft.Extensions.Configuration.KeyPerFile","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.UserSecrets":{"Name":"Microsoft.Extensions.Configuration.UserSecrets","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Xml":{"Name":"Microsoft.Extensions.Configuration.Xml","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyInjection":{"Name":"Microsoft.Extensions.DependencyInjection","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyInjection.Abstractions":{"Name":"Microsoft.Extensions.DependencyInjection.Abstractions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyInjection.AutoActivation":{"Name":"Microsoft.Extensions.DependencyInjection.AutoActivation","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyInjection.Specification.Tests":{"Name":"Microsoft.Extensions.DependencyInjection.Specification.Tests","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyModel":{"Name":"Microsoft.Extensions.DependencyModel","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics":{"Name":"Microsoft.Extensions.Diagnostics","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.Abstractions":{"Name":"Microsoft.Extensions.Diagnostics.Abstractions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.ExceptionSummarization":{"Name":"Microsoft.Extensions.Diagnostics.ExceptionSummarization","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.HealthChecks":{"Name":"Microsoft.Extensions.Diagnostics.HealthChecks","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions":{"Name":"Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.HealthChecks.Common":{"Name":"Microsoft.Extensions.Diagnostics.HealthChecks.Common","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization":{"Name":"Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.Probes":{"Name":"Microsoft.Extensions.Diagnostics.Probes","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.ResourceMonitoring":{"Name":"Microsoft.Extensions.Diagnostics.ResourceMonitoring","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.Testing":{"Name":"Microsoft.Extensions.Diagnostics.Testing","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileProviders.Abstractions":{"Name":"Microsoft.Extensions.FileProviders.Abstractions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileProviders.Composite":{"Name":"Microsoft.Extensions.FileProviders.Composite","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileProviders.Embedded":{"Name":"Microsoft.Extensions.FileProviders.Embedded","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileProviders.Physical":{"Name":"Microsoft.Extensions.FileProviders.Physical","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileSystemGlobbing":{"Name":"Microsoft.Extensions.FileSystemGlobbing","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting":{"Name":"Microsoft.Extensions.Hosting","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting.Abstractions":{"Name":"Microsoft.Extensions.Hosting.Abstractions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting.Testing":{"Name":"Microsoft.Extensions.Hosting.Testing","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting.WindowsServices":{"Name":"Microsoft.Extensions.Hosting.WindowsServices","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Http":{"Name":"Microsoft.Extensions.Http","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Http.Diagnostics":{"Name":"Microsoft.Extensions.Http.Diagnostics","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Http.Resilience":{"Name":"Microsoft.Extensions.Http.Resilience","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Localization":{"Name":"Microsoft.Extensions.Localization","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Localization.Abstractions":{"Name":"Microsoft.Extensions.Localization.Abstractions","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging":{"Name":"Microsoft.Extensions.Logging","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Abstractions":{"Name":"Microsoft.Extensions.Logging.Abstractions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.AzureAppServices":{"Name":"Microsoft.Extensions.Logging.AzureAppServices","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Configuration":{"Name":"Microsoft.Extensions.Logging.Configuration","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Console":{"Name":"Microsoft.Extensions.Logging.Console","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Debug":{"Name":"Microsoft.Extensions.Logging.Debug","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.EventLog":{"Name":"Microsoft.Extensions.Logging.EventLog","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.EventSource":{"Name":"Microsoft.Extensions.Logging.EventSource","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.TraceSource":{"Name":"Microsoft.Extensions.Logging.TraceSource","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.ObjectPool":{"Name":"Microsoft.Extensions.ObjectPool","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.ObjectPool.DependencyInjection":{"Name":"Microsoft.Extensions.ObjectPool.DependencyInjection","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Options":{"Name":"Microsoft.Extensions.Options","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Options.ConfigurationExtensions":{"Name":"Microsoft.Extensions.Options.ConfigurationExtensions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Options.Contextual":{"Name":"Microsoft.Extensions.Options.Contextual","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Options.DataAnnotations":{"Name":"Microsoft.Extensions.Options.DataAnnotations","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Primitives":{"Name":"Microsoft.Extensions.Primitives","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Resilience":{"Name":"Microsoft.Extensions.Resilience","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Telemetry":{"Name":"Microsoft.Extensions.Telemetry","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Telemetry.Abstractions":{"Name":"Microsoft.Extensions.Telemetry.Abstractions","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.TimeProvider.Testing":{"Name":"Microsoft.Extensions.TimeProvider.Testing","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.WebEncoders":{"Name":"Microsoft.Extensions.WebEncoders","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Win32.Registry.AccessControl":{"Name":"Microsoft.Win32.Registry.AccessControl","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Win32.SystemEvents":{"Name":"Microsoft.Win32.SystemEvents","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.CodeDom":{"Name":"System.CodeDom","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Collections.Immutable":{"Name":"System.Collections.Immutable","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.ComponentModel.TypeConverter":{"Name":"System.ComponentModel.TypeConverter","Version":"4.3.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.AttributedModel":{"Name":"System.Composition.AttributedModel","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.Convention":{"Name":"System.Composition.Convention","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.Hosting":{"Name":"System.Composition.Hosting","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.Runtime":{"Name":"System.Composition.Runtime","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.TypedParts":{"Name":"System.Composition.TypedParts","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Configuration.ConfigurationManager":{"Name":"System.Configuration.ConfigurationManager","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Data.Odbc":{"Name":"System.Data.Odbc","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Data.OleDb":{"Name":"System.Data.OleDb","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Diagnostics.DiagnosticSource":{"Name":"System.Diagnostics.DiagnosticSource","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Diagnostics.EventLog":{"Name":"System.Diagnostics.EventLog","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Diagnostics.PerformanceCounter":{"Name":"System.Diagnostics.PerformanceCounter","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Diagnostics.Tracing":{"Name":"System.Diagnostics.Tracing","Version":"4.3.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Drawing.Common":{"Name":"System.Drawing.Common","Version":"9.0.0-preview.4.24267.1","Feed":"https://api.nuget.org/v3/index.json"},"System.Formats.Asn1":{"Name":"System.Formats.Asn1","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Formats.Cbor":{"Name":"System.Formats.Cbor","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.IO":{"Name":"System.IO","Version":"4.3.0","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Hashing":{"Name":"System.IO.Hashing","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Packaging":{"Name":"System.IO.Packaging","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Pipelines":{"Name":"System.IO.Pipelines","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Ports":{"Name":"System.IO.Ports","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Memory.Data":{"Name":"System.Memory.Data","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Net.Http.Json":{"Name":"System.Net.Http.Json","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Net.Http.WinHttpHandler":{"Name":"System.Net.Http.WinHttpHandler","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Numerics.Tensors":{"Name":"System.Numerics.Tensors","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Reflection":{"Name":"System.Reflection","Version":"4.3.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Reflection.Metadata":{"Name":"System.Reflection.Metadata","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Reflection.MetadataLoadContext":{"Name":"System.Reflection.MetadataLoadContext","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Reflection.TypeExtensions":{"Name":"System.Reflection.TypeExtensions","Version":"4.7.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Resources.Extensions":{"Name":"System.Resources.Extensions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Runtime":{"Name":"System.Runtime","Version":"4.3.1","Feed":"https://api.nuget.org/v3/index.json"},"System.Runtime.Extensions":{"Name":"System.Runtime.Extensions","Version":"4.3.1","Feed":"https://api.nuget.org/v3/index.json"},"System.Runtime.InteropServices":{"Name":"System.Runtime.InteropServices","Version":"4.3.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.Cng":{"Name":"System.Security.Cryptography.Cng","Version":"5.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.Cose":{"Name":"System.Security.Cryptography.Cose","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.Pkcs":{"Name":"System.Security.Cryptography.Pkcs","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.ProtectedData":{"Name":"System.Security.Cryptography.ProtectedData","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.Xml":{"Name":"System.Security.Cryptography.Xml","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Permissions":{"Name":"System.Security.Permissions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.ServiceModel.Syndication":{"Name":"System.ServiceModel.Syndication","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.ServiceProcess.ServiceController":{"Name":"System.ServiceProcess.ServiceController","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Text.Encoding.CodePages":{"Name":"System.Text.Encoding.CodePages","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Text.Encodings.Web":{"Name":"System.Text.Encodings.Web","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Text.Json":{"Name":"System.Text.Json","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Threading.AccessControl":{"Name":"System.Threading.AccessControl","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Threading.Channels":{"Name":"System.Threading.Channels","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Threading.Tasks.Dataflow":{"Name":"System.Threading.Tasks.Dataflow","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.ValueTuple":{"Name":"System.ValueTuple","Version":"4.5.0","Feed":"https://api.nuget.org/v3/index.json"}}} \ No newline at end of file diff --git a/xml/PackageInformation/netframework-4.7.json b/xml/PackageInformation/netframework-4.7.json index d1f75b15672..7fb93b2663b 100644 --- a/xml/PackageInformation/netframework-4.7.json +++ b/xml/PackageInformation/netframework-4.7.json @@ -1 +1 @@ -{"netframework-4.7":{"Microsoft.Bcl.AsyncInterfaces":{"Name":"Microsoft.Bcl.AsyncInterfaces","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Bcl.Cryptography":{"Name":"Microsoft.Bcl.Cryptography","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Bcl.Numerics":{"Name":"Microsoft.Bcl.Numerics","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Bcl.TimeProvider":{"Name":"Microsoft.Bcl.TimeProvider","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.AmbientMetadata.Application":{"Name":"Microsoft.Extensions.AmbientMetadata.Application","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.AsyncState":{"Name":"Microsoft.Extensions.AsyncState","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.Abstractions":{"Name":"Microsoft.Extensions.Caching.Abstractions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.Memory":{"Name":"Microsoft.Extensions.Caching.Memory","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.SqlServer":{"Name":"Microsoft.Extensions.Caching.SqlServer","Version":"9.0.0-preview.3.24172.13","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.StackExchangeRedis":{"Name":"Microsoft.Extensions.Caching.StackExchangeRedis","Version":"9.0.0-preview.3.24172.13","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Compliance.Abstractions":{"Name":"Microsoft.Extensions.Compliance.Abstractions","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Compliance.Redaction":{"Name":"Microsoft.Extensions.Compliance.Redaction","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Compliance.Testing":{"Name":"Microsoft.Extensions.Compliance.Testing","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration":{"Name":"Microsoft.Extensions.Configuration","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Abstractions":{"Name":"Microsoft.Extensions.Configuration.Abstractions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Binder":{"Name":"Microsoft.Extensions.Configuration.Binder","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.CommandLine":{"Name":"Microsoft.Extensions.Configuration.CommandLine","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.EnvironmentVariables":{"Name":"Microsoft.Extensions.Configuration.EnvironmentVariables","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.FileExtensions":{"Name":"Microsoft.Extensions.Configuration.FileExtensions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Ini":{"Name":"Microsoft.Extensions.Configuration.Ini","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Json":{"Name":"Microsoft.Extensions.Configuration.Json","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.KeyPerFile":{"Name":"Microsoft.Extensions.Configuration.KeyPerFile","Version":"9.0.0-preview.3.24172.13","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.UserSecrets":{"Name":"Microsoft.Extensions.Configuration.UserSecrets","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Xml":{"Name":"Microsoft.Extensions.Configuration.Xml","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyInjection":{"Name":"Microsoft.Extensions.DependencyInjection","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyInjection.Abstractions":{"Name":"Microsoft.Extensions.DependencyInjection.Abstractions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyInjection.AutoActivation":{"Name":"Microsoft.Extensions.DependencyInjection.AutoActivation","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyInjection.Specification.Tests":{"Name":"Microsoft.Extensions.DependencyInjection.Specification.Tests","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyModel":{"Name":"Microsoft.Extensions.DependencyModel","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics":{"Name":"Microsoft.Extensions.Diagnostics","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.Abstractions":{"Name":"Microsoft.Extensions.Diagnostics.Abstractions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.ExceptionSummarization":{"Name":"Microsoft.Extensions.Diagnostics.ExceptionSummarization","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.HealthChecks":{"Name":"Microsoft.Extensions.Diagnostics.HealthChecks","Version":"9.0.0-preview.3.24172.13","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions":{"Name":"Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions","Version":"9.0.0-preview.3.24172.13","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.HealthChecks.Common":{"Name":"Microsoft.Extensions.Diagnostics.HealthChecks.Common","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization":{"Name":"Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.Probes":{"Name":"Microsoft.Extensions.Diagnostics.Probes","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.ResourceMonitoring":{"Name":"Microsoft.Extensions.Diagnostics.ResourceMonitoring","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.Testing":{"Name":"Microsoft.Extensions.Diagnostics.Testing","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileProviders.Abstractions":{"Name":"Microsoft.Extensions.FileProviders.Abstractions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileProviders.Composite":{"Name":"Microsoft.Extensions.FileProviders.Composite","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileProviders.Embedded":{"Name":"Microsoft.Extensions.FileProviders.Embedded","Version":"9.0.0-preview.3.24172.13","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileProviders.Physical":{"Name":"Microsoft.Extensions.FileProviders.Physical","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileSystemGlobbing":{"Name":"Microsoft.Extensions.FileSystemGlobbing","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting":{"Name":"Microsoft.Extensions.Hosting","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting.Abstractions":{"Name":"Microsoft.Extensions.Hosting.Abstractions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting.Testing":{"Name":"Microsoft.Extensions.Hosting.Testing","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting.WindowsServices":{"Name":"Microsoft.Extensions.Hosting.WindowsServices","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Http":{"Name":"Microsoft.Extensions.Http","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Http.Diagnostics":{"Name":"Microsoft.Extensions.Http.Diagnostics","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Http.Resilience":{"Name":"Microsoft.Extensions.Http.Resilience","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Localization":{"Name":"Microsoft.Extensions.Localization","Version":"9.0.0-preview.3.24172.13","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Localization.Abstractions":{"Name":"Microsoft.Extensions.Localization.Abstractions","Version":"9.0.0-preview.3.24172.13","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging":{"Name":"Microsoft.Extensions.Logging","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Abstractions":{"Name":"Microsoft.Extensions.Logging.Abstractions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.AzureAppServices":{"Name":"Microsoft.Extensions.Logging.AzureAppServices","Version":"9.0.0-preview.3.24172.13","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Configuration":{"Name":"Microsoft.Extensions.Logging.Configuration","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Console":{"Name":"Microsoft.Extensions.Logging.Console","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Debug":{"Name":"Microsoft.Extensions.Logging.Debug","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.EventLog":{"Name":"Microsoft.Extensions.Logging.EventLog","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.EventSource":{"Name":"Microsoft.Extensions.Logging.EventSource","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.TraceSource":{"Name":"Microsoft.Extensions.Logging.TraceSource","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.ObjectPool":{"Name":"Microsoft.Extensions.ObjectPool","Version":"9.0.0-preview.3.24172.13","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.ObjectPool.DependencyInjection":{"Name":"Microsoft.Extensions.ObjectPool.DependencyInjection","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Options":{"Name":"Microsoft.Extensions.Options","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Options.ConfigurationExtensions":{"Name":"Microsoft.Extensions.Options.ConfigurationExtensions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Options.Contextual":{"Name":"Microsoft.Extensions.Options.Contextual","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Options.DataAnnotations":{"Name":"Microsoft.Extensions.Options.DataAnnotations","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Primitives":{"Name":"Microsoft.Extensions.Primitives","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Resilience":{"Name":"Microsoft.Extensions.Resilience","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Telemetry":{"Name":"Microsoft.Extensions.Telemetry","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Telemetry.Abstractions":{"Name":"Microsoft.Extensions.Telemetry.Abstractions","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.TimeProvider.Testing":{"Name":"Microsoft.Extensions.TimeProvider.Testing","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.WebEncoders":{"Name":"Microsoft.Extensions.WebEncoders","Version":"9.0.0-preview.3.24172.13","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Win32.Registry.AccessControl":{"Name":"Microsoft.Win32.Registry.AccessControl","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Win32.SystemEvents":{"Name":"Microsoft.Win32.SystemEvents","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.CodeDom":{"Name":"System.CodeDom","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Collections.Immutable":{"Name":"System.Collections.Immutable","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.ComponentModel.TypeConverter":{"Name":"System.ComponentModel.TypeConverter","Version":"4.3.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.AttributedModel":{"Name":"System.Composition.AttributedModel","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.Convention":{"Name":"System.Composition.Convention","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.Hosting":{"Name":"System.Composition.Hosting","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.Runtime":{"Name":"System.Composition.Runtime","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.TypedParts":{"Name":"System.Composition.TypedParts","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Configuration.ConfigurationManager":{"Name":"System.Configuration.ConfigurationManager","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Data.Odbc":{"Name":"System.Data.Odbc","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Data.OleDb":{"Name":"System.Data.OleDb","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Diagnostics.DiagnosticSource":{"Name":"System.Diagnostics.DiagnosticSource","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Diagnostics.EventLog":{"Name":"System.Diagnostics.EventLog","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Diagnostics.PerformanceCounter":{"Name":"System.Diagnostics.PerformanceCounter","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Diagnostics.Tracing":{"Name":"System.Diagnostics.Tracing","Version":"4.3.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Drawing.Common":{"Name":"System.Drawing.Common","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Formats.Asn1":{"Name":"System.Formats.Asn1","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Formats.Cbor":{"Name":"System.Formats.Cbor","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.IO":{"Name":"System.IO","Version":"4.3.0","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Hashing":{"Name":"System.IO.Hashing","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Packaging":{"Name":"System.IO.Packaging","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Pipelines":{"Name":"System.IO.Pipelines","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Ports":{"Name":"System.IO.Ports","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Memory.Data":{"Name":"System.Memory.Data","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Net.Http.Json":{"Name":"System.Net.Http.Json","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Net.Http.WinHttpHandler":{"Name":"System.Net.Http.WinHttpHandler","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Numerics.Tensors":{"Name":"System.Numerics.Tensors","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Reflection":{"Name":"System.Reflection","Version":"4.3.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Reflection.Metadata":{"Name":"System.Reflection.Metadata","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Reflection.MetadataLoadContext":{"Name":"System.Reflection.MetadataLoadContext","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Resources.Extensions":{"Name":"System.Resources.Extensions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Runtime":{"Name":"System.Runtime","Version":"4.3.1","Feed":"https://api.nuget.org/v3/index.json"},"System.Runtime.Extensions":{"Name":"System.Runtime.Extensions","Version":"4.3.1","Feed":"https://api.nuget.org/v3/index.json"},"System.Runtime.InteropServices":{"Name":"System.Runtime.InteropServices","Version":"4.3.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.Cng":{"Name":"System.Security.Cryptography.Cng","Version":"5.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.Cose":{"Name":"System.Security.Cryptography.Cose","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.Pkcs":{"Name":"System.Security.Cryptography.Pkcs","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.ProtectedData":{"Name":"System.Security.Cryptography.ProtectedData","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.Xml":{"Name":"System.Security.Cryptography.Xml","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Permissions":{"Name":"System.Security.Permissions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.ServiceModel.Syndication":{"Name":"System.ServiceModel.Syndication","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.ServiceProcess.ServiceController":{"Name":"System.ServiceProcess.ServiceController","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Text.Encoding.CodePages":{"Name":"System.Text.Encoding.CodePages","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Text.Encodings.Web":{"Name":"System.Text.Encodings.Web","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Text.Json":{"Name":"System.Text.Json","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Threading.AccessControl":{"Name":"System.Threading.AccessControl","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Threading.Channels":{"Name":"System.Threading.Channels","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Threading.Tasks.Dataflow":{"Name":"System.Threading.Tasks.Dataflow","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.ValueTuple":{"Name":"System.ValueTuple","Version":"4.5.0","Feed":"https://api.nuget.org/v3/index.json"}}} \ No newline at end of file +{"netframework-4.7":{"Microsoft.Bcl.AsyncInterfaces":{"Name":"Microsoft.Bcl.AsyncInterfaces","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Bcl.Cryptography":{"Name":"Microsoft.Bcl.Cryptography","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Bcl.Numerics":{"Name":"Microsoft.Bcl.Numerics","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Bcl.TimeProvider":{"Name":"Microsoft.Bcl.TimeProvider","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.AmbientMetadata.Application":{"Name":"Microsoft.Extensions.AmbientMetadata.Application","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.AsyncState":{"Name":"Microsoft.Extensions.AsyncState","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.Abstractions":{"Name":"Microsoft.Extensions.Caching.Abstractions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.Hybrid":{"Name":"Microsoft.Extensions.Caching.Hybrid","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.Memory":{"Name":"Microsoft.Extensions.Caching.Memory","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.SqlServer":{"Name":"Microsoft.Extensions.Caching.SqlServer","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.StackExchangeRedis":{"Name":"Microsoft.Extensions.Caching.StackExchangeRedis","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Compliance.Abstractions":{"Name":"Microsoft.Extensions.Compliance.Abstractions","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Compliance.Redaction":{"Name":"Microsoft.Extensions.Compliance.Redaction","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Compliance.Testing":{"Name":"Microsoft.Extensions.Compliance.Testing","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration":{"Name":"Microsoft.Extensions.Configuration","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Abstractions":{"Name":"Microsoft.Extensions.Configuration.Abstractions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Binder":{"Name":"Microsoft.Extensions.Configuration.Binder","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.CommandLine":{"Name":"Microsoft.Extensions.Configuration.CommandLine","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.EnvironmentVariables":{"Name":"Microsoft.Extensions.Configuration.EnvironmentVariables","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.FileExtensions":{"Name":"Microsoft.Extensions.Configuration.FileExtensions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Ini":{"Name":"Microsoft.Extensions.Configuration.Ini","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Json":{"Name":"Microsoft.Extensions.Configuration.Json","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.KeyPerFile":{"Name":"Microsoft.Extensions.Configuration.KeyPerFile","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.UserSecrets":{"Name":"Microsoft.Extensions.Configuration.UserSecrets","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Xml":{"Name":"Microsoft.Extensions.Configuration.Xml","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyInjection":{"Name":"Microsoft.Extensions.DependencyInjection","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyInjection.Abstractions":{"Name":"Microsoft.Extensions.DependencyInjection.Abstractions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyInjection.AutoActivation":{"Name":"Microsoft.Extensions.DependencyInjection.AutoActivation","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyInjection.Specification.Tests":{"Name":"Microsoft.Extensions.DependencyInjection.Specification.Tests","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyModel":{"Name":"Microsoft.Extensions.DependencyModel","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics":{"Name":"Microsoft.Extensions.Diagnostics","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.Abstractions":{"Name":"Microsoft.Extensions.Diagnostics.Abstractions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.ExceptionSummarization":{"Name":"Microsoft.Extensions.Diagnostics.ExceptionSummarization","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.HealthChecks":{"Name":"Microsoft.Extensions.Diagnostics.HealthChecks","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions":{"Name":"Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.HealthChecks.Common":{"Name":"Microsoft.Extensions.Diagnostics.HealthChecks.Common","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization":{"Name":"Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.Probes":{"Name":"Microsoft.Extensions.Diagnostics.Probes","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.ResourceMonitoring":{"Name":"Microsoft.Extensions.Diagnostics.ResourceMonitoring","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.Testing":{"Name":"Microsoft.Extensions.Diagnostics.Testing","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileProviders.Abstractions":{"Name":"Microsoft.Extensions.FileProviders.Abstractions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileProviders.Composite":{"Name":"Microsoft.Extensions.FileProviders.Composite","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileProviders.Embedded":{"Name":"Microsoft.Extensions.FileProviders.Embedded","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileProviders.Physical":{"Name":"Microsoft.Extensions.FileProviders.Physical","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileSystemGlobbing":{"Name":"Microsoft.Extensions.FileSystemGlobbing","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting":{"Name":"Microsoft.Extensions.Hosting","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting.Abstractions":{"Name":"Microsoft.Extensions.Hosting.Abstractions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting.Testing":{"Name":"Microsoft.Extensions.Hosting.Testing","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting.WindowsServices":{"Name":"Microsoft.Extensions.Hosting.WindowsServices","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Http":{"Name":"Microsoft.Extensions.Http","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Http.Diagnostics":{"Name":"Microsoft.Extensions.Http.Diagnostics","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Http.Resilience":{"Name":"Microsoft.Extensions.Http.Resilience","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Localization":{"Name":"Microsoft.Extensions.Localization","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Localization.Abstractions":{"Name":"Microsoft.Extensions.Localization.Abstractions","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging":{"Name":"Microsoft.Extensions.Logging","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Abstractions":{"Name":"Microsoft.Extensions.Logging.Abstractions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.AzureAppServices":{"Name":"Microsoft.Extensions.Logging.AzureAppServices","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Configuration":{"Name":"Microsoft.Extensions.Logging.Configuration","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Console":{"Name":"Microsoft.Extensions.Logging.Console","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Debug":{"Name":"Microsoft.Extensions.Logging.Debug","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.EventLog":{"Name":"Microsoft.Extensions.Logging.EventLog","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.EventSource":{"Name":"Microsoft.Extensions.Logging.EventSource","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.TraceSource":{"Name":"Microsoft.Extensions.Logging.TraceSource","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.ObjectPool":{"Name":"Microsoft.Extensions.ObjectPool","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.ObjectPool.DependencyInjection":{"Name":"Microsoft.Extensions.ObjectPool.DependencyInjection","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Options":{"Name":"Microsoft.Extensions.Options","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Options.ConfigurationExtensions":{"Name":"Microsoft.Extensions.Options.ConfigurationExtensions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Options.Contextual":{"Name":"Microsoft.Extensions.Options.Contextual","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Options.DataAnnotations":{"Name":"Microsoft.Extensions.Options.DataAnnotations","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Primitives":{"Name":"Microsoft.Extensions.Primitives","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Resilience":{"Name":"Microsoft.Extensions.Resilience","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Telemetry":{"Name":"Microsoft.Extensions.Telemetry","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Telemetry.Abstractions":{"Name":"Microsoft.Extensions.Telemetry.Abstractions","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.TimeProvider.Testing":{"Name":"Microsoft.Extensions.TimeProvider.Testing","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.WebEncoders":{"Name":"Microsoft.Extensions.WebEncoders","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Win32.Registry.AccessControl":{"Name":"Microsoft.Win32.Registry.AccessControl","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Win32.SystemEvents":{"Name":"Microsoft.Win32.SystemEvents","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.CodeDom":{"Name":"System.CodeDom","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Collections.Immutable":{"Name":"System.Collections.Immutable","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.ComponentModel.TypeConverter":{"Name":"System.ComponentModel.TypeConverter","Version":"4.3.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.AttributedModel":{"Name":"System.Composition.AttributedModel","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.Convention":{"Name":"System.Composition.Convention","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.Hosting":{"Name":"System.Composition.Hosting","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.Runtime":{"Name":"System.Composition.Runtime","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.TypedParts":{"Name":"System.Composition.TypedParts","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Configuration.ConfigurationManager":{"Name":"System.Configuration.ConfigurationManager","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Data.Odbc":{"Name":"System.Data.Odbc","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Data.OleDb":{"Name":"System.Data.OleDb","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Diagnostics.DiagnosticSource":{"Name":"System.Diagnostics.DiagnosticSource","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Diagnostics.EventLog":{"Name":"System.Diagnostics.EventLog","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Diagnostics.PerformanceCounter":{"Name":"System.Diagnostics.PerformanceCounter","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Diagnostics.Tracing":{"Name":"System.Diagnostics.Tracing","Version":"4.3.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Drawing.Common":{"Name":"System.Drawing.Common","Version":"9.0.0-preview.4.24267.1","Feed":"https://api.nuget.org/v3/index.json"},"System.Formats.Asn1":{"Name":"System.Formats.Asn1","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Formats.Cbor":{"Name":"System.Formats.Cbor","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.IO":{"Name":"System.IO","Version":"4.3.0","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Hashing":{"Name":"System.IO.Hashing","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Packaging":{"Name":"System.IO.Packaging","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Pipelines":{"Name":"System.IO.Pipelines","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Ports":{"Name":"System.IO.Ports","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Memory.Data":{"Name":"System.Memory.Data","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Net.Http.Json":{"Name":"System.Net.Http.Json","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Net.Http.WinHttpHandler":{"Name":"System.Net.Http.WinHttpHandler","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Numerics.Tensors":{"Name":"System.Numerics.Tensors","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Reflection":{"Name":"System.Reflection","Version":"4.3.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Reflection.Metadata":{"Name":"System.Reflection.Metadata","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Reflection.MetadataLoadContext":{"Name":"System.Reflection.MetadataLoadContext","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Resources.Extensions":{"Name":"System.Resources.Extensions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Runtime":{"Name":"System.Runtime","Version":"4.3.1","Feed":"https://api.nuget.org/v3/index.json"},"System.Runtime.Extensions":{"Name":"System.Runtime.Extensions","Version":"4.3.1","Feed":"https://api.nuget.org/v3/index.json"},"System.Runtime.InteropServices":{"Name":"System.Runtime.InteropServices","Version":"4.3.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.Cng":{"Name":"System.Security.Cryptography.Cng","Version":"5.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.Cose":{"Name":"System.Security.Cryptography.Cose","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.Pkcs":{"Name":"System.Security.Cryptography.Pkcs","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.ProtectedData":{"Name":"System.Security.Cryptography.ProtectedData","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.Xml":{"Name":"System.Security.Cryptography.Xml","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Permissions":{"Name":"System.Security.Permissions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.ServiceModel.Syndication":{"Name":"System.ServiceModel.Syndication","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.ServiceProcess.ServiceController":{"Name":"System.ServiceProcess.ServiceController","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Text.Encoding.CodePages":{"Name":"System.Text.Encoding.CodePages","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Text.Encodings.Web":{"Name":"System.Text.Encodings.Web","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Text.Json":{"Name":"System.Text.Json","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Threading.AccessControl":{"Name":"System.Threading.AccessControl","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Threading.Channels":{"Name":"System.Threading.Channels","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Threading.Tasks.Dataflow":{"Name":"System.Threading.Tasks.Dataflow","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.ValueTuple":{"Name":"System.ValueTuple","Version":"4.5.0","Feed":"https://api.nuget.org/v3/index.json"}}} \ No newline at end of file diff --git a/xml/PackageInformation/netframework-4.8.1.json b/xml/PackageInformation/netframework-4.8.1.json index 675a114587d..d510a8cc2c9 100644 --- a/xml/PackageInformation/netframework-4.8.1.json +++ b/xml/PackageInformation/netframework-4.8.1.json @@ -1 +1 @@ -{"netframework-4.8.1":{"Microsoft.Bcl.AsyncInterfaces":{"Name":"Microsoft.Bcl.AsyncInterfaces","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Bcl.Cryptography":{"Name":"Microsoft.Bcl.Cryptography","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Bcl.Numerics":{"Name":"Microsoft.Bcl.Numerics","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Bcl.TimeProvider":{"Name":"Microsoft.Bcl.TimeProvider","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.AmbientMetadata.Application":{"Name":"Microsoft.Extensions.AmbientMetadata.Application","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.AsyncState":{"Name":"Microsoft.Extensions.AsyncState","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.Abstractions":{"Name":"Microsoft.Extensions.Caching.Abstractions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.Memory":{"Name":"Microsoft.Extensions.Caching.Memory","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.SqlServer":{"Name":"Microsoft.Extensions.Caching.SqlServer","Version":"9.0.0-preview.3.24172.13","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.StackExchangeRedis":{"Name":"Microsoft.Extensions.Caching.StackExchangeRedis","Version":"9.0.0-preview.3.24172.13","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Compliance.Abstractions":{"Name":"Microsoft.Extensions.Compliance.Abstractions","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Compliance.Redaction":{"Name":"Microsoft.Extensions.Compliance.Redaction","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Compliance.Testing":{"Name":"Microsoft.Extensions.Compliance.Testing","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration":{"Name":"Microsoft.Extensions.Configuration","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Abstractions":{"Name":"Microsoft.Extensions.Configuration.Abstractions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Binder":{"Name":"Microsoft.Extensions.Configuration.Binder","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.CommandLine":{"Name":"Microsoft.Extensions.Configuration.CommandLine","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.EnvironmentVariables":{"Name":"Microsoft.Extensions.Configuration.EnvironmentVariables","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.FileExtensions":{"Name":"Microsoft.Extensions.Configuration.FileExtensions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Ini":{"Name":"Microsoft.Extensions.Configuration.Ini","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Json":{"Name":"Microsoft.Extensions.Configuration.Json","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.KeyPerFile":{"Name":"Microsoft.Extensions.Configuration.KeyPerFile","Version":"9.0.0-preview.3.24172.13","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.UserSecrets":{"Name":"Microsoft.Extensions.Configuration.UserSecrets","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Xml":{"Name":"Microsoft.Extensions.Configuration.Xml","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyInjection":{"Name":"Microsoft.Extensions.DependencyInjection","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyInjection.Abstractions":{"Name":"Microsoft.Extensions.DependencyInjection.Abstractions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyInjection.AutoActivation":{"Name":"Microsoft.Extensions.DependencyInjection.AutoActivation","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyInjection.Specification.Tests":{"Name":"Microsoft.Extensions.DependencyInjection.Specification.Tests","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyModel":{"Name":"Microsoft.Extensions.DependencyModel","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics":{"Name":"Microsoft.Extensions.Diagnostics","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.Abstractions":{"Name":"Microsoft.Extensions.Diagnostics.Abstractions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.ExceptionSummarization":{"Name":"Microsoft.Extensions.Diagnostics.ExceptionSummarization","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.HealthChecks":{"Name":"Microsoft.Extensions.Diagnostics.HealthChecks","Version":"9.0.0-preview.3.24172.13","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions":{"Name":"Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions","Version":"9.0.0-preview.3.24172.13","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.HealthChecks.Common":{"Name":"Microsoft.Extensions.Diagnostics.HealthChecks.Common","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization":{"Name":"Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.Probes":{"Name":"Microsoft.Extensions.Diagnostics.Probes","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.ResourceMonitoring":{"Name":"Microsoft.Extensions.Diagnostics.ResourceMonitoring","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.Testing":{"Name":"Microsoft.Extensions.Diagnostics.Testing","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileProviders.Abstractions":{"Name":"Microsoft.Extensions.FileProviders.Abstractions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileProviders.Composite":{"Name":"Microsoft.Extensions.FileProviders.Composite","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileProviders.Embedded":{"Name":"Microsoft.Extensions.FileProviders.Embedded","Version":"9.0.0-preview.3.24172.13","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileProviders.Physical":{"Name":"Microsoft.Extensions.FileProviders.Physical","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileSystemGlobbing":{"Name":"Microsoft.Extensions.FileSystemGlobbing","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting":{"Name":"Microsoft.Extensions.Hosting","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting.Abstractions":{"Name":"Microsoft.Extensions.Hosting.Abstractions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting.Testing":{"Name":"Microsoft.Extensions.Hosting.Testing","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting.WindowsServices":{"Name":"Microsoft.Extensions.Hosting.WindowsServices","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Http":{"Name":"Microsoft.Extensions.Http","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Http.Diagnostics":{"Name":"Microsoft.Extensions.Http.Diagnostics","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Http.Resilience":{"Name":"Microsoft.Extensions.Http.Resilience","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Localization":{"Name":"Microsoft.Extensions.Localization","Version":"9.0.0-preview.3.24172.13","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Localization.Abstractions":{"Name":"Microsoft.Extensions.Localization.Abstractions","Version":"9.0.0-preview.3.24172.13","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging":{"Name":"Microsoft.Extensions.Logging","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Abstractions":{"Name":"Microsoft.Extensions.Logging.Abstractions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.AzureAppServices":{"Name":"Microsoft.Extensions.Logging.AzureAppServices","Version":"9.0.0-preview.3.24172.13","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Configuration":{"Name":"Microsoft.Extensions.Logging.Configuration","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Console":{"Name":"Microsoft.Extensions.Logging.Console","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Debug":{"Name":"Microsoft.Extensions.Logging.Debug","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.EventLog":{"Name":"Microsoft.Extensions.Logging.EventLog","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.EventSource":{"Name":"Microsoft.Extensions.Logging.EventSource","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.TraceSource":{"Name":"Microsoft.Extensions.Logging.TraceSource","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.ObjectPool":{"Name":"Microsoft.Extensions.ObjectPool","Version":"9.0.0-preview.3.24172.13","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.ObjectPool.DependencyInjection":{"Name":"Microsoft.Extensions.ObjectPool.DependencyInjection","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Options":{"Name":"Microsoft.Extensions.Options","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Options.ConfigurationExtensions":{"Name":"Microsoft.Extensions.Options.ConfigurationExtensions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Options.Contextual":{"Name":"Microsoft.Extensions.Options.Contextual","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Options.DataAnnotations":{"Name":"Microsoft.Extensions.Options.DataAnnotations","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Primitives":{"Name":"Microsoft.Extensions.Primitives","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Resilience":{"Name":"Microsoft.Extensions.Resilience","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Telemetry":{"Name":"Microsoft.Extensions.Telemetry","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Telemetry.Abstractions":{"Name":"Microsoft.Extensions.Telemetry.Abstractions","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.TimeProvider.Testing":{"Name":"Microsoft.Extensions.TimeProvider.Testing","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.WebEncoders":{"Name":"Microsoft.Extensions.WebEncoders","Version":"9.0.0-preview.3.24172.13","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Win32.Registry.AccessControl":{"Name":"Microsoft.Win32.Registry.AccessControl","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Win32.SystemEvents":{"Name":"Microsoft.Win32.SystemEvents","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.CodeDom":{"Name":"System.CodeDom","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Collections.Immutable":{"Name":"System.Collections.Immutable","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.ComponentModel.TypeConverter":{"Name":"System.ComponentModel.TypeConverter","Version":"4.3.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.AttributedModel":{"Name":"System.Composition.AttributedModel","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.Convention":{"Name":"System.Composition.Convention","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.Hosting":{"Name":"System.Composition.Hosting","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.Runtime":{"Name":"System.Composition.Runtime","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.TypedParts":{"Name":"System.Composition.TypedParts","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Configuration.ConfigurationManager":{"Name":"System.Configuration.ConfigurationManager","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Data.Odbc":{"Name":"System.Data.Odbc","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Data.OleDb":{"Name":"System.Data.OleDb","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Diagnostics.DiagnosticSource":{"Name":"System.Diagnostics.DiagnosticSource","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Diagnostics.EventLog":{"Name":"System.Diagnostics.EventLog","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Diagnostics.PerformanceCounter":{"Name":"System.Diagnostics.PerformanceCounter","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Diagnostics.Tracing":{"Name":"System.Diagnostics.Tracing","Version":"4.3.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Drawing.Common":{"Name":"System.Drawing.Common","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Formats.Asn1":{"Name":"System.Formats.Asn1","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Formats.Cbor":{"Name":"System.Formats.Cbor","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.IO":{"Name":"System.IO","Version":"4.3.0","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Hashing":{"Name":"System.IO.Hashing","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Packaging":{"Name":"System.IO.Packaging","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Pipelines":{"Name":"System.IO.Pipelines","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Ports":{"Name":"System.IO.Ports","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Memory.Data":{"Name":"System.Memory.Data","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Net.Http.Json":{"Name":"System.Net.Http.Json","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Net.Http.WinHttpHandler":{"Name":"System.Net.Http.WinHttpHandler","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Numerics.Tensors":{"Name":"System.Numerics.Tensors","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Reflection":{"Name":"System.Reflection","Version":"4.3.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Reflection.Metadata":{"Name":"System.Reflection.Metadata","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Reflection.MetadataLoadContext":{"Name":"System.Reflection.MetadataLoadContext","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Reflection.TypeExtensions":{"Name":"System.Reflection.TypeExtensions","Version":"4.7.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Resources.Extensions":{"Name":"System.Resources.Extensions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Runtime":{"Name":"System.Runtime","Version":"4.3.1","Feed":"https://api.nuget.org/v3/index.json"},"System.Runtime.Extensions":{"Name":"System.Runtime.Extensions","Version":"4.3.1","Feed":"https://api.nuget.org/v3/index.json"},"System.Runtime.InteropServices":{"Name":"System.Runtime.InteropServices","Version":"4.3.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.Cng":{"Name":"System.Security.Cryptography.Cng","Version":"5.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.Cose":{"Name":"System.Security.Cryptography.Cose","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.Pkcs":{"Name":"System.Security.Cryptography.Pkcs","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.ProtectedData":{"Name":"System.Security.Cryptography.ProtectedData","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.Xml":{"Name":"System.Security.Cryptography.Xml","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Permissions":{"Name":"System.Security.Permissions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.ServiceModel.Syndication":{"Name":"System.ServiceModel.Syndication","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.ServiceProcess.ServiceController":{"Name":"System.ServiceProcess.ServiceController","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Text.Encoding.CodePages":{"Name":"System.Text.Encoding.CodePages","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Text.Encodings.Web":{"Name":"System.Text.Encodings.Web","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Text.Json":{"Name":"System.Text.Json","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Threading.AccessControl":{"Name":"System.Threading.AccessControl","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Threading.Channels":{"Name":"System.Threading.Channels","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Threading.Tasks.Dataflow":{"Name":"System.Threading.Tasks.Dataflow","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.ValueTuple":{"Name":"System.ValueTuple","Version":"4.5.0","Feed":"https://api.nuget.org/v3/index.json"}}} \ No newline at end of file +{"netframework-4.8.1":{"Microsoft.Bcl.AsyncInterfaces":{"Name":"Microsoft.Bcl.AsyncInterfaces","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Bcl.Cryptography":{"Name":"Microsoft.Bcl.Cryptography","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Bcl.Numerics":{"Name":"Microsoft.Bcl.Numerics","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Bcl.TimeProvider":{"Name":"Microsoft.Bcl.TimeProvider","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.AmbientMetadata.Application":{"Name":"Microsoft.Extensions.AmbientMetadata.Application","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.AsyncState":{"Name":"Microsoft.Extensions.AsyncState","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.Abstractions":{"Name":"Microsoft.Extensions.Caching.Abstractions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.Hybrid":{"Name":"Microsoft.Extensions.Caching.Hybrid","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.Memory":{"Name":"Microsoft.Extensions.Caching.Memory","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.SqlServer":{"Name":"Microsoft.Extensions.Caching.SqlServer","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.StackExchangeRedis":{"Name":"Microsoft.Extensions.Caching.StackExchangeRedis","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Compliance.Abstractions":{"Name":"Microsoft.Extensions.Compliance.Abstractions","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Compliance.Redaction":{"Name":"Microsoft.Extensions.Compliance.Redaction","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Compliance.Testing":{"Name":"Microsoft.Extensions.Compliance.Testing","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration":{"Name":"Microsoft.Extensions.Configuration","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Abstractions":{"Name":"Microsoft.Extensions.Configuration.Abstractions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Binder":{"Name":"Microsoft.Extensions.Configuration.Binder","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.CommandLine":{"Name":"Microsoft.Extensions.Configuration.CommandLine","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.EnvironmentVariables":{"Name":"Microsoft.Extensions.Configuration.EnvironmentVariables","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.FileExtensions":{"Name":"Microsoft.Extensions.Configuration.FileExtensions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Ini":{"Name":"Microsoft.Extensions.Configuration.Ini","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Json":{"Name":"Microsoft.Extensions.Configuration.Json","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.KeyPerFile":{"Name":"Microsoft.Extensions.Configuration.KeyPerFile","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.UserSecrets":{"Name":"Microsoft.Extensions.Configuration.UserSecrets","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Xml":{"Name":"Microsoft.Extensions.Configuration.Xml","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyInjection":{"Name":"Microsoft.Extensions.DependencyInjection","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyInjection.Abstractions":{"Name":"Microsoft.Extensions.DependencyInjection.Abstractions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyInjection.AutoActivation":{"Name":"Microsoft.Extensions.DependencyInjection.AutoActivation","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyInjection.Specification.Tests":{"Name":"Microsoft.Extensions.DependencyInjection.Specification.Tests","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyModel":{"Name":"Microsoft.Extensions.DependencyModel","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics":{"Name":"Microsoft.Extensions.Diagnostics","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.Abstractions":{"Name":"Microsoft.Extensions.Diagnostics.Abstractions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.ExceptionSummarization":{"Name":"Microsoft.Extensions.Diagnostics.ExceptionSummarization","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.HealthChecks":{"Name":"Microsoft.Extensions.Diagnostics.HealthChecks","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions":{"Name":"Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.HealthChecks.Common":{"Name":"Microsoft.Extensions.Diagnostics.HealthChecks.Common","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization":{"Name":"Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.Probes":{"Name":"Microsoft.Extensions.Diagnostics.Probes","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.ResourceMonitoring":{"Name":"Microsoft.Extensions.Diagnostics.ResourceMonitoring","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.Testing":{"Name":"Microsoft.Extensions.Diagnostics.Testing","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileProviders.Abstractions":{"Name":"Microsoft.Extensions.FileProviders.Abstractions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileProviders.Composite":{"Name":"Microsoft.Extensions.FileProviders.Composite","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileProviders.Embedded":{"Name":"Microsoft.Extensions.FileProviders.Embedded","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileProviders.Physical":{"Name":"Microsoft.Extensions.FileProviders.Physical","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileSystemGlobbing":{"Name":"Microsoft.Extensions.FileSystemGlobbing","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting":{"Name":"Microsoft.Extensions.Hosting","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting.Abstractions":{"Name":"Microsoft.Extensions.Hosting.Abstractions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting.Testing":{"Name":"Microsoft.Extensions.Hosting.Testing","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting.WindowsServices":{"Name":"Microsoft.Extensions.Hosting.WindowsServices","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Http":{"Name":"Microsoft.Extensions.Http","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Http.Diagnostics":{"Name":"Microsoft.Extensions.Http.Diagnostics","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Http.Resilience":{"Name":"Microsoft.Extensions.Http.Resilience","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Localization":{"Name":"Microsoft.Extensions.Localization","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Localization.Abstractions":{"Name":"Microsoft.Extensions.Localization.Abstractions","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging":{"Name":"Microsoft.Extensions.Logging","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Abstractions":{"Name":"Microsoft.Extensions.Logging.Abstractions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.AzureAppServices":{"Name":"Microsoft.Extensions.Logging.AzureAppServices","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Configuration":{"Name":"Microsoft.Extensions.Logging.Configuration","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Console":{"Name":"Microsoft.Extensions.Logging.Console","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Debug":{"Name":"Microsoft.Extensions.Logging.Debug","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.EventLog":{"Name":"Microsoft.Extensions.Logging.EventLog","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.EventSource":{"Name":"Microsoft.Extensions.Logging.EventSource","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.TraceSource":{"Name":"Microsoft.Extensions.Logging.TraceSource","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.ObjectPool":{"Name":"Microsoft.Extensions.ObjectPool","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.ObjectPool.DependencyInjection":{"Name":"Microsoft.Extensions.ObjectPool.DependencyInjection","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Options":{"Name":"Microsoft.Extensions.Options","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Options.ConfigurationExtensions":{"Name":"Microsoft.Extensions.Options.ConfigurationExtensions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Options.Contextual":{"Name":"Microsoft.Extensions.Options.Contextual","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Options.DataAnnotations":{"Name":"Microsoft.Extensions.Options.DataAnnotations","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Primitives":{"Name":"Microsoft.Extensions.Primitives","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Resilience":{"Name":"Microsoft.Extensions.Resilience","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Telemetry":{"Name":"Microsoft.Extensions.Telemetry","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Telemetry.Abstractions":{"Name":"Microsoft.Extensions.Telemetry.Abstractions","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.TimeProvider.Testing":{"Name":"Microsoft.Extensions.TimeProvider.Testing","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.WebEncoders":{"Name":"Microsoft.Extensions.WebEncoders","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Win32.Registry.AccessControl":{"Name":"Microsoft.Win32.Registry.AccessControl","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Win32.SystemEvents":{"Name":"Microsoft.Win32.SystemEvents","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.CodeDom":{"Name":"System.CodeDom","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Collections.Immutable":{"Name":"System.Collections.Immutable","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.ComponentModel.TypeConverter":{"Name":"System.ComponentModel.TypeConverter","Version":"4.3.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.AttributedModel":{"Name":"System.Composition.AttributedModel","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.Convention":{"Name":"System.Composition.Convention","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.Hosting":{"Name":"System.Composition.Hosting","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.Runtime":{"Name":"System.Composition.Runtime","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.TypedParts":{"Name":"System.Composition.TypedParts","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Configuration.ConfigurationManager":{"Name":"System.Configuration.ConfigurationManager","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Data.Odbc":{"Name":"System.Data.Odbc","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Data.OleDb":{"Name":"System.Data.OleDb","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Diagnostics.DiagnosticSource":{"Name":"System.Diagnostics.DiagnosticSource","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Diagnostics.EventLog":{"Name":"System.Diagnostics.EventLog","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Diagnostics.PerformanceCounter":{"Name":"System.Diagnostics.PerformanceCounter","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Diagnostics.Tracing":{"Name":"System.Diagnostics.Tracing","Version":"4.3.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Drawing.Common":{"Name":"System.Drawing.Common","Version":"9.0.0-preview.4.24267.1","Feed":"https://api.nuget.org/v3/index.json"},"System.Formats.Asn1":{"Name":"System.Formats.Asn1","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Formats.Cbor":{"Name":"System.Formats.Cbor","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.IO":{"Name":"System.IO","Version":"4.3.0","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Hashing":{"Name":"System.IO.Hashing","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Packaging":{"Name":"System.IO.Packaging","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Pipelines":{"Name":"System.IO.Pipelines","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Ports":{"Name":"System.IO.Ports","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Memory.Data":{"Name":"System.Memory.Data","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Net.Http.Json":{"Name":"System.Net.Http.Json","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Net.Http.WinHttpHandler":{"Name":"System.Net.Http.WinHttpHandler","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Numerics.Tensors":{"Name":"System.Numerics.Tensors","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Reflection":{"Name":"System.Reflection","Version":"4.3.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Reflection.Metadata":{"Name":"System.Reflection.Metadata","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Reflection.MetadataLoadContext":{"Name":"System.Reflection.MetadataLoadContext","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Reflection.TypeExtensions":{"Name":"System.Reflection.TypeExtensions","Version":"4.7.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Resources.Extensions":{"Name":"System.Resources.Extensions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Runtime":{"Name":"System.Runtime","Version":"4.3.1","Feed":"https://api.nuget.org/v3/index.json"},"System.Runtime.Extensions":{"Name":"System.Runtime.Extensions","Version":"4.3.1","Feed":"https://api.nuget.org/v3/index.json"},"System.Runtime.InteropServices":{"Name":"System.Runtime.InteropServices","Version":"4.3.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.Cng":{"Name":"System.Security.Cryptography.Cng","Version":"5.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.Cose":{"Name":"System.Security.Cryptography.Cose","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.Pkcs":{"Name":"System.Security.Cryptography.Pkcs","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.ProtectedData":{"Name":"System.Security.Cryptography.ProtectedData","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.Xml":{"Name":"System.Security.Cryptography.Xml","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Permissions":{"Name":"System.Security.Permissions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.ServiceModel.Syndication":{"Name":"System.ServiceModel.Syndication","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.ServiceProcess.ServiceController":{"Name":"System.ServiceProcess.ServiceController","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Text.Encoding.CodePages":{"Name":"System.Text.Encoding.CodePages","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Text.Encodings.Web":{"Name":"System.Text.Encodings.Web","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Text.Json":{"Name":"System.Text.Json","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Threading.AccessControl":{"Name":"System.Threading.AccessControl","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Threading.Channels":{"Name":"System.Threading.Channels","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Threading.Tasks.Dataflow":{"Name":"System.Threading.Tasks.Dataflow","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.ValueTuple":{"Name":"System.ValueTuple","Version":"4.5.0","Feed":"https://api.nuget.org/v3/index.json"}}} \ No newline at end of file diff --git a/xml/PackageInformation/netframework-4.8.json b/xml/PackageInformation/netframework-4.8.json index 54a921cbf70..82a3311755d 100644 --- a/xml/PackageInformation/netframework-4.8.json +++ b/xml/PackageInformation/netframework-4.8.json @@ -1 +1 @@ -{"netframework-4.8":{"Microsoft.Bcl.AsyncInterfaces":{"Name":"Microsoft.Bcl.AsyncInterfaces","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Bcl.Cryptography":{"Name":"Microsoft.Bcl.Cryptography","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Bcl.Numerics":{"Name":"Microsoft.Bcl.Numerics","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Bcl.TimeProvider":{"Name":"Microsoft.Bcl.TimeProvider","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.AmbientMetadata.Application":{"Name":"Microsoft.Extensions.AmbientMetadata.Application","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.AsyncState":{"Name":"Microsoft.Extensions.AsyncState","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.Abstractions":{"Name":"Microsoft.Extensions.Caching.Abstractions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.Memory":{"Name":"Microsoft.Extensions.Caching.Memory","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.SqlServer":{"Name":"Microsoft.Extensions.Caching.SqlServer","Version":"9.0.0-preview.3.24172.13","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.StackExchangeRedis":{"Name":"Microsoft.Extensions.Caching.StackExchangeRedis","Version":"9.0.0-preview.3.24172.13","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Compliance.Abstractions":{"Name":"Microsoft.Extensions.Compliance.Abstractions","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Compliance.Redaction":{"Name":"Microsoft.Extensions.Compliance.Redaction","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Compliance.Testing":{"Name":"Microsoft.Extensions.Compliance.Testing","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration":{"Name":"Microsoft.Extensions.Configuration","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Abstractions":{"Name":"Microsoft.Extensions.Configuration.Abstractions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Binder":{"Name":"Microsoft.Extensions.Configuration.Binder","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.CommandLine":{"Name":"Microsoft.Extensions.Configuration.CommandLine","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.EnvironmentVariables":{"Name":"Microsoft.Extensions.Configuration.EnvironmentVariables","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.FileExtensions":{"Name":"Microsoft.Extensions.Configuration.FileExtensions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Ini":{"Name":"Microsoft.Extensions.Configuration.Ini","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Json":{"Name":"Microsoft.Extensions.Configuration.Json","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.KeyPerFile":{"Name":"Microsoft.Extensions.Configuration.KeyPerFile","Version":"9.0.0-preview.3.24172.13","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.UserSecrets":{"Name":"Microsoft.Extensions.Configuration.UserSecrets","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Xml":{"Name":"Microsoft.Extensions.Configuration.Xml","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyInjection":{"Name":"Microsoft.Extensions.DependencyInjection","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyInjection.Abstractions":{"Name":"Microsoft.Extensions.DependencyInjection.Abstractions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyInjection.AutoActivation":{"Name":"Microsoft.Extensions.DependencyInjection.AutoActivation","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyInjection.Specification.Tests":{"Name":"Microsoft.Extensions.DependencyInjection.Specification.Tests","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyModel":{"Name":"Microsoft.Extensions.DependencyModel","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics":{"Name":"Microsoft.Extensions.Diagnostics","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.Abstractions":{"Name":"Microsoft.Extensions.Diagnostics.Abstractions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.ExceptionSummarization":{"Name":"Microsoft.Extensions.Diagnostics.ExceptionSummarization","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.HealthChecks":{"Name":"Microsoft.Extensions.Diagnostics.HealthChecks","Version":"9.0.0-preview.3.24172.13","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions":{"Name":"Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions","Version":"9.0.0-preview.3.24172.13","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.HealthChecks.Common":{"Name":"Microsoft.Extensions.Diagnostics.HealthChecks.Common","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization":{"Name":"Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.Probes":{"Name":"Microsoft.Extensions.Diagnostics.Probes","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.ResourceMonitoring":{"Name":"Microsoft.Extensions.Diagnostics.ResourceMonitoring","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.Testing":{"Name":"Microsoft.Extensions.Diagnostics.Testing","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileProviders.Abstractions":{"Name":"Microsoft.Extensions.FileProviders.Abstractions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileProviders.Composite":{"Name":"Microsoft.Extensions.FileProviders.Composite","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileProviders.Embedded":{"Name":"Microsoft.Extensions.FileProviders.Embedded","Version":"9.0.0-preview.3.24172.13","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileProviders.Physical":{"Name":"Microsoft.Extensions.FileProviders.Physical","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileSystemGlobbing":{"Name":"Microsoft.Extensions.FileSystemGlobbing","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting":{"Name":"Microsoft.Extensions.Hosting","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting.Abstractions":{"Name":"Microsoft.Extensions.Hosting.Abstractions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting.Testing":{"Name":"Microsoft.Extensions.Hosting.Testing","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting.WindowsServices":{"Name":"Microsoft.Extensions.Hosting.WindowsServices","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Http":{"Name":"Microsoft.Extensions.Http","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Http.Diagnostics":{"Name":"Microsoft.Extensions.Http.Diagnostics","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Http.Resilience":{"Name":"Microsoft.Extensions.Http.Resilience","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Localization":{"Name":"Microsoft.Extensions.Localization","Version":"9.0.0-preview.3.24172.13","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Localization.Abstractions":{"Name":"Microsoft.Extensions.Localization.Abstractions","Version":"9.0.0-preview.3.24172.13","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging":{"Name":"Microsoft.Extensions.Logging","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Abstractions":{"Name":"Microsoft.Extensions.Logging.Abstractions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.AzureAppServices":{"Name":"Microsoft.Extensions.Logging.AzureAppServices","Version":"9.0.0-preview.3.24172.13","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Configuration":{"Name":"Microsoft.Extensions.Logging.Configuration","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Console":{"Name":"Microsoft.Extensions.Logging.Console","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Debug":{"Name":"Microsoft.Extensions.Logging.Debug","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.EventLog":{"Name":"Microsoft.Extensions.Logging.EventLog","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.EventSource":{"Name":"Microsoft.Extensions.Logging.EventSource","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.TraceSource":{"Name":"Microsoft.Extensions.Logging.TraceSource","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.ObjectPool":{"Name":"Microsoft.Extensions.ObjectPool","Version":"9.0.0-preview.3.24172.13","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.ObjectPool.DependencyInjection":{"Name":"Microsoft.Extensions.ObjectPool.DependencyInjection","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Options":{"Name":"Microsoft.Extensions.Options","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Options.ConfigurationExtensions":{"Name":"Microsoft.Extensions.Options.ConfigurationExtensions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Options.Contextual":{"Name":"Microsoft.Extensions.Options.Contextual","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Options.DataAnnotations":{"Name":"Microsoft.Extensions.Options.DataAnnotations","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Primitives":{"Name":"Microsoft.Extensions.Primitives","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Resilience":{"Name":"Microsoft.Extensions.Resilience","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Telemetry":{"Name":"Microsoft.Extensions.Telemetry","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Telemetry.Abstractions":{"Name":"Microsoft.Extensions.Telemetry.Abstractions","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.TimeProvider.Testing":{"Name":"Microsoft.Extensions.TimeProvider.Testing","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.WebEncoders":{"Name":"Microsoft.Extensions.WebEncoders","Version":"9.0.0-preview.3.24172.13","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Win32.Registry.AccessControl":{"Name":"Microsoft.Win32.Registry.AccessControl","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Win32.SystemEvents":{"Name":"Microsoft.Win32.SystemEvents","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.CodeDom":{"Name":"System.CodeDom","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Collections.Immutable":{"Name":"System.Collections.Immutable","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.ComponentModel.TypeConverter":{"Name":"System.ComponentModel.TypeConverter","Version":"4.3.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.AttributedModel":{"Name":"System.Composition.AttributedModel","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.Convention":{"Name":"System.Composition.Convention","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.Hosting":{"Name":"System.Composition.Hosting","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.Runtime":{"Name":"System.Composition.Runtime","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.TypedParts":{"Name":"System.Composition.TypedParts","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Configuration.ConfigurationManager":{"Name":"System.Configuration.ConfigurationManager","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Data.Odbc":{"Name":"System.Data.Odbc","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Data.OleDb":{"Name":"System.Data.OleDb","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Diagnostics.DiagnosticSource":{"Name":"System.Diagnostics.DiagnosticSource","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Diagnostics.EventLog":{"Name":"System.Diagnostics.EventLog","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Diagnostics.PerformanceCounter":{"Name":"System.Diagnostics.PerformanceCounter","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Diagnostics.Tracing":{"Name":"System.Diagnostics.Tracing","Version":"4.3.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Drawing.Common":{"Name":"System.Drawing.Common","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Formats.Asn1":{"Name":"System.Formats.Asn1","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Formats.Cbor":{"Name":"System.Formats.Cbor","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.IO":{"Name":"System.IO","Version":"4.3.0","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Hashing":{"Name":"System.IO.Hashing","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Packaging":{"Name":"System.IO.Packaging","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Pipelines":{"Name":"System.IO.Pipelines","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Ports":{"Name":"System.IO.Ports","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Memory.Data":{"Name":"System.Memory.Data","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Net.Http.Json":{"Name":"System.Net.Http.Json","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Net.Http.WinHttpHandler":{"Name":"System.Net.Http.WinHttpHandler","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Numerics.Tensors":{"Name":"System.Numerics.Tensors","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Reflection":{"Name":"System.Reflection","Version":"4.3.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Reflection.Metadata":{"Name":"System.Reflection.Metadata","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Reflection.MetadataLoadContext":{"Name":"System.Reflection.MetadataLoadContext","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Reflection.TypeExtensions":{"Name":"System.Reflection.TypeExtensions","Version":"4.7.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Resources.Extensions":{"Name":"System.Resources.Extensions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Runtime":{"Name":"System.Runtime","Version":"4.3.1","Feed":"https://api.nuget.org/v3/index.json"},"System.Runtime.Extensions":{"Name":"System.Runtime.Extensions","Version":"4.3.1","Feed":"https://api.nuget.org/v3/index.json"},"System.Runtime.InteropServices":{"Name":"System.Runtime.InteropServices","Version":"4.3.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.Cng":{"Name":"System.Security.Cryptography.Cng","Version":"5.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.Cose":{"Name":"System.Security.Cryptography.Cose","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.Pkcs":{"Name":"System.Security.Cryptography.Pkcs","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.ProtectedData":{"Name":"System.Security.Cryptography.ProtectedData","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.Xml":{"Name":"System.Security.Cryptography.Xml","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Permissions":{"Name":"System.Security.Permissions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.ServiceModel.Syndication":{"Name":"System.ServiceModel.Syndication","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.ServiceProcess.ServiceController":{"Name":"System.ServiceProcess.ServiceController","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Text.Encoding.CodePages":{"Name":"System.Text.Encoding.CodePages","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Text.Encodings.Web":{"Name":"System.Text.Encodings.Web","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Text.Json":{"Name":"System.Text.Json","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Threading.AccessControl":{"Name":"System.Threading.AccessControl","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Threading.Channels":{"Name":"System.Threading.Channels","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Threading.Tasks.Dataflow":{"Name":"System.Threading.Tasks.Dataflow","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.ValueTuple":{"Name":"System.ValueTuple","Version":"4.5.0","Feed":"https://api.nuget.org/v3/index.json"}}} \ No newline at end of file +{"netframework-4.8":{"Microsoft.Bcl.AsyncInterfaces":{"Name":"Microsoft.Bcl.AsyncInterfaces","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Bcl.Cryptography":{"Name":"Microsoft.Bcl.Cryptography","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Bcl.Numerics":{"Name":"Microsoft.Bcl.Numerics","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Bcl.TimeProvider":{"Name":"Microsoft.Bcl.TimeProvider","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.AmbientMetadata.Application":{"Name":"Microsoft.Extensions.AmbientMetadata.Application","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.AsyncState":{"Name":"Microsoft.Extensions.AsyncState","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.Abstractions":{"Name":"Microsoft.Extensions.Caching.Abstractions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.Hybrid":{"Name":"Microsoft.Extensions.Caching.Hybrid","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.Memory":{"Name":"Microsoft.Extensions.Caching.Memory","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.SqlServer":{"Name":"Microsoft.Extensions.Caching.SqlServer","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.StackExchangeRedis":{"Name":"Microsoft.Extensions.Caching.StackExchangeRedis","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Compliance.Abstractions":{"Name":"Microsoft.Extensions.Compliance.Abstractions","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Compliance.Redaction":{"Name":"Microsoft.Extensions.Compliance.Redaction","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Compliance.Testing":{"Name":"Microsoft.Extensions.Compliance.Testing","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration":{"Name":"Microsoft.Extensions.Configuration","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Abstractions":{"Name":"Microsoft.Extensions.Configuration.Abstractions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Binder":{"Name":"Microsoft.Extensions.Configuration.Binder","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.CommandLine":{"Name":"Microsoft.Extensions.Configuration.CommandLine","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.EnvironmentVariables":{"Name":"Microsoft.Extensions.Configuration.EnvironmentVariables","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.FileExtensions":{"Name":"Microsoft.Extensions.Configuration.FileExtensions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Ini":{"Name":"Microsoft.Extensions.Configuration.Ini","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Json":{"Name":"Microsoft.Extensions.Configuration.Json","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.KeyPerFile":{"Name":"Microsoft.Extensions.Configuration.KeyPerFile","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.UserSecrets":{"Name":"Microsoft.Extensions.Configuration.UserSecrets","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Xml":{"Name":"Microsoft.Extensions.Configuration.Xml","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyInjection":{"Name":"Microsoft.Extensions.DependencyInjection","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyInjection.Abstractions":{"Name":"Microsoft.Extensions.DependencyInjection.Abstractions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyInjection.AutoActivation":{"Name":"Microsoft.Extensions.DependencyInjection.AutoActivation","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyInjection.Specification.Tests":{"Name":"Microsoft.Extensions.DependencyInjection.Specification.Tests","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyModel":{"Name":"Microsoft.Extensions.DependencyModel","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics":{"Name":"Microsoft.Extensions.Diagnostics","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.Abstractions":{"Name":"Microsoft.Extensions.Diagnostics.Abstractions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.ExceptionSummarization":{"Name":"Microsoft.Extensions.Diagnostics.ExceptionSummarization","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.HealthChecks":{"Name":"Microsoft.Extensions.Diagnostics.HealthChecks","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions":{"Name":"Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.HealthChecks.Common":{"Name":"Microsoft.Extensions.Diagnostics.HealthChecks.Common","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization":{"Name":"Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.Probes":{"Name":"Microsoft.Extensions.Diagnostics.Probes","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.ResourceMonitoring":{"Name":"Microsoft.Extensions.Diagnostics.ResourceMonitoring","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.Testing":{"Name":"Microsoft.Extensions.Diagnostics.Testing","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileProviders.Abstractions":{"Name":"Microsoft.Extensions.FileProviders.Abstractions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileProviders.Composite":{"Name":"Microsoft.Extensions.FileProviders.Composite","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileProviders.Embedded":{"Name":"Microsoft.Extensions.FileProviders.Embedded","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileProviders.Physical":{"Name":"Microsoft.Extensions.FileProviders.Physical","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileSystemGlobbing":{"Name":"Microsoft.Extensions.FileSystemGlobbing","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting":{"Name":"Microsoft.Extensions.Hosting","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting.Abstractions":{"Name":"Microsoft.Extensions.Hosting.Abstractions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting.Testing":{"Name":"Microsoft.Extensions.Hosting.Testing","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting.WindowsServices":{"Name":"Microsoft.Extensions.Hosting.WindowsServices","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Http":{"Name":"Microsoft.Extensions.Http","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Http.Diagnostics":{"Name":"Microsoft.Extensions.Http.Diagnostics","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Http.Resilience":{"Name":"Microsoft.Extensions.Http.Resilience","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Localization":{"Name":"Microsoft.Extensions.Localization","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Localization.Abstractions":{"Name":"Microsoft.Extensions.Localization.Abstractions","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging":{"Name":"Microsoft.Extensions.Logging","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Abstractions":{"Name":"Microsoft.Extensions.Logging.Abstractions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.AzureAppServices":{"Name":"Microsoft.Extensions.Logging.AzureAppServices","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Configuration":{"Name":"Microsoft.Extensions.Logging.Configuration","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Console":{"Name":"Microsoft.Extensions.Logging.Console","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Debug":{"Name":"Microsoft.Extensions.Logging.Debug","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.EventLog":{"Name":"Microsoft.Extensions.Logging.EventLog","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.EventSource":{"Name":"Microsoft.Extensions.Logging.EventSource","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.TraceSource":{"Name":"Microsoft.Extensions.Logging.TraceSource","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.ObjectPool":{"Name":"Microsoft.Extensions.ObjectPool","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.ObjectPool.DependencyInjection":{"Name":"Microsoft.Extensions.ObjectPool.DependencyInjection","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Options":{"Name":"Microsoft.Extensions.Options","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Options.ConfigurationExtensions":{"Name":"Microsoft.Extensions.Options.ConfigurationExtensions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Options.Contextual":{"Name":"Microsoft.Extensions.Options.Contextual","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Options.DataAnnotations":{"Name":"Microsoft.Extensions.Options.DataAnnotations","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Primitives":{"Name":"Microsoft.Extensions.Primitives","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Resilience":{"Name":"Microsoft.Extensions.Resilience","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Telemetry":{"Name":"Microsoft.Extensions.Telemetry","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Telemetry.Abstractions":{"Name":"Microsoft.Extensions.Telemetry.Abstractions","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.TimeProvider.Testing":{"Name":"Microsoft.Extensions.TimeProvider.Testing","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.WebEncoders":{"Name":"Microsoft.Extensions.WebEncoders","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Win32.Registry.AccessControl":{"Name":"Microsoft.Win32.Registry.AccessControl","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Win32.SystemEvents":{"Name":"Microsoft.Win32.SystemEvents","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.CodeDom":{"Name":"System.CodeDom","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Collections.Immutable":{"Name":"System.Collections.Immutable","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.ComponentModel.TypeConverter":{"Name":"System.ComponentModel.TypeConverter","Version":"4.3.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.AttributedModel":{"Name":"System.Composition.AttributedModel","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.Convention":{"Name":"System.Composition.Convention","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.Hosting":{"Name":"System.Composition.Hosting","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.Runtime":{"Name":"System.Composition.Runtime","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.TypedParts":{"Name":"System.Composition.TypedParts","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Configuration.ConfigurationManager":{"Name":"System.Configuration.ConfigurationManager","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Data.Odbc":{"Name":"System.Data.Odbc","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Data.OleDb":{"Name":"System.Data.OleDb","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Diagnostics.DiagnosticSource":{"Name":"System.Diagnostics.DiagnosticSource","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Diagnostics.EventLog":{"Name":"System.Diagnostics.EventLog","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Diagnostics.PerformanceCounter":{"Name":"System.Diagnostics.PerformanceCounter","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Diagnostics.Tracing":{"Name":"System.Diagnostics.Tracing","Version":"4.3.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Drawing.Common":{"Name":"System.Drawing.Common","Version":"9.0.0-preview.4.24267.1","Feed":"https://api.nuget.org/v3/index.json"},"System.Formats.Asn1":{"Name":"System.Formats.Asn1","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Formats.Cbor":{"Name":"System.Formats.Cbor","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.IO":{"Name":"System.IO","Version":"4.3.0","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Hashing":{"Name":"System.IO.Hashing","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Packaging":{"Name":"System.IO.Packaging","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Pipelines":{"Name":"System.IO.Pipelines","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Ports":{"Name":"System.IO.Ports","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Memory.Data":{"Name":"System.Memory.Data","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Net.Http.Json":{"Name":"System.Net.Http.Json","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Net.Http.WinHttpHandler":{"Name":"System.Net.Http.WinHttpHandler","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Numerics.Tensors":{"Name":"System.Numerics.Tensors","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Reflection":{"Name":"System.Reflection","Version":"4.3.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Reflection.Metadata":{"Name":"System.Reflection.Metadata","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Reflection.MetadataLoadContext":{"Name":"System.Reflection.MetadataLoadContext","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Reflection.TypeExtensions":{"Name":"System.Reflection.TypeExtensions","Version":"4.7.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Resources.Extensions":{"Name":"System.Resources.Extensions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Runtime":{"Name":"System.Runtime","Version":"4.3.1","Feed":"https://api.nuget.org/v3/index.json"},"System.Runtime.Extensions":{"Name":"System.Runtime.Extensions","Version":"4.3.1","Feed":"https://api.nuget.org/v3/index.json"},"System.Runtime.InteropServices":{"Name":"System.Runtime.InteropServices","Version":"4.3.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.Cng":{"Name":"System.Security.Cryptography.Cng","Version":"5.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.Cose":{"Name":"System.Security.Cryptography.Cose","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.Pkcs":{"Name":"System.Security.Cryptography.Pkcs","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.ProtectedData":{"Name":"System.Security.Cryptography.ProtectedData","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.Xml":{"Name":"System.Security.Cryptography.Xml","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Permissions":{"Name":"System.Security.Permissions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.ServiceModel.Syndication":{"Name":"System.ServiceModel.Syndication","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.ServiceProcess.ServiceController":{"Name":"System.ServiceProcess.ServiceController","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Text.Encoding.CodePages":{"Name":"System.Text.Encoding.CodePages","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Text.Encodings.Web":{"Name":"System.Text.Encodings.Web","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Text.Json":{"Name":"System.Text.Json","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Threading.AccessControl":{"Name":"System.Threading.AccessControl","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Threading.Channels":{"Name":"System.Threading.Channels","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Threading.Tasks.Dataflow":{"Name":"System.Threading.Tasks.Dataflow","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.ValueTuple":{"Name":"System.ValueTuple","Version":"4.5.0","Feed":"https://api.nuget.org/v3/index.json"}}} \ No newline at end of file diff --git a/xml/PackageInformation/netstandard-2.0.json b/xml/PackageInformation/netstandard-2.0.json index 94a2bc982b6..a257eb0008c 100644 --- a/xml/PackageInformation/netstandard-2.0.json +++ b/xml/PackageInformation/netstandard-2.0.json @@ -1 +1 @@ -{"netstandard-2.0":{"Microsoft.Bcl.AsyncInterfaces":{"Name":"Microsoft.Bcl.AsyncInterfaces","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Bcl.Cryptography":{"Name":"Microsoft.Bcl.Cryptography","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Bcl.HashCode":{"Name":"Microsoft.Bcl.HashCode","Version":"1.1.1","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Bcl.Numerics":{"Name":"Microsoft.Bcl.Numerics","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Bcl.TimeProvider":{"Name":"Microsoft.Bcl.TimeProvider","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.AuditReports":{"Name":"Microsoft.Extensions.AuditReports","Version":"9.0.0-preview.3.24209.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.Abstractions":{"Name":"Microsoft.Extensions.Caching.Abstractions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.Memory":{"Name":"Microsoft.Extensions.Caching.Memory","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.Redis":{"Name":"Microsoft.Extensions.Caching.Redis","Version":"2.2.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.SqlServer":{"Name":"Microsoft.Extensions.Caching.SqlServer","Version":"9.0.0-preview.3.24172.13","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.StackExchangeRedis":{"Name":"Microsoft.Extensions.Caching.StackExchangeRedis","Version":"9.0.0-preview.3.24172.13","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration":{"Name":"Microsoft.Extensions.Configuration","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Abstractions":{"Name":"Microsoft.Extensions.Configuration.Abstractions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.AzureKeyVault":{"Name":"Microsoft.Extensions.Configuration.AzureKeyVault","Version":"3.1.24","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Binder":{"Name":"Microsoft.Extensions.Configuration.Binder","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.CommandLine":{"Name":"Microsoft.Extensions.Configuration.CommandLine","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.EnvironmentVariables":{"Name":"Microsoft.Extensions.Configuration.EnvironmentVariables","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.FileExtensions":{"Name":"Microsoft.Extensions.Configuration.FileExtensions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Ini":{"Name":"Microsoft.Extensions.Configuration.Ini","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Json":{"Name":"Microsoft.Extensions.Configuration.Json","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.KeyPerFile":{"Name":"Microsoft.Extensions.Configuration.KeyPerFile","Version":"9.0.0-preview.3.24172.13","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.NewtonsoftJson":{"Name":"Microsoft.Extensions.Configuration.NewtonsoftJson","Version":"5.0.1","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.UserSecrets":{"Name":"Microsoft.Extensions.Configuration.UserSecrets","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Xml":{"Name":"Microsoft.Extensions.Configuration.Xml","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyInjection":{"Name":"Microsoft.Extensions.DependencyInjection","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyInjection.Abstractions":{"Name":"Microsoft.Extensions.DependencyInjection.Abstractions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyInjection.Specification.Tests":{"Name":"Microsoft.Extensions.DependencyInjection.Specification.Tests","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyModel":{"Name":"Microsoft.Extensions.DependencyModel","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DiagnosticAdapter":{"Name":"Microsoft.Extensions.DiagnosticAdapter","Version":"3.1.32","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics":{"Name":"Microsoft.Extensions.Diagnostics","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.Abstractions":{"Name":"Microsoft.Extensions.Diagnostics.Abstractions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.HealthChecks":{"Name":"Microsoft.Extensions.Diagnostics.HealthChecks","Version":"9.0.0-preview.3.24172.13","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions":{"Name":"Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions","Version":"9.0.0-preview.3.24172.13","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileProviders.Abstractions":{"Name":"Microsoft.Extensions.FileProviders.Abstractions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileProviders.Composite":{"Name":"Microsoft.Extensions.FileProviders.Composite","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileProviders.Embedded":{"Name":"Microsoft.Extensions.FileProviders.Embedded","Version":"9.0.0-preview.3.24172.13","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileProviders.Physical":{"Name":"Microsoft.Extensions.FileProviders.Physical","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileSystemGlobbing":{"Name":"Microsoft.Extensions.FileSystemGlobbing","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting":{"Name":"Microsoft.Extensions.Hosting","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting.Abstractions":{"Name":"Microsoft.Extensions.Hosting.Abstractions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting.WindowsServices":{"Name":"Microsoft.Extensions.Hosting.WindowsServices","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Http":{"Name":"Microsoft.Extensions.Http","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Http.Polly":{"Name":"Microsoft.Extensions.Http.Polly","Version":"9.0.0-preview.3.24172.13","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Localization":{"Name":"Microsoft.Extensions.Localization","Version":"9.0.0-preview.3.24172.13","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Localization.Abstractions":{"Name":"Microsoft.Extensions.Localization.Abstractions","Version":"9.0.0-preview.3.24172.13","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging":{"Name":"Microsoft.Extensions.Logging","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Abstractions":{"Name":"Microsoft.Extensions.Logging.Abstractions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.AzureAppServices":{"Name":"Microsoft.Extensions.Logging.AzureAppServices","Version":"9.0.0-preview.3.24172.13","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Configuration":{"Name":"Microsoft.Extensions.Logging.Configuration","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Console":{"Name":"Microsoft.Extensions.Logging.Console","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Debug":{"Name":"Microsoft.Extensions.Logging.Debug","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.EventLog":{"Name":"Microsoft.Extensions.Logging.EventLog","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.EventSource":{"Name":"Microsoft.Extensions.Logging.EventSource","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.TraceSource":{"Name":"Microsoft.Extensions.Logging.TraceSource","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.ObjectPool":{"Name":"Microsoft.Extensions.ObjectPool","Version":"9.0.0-preview.3.24172.13","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Options":{"Name":"Microsoft.Extensions.Options","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Options.ConfigurationExtensions":{"Name":"Microsoft.Extensions.Options.ConfigurationExtensions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Options.DataAnnotations":{"Name":"Microsoft.Extensions.Options.DataAnnotations","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Primitives":{"Name":"Microsoft.Extensions.Primitives","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.WebEncoders":{"Name":"Microsoft.Extensions.WebEncoders","Version":"9.0.0-preview.3.24172.13","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Win32.Registry":{"Name":"Microsoft.Win32.Registry","Version":"5.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Win32.Registry.AccessControl":{"Name":"Microsoft.Win32.Registry.AccessControl","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Win32.SystemEvents":{"Name":"Microsoft.Win32.SystemEvents","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Buffers":{"Name":"System.Buffers","Version":"4.5.1","Feed":"https://api.nuget.org/v3/index.json"},"System.CodeDom":{"Name":"System.CodeDom","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Collections.Immutable":{"Name":"System.Collections.Immutable","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.ComponentModel.Annotations":{"Name":"System.ComponentModel.Annotations","Version":"5.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.ComponentModel.Composition":{"Name":"System.ComponentModel.Composition","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.AttributedModel":{"Name":"System.Composition.AttributedModel","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.Convention":{"Name":"System.Composition.Convention","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.Hosting":{"Name":"System.Composition.Hosting","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.Runtime":{"Name":"System.Composition.Runtime","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.TypedParts":{"Name":"System.Composition.TypedParts","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Configuration.ConfigurationManager":{"Name":"System.Configuration.ConfigurationManager","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Data.DataSetExtensions":{"Name":"System.Data.DataSetExtensions","Version":"4.5.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Data.Odbc":{"Name":"System.Data.Odbc","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Data.OleDb":{"Name":"System.Data.OleDb","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Data.SqlClient":{"Name":"System.Data.SqlClient","Version":"4.8.6","Feed":"https://api.nuget.org/v3/index.json"},"System.Diagnostics.DiagnosticSource":{"Name":"System.Diagnostics.DiagnosticSource","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Diagnostics.EventLog":{"Name":"System.Diagnostics.EventLog","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Diagnostics.PerformanceCounter":{"Name":"System.Diagnostics.PerformanceCounter","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.DirectoryServices":{"Name":"System.DirectoryServices","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.DirectoryServices.AccountManagement":{"Name":"System.DirectoryServices.AccountManagement","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.DirectoryServices.Protocols":{"Name":"System.DirectoryServices.Protocols","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Drawing.Common":{"Name":"System.Drawing.Common","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Formats.Asn1":{"Name":"System.Formats.Asn1","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Formats.Cbor":{"Name":"System.Formats.Cbor","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.FileSystem.AccessControl":{"Name":"System.IO.FileSystem.AccessControl","Version":"5.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Hashing":{"Name":"System.IO.Hashing","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Packaging":{"Name":"System.IO.Packaging","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Pipelines":{"Name":"System.IO.Pipelines","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Pipes.AccessControl":{"Name":"System.IO.Pipes.AccessControl","Version":"5.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Ports":{"Name":"System.IO.Ports","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Json":{"Name":"System.Json","Version":"4.7.1","Feed":"https://api.nuget.org/v3/index.json"},"System.Management":{"Name":"System.Management","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Memory":{"Name":"System.Memory","Version":"4.5.5","Feed":"https://api.nuget.org/v3/index.json"},"System.Memory.Data":{"Name":"System.Memory.Data","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Net.Http.Json":{"Name":"System.Net.Http.Json","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Net.Http.WinHttpHandler":{"Name":"System.Net.Http.WinHttpHandler","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Net.WebSockets.WebSocketProtocol":{"Name":"System.Net.WebSockets.WebSocketProtocol","Version":"5.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Numerics.Tensors":{"Name":"System.Numerics.Tensors","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Numerics.Vectors":{"Name":"System.Numerics.Vectors","Version":"4.5.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Private.ServiceModel":{"Name":"System.Private.ServiceModel","Version":"4.10.3","Feed":"https://api.nuget.org/v3/index.json"},"System.Reflection.Context":{"Name":"System.Reflection.Context","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Reflection.DispatchProxy":{"Name":"System.Reflection.DispatchProxy","Version":"4.7.1","Feed":"https://api.nuget.org/v3/index.json"},"System.Reflection.Emit":{"Name":"System.Reflection.Emit","Version":"4.7.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Reflection.Emit.ILGeneration":{"Name":"System.Reflection.Emit.ILGeneration","Version":"4.7.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Reflection.Emit.Lightweight":{"Name":"System.Reflection.Emit.Lightweight","Version":"4.7.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Reflection.Metadata":{"Name":"System.Reflection.Metadata","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Reflection.MetadataLoadContext":{"Name":"System.Reflection.MetadataLoadContext","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Reflection.TypeExtensions":{"Name":"System.Reflection.TypeExtensions","Version":"4.7.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Resources.Extensions":{"Name":"System.Resources.Extensions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Runtime.Caching":{"Name":"System.Runtime.Caching","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Runtime.CompilerServices.Unsafe":{"Name":"System.Runtime.CompilerServices.Unsafe","Version":"6.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.AccessControl":{"Name":"System.Security.AccessControl","Version":"6.0.1","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.Cng":{"Name":"System.Security.Cryptography.Cng","Version":"5.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.Cose":{"Name":"System.Security.Cryptography.Cose","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.OpenSsl":{"Name":"System.Security.Cryptography.OpenSsl","Version":"5.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.Pkcs":{"Name":"System.Security.Cryptography.Pkcs","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.ProtectedData":{"Name":"System.Security.Cryptography.ProtectedData","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.Xml":{"Name":"System.Security.Cryptography.Xml","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Permissions":{"Name":"System.Security.Permissions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Principal.Windows":{"Name":"System.Security.Principal.Windows","Version":"5.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.ServiceModel.Syndication":{"Name":"System.ServiceModel.Syndication","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.ServiceProcess.ServiceController":{"Name":"System.ServiceProcess.ServiceController","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Speech":{"Name":"System.Speech","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Text.Encoding.CodePages":{"Name":"System.Text.Encoding.CodePages","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Text.Encodings.Web":{"Name":"System.Text.Encodings.Web","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Text.Json":{"Name":"System.Text.Json","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Threading.AccessControl":{"Name":"System.Threading.AccessControl","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Threading.Channels":{"Name":"System.Threading.Channels","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Threading.Tasks.Dataflow":{"Name":"System.Threading.Tasks.Dataflow","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Threading.Tasks.Extensions":{"Name":"System.Threading.Tasks.Extensions","Version":"4.5.4","Feed":"https://api.nuget.org/v3/index.json"},"System.Web.Services.Description":{"Name":"System.Web.Services.Description","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"}}} \ No newline at end of file +{"netstandard-2.0":{"Microsoft.Bcl.AsyncInterfaces":{"Name":"Microsoft.Bcl.AsyncInterfaces","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Bcl.Cryptography":{"Name":"Microsoft.Bcl.Cryptography","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Bcl.HashCode":{"Name":"Microsoft.Bcl.HashCode","Version":"1.1.1","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Bcl.Numerics":{"Name":"Microsoft.Bcl.Numerics","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Bcl.TimeProvider":{"Name":"Microsoft.Bcl.TimeProvider","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.AuditReports":{"Name":"Microsoft.Extensions.AuditReports","Version":"9.0.0-preview.4.24271.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.Abstractions":{"Name":"Microsoft.Extensions.Caching.Abstractions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.Hybrid":{"Name":"Microsoft.Extensions.Caching.Hybrid","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.Memory":{"Name":"Microsoft.Extensions.Caching.Memory","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.SqlServer":{"Name":"Microsoft.Extensions.Caching.SqlServer","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.StackExchangeRedis":{"Name":"Microsoft.Extensions.Caching.StackExchangeRedis","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration":{"Name":"Microsoft.Extensions.Configuration","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Abstractions":{"Name":"Microsoft.Extensions.Configuration.Abstractions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Binder":{"Name":"Microsoft.Extensions.Configuration.Binder","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.CommandLine":{"Name":"Microsoft.Extensions.Configuration.CommandLine","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.EnvironmentVariables":{"Name":"Microsoft.Extensions.Configuration.EnvironmentVariables","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.FileExtensions":{"Name":"Microsoft.Extensions.Configuration.FileExtensions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Ini":{"Name":"Microsoft.Extensions.Configuration.Ini","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Json":{"Name":"Microsoft.Extensions.Configuration.Json","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.KeyPerFile":{"Name":"Microsoft.Extensions.Configuration.KeyPerFile","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.UserSecrets":{"Name":"Microsoft.Extensions.Configuration.UserSecrets","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Xml":{"Name":"Microsoft.Extensions.Configuration.Xml","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyInjection":{"Name":"Microsoft.Extensions.DependencyInjection","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyInjection.Abstractions":{"Name":"Microsoft.Extensions.DependencyInjection.Abstractions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyInjection.Specification.Tests":{"Name":"Microsoft.Extensions.DependencyInjection.Specification.Tests","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyModel":{"Name":"Microsoft.Extensions.DependencyModel","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DiagnosticAdapter":{"Name":"Microsoft.Extensions.DiagnosticAdapter","Version":"3.1.32","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics":{"Name":"Microsoft.Extensions.Diagnostics","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.Abstractions":{"Name":"Microsoft.Extensions.Diagnostics.Abstractions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.HealthChecks":{"Name":"Microsoft.Extensions.Diagnostics.HealthChecks","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions":{"Name":"Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileProviders.Abstractions":{"Name":"Microsoft.Extensions.FileProviders.Abstractions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileProviders.Composite":{"Name":"Microsoft.Extensions.FileProviders.Composite","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileProviders.Embedded":{"Name":"Microsoft.Extensions.FileProviders.Embedded","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileProviders.Physical":{"Name":"Microsoft.Extensions.FileProviders.Physical","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.FileSystemGlobbing":{"Name":"Microsoft.Extensions.FileSystemGlobbing","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting":{"Name":"Microsoft.Extensions.Hosting","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting.Abstractions":{"Name":"Microsoft.Extensions.Hosting.Abstractions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting.WindowsServices":{"Name":"Microsoft.Extensions.Hosting.WindowsServices","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Http":{"Name":"Microsoft.Extensions.Http","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Http.Polly":{"Name":"Microsoft.Extensions.Http.Polly","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Localization":{"Name":"Microsoft.Extensions.Localization","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Localization.Abstractions":{"Name":"Microsoft.Extensions.Localization.Abstractions","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging":{"Name":"Microsoft.Extensions.Logging","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Abstractions":{"Name":"Microsoft.Extensions.Logging.Abstractions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.AzureAppServices":{"Name":"Microsoft.Extensions.Logging.AzureAppServices","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Configuration":{"Name":"Microsoft.Extensions.Logging.Configuration","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Console":{"Name":"Microsoft.Extensions.Logging.Console","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.Debug":{"Name":"Microsoft.Extensions.Logging.Debug","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.EventLog":{"Name":"Microsoft.Extensions.Logging.EventLog","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.EventSource":{"Name":"Microsoft.Extensions.Logging.EventSource","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging.TraceSource":{"Name":"Microsoft.Extensions.Logging.TraceSource","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.ObjectPool":{"Name":"Microsoft.Extensions.ObjectPool","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Options":{"Name":"Microsoft.Extensions.Options","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Options.ConfigurationExtensions":{"Name":"Microsoft.Extensions.Options.ConfigurationExtensions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Options.DataAnnotations":{"Name":"Microsoft.Extensions.Options.DataAnnotations","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Primitives":{"Name":"Microsoft.Extensions.Primitives","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.WebEncoders":{"Name":"Microsoft.Extensions.WebEncoders","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Win32.Registry":{"Name":"Microsoft.Win32.Registry","Version":"5.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Win32.Registry.AccessControl":{"Name":"Microsoft.Win32.Registry.AccessControl","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Win32.SystemEvents":{"Name":"Microsoft.Win32.SystemEvents","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Buffers":{"Name":"System.Buffers","Version":"4.5.1","Feed":"https://api.nuget.org/v3/index.json"},"System.CodeDom":{"Name":"System.CodeDom","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Collections.Immutable":{"Name":"System.Collections.Immutable","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.ComponentModel.Annotations":{"Name":"System.ComponentModel.Annotations","Version":"5.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.ComponentModel.Composition":{"Name":"System.ComponentModel.Composition","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.AttributedModel":{"Name":"System.Composition.AttributedModel","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.Convention":{"Name":"System.Composition.Convention","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.Hosting":{"Name":"System.Composition.Hosting","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.Runtime":{"Name":"System.Composition.Runtime","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Composition.TypedParts":{"Name":"System.Composition.TypedParts","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Configuration.ConfigurationManager":{"Name":"System.Configuration.ConfigurationManager","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Data.DataSetExtensions":{"Name":"System.Data.DataSetExtensions","Version":"4.5.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Data.Odbc":{"Name":"System.Data.Odbc","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Data.OleDb":{"Name":"System.Data.OleDb","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Data.SqlClient":{"Name":"System.Data.SqlClient","Version":"4.8.6","Feed":"https://api.nuget.org/v3/index.json"},"System.Diagnostics.DiagnosticSource":{"Name":"System.Diagnostics.DiagnosticSource","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Diagnostics.EventLog":{"Name":"System.Diagnostics.EventLog","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Diagnostics.PerformanceCounter":{"Name":"System.Diagnostics.PerformanceCounter","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.DirectoryServices":{"Name":"System.DirectoryServices","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.DirectoryServices.AccountManagement":{"Name":"System.DirectoryServices.AccountManagement","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.DirectoryServices.Protocols":{"Name":"System.DirectoryServices.Protocols","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Drawing.Common":{"Name":"System.Drawing.Common","Version":"9.0.0-preview.4.24267.1","Feed":"https://api.nuget.org/v3/index.json"},"System.Formats.Asn1":{"Name":"System.Formats.Asn1","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Formats.Cbor":{"Name":"System.Formats.Cbor","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.FileSystem.AccessControl":{"Name":"System.IO.FileSystem.AccessControl","Version":"5.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Hashing":{"Name":"System.IO.Hashing","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Packaging":{"Name":"System.IO.Packaging","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Pipelines":{"Name":"System.IO.Pipelines","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Pipes.AccessControl":{"Name":"System.IO.Pipes.AccessControl","Version":"5.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.IO.Ports":{"Name":"System.IO.Ports","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Json":{"Name":"System.Json","Version":"4.7.1","Feed":"https://api.nuget.org/v3/index.json"},"System.Management":{"Name":"System.Management","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Memory":{"Name":"System.Memory","Version":"4.5.5","Feed":"https://api.nuget.org/v3/index.json"},"System.Memory.Data":{"Name":"System.Memory.Data","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Net.Http.Json":{"Name":"System.Net.Http.Json","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Net.Http.WinHttpHandler":{"Name":"System.Net.Http.WinHttpHandler","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Net.WebSockets.WebSocketProtocol":{"Name":"System.Net.WebSockets.WebSocketProtocol","Version":"5.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Numerics.Tensors":{"Name":"System.Numerics.Tensors","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Numerics.Vectors":{"Name":"System.Numerics.Vectors","Version":"4.5.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Private.ServiceModel":{"Name":"System.Private.ServiceModel","Version":"4.10.3","Feed":"https://api.nuget.org/v3/index.json"},"System.Reflection.Context":{"Name":"System.Reflection.Context","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Reflection.DispatchProxy":{"Name":"System.Reflection.DispatchProxy","Version":"4.7.1","Feed":"https://api.nuget.org/v3/index.json"},"System.Reflection.Emit":{"Name":"System.Reflection.Emit","Version":"4.7.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Reflection.Emit.ILGeneration":{"Name":"System.Reflection.Emit.ILGeneration","Version":"4.7.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Reflection.Emit.Lightweight":{"Name":"System.Reflection.Emit.Lightweight","Version":"4.7.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Reflection.Metadata":{"Name":"System.Reflection.Metadata","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Reflection.MetadataLoadContext":{"Name":"System.Reflection.MetadataLoadContext","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Reflection.TypeExtensions":{"Name":"System.Reflection.TypeExtensions","Version":"4.7.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Resources.Extensions":{"Name":"System.Resources.Extensions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Runtime.Caching":{"Name":"System.Runtime.Caching","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Runtime.CompilerServices.Unsafe":{"Name":"System.Runtime.CompilerServices.Unsafe","Version":"6.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.AccessControl":{"Name":"System.Security.AccessControl","Version":"6.0.1","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.Cng":{"Name":"System.Security.Cryptography.Cng","Version":"5.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.Cose":{"Name":"System.Security.Cryptography.Cose","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.OpenSsl":{"Name":"System.Security.Cryptography.OpenSsl","Version":"5.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.Pkcs":{"Name":"System.Security.Cryptography.Pkcs","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.ProtectedData":{"Name":"System.Security.Cryptography.ProtectedData","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.Xml":{"Name":"System.Security.Cryptography.Xml","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Permissions":{"Name":"System.Security.Permissions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Principal.Windows":{"Name":"System.Security.Principal.Windows","Version":"5.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.ServiceModel.Syndication":{"Name":"System.ServiceModel.Syndication","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.ServiceProcess.ServiceController":{"Name":"System.ServiceProcess.ServiceController","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Speech":{"Name":"System.Speech","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Text.Encoding.CodePages":{"Name":"System.Text.Encoding.CodePages","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Text.Encodings.Web":{"Name":"System.Text.Encodings.Web","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Text.Json":{"Name":"System.Text.Json","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Threading.AccessControl":{"Name":"System.Threading.AccessControl","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Threading.Channels":{"Name":"System.Threading.Channels","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Threading.Tasks.Dataflow":{"Name":"System.Threading.Tasks.Dataflow","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Threading.Tasks.Extensions":{"Name":"System.Threading.Tasks.Extensions","Version":"4.5.4","Feed":"https://api.nuget.org/v3/index.json"},"System.Web.Services.Description":{"Name":"System.Web.Services.Description","Version":"8.0.0","Feed":"https://api.nuget.org/v3/index.json"}}} \ No newline at end of file diff --git a/xml/PackageInformation/netstandard-2.1.json b/xml/PackageInformation/netstandard-2.1.json index d018d6c8f69..218b918fc43 100644 --- a/xml/PackageInformation/netstandard-2.1.json +++ b/xml/PackageInformation/netstandard-2.1.json @@ -1 +1 @@ -{"netstandard-2.1":{"Microsoft.Bcl.AsyncInterfaces":{"Name":"Microsoft.Bcl.AsyncInterfaces","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Bcl.HashCode":{"Name":"Microsoft.Bcl.HashCode","Version":"1.1.1","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Bcl.Numerics":{"Name":"Microsoft.Bcl.Numerics","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Json":{"Name":"Microsoft.Extensions.Configuration.Json","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyInjection":{"Name":"Microsoft.Extensions.DependencyInjection","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyInjection.Abstractions":{"Name":"Microsoft.Extensions.DependencyInjection.Abstractions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting":{"Name":"Microsoft.Extensions.Hosting","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting.Abstractions":{"Name":"Microsoft.Extensions.Hosting.Abstractions","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting.Systemd":{"Name":"Microsoft.Extensions.Hosting.Systemd","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting.WindowsServices":{"Name":"Microsoft.Extensions.Hosting.WindowsServices","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging":{"Name":"Microsoft.Extensions.Logging","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Options":{"Name":"Microsoft.Extensions.Options","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Options.DataAnnotations":{"Name":"Microsoft.Extensions.Options.DataAnnotations","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.ComponentModel.Annotations":{"Name":"System.ComponentModel.Annotations","Version":"5.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.ComponentModel.Composition.Registration":{"Name":"System.ComponentModel.Composition.Registration","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Reflection.Context":{"Name":"System.Reflection.Context","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.Cng":{"Name":"System.Security.Cryptography.Cng","Version":"5.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.Pkcs":{"Name":"System.Security.Cryptography.Pkcs","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Threading.Channels":{"Name":"System.Threading.Channels","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"},"System.Threading.Tasks.Dataflow":{"Name":"System.Threading.Tasks.Dataflow","Version":"9.0.0-preview.3.24172.9","Feed":"https://api.nuget.org/v3/index.json"}}} \ No newline at end of file +{"netstandard-2.1":{"Microsoft.Bcl.AsyncInterfaces":{"Name":"Microsoft.Bcl.AsyncInterfaces","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Bcl.HashCode":{"Name":"Microsoft.Bcl.HashCode","Version":"1.1.1","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Bcl.Numerics":{"Name":"Microsoft.Bcl.Numerics","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Caching.Hybrid":{"Name":"Microsoft.Extensions.Caching.Hybrid","Version":"9.0.0-preview.4.24267.6","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Configuration.Json":{"Name":"Microsoft.Extensions.Configuration.Json","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyInjection":{"Name":"Microsoft.Extensions.DependencyInjection","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.DependencyInjection.Abstractions":{"Name":"Microsoft.Extensions.DependencyInjection.Abstractions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting":{"Name":"Microsoft.Extensions.Hosting","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting.Abstractions":{"Name":"Microsoft.Extensions.Hosting.Abstractions","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting.Systemd":{"Name":"Microsoft.Extensions.Hosting.Systemd","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Hosting.WindowsServices":{"Name":"Microsoft.Extensions.Hosting.WindowsServices","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Logging":{"Name":"Microsoft.Extensions.Logging","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Options":{"Name":"Microsoft.Extensions.Options","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Extensions.Options.DataAnnotations":{"Name":"Microsoft.Extensions.Options.DataAnnotations","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.ComponentModel.Annotations":{"Name":"System.ComponentModel.Annotations","Version":"5.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.ComponentModel.Composition.Registration":{"Name":"System.ComponentModel.Composition.Registration","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Reflection.Context":{"Name":"System.Reflection.Context","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.Cng":{"Name":"System.Security.Cryptography.Cng","Version":"5.0.0","Feed":"https://api.nuget.org/v3/index.json"},"System.Security.Cryptography.Pkcs":{"Name":"System.Security.Cryptography.Pkcs","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Threading.Channels":{"Name":"System.Threading.Channels","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"},"System.Threading.Tasks.Dataflow":{"Name":"System.Threading.Tasks.Dataflow","Version":"9.0.0-preview.4.24266.19","Feed":"https://api.nuget.org/v3/index.json"}}} \ No newline at end of file diff --git a/xml/Polly/ResilienceContextExtensions.xml b/xml/Polly/ResilienceContextExtensions.xml index 17fcbad7aa1..21fe8637eaa 100644 --- a/xml/Polly/ResilienceContextExtensions.xml +++ b/xml/Polly/ResilienceContextExtensions.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Resilience 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -42,7 +43,7 @@ Method Microsoft.Extensions.Resilience - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -72,7 +73,7 @@ Method Microsoft.Extensions.Resilience - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/SourceLinkInformation/net-7.0/System.Drawing.Common.json b/xml/SourceLinkInformation/net-7.0/System.Drawing.Common.json index 9a9a41dee77..9ebd2958693 100644 --- a/xml/SourceLinkInformation/net-7.0/System.Drawing.Common.json +++ b/xml/SourceLinkInformation/net-7.0/System.Drawing.Common.json @@ -1,11243 +1,11242 @@ { "Assembly": "System.Drawing.Common", - "GUID": "06311AC283D04F28BC439B579E4719E9FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "E2CC0D56211446E186187D492D49F36CFFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:System.Drawing.Bitmap.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L26C38-L26C71" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L26C38-L26C71" }, { "DocsId": "M:System.Drawing.Bitmap.#ctor(System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L28C5-L51C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L28C5-L51C6" }, { "DocsId": "M:System.Drawing.Bitmap.#ctor(System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L53C36-L55C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L53C36-L55C6" }, { "DocsId": "M:System.Drawing.Bitmap.#ctor(System.IO.Stream,System.Boolean)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L57C5-L77C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L57C5-L77C6" }, { "DocsId": "M:System.Drawing.Bitmap.#ctor(System.Type,System.String)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L79C49-L81C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L79C49-L81C6" }, { "DocsId": "M:System.Drawing.Bitmap.#ctor(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L97C44-L99C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L97C44-L99C6" }, { "DocsId": "M:System.Drawing.Bitmap.#ctor(System.Int32,System.Int32,System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L101C5-L110C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L101C5-L110C6" }, { "DocsId": "M:System.Drawing.Bitmap.#ctor(System.Int32,System.Int32,System.Int32,System.Drawing.Imaging.PixelFormat,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L112C5-L119C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L112C5-L119C6" }, { "DocsId": "M:System.Drawing.Bitmap.#ctor(System.Int32,System.Int32,System.Drawing.Imaging.PixelFormat)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L121C5-L128C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L121C5-L128C6" }, { "DocsId": "M:System.Drawing.Bitmap.#ctor(System.Drawing.Image)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L130C37-L132C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L130C37-L132C6" }, { "DocsId": "M:System.Drawing.Bitmap.#ctor(System.Drawing.Image,System.Drawing.Size)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L134C51-L136C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L134C51-L136C6" }, { "DocsId": "M:System.Drawing.Bitmap.#ctor(System.Drawing.Image,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L138C60-L144C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L138C60-L144C6" }, { "DocsId": "M:System.Drawing.Bitmap.FromHicon(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L152C9-L153C35" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L152C9-L153C35" }, { "DocsId": "M:System.Drawing.Bitmap.FromResource(System.IntPtr,System.String)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L158C9-L168C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L158C9-L168C6" }, { "DocsId": "M:System.Drawing.Bitmap.GetHbitmap", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L171C35-L171C62" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L171C35-L171C62" }, { "DocsId": "M:System.Drawing.Bitmap.GetHbitmap(System.Drawing.Color)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L177C9-L186C24" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L177C9-L186C24" }, { "DocsId": "M:System.Drawing.Bitmap.GetHicon", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L193C9-L196C22" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L193C9-L196C22" }, { "DocsId": "M:System.Drawing.Bitmap.Clone(System.Drawing.RectangleF,System.Drawing.Imaging.PixelFormat)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L201C9-L220C38" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L201C9-L220C38" }, { "DocsId": "M:System.Drawing.Bitmap.MakeTransparent", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L225C9-L238C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L225C9-L238C6" }, { "DocsId": "M:System.Drawing.Bitmap.MakeTransparent(System.Drawing.Color)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L242C9-L269C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L242C9-L269C6" }, { "DocsId": "M:System.Drawing.Bitmap.LockBits(System.Drawing.Rectangle,System.Drawing.Imaging.ImageLockMode,System.Drawing.Imaging.PixelFormat)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L273C9-L273C64" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L273C9-L273C64" }, { "DocsId": "M:System.Drawing.Bitmap.LockBits(System.Drawing.Rectangle,System.Drawing.Imaging.ImageLockMode,System.Drawing.Imaging.PixelFormat,System.Drawing.Imaging.BitmapData)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L278C9-L288C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L278C9-L288C27" }, { "DocsId": "M:System.Drawing.Bitmap.UnlockBits(System.Drawing.Imaging.BitmapData)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L293C9-L295C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L293C9-L295C6" }, { "DocsId": "M:System.Drawing.Bitmap.GetPixel(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L299C9-L313C38" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L299C9-L313C38" }, { "DocsId": "M:System.Drawing.Bitmap.SetPixel(System.Int32,System.Int32,System.Drawing.Color)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L318C9-L335C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L318C9-L335C6" }, { "DocsId": "M:System.Drawing.Bitmap.SetResolution(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L339C9-L341C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L339C9-L341C6" }, { "DocsId": "M:System.Drawing.Bitmap.Clone(System.Drawing.Rectangle,System.Drawing.Imaging.PixelFormat)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L344C9-L362C38" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L344C9-L362C38" } ], "DocsId": "T:System.Drawing.Bitmap", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.BitmapSuffixInSameAssemblyAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/BitmapSuffixInSameAssemblyAttribute.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/BitmapSuffixInSameAssemblyAttribute.cs" } ], "DocsId": "T:System.Drawing.BitmapSuffixInSameAssemblyAttribute", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/BitmapSuffixInSameAssemblyAttribute.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/BitmapSuffixInSameAssemblyAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.BitmapSuffixInSatelliteAssemblyAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/BitmapSuffixInSatelliteAssemblyAttribute.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/BitmapSuffixInSatelliteAssemblyAttribute.cs" } ], "DocsId": "T:System.Drawing.BitmapSuffixInSatelliteAssemblyAttribute", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/BitmapSuffixInSatelliteAssemblyAttribute.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/BitmapSuffixInSatelliteAssemblyAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.BufferedGraphics.Dispose", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/BufferedGraphics.cs#L40C9-L56C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/BufferedGraphics.cs#L40C9-L56C6" }, { "DocsId": "M:System.Drawing.BufferedGraphics.Render(System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/BufferedGraphics.cs#L68C9-L81C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/BufferedGraphics.cs#L68C9-L81C6" }, { "DocsId": "M:System.Drawing.BufferedGraphics.Render", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/BufferedGraphics.cs#L119C9-L127C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/BufferedGraphics.cs#L119C9-L127C6" }, { "DocsId": "M:System.Drawing.BufferedGraphics.Render(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/BufferedGraphics.cs#L132C44-L132C89" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/BufferedGraphics.cs#L132C44-L132C89" }, { "DocsId": "P:System.Drawing.BufferedGraphics.Graphics", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/BufferedGraphics.cs#L61C33-L61C57" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/BufferedGraphics.cs#L61C33-L61C57" } ], "DocsId": "T:System.Drawing.BufferedGraphics", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/BufferedGraphics.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/BufferedGraphics.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.BufferedGraphicsContext.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/BufferedGraphicsContext.cs#L17C5-L40C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/BufferedGraphicsContext.cs#L17C5-L40C6" }, { "DocsId": "M:System.Drawing.BufferedGraphicsContext.Finalize", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/BufferedGraphicsContext.cs#L69C35-L69C49" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/BufferedGraphicsContext.cs#L69C35-L16707566C0" }, { "DocsId": "M:System.Drawing.BufferedGraphicsContext.Allocate(System.Drawing.Graphics,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/BufferedGraphicsContext.cs#L76C9-L81C74" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/BufferedGraphicsContext.cs#L76C9-L81C74" }, { "DocsId": "M:System.Drawing.BufferedGraphicsContext.Allocate(System.IntPtr,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/BufferedGraphicsContext.cs#L89C9-L94C61" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/BufferedGraphicsContext.cs#L89C9-L94C61" }, { "DocsId": "M:System.Drawing.BufferedGraphicsContext.Dispose", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/BufferedGraphicsContext.cs#L174C9-L176C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/BufferedGraphicsContext.cs#L174C9-L176C6" }, { "DocsId": "M:System.Drawing.BufferedGraphicsContext.Invalidate", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/BufferedGraphicsContext.cs#L505C9-L518C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/BufferedGraphicsContext.cs#L505C9-L518C6" }, { "DocsId": "P:System.Drawing.BufferedGraphicsContext.MaximumBuffer", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/BufferedGraphicsContext.cs#L50C16-L50C30" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/BufferedGraphicsContext.cs#L50C16-L50C30" } ], "DocsId": "T:System.Drawing.BufferedGraphicsContext", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/BufferedGraphicsContext.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/BufferedGraphicsContext.cs" }, { "Members": [ { "DocsId": "P:System.Drawing.Brushes.Transparent", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L151C40-L151C85" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L151C40-L151C85" }, { "DocsId": "P:System.Drawing.Brushes.AliceBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L153C38-L153C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L153C38-L153C79" }, { "DocsId": "P:System.Drawing.Brushes.AntiqueWhite", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L154C41-L154C88" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L154C41-L154C88" }, { "DocsId": "P:System.Drawing.Brushes.Aqua", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L155C33-L155C64" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L155C33-L155C64" }, { "DocsId": "P:System.Drawing.Brushes.Aquamarine", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L156C39-L156C82" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L156C39-L156C82" }, { "DocsId": "P:System.Drawing.Brushes.Azure", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L157C34-L157C67" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L157C34-L157C67" }, { "DocsId": "P:System.Drawing.Brushes.Beige", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L159C34-L159C67" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L159C34-L159C67" }, { "DocsId": "P:System.Drawing.Brushes.Bisque", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L160C35-L160C70" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L160C35-L160C70" }, { "DocsId": "P:System.Drawing.Brushes.Black", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L161C34-L161C67" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L161C34-L161C67" }, { "DocsId": "P:System.Drawing.Brushes.BlanchedAlmond", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L162C43-L162C94" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L162C43-L162C94" }, { "DocsId": "P:System.Drawing.Brushes.Blue", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L163C33-L163C64" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L163C33-L163C64" }, { "DocsId": "P:System.Drawing.Brushes.BlueViolet", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L164C39-L164C82" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L164C39-L164C82" }, { "DocsId": "P:System.Drawing.Brushes.Brown", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L165C34-L165C67" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L165C34-L165C67" }, { "DocsId": "P:System.Drawing.Brushes.BurlyWood", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L166C38-L166C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L166C38-L166C79" }, { "DocsId": "P:System.Drawing.Brushes.CadetBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L168C38-L168C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L168C38-L168C79" }, { "DocsId": "P:System.Drawing.Brushes.Chartreuse", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L169C39-L169C82" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L169C39-L169C82" }, { "DocsId": "P:System.Drawing.Brushes.Chocolate", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L170C38-L170C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L170C38-L170C79" }, { "DocsId": "P:System.Drawing.Brushes.Coral", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L171C34-L171C67" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L171C34-L171C67" }, { "DocsId": "P:System.Drawing.Brushes.CornflowerBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L172C43-L172C94" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L172C43-L172C94" }, { "DocsId": "P:System.Drawing.Brushes.Cornsilk", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L173C37-L173C76" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L173C37-L173C76" }, { "DocsId": "P:System.Drawing.Brushes.Crimson", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L174C36-L174C73" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L174C36-L174C73" }, { "DocsId": "P:System.Drawing.Brushes.Cyan", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L175C33-L175C64" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L175C33-L175C64" }, { "DocsId": "P:System.Drawing.Brushes.DarkBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L177C37-L177C76" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L177C37-L177C76" }, { "DocsId": "P:System.Drawing.Brushes.DarkCyan", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L178C37-L178C76" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L178C37-L178C76" }, { "DocsId": "P:System.Drawing.Brushes.DarkGoldenrod", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L179C42-L179C91" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L179C42-L179C91" }, { "DocsId": "P:System.Drawing.Brushes.DarkGray", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L180C37-L180C76" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L180C37-L180C76" }, { "DocsId": "P:System.Drawing.Brushes.DarkGreen", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L181C38-L181C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L181C38-L181C79" }, { "DocsId": "P:System.Drawing.Brushes.DarkKhaki", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L182C38-L182C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L182C38-L182C79" }, { "DocsId": "P:System.Drawing.Brushes.DarkMagenta", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L183C40-L183C85" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L183C40-L183C85" }, { "DocsId": "P:System.Drawing.Brushes.DarkOliveGreen", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L184C43-L184C94" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L184C43-L184C94" }, { "DocsId": "P:System.Drawing.Brushes.DarkOrange", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L185C39-L185C82" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L185C39-L185C82" }, { "DocsId": "P:System.Drawing.Brushes.DarkOrchid", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L186C39-L186C82" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L186C39-L186C82" }, { "DocsId": "P:System.Drawing.Brushes.DarkRed", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L187C36-L187C73" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L187C36-L187C73" }, { "DocsId": "P:System.Drawing.Brushes.DarkSalmon", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L188C39-L188C82" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L188C39-L188C82" }, { "DocsId": "P:System.Drawing.Brushes.DarkSeaGreen", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L189C41-L189C88" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L189C41-L189C88" }, { "DocsId": "P:System.Drawing.Brushes.DarkSlateBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L190C42-L190C91" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L190C42-L190C91" }, { "DocsId": "P:System.Drawing.Brushes.DarkSlateGray", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L191C42-L191C91" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L191C42-L191C91" }, { "DocsId": "P:System.Drawing.Brushes.DarkTurquoise", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L192C42-L192C91" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L192C42-L192C91" }, { "DocsId": "P:System.Drawing.Brushes.DarkViolet", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L193C39-L193C82" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L193C39-L193C82" }, { "DocsId": "P:System.Drawing.Brushes.DeepPink", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L194C37-L194C76" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L194C37-L194C76" }, { "DocsId": "P:System.Drawing.Brushes.DeepSkyBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L195C40-L195C85" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L195C40-L195C85" }, { "DocsId": "P:System.Drawing.Brushes.DimGray", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L196C36-L196C73" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L196C36-L196C73" }, { "DocsId": "P:System.Drawing.Brushes.DodgerBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L197C39-L197C82" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L197C39-L197C82" }, { "DocsId": "P:System.Drawing.Brushes.Firebrick", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L199C38-L199C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L199C38-L199C79" }, { "DocsId": "P:System.Drawing.Brushes.FloralWhite", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L200C40-L200C85" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L200C40-L200C85" }, { "DocsId": "P:System.Drawing.Brushes.ForestGreen", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L201C40-L201C85" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L201C40-L201C85" }, { "DocsId": "P:System.Drawing.Brushes.Fuchsia", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L202C36-L202C73" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L202C36-L202C73" }, { "DocsId": "P:System.Drawing.Brushes.Gainsboro", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L204C38-L204C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L204C38-L204C79" }, { "DocsId": "P:System.Drawing.Brushes.GhostWhite", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L205C39-L205C82" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L205C39-L205C82" }, { "DocsId": "P:System.Drawing.Brushes.Gold", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L206C33-L206C64" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L206C33-L206C64" }, { "DocsId": "P:System.Drawing.Brushes.Goldenrod", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L207C38-L207C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L207C38-L207C79" }, { "DocsId": "P:System.Drawing.Brushes.Gray", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L208C33-L208C64" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L208C33-L208C64" }, { "DocsId": "P:System.Drawing.Brushes.Green", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L209C34-L209C67" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L209C34-L209C67" }, { "DocsId": "P:System.Drawing.Brushes.GreenYellow", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L210C40-L210C85" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L210C40-L210C85" }, { "DocsId": "P:System.Drawing.Brushes.Honeydew", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L212C37-L212C76" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L212C37-L212C76" }, { "DocsId": "P:System.Drawing.Brushes.HotPink", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L213C36-L213C73" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L213C36-L213C73" }, { "DocsId": "P:System.Drawing.Brushes.IndianRed", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L215C38-L215C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L215C38-L215C79" }, { "DocsId": "P:System.Drawing.Brushes.Indigo", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L216C35-L216C70" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L216C35-L216C70" }, { "DocsId": "P:System.Drawing.Brushes.Ivory", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L217C34-L217C67" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L217C34-L217C67" }, { "DocsId": "P:System.Drawing.Brushes.Khaki", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L219C34-L219C67" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L219C34-L219C67" }, { "DocsId": "P:System.Drawing.Brushes.Lavender", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L221C37-L221C76" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L221C37-L221C76" }, { "DocsId": "P:System.Drawing.Brushes.LavenderBlush", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L222C42-L222C91" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L222C42-L222C91" }, { "DocsId": "P:System.Drawing.Brushes.LawnGreen", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L223C38-L223C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L223C38-L223C79" }, { "DocsId": "P:System.Drawing.Brushes.LemonChiffon", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L224C41-L224C88" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L224C41-L224C88" }, { "DocsId": "P:System.Drawing.Brushes.LightBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L225C38-L225C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L225C38-L225C79" }, { "DocsId": "P:System.Drawing.Brushes.LightCoral", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L226C39-L226C82" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L226C39-L226C82" }, { "DocsId": "P:System.Drawing.Brushes.LightCyan", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L227C38-L227C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L227C38-L227C79" }, { "DocsId": "P:System.Drawing.Brushes.LightGoldenrodYellow", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L228C49-L228C112" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L228C49-L228C112" }, { "DocsId": "P:System.Drawing.Brushes.LightGreen", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L229C39-L229C82" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L229C39-L229C82" }, { "DocsId": "P:System.Drawing.Brushes.LightGray", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L230C38-L230C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L230C38-L230C79" }, { "DocsId": "P:System.Drawing.Brushes.LightPink", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L231C38-L231C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L231C38-L231C79" }, { "DocsId": "P:System.Drawing.Brushes.LightSalmon", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L232C40-L232C85" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L232C40-L232C85" }, { "DocsId": "P:System.Drawing.Brushes.LightSeaGreen", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L233C42-L233C91" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L233C42-L233C91" }, { "DocsId": "P:System.Drawing.Brushes.LightSkyBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L234C41-L234C88" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L234C41-L234C88" }, { "DocsId": "P:System.Drawing.Brushes.LightSlateGray", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L235C43-L235C94" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L235C43-L235C94" }, { "DocsId": "P:System.Drawing.Brushes.LightSteelBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L236C43-L236C94" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L236C43-L236C94" }, { "DocsId": "P:System.Drawing.Brushes.LightYellow", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L237C40-L237C85" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L237C40-L237C85" }, { "DocsId": "P:System.Drawing.Brushes.Lime", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L238C33-L238C64" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L238C33-L238C64" }, { "DocsId": "P:System.Drawing.Brushes.LimeGreen", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L239C38-L239C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L239C38-L239C79" }, { "DocsId": "P:System.Drawing.Brushes.Linen", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L240C34-L240C67" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L240C34-L240C67" }, { "DocsId": "P:System.Drawing.Brushes.Magenta", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L242C36-L242C73" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L242C36-L242C73" }, { "DocsId": "P:System.Drawing.Brushes.Maroon", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L243C35-L243C70" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L243C35-L243C70" }, { "DocsId": "P:System.Drawing.Brushes.MediumAquamarine", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L244C45-L244C100" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L244C45-L244C100" }, { "DocsId": "P:System.Drawing.Brushes.MediumBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L245C39-L245C82" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L245C39-L245C82" }, { "DocsId": "P:System.Drawing.Brushes.MediumOrchid", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L246C41-L246C88" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L246C41-L246C88" }, { "DocsId": "P:System.Drawing.Brushes.MediumPurple", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L247C41-L247C88" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L247C41-L247C88" }, { "DocsId": "P:System.Drawing.Brushes.MediumSeaGreen", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L248C43-L248C94" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L248C43-L248C94" }, { "DocsId": "P:System.Drawing.Brushes.MediumSlateBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L249C44-L249C97" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L249C44-L249C97" }, { "DocsId": "P:System.Drawing.Brushes.MediumSpringGreen", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L250C46-L250C103" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L250C46-L250C103" }, { "DocsId": "P:System.Drawing.Brushes.MediumTurquoise", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L251C44-L251C97" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L251C44-L251C97" }, { "DocsId": "P:System.Drawing.Brushes.MediumVioletRed", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L252C44-L252C97" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L252C44-L252C97" }, { "DocsId": "P:System.Drawing.Brushes.MidnightBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L253C41-L253C88" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L253C41-L253C88" }, { "DocsId": "P:System.Drawing.Brushes.MintCream", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L254C38-L254C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L254C38-L254C79" }, { "DocsId": "P:System.Drawing.Brushes.MistyRose", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L255C38-L255C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L255C38-L255C79" }, { "DocsId": "P:System.Drawing.Brushes.Moccasin", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L256C37-L256C76" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L256C37-L256C76" }, { "DocsId": "P:System.Drawing.Brushes.NavajoWhite", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L258C40-L258C85" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L258C40-L258C85" }, { "DocsId": "P:System.Drawing.Brushes.Navy", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L259C33-L259C64" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L259C33-L259C64" }, { "DocsId": "P:System.Drawing.Brushes.OldLace", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L261C36-L261C73" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L261C36-L261C73" }, { "DocsId": "P:System.Drawing.Brushes.Olive", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L262C34-L262C67" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L262C34-L262C67" }, { "DocsId": "P:System.Drawing.Brushes.OliveDrab", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L263C38-L263C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L263C38-L263C79" }, { "DocsId": "P:System.Drawing.Brushes.Orange", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L264C35-L264C70" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L264C35-L264C70" }, { "DocsId": "P:System.Drawing.Brushes.OrangeRed", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L265C38-L265C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L265C38-L265C79" }, { "DocsId": "P:System.Drawing.Brushes.Orchid", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L266C35-L266C70" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L266C35-L266C70" }, { "DocsId": "P:System.Drawing.Brushes.PaleGoldenrod", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L268C42-L268C91" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L268C42-L268C91" }, { "DocsId": "P:System.Drawing.Brushes.PaleGreen", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L269C38-L269C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L269C38-L269C79" }, { "DocsId": "P:System.Drawing.Brushes.PaleTurquoise", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L270C42-L270C91" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L270C42-L270C91" }, { "DocsId": "P:System.Drawing.Brushes.PaleVioletRed", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L271C42-L271C91" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L271C42-L271C91" }, { "DocsId": "P:System.Drawing.Brushes.PapayaWhip", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L272C39-L272C82" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L272C39-L272C82" }, { "DocsId": "P:System.Drawing.Brushes.PeachPuff", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L273C38-L273C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L273C38-L273C79" }, { "DocsId": "P:System.Drawing.Brushes.Peru", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L274C33-L274C64" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L274C33-L274C64" }, { "DocsId": "P:System.Drawing.Brushes.Pink", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L275C33-L275C64" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L275C33-L275C64" }, { "DocsId": "P:System.Drawing.Brushes.Plum", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L276C33-L276C64" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L276C33-L276C64" }, { "DocsId": "P:System.Drawing.Brushes.PowderBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L277C39-L277C82" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L277C39-L277C82" }, { "DocsId": "P:System.Drawing.Brushes.Purple", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L278C35-L278C70" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L278C35-L278C70" }, { "DocsId": "P:System.Drawing.Brushes.Red", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L280C32-L280C61" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L280C32-L280C61" }, { "DocsId": "P:System.Drawing.Brushes.RosyBrown", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L281C38-L281C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L281C38-L281C79" }, { "DocsId": "P:System.Drawing.Brushes.RoyalBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L282C38-L282C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L282C38-L282C79" }, { "DocsId": "P:System.Drawing.Brushes.SaddleBrown", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L284C40-L284C85" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L284C40-L284C85" }, { "DocsId": "P:System.Drawing.Brushes.Salmon", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L285C35-L285C70" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L285C35-L285C70" }, { "DocsId": "P:System.Drawing.Brushes.SandyBrown", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L286C39-L286C82" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L286C39-L286C82" }, { "DocsId": "P:System.Drawing.Brushes.SeaGreen", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L287C37-L287C76" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L287C37-L287C76" }, { "DocsId": "P:System.Drawing.Brushes.SeaShell", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L288C37-L288C76" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L288C37-L288C76" }, { "DocsId": "P:System.Drawing.Brushes.Sienna", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L289C35-L289C70" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L289C35-L289C70" }, { "DocsId": "P:System.Drawing.Brushes.Silver", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L290C35-L290C70" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L290C35-L290C70" }, { "DocsId": "P:System.Drawing.Brushes.SkyBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L291C36-L291C73" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L291C36-L291C73" }, { "DocsId": "P:System.Drawing.Brushes.SlateBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L292C38-L292C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L292C38-L292C79" }, { "DocsId": "P:System.Drawing.Brushes.SlateGray", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L293C38-L293C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L293C38-L293C79" }, { "DocsId": "P:System.Drawing.Brushes.Snow", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L294C33-L294C64" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L294C33-L294C64" }, { "DocsId": "P:System.Drawing.Brushes.SpringGreen", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L295C40-L295C85" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L295C40-L295C85" }, { "DocsId": "P:System.Drawing.Brushes.SteelBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L296C38-L296C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L296C38-L296C79" }, { "DocsId": "P:System.Drawing.Brushes.Tan", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L298C32-L298C61" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L298C32-L298C61" }, { "DocsId": "P:System.Drawing.Brushes.Teal", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L299C33-L299C64" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L299C33-L299C64" }, { "DocsId": "P:System.Drawing.Brushes.Thistle", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L300C36-L300C73" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L300C36-L300C73" }, { "DocsId": "P:System.Drawing.Brushes.Tomato", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L301C35-L301C70" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L301C35-L301C70" }, { "DocsId": "P:System.Drawing.Brushes.Turquoise", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L302C38-L302C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L302C38-L302C79" }, { "DocsId": "P:System.Drawing.Brushes.Violet", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L304C35-L304C70" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L304C35-L304C70" }, { "DocsId": "P:System.Drawing.Brushes.Wheat", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L306C34-L306C67" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L306C34-L306C67" }, { "DocsId": "P:System.Drawing.Brushes.White", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L307C34-L307C67" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L307C34-L307C67" }, { "DocsId": "P:System.Drawing.Brushes.WhiteSmoke", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L308C39-L308C82" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L308C39-L308C82" }, { "DocsId": "P:System.Drawing.Brushes.Yellow", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L310C35-L310C70" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L310C35-L310C70" }, { "DocsId": "P:System.Drawing.Brushes.YellowGreen", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L311C40-L311C85" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L311C40-L311C85" } ], "DocsId": "T:System.Drawing.Brushes", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brushes.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brushes.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.CharacterRange.#ctor(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/CharacterRange.cs#L17C9-L19C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/CharacterRange.cs#L17C9-L19C6" }, { "DocsId": "M:System.Drawing.CharacterRange.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/CharacterRange.cs#L36C9-L36C53" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/CharacterRange.cs#L36C9-L36C53" }, { "DocsId": "M:System.Drawing.CharacterRange.Equals(System.Drawing.CharacterRange)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/CharacterRange.cs#L41C58-L41C104" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/CharacterRange.cs#L41C58-L41C104" }, { "DocsId": "M:System.Drawing.CharacterRange.op_Equality(System.Drawing.CharacterRange,System.Drawing.CharacterRange)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/CharacterRange.cs#L43C79-L43C94" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/CharacterRange.cs#L43C79-L43C94" }, { "DocsId": "M:System.Drawing.CharacterRange.op_Inequality(System.Drawing.CharacterRange,System.Drawing.CharacterRange)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/CharacterRange.cs#L45C79-L45C95" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/CharacterRange.cs#L45C79-L45C95" }, { "DocsId": "M:System.Drawing.CharacterRange.GetHashCode", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/CharacterRange.cs#L47C51-L47C82" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/CharacterRange.cs#L47C51-L47C82" }, { "DocsId": "P:System.Drawing.CharacterRange.First", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/CharacterRange.cs#L24C25-L24C31" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/CharacterRange.cs#L24C25-L24C31" }, { "DocsId": "P:System.Drawing.CharacterRange.Length", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/CharacterRange.cs#L31C25-L31C32" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/CharacterRange.cs#L31C25-L31C32" } ], "DocsId": "T:System.Drawing.CharacterRange", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/CharacterRange.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/CharacterRange.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.ContentAlignment.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/ContentAlignment.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/ContentAlignment.cs" }, { "DocsId": "F:System.Drawing.ContentAlignment.TopLeft", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/ContentAlignment.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/ContentAlignment.cs" }, { "DocsId": "F:System.Drawing.ContentAlignment.TopCenter", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/ContentAlignment.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/ContentAlignment.cs" }, { "DocsId": "F:System.Drawing.ContentAlignment.TopRight", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/ContentAlignment.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/ContentAlignment.cs" }, { "DocsId": "F:System.Drawing.ContentAlignment.MiddleLeft", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/ContentAlignment.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/ContentAlignment.cs" }, { "DocsId": "F:System.Drawing.ContentAlignment.MiddleCenter", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/ContentAlignment.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/ContentAlignment.cs" }, { "DocsId": "F:System.Drawing.ContentAlignment.MiddleRight", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/ContentAlignment.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/ContentAlignment.cs" }, { "DocsId": "F:System.Drawing.ContentAlignment.BottomLeft", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/ContentAlignment.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/ContentAlignment.cs" }, { "DocsId": "F:System.Drawing.ContentAlignment.BottomCenter", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/ContentAlignment.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/ContentAlignment.cs" }, { "DocsId": "F:System.Drawing.ContentAlignment.BottomRight", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/ContentAlignment.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/ContentAlignment.cs" } ], "DocsId": "T:System.Drawing.ContentAlignment", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/ContentAlignment.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/ContentAlignment.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.IDeviceContext.GetHdc", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/IDeviceContext.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/IDeviceContext.cs" }, { "DocsId": "M:System.Drawing.IDeviceContext.ReleaseHdc", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/IDeviceContext.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/IDeviceContext.cs" } ], "DocsId": "T:System.Drawing.IDeviceContext", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/IDeviceContext.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/IDeviceContext.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Graphics.FromHdc(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L167C9-L170C37" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L167C9-L170C37" }, { "DocsId": "M:System.Drawing.Graphics.FromHdcInternal(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L176C9-L177C45" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L176C9-L177C45" }, { "DocsId": "M:System.Drawing.Graphics.FromHdc(System.IntPtr,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L186C9-L187C45" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L186C9-L187C45" }, { "DocsId": "M:System.Drawing.Graphics.FromHwnd(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L194C53-L194C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L194C53-L194C75" }, { "DocsId": "M:System.Drawing.Graphics.FromHwndInternal(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L199C9-L200C45" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L199C9-L200C45" }, { "DocsId": "M:System.Drawing.Graphics.FromImage(System.Drawing.Image)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L208C9-L217C71" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L208C9-L217C71" }, { "DocsId": "M:System.Drawing.Graphics.ReleaseHdcInternal(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L223C9-L226C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L223C9-L226C6" }, { "DocsId": "M:System.Drawing.Graphics.Dispose", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L233C9-L235C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L233C9-L235C6" }, { "DocsId": "M:System.Drawing.Graphics.Finalize", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L288C20-L288C34" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L288C20-L16707566C0" }, { "DocsId": "M:System.Drawing.Graphics.GetHdc", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L632C9-L635C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L632C9-L635C27" }, { "DocsId": "M:System.Drawing.Graphics.ReleaseHdc(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L639C43-L639C66" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L639C43-L639C66" }, { "DocsId": "M:System.Drawing.Graphics.ReleaseHdc", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L641C33-L641C63" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L641C33-L641C63" }, { "DocsId": "M:System.Drawing.Graphics.Flush", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L646C28-L646C55" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L646C28-L646C55" }, { "DocsId": "M:System.Drawing.Graphics.Flush(System.Drawing.Drawing2D.FlushIntention)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L653C9-L654C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L653C9-L654C6" }, { "DocsId": "M:System.Drawing.Graphics.SetClip(System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L656C40-L656C71" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L656C40-L656C71" }, { "DocsId": "M:System.Drawing.Graphics.SetClip(System.Drawing.Graphics,System.Drawing.Drawing2D.CombineMode)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L660C9-L666C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L660C9-L666C6" }, { "DocsId": "M:System.Drawing.Graphics.SetClip(System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L668C44-L668C78" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L668C44-L668C78" }, { "DocsId": "M:System.Drawing.Graphics.SetClip(System.Drawing.Rectangle,System.Drawing.Drawing2D.CombineMode)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L672C9-L676C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L672C9-L676C6" }, { "DocsId": "M:System.Drawing.Graphics.SetClip(System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L678C45-L678C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L678C45-L678C79" }, { "DocsId": "M:System.Drawing.Graphics.SetClip(System.Drawing.RectangleF,System.Drawing.Drawing2D.CombineMode)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L682C9-L686C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L682C9-L686C6" }, { "DocsId": "M:System.Drawing.Graphics.SetClip(System.Drawing.Drawing2D.GraphicsPath)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L688C47-L688C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L688C47-L688C81" }, { "DocsId": "M:System.Drawing.Graphics.SetClip(System.Drawing.Drawing2D.GraphicsPath,System.Drawing.Drawing2D.CombineMode)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L692C9-L698C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L692C9-L698C6" }, { "DocsId": "M:System.Drawing.Graphics.SetClip(System.Drawing.Region,System.Drawing.Drawing2D.CombineMode)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L702C9-L708C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L702C9-L708C6" }, { "DocsId": "M:System.Drawing.Graphics.IntersectClip(System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L712C9-L716C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L712C9-L716C6" }, { "DocsId": "M:System.Drawing.Graphics.IntersectClip(System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L720C9-L724C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L720C9-L724C6" }, { "DocsId": "M:System.Drawing.Graphics.IntersectClip(System.Drawing.Region)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L728C9-L734C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L728C9-L734C6" }, { "DocsId": "M:System.Drawing.Graphics.ExcludeClip(System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L738C9-L742C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L738C9-L742C6" }, { "DocsId": "M:System.Drawing.Graphics.ExcludeClip(System.Drawing.Region)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L746C9-L752C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L746C9-L752C6" }, { "DocsId": "M:System.Drawing.Graphics.ResetClip", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L756C9-L757C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L756C9-L757C6" }, { "DocsId": "M:System.Drawing.Graphics.TranslateClip(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L761C9-L762C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L761C9-L762C6" }, { "DocsId": "M:System.Drawing.Graphics.TranslateClip(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L766C9-L767C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L766C9-L767C6" }, { "DocsId": "M:System.Drawing.Graphics.IsVisible(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L769C44-L769C70" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L769C44-L769C70" }, { "DocsId": "M:System.Drawing.Graphics.IsVisible(System.Drawing.Point)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L773C9-L778C26" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L773C9-L778C26" }, { "DocsId": "M:System.Drawing.Graphics.IsVisible(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L781C48-L781C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L781C48-L781C75" }, { "DocsId": "M:System.Drawing.Graphics.IsVisible(System.Drawing.PointF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L785C9-L790C26" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L785C9-L790C26" }, { "DocsId": "M:System.Drawing.Graphics.IsVisible(System.Int32,System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L795C9-L795C62" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L795C9-L795C62" }, { "DocsId": "M:System.Drawing.Graphics.IsVisible(System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L800C9-L805C26" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L800C9-L805C26" }, { "DocsId": "M:System.Drawing.Graphics.IsVisible(System.Single,System.Single,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L810C9-L810C63" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L810C9-L810C63" }, { "DocsId": "M:System.Drawing.Graphics.IsVisible(System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L815C9-L820C26" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L815C9-L820C26" }, { "DocsId": "M:System.Drawing.Graphics.ResetTransform", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L828C9-L829C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L828C9-L829C6" }, { "DocsId": "M:System.Drawing.Graphics.MultiplyTransform(System.Drawing.Drawing2D.Matrix)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L834C53-L834C99" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L834C53-L834C99" }, { "DocsId": "M:System.Drawing.Graphics.MultiplyTransform(System.Drawing.Drawing2D.Matrix,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L841C9-L850C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L841C9-L850C6" }, { "DocsId": "M:System.Drawing.Graphics.TranslateTransform(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L852C59-L852C106" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L852C59-L852C106" }, { "DocsId": "M:System.Drawing.Graphics.TranslateTransform(System.Single,System.Single,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L856C9-L857C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L856C9-L857C6" }, { "DocsId": "M:System.Drawing.Graphics.ScaleTransform(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L859C55-L859C98" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L859C55-L859C98" }, { "DocsId": "M:System.Drawing.Graphics.ScaleTransform(System.Single,System.Single,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L863C9-L864C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L863C9-L864C6" }, { "DocsId": "M:System.Drawing.Graphics.RotateTransform(System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L866C49-L866C92" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L866C49-L866C92" }, { "DocsId": "M:System.Drawing.Graphics.RotateTransform(System.Single,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L870C9-L871C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L870C9-L871C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawArc(System.Drawing.Pen,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L878C9-L886C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L878C9-L886C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawArc(System.Drawing.Pen,System.Drawing.RectangleF,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L893C9-L894C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L893C9-L894C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawArc(System.Drawing.Pen,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L901C9-L909C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L901C9-L909C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawArc(System.Drawing.Pen,System.Drawing.Rectangle,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L916C9-L917C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L916C9-L917C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawBezier(System.Drawing.Pen,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L924C9-L929C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L924C9-L929C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawBezier(System.Drawing.Pen,System.Drawing.PointF,System.Drawing.PointF,System.Drawing.PointF,System.Drawing.PointF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L936C9-L937C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L936C9-L937C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawBezier(System.Drawing.Pen,System.Drawing.Point,System.Drawing.Point,System.Drawing.Point,System.Drawing.Point)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L944C9-L945C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L944C9-L945C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawRectangle(System.Drawing.Pen,System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L954C9-L955C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L954C9-L955C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawRectangle(System.Drawing.Pen,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L962C9-L963C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L962C9-L963C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawRectangle(System.Drawing.Pen,System.Single,System.Single,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L970C9-L975C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L970C9-L975C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawRectangle(System.Drawing.Pen,System.Int32,System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L982C9-L987C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L982C9-L987C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawRectangles(System.Drawing.Pen,System.Drawing.RectangleF[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L994C9-L1003C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L994C9-L1003C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawRectangles(System.Drawing.Pen,System.Drawing.Rectangle[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1010C9-L1019C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1010C9-L1019C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawEllipse(System.Drawing.Pen,System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1026C9-L1027C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1026C9-L1027C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawEllipse(System.Drawing.Pen,System.Single,System.Single,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1034C9-L1040C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1034C9-L1040C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawEllipse(System.Drawing.Pen,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1047C9-L1048C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1047C9-L1048C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawEllipse(System.Drawing.Pen,System.Int32,System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1055C9-L1061C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1055C9-L1061C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawPie(System.Drawing.Pen,System.Drawing.RectangleF,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1068C9-L1069C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1068C9-L1069C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawPie(System.Drawing.Pen,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1076C9-L1084C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1076C9-L1084C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawPie(System.Drawing.Pen,System.Drawing.Rectangle,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1091C9-L1092C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1091C9-L1092C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawPie(System.Drawing.Pen,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1099C9-L1107C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1099C9-L1107C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawPolygon(System.Drawing.Pen,System.Drawing.PointF[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1114C9-L1123C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1114C9-L1123C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawPolygon(System.Drawing.Pen,System.Drawing.Point[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1130C9-L1139C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1130C9-L1139C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawPath(System.Drawing.Pen,System.Drawing.Drawing2D.GraphicsPath)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1146C9-L1153C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1146C9-L1153C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawCurve(System.Drawing.Pen,System.Drawing.PointF[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1160C9-L1170C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1160C9-L1170C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawCurve(System.Drawing.Pen,System.Drawing.PointF[],System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1177C9-L1188C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1177C9-L1188C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawCurve(System.Drawing.Pen,System.Drawing.PointF[],System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1192C9-L1193C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1192C9-L1193C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawCurve(System.Drawing.Pen,System.Drawing.PointF[],System.Int32,System.Int32,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1200C9-L1213C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1200C9-L1213C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawCurve(System.Drawing.Pen,System.Drawing.Point[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1220C9-L1230C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1220C9-L1230C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawCurve(System.Drawing.Pen,System.Drawing.Point[],System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1237C9-L1248C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1237C9-L1248C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawCurve(System.Drawing.Pen,System.Drawing.Point[],System.Int32,System.Int32,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1255C9-L1268C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1255C9-L1268C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawClosedCurve(System.Drawing.Pen,System.Drawing.PointF[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1275C9-L1285C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1275C9-L1285C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawClosedCurve(System.Drawing.Pen,System.Drawing.PointF[],System.Single,System.Drawing.Drawing2D.FillMode)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1292C9-L1303C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1292C9-L1303C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawClosedCurve(System.Drawing.Pen,System.Drawing.Point[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1310C9-L1320C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1310C9-L1320C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawClosedCurve(System.Drawing.Pen,System.Drawing.Point[],System.Single,System.Drawing.Drawing2D.FillMode)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1327C9-L1338C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1327C9-L1338C6" }, { "DocsId": "M:System.Drawing.Graphics.Clear(System.Drawing.Color)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1345C9-L1346C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1345C9-L1346C6" }, { "DocsId": "M:System.Drawing.Graphics.FillRectangle(System.Drawing.Brush,System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1353C9-L1354C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1353C9-L1354C6" }, { "DocsId": "M:System.Drawing.Graphics.FillRectangle(System.Drawing.Brush,System.Single,System.Single,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1361C9-L1367C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1361C9-L1367C6" }, { "DocsId": "M:System.Drawing.Graphics.FillRectangle(System.Drawing.Brush,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1374C9-L1375C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1374C9-L1375C6" }, { "DocsId": "M:System.Drawing.Graphics.FillRectangle(System.Drawing.Brush,System.Int32,System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1382C9-L1388C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1382C9-L1388C6" }, { "DocsId": "M:System.Drawing.Graphics.FillRectangles(System.Drawing.Brush,System.Drawing.RectangleF[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1395C9-L1405C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1395C9-L1405C6" }, { "DocsId": "M:System.Drawing.Graphics.FillRectangles(System.Drawing.Brush,System.Drawing.Rectangle[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1412C9-L1422C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1412C9-L1422C6" }, { "DocsId": "M:System.Drawing.Graphics.FillPolygon(System.Drawing.Brush,System.Drawing.PointF[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1429C9-L1430C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1429C9-L1430C6" }, { "DocsId": "M:System.Drawing.Graphics.FillPolygon(System.Drawing.Brush,System.Drawing.PointF[],System.Drawing.Drawing2D.FillMode)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1437C9-L1448C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1437C9-L1448C6" }, { "DocsId": "M:System.Drawing.Graphics.FillPolygon(System.Drawing.Brush,System.Drawing.Point[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1455C9-L1456C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1455C9-L1456C6" }, { "DocsId": "M:System.Drawing.Graphics.FillPolygon(System.Drawing.Brush,System.Drawing.Point[],System.Drawing.Drawing2D.FillMode)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1463C9-L1474C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1463C9-L1474C6" }, { "DocsId": "M:System.Drawing.Graphics.FillEllipse(System.Drawing.Brush,System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1481C9-L1482C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1481C9-L1482C6" }, { "DocsId": "M:System.Drawing.Graphics.FillEllipse(System.Drawing.Brush,System.Single,System.Single,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1489C9-L1495C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1489C9-L1495C6" }, { "DocsId": "M:System.Drawing.Graphics.FillEllipse(System.Drawing.Brush,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1502C9-L1503C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1502C9-L1503C6" }, { "DocsId": "M:System.Drawing.Graphics.FillEllipse(System.Drawing.Brush,System.Int32,System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1510C9-L1516C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1510C9-L1516C6" }, { "DocsId": "M:System.Drawing.Graphics.FillPie(System.Drawing.Brush,System.Drawing.Rectangle,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1523C9-L1524C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1523C9-L1524C6" }, { "DocsId": "M:System.Drawing.Graphics.FillPie(System.Drawing.Brush,System.Drawing.RectangleF,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1535C9-L1536C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1535C9-L1536C6" }, { "DocsId": "M:System.Drawing.Graphics.FillPie(System.Drawing.Brush,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1543C9-L1551C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1543C9-L1551C6" }, { "DocsId": "M:System.Drawing.Graphics.FillPie(System.Drawing.Brush,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1558C9-L1566C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1558C9-L1566C6" }, { "DocsId": "M:System.Drawing.Graphics.FillClosedCurve(System.Drawing.Brush,System.Drawing.PointF[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1573C9-L1583C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1573C9-L1583C6" }, { "DocsId": "M:System.Drawing.Graphics.FillClosedCurve(System.Drawing.Brush,System.Drawing.PointF[],System.Drawing.Drawing2D.FillMode)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1590C9-L1591C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1590C9-L1591C6" }, { "DocsId": "M:System.Drawing.Graphics.FillClosedCurve(System.Drawing.Brush,System.Drawing.PointF[],System.Drawing.Drawing2D.FillMode,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1595C9-L1607C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1595C9-L1607C6" }, { "DocsId": "M:System.Drawing.Graphics.FillClosedCurve(System.Drawing.Brush,System.Drawing.Point[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1614C9-L1624C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1614C9-L1624C6" }, { "DocsId": "M:System.Drawing.Graphics.FillClosedCurve(System.Drawing.Brush,System.Drawing.Point[],System.Drawing.Drawing2D.FillMode)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1628C9-L1629C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1628C9-L1629C6" }, { "DocsId": "M:System.Drawing.Graphics.FillClosedCurve(System.Drawing.Brush,System.Drawing.Point[],System.Drawing.Drawing2D.FillMode,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1633C9-L1645C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1633C9-L1645C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawString(System.String,System.Drawing.Font,System.Drawing.Brush,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1661C9-L1662C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1661C9-L1662C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawString(System.String,System.Drawing.Font,System.Drawing.Brush,System.Drawing.PointF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1685C9-L1686C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1685C9-L1686C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawString(System.String,System.Drawing.Font,System.Drawing.Brush,System.Single,System.Single,System.Drawing.StringFormat)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1714C9-L1715C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1714C9-L1715C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawString(System.String,System.Drawing.Font,System.Drawing.Brush,System.Drawing.PointF,System.Drawing.StringFormat)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1742C9-L1743C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1742C9-L1743C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawString(System.String,System.Drawing.Font,System.Drawing.Brush,System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1775C9-L1776C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1775C9-L1776C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawString(System.String,System.Drawing.Font,System.Drawing.Brush,System.Drawing.RectangleF,System.Drawing.StringFormat)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1819C9-L1832C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1819C9-L1832C6" }, { "DocsId": "M:System.Drawing.Graphics.MeasureString(System.String,System.Drawing.Font,System.Drawing.SizeF,System.Drawing.StringFormat,System.Int32@,System.Int32@)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1869C9-L1893C33" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1869C9-L1893C33" }, { "DocsId": "M:System.Drawing.Graphics.MeasureString(System.String,System.Drawing.Font,System.Drawing.PointF,System.Drawing.StringFormat)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1938C9-L1957C33" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1938C9-L1957C33" }, { "DocsId": "M:System.Drawing.Graphics.MeasureString(System.String,System.Drawing.Font,System.Drawing.SizeF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1988C78-L1988C121" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1988C78-L1988C121" }, { "DocsId": "M:System.Drawing.Graphics.MeasureString(System.String,System.Drawing.Font,System.Drawing.SizeF,System.Drawing.StringFormat)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2000C9-L2019C33" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2000C9-L2019C33" }, { "DocsId": "M:System.Drawing.Graphics.MeasureString(System.String,System.Drawing.Font)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2075C9-L2075C59" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2075C9-L2075C59" }, { "DocsId": "M:System.Drawing.Graphics.MeasureString(System.String,System.Drawing.Font,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2090C9-L2090C68" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2090C9-L2090C68" }, { "DocsId": "M:System.Drawing.Graphics.MeasureString(System.String,System.Drawing.Font,System.Int32,System.Drawing.StringFormat)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2105C9-L2105C76" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2105C9-L2105C76" }, { "DocsId": "M:System.Drawing.Graphics.MeasureCharacterRanges(System.String,System.Drawing.Font,System.Drawing.RectangleF,System.Drawing.StringFormat)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2137C9-L2165C24" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2137C9-L2165C24" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.PointF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2210C9-L2211C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2210C9-L2211C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2215C9-L2223C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2215C9-L2223C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2227C9-L2228C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2227C9-L2228C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Single,System.Single,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2232C9-L2242C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2232C9-L2242C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.Point)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2246C9-L2247C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2246C9-L2247C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2251C9-L2260C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2251C9-L2260C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2264C9-L2265C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2264C9-L2265C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Int32,System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2269C9-L2279C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2269C9-L2279C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawImageUnscaled(System.Drawing.Image,System.Drawing.Point)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2283C9-L2284C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2283C9-L2284C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawImageUnscaled(System.Drawing.Image,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2288C9-L2289C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2288C9-L2289C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawImageUnscaled(System.Drawing.Image,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2293C9-L2294C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2293C9-L2294C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawImageUnscaled(System.Drawing.Image,System.Int32,System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2298C9-L2299C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2298C9-L2299C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawImageUnscaledAndClipped(System.Drawing.Image,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2303C9-L2311C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2303C9-L2311C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.PointF[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2325C9-L2342C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2325C9-L2342C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.Point[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2346C9-L2363C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2346C9-L2363C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Single,System.Single,System.Drawing.RectangleF,System.Drawing.GraphicsUnit)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2367C9-L2378C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2367C9-L2378C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Int32,System.Int32,System.Drawing.Rectangle,System.Drawing.GraphicsUnit)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2382C9-L2393C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2382C9-L2393C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.RectangleF,System.Drawing.RectangleF,System.Drawing.GraphicsUnit)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2397C9-L2411C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2397C9-L2411C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Drawing.GraphicsUnit)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2415C9-L2429C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2415C9-L2429C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.PointF[],System.Drawing.RectangleF,System.Drawing.GraphicsUnit)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2433C9-L2455C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2433C9-L2455C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.PointF[],System.Drawing.RectangleF,System.Drawing.GraphicsUnit,System.Drawing.Imaging.ImageAttributes)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2459C9-L2460C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2459C9-L2460C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.PointF[],System.Drawing.RectangleF,System.Drawing.GraphicsUnit,System.Drawing.Imaging.ImageAttributes,System.Drawing.Graphics.DrawImageAbort)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2470C9-L2471C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2470C9-L2471C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.PointF[],System.Drawing.RectangleF,System.Drawing.GraphicsUnit,System.Drawing.Imaging.ImageAttributes,System.Drawing.Graphics.DrawImageAbort,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2482C9-L2504C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2482C9-L2504C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.Point[],System.Drawing.Rectangle,System.Drawing.GraphicsUnit)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2508C9-L2509C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2508C9-L2509C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.Point[],System.Drawing.Rectangle,System.Drawing.GraphicsUnit,System.Drawing.Imaging.ImageAttributes)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2518C9-L2519C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2518C9-L2519C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.Point[],System.Drawing.Rectangle,System.Drawing.GraphicsUnit,System.Drawing.Imaging.ImageAttributes,System.Drawing.Graphics.DrawImageAbort)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2529C9-L2530C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2529C9-L2530C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.Point[],System.Drawing.Rectangle,System.Drawing.GraphicsUnit,System.Drawing.Imaging.ImageAttributes,System.Drawing.Graphics.DrawImageAbort,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2541C9-L2563C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2541C9-L2563C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.Rectangle,System.Single,System.Single,System.Single,System.Single,System.Drawing.GraphicsUnit)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2574C9-L2575C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2574C9-L2575C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.Rectangle,System.Single,System.Single,System.Single,System.Single,System.Drawing.GraphicsUnit,System.Drawing.Imaging.ImageAttributes)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2587C9-L2588C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2587C9-L2588C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.Rectangle,System.Single,System.Single,System.Single,System.Single,System.Drawing.GraphicsUnit,System.Drawing.Imaging.ImageAttributes,System.Drawing.Graphics.DrawImageAbort)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2601C9-L2602C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2601C9-L2602C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.Rectangle,System.Single,System.Single,System.Single,System.Single,System.Drawing.GraphicsUnit,System.Drawing.Imaging.ImageAttributes,System.Drawing.Graphics.DrawImageAbort,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2616C9-L2630C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2616C9-L2630C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.Rectangle,System.Int32,System.Int32,System.Int32,System.Int32,System.Drawing.GraphicsUnit)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2641C9-L2642C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2641C9-L2642C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.Rectangle,System.Int32,System.Int32,System.Int32,System.Int32,System.Drawing.GraphicsUnit,System.Drawing.Imaging.ImageAttributes)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2654C9-L2655C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2654C9-L2655C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.Rectangle,System.Int32,System.Int32,System.Int32,System.Int32,System.Drawing.GraphicsUnit,System.Drawing.Imaging.ImageAttributes,System.Drawing.Graphics.DrawImageAbort)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2668C9-L2669C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2668C9-L2669C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.Rectangle,System.Int32,System.Int32,System.Int32,System.Int32,System.Drawing.GraphicsUnit,System.Drawing.Imaging.ImageAttributes,System.Drawing.Graphics.DrawImageAbort,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2683C9-L2697C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2683C9-L2697C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawLine(System.Drawing.Pen,System.Drawing.PointF,System.Drawing.PointF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2704C9-L2705C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2704C9-L2705C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawLines(System.Drawing.Pen,System.Drawing.PointF[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2712C9-L2722C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2712C9-L2722C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawLine(System.Drawing.Pen,System.Int32,System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2730C9-L2733C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2730C9-L2733C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawLine(System.Drawing.Pen,System.Drawing.Point,System.Drawing.Point)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2740C9-L2741C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2740C9-L2741C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawLines(System.Drawing.Pen,System.Drawing.Point[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2748C9-L2759C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2748C9-L2759C6" }, { "DocsId": "M:System.Drawing.Graphics.CopyFromScreen(System.Drawing.Point,System.Drawing.Point,System.Drawing.Size)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2766C9-L2767C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2766C9-L2767C6" }, { "DocsId": "M:System.Drawing.Graphics.CopyFromScreen(System.Int32,System.Int32,System.Int32,System.Int32,System.Drawing.Size)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2774C9-L2775C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2774C9-L2775C6" }, { "DocsId": "M:System.Drawing.Graphics.CopyFromScreen(System.Drawing.Point,System.Drawing.Point,System.Drawing.Size,System.Drawing.CopyPixelOperation)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2783C9-L2784C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2783C9-L2784C6" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.PointF,System.Drawing.Graphics.EnumerateMetafileProc)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2788C9-L2789C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2788C9-L2789C6" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.PointF,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2793C9-L2794C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2793C9-L2794C6" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.Point,System.Drawing.Graphics.EnumerateMetafileProc)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2798C9-L2799C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2798C9-L2799C6" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.Point,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2803C9-L2804C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2803C9-L2804C6" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.RectangleF,System.Drawing.Graphics.EnumerateMetafileProc)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2808C9-L2809C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2808C9-L2809C6" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.RectangleF,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2813C9-L2814C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2813C9-L2814C6" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.Rectangle,System.Drawing.Graphics.EnumerateMetafileProc)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2818C9-L2819C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2818C9-L2819C6" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.Rectangle,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2823C9-L2824C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2823C9-L2824C6" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.PointF[],System.Drawing.Graphics.EnumerateMetafileProc)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2828C9-L2829C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2828C9-L2829C6" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.PointF[],System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2837C9-L2838C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2837C9-L2838C6" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.Point[],System.Drawing.Graphics.EnumerateMetafileProc)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2842C9-L2843C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2842C9-L2843C6" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.Point[],System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2847C9-L2848C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2847C9-L2848C6" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.PointF,System.Drawing.RectangleF,System.Drawing.GraphicsUnit,System.Drawing.Graphics.EnumerateMetafileProc)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2857C9-L2858C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2857C9-L2858C6" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.PointF,System.Drawing.RectangleF,System.Drawing.GraphicsUnit,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2868C9-L2869C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2868C9-L2869C6" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.Point,System.Drawing.Rectangle,System.Drawing.GraphicsUnit,System.Drawing.Graphics.EnumerateMetafileProc)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2878C9-L2879C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2878C9-L2879C6" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.Point,System.Drawing.Rectangle,System.Drawing.GraphicsUnit,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2889C9-L2890C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2889C9-L2890C6" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.RectangleF,System.Drawing.RectangleF,System.Drawing.GraphicsUnit,System.Drawing.Graphics.EnumerateMetafileProc)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2899C9-L2900C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2899C9-L2900C6" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.RectangleF,System.Drawing.RectangleF,System.Drawing.GraphicsUnit,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2910C9-L2911C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2910C9-L2911C6" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Drawing.GraphicsUnit,System.Drawing.Graphics.EnumerateMetafileProc)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2920C9-L2921C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2920C9-L2921C6" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Drawing.GraphicsUnit,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2931C9-L2932C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2931C9-L2932C6" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.PointF[],System.Drawing.RectangleF,System.Drawing.GraphicsUnit,System.Drawing.Graphics.EnumerateMetafileProc)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2941C9-L2942C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2941C9-L2942C6" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.PointF[],System.Drawing.RectangleF,System.Drawing.GraphicsUnit,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2952C9-L2953C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2952C9-L2953C6" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.Point[],System.Drawing.Rectangle,System.Drawing.GraphicsUnit,System.Drawing.Graphics.EnumerateMetafileProc)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2962C9-L2963C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2962C9-L2963C6" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.Point[],System.Drawing.Rectangle,System.Drawing.GraphicsUnit,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2973C9-L2974C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2973C9-L2974C6" }, { "DocsId": "M:System.Drawing.Graphics.TransformPoints(System.Drawing.Drawing2D.CoordinateSpace,System.Drawing.Drawing2D.CoordinateSpace,System.Drawing.PointF[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2978C9-L2989C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2978C9-L2989C6" }, { "DocsId": "M:System.Drawing.Graphics.TransformPoints(System.Drawing.Drawing2D.CoordinateSpace,System.Drawing.Drawing2D.CoordinateSpace,System.Drawing.Point[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2993C9-L3004C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2993C9-L3004C6" }, { "DocsId": "M:System.Drawing.Graphics.CopyFromScreen(System.Int32,System.Int32,System.Int32,System.Int32,System.Drawing.Size,System.Drawing.CopyPixelOperation)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3093C17-L3135C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L16707566C0-L3135C6" }, { "DocsId": "M:System.Drawing.Graphics.GetNearestColor(System.Drawing.Color)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3139C9-L3141C40" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3139C9-L3141C40" }, { "DocsId": "M:System.Drawing.Graphics.DrawLine(System.Drawing.Pen,System.Single,System.Single,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3149C9-L3152C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3149C9-L3152C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawBeziers(System.Drawing.Pen,System.Drawing.PointF[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3159C9-L3169C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3159C9-L3169C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawBeziers(System.Drawing.Pen,System.Drawing.Point[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3176C9-L3187C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3176C9-L3187C6" }, { "DocsId": "M:System.Drawing.Graphics.FillPath(System.Drawing.Brush,System.Drawing.Drawing2D.GraphicsPath)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3194C9-L3201C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3194C9-L3201C6" }, { "DocsId": "M:System.Drawing.Graphics.FillRegion(System.Drawing.Brush,System.Drawing.Region)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3208C9-L3215C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3208C9-L3215C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawIcon(System.Drawing.Icon,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3219C9-L3232C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3219C9-L3232C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawIcon(System.Drawing.Icon,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3242C9-L3255C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3242C9-L3255C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawIconUnstretched(System.Drawing.Icon,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3265C9-L3275C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3265C9-L3275C6" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.PointF,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr,System.Drawing.Imaging.ImageAttributes)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3284C9-L3291C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3284C9-L3291C6" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.Point,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr,System.Drawing.Imaging.ImageAttributes)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3299C9-L3306C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3299C9-L3306C6" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.RectangleF,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr,System.Drawing.Imaging.ImageAttributes)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3315C9-L3322C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3315C9-L3322C6" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.Rectangle,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr,System.Drawing.Imaging.ImageAttributes)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3331C9-L3338C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3331C9-L3338C6" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.PointF[],System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr,System.Drawing.Imaging.ImageAttributes)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3347C9-L3362C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3347C9-L3362C6" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.Point[],System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr,System.Drawing.Imaging.ImageAttributes)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3371C9-L3386C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3371C9-L3386C6" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.PointF,System.Drawing.RectangleF,System.Drawing.GraphicsUnit,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr,System.Drawing.Imaging.ImageAttributes)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3397C9-L3406C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3397C9-L3406C6" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.Point,System.Drawing.Rectangle,System.Drawing.GraphicsUnit,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr,System.Drawing.Imaging.ImageAttributes)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3417C9-L3426C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3417C9-L3426C6" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.RectangleF,System.Drawing.RectangleF,System.Drawing.GraphicsUnit,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr,System.Drawing.Imaging.ImageAttributes)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3437C9-L3446C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3437C9-L3446C6" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Drawing.GraphicsUnit,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr,System.Drawing.Imaging.ImageAttributes)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3457C9-L3466C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3457C9-L3466C6" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.PointF[],System.Drawing.RectangleF,System.Drawing.GraphicsUnit,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr,System.Drawing.Imaging.ImageAttributes)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3477C9-L3494C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3477C9-L3494C6" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.Point[],System.Drawing.Rectangle,System.Drawing.GraphicsUnit,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr,System.Drawing.Imaging.ImageAttributes)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3505C9-L3522C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3505C9-L3522C6" }, { "DocsId": "M:System.Drawing.Graphics.GetContextInfo", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3542C9-L3543C97" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3542C9-L3543C97" }, { "DocsId": "M:System.Drawing.Graphics.GetContextInfo(System.Drawing.PointF@)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3626C9-L3629C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3626C9-L3629C6" }, { "DocsId": "M:System.Drawing.Graphics.GetContextInfo(System.Drawing.PointF@,System.Drawing.Region@)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3640C9-L3643C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3640C9-L3643C6" }, { "DocsId": "M:System.Drawing.Graphics.Save", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3701C9-L3714C41" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3701C9-L3714C41" }, { "DocsId": "M:System.Drawing.Graphics.Restore(System.Drawing.Drawing2D.GraphicsState)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3719C9-L3721C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3719C9-L3721C6" }, { "DocsId": "M:System.Drawing.Graphics.BeginContainer(System.Drawing.RectangleF,System.Drawing.RectangleF,System.Drawing.GraphicsUnit)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3725C9-L3739C45" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3725C9-L3739C45" }, { "DocsId": "M:System.Drawing.Graphics.BeginContainer", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3744C9-L3756C45" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3744C9-L3756C45" }, { "DocsId": "M:System.Drawing.Graphics.EndContainer(System.Drawing.Drawing2D.GraphicsContainer)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3761C9-L3765C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3761C9-L3765C6" }, { "DocsId": "M:System.Drawing.Graphics.BeginContainer(System.Drawing.Rectangle,System.Drawing.Rectangle,System.Drawing.GraphicsUnit)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3769C9-L3783C45" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3769C9-L3783C45" }, { "DocsId": "M:System.Drawing.Graphics.AddMetafileComment(System.Byte[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3788C9-L3791C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3788C9-L3791C6" }, { "DocsId": "M:System.Drawing.Graphics.GetHalftonePalette", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3795C9-L3808C34" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3795C9-L3808C34" }, { "DocsId": "P:System.Drawing.Graphics.Clip", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L299C13-L303C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L299C13-L303C27" }, { "DocsId": "P:System.Drawing.Graphics.ClipBounds", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L312C13-L313C25" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L312C13-L313C25" }, { "DocsId": "P:System.Drawing.Graphics.CompositingMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L324C13-L325C25" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L324C13-L325C25" }, { "DocsId": "P:System.Drawing.Graphics.CompositingQuality", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L340C13-L341C23" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L340C13-L341C23" }, { "DocsId": "P:System.Drawing.Graphics.DpiX", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L356C13-L357C24" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L356C13-L357C24" }, { "DocsId": "P:System.Drawing.Graphics.DpiY", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L365C13-L366C24" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L365C13-L366C24" }, { "DocsId": "P:System.Drawing.Graphics.InterpolationMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L377C13-L378C25" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L377C13-L378C25" }, { "DocsId": "P:System.Drawing.Graphics.IsClipEmpty", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L410C13-L411C28" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L410C13-L411C28" }, { "DocsId": "P:System.Drawing.Graphics.IsVisibleClipEmpty", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L419C13-L420C28" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L419C13-L420C28" }, { "DocsId": "P:System.Drawing.Graphics.PageScale", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L428C13-L429C26" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L428C13-L429C26" }, { "DocsId": "P:System.Drawing.Graphics.PageUnit", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L445C13-L446C25" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L445C13-L446C25" }, { "DocsId": "P:System.Drawing.Graphics.PixelOffsetMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L466C13-L467C25" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L466C13-L467C25" }, { "DocsId": "P:System.Drawing.Graphics.RenderingOrigin", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L487C13-L488C36" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L487C13-L488C36" }, { "DocsId": "P:System.Drawing.Graphics.SmoothingMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L500C13-L501C25" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L500C13-L501C25" }, { "DocsId": "P:System.Drawing.Graphics.TextContrast", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L533C13-L534C33" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L533C13-L534C33" }, { "DocsId": "P:System.Drawing.Graphics.TextRenderingHint", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L549C13-L550C25" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L549C13-L550C25" }, { "DocsId": "P:System.Drawing.Graphics.Transform", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L568C13-L572C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L568C13-L572C27" }, { "DocsId": "P:System.Drawing.Graphics.TransformElements", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L591C13-L609C10" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L591C13-L609C10" }, { "DocsId": "P:System.Drawing.Graphics.VisibleClipBounds", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3650C13-L3655C25" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3650C13-L3655C25" }, { "DocsId": "T:System.Drawing.Graphics.DrawImageAbort", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" }, { "DocsId": "T:System.Drawing.Graphics.EnumerateMetafileProc", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" } ], "DocsId": "T:System.Drawing.Graphics", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.GraphicsUnit.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/GraphicsUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/GraphicsUnit.cs" }, { "DocsId": "F:System.Drawing.GraphicsUnit.World", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/GraphicsUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/GraphicsUnit.cs" }, { "DocsId": "F:System.Drawing.GraphicsUnit.Display", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/GraphicsUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/GraphicsUnit.cs" }, { "DocsId": "F:System.Drawing.GraphicsUnit.Pixel", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/GraphicsUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/GraphicsUnit.cs" }, { "DocsId": "F:System.Drawing.GraphicsUnit.Point", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/GraphicsUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/GraphicsUnit.cs" }, { "DocsId": "F:System.Drawing.GraphicsUnit.Inch", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/GraphicsUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/GraphicsUnit.cs" }, { "DocsId": "F:System.Drawing.GraphicsUnit.Document", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/GraphicsUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/GraphicsUnit.cs" }, { "DocsId": "F:System.Drawing.GraphicsUnit.Millimeter", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/GraphicsUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/GraphicsUnit.cs" } ], "DocsId": "T:System.Drawing.GraphicsUnit", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/GraphicsUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/GraphicsUnit.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.IconConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/IconConverter.cs#L14C9-L14C47" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/IconConverter.cs#L14C9-L14C47" }, { "DocsId": "M:System.Drawing.IconConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/IconConverter.cs#L19C9-L20C86" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/IconConverter.cs#L19C9-L20C86" }, { "DocsId": "M:System.Drawing.IconConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/IconConverter.cs#L25C9-L25C118" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/IconConverter.cs#L25C9-L25C118" }, { "DocsId": "M:System.Drawing.IconConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/IconConverter.cs#L30C9-L59C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/IconConverter.cs#L30C9-L59C6" }, { "DocsId": "M:System.Drawing.IconConverter.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/IconConverter.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/IconConverter.cs" } ], "DocsId": "T:System.Drawing.IconConverter", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/IconConverter.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/IconConverter.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Image.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Image.cs#L131C9-L135C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Image.cs#L131C9-L135C6" }, { "DocsId": "M:System.Drawing.Image.FromFile(System.String)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Image.cs#L140C54-L140C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Image.cs#L140C54-L140C79" }, { "DocsId": "M:System.Drawing.Image.FromFile(System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Image.cs#L144C9-L171C20" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Image.cs#L144C9-L171C20" }, { "DocsId": "M:System.Drawing.Image.FromStream(System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Image.cs#L177C54-L177C85" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Image.cs#L177C54-L177C85" }, { "DocsId": "M:System.Drawing.Image.FromStream(System.IO.Stream,System.Boolean)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Image.cs#L179C87-L179C139" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Image.cs#L179C87-L179C139" }, { "DocsId": "M:System.Drawing.Image.FromStream(System.IO.Stream,System.Boolean,System.Boolean)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Image.cs#L183C9-L192C20" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Image.cs#L183C9-L192C20" }, { "DocsId": "M:System.Drawing.Image.Dispose", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Image.cs#L231C9-L233C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Image.cs#L231C9-L233C6" }, { "DocsId": "M:System.Drawing.Image.Finalize", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Image.cs#L238C17-L238C31" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Image.cs#L238C17-L16707566C0" }, { "DocsId": "M:System.Drawing.Image.Clone", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Image.cs#L247C9-L250C46" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Image.cs#L247C9-L250C46" }, { "DocsId": "M:System.Drawing.Image.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Image.cs#L262C9-L288C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Image.cs#L262C9-L288C6" }, { "DocsId": "M:System.Drawing.Image.Save(System.String)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Image.cs#L293C42-L293C67" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Image.cs#L293C42-L293C67" }, { "DocsId": "M:System.Drawing.Image.Save(System.String,System.Drawing.Imaging.ImageFormat)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Image.cs#L300C9-L305C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Image.cs#L300C9-L305C6" }, { "DocsId": "M:System.Drawing.Image.Save(System.String,System.Drawing.Imaging.ImageCodecInfo,System.Drawing.Imaging.EncoderParameters)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Image.cs#L312C9-L352C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Image.cs#L312C9-L352C6" }, { "DocsId": "M:System.Drawing.Image.Save(System.IO.Stream,System.Drawing.Imaging.ImageFormat)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Image.cs#L372C9-L376C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Image.cs#L372C9-L376C6" }, { "DocsId": "M:System.Drawing.Image.Save(System.IO.Stream,System.Drawing.Imaging.ImageCodecInfo,System.Drawing.Imaging.EncoderParameters)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Image.cs#L383C9-L425C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Image.cs#L383C9-L425C6" }, { "DocsId": "M:System.Drawing.Image.SaveAdd(System.Drawing.Imaging.EncoderParameters)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Image.cs#L432C9-L453C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Image.cs#L432C9-L453C6" }, { "DocsId": "M:System.Drawing.Image.SaveAdd(System.Drawing.Image,System.Drawing.Imaging.EncoderParameters)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Image.cs#L460C9-L485C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Image.cs#L460C9-L485C6" }, { "DocsId": "M:System.Drawing.Image.GetBounds(System.Drawing.GraphicsUnit@)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Image.cs#L697C9-L698C23" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Image.cs#L697C9-L698C23" }, { "DocsId": "M:System.Drawing.Image.GetThumbnailImage(System.Int32,System.Int32,System.Drawing.Image.GetThumbnailImageAbort,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Image.cs#L761C9-L769C46" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Image.cs#L761C9-L769C46" }, { "DocsId": "M:System.Drawing.Image.GetFrameCount(System.Drawing.Imaging.FrameDimension)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Image.cs#L790C9-L792C22" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Image.cs#L790C9-L792C22" }, { "DocsId": "M:System.Drawing.Image.GetPropertyItem(System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Image.cs#L800C9-L822C23" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Image.cs#L800C9-L822C23" }, { "DocsId": "M:System.Drawing.Image.SelectActiveFrame(System.Drawing.Imaging.FrameDimension,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Image.cs#L830C9-L832C18" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Image.cs#L830C9-L832C18" }, { "DocsId": "M:System.Drawing.Image.SetPropertyItem(System.Drawing.Imaging.PropertyItem)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Image.cs#L840C16-L851C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Image.cs#L840C16-L851C6" }, { "DocsId": "M:System.Drawing.Image.RotateFlip(System.Drawing.RotateFlipType)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Image.cs#L855C9-L857C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Image.cs#L855C9-L857C6" }, { "DocsId": "M:System.Drawing.Image.RemovePropertyItem(System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Image.cs#L864C9-L866C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Image.cs#L864C9-L866C6" }, { "DocsId": "M:System.Drawing.Image.GetEncoderParameterList(System.Guid)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Image.cs#L875C9-L899C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Image.cs#L875C9-L899C27" }, { "DocsId": "M:System.Drawing.Image.FromHbitmap(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Image.cs#L905C57-L905C90" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Image.cs#L905C57-L905C90" }, { "DocsId": "M:System.Drawing.Image.FromHbitmap(System.IntPtr,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Image.cs#L912C9-L913C35" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Image.cs#L912C9-L913C35" }, { "DocsId": "M:System.Drawing.Image.IsExtendedPixelFormat(System.Drawing.Imaging.PixelFormat)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Image.cs#L921C9-L921C53" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Image.cs#L921C9-L921C53" }, { "DocsId": "M:System.Drawing.Image.IsCanonicalPixelFormat(System.Drawing.Imaging.PixelFormat)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Image.cs#L936C9-L936C54" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Image.cs#L936C9-L936C54" }, { "DocsId": "M:System.Drawing.Image.GetPixelFormatSize(System.Drawing.Imaging.PixelFormat)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Image.cs#L978C9-L978C53" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Image.cs#L978C9-L978C53" }, { "DocsId": "M:System.Drawing.Image.IsAlphaPixelFormat(System.Drawing.Imaging.PixelFormat)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Image.cs#L986C9-L986C50" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Image.cs#L986C9-L986C50" }, { "DocsId": "P:System.Drawing.Image.Tag", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Image.cs#L95C16-L95C25" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Image.cs#L95C16-L95C25" }, { "DocsId": "P:System.Drawing.Image.PhysicalDimension", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Image.cs#L506C13-L509C45" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Image.cs#L506C13-L509C45" }, { "DocsId": "P:System.Drawing.Image.Size", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Image.cs#L516C25-L516C43" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Image.cs#L516C25-L516C43" }, { "DocsId": "P:System.Drawing.Image.Width", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Image.cs#L530C13-L533C26" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Image.cs#L530C13-L533C26" }, { "DocsId": "P:System.Drawing.Image.Height", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Image.cs#L549C13-L552C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Image.cs#L549C13-L552C27" }, { "DocsId": "P:System.Drawing.Image.HorizontalResolution", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Image.cs#L565C13-L568C28" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Image.cs#L565C13-L568C28" }, { "DocsId": "P:System.Drawing.Image.VerticalResolution", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Image.cs#L581C13-L584C28" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Image.cs#L581C13-L584C28" }, { "DocsId": "P:System.Drawing.Image.Flags", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Image.cs#L598C13-L601C26" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Image.cs#L598C13-L601C26" }, { "DocsId": "P:System.Drawing.Image.RawFormat", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Image.cs#L612C13-L617C42" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Image.cs#L612C13-L617C42" }, { "DocsId": "P:System.Drawing.Image.PixelFormat", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Image.cs#L628C13-L629C73" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Image.cs#L628C13-L629C73" }, { "DocsId": "P:System.Drawing.Image.PropertyIdList", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Image.cs#L641C13-L651C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Image.cs#L641C13-L651C27" }, { "DocsId": "P:System.Drawing.Image.PropertyItems", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Image.cs#L663C13-L688C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Image.cs#L663C13-L688C27" }, { "DocsId": "P:System.Drawing.Image.Palette", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Image.cs#L709C13-L732C28" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Image.cs#L709C13-L732C28" }, { "DocsId": "P:System.Drawing.Image.FrameDimensionsList", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Image.cs#L957C13-L969C26" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Image.cs#L957C13-L969C26" }, { "DocsId": "T:System.Drawing.Image.GetThumbnailImageAbort", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Image.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Image.cs" } ], "DocsId": "T:System.Drawing.Image", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Image.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Image.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.ImageAnimator.UpdateFrames(System.Drawing.Image)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/ImageAnimator.cs#L102C9-L156C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/ImageAnimator.cs#L102C9-L156C6" }, { "DocsId": "M:System.Drawing.ImageAnimator.UpdateFrames", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/ImageAnimator.cs#L163C9-L193C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/ImageAnimator.cs#L163C9-L193C6" }, { "DocsId": "M:System.Drawing.ImageAnimator.Animate(System.Drawing.Image,System.EventHandler)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/ImageAnimator.cs#L201C9-L280C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/ImageAnimator.cs#L201C9-L280C6" }, { "DocsId": "M:System.Drawing.ImageAnimator.CanAnimate(System.Drawing.Image)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/ImageAnimator.cs#L287C9-L308C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/ImageAnimator.cs#L287C9-L308C6" }, { "DocsId": "M:System.Drawing.ImageAnimator.StopAnimate(System.Drawing.Image,System.EventHandler)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/ImageAnimator.cs#L316C9-L373C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/ImageAnimator.cs#L316C9-L373C6" } ], "DocsId": "T:System.Drawing.ImageAnimator", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/ImageAnimator.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/ImageAnimator.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.ImageConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/ImageConverter.cs#L16C9-L16C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/ImageConverter.cs#L16C9-L16C75" }, { "DocsId": "M:System.Drawing.ImageConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/ImageConverter.cs#L21C9-L21C87" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/ImageConverter.cs#L21C9-L21C87" }, { "DocsId": "M:System.Drawing.ImageConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/ImageConverter.cs#L26C9-L40C62" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/ImageConverter.cs#L26C9-L40C62" }, { "DocsId": "M:System.Drawing.ImageConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/ImageConverter.cs#L46C9-L83C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/ImageConverter.cs#L46C9-L83C6" }, { "DocsId": "M:System.Drawing.ImageConverter.GetProperties(System.ComponentModel.ITypeDescriptorContext,System.Object,System.Attribute[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/ImageConverter.cs#L100C9-L100C72" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/ImageConverter.cs#L100C9-L100C72" }, { "DocsId": "M:System.Drawing.ImageConverter.GetPropertiesSupported(System.ComponentModel.ITypeDescriptorContext)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/ImageConverter.cs#L103C85-L103C89" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/ImageConverter.cs#L103C85-L103C89" }, { "DocsId": "M:System.Drawing.ImageConverter.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/ImageConverter.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/ImageConverter.cs" } ], "DocsId": "T:System.Drawing.ImageConverter", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/ImageConverter.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/ImageConverter.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.ImageFormatConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/ImageFormatConverter.cs#L18C9-L18C89" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/ImageFormatConverter.cs#L18C9-L18C89" }, { "DocsId": "M:System.Drawing.ImageFormatConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/ImageFormatConverter.cs#L23C9-L27C60" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/ImageFormatConverter.cs#L23C9-L27C60" }, { "DocsId": "M:System.Drawing.ImageFormatConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/ImageFormatConverter.cs#L33C9-L72C106" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/ImageFormatConverter.cs#L33C9-L72C106" }, { "DocsId": "M:System.Drawing.ImageFormatConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/ImageFormatConverter.cs#L77C9-L120C73" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/ImageFormatConverter.cs#L77C9-L120C73" }, { "DocsId": "M:System.Drawing.ImageFormatConverter.GetStandardValues(System.ComponentModel.ITypeDescriptorContext)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/ImageFormatConverter.cs#L125C9-L139C12" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/ImageFormatConverter.cs#L125C9-L139C12" }, { "DocsId": "M:System.Drawing.ImageFormatConverter.GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/ImageFormatConverter.cs#L142C89-L142C93" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/ImageFormatConverter.cs#L142C89-L142C93" }, { "DocsId": "M:System.Drawing.ImageFormatConverter.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/ImageFormatConverter.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/ImageFormatConverter.cs" } ], "DocsId": "T:System.Drawing.ImageFormatConverter", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/ImageFormatConverter.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/ImageFormatConverter.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Pen.#ctor(System.Drawing.Color)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L42C31-L44C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L42C31-L44C6" }, { "DocsId": "M:System.Drawing.Pen.#ctor(System.Drawing.Color,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L50C5-L67C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L50C5-L67C6" }, { "DocsId": "M:System.Drawing.Pen.#ctor(System.Drawing.Brush)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L72C31-L74C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L72C31-L74C6" }, { "DocsId": "M:System.Drawing.Pen.#ctor(System.Drawing.Brush,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L79C5-L91C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L79C5-L91C6" }, { "DocsId": "M:System.Drawing.Pen.Clone", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L108C9-L111C35" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L108C9-L111C35" }, { "DocsId": "M:System.Drawing.Pen.Dispose", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L119C9-L121C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L119C9-L121C6" }, { "DocsId": "M:System.Drawing.Pen.Finalize", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L170C15-L170C29" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L170C15-L16707566C0" }, { "DocsId": "M:System.Drawing.Pen.SetLineCap(System.Drawing.Drawing2D.LineCap,System.Drawing.Drawing2D.LineCap,System.Drawing.Drawing2D.DashCap)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L202C9-L210C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L202C9-L210C6" }, { "DocsId": "M:System.Drawing.Pen.ResetTransform", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L500C9-L502C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L500C9-L502C6" }, { "DocsId": "M:System.Drawing.Pen.MultiplyTransform(System.Drawing.Drawing2D.Matrix)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L507C53-L507C99" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L507C53-L507C99" }, { "DocsId": "M:System.Drawing.Pen.MultiplyTransform(System.Drawing.Drawing2D.Matrix,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L514C9-L526C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L514C9-L526C6" }, { "DocsId": "M:System.Drawing.Pen.TranslateTransform(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L532C59-L532C106" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L532C59-L532C106" }, { "DocsId": "M:System.Drawing.Pen.TranslateTransform(System.Single,System.Single,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L539C9-L542C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L539C9-L542C6" }, { "DocsId": "M:System.Drawing.Pen.ScaleTransform(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L547C55-L547C98" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L547C55-L547C98" }, { "DocsId": "M:System.Drawing.Pen.ScaleTransform(System.Single,System.Single,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L554C9-L557C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L554C9-L557C6" }, { "DocsId": "M:System.Drawing.Pen.RotateTransform(System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L562C49-L562C92" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L562C49-L562C92" }, { "DocsId": "M:System.Drawing.Pen.RotateTransform(System.Single,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L569C9-L572C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L569C9-L572C6" }, { "DocsId": "M:System.Drawing.Pen.System#Drawing#Internal#ISystemColorTracker#OnSystemColorChanged", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L912C9-L916C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L912C9-L916C6" }, { "DocsId": "P:System.Drawing.Pen.Width", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L179C13-L183C29" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L179C13-L183C29" }, { "DocsId": "P:System.Drawing.Pen.StartCap", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L220C13-L223C38" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L220C13-L223C38" }, { "DocsId": "P:System.Drawing.Pen.EndCap", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L262C13-L265C36" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L262C13-L265C36" }, { "DocsId": "P:System.Drawing.Pen.CustomStartCap", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L305C13-L308C69" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L305C13-L308C69" }, { "DocsId": "P:System.Drawing.Pen.CustomEndCap", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L331C13-L333C69" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L331C13-L333C69" }, { "DocsId": "P:System.Drawing.Pen.DashCap", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L357C13-L360C37" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L357C13-L360C37" }, { "DocsId": "P:System.Drawing.Pen.LineJoin", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L387C13-L390C39" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L387C13-L390C39" }, { "DocsId": "P:System.Drawing.Pen.MiterLimit", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L416C13-L420C34" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L416C13-L420C34" }, { "DocsId": "P:System.Drawing.Pen.Alignment", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L442C13-L445C28" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L442C13-L445C28" }, { "DocsId": "P:System.Drawing.Pen.Transform", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L471C13-L475C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L471C13-L475C27" }, { "DocsId": "P:System.Drawing.Pen.PenType", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L591C13-L594C34" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L591C13-L594C34" }, { "DocsId": "P:System.Drawing.Pen.Color", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L605C13-L620C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L605C13-L620C27" }, { "DocsId": "P:System.Drawing.Pen.Brush", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L652C13-L680C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L652C13-L680C27" }, { "DocsId": "P:System.Drawing.Pen.DashStyle", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L717C13-L720C41" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L717C13-L720C41" }, { "DocsId": "P:System.Drawing.Pen.DashOffset", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L775C13-L779C34" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L775C13-L779C34" }, { "DocsId": "P:System.Drawing.Pen.DashPattern", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L800C13-L828C28" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L800C13-L828C28" }, { "DocsId": "P:System.Drawing.Pen.CompoundArray", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L876C13-L883C26" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L876C13-L883C26" } ], "DocsId": "T:System.Drawing.Pen", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pen.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pen.cs" }, { "Members": [ { "DocsId": "P:System.Drawing.Pens.Transparent", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L151C38-L151C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L151C38-L151C81" }, { "DocsId": "P:System.Drawing.Pens.AliceBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L153C36-L153C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L153C36-L153C75" }, { "DocsId": "P:System.Drawing.Pens.AntiqueWhite", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L154C39-L154C84" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L154C39-L154C84" }, { "DocsId": "P:System.Drawing.Pens.Aqua", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L155C31-L155C60" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L155C31-L155C60" }, { "DocsId": "P:System.Drawing.Pens.Aquamarine", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L156C37-L156C78" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L156C37-L156C78" }, { "DocsId": "P:System.Drawing.Pens.Azure", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L157C32-L157C63" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L157C32-L157C63" }, { "DocsId": "P:System.Drawing.Pens.Beige", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L159C32-L159C63" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L159C32-L159C63" }, { "DocsId": "P:System.Drawing.Pens.Bisque", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L160C33-L160C66" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L160C33-L160C66" }, { "DocsId": "P:System.Drawing.Pens.Black", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L161C32-L161C63" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L161C32-L161C63" }, { "DocsId": "P:System.Drawing.Pens.BlanchedAlmond", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L162C41-L162C90" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L162C41-L162C90" }, { "DocsId": "P:System.Drawing.Pens.Blue", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L163C31-L163C60" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L163C31-L163C60" }, { "DocsId": "P:System.Drawing.Pens.BlueViolet", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L164C37-L164C78" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L164C37-L164C78" }, { "DocsId": "P:System.Drawing.Pens.Brown", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L165C32-L165C63" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L165C32-L165C63" }, { "DocsId": "P:System.Drawing.Pens.BurlyWood", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L166C36-L166C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L166C36-L166C75" }, { "DocsId": "P:System.Drawing.Pens.CadetBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L168C36-L168C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L168C36-L168C75" }, { "DocsId": "P:System.Drawing.Pens.Chartreuse", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L169C37-L169C78" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L169C37-L169C78" }, { "DocsId": "P:System.Drawing.Pens.Chocolate", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L170C36-L170C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L170C36-L170C75" }, { "DocsId": "P:System.Drawing.Pens.Coral", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L171C32-L171C63" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L171C32-L171C63" }, { "DocsId": "P:System.Drawing.Pens.CornflowerBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L172C41-L172C90" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L172C41-L172C90" }, { "DocsId": "P:System.Drawing.Pens.Cornsilk", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L173C35-L173C72" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L173C35-L173C72" }, { "DocsId": "P:System.Drawing.Pens.Crimson", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L174C34-L174C69" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L174C34-L174C69" }, { "DocsId": "P:System.Drawing.Pens.Cyan", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L175C31-L175C60" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L175C31-L175C60" }, { "DocsId": "P:System.Drawing.Pens.DarkBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L177C35-L177C72" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L177C35-L177C72" }, { "DocsId": "P:System.Drawing.Pens.DarkCyan", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L178C35-L178C72" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L178C35-L178C72" }, { "DocsId": "P:System.Drawing.Pens.DarkGoldenrod", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L179C40-L179C87" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L179C40-L179C87" }, { "DocsId": "P:System.Drawing.Pens.DarkGray", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L180C35-L180C72" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L180C35-L180C72" }, { "DocsId": "P:System.Drawing.Pens.DarkGreen", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L181C36-L181C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L181C36-L181C75" }, { "DocsId": "P:System.Drawing.Pens.DarkKhaki", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L182C36-L182C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L182C36-L182C75" }, { "DocsId": "P:System.Drawing.Pens.DarkMagenta", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L183C38-L183C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L183C38-L183C81" }, { "DocsId": "P:System.Drawing.Pens.DarkOliveGreen", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L184C41-L184C90" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L184C41-L184C90" }, { "DocsId": "P:System.Drawing.Pens.DarkOrange", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L185C37-L185C78" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L185C37-L185C78" }, { "DocsId": "P:System.Drawing.Pens.DarkOrchid", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L186C37-L186C78" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L186C37-L186C78" }, { "DocsId": "P:System.Drawing.Pens.DarkRed", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L187C34-L187C69" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L187C34-L187C69" }, { "DocsId": "P:System.Drawing.Pens.DarkSalmon", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L188C37-L188C78" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L188C37-L188C78" }, { "DocsId": "P:System.Drawing.Pens.DarkSeaGreen", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L189C39-L189C84" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L189C39-L189C84" }, { "DocsId": "P:System.Drawing.Pens.DarkSlateBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L190C40-L190C87" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L190C40-L190C87" }, { "DocsId": "P:System.Drawing.Pens.DarkSlateGray", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L191C40-L191C87" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L191C40-L191C87" }, { "DocsId": "P:System.Drawing.Pens.DarkTurquoise", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L192C40-L192C87" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L192C40-L192C87" }, { "DocsId": "P:System.Drawing.Pens.DarkViolet", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L193C37-L193C78" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L193C37-L193C78" }, { "DocsId": "P:System.Drawing.Pens.DeepPink", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L194C35-L194C72" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L194C35-L194C72" }, { "DocsId": "P:System.Drawing.Pens.DeepSkyBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L195C38-L195C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L195C38-L195C81" }, { "DocsId": "P:System.Drawing.Pens.DimGray", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L196C34-L196C69" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L196C34-L196C69" }, { "DocsId": "P:System.Drawing.Pens.DodgerBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L197C37-L197C78" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L197C37-L197C78" }, { "DocsId": "P:System.Drawing.Pens.Firebrick", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L199C36-L199C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L199C36-L199C75" }, { "DocsId": "P:System.Drawing.Pens.FloralWhite", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L200C38-L200C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L200C38-L200C81" }, { "DocsId": "P:System.Drawing.Pens.ForestGreen", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L201C38-L201C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L201C38-L201C81" }, { "DocsId": "P:System.Drawing.Pens.Fuchsia", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L202C34-L202C69" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L202C34-L202C69" }, { "DocsId": "P:System.Drawing.Pens.Gainsboro", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L204C36-L204C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L204C36-L204C75" }, { "DocsId": "P:System.Drawing.Pens.GhostWhite", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L205C37-L205C78" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L205C37-L205C78" }, { "DocsId": "P:System.Drawing.Pens.Gold", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L206C31-L206C60" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L206C31-L206C60" }, { "DocsId": "P:System.Drawing.Pens.Goldenrod", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L207C36-L207C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L207C36-L207C75" }, { "DocsId": "P:System.Drawing.Pens.Gray", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L208C31-L208C60" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L208C31-L208C60" }, { "DocsId": "P:System.Drawing.Pens.Green", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L209C32-L209C63" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L209C32-L209C63" }, { "DocsId": "P:System.Drawing.Pens.GreenYellow", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L210C38-L210C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L210C38-L210C81" }, { "DocsId": "P:System.Drawing.Pens.Honeydew", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L212C35-L212C72" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L212C35-L212C72" }, { "DocsId": "P:System.Drawing.Pens.HotPink", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L213C34-L213C69" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L213C34-L213C69" }, { "DocsId": "P:System.Drawing.Pens.IndianRed", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L215C36-L215C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L215C36-L215C75" }, { "DocsId": "P:System.Drawing.Pens.Indigo", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L216C33-L216C66" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L216C33-L216C66" }, { "DocsId": "P:System.Drawing.Pens.Ivory", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L217C32-L217C63" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L217C32-L217C63" }, { "DocsId": "P:System.Drawing.Pens.Khaki", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L219C32-L219C63" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L219C32-L219C63" }, { "DocsId": "P:System.Drawing.Pens.Lavender", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L221C35-L221C72" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L221C35-L221C72" }, { "DocsId": "P:System.Drawing.Pens.LavenderBlush", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L222C40-L222C87" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L222C40-L222C87" }, { "DocsId": "P:System.Drawing.Pens.LawnGreen", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L223C36-L223C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L223C36-L223C75" }, { "DocsId": "P:System.Drawing.Pens.LemonChiffon", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L224C39-L224C84" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L224C39-L224C84" }, { "DocsId": "P:System.Drawing.Pens.LightBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L225C36-L225C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L225C36-L225C75" }, { "DocsId": "P:System.Drawing.Pens.LightCoral", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L226C37-L226C78" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L226C37-L226C78" }, { "DocsId": "P:System.Drawing.Pens.LightCyan", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L227C36-L227C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L227C36-L227C75" }, { "DocsId": "P:System.Drawing.Pens.LightGoldenrodYellow", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L228C47-L228C108" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L228C47-L228C108" }, { "DocsId": "P:System.Drawing.Pens.LightGreen", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L229C37-L229C78" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L229C37-L229C78" }, { "DocsId": "P:System.Drawing.Pens.LightGray", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L230C36-L230C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L230C36-L230C75" }, { "DocsId": "P:System.Drawing.Pens.LightPink", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L231C36-L231C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L231C36-L231C75" }, { "DocsId": "P:System.Drawing.Pens.LightSalmon", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L232C38-L232C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L232C38-L232C81" }, { "DocsId": "P:System.Drawing.Pens.LightSeaGreen", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L233C40-L233C87" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L233C40-L233C87" }, { "DocsId": "P:System.Drawing.Pens.LightSkyBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L234C39-L234C84" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L234C39-L234C84" }, { "DocsId": "P:System.Drawing.Pens.LightSlateGray", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L235C41-L235C90" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L235C41-L235C90" }, { "DocsId": "P:System.Drawing.Pens.LightSteelBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L236C41-L236C90" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L236C41-L236C90" }, { "DocsId": "P:System.Drawing.Pens.LightYellow", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L237C38-L237C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L237C38-L237C81" }, { "DocsId": "P:System.Drawing.Pens.Lime", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L238C31-L238C60" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L238C31-L238C60" }, { "DocsId": "P:System.Drawing.Pens.LimeGreen", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L239C36-L239C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L239C36-L239C75" }, { "DocsId": "P:System.Drawing.Pens.Linen", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L240C32-L240C63" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L240C32-L240C63" }, { "DocsId": "P:System.Drawing.Pens.Magenta", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L242C34-L242C69" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L242C34-L242C69" }, { "DocsId": "P:System.Drawing.Pens.Maroon", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L243C33-L243C66" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L243C33-L243C66" }, { "DocsId": "P:System.Drawing.Pens.MediumAquamarine", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L244C43-L244C96" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L244C43-L244C96" }, { "DocsId": "P:System.Drawing.Pens.MediumBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L245C37-L245C78" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L245C37-L245C78" }, { "DocsId": "P:System.Drawing.Pens.MediumOrchid", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L246C39-L246C84" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L246C39-L246C84" }, { "DocsId": "P:System.Drawing.Pens.MediumPurple", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L247C39-L247C84" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L247C39-L247C84" }, { "DocsId": "P:System.Drawing.Pens.MediumSeaGreen", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L248C41-L248C90" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L248C41-L248C90" }, { "DocsId": "P:System.Drawing.Pens.MediumSlateBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L249C42-L249C93" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L249C42-L249C93" }, { "DocsId": "P:System.Drawing.Pens.MediumSpringGreen", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L250C44-L250C99" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L250C44-L250C99" }, { "DocsId": "P:System.Drawing.Pens.MediumTurquoise", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L251C42-L251C93" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L251C42-L251C93" }, { "DocsId": "P:System.Drawing.Pens.MediumVioletRed", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L252C42-L252C93" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L252C42-L252C93" }, { "DocsId": "P:System.Drawing.Pens.MidnightBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L253C39-L253C84" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L253C39-L253C84" }, { "DocsId": "P:System.Drawing.Pens.MintCream", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L254C36-L254C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L254C36-L254C75" }, { "DocsId": "P:System.Drawing.Pens.MistyRose", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L255C36-L255C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L255C36-L255C75" }, { "DocsId": "P:System.Drawing.Pens.Moccasin", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L256C35-L256C72" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L256C35-L256C72" }, { "DocsId": "P:System.Drawing.Pens.NavajoWhite", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L258C38-L258C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L258C38-L258C81" }, { "DocsId": "P:System.Drawing.Pens.Navy", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L259C31-L259C60" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L259C31-L259C60" }, { "DocsId": "P:System.Drawing.Pens.OldLace", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L261C34-L261C69" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L261C34-L261C69" }, { "DocsId": "P:System.Drawing.Pens.Olive", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L262C32-L262C63" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L262C32-L262C63" }, { "DocsId": "P:System.Drawing.Pens.OliveDrab", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L263C36-L263C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L263C36-L263C75" }, { "DocsId": "P:System.Drawing.Pens.Orange", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L264C33-L264C66" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L264C33-L264C66" }, { "DocsId": "P:System.Drawing.Pens.OrangeRed", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L265C36-L265C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L265C36-L265C75" }, { "DocsId": "P:System.Drawing.Pens.Orchid", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L266C33-L266C66" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L266C33-L266C66" }, { "DocsId": "P:System.Drawing.Pens.PaleGoldenrod", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L268C40-L268C87" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L268C40-L268C87" }, { "DocsId": "P:System.Drawing.Pens.PaleGreen", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L269C36-L269C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L269C36-L269C75" }, { "DocsId": "P:System.Drawing.Pens.PaleTurquoise", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L270C40-L270C87" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L270C40-L270C87" }, { "DocsId": "P:System.Drawing.Pens.PaleVioletRed", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L271C40-L271C87" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L271C40-L271C87" }, { "DocsId": "P:System.Drawing.Pens.PapayaWhip", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L272C37-L272C78" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L272C37-L272C78" }, { "DocsId": "P:System.Drawing.Pens.PeachPuff", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L273C36-L273C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L273C36-L273C75" }, { "DocsId": "P:System.Drawing.Pens.Peru", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L274C31-L274C60" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L274C31-L274C60" }, { "DocsId": "P:System.Drawing.Pens.Pink", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L275C31-L275C60" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L275C31-L275C60" }, { "DocsId": "P:System.Drawing.Pens.Plum", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L276C31-L276C60" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L276C31-L276C60" }, { "DocsId": "P:System.Drawing.Pens.PowderBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L277C37-L277C78" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L277C37-L277C78" }, { "DocsId": "P:System.Drawing.Pens.Purple", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L278C33-L278C66" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L278C33-L278C66" }, { "DocsId": "P:System.Drawing.Pens.Red", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L280C30-L280C57" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L280C30-L280C57" }, { "DocsId": "P:System.Drawing.Pens.RosyBrown", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L281C36-L281C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L281C36-L281C75" }, { "DocsId": "P:System.Drawing.Pens.RoyalBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L282C36-L282C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L282C36-L282C75" }, { "DocsId": "P:System.Drawing.Pens.SaddleBrown", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L284C38-L284C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L284C38-L284C81" }, { "DocsId": "P:System.Drawing.Pens.Salmon", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L285C33-L285C66" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L285C33-L285C66" }, { "DocsId": "P:System.Drawing.Pens.SandyBrown", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L286C37-L286C78" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L286C37-L286C78" }, { "DocsId": "P:System.Drawing.Pens.SeaGreen", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L287C35-L287C72" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L287C35-L287C72" }, { "DocsId": "P:System.Drawing.Pens.SeaShell", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L288C35-L288C72" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L288C35-L288C72" }, { "DocsId": "P:System.Drawing.Pens.Sienna", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L289C33-L289C66" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L289C33-L289C66" }, { "DocsId": "P:System.Drawing.Pens.Silver", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L290C33-L290C66" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L290C33-L290C66" }, { "DocsId": "P:System.Drawing.Pens.SkyBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L291C34-L291C69" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L291C34-L291C69" }, { "DocsId": "P:System.Drawing.Pens.SlateBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L292C36-L292C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L292C36-L292C75" }, { "DocsId": "P:System.Drawing.Pens.SlateGray", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L293C36-L293C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L293C36-L293C75" }, { "DocsId": "P:System.Drawing.Pens.Snow", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L294C31-L294C60" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L294C31-L294C60" }, { "DocsId": "P:System.Drawing.Pens.SpringGreen", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L295C38-L295C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L295C38-L295C81" }, { "DocsId": "P:System.Drawing.Pens.SteelBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L296C36-L296C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L296C36-L296C75" }, { "DocsId": "P:System.Drawing.Pens.Tan", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L298C30-L298C57" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L298C30-L298C57" }, { "DocsId": "P:System.Drawing.Pens.Teal", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L299C31-L299C60" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L299C31-L299C60" }, { "DocsId": "P:System.Drawing.Pens.Thistle", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L300C34-L300C69" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L300C34-L300C69" }, { "DocsId": "P:System.Drawing.Pens.Tomato", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L301C33-L301C66" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L301C33-L301C66" }, { "DocsId": "P:System.Drawing.Pens.Turquoise", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L302C36-L302C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L302C36-L302C75" }, { "DocsId": "P:System.Drawing.Pens.Violet", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L304C33-L304C66" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L304C33-L304C66" }, { "DocsId": "P:System.Drawing.Pens.Wheat", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L306C32-L306C63" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L306C32-L306C63" }, { "DocsId": "P:System.Drawing.Pens.White", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L307C32-L307C63" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L307C32-L307C63" }, { "DocsId": "P:System.Drawing.Pens.WhiteSmoke", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L308C37-L308C78" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L308C37-L308C78" }, { "DocsId": "P:System.Drawing.Pens.Yellow", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L310C33-L310C66" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L310C33-L310C66" }, { "DocsId": "P:System.Drawing.Pens.YellowGreen", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L311C38-L311C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L311C38-L311C81" } ], "DocsId": "T:System.Drawing.Pens", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Pens.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Pens.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.RotateFlipType.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" }, { "DocsId": "F:System.Drawing.RotateFlipType.RotateNoneFlipNone", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" }, { "DocsId": "F:System.Drawing.RotateFlipType.Rotate90FlipNone", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" }, { "DocsId": "F:System.Drawing.RotateFlipType.Rotate180FlipNone", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" }, { "DocsId": "F:System.Drawing.RotateFlipType.Rotate270FlipNone", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" }, { "DocsId": "F:System.Drawing.RotateFlipType.RotateNoneFlipX", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" }, { "DocsId": "F:System.Drawing.RotateFlipType.Rotate90FlipX", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" }, { "DocsId": "F:System.Drawing.RotateFlipType.Rotate180FlipX", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" }, { "DocsId": "F:System.Drawing.RotateFlipType.Rotate270FlipX", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" }, { "DocsId": "F:System.Drawing.RotateFlipType.RotateNoneFlipY", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" }, { "DocsId": "F:System.Drawing.RotateFlipType.Rotate90FlipY", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" }, { "DocsId": "F:System.Drawing.RotateFlipType.Rotate180FlipY", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" }, { "DocsId": "F:System.Drawing.RotateFlipType.Rotate270FlipY", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" }, { "DocsId": "F:System.Drawing.RotateFlipType.RotateNoneFlipXY", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" }, { "DocsId": "F:System.Drawing.RotateFlipType.Rotate90FlipXY", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" }, { "DocsId": "F:System.Drawing.RotateFlipType.Rotate180FlipXY", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" }, { "DocsId": "F:System.Drawing.RotateFlipType.Rotate270FlipXY", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" } ], "DocsId": "T:System.Drawing.RotateFlipType", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.StringFormat.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L27C29-L29C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L27C29-L29C6" }, { "DocsId": "M:System.Drawing.StringFormat.#ctor(System.Drawing.StringFormatFlags)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L35C5-L37C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L35C5-L37C6" }, { "DocsId": "M:System.Drawing.StringFormat.#ctor(System.Drawing.StringFormatFlags,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L43C5-L49C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L43C5-L49C6" }, { "DocsId": "M:System.Drawing.StringFormat.#ctor(System.Drawing.StringFormat)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L55C5-L63C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L55C5-L63C6" }, { "DocsId": "M:System.Drawing.StringFormat.Dispose", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L70C9-L72C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L70C9-L72C6" }, { "DocsId": "M:System.Drawing.StringFormat.Clone", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L111C9-L118C37" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L111C9-L118C37" }, { "DocsId": "M:System.Drawing.StringFormat.SetMeasurableCharacterRanges(System.Drawing.CharacterRange[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L152C9-L156C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L152C9-L156C6" }, { "DocsId": "M:System.Drawing.StringFormat.SetTabStops(System.Single,System.Single[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L252C9-L271C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L252C9-L271C6" }, { "DocsId": "M:System.Drawing.StringFormat.GetTabStops(System.Single@)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L279C9-L290C25" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L279C9-L290C25" }, { "DocsId": "M:System.Drawing.StringFormat.SetDigitSubstitution(System.Int32,System.Drawing.StringDigitSubstitute)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L378C9-L382C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L378C9-L382C6" }, { "DocsId": "M:System.Drawing.StringFormat.Finalize", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L433C9-L434C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L433C9-L434C6" }, { "DocsId": "M:System.Drawing.StringFormat.ToString", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L439C42-L439C86" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L439C42-L439C86" }, { "DocsId": "P:System.Drawing.StringFormat.FormatFlags", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L131C13-L136C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L131C13-L136C27" }, { "DocsId": "P:System.Drawing.StringFormat.Alignment", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L167C13-L172C30" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L167C13-L172C30" }, { "DocsId": "P:System.Drawing.StringFormat.LineAlignment", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L197C13-L202C30" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L197C13-L202C30" }, { "DocsId": "P:System.Drawing.StringFormat.HotkeyPrefix", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L226C13-L231C33" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L226C13-L231C33" }, { "DocsId": "P:System.Drawing.StringFormat.Trimming", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L305C13-L309C29" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L305C13-L309C29" }, { "DocsId": "P:System.Drawing.StringFormat.GenericDefault", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L342C13-L347C45" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L342C13-L347C45" }, { "DocsId": "P:System.Drawing.StringFormat.GenericTypographic", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L367C13-L372C45" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L367C13-L372C45" }, { "DocsId": "P:System.Drawing.StringFormat.DigitSubstitutionMethod", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L393C13-L398C36" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L393C13-L398C36" }, { "DocsId": "P:System.Drawing.StringFormat.DigitSubstitutionLanguage", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L410C13-L415C29" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L410C13-L415C29" } ], "DocsId": "T:System.Drawing.StringFormat", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.SystemFonts.GetFontByName(System.String)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SystemFonts.cs#L15C9-L48C21" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SystemFonts.cs#L15C9-L48C21" }, { "DocsId": "P:System.Drawing.SystemFonts.CaptionFont", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SystemFonts.cs#L64C13-L72C32" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SystemFonts.cs#L64C13-L72C32" }, { "DocsId": "P:System.Drawing.SystemFonts.SmallCaptionFont", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SystemFonts.cs#L80C13-L88C34" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SystemFonts.cs#L80C13-L88C34" }, { "DocsId": "P:System.Drawing.SystemFonts.MenuFont", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SystemFonts.cs#L96C13-L104C29" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SystemFonts.cs#L96C13-L104C29" }, { "DocsId": "P:System.Drawing.SystemFonts.StatusFont", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SystemFonts.cs#L112C13-L120C31" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SystemFonts.cs#L112C13-L120C31" }, { "DocsId": "P:System.Drawing.SystemFonts.MessageBoxFont", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SystemFonts.cs#L128C13-L136C35" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SystemFonts.cs#L128C13-L136C35" }, { "DocsId": "P:System.Drawing.SystemFonts.IconTitleFont", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SystemFonts.cs#L156C13-L165C34" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SystemFonts.cs#L156C13-L165C34" }, { "DocsId": "P:System.Drawing.SystemFonts.DefaultFont", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SystemFonts.cs#L173C13-L223C32" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SystemFonts.cs#L173C13-L223C32" }, { "DocsId": "P:System.Drawing.SystemFonts.DialogFont", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SystemFonts.cs#L231C13-L263C31" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SystemFonts.cs#L231C13-L263C31" } ], "DocsId": "T:System.Drawing.SystemFonts", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SystemFonts.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SystemFonts.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.SystemPens.FromSystemColor(System.Drawing.Color)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L58C9-L78C53" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L58C9-L78C53" }, { "DocsId": "P:System.Drawing.SystemPens.ActiveBorder", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L12C39-L12C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L12C39-L12C81" }, { "DocsId": "P:System.Drawing.SystemPens.ActiveCaption", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L13C40-L13C83" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L13C40-L13C83" }, { "DocsId": "P:System.Drawing.SystemPens.ActiveCaptionText", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L14C44-L14C91" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L14C44-L14C91" }, { "DocsId": "P:System.Drawing.SystemPens.AppWorkspace", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L15C39-L15C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L15C39-L15C81" }, { "DocsId": "P:System.Drawing.SystemPens.ButtonFace", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L17C37-L17C77" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L17C37-L17C77" }, { "DocsId": "P:System.Drawing.SystemPens.ButtonHighlight", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L18C42-L18C87" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L18C42-L18C87" }, { "DocsId": "P:System.Drawing.SystemPens.ButtonShadow", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L20C39-L20C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L20C39-L20C81" }, { "DocsId": "P:System.Drawing.SystemPens.Control", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L22C34-L22C71" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L22C34-L22C71" }, { "DocsId": "P:System.Drawing.SystemPens.ControlText", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L23C38-L23C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L23C38-L23C79" }, { "DocsId": "P:System.Drawing.SystemPens.ControlDark", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L24C38-L24C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L24C38-L24C79" }, { "DocsId": "P:System.Drawing.SystemPens.ControlDarkDark", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L25C42-L25C87" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L25C42-L25C87" }, { "DocsId": "P:System.Drawing.SystemPens.ControlLight", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L26C39-L26C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L26C39-L26C81" }, { "DocsId": "P:System.Drawing.SystemPens.ControlLightLight", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L27C44-L27C91" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L27C44-L27C91" }, { "DocsId": "P:System.Drawing.SystemPens.Desktop", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L29C34-L29C71" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L29C34-L29C71" }, { "DocsId": "P:System.Drawing.SystemPens.GradientActiveCaption", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L31C48-L31C99" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L31C48-L31C99" }, { "DocsId": "P:System.Drawing.SystemPens.GradientInactiveCaption", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L32C50-L32C103" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L32C50-L32C103" }, { "DocsId": "P:System.Drawing.SystemPens.GrayText", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L33C35-L33C73" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L33C35-L33C73" }, { "DocsId": "P:System.Drawing.SystemPens.Highlight", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L35C36-L35C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L35C36-L35C75" }, { "DocsId": "P:System.Drawing.SystemPens.HighlightText", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L36C40-L36C83" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L36C40-L36C83" }, { "DocsId": "P:System.Drawing.SystemPens.HotTrack", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L37C35-L37C73" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L37C35-L37C73" }, { "DocsId": "P:System.Drawing.SystemPens.InactiveBorder", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L39C41-L39C85" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L39C41-L39C85" }, { "DocsId": "P:System.Drawing.SystemPens.InactiveCaption", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L40C42-L40C87" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L40C42-L40C87" }, { "DocsId": "P:System.Drawing.SystemPens.InactiveCaptionText", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L41C46-L41C95" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L41C46-L41C95" }, { "DocsId": "P:System.Drawing.SystemPens.Info", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L42C31-L42C65" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L42C31-L42C65" }, { "DocsId": "P:System.Drawing.SystemPens.InfoText", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L43C35-L43C73" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L43C35-L43C73" }, { "DocsId": "P:System.Drawing.SystemPens.Menu", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L45C31-L45C65" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L45C31-L45C65" }, { "DocsId": "P:System.Drawing.SystemPens.MenuBar", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L46C34-L46C71" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L46C34-L46C71" }, { "DocsId": "P:System.Drawing.SystemPens.MenuHighlight", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L47C40-L47C83" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L47C40-L47C83" }, { "DocsId": "P:System.Drawing.SystemPens.MenuText", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L48C35-L48C73" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L48C35-L48C73" }, { "DocsId": "P:System.Drawing.SystemPens.ScrollBar", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L50C36-L50C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L50C36-L50C75" }, { "DocsId": "P:System.Drawing.SystemPens.Window", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L52C33-L52C69" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L52C33-L52C69" }, { "DocsId": "P:System.Drawing.SystemPens.WindowFrame", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L53C38-L53C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L53C38-L53C79" }, { "DocsId": "P:System.Drawing.SystemPens.WindowText", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L54C37-L54C77" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L54C37-L54C77" } ], "DocsId": "T:System.Drawing.SystemPens", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.CopyPixelOperation.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" }, { "DocsId": "F:System.Drawing.CopyPixelOperation.Blackness", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" }, { "DocsId": "F:System.Drawing.CopyPixelOperation.CaptureBlt", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" }, { "DocsId": "F:System.Drawing.CopyPixelOperation.DestinationInvert", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" }, { "DocsId": "F:System.Drawing.CopyPixelOperation.MergeCopy", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" }, { "DocsId": "F:System.Drawing.CopyPixelOperation.MergePaint", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" }, { "DocsId": "F:System.Drawing.CopyPixelOperation.NoMirrorBitmap", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" }, { "DocsId": "F:System.Drawing.CopyPixelOperation.NotSourceCopy", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" }, { "DocsId": "F:System.Drawing.CopyPixelOperation.NotSourceErase", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" }, { "DocsId": "F:System.Drawing.CopyPixelOperation.PatCopy", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" }, { "DocsId": "F:System.Drawing.CopyPixelOperation.PatInvert", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" }, { "DocsId": "F:System.Drawing.CopyPixelOperation.PatPaint", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" }, { "DocsId": "F:System.Drawing.CopyPixelOperation.SourceAnd", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" }, { "DocsId": "F:System.Drawing.CopyPixelOperation.SourceCopy", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" }, { "DocsId": "F:System.Drawing.CopyPixelOperation.SourceErase", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" }, { "DocsId": "F:System.Drawing.CopyPixelOperation.SourceInvert", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" }, { "DocsId": "F:System.Drawing.CopyPixelOperation.SourcePaint", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" }, { "DocsId": "F:System.Drawing.CopyPixelOperation.Whiteness", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" } ], "DocsId": "T:System.Drawing.CopyPixelOperation", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.FontStyle.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/FontStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/FontStyle.cs" }, { "DocsId": "F:System.Drawing.FontStyle.Regular", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/FontStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/FontStyle.cs" }, { "DocsId": "F:System.Drawing.FontStyle.Bold", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/FontStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/FontStyle.cs" }, { "DocsId": "F:System.Drawing.FontStyle.Italic", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/FontStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/FontStyle.cs" }, { "DocsId": "F:System.Drawing.FontStyle.Underline", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/FontStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/FontStyle.cs" }, { "DocsId": "F:System.Drawing.FontStyle.Strikeout", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/FontStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/FontStyle.cs" } ], "DocsId": "T:System.Drawing.FontStyle", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/FontStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/FontStyle.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Region.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Region.cs#L20C5-L24C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Region.cs#L20C5-L24C6" }, { "DocsId": "M:System.Drawing.Region.#ctor(System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Region.cs#L26C5-L30C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Region.cs#L26C5-L30C6" }, { "DocsId": "M:System.Drawing.Region.#ctor(System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Region.cs#L32C5-L36C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Region.cs#L32C5-L36C6" }, { "DocsId": "M:System.Drawing.Region.#ctor(System.Drawing.Drawing2D.GraphicsPath)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Region.cs#L38C5-L44C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Region.cs#L38C5-L44C6" }, { "DocsId": "M:System.Drawing.Region.#ctor(System.Drawing.Drawing2D.RegionData)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Region.cs#L46C5-L56C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Region.cs#L46C5-L56C6" }, { "DocsId": "M:System.Drawing.Region.FromHrgn(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Region.cs#L62C9-L63C35" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Region.cs#L62C9-L63C35" }, { "DocsId": "M:System.Drawing.Region.Clone", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Region.cs#L76C9-L77C35" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Region.cs#L76C9-L77C35" }, { "DocsId": "M:System.Drawing.Region.ReleaseHrgn(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Region.cs#L81C9-L87C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Region.cs#L81C9-L87C6" }, { "DocsId": "M:System.Drawing.Region.Dispose", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Region.cs#L91C9-L93C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Region.cs#L91C9-L93C6" }, { "DocsId": "M:System.Drawing.Region.Finalize", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Region.cs#L126C18-L126C32" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Region.cs#L126C18-L16707566C0" }, { "DocsId": "M:System.Drawing.Region.MakeInfinite", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Region.cs#L130C9-L131C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Region.cs#L130C9-L131C6" }, { "DocsId": "M:System.Drawing.Region.MakeEmpty", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Region.cs#L135C9-L136C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Region.cs#L135C9-L136C6" }, { "DocsId": "M:System.Drawing.Region.Intersect(System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Region.cs#L140C9-L141C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Region.cs#L140C9-L141C6" }, { "DocsId": "M:System.Drawing.Region.Intersect(System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Region.cs#L145C9-L146C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Region.cs#L145C9-L146C6" }, { "DocsId": "M:System.Drawing.Region.Intersect(System.Drawing.Drawing2D.GraphicsPath)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Region.cs#L150C9-L153C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Region.cs#L150C9-L153C6" }, { "DocsId": "M:System.Drawing.Region.Intersect(System.Drawing.Region)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Region.cs#L157C9-L160C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Region.cs#L157C9-L160C6" }, { "DocsId": "M:System.Drawing.Region.Union(System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Region.cs#L164C9-L165C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Region.cs#L164C9-L165C6" }, { "DocsId": "M:System.Drawing.Region.Union(System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Region.cs#L169C9-L170C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Region.cs#L169C9-L170C6" }, { "DocsId": "M:System.Drawing.Region.Union(System.Drawing.Drawing2D.GraphicsPath)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Region.cs#L174C9-L177C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Region.cs#L174C9-L177C6" }, { "DocsId": "M:System.Drawing.Region.Union(System.Drawing.Region)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Region.cs#L181C9-L184C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Region.cs#L181C9-L184C6" }, { "DocsId": "M:System.Drawing.Region.Xor(System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Region.cs#L188C9-L189C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Region.cs#L188C9-L189C6" }, { "DocsId": "M:System.Drawing.Region.Xor(System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Region.cs#L193C9-L194C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Region.cs#L193C9-L194C6" }, { "DocsId": "M:System.Drawing.Region.Xor(System.Drawing.Drawing2D.GraphicsPath)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Region.cs#L198C9-L201C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Region.cs#L198C9-L201C6" }, { "DocsId": "M:System.Drawing.Region.Xor(System.Drawing.Region)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Region.cs#L205C9-L208C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Region.cs#L205C9-L208C6" }, { "DocsId": "M:System.Drawing.Region.Exclude(System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Region.cs#L212C9-L213C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Region.cs#L212C9-L213C6" }, { "DocsId": "M:System.Drawing.Region.Exclude(System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Region.cs#L217C9-L218C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Region.cs#L217C9-L218C6" }, { "DocsId": "M:System.Drawing.Region.Exclude(System.Drawing.Drawing2D.GraphicsPath)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Region.cs#L222C9-L228C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Region.cs#L222C9-L228C6" }, { "DocsId": "M:System.Drawing.Region.Exclude(System.Drawing.Region)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Region.cs#L232C9-L238C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Region.cs#L232C9-L238C6" }, { "DocsId": "M:System.Drawing.Region.Complement(System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Region.cs#L242C9-L243C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Region.cs#L242C9-L243C6" }, { "DocsId": "M:System.Drawing.Region.Complement(System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Region.cs#L247C9-L248C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Region.cs#L247C9-L248C6" }, { "DocsId": "M:System.Drawing.Region.Complement(System.Drawing.Drawing2D.GraphicsPath)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Region.cs#L252C9-L255C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Region.cs#L252C9-L255C6" }, { "DocsId": "M:System.Drawing.Region.Complement(System.Drawing.Region)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Region.cs#L259C9-L262C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Region.cs#L259C9-L262C6" }, { "DocsId": "M:System.Drawing.Region.Translate(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Region.cs#L266C9-L267C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Region.cs#L266C9-L267C6" }, { "DocsId": "M:System.Drawing.Region.Translate(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Region.cs#L271C9-L272C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Region.cs#L271C9-L272C6" }, { "DocsId": "M:System.Drawing.Region.Transform(System.Drawing.Drawing2D.Matrix)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Region.cs#L276C9-L281C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Region.cs#L276C9-L281C6" }, { "DocsId": "M:System.Drawing.Region.GetBounds(System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Region.cs#L285C9-L288C23" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Region.cs#L285C9-L288C23" }, { "DocsId": "M:System.Drawing.Region.GetHrgn(System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Region.cs#L293C9-L296C21" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Region.cs#L293C9-L296C21" }, { "DocsId": "M:System.Drawing.Region.IsEmpty(System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Region.cs#L301C9-L304C29" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Region.cs#L301C9-L304C29" }, { "DocsId": "M:System.Drawing.Region.IsInfinite(System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Region.cs#L309C9-L312C32" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Region.cs#L309C9-L312C32" }, { "DocsId": "M:System.Drawing.Region.Equals(System.Drawing.Region,System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Region.cs#L317C9-L321C29" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Region.cs#L317C9-L321C29" }, { "DocsId": "M:System.Drawing.Region.GetRegionData", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Region.cs#L326C9-L333C43" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Region.cs#L326C9-L333C43" }, { "DocsId": "M:System.Drawing.Region.IsVisible(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Region.cs#L336C48-L336C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Region.cs#L336C48-L336C81" }, { "DocsId": "M:System.Drawing.Region.IsVisible(System.Drawing.PointF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Region.cs#L338C44-L338C66" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Region.cs#L338C44-L338C66" }, { "DocsId": "M:System.Drawing.Region.IsVisible(System.Single,System.Single,System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Region.cs#L340C61-L340C91" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Region.cs#L340C61-L340C91" }, { "DocsId": "M:System.Drawing.Region.IsVisible(System.Drawing.PointF,System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Region.cs#L344C9-L350C31" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Region.cs#L344C9-L350C31" }, { "DocsId": "M:System.Drawing.Region.IsVisible(System.Single,System.Single,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Region.cs#L353C75-L353C127" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Region.cs#L353C75-L353C127" }, { "DocsId": "M:System.Drawing.Region.IsVisible(System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Region.cs#L355C47-L355C68" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Region.cs#L355C47-L355C68" }, { "DocsId": "M:System.Drawing.Region.IsVisible(System.Single,System.Single,System.Single,System.Single,System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Region.cs#L357C88-L357C137" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Region.cs#L357C88-L357C137" }, { "DocsId": "M:System.Drawing.Region.IsVisible(System.Drawing.RectangleF,System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Region.cs#L361C9-L367C31" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Region.cs#L361C9-L367C31" }, { "DocsId": "M:System.Drawing.Region.IsVisible(System.Int32,System.Int32,System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Region.cs#L370C57-L370C86" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Region.cs#L370C57-L370C86" }, { "DocsId": "M:System.Drawing.Region.IsVisible(System.Drawing.Point)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Region.cs#L372C43-L372C65" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Region.cs#L372C43-L372C65" }, { "DocsId": "M:System.Drawing.Region.IsVisible(System.Drawing.Point,System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Region.cs#L376C9-L382C31" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Region.cs#L376C9-L382C31" }, { "DocsId": "M:System.Drawing.Region.IsVisible(System.Int32,System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Region.cs#L385C67-L385C118" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Region.cs#L385C67-L385C118" }, { "DocsId": "M:System.Drawing.Region.IsVisible(System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Region.cs#L387C46-L387C67" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Region.cs#L387C46-L387C67" }, { "DocsId": "M:System.Drawing.Region.IsVisible(System.Int32,System.Int32,System.Int32,System.Int32,System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Region.cs#L389C80-L389C128" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Region.cs#L389C80-L389C128" }, { "DocsId": "M:System.Drawing.Region.IsVisible(System.Drawing.Rectangle,System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Region.cs#L393C9-L399C31" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Region.cs#L393C9-L399C31" }, { "DocsId": "M:System.Drawing.Region.GetRegionScans(System.Drawing.Drawing2D.Matrix)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Region.cs#L404C9-L427C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Region.cs#L404C9-L427C27" } ], "DocsId": "T:System.Drawing.Region", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Region.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Region.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.StringAlignment.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/StringAlignment.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/StringAlignment.cs" }, { "DocsId": "F:System.Drawing.StringAlignment.Near", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/StringAlignment.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/StringAlignment.cs" }, { "DocsId": "F:System.Drawing.StringAlignment.Center", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/StringAlignment.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/StringAlignment.cs" }, { "DocsId": "F:System.Drawing.StringAlignment.Far", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/StringAlignment.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/StringAlignment.cs" } ], "DocsId": "T:System.Drawing.StringAlignment", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/StringAlignment.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/StringAlignment.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.StringDigitSubstitute.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/StringDigitSubstitute.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/StringDigitSubstitute.cs" }, { "DocsId": "F:System.Drawing.StringDigitSubstitute.User", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/StringDigitSubstitute.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/StringDigitSubstitute.cs" }, { "DocsId": "F:System.Drawing.StringDigitSubstitute.None", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/StringDigitSubstitute.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/StringDigitSubstitute.cs" }, { "DocsId": "F:System.Drawing.StringDigitSubstitute.National", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/StringDigitSubstitute.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/StringDigitSubstitute.cs" }, { "DocsId": "F:System.Drawing.StringDigitSubstitute.Traditional", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/StringDigitSubstitute.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/StringDigitSubstitute.cs" } ], "DocsId": "T:System.Drawing.StringDigitSubstitute", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/StringDigitSubstitute.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/StringDigitSubstitute.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.StringFormatFlags.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/StringFormatFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/StringFormatFlags.cs" }, { "DocsId": "F:System.Drawing.StringFormatFlags.DirectionRightToLeft", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/StringFormatFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/StringFormatFlags.cs" }, { "DocsId": "F:System.Drawing.StringFormatFlags.DirectionVertical", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/StringFormatFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/StringFormatFlags.cs" }, { "DocsId": "F:System.Drawing.StringFormatFlags.FitBlackBox", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/StringFormatFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/StringFormatFlags.cs" }, { "DocsId": "F:System.Drawing.StringFormatFlags.DisplayFormatControl", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/StringFormatFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/StringFormatFlags.cs" }, { "DocsId": "F:System.Drawing.StringFormatFlags.NoFontFallback", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/StringFormatFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/StringFormatFlags.cs" }, { "DocsId": "F:System.Drawing.StringFormatFlags.MeasureTrailingSpaces", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/StringFormatFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/StringFormatFlags.cs" }, { "DocsId": "F:System.Drawing.StringFormatFlags.NoWrap", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/StringFormatFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/StringFormatFlags.cs" }, { "DocsId": "F:System.Drawing.StringFormatFlags.LineLimit", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/StringFormatFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/StringFormatFlags.cs" }, { "DocsId": "F:System.Drawing.StringFormatFlags.NoClip", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/StringFormatFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/StringFormatFlags.cs" } ], "DocsId": "T:System.Drawing.StringFormatFlags", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/StringFormatFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/StringFormatFlags.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.StringTrimming.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/StringTrimming.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/StringTrimming.cs" }, { "DocsId": "F:System.Drawing.StringTrimming.None", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/StringTrimming.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/StringTrimming.cs" }, { "DocsId": "F:System.Drawing.StringTrimming.Character", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/StringTrimming.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/StringTrimming.cs" }, { "DocsId": "F:System.Drawing.StringTrimming.Word", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/StringTrimming.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/StringTrimming.cs" }, { "DocsId": "F:System.Drawing.StringTrimming.EllipsisCharacter", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/StringTrimming.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/StringTrimming.cs" }, { "DocsId": "F:System.Drawing.StringTrimming.EllipsisWord", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/StringTrimming.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/StringTrimming.cs" }, { "DocsId": "F:System.Drawing.StringTrimming.EllipsisPath", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/StringTrimming.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/StringTrimming.cs" } ], "DocsId": "T:System.Drawing.StringTrimming", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/StringTrimming.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/StringTrimming.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.StringUnit.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/StringUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/StringUnit.cs" }, { "DocsId": "F:System.Drawing.StringUnit.World", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/StringUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/StringUnit.cs" }, { "DocsId": "F:System.Drawing.StringUnit.Display", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/StringUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/StringUnit.cs" }, { "DocsId": "F:System.Drawing.StringUnit.Pixel", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/StringUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/StringUnit.cs" }, { "DocsId": "F:System.Drawing.StringUnit.Point", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/StringUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/StringUnit.cs" }, { "DocsId": "F:System.Drawing.StringUnit.Inch", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/StringUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/StringUnit.cs" }, { "DocsId": "F:System.Drawing.StringUnit.Document", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/StringUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/StringUnit.cs" }, { "DocsId": "F:System.Drawing.StringUnit.Millimeter", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/StringUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/StringUnit.cs" }, { "DocsId": "F:System.Drawing.StringUnit.Em", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/StringUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/StringUnit.cs" } ], "DocsId": "T:System.Drawing.StringUnit", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/StringUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/StringUnit.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Brush.Clone", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brush.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brush.cs" }, { "DocsId": "M:System.Drawing.Brush.SetNativeBrush(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brush.cs#L21C61-L21C90" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brush.cs#L21C61-L21C90" }, { "DocsId": "M:System.Drawing.Brush.Dispose", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brush.cs#L29C9-L31C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brush.cs#L29C9-L31C6" }, { "DocsId": "M:System.Drawing.Brush.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brush.cs#L43C9-L65C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brush.cs#L43C9-L65C6" }, { "DocsId": "M:System.Drawing.Brush.Finalize", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brush.cs#L67C17-L67C31" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brush.cs#L67C17-L16707566C0" }, { "DocsId": "M:System.Drawing.Brush.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brush.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brush.cs" } ], "DocsId": "T:System.Drawing.Brush", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Brush.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Brush.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Font.Finalize", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Font.cs#L143C16-L143C30" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Font.cs#L143C16-L16707566C0" }, { "DocsId": "M:System.Drawing.Font.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Font.cs#L157C9-L162C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Font.cs#L157C9-L162C6" }, { "DocsId": "M:System.Drawing.Font.Dispose", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Font.cs#L171C9-L173C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Font.cs#L171C9-L173C6" }, { "DocsId": "M:System.Drawing.Font.GetHeight(System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Font.cs#L204C9-L213C23" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Font.cs#L204C9-L213C23" }, { "DocsId": "M:System.Drawing.Font.GetHeight(System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Font.cs#L219C9-L221C21" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Font.cs#L219C9-L221C21" }, { "DocsId": "M:System.Drawing.Font.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Font.cs#L230C9-L249C31" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Font.cs#L230C9-L249C31" }, { "DocsId": "M:System.Drawing.Font.GetHashCode", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Font.cs#L257C9-L257C58" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Font.cs#L257C9-L257C58" }, { "DocsId": "M:System.Drawing.Font.ToString", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Font.cs#L264C9-L264C158" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Font.cs#L264C9-L264C158" }, { "DocsId": "M:System.Drawing.Font.ToLogFont(System.Object,System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Font.cs#L271C9-L295C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Font.cs#L271C9-L295C6" }, { "DocsId": "M:System.Drawing.Font.#ctor(System.Drawing.Font,System.Drawing.FontStyle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Font.cs#L29C5-L366C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Font.cs#L29C5-L366C6" }, { "DocsId": "M:System.Drawing.Font.#ctor(System.Drawing.FontFamily,System.Single,System.Drawing.FontStyle,System.Drawing.GraphicsUnit)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Font.cs#L29C5-L374C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Font.cs#L29C5-L374C6" }, { "DocsId": "M:System.Drawing.Font.#ctor(System.Drawing.FontFamily,System.Single,System.Drawing.FontStyle,System.Drawing.GraphicsUnit,System.Byte)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Font.cs#L29C5-L382C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Font.cs#L29C5-L382C6" }, { "DocsId": "M:System.Drawing.Font.#ctor(System.Drawing.FontFamily,System.Single,System.Drawing.FontStyle,System.Drawing.GraphicsUnit,System.Byte,System.Boolean)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Font.cs#L29C5-L390C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Font.cs#L29C5-L390C6" }, { "DocsId": "M:System.Drawing.Font.#ctor(System.String,System.Single,System.Drawing.FontStyle,System.Drawing.GraphicsUnit,System.Byte)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Font.cs#L29C5-L398C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Font.cs#L29C5-L398C6" }, { "DocsId": "M:System.Drawing.Font.#ctor(System.String,System.Single,System.Drawing.FontStyle,System.Drawing.GraphicsUnit,System.Byte,System.Boolean)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Font.cs#L29C5-L411C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Font.cs#L29C5-L411C6" }, { "DocsId": "M:System.Drawing.Font.#ctor(System.Drawing.FontFamily,System.Single,System.Drawing.FontStyle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Font.cs#L29C5-L419C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Font.cs#L29C5-L419C6" }, { "DocsId": "M:System.Drawing.Font.#ctor(System.Drawing.FontFamily,System.Single,System.Drawing.GraphicsUnit)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Font.cs#L29C5-L427C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Font.cs#L29C5-L427C6" }, { "DocsId": "M:System.Drawing.Font.#ctor(System.Drawing.FontFamily,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Font.cs#L29C5-L435C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Font.cs#L29C5-L435C6" }, { "DocsId": "M:System.Drawing.Font.#ctor(System.String,System.Single,System.Drawing.FontStyle,System.Drawing.GraphicsUnit)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Font.cs#L29C5-L443C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Font.cs#L29C5-L443C6" }, { "DocsId": "M:System.Drawing.Font.#ctor(System.String,System.Single,System.Drawing.FontStyle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Font.cs#L29C5-L451C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Font.cs#L29C5-L451C6" }, { "DocsId": "M:System.Drawing.Font.#ctor(System.String,System.Single,System.Drawing.GraphicsUnit)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Font.cs#L29C5-L459C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Font.cs#L29C5-L459C6" }, { "DocsId": "M:System.Drawing.Font.#ctor(System.String,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Font.cs#L29C5-L467C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Font.cs#L29C5-L467C6" }, { "DocsId": "M:System.Drawing.Font.FromHfont(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Font.cs#L540C9-L545C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Font.cs#L540C9-L545C6" }, { "DocsId": "M:System.Drawing.Font.FromLogFont(System.Object)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Font.cs#L554C9-L556C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Font.cs#L554C9-L556C6" }, { "DocsId": "M:System.Drawing.Font.FromLogFont(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Font.cs#L610C9-L632C45" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Font.cs#L610C9-L632C45" }, { "DocsId": "M:System.Drawing.Font.FromHdc(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Font.cs#L641C9-L654C41" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Font.cs#L641C9-L654C41" }, { "DocsId": "M:System.Drawing.Font.Clone", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Font.cs#L662C9-L665C68" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Font.cs#L662C9-L665C68" }, { "DocsId": "M:System.Drawing.Font.ToLogFont(System.Object)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Font.cs#L693C9-L696C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Font.cs#L693C9-L696C6" }, { "DocsId": "M:System.Drawing.Font.ToHfont", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Font.cs#L712C9-L717C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Font.cs#L712C9-L717C6" }, { "DocsId": "M:System.Drawing.Font.GetHeight", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Font.cs#L721C9-L724C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Font.cs#L721C9-L724C6" }, { "DocsId": "P:System.Drawing.Font.Size", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Font.cs#L38C26-L38C35" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Font.cs#L38C26-L38C35" }, { "DocsId": "P:System.Drawing.Font.Style", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Font.cs#L44C31-L44C41" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Font.cs#L44C31-L44C41" }, { "DocsId": "P:System.Drawing.Font.Bold", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Font.cs#L50C25-L50C54" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Font.cs#L50C25-L50C54" }, { "DocsId": "P:System.Drawing.Font.Italic", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Font.cs#L56C27-L56C58" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Font.cs#L56C27-L56C58" }, { "DocsId": "P:System.Drawing.Font.Strikeout", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Font.cs#L62C30-L62C64" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Font.cs#L62C30-L62C64" }, { "DocsId": "P:System.Drawing.Font.Underline", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Font.cs#L68C30-L68C64" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Font.cs#L68C30-L68C64" }, { "DocsId": "P:System.Drawing.Font.FontFamily", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Font.cs#L74C37-L74C48" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Font.cs#L74C37-L74C48" }, { "DocsId": "P:System.Drawing.Font.Name", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Font.cs#L83C27-L83C42" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Font.cs#L83C27-L83C42" }, { "DocsId": "P:System.Drawing.Font.Unit", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Font.cs#L89C33-L89C42" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Font.cs#L89C33-L89C42" }, { "DocsId": "P:System.Drawing.Font.GdiCharSet", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Font.cs#L100C31-L100C42" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Font.cs#L100C31-L100C42" }, { "DocsId": "P:System.Drawing.Font.GdiVerticalFont", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Font.cs#L109C36-L109C52" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Font.cs#L109C36-L109C52" }, { "DocsId": "P:System.Drawing.Font.OriginalFontName", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Font.cs#L115C40-L115C57" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Font.cs#L115C40-L115C57" }, { "DocsId": "P:System.Drawing.Font.SystemFontName", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Font.cs#L121C37-L121C52" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Font.cs#L121C37-L121C52" }, { "DocsId": "P:System.Drawing.Font.IsSystemFont", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Font.cs#L127C33-L127C71" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Font.cs#L127C33-L127C71" }, { "DocsId": "P:System.Drawing.Font.Height", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Font.cs#L133C26-L133C56" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Font.cs#L133C26-L133C56" }, { "DocsId": "P:System.Drawing.Font.SizeInPoints", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Font.cs#L734C13-L747C10" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Font.cs#L734C13-L747C10" } ], "DocsId": "T:System.Drawing.Font", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Font.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Font.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.FontConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L19C9-L19C89" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L19C9-L19C89" }, { "DocsId": "M:System.Drawing.FontConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L24C9-L24C103" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L24C9-L24C103" }, { "DocsId": "M:System.Drawing.FontConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L29C9-L146C73" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L29C9-L146C73" }, { "DocsId": "M:System.Drawing.FontConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L151C9-L251C63" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L151C9-L251C63" }, { "DocsId": "M:System.Drawing.FontConverter.CreateInstance(System.ComponentModel.ITypeDescriptorContext,System.Collections.IDictionary)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L314C9-L400C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L314C9-L400C75" }, { "DocsId": "M:System.Drawing.FontConverter.GetCreateInstanceSupported(System.ComponentModel.ITypeDescriptorContext)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L403C89-L403C93" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L403C89-L403C93" }, { "DocsId": "M:System.Drawing.FontConverter.GetProperties(System.ComponentModel.ITypeDescriptorContext,System.Object,System.Attribute[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L411C9-L415C101" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L411C9-L415C101" }, { "DocsId": "M:System.Drawing.FontConverter.GetPropertiesSupported(System.ComponentModel.ITypeDescriptorContext)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L418C85-L418C89" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L418C85-L418C89" }, { "DocsId": "M:System.Drawing.FontConverter.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs" }, { "DocsId": "T:System.Drawing.FontConverter.FontNameConverter", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs" }, { "DocsId": "T:System.Drawing.FontConverter.FontUnitConverter", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs" } ], "DocsId": "T:System.Drawing.FontConverter", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.FontFamily.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L57C5-L57C67" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L57C5-L57C67" }, { "DocsId": "M:System.Drawing.FontFamily.#ctor(System.String,System.Drawing.Text.FontCollection)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L63C5-L63C109" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L63C5-L63C109" }, { "DocsId": "M:System.Drawing.FontFamily.#ctor(System.Drawing.Text.GenericFontFamilies)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L104C5-L125C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L104C5-L125C6" }, { "DocsId": "M:System.Drawing.FontFamily.Finalize", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L127C22-L127C36" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L127C22-L16707566C0" }, { "DocsId": "M:System.Drawing.FontFamily.ToString", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L134C42-L134C76" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L134C42-L134C76" }, { "DocsId": "M:System.Drawing.FontFamily.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L138C9-L151C57" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L138C9-L151C57" }, { "DocsId": "M:System.Drawing.FontFamily.GetHashCode", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L157C42-L157C80" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L157C42-L157C80" }, { "DocsId": "M:System.Drawing.FontFamily.Dispose", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L166C9-L168C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L166C9-L168C6" }, { "DocsId": "M:System.Drawing.FontFamily.GetName(System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L204C9-L207C54" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L204C9-L207C54" }, { "DocsId": "M:System.Drawing.FontFamily.GetFamilies(System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L247C9-L249C55" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L247C9-L249C55" }, { "DocsId": "M:System.Drawing.FontFamily.IsStyleAvailable(System.Drawing.FontStyle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L258C9-L261C29" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L258C9-L261C29" }, { "DocsId": "M:System.Drawing.FontFamily.GetEmHeight(System.Drawing.FontStyle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L270C9-L273C23" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L270C9-L273C23" }, { "DocsId": "M:System.Drawing.FontFamily.GetCellAscent(System.Drawing.FontStyle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L282C9-L285C23" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L282C9-L285C23" }, { "DocsId": "M:System.Drawing.FontFamily.GetCellDescent(System.Drawing.FontStyle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L294C9-L297C23" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L294C9-L297C23" }, { "DocsId": "M:System.Drawing.FontFamily.GetLineSpacing(System.Drawing.FontStyle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L307C9-L310C23" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L307C9-L310C23" }, { "DocsId": "P:System.Drawing.FontFamily.Name", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L197C27-L197C51" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L197C27-L197C51" }, { "DocsId": "P:System.Drawing.FontFamily.Families", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L214C44-L214C82" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L214C44-L214C82" }, { "DocsId": "P:System.Drawing.FontFamily.GenericSansSerif", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L219C50-L219C80" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L219C50-L219C80" }, { "DocsId": "P:System.Drawing.FontFamily.GenericSerif", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L233C46-L233C76" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L233C46-L233C76" }, { "DocsId": "P:System.Drawing.FontFamily.GenericMonospace", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L238C50-L238C84" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L238C50-L238C84" } ], "DocsId": "T:System.Drawing.FontFamily", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.SolidBrush.#ctor(System.Drawing.Color)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SolidBrush.cs#L13C5-L30C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SolidBrush.cs#L13C5-L30C6" }, { "DocsId": "M:System.Drawing.SolidBrush.Clone", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SolidBrush.cs#L46C9-L50C44" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SolidBrush.cs#L46C9-L50C44" }, { "DocsId": "M:System.Drawing.SolidBrush.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SolidBrush.cs#L55C9-L65C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SolidBrush.cs#L55C9-L65C6" }, { "DocsId": "M:System.Drawing.SolidBrush.System#Drawing#Internal#ISystemColorTracker#OnSystemColorChanged", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SolidBrush.cs#L117C9-L121C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SolidBrush.cs#L117C9-L121C6" }, { "DocsId": "P:System.Drawing.SolidBrush.Color", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SolidBrush.cs#L71C13-L81C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SolidBrush.cs#L71C13-L81C27" } ], "DocsId": "T:System.Drawing.SolidBrush", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SolidBrush.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SolidBrush.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.SystemBrushes.FromSystemColor(System.Drawing.Color)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L57C9-L77C63" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L57C9-L77C63" }, { "DocsId": "P:System.Drawing.SystemBrushes.ActiveBorder", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L12C41-L12C83" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L12C41-L12C83" }, { "DocsId": "P:System.Drawing.SystemBrushes.ActiveCaption", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L13C42-L13C85" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L13C42-L13C85" }, { "DocsId": "P:System.Drawing.SystemBrushes.ActiveCaptionText", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L14C46-L14C93" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L14C46-L14C93" }, { "DocsId": "P:System.Drawing.SystemBrushes.AppWorkspace", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L15C41-L15C83" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L15C41-L15C83" }, { "DocsId": "P:System.Drawing.SystemBrushes.ButtonFace", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L17C39-L17C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L17C39-L17C79" }, { "DocsId": "P:System.Drawing.SystemBrushes.ButtonHighlight", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L18C44-L18C89" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L18C44-L18C89" }, { "DocsId": "P:System.Drawing.SystemBrushes.ButtonShadow", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L19C41-L19C83" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L19C41-L19C83" }, { "DocsId": "P:System.Drawing.SystemBrushes.Control", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L21C36-L21C73" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L21C36-L21C73" }, { "DocsId": "P:System.Drawing.SystemBrushes.ControlLightLight", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L22C46-L22C93" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L22C46-L22C93" }, { "DocsId": "P:System.Drawing.SystemBrushes.ControlLight", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L23C41-L23C83" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L23C41-L23C83" }, { "DocsId": "P:System.Drawing.SystemBrushes.ControlDark", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L24C40-L24C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L24C40-L24C81" }, { "DocsId": "P:System.Drawing.SystemBrushes.ControlDarkDark", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L25C44-L25C89" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L25C44-L25C89" }, { "DocsId": "P:System.Drawing.SystemBrushes.ControlText", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L26C40-L26C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L26C40-L26C81" }, { "DocsId": "P:System.Drawing.SystemBrushes.Desktop", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L28C36-L28C73" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L28C36-L28C73" }, { "DocsId": "P:System.Drawing.SystemBrushes.GradientActiveCaption", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L30C50-L30C101" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L30C50-L30C101" }, { "DocsId": "P:System.Drawing.SystemBrushes.GradientInactiveCaption", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L31C52-L31C105" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L31C52-L31C105" }, { "DocsId": "P:System.Drawing.SystemBrushes.GrayText", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L32C37-L32C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L32C37-L32C75" }, { "DocsId": "P:System.Drawing.SystemBrushes.Highlight", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L34C38-L34C77" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L34C38-L34C77" }, { "DocsId": "P:System.Drawing.SystemBrushes.HighlightText", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L35C42-L35C85" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L35C42-L35C85" }, { "DocsId": "P:System.Drawing.SystemBrushes.HotTrack", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L36C37-L36C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L36C37-L36C75" }, { "DocsId": "P:System.Drawing.SystemBrushes.InactiveCaption", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L38C44-L38C89" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L38C44-L38C89" }, { "DocsId": "P:System.Drawing.SystemBrushes.InactiveBorder", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L39C43-L39C87" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L39C43-L39C87" }, { "DocsId": "P:System.Drawing.SystemBrushes.InactiveCaptionText", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L40C48-L40C97" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L40C48-L40C97" }, { "DocsId": "P:System.Drawing.SystemBrushes.Info", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L41C33-L41C67" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L41C33-L41C67" }, { "DocsId": "P:System.Drawing.SystemBrushes.InfoText", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L42C37-L42C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L42C37-L42C75" }, { "DocsId": "P:System.Drawing.SystemBrushes.Menu", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L44C33-L44C67" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L44C33-L44C67" }, { "DocsId": "P:System.Drawing.SystemBrushes.MenuBar", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L45C36-L45C73" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L45C36-L45C73" }, { "DocsId": "P:System.Drawing.SystemBrushes.MenuHighlight", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L46C42-L46C85" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L46C42-L46C85" }, { "DocsId": "P:System.Drawing.SystemBrushes.MenuText", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L47C37-L47C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L47C37-L47C75" }, { "DocsId": "P:System.Drawing.SystemBrushes.ScrollBar", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L49C38-L49C77" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L49C38-L49C77" }, { "DocsId": "P:System.Drawing.SystemBrushes.Window", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L51C35-L51C71" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L51C35-L51C71" }, { "DocsId": "P:System.Drawing.SystemBrushes.WindowFrame", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L52C40-L52C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L52C40-L52C81" }, { "DocsId": "P:System.Drawing.SystemBrushes.WindowText", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L53C39-L53C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L53C39-L53C79" } ], "DocsId": "T:System.Drawing.SystemBrushes", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.TextureBrush.#ctor(System.Drawing.Image)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L20C41-L22C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L20C41-L22C6" }, { "DocsId": "M:System.Drawing.TextureBrush.#ctor(System.Drawing.Image,System.Drawing.Drawing2D.WrapMode)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L24C5-L40C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L24C5-L40C6" }, { "DocsId": "M:System.Drawing.TextureBrush.#ctor(System.Drawing.Image,System.Drawing.Drawing2D.WrapMode,System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L42C5-L62C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L42C5-L62C6" }, { "DocsId": "M:System.Drawing.TextureBrush.#ctor(System.Drawing.Image,System.Drawing.Drawing2D.WrapMode,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L64C5-L84C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L64C5-L84C6" }, { "DocsId": "M:System.Drawing.TextureBrush.#ctor(System.Drawing.Image,System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L86C60-L86C90" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L86C60-L86C90" }, { "DocsId": "M:System.Drawing.TextureBrush.#ctor(System.Drawing.Image,System.Drawing.RectangleF,System.Drawing.Imaging.ImageAttributes)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L88C5-L104C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L88C5-L104C6" }, { "DocsId": "M:System.Drawing.TextureBrush.#ctor(System.Drawing.Image,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L106C59-L106C89" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L106C59-L106C89" }, { "DocsId": "M:System.Drawing.TextureBrush.#ctor(System.Drawing.Image,System.Drawing.Rectangle,System.Drawing.Imaging.ImageAttributes)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L108C5-L124C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L108C5-L124C6" }, { "DocsId": "M:System.Drawing.TextureBrush.Clone", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L135C9-L138C45" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L135C9-L138C45" }, { "DocsId": "M:System.Drawing.TextureBrush.ResetTransform", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L199C9-L201C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L199C9-L201C6" }, { "DocsId": "M:System.Drawing.TextureBrush.MultiplyTransform(System.Drawing.Drawing2D.Matrix)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L203C53-L203C99" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L203C53-L203C99" }, { "DocsId": "M:System.Drawing.TextureBrush.MultiplyTransform(System.Drawing.Drawing2D.Matrix,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L207C9-L220C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L207C9-L220C6" }, { "DocsId": "M:System.Drawing.TextureBrush.TranslateTransform(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L222C59-L222C106" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L222C59-L222C106" }, { "DocsId": "M:System.Drawing.TextureBrush.TranslateTransform(System.Single,System.Single,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L226C9-L231C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L226C9-L231C6" }, { "DocsId": "M:System.Drawing.TextureBrush.ScaleTransform(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L233C55-L233C98" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L233C55-L233C98" }, { "DocsId": "M:System.Drawing.TextureBrush.ScaleTransform(System.Single,System.Single,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L237C9-L242C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L237C9-L242C6" }, { "DocsId": "M:System.Drawing.TextureBrush.RotateTransform(System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L244C49-L244C92" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L244C49-L244C92" }, { "DocsId": "M:System.Drawing.TextureBrush.RotateTransform(System.Single,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L248C9-L252C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L248C9-L252C6" }, { "DocsId": "P:System.Drawing.TextureBrush.Transform", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L145C13-L149C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L145C13-L149C27" }, { "DocsId": "P:System.Drawing.TextureBrush.WrapMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L168C13-L171C35" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L168C13-L171C35" }, { "DocsId": "P:System.Drawing.TextureBrush.Image", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L190C13-L193C51" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L190C13-L193C51" } ], "DocsId": "T:System.Drawing.TextureBrush", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs" }, { "Members": [ { "DocsId": "P:System.Drawing.BufferedGraphicsManager.Current", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/BufferedGraphicsManager.cs#L24C53-L24C57" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/BufferedGraphicsManager.cs#L24C53-L24C57" } ], "DocsId": "T:System.Drawing.BufferedGraphicsManager", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/BufferedGraphicsManager.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/BufferedGraphicsManager.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Icon.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L61C36-L63C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L61C36-L63C6" }, { "DocsId": "M:System.Drawing.Icon.#ctor(System.String,System.Drawing.Size)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L65C47-L67C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L65C47-L67C6" }, { "DocsId": "M:System.Drawing.Icon.#ctor(System.String,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L69C59-L79C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L69C59-L79C6" }, { "DocsId": "M:System.Drawing.Icon.#ctor(System.Drawing.Icon,System.Drawing.Size)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L81C45-L83C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L81C45-L83C6" }, { "DocsId": "M:System.Drawing.Icon.#ctor(System.Drawing.Icon,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L85C57-L100C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L85C57-L100C6" }, { "DocsId": "M:System.Drawing.Icon.#ctor(System.Type,System.String)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L102C47-L115C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L102C47-L115C6" }, { "DocsId": "M:System.Drawing.Icon.#ctor(System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L117C34-L119C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L117C34-L119C6" }, { "DocsId": "M:System.Drawing.Icon.#ctor(System.IO.Stream,System.Drawing.Size)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L121C45-L123C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L121C45-L123C6" }, { "DocsId": "M:System.Drawing.Icon.#ctor(System.IO.Stream,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L125C57-L145C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L125C57-L145C6" }, { "DocsId": "M:System.Drawing.Icon.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L156C9-L168C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L156C9-L168C6" }, { "DocsId": "M:System.Drawing.Icon.ExtractAssociatedIcon(System.String)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L170C67-L170C101" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L170C67-L170C101" }, { "DocsId": "M:System.Drawing.Icon.Clone", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L266C30-L266C69" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L266C30-L266C69" }, { "DocsId": "M:System.Drawing.Icon.Dispose", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L289C9-L291C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L289C9-L291C6" }, { "DocsId": "M:System.Drawing.Icon.Finalize", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L457C16-L457C30" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L457C16-L16707566C0" }, { "DocsId": "M:System.Drawing.Icon.FromHandle(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L461C9-L464C33" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L461C9-L464C33" }, { "DocsId": "M:System.Drawing.Icon.ToBitmap", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L691C9-L696C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L691C9-L696C27" }, { "DocsId": "M:System.Drawing.Icon.ToString", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L870C42-L870C57" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L870C42-L870C57" }, { "DocsId": "M:System.Drawing.Icon.Save(System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Icon.ComWrappers.cs#L16C9-L62C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Icon.ComWrappers.cs#L16C9-L62C6" }, { "DocsId": "P:System.Drawing.Icon.Handle", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L214C13-L218C28" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L214C13-L218C28" }, { "DocsId": "P:System.Drawing.Icon.Height", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L223C26-L223C37" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L223C26-L223C37" }, { "DocsId": "P:System.Drawing.Icon.Size", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L229C13-L259C30" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L229C13-L259C30" }, { "DocsId": "P:System.Drawing.Icon.Width", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L264C25-L264C35" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L264C25-L264C35" } ], "DocsId": "T:System.Drawing.Icon", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Icon.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Icon.cs" }, { "Members": [ { "DocsId": "P:System.Drawing.SystemIcons.Application", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs#L22C39-L22C100" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs#L22C39-L22C100" }, { "DocsId": "P:System.Drawing.SystemIcons.Asterisk", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs#L24C36-L24C91" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs#L24C36-L24C91" }, { "DocsId": "P:System.Drawing.SystemIcons.Error", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs#L26C33-L26C82" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs#L26C33-L26C82" }, { "DocsId": "P:System.Drawing.SystemIcons.Exclamation", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs#L28C39-L28C100" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs#L28C39-L28C100" }, { "DocsId": "P:System.Drawing.SystemIcons.Hand", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs#L30C32-L30C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs#L30C32-L30C79" }, { "DocsId": "P:System.Drawing.SystemIcons.Information", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs#L32C39-L32C100" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs#L32C39-L32C100" }, { "DocsId": "P:System.Drawing.SystemIcons.Question", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs#L34C36-L34C91" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs#L34C36-L34C91" }, { "DocsId": "P:System.Drawing.SystemIcons.Warning", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs#L36C35-L36C88" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs#L36C35-L36C88" }, { "DocsId": "P:System.Drawing.SystemIcons.WinLogo", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs#L38C35-L38C88" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs#L38C35-L38C88" }, { "DocsId": "P:System.Drawing.SystemIcons.Shield", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs#L44C13-L50C29" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs#L44C13-L50C29" } ], "DocsId": "T:System.Drawing.SystemIcons", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.ToolboxBitmapAttribute.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs#L29C55-L32C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs#L29C55-L32C6" }, { "DocsId": "M:System.Drawing.ToolboxBitmapAttribute.#ctor(System.Type)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs#L34C45-L37C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs#L34C45-L37C6" }, { "DocsId": "M:System.Drawing.ToolboxBitmapAttribute.#ctor(System.Type,System.String)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs#L40C11-L44C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs#L40C11-L44C6" }, { "DocsId": "M:System.Drawing.ToolboxBitmapAttribute.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs#L54C9-L64C22" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs#L54C9-L64C22" }, { "DocsId": "M:System.Drawing.ToolboxBitmapAttribute.GetHashCode", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs#L67C42-L67C60" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs#L67C42-L67C60" }, { "DocsId": "M:System.Drawing.ToolboxBitmapAttribute.GetImage(System.Object)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs#L69C50-L69C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs#L69C50-L69C75" }, { "DocsId": "M:System.Drawing.ToolboxBitmapAttribute.GetImage(System.Object,System.Boolean)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs#L73C9-L78C21" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs#L73C9-L78C21" }, { "DocsId": "M:System.Drawing.ToolboxBitmapAttribute.GetImage(System.Type)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs#L81C42-L81C63" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs#L81C42-L81C63" }, { "DocsId": "M:System.Drawing.ToolboxBitmapAttribute.GetImage(System.Type,System.Boolean)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs#L83C54-L83C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs#L83C54-L83C81" }, { "DocsId": "M:System.Drawing.ToolboxBitmapAttribute.GetImage(System.Type,System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs#L87C9-L133C25" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs#L87C9-L133C25" }, { "DocsId": "M:System.Drawing.ToolboxBitmapAttribute.GetImageFromResource(System.Type,System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs#L229C9-L229C72" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs#L229C9-L229C72" }, { "DocsId": "F:System.Drawing.ToolboxBitmapAttribute.Default", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs" } ], "DocsId": "T:System.Drawing.ToolboxBitmapAttribute", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Text.GenericFontFamilies.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Text/GenericFontFamilies.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Text/GenericFontFamilies.cs" }, { "DocsId": "F:System.Drawing.Text.GenericFontFamilies.Serif", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Text/GenericFontFamilies.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Text/GenericFontFamilies.cs" }, { "DocsId": "F:System.Drawing.Text.GenericFontFamilies.SansSerif", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Text/GenericFontFamilies.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Text/GenericFontFamilies.cs" }, { "DocsId": "F:System.Drawing.Text.GenericFontFamilies.Monospace", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Text/GenericFontFamilies.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Text/GenericFontFamilies.cs" } ], "DocsId": "T:System.Drawing.Text.GenericFontFamilies", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Text/GenericFontFamilies.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Text/GenericFontFamilies.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Text.HotkeyPrefix.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Text/HotkeyPrefix.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Text/HotkeyPrefix.cs" }, { "DocsId": "F:System.Drawing.Text.HotkeyPrefix.None", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Text/HotkeyPrefix.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Text/HotkeyPrefix.cs" }, { "DocsId": "F:System.Drawing.Text.HotkeyPrefix.Show", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Text/HotkeyPrefix.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Text/HotkeyPrefix.cs" }, { "DocsId": "F:System.Drawing.Text.HotkeyPrefix.Hide", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Text/HotkeyPrefix.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Text/HotkeyPrefix.cs" } ], "DocsId": "T:System.Drawing.Text.HotkeyPrefix", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Text/HotkeyPrefix.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Text/HotkeyPrefix.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Text.TextRenderingHint.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Text/TextRenderingHint.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Text/TextRenderingHint.cs" }, { "DocsId": "F:System.Drawing.Text.TextRenderingHint.SystemDefault", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Text/TextRenderingHint.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Text/TextRenderingHint.cs" }, { "DocsId": "F:System.Drawing.Text.TextRenderingHint.SingleBitPerPixelGridFit", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Text/TextRenderingHint.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Text/TextRenderingHint.cs" }, { "DocsId": "F:System.Drawing.Text.TextRenderingHint.SingleBitPerPixel", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Text/TextRenderingHint.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Text/TextRenderingHint.cs" }, { "DocsId": "F:System.Drawing.Text.TextRenderingHint.AntiAliasGridFit", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Text/TextRenderingHint.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Text/TextRenderingHint.cs" }, { "DocsId": "F:System.Drawing.Text.TextRenderingHint.AntiAlias", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Text/TextRenderingHint.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Text/TextRenderingHint.cs" }, { "DocsId": "F:System.Drawing.Text.TextRenderingHint.ClearTypeGridFit", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Text/TextRenderingHint.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Text/TextRenderingHint.cs" } ], "DocsId": "T:System.Drawing.Text.TextRenderingHint", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Text/TextRenderingHint.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Text/TextRenderingHint.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Text.PrivateFontCollection.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Text/PrivateFontCollection.cs#L20C38-L24C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Text/PrivateFontCollection.cs#L20C38-L24C6" }, { "DocsId": "M:System.Drawing.Text.PrivateFontCollection.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Text/PrivateFontCollection.cs#L31C9-L53C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Text/PrivateFontCollection.cs#L31C9-L53C6" }, { "DocsId": "M:System.Drawing.Text.PrivateFontCollection.AddFontFile(System.String)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Text/PrivateFontCollection.cs#L60C9-L87C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Text/PrivateFontCollection.cs#L60C9-L87C6" }, { "DocsId": "M:System.Drawing.Text.PrivateFontCollection.AddMemoryFont(System.IntPtr,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Text/PrivateFontCollection.cs#L94C9-L95C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Text/PrivateFontCollection.cs#L94C9-L95C6" } ], "DocsId": "T:System.Drawing.Text.PrivateFontCollection", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Text/PrivateFontCollection.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Text/PrivateFontCollection.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Text.FontCollection.Dispose", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Text/FontCollection.cs#L23C9-L25C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Text/FontCollection.cs#L23C9-L25C6" }, { "DocsId": "M:System.Drawing.Text.FontCollection.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Text/FontCollection.cs#L27C54-L27C55" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Text/FontCollection.cs#L27C54-L27C55" }, { "DocsId": "M:System.Drawing.Text.FontCollection.Finalize", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Text/FontCollection.cs#L60C26-L60C40" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Text/FontCollection.cs#L60C26-L16707566C0" }, { "DocsId": "P:System.Drawing.Text.FontCollection.Families", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Text/FontCollection.cs#L38C13-L56C29" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Text/FontCollection.cs#L38C13-L56C29" } ], "DocsId": "T:System.Drawing.Text.FontCollection", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Text/FontCollection.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Text/FontCollection.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Text.InstalledFontCollection.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Text/InstalledFontCollection.cs#L15C40-L19C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Text/InstalledFontCollection.cs#L15C40-L19C6" } ], "DocsId": "T:System.Drawing.Text.InstalledFontCollection", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Text/InstalledFontCollection.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Text/InstalledFontCollection.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Drawing2D.Blend.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Blend.cs#L8C5-L12C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Blend.cs#L8C5-L12C6" }, { "DocsId": "M:System.Drawing.Drawing2D.Blend.#ctor(System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Blend.cs#L14C5-L18C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Blend.cs#L14C5-L18C6" }, { "DocsId": "P:System.Drawing.Drawing2D.Blend.Factors", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Blend.cs#L20C30-L20C34" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Blend.cs#L20C30-L20C34" }, { "DocsId": "P:System.Drawing.Drawing2D.Blend.Positions", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Blend.cs#L22C32-L22C36" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Blend.cs#L22C32-L22C36" } ], "DocsId": "T:System.Drawing.Drawing2D.Blend", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Blend.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Blend.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Drawing2D.ColorBlend.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/ColorBlend.cs#L8C5-L12C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/ColorBlend.cs#L8C5-L12C6" }, { "DocsId": "M:System.Drawing.Drawing2D.ColorBlend.#ctor(System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/ColorBlend.cs#L14C5-L18C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/ColorBlend.cs#L14C5-L18C6" }, { "DocsId": "P:System.Drawing.Drawing2D.ColorBlend.Colors", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/ColorBlend.cs#L20C29-L20C33" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/ColorBlend.cs#L20C29-L20C33" }, { "DocsId": "P:System.Drawing.Drawing2D.ColorBlend.Positions", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/ColorBlend.cs#L22C32-L22C36" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/ColorBlend.cs#L22C32-L22C36" } ], "DocsId": "T:System.Drawing.Drawing2D.ColorBlend", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/ColorBlend.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/ColorBlend.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Drawing2D.CombineMode.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CombineMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CombineMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.CombineMode.Replace", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CombineMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CombineMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.CombineMode.Intersect", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CombineMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CombineMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.CombineMode.Union", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CombineMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CombineMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.CombineMode.Xor", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CombineMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CombineMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.CombineMode.Exclude", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CombineMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CombineMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.CombineMode.Complement", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CombineMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CombineMode.cs" } ], "DocsId": "T:System.Drawing.Drawing2D.CombineMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CombineMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CombineMode.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Drawing2D.CompositingMode.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.CompositingMode.SourceOver", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.CompositingMode.SourceCopy", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingMode.cs" } ], "DocsId": "T:System.Drawing.Drawing2D.CompositingMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingMode.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Drawing2D.CompositingQuality.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingQuality.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingQuality.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.CompositingQuality.Invalid", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingQuality.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingQuality.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.CompositingQuality.Default", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingQuality.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingQuality.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.CompositingQuality.HighSpeed", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingQuality.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingQuality.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.CompositingQuality.HighQuality", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingQuality.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingQuality.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.CompositingQuality.GammaCorrected", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingQuality.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingQuality.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.CompositingQuality.AssumeLinear", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingQuality.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingQuality.cs" } ], "DocsId": "T:System.Drawing.Drawing2D.CompositingQuality", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingQuality.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingQuality.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Drawing2D.CoordinateSpace.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CoordinateSpace.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CoordinateSpace.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.CoordinateSpace.World", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CoordinateSpace.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CoordinateSpace.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.CoordinateSpace.Page", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CoordinateSpace.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CoordinateSpace.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.CoordinateSpace.Device", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CoordinateSpace.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CoordinateSpace.cs" } ], "DocsId": "T:System.Drawing.Drawing2D.CoordinateSpace", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CoordinateSpace.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CoordinateSpace.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Drawing2D.DashStyle.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/DashStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/DashStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.DashStyle.Solid", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/DashStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/DashStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.DashStyle.Dash", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/DashStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/DashStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.DashStyle.Dot", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/DashStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/DashStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.DashStyle.DashDot", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/DashStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/DashStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.DashStyle.DashDotDot", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/DashStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/DashStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.DashStyle.Custom", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/DashStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/DashStyle.cs" } ], "DocsId": "T:System.Drawing.Drawing2D.DashStyle", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/DashStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/DashStyle.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Drawing2D.FillMode.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/FillMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/FillMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.FillMode.Alternate", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/FillMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/FillMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.FillMode.Winding", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/FillMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/FillMode.cs" } ], "DocsId": "T:System.Drawing.Drawing2D.FillMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/FillMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/FillMode.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Drawing2D.FlushIntention.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/FlushIntention.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/FlushIntention.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.FlushIntention.Flush", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/FlushIntention.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/FlushIntention.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.FlushIntention.Sync", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/FlushIntention.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/FlushIntention.cs" } ], "DocsId": "T:System.Drawing.Drawing2D.FlushIntention", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/FlushIntention.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/FlushIntention.cs" }, { "Members": [], "DocsId": "T:System.Drawing.Drawing2D.GraphicsContainer", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsContainer.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsContainer.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Drawing2D.HatchBrush.#ctor(System.Drawing.Drawing2D.HatchStyle,System.Drawing.Color)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchBrush.cs#L11C65-L13C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchBrush.cs#L11C65-L13C6" }, { "DocsId": "M:System.Drawing.Drawing2D.HatchBrush.#ctor(System.Drawing.Drawing2D.HatchStyle,System.Drawing.Color,System.Drawing.Color)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchBrush.cs#L15C5-L27C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchBrush.cs#L15C5-L27C6" }, { "DocsId": "M:System.Drawing.Drawing2D.HatchBrush.Clone", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchBrush.cs#L38C9-L41C44" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchBrush.cs#L38C9-L41C44" }, { "DocsId": "P:System.Drawing.Drawing2D.HatchBrush.HatchStyle", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchBrush.cs#L49C13-L52C43" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchBrush.cs#L49C13-L52C43" }, { "DocsId": "P:System.Drawing.Drawing2D.HatchBrush.ForegroundColor", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchBrush.cs#L61C13-L64C51" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchBrush.cs#L61C13-L64C51" }, { "DocsId": "P:System.Drawing.Drawing2D.HatchBrush.BackgroundColor", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchBrush.cs#L73C13-L76C51" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchBrush.cs#L73C13-L76C51" } ], "DocsId": "T:System.Drawing.Drawing2D.HatchBrush", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchBrush.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchBrush.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Horizontal", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Vertical", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.ForwardDiagonal", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.BackwardDiagonal", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Cross", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.DiagonalCross", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Percent05", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Percent10", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Percent20", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Percent25", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Percent30", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Percent40", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Percent50", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Percent60", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Percent70", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Percent75", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Percent80", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Percent90", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.LightDownwardDiagonal", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.LightUpwardDiagonal", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.DarkDownwardDiagonal", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.DarkUpwardDiagonal", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.WideDownwardDiagonal", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.WideUpwardDiagonal", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.LightVertical", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.LightHorizontal", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.NarrowVertical", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.NarrowHorizontal", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.DarkVertical", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.DarkHorizontal", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.DashedDownwardDiagonal", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.DashedUpwardDiagonal", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.DashedHorizontal", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.DashedVertical", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.SmallConfetti", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.LargeConfetti", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.ZigZag", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Wave", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.DiagonalBrick", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.HorizontalBrick", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Weave", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Plaid", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Divot", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.DottedGrid", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.DottedDiamond", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Shingle", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Trellis", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Sphere", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.SmallGrid", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.SmallCheckerBoard", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.LargeCheckerBoard", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.OutlinedDiamond", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.SolidDiamond", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.LargeGrid", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Min", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Max", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" } ], "DocsId": "T:System.Drawing.Drawing2D.HatchStyle", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Drawing2D.InterpolationMode.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/InterpolationMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/InterpolationMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.InterpolationMode.Invalid", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/InterpolationMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/InterpolationMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.InterpolationMode.Default", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/InterpolationMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/InterpolationMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.InterpolationMode.Low", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/InterpolationMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/InterpolationMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.InterpolationMode.High", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/InterpolationMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/InterpolationMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.InterpolationMode.Bilinear", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/InterpolationMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/InterpolationMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.InterpolationMode.Bicubic", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/InterpolationMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/InterpolationMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.InterpolationMode.NearestNeighbor", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/InterpolationMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/InterpolationMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.InterpolationMode.HighQualityBilinear", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/InterpolationMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/InterpolationMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.InterpolationMode.HighQualityBicubic", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/InterpolationMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/InterpolationMode.cs" } ], "DocsId": "T:System.Drawing.Drawing2D.InterpolationMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/InterpolationMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/InterpolationMode.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Drawing2D.LinearGradientMode.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.LinearGradientMode.Horizontal", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.LinearGradientMode.Vertical", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.LinearGradientMode.ForwardDiagonal", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.LinearGradientMode.BackwardDiagonal", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientMode.cs" } ], "DocsId": "T:System.Drawing.Drawing2D.LinearGradientMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientMode.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Drawing2D.LinearGradientBrush.#ctor(System.Drawing.PointF,System.Drawing.PointF,System.Drawing.Color,System.Drawing.Color)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L14C5-L23C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L14C5-L23C6" }, { "DocsId": "M:System.Drawing.Drawing2D.LinearGradientBrush.#ctor(System.Drawing.Point,System.Drawing.Point,System.Drawing.Color,System.Drawing.Color)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L25C5-L34C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L25C5-L34C6" }, { "DocsId": "M:System.Drawing.Drawing2D.LinearGradientBrush.#ctor(System.Drawing.RectangleF,System.Drawing.Color,System.Drawing.Color,System.Drawing.Drawing2D.LinearGradientMode)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L36C5-L53C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L36C5-L53C6" }, { "DocsId": "M:System.Drawing.Drawing2D.LinearGradientBrush.#ctor(System.Drawing.Rectangle,System.Drawing.Color,System.Drawing.Color,System.Drawing.Drawing2D.LinearGradientMode)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L55C5-L71C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L55C5-L71C6" }, { "DocsId": "M:System.Drawing.Drawing2D.LinearGradientBrush.#ctor(System.Drawing.RectangleF,System.Drawing.Color,System.Drawing.Color,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L73C92-L75C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L73C92-L75C6" }, { "DocsId": "M:System.Drawing.Drawing2D.LinearGradientBrush.#ctor(System.Drawing.RectangleF,System.Drawing.Color,System.Drawing.Color,System.Single,System.Boolean)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L77C5-L92C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L77C5-L92C6" }, { "DocsId": "M:System.Drawing.Drawing2D.LinearGradientBrush.#ctor(System.Drawing.Rectangle,System.Drawing.Color,System.Drawing.Color,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L94C91-L96C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L94C91-L96C6" }, { "DocsId": "M:System.Drawing.Drawing2D.LinearGradientBrush.#ctor(System.Drawing.Rectangle,System.Drawing.Color,System.Drawing.Color,System.Single,System.Boolean)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L98C5-L113C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L98C5-L113C6" }, { "DocsId": "M:System.Drawing.Drawing2D.LinearGradientBrush.Clone", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L123C9-L124C53" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L123C9-L124C53" }, { "DocsId": "M:System.Drawing.Drawing2D.LinearGradientBrush.SetSigmaBellShape(System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L280C51-L280C87" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L280C51-L280C87" }, { "DocsId": "M:System.Drawing.Drawing2D.LinearGradientBrush.SetSigmaBellShape(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L284C9-L290C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L284C9-L290C6" }, { "DocsId": "M:System.Drawing.Drawing2D.LinearGradientBrush.SetBlendTriangularShape(System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L292C57-L292C99" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L292C57-L292C99" }, { "DocsId": "M:System.Drawing.Drawing2D.LinearGradientBrush.SetBlendTriangularShape(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L296C9-L309C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L296C9-L309C6" }, { "DocsId": "M:System.Drawing.Drawing2D.LinearGradientBrush.ResetTransform", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L473C9-L474C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L473C9-L474C6" }, { "DocsId": "M:System.Drawing.Drawing2D.LinearGradientBrush.MultiplyTransform(System.Drawing.Drawing2D.Matrix)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L476C53-L476C99" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L476C53-L476C99" }, { "DocsId": "M:System.Drawing.Drawing2D.LinearGradientBrush.MultiplyTransform(System.Drawing.Drawing2D.Matrix,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L480C9-L491C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L480C9-L491C6" }, { "DocsId": "M:System.Drawing.Drawing2D.LinearGradientBrush.TranslateTransform(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L493C59-L493C106" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L493C59-L493C106" }, { "DocsId": "M:System.Drawing.Drawing2D.LinearGradientBrush.TranslateTransform(System.Single,System.Single,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L497C9-L499C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L497C9-L499C6" }, { "DocsId": "M:System.Drawing.Drawing2D.LinearGradientBrush.ScaleTransform(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L501C55-L501C98" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L501C55-L501C98" }, { "DocsId": "M:System.Drawing.Drawing2D.LinearGradientBrush.ScaleTransform(System.Single,System.Single,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L505C9-L507C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L505C9-L507C6" }, { "DocsId": "M:System.Drawing.Drawing2D.LinearGradientBrush.RotateTransform(System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L509C49-L509C92" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L509C49-L509C92" }, { "DocsId": "M:System.Drawing.Drawing2D.LinearGradientBrush.RotateTransform(System.Single,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L513C9-L515C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L513C9-L515C6" }, { "DocsId": "P:System.Drawing.Drawing2D.LinearGradientBrush.LinearColors", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L131C13-L138C15" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L131C13-L138C15" }, { "DocsId": "P:System.Drawing.Drawing2D.LinearGradientBrush.Rectangle", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L153C13-L154C25" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L153C13-L154C25" }, { "DocsId": "P:System.Drawing.Drawing2D.LinearGradientBrush.GammaCorrection", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L162C13-L166C39" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L162C13-L166C39" }, { "DocsId": "P:System.Drawing.Drawing2D.LinearGradientBrush.Blend", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L181C13-L223C10" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L181C13-L223C10" }, { "DocsId": "P:System.Drawing.Drawing2D.LinearGradientBrush.InterpolationColors", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L315C13-L365C10" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L315C13-L365C10" }, { "DocsId": "P:System.Drawing.Drawing2D.LinearGradientBrush.WrapMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L442C13-L443C35" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L442C13-L443C35" }, { "DocsId": "P:System.Drawing.Drawing2D.LinearGradientBrush.Transform", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L458C13-L460C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L458C13-L460C27" } ], "DocsId": "T:System.Drawing.Drawing2D.LinearGradientBrush", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Drawing2D.LineCap.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.LineCap.Flat", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.LineCap.Square", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.LineCap.Round", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.LineCap.Triangle", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.LineCap.NoAnchor", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.LineCap.SquareAnchor", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.LineCap.RoundAnchor", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.LineCap.DiamondAnchor", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.LineCap.ArrowAnchor", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.LineCap.Custom", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.LineCap.AnchorMask", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" } ], "DocsId": "T:System.Drawing.Drawing2D.LineCap", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Drawing2D.LineJoin.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineJoin.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineJoin.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.LineJoin.Miter", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineJoin.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineJoin.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.LineJoin.Bevel", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineJoin.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineJoin.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.LineJoin.Round", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineJoin.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineJoin.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.LineJoin.MiterClipped", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineJoin.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineJoin.cs" } ], "DocsId": "T:System.Drawing.Drawing2D.LineJoin", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineJoin.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineJoin.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Drawing2D.MatrixOrder.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/MatrixOrder.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/MatrixOrder.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.MatrixOrder.Prepend", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/MatrixOrder.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/MatrixOrder.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.MatrixOrder.Append", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/MatrixOrder.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/MatrixOrder.cs" } ], "DocsId": "T:System.Drawing.Drawing2D.MatrixOrder", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/MatrixOrder.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/MatrixOrder.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Drawing2D.Matrix.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L14C5-L18C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L14C5-L18C6" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.#ctor(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L20C5-L24C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L20C5-L24C6" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.#ctor(System.Numerics.Matrix3x2)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L30C39-L32C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L30C39-L32C6" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.#ctor(System.Drawing.RectangleF,System.Drawing.PointF[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L53C5-L65C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L53C5-L65C6" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.#ctor(System.Drawing.Rectangle,System.Drawing.Point[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L67C5-L79C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L67C5-L79C6" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.Dispose", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L83C9-L85C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L83C9-L85C6" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.Finalize", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L99C18-L99C35" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L99C18-L16707566C0" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.Clone", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L103C9-L104C41" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L103C9-L104C41" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.Reset", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L167C9-L171C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L167C9-L171C6" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.Multiply(System.Drawing.Drawing2D.Matrix)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L173C44-L173C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L173C44-L173C81" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.Multiply(System.Drawing.Drawing2D.Matrix,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L177C9-L186C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L177C9-L186C6" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.Translate(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L188C60-L188C108" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L188C60-L188C108" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.Translate(System.Single,System.Single,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L192C9-L195C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L192C9-L195C6" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.Scale(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L197C54-L197C96" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L197C54-L197C96" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.Scale(System.Single,System.Single,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L201C9-L202C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L201C9-L202C6" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.Rotate(System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L204C40-L204C74" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L204C40-L204C74" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.Rotate(System.Single,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L208C9-L209C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L208C9-L209C6" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.RotateAt(System.Single,System.Drawing.PointF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L211C56-L211C99" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L211C56-L211C99" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.RotateAt(System.Single,System.Drawing.PointF,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L215C9-L230C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L215C9-L230C6" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.Shear(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L234C9-L235C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L234C9-L235C6" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.Shear(System.Single,System.Single,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L239C9-L240C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L239C9-L240C6" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.Invert", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L244C9-L245C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L244C9-L245C6" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.TransformPoints(System.Drawing.PointF[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L249C9-L258C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L249C9-L258C6" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.TransformPoints(System.Drawing.Point[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L262C9-L271C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L262C9-L271C6" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.TransformVectors(System.Drawing.PointF[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L275C9-L284C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L275C9-L284C6" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.VectorTransformPoints(System.Drawing.Point[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L286C55-L286C76" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L286C55-L286C76" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.TransformVectors(System.Drawing.Point[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L290C9-L299C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L290C9-L299C6" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L321C9-L329C29" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L321C9-L329C29" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.GetHashCode", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L332C42-L332C60" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L332C42-L332C60" }, { "DocsId": "P:System.Drawing.Drawing2D.Matrix.Elements", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L111C13-L113C29" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L111C13-L113C29" }, { "DocsId": "P:System.Drawing.Drawing2D.Matrix.MatrixElements", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L124C13-L126C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L124C13-L126C27" }, { "DocsId": "P:System.Drawing.Drawing2D.Matrix.OffsetX", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L151C36-L151C44" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L151C36-L151C44" }, { "DocsId": "P:System.Drawing.Drawing2D.Matrix.OffsetY", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L153C36-L153C44" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L153C36-L153C44" }, { "DocsId": "P:System.Drawing.Drawing2D.Matrix.IsInvertible", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L305C13-L306C38" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L305C13-L306C38" }, { "DocsId": "P:System.Drawing.Drawing2D.Matrix.IsIdentity", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L314C13-L315C36" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L314C13-L315C36" } ], "DocsId": "T:System.Drawing.Drawing2D.Matrix", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Drawing2D.PathData.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathData.cs#L8C5-L8C26" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathData.cs#L8C5-L8C26" }, { "DocsId": "P:System.Drawing.Drawing2D.PathData.Points", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathData.cs#L10C31-L10C35" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathData.cs#L10C31-L10C35" }, { "DocsId": "P:System.Drawing.Drawing2D.PathData.Types", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathData.cs#L12C28-L12C32" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathData.cs#L12C28-L12C32" } ], "DocsId": "T:System.Drawing.Drawing2D.PathData", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathData.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathData.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Drawing2D.PathGradientBrush.#ctor(System.Drawing.PointF[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L12C49-L12C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L12C49-L12C81" }, { "DocsId": "M:System.Drawing.Drawing2D.PathGradientBrush.#ctor(System.Drawing.PointF[],System.Drawing.Drawing2D.WrapMode)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L14C5-L34C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L14C5-L34C6" }, { "DocsId": "M:System.Drawing.Drawing2D.PathGradientBrush.#ctor(System.Drawing.Point[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L36C48-L36C80" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L36C48-L36C80" }, { "DocsId": "M:System.Drawing.Drawing2D.PathGradientBrush.#ctor(System.Drawing.Point[],System.Drawing.Drawing2D.WrapMode)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L38C5-L58C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L38C5-L58C6" }, { "DocsId": "M:System.Drawing.Drawing2D.PathGradientBrush.#ctor(System.Drawing.Drawing2D.GraphicsPath)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L60C5-L66C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L60C5-L66C6" }, { "DocsId": "M:System.Drawing.Drawing2D.PathGradientBrush.Clone", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L76C9-L77C51" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L76C9-L77C51" }, { "DocsId": "M:System.Drawing.Drawing2D.PathGradientBrush.SetSigmaBellShape(System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L231C51-L231C87" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L231C51-L231C87" }, { "DocsId": "M:System.Drawing.Drawing2D.PathGradientBrush.SetSigmaBellShape(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L235C9-L241C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L235C9-L241C6" }, { "DocsId": "M:System.Drawing.Drawing2D.PathGradientBrush.SetBlendTriangularShape(System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L243C57-L243C99" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L243C57-L243C99" }, { "DocsId": "M:System.Drawing.Drawing2D.PathGradientBrush.SetBlendTriangularShape(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L247C9-L253C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L247C9-L253C6" }, { "DocsId": "M:System.Drawing.Drawing2D.PathGradientBrush.ResetTransform", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L333C9-L334C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L333C9-L334C6" }, { "DocsId": "M:System.Drawing.Drawing2D.PathGradientBrush.MultiplyTransform(System.Drawing.Drawing2D.Matrix)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L336C53-L336C99" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L336C53-L336C99" }, { "DocsId": "M:System.Drawing.Drawing2D.PathGradientBrush.MultiplyTransform(System.Drawing.Drawing2D.Matrix,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L340C9-L351C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L340C9-L351C6" }, { "DocsId": "M:System.Drawing.Drawing2D.PathGradientBrush.TranslateTransform(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L353C59-L353C106" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L353C59-L353C106" }, { "DocsId": "M:System.Drawing.Drawing2D.PathGradientBrush.TranslateTransform(System.Single,System.Single,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L357C9-L358C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L357C9-L358C6" }, { "DocsId": "M:System.Drawing.Drawing2D.PathGradientBrush.ScaleTransform(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L360C55-L360C98" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L360C55-L360C98" }, { "DocsId": "M:System.Drawing.Drawing2D.PathGradientBrush.ScaleTransform(System.Single,System.Single,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L364C9-L365C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L364C9-L365C6" }, { "DocsId": "M:System.Drawing.Drawing2D.PathGradientBrush.RotateTransform(System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L367C49-L367C92" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L367C49-L367C92" }, { "DocsId": "M:System.Drawing.Drawing2D.PathGradientBrush.RotateTransform(System.Single,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L371C9-L372C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L371C9-L372C6" }, { "DocsId": "P:System.Drawing.Drawing2D.PathGradientBrush.CenterColor", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L84C13-L85C41" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L84C13-L85C41" }, { "DocsId": "P:System.Drawing.Drawing2D.PathGradientBrush.SurroundColors", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L97C13-L112C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L97C13-L112C27" }, { "DocsId": "P:System.Drawing.Drawing2D.PathGradientBrush.CenterPoint", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L132C13-L133C26" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L132C13-L133C26" }, { "DocsId": "P:System.Drawing.Drawing2D.PathGradientBrush.Rectangle", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L145C13-L146C25" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L145C13-L146C25" }, { "DocsId": "P:System.Drawing.Drawing2D.PathGradientBrush.Blend", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L155C13-L176C26" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L155C13-L176C26" }, { "DocsId": "P:System.Drawing.Drawing2D.PathGradientBrush.InterpolationColors", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L260C13-L291C26" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L260C13-L291C26" }, { "DocsId": "P:System.Drawing.Drawing2D.PathGradientBrush.Transform", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L318C13-L320C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L318C13-L320C27" }, { "DocsId": "P:System.Drawing.Drawing2D.PathGradientBrush.FocusScales", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L378C13-L382C53" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L378C13-L382C53" }, { "DocsId": "P:System.Drawing.Drawing2D.PathGradientBrush.WrapMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L394C13-L395C35" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L394C13-L395C35" } ], "DocsId": "T:System.Drawing.Drawing2D.PathGradientBrush", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Drawing2D.PathPointType.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathPointType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathPointType.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PathPointType.Start", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathPointType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathPointType.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PathPointType.Line", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathPointType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathPointType.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PathPointType.Bezier", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathPointType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathPointType.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PathPointType.PathTypeMask", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathPointType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathPointType.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PathPointType.DashMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathPointType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathPointType.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PathPointType.PathMarker", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathPointType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathPointType.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PathPointType.CloseSubpath", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathPointType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathPointType.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PathPointType.Bezier3", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathPointType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathPointType.cs" } ], "DocsId": "T:System.Drawing.Drawing2D.PathPointType", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathPointType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathPointType.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Drawing2D.PenAlignment.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenAlignment.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenAlignment.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PenAlignment.Center", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenAlignment.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenAlignment.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PenAlignment.Inset", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenAlignment.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenAlignment.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PenAlignment.Outset", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenAlignment.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenAlignment.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PenAlignment.Left", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenAlignment.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenAlignment.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PenAlignment.Right", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenAlignment.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenAlignment.cs" } ], "DocsId": "T:System.Drawing.Drawing2D.PenAlignment", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenAlignment.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenAlignment.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Drawing2D.PenType.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenType.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PenType.SolidColor", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenType.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PenType.HatchFill", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenType.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PenType.TextureFill", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenType.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PenType.PathGradient", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenType.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PenType.LinearGradient", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenType.cs" } ], "DocsId": "T:System.Drawing.Drawing2D.PenType", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenType.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Drawing2D.PixelOffsetMode.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PixelOffsetMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PixelOffsetMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PixelOffsetMode.Invalid", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PixelOffsetMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PixelOffsetMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PixelOffsetMode.Default", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PixelOffsetMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PixelOffsetMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PixelOffsetMode.HighSpeed", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PixelOffsetMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PixelOffsetMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PixelOffsetMode.HighQuality", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PixelOffsetMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PixelOffsetMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PixelOffsetMode.None", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PixelOffsetMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PixelOffsetMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PixelOffsetMode.Half", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PixelOffsetMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PixelOffsetMode.cs" } ], "DocsId": "T:System.Drawing.Drawing2D.PixelOffsetMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PixelOffsetMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PixelOffsetMode.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Drawing2D.QualityMode.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/QualityMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/QualityMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.QualityMode.Invalid", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/QualityMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/QualityMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.QualityMode.Default", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/QualityMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/QualityMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.QualityMode.Low", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/QualityMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/QualityMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.QualityMode.High", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/QualityMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/QualityMode.cs" } ], "DocsId": "T:System.Drawing.Drawing2D.QualityMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/QualityMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/QualityMode.cs" }, { "Members": [ { "DocsId": "P:System.Drawing.Drawing2D.RegionData.Data", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/RegionData.cs#L10C26-L10C30" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/RegionData.cs#L10C26-L10C30" } ], "DocsId": "T:System.Drawing.Drawing2D.RegionData", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/RegionData.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/RegionData.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Drawing2D.SmoothingMode.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/SmoothingMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/SmoothingMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.SmoothingMode.Invalid", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/SmoothingMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/SmoothingMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.SmoothingMode.Default", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/SmoothingMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/SmoothingMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.SmoothingMode.HighSpeed", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/SmoothingMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/SmoothingMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.SmoothingMode.HighQuality", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/SmoothingMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/SmoothingMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.SmoothingMode.None", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/SmoothingMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/SmoothingMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.SmoothingMode.AntiAlias", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/SmoothingMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/SmoothingMode.cs" } ], "DocsId": "T:System.Drawing.Drawing2D.SmoothingMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/SmoothingMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/SmoothingMode.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Drawing2D.WrapMode.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/WrapMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/WrapMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.WrapMode.Tile", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/WrapMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/WrapMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.WrapMode.TileFlipX", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/WrapMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/WrapMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.WrapMode.TileFlipY", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/WrapMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/WrapMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.WrapMode.TileFlipXY", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/WrapMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/WrapMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.WrapMode.Clamp", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/WrapMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/WrapMode.cs" } ], "DocsId": "T:System.Drawing.Drawing2D.WrapMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/WrapMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/WrapMode.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Drawing2D.WarpMode.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/WarpMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/WarpMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.WarpMode.Perspective", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/WarpMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/WarpMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.WarpMode.Bilinear", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/WarpMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/WarpMode.cs" } ], "DocsId": "T:System.Drawing.Drawing2D.WarpMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/WarpMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/WarpMode.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Drawing2D.AdjustableArrowCap.#ctor(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/AdjustableArrowCap.cs#L13C60-L13C89" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/AdjustableArrowCap.cs#L13C60-L13C89" }, { "DocsId": "M:System.Drawing.Drawing2D.AdjustableArrowCap.#ctor(System.Single,System.Single,System.Boolean)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/AdjustableArrowCap.cs#L15C5-L21C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/AdjustableArrowCap.cs#L15C5-L21C6" }, { "DocsId": "P:System.Drawing.Drawing2D.AdjustableArrowCap.Height", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/AdjustableArrowCap.cs#L27C13-L29C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/AdjustableArrowCap.cs#L27C13-L29C27" }, { "DocsId": "P:System.Drawing.Drawing2D.AdjustableArrowCap.Width", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/AdjustableArrowCap.cs#L42C13-L44C26" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/AdjustableArrowCap.cs#L42C13-L44C26" }, { "DocsId": "P:System.Drawing.Drawing2D.AdjustableArrowCap.MiddleInset", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/AdjustableArrowCap.cs#L57C13-L59C32" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/AdjustableArrowCap.cs#L57C13-L59C32" }, { "DocsId": "P:System.Drawing.Drawing2D.AdjustableArrowCap.Filled", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/AdjustableArrowCap.cs#L72C13-L74C29" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/AdjustableArrowCap.cs#L72C13-L74C29" } ], "DocsId": "T:System.Drawing.Drawing2D.AdjustableArrowCap", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/AdjustableArrowCap.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/AdjustableArrowCap.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Drawing2D.CustomLineCap.#ctor(System.Drawing.Drawing2D.GraphicsPath,System.Drawing.Drawing2D.GraphicsPath)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L23C78-L23C122" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L23C78-L23C122" }, { "DocsId": "M:System.Drawing.Drawing2D.CustomLineCap.#ctor(System.Drawing.Drawing2D.GraphicsPath,System.Drawing.Drawing2D.GraphicsPath,System.Drawing.Drawing2D.LineCap)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L25C95-L25C137" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L25C95-L25C137" }, { "DocsId": "M:System.Drawing.Drawing2D.CustomLineCap.#ctor(System.Drawing.Drawing2D.GraphicsPath,System.Drawing.Drawing2D.GraphicsPath,System.Drawing.Drawing2D.LineCap,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L27C5-L39C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L27C5-L39C6" }, { "DocsId": "M:System.Drawing.Drawing2D.CustomLineCap.Dispose", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L75C9-L77C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L75C9-L77C6" }, { "DocsId": "M:System.Drawing.Drawing2D.CustomLineCap.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L81C9-L98C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L81C9-L98C6" }, { "DocsId": "M:System.Drawing.Drawing2D.CustomLineCap.Finalize", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L100C25-L100C39" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L100C25-L16707566C0" }, { "DocsId": "M:System.Drawing.Drawing2D.CustomLineCap.Clone", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L104C9-L104C28" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L104C9-L104C28" }, { "DocsId": "M:System.Drawing.Drawing2D.CustomLineCap.SetStrokeCaps(System.Drawing.Drawing2D.LineCap,System.Drawing.Drawing2D.LineCap)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L120C9-L124C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L120C9-L124C6" }, { "DocsId": "M:System.Drawing.Drawing2D.CustomLineCap.GetStrokeCaps(System.Drawing.Drawing2D.LineCap@,System.Drawing.Drawing2D.LineCap@)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L128C9-L132C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L128C9-L132C6" }, { "DocsId": "P:System.Drawing.Drawing2D.CustomLineCap.StrokeJoin", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L138C13-L143C29" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L138C13-L143C29" }, { "DocsId": "P:System.Drawing.Drawing2D.CustomLineCap.BaseCap", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L158C13-L163C28" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L158C13-L163C28" }, { "DocsId": "P:System.Drawing.Drawing2D.CustomLineCap.BaseInset", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L178C13-L183C26" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L178C13-L183C26" }, { "DocsId": "P:System.Drawing.Drawing2D.CustomLineCap.WidthScale", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L198C13-L203C31" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L198C13-L203C31" } ], "DocsId": "T:System.Drawing.Drawing2D.CustomLineCap", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Drawing2D.DashCap.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/DashCap.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/DashCap.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.DashCap.Flat", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/DashCap.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/DashCap.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.DashCap.Round", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/DashCap.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/DashCap.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.DashCap.Triangle", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/DashCap.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/DashCap.cs" } ], "DocsId": "T:System.Drawing.Drawing2D.DashCap", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/DashCap.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/DashCap.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPathIterator.#ctor(System.Drawing.Drawing2D.GraphicsPath)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L12C5-L21C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L12C5-L21C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPathIterator.Dispose", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L25C9-L27C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L25C9-L27C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPathIterator.Finalize", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L59C32-L59C46" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L59C32-L16707566C0" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPathIterator.NextSubpath(System.Int32@,System.Int32@,System.Boolean@)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L63C9-L74C28" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L63C9-L74C28" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPathIterator.NextSubpath(System.Drawing.Drawing2D.GraphicsPath,System.Boolean@)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L79C9-L85C28" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L79C9-L85C28" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPathIterator.NextPathType(System.Byte@,System.Int32@,System.Int32@)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L90C9-L96C28" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L90C9-L96C28" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPathIterator.NextMarker(System.Int32@,System.Int32@)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L101C9-L107C28" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L101C9-L107C28" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPathIterator.NextMarker(System.Drawing.Drawing2D.GraphicsPath)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L112C9-L118C28" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L112C9-L118C28" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPathIterator.HasCurve", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L149C9-L154C25" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L149C9-L154C25" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPathIterator.Rewind", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L159C9-L163C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L159C9-L163C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPathIterator.Enumerate(System.Drawing.PointF[]@,System.Byte[]@)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L167C9-L188C32" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L167C9-L188C32" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPathIterator.CopyData(System.Drawing.PointF[]@,System.Byte[]@,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L194C9-L213C32" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L194C9-L213C32" }, { "DocsId": "P:System.Drawing.Drawing2D.GraphicsPathIterator.Count", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L125C13-L130C32" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L125C13-L130C32" }, { "DocsId": "P:System.Drawing.Drawing2D.GraphicsPathIterator.SubpathCount", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L138C13-L143C32" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L138C13-L143C32" } ], "DocsId": "T:System.Drawing.Drawing2D.GraphicsPathIterator", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs" }, { "Members": [], "DocsId": "T:System.Drawing.Drawing2D.GraphicsState", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsState.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsState.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L18C29-L18C57" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L18C29-L18C57" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.#ctor(System.Drawing.Drawing2D.FillMode)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L20C5-L24C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L20C5-L24C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.#ctor(System.Drawing.PointF[],System.Byte[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L26C55-L26C95" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L26C55-L26C95" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.#ctor(System.Drawing.PointF[],System.Byte[],System.Drawing.Drawing2D.FillMode)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L28C5-L43C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L28C5-L43C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.#ctor(System.Drawing.Point[],System.Byte[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L45C54-L45C94" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L45C54-L45C94" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.#ctor(System.Drawing.Point[],System.Byte[],System.Drawing.Drawing2D.FillMode)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L47C5-L62C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L47C5-L62C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.Clone", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L66C9-L68C45" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L66C9-L68C45" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.Dispose", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L81C9-L83C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L81C9-L83C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.Finalize", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L115C24-L115C38" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L115C24-L16707566C0" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.Reset", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L119C9-L120C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L119C9-L120C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.StartFigure", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L171C9-L172C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L171C9-L172C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.CloseFigure", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L176C9-L177C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L176C9-L177C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.CloseAllFigures", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L181C9-L182C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L181C9-L182C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.SetMarkers", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L186C9-L187C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L186C9-L187C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.ClearMarkers", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L191C9-L192C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L191C9-L192C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.Reverse", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L196C9-L197C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L196C9-L197C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.GetLastPoint", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L201C9-L202C22" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L201C9-L202C22" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.IsVisible(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L205C48-L205C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L205C48-L205C81" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.IsVisible(System.Drawing.PointF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L207C44-L207C66" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L207C44-L207C66" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.IsVisible(System.Single,System.Single,System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L209C68-L209C105" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L209C68-L209C105" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.IsVisible(System.Drawing.PointF,System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L213C9-L219C26" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L213C9-L219C26" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.IsVisible(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L222C44-L222C76" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L222C44-L222C76" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.IsVisible(System.Drawing.Point)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L224C43-L224C65" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L224C43-L224C65" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.IsVisible(System.Int32,System.Int32,System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L226C64-L226C100" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L226C64-L226C100" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.IsVisible(System.Drawing.Point,System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L230C9-L236C26" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L230C9-L236C26" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.IsOutlineVisible(System.Single,System.Single,System.Drawing.Pen)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L239C64-L239C109" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L239C64-L239C109" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.IsOutlineVisible(System.Drawing.PointF,System.Drawing.Pen)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L241C60-L241C94" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L241C60-L241C94" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.IsOutlineVisible(System.Single,System.Single,System.Drawing.Pen,System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L245C9-L245C66" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L245C9-L245C66" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.IsOutlineVisible(System.Drawing.PointF,System.Drawing.Pen,System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L250C9-L259C26" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L250C9-L259C26" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.IsOutlineVisible(System.Int32,System.Int32,System.Drawing.Pen)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L262C60-L262C104" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L262C60-L262C104" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.IsOutlineVisible(System.Drawing.Point,System.Drawing.Pen)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L264C59-L264C93" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L264C59-L264C93" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.IsOutlineVisible(System.Int32,System.Int32,System.Drawing.Pen,System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L266C80-L266C128" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L266C80-L266C128" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.IsOutlineVisible(System.Drawing.Point,System.Drawing.Pen,System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L270C9-L279C26" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L270C9-L279C26" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddLine(System.Drawing.PointF,System.Drawing.PointF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L282C52-L282C87" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L282C52-L282C87" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddLine(System.Single,System.Single,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L286C9-L287C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L286C9-L287C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddLines(System.Drawing.PointF[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L291C9-L300C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L291C9-L300C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddLine(System.Drawing.Point,System.Drawing.Point)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L302C50-L302C85" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L302C50-L302C85" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddLine(System.Int32,System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L306C9-L307C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L306C9-L307C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddLines(System.Drawing.Point[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L311C9-L320C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L311C9-L320C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddArc(System.Drawing.RectangleF,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L324C9-L325C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L324C9-L325C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddArc(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L329C9-L334C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L329C9-L334C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddArc(System.Drawing.Rectangle,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L338C9-L339C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L338C9-L339C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddArc(System.Int32,System.Int32,System.Int32,System.Int32,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L343C9-L348C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L343C9-L348C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddBezier(System.Drawing.PointF,System.Drawing.PointF,System.Drawing.PointF,System.Drawing.PointF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L352C9-L353C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L352C9-L353C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddBezier(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L357C9-L360C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L357C9-L360C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddBeziers(System.Drawing.PointF[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L364C9-L370C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L364C9-L370C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddBezier(System.Drawing.Point,System.Drawing.Point,System.Drawing.Point,System.Drawing.Point)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L374C9-L375C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L374C9-L375C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddBezier(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L379C9-L382C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L379C9-L382C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddBeziers(System.Drawing.Point[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L386C9-L395C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L386C9-L395C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddCurve(System.Drawing.PointF[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L402C9-L408C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L402C9-L408C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddCurve(System.Drawing.PointF[],System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L412C9-L421C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L412C9-L421C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddCurve(System.Drawing.PointF[],System.Int32,System.Int32,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L425C9-L432C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L425C9-L432C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddCurve(System.Drawing.Point[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L436C9-L442C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L436C9-L442C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddCurve(System.Drawing.Point[],System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L446C9-L453C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L446C9-L453C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddCurve(System.Drawing.Point[],System.Int32,System.Int32,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L457C9-L464C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L457C9-L464C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddClosedCurve(System.Drawing.PointF[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L468C9-L475C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L468C9-L475C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddClosedCurve(System.Drawing.PointF[],System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L479C9-L485C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L479C9-L485C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddClosedCurve(System.Drawing.Point[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L489C9-L495C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L489C9-L495C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddClosedCurve(System.Drawing.Point[],System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L499C9-L505C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L499C9-L505C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddRectangle(System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L509C9-L512C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L509C9-L512C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddRectangles(System.Drawing.RectangleF[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L516C9-L526C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L516C9-L526C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddRectangle(System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L530C9-L533C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L530C9-L533C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddRectangles(System.Drawing.Rectangle[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L537C9-L547C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L537C9-L547C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddEllipse(System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L551C9-L552C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L551C9-L552C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddEllipse(System.Single,System.Single,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L556C9-L557C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L556C9-L557C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddEllipse(System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L559C47-L559C98" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L559C47-L559C98" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddEllipse(System.Int32,System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L563C9-L564C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L563C9-L564C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddPie(System.Drawing.Rectangle,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L568C9-L569C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L568C9-L569C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddPie(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L573C9-L578C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L573C9-L578C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddPie(System.Int32,System.Int32,System.Int32,System.Int32,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L582C9-L587C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L582C9-L587C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddPolygon(System.Drawing.PointF[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L591C9-L597C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L591C9-L597C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddPolygon(System.Drawing.Point[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L604C9-L610C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L604C9-L610C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddPath(System.Drawing.Drawing2D.GraphicsPath,System.Boolean)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L614C9-L618C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L614C9-L618C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddString(System.String,System.Drawing.FontFamily,System.Int32,System.Single,System.Drawing.PointF,System.Drawing.StringFormat)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L622C9-L623C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L622C9-L623C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddString(System.String,System.Drawing.FontFamily,System.Int32,System.Single,System.Drawing.Point,System.Drawing.StringFormat)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L627C9-L628C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L627C9-L628C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddString(System.String,System.Drawing.FontFamily,System.Int32,System.Single,System.Drawing.RectangleF,System.Drawing.StringFormat)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L632C9-L643C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L632C9-L643C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddString(System.String,System.Drawing.FontFamily,System.Int32,System.Single,System.Drawing.Rectangle,System.Drawing.StringFormat)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L647C9-L658C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L647C9-L658C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.Transform(System.Drawing.Drawing2D.Matrix)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L662C9-L670C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L662C9-L670C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.GetBounds", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L672C38-L672C53" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L672C38-L672C53" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.GetBounds(System.Drawing.Drawing2D.Matrix)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L674C52-L674C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L674C52-L674C75" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.GetBounds(System.Drawing.Drawing2D.Matrix,System.Drawing.Pen)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L678C9-L684C23" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L678C9-L684C23" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.Flatten", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L687C30-L687C43" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L687C30-L687C43" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.Flatten(System.Drawing.Drawing2D.Matrix)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L689C44-L689C66" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L689C44-L689C66" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.Flatten(System.Drawing.Drawing2D.Matrix,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L693C9-L697C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L693C9-L697C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.Widen(System.Drawing.Pen)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L699C35-L699C61" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L699C35-L699C61" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.Widen(System.Drawing.Pen,System.Drawing.Drawing2D.Matrix)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L701C51-L701C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L701C51-L701C79" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.Widen(System.Drawing.Pen,System.Drawing.Drawing2D.Matrix,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L705C9-L717C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L705C9-L717C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.Warp(System.Drawing.PointF[],System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L719C66-L719C97" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L719C66-L719C97" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.Warp(System.Drawing.PointF[],System.Drawing.RectangleF,System.Drawing.Drawing2D.Matrix)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L721C82-L721C137" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L721C82-L721C137" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.Warp(System.Drawing.PointF[],System.Drawing.RectangleF,System.Drawing.Drawing2D.Matrix,System.Drawing.Drawing2D.WarpMode)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L725C9-L726C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L725C9-L726C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.Warp(System.Drawing.PointF[],System.Drawing.RectangleF,System.Drawing.Drawing2D.Matrix,System.Drawing.Drawing2D.WarpMode,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L730C9-L743C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L730C9-L743C6" }, { "DocsId": "P:System.Drawing.Drawing2D.GraphicsPath.FillMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L126C13-L127C29" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L126C13-L127C29" }, { "DocsId": "P:System.Drawing.Drawing2D.GraphicsPath.PathData", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L167C33-L167C47" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L167C33-L167C47" }, { "DocsId": "P:System.Drawing.Drawing2D.GraphicsPath.PointCount", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L749C13-L750C26" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L749C13-L750C26" }, { "DocsId": "P:System.Drawing.Drawing2D.GraphicsPath.PathTypes", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L758C13-L760C26" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L758C13-L760C26" }, { "DocsId": "P:System.Drawing.Drawing2D.GraphicsPath.PathPoints", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L768C13-L773C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L768C13-L773C27" } ], "DocsId": "T:System.Drawing.Drawing2D.GraphicsPath", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Design.CategoryNameCollection.#ctor(System.Drawing.Design.CategoryNameCollection)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Design/CategoryNameCollection.cs#L17C5-L17C93" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Design/CategoryNameCollection.cs#L17C5-L17C93" }, { "DocsId": "M:System.Drawing.Design.CategoryNameCollection.#ctor(System.String[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Design/CategoryNameCollection.cs#L23C5-L23C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Design/CategoryNameCollection.cs#L23C5-L23C79" }, { "DocsId": "M:System.Drawing.Design.CategoryNameCollection.Contains(System.String)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Design/CategoryNameCollection.cs#L34C43-L34C68" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Design/CategoryNameCollection.cs#L34C43-L34C68" }, { "DocsId": "M:System.Drawing.Design.CategoryNameCollection.CopyTo(System.String[],System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Design/CategoryNameCollection.cs#L40C54-L40C84" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Design/CategoryNameCollection.cs#L40C54-L40C84" }, { "DocsId": "M:System.Drawing.Design.CategoryNameCollection.IndexOf(System.String)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Design/CategoryNameCollection.cs#L45C41-L45C65" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Design/CategoryNameCollection.cs#L45C41-L45C65" }, { "DocsId": "P:System.Drawing.Design.CategoryNameCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Design/CategoryNameCollection.cs#L28C38-L28C67" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Design/CategoryNameCollection.cs#L28C38-L28C67" } ], "DocsId": "T:System.Drawing.Design.CategoryNameCollection", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Design/CategoryNameCollection.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Design/CategoryNameCollection.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Printing.PrinterUnit.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnit.cs" }, { "DocsId": "F:System.Drawing.Printing.PrinterUnit.Display", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnit.cs" }, { "DocsId": "F:System.Drawing.Printing.PrinterUnit.ThousandthsOfAnInch", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnit.cs" }, { "DocsId": "F:System.Drawing.Printing.PrinterUnit.HundredthsOfAMillimeter", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnit.cs" }, { "DocsId": "F:System.Drawing.Printing.PrinterUnit.TenthsOfAMillimeter", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnit.cs" } ], "DocsId": "T:System.Drawing.Printing.PrinterUnit", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnit.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.PreviewPageInfo.#ctor(System.Drawing.Image,System.Drawing.Size)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPageInfo.cs#L14C5-L23C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPageInfo.cs#L14C5-L23C6" }, { "DocsId": "P:System.Drawing.Printing.PreviewPageInfo.Image", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPageInfo.cs#L30C15-L30C29" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPageInfo.cs#L30C15-L30C29" }, { "DocsId": "P:System.Drawing.Printing.PreviewPageInfo.PhysicalSize", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPageInfo.cs#L38C15-L38C36" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPageInfo.cs#L38C15-L38C36" } ], "DocsId": "T:System.Drawing.Printing.PreviewPageInfo", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPageInfo.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPageInfo.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.PreviewPrintController.GetPreviewPageInfo", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPrintController.cs#L29C9-L31C21" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPrintController.cs#L29C9-L31C21" }, { "DocsId": "M:System.Drawing.Printing.PreviewPrintController.OnStartPrint(System.Drawing.Printing.PrintDocument,System.Drawing.Printing.PrintEventArgs)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPrintController.cs#L39C9-L49C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPrintController.cs#L39C9-L49C6" }, { "DocsId": "M:System.Drawing.Printing.PreviewPrintController.OnStartPage(System.Drawing.Printing.PrintDocument,System.Drawing.Printing.PrintPageEventArgs)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPrintController.cs#L56C9-L107C26" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPrintController.cs#L56C9-L107C26" }, { "DocsId": "M:System.Drawing.Printing.PreviewPrintController.OnEndPage(System.Drawing.Printing.PrintDocument,System.Drawing.Printing.PrintPageEventArgs)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPrintController.cs#L115C9-L122C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPrintController.cs#L115C9-L122C6" }, { "DocsId": "M:System.Drawing.Printing.PreviewPrintController.OnEndPrint(System.Drawing.Printing.PrintDocument,System.Drawing.Printing.PrintEventArgs)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPrintController.cs#L129C9-L136C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPrintController.cs#L129C9-L136C6" }, { "DocsId": "M:System.Drawing.Printing.PreviewPrintController.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPrintController.cs#L21C5-L21C46" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPrintController.cs#L21C5-L21C46" }, { "DocsId": "P:System.Drawing.Printing.PreviewPrintController.IsPreview", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPrintController.cs#L23C39-L23C43" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPrintController.cs#L23C39-L23C43" }, { "DocsId": "P:System.Drawing.Printing.PreviewPrintController.UseAntiAlias", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPrintController.cs#L25C40-L25C44" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPrintController.cs#L25C40-L25C44" } ], "DocsId": "T:System.Drawing.Printing.PreviewPrintController", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPrintController.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPrintController.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.PrintEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrintEventHandler.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrintEventHandler.cs" }, { "DocsId": "M:System.Drawing.Printing.PrintEventHandler.Invoke(System.Object,System.Drawing.Printing.PrintEventArgs)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrintEventHandler.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrintEventHandler.cs" }, { "DocsId": "M:System.Drawing.Printing.PrintEventHandler.BeginInvoke(System.Object,System.Drawing.Printing.PrintEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrintEventHandler.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrintEventHandler.cs" }, { "DocsId": "M:System.Drawing.Printing.PrintEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrintEventHandler.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrintEventHandler.cs" } ], "DocsId": "T:System.Drawing.Printing.PrintEventHandler", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrintEventHandler.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrintEventHandler.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Printing.PrintAction.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrintAction.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrintAction.cs" }, { "DocsId": "F:System.Drawing.Printing.PrintAction.PrintToFile", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrintAction.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrintAction.cs" }, { "DocsId": "F:System.Drawing.Printing.PrintAction.PrintToPreview", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrintAction.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrintAction.cs" }, { "DocsId": "F:System.Drawing.Printing.PrintAction.PrintToPrinter", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrintAction.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrintAction.cs" } ], "DocsId": "T:System.Drawing.Printing.PrintAction", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrintAction.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrintAction.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.PrintController.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrintController.cs#L64C5-L66C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrintController.cs#L64C5-L66C6" }, { "DocsId": "M:System.Drawing.Printing.PrintController.OnStartPage(System.Drawing.Printing.PrintDocument,System.Drawing.Printing.PrintPageEventArgs)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrintController.cs#L75C9-L75C21" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrintController.cs#L75C9-L75C21" }, { "DocsId": "M:System.Drawing.Printing.PrintController.OnEndPage(System.Drawing.Printing.PrintDocument,System.Drawing.Printing.PrintPageEventArgs)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrintController.cs#L83C5-L83C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrintController.cs#L83C5-L83C6" }, { "DocsId": "M:System.Drawing.Printing.PrintController.OnStartPrint(System.Drawing.Printing.PrintDocument,System.Drawing.Printing.PrintEventArgs)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrintController.cs#L269C9-L270C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrintController.cs#L269C9-L270C6" }, { "DocsId": "M:System.Drawing.Printing.PrintController.OnEndPrint(System.Drawing.Printing.PrintDocument,System.Drawing.Printing.PrintEventArgs)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrintController.cs#L277C9-L278C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrintController.cs#L277C9-L278C6" }, { "DocsId": "P:System.Drawing.Printing.PrintController.IsPreview", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrintController.cs#L68C38-L68C43" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrintController.cs#L68C38-L68C43" } ], "DocsId": "T:System.Drawing.Printing.PrintController", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrintController.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrintController.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.PrintPageEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventHandler.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventHandler.cs" }, { "DocsId": "M:System.Drawing.Printing.PrintPageEventHandler.Invoke(System.Object,System.Drawing.Printing.PrintPageEventArgs)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventHandler.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventHandler.cs" }, { "DocsId": "M:System.Drawing.Printing.PrintPageEventHandler.BeginInvoke(System.Object,System.Drawing.Printing.PrintPageEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventHandler.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventHandler.cs" }, { "DocsId": "M:System.Drawing.Printing.PrintPageEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventHandler.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventHandler.cs" } ], "DocsId": "T:System.Drawing.Printing.PrintPageEventHandler", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventHandler.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventHandler.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.QueryPageSettingsEventArgs.#ctor(System.Drawing.Printing.PageSettings)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/QueryPageSettingsEventArgs.cs#L25C68-L28C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/QueryPageSettingsEventArgs.cs#L25C68-L28C6" }, { "DocsId": "P:System.Drawing.Printing.QueryPageSettingsEventArgs.PageSettings", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/QueryPageSettingsEventArgs.cs#L37C13-L38C34" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/QueryPageSettingsEventArgs.cs#L37C13-L38C34" } ], "DocsId": "T:System.Drawing.Printing.QueryPageSettingsEventArgs", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/QueryPageSettingsEventArgs.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/QueryPageSettingsEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.QueryPageSettingsEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/QueryPageSettingsEventHandler.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/QueryPageSettingsEventHandler.cs" }, { "DocsId": "M:System.Drawing.Printing.QueryPageSettingsEventHandler.Invoke(System.Object,System.Drawing.Printing.QueryPageSettingsEventArgs)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/QueryPageSettingsEventHandler.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/QueryPageSettingsEventHandler.cs" }, { "DocsId": "M:System.Drawing.Printing.QueryPageSettingsEventHandler.BeginInvoke(System.Object,System.Drawing.Printing.QueryPageSettingsEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/QueryPageSettingsEventHandler.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/QueryPageSettingsEventHandler.cs" }, { "DocsId": "M:System.Drawing.Printing.QueryPageSettingsEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/QueryPageSettingsEventHandler.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/QueryPageSettingsEventHandler.cs" } ], "DocsId": "T:System.Drawing.Printing.QueryPageSettingsEventHandler", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/QueryPageSettingsEventHandler.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/QueryPageSettingsEventHandler.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Printing.Duplex.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/Duplex.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/Duplex.cs" }, { "DocsId": "F:System.Drawing.Printing.Duplex.Default", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/Duplex.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/Duplex.cs" }, { "DocsId": "F:System.Drawing.Printing.Duplex.Simplex", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/Duplex.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/Duplex.cs" }, { "DocsId": "F:System.Drawing.Printing.Duplex.Horizontal", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/Duplex.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/Duplex.cs" }, { "DocsId": "F:System.Drawing.Printing.Duplex.Vertical", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/Duplex.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/Duplex.cs" } ], "DocsId": "T:System.Drawing.Printing.Duplex", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/Duplex.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/Duplex.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.InvalidPrinterException.#ctor(System.Drawing.Printing.PrinterSettings)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/InvalidPrinterException.cs#L20C7-L23C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/InvalidPrinterException.cs#L20C7-L23C6" }, { "DocsId": "M:System.Drawing.Printing.InvalidPrinterException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/InvalidPrinterException.Core.cs#L19C91-L22C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/InvalidPrinterException.Core.cs#L19C91-L22C6" }, { "DocsId": "M:System.Drawing.Printing.InvalidPrinterException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/InvalidPrinterException.Core.cs#L29C9-L31C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/InvalidPrinterException.Core.cs#L29C9-L31C6" } ], "DocsId": "T:System.Drawing.Printing.InvalidPrinterException", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/InvalidPrinterException.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/InvalidPrinterException.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.Margins.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L35C24-L37C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L35C24-L37C6" }, { "DocsId": "M:System.Drawing.Printing.Margins.#ctor(System.Int32,System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L42C5-L58C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L42C5-L58C6" }, { "DocsId": "M:System.Drawing.Printing.Margins.Clone", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L187C30-L187C47" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L187C30-L187C47" }, { "DocsId": "M:System.Drawing.Printing.Margins.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L195C9-L203C41" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L195C9-L203C41" }, { "DocsId": "M:System.Drawing.Printing.Margins.GetHashCode", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L209C42-L209C84" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L209C42-L209C84" }, { "DocsId": "M:System.Drawing.Printing.Margins.op_Equality(System.Drawing.Printing.Margins,System.Drawing.Printing.Margins)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L216C9-L225C30" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L216C9-L225C30" }, { "DocsId": "M:System.Drawing.Printing.Margins.op_Inequality(System.Drawing.Printing.Margins,System.Drawing.Printing.Margins)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L231C65-L231C76" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L231C65-L231C76" }, { "DocsId": "M:System.Drawing.Printing.Margins.ToString", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L236C42-L236C106" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L236C42-L236C106" }, { "DocsId": "P:System.Drawing.Printing.Margins.Left", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L65C16-L65C21" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L65C16-L65C21" }, { "DocsId": "P:System.Drawing.Printing.Margins.Right", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L79C16-L79C22" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L79C16-L79C22" }, { "DocsId": "P:System.Drawing.Printing.Margins.Top", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L93C16-L93C20" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L93C16-L93C20" }, { "DocsId": "P:System.Drawing.Printing.Margins.Bottom", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L107C16-L107C23" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L107C16-L107C23" } ], "DocsId": "T:System.Drawing.Printing.Margins", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.MarginsConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/MarginsConverter.cs#L23C9-L27C57" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/MarginsConverter.cs#L23C9-L27C57" }, { "DocsId": "M:System.Drawing.Printing.MarginsConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/MarginsConverter.cs#L36C9-L40C60" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/MarginsConverter.cs#L36C9-L40C60" }, { "DocsId": "M:System.Drawing.Printing.MarginsConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/MarginsConverter.cs#L48C9-L76C58" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/MarginsConverter.cs#L48C9-L76C58" }, { "DocsId": "M:System.Drawing.Printing.MarginsConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/MarginsConverter.cs#L92C9-L124C73" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/MarginsConverter.cs#L92C9-L124C73" }, { "DocsId": "M:System.Drawing.Printing.MarginsConverter.GetCreateInstanceSupported(System.ComponentModel.ITypeDescriptorContext)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/MarginsConverter.cs#L131C89-L131C93" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/MarginsConverter.cs#L131C89-L131C93" }, { "DocsId": "M:System.Drawing.Printing.MarginsConverter.CreateInstance(System.ComponentModel.ITypeDescriptorContext,System.Collections.IDictionary)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/MarginsConverter.cs#L140C9-L156C42" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/MarginsConverter.cs#L140C9-L156C42" }, { "DocsId": "M:System.Drawing.Printing.MarginsConverter.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/MarginsConverter.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/MarginsConverter.cs" } ], "DocsId": "T:System.Drawing.Printing.MarginsConverter", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/MarginsConverter.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/MarginsConverter.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Printing.PaperKind.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Custom", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Letter", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Legal", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.A4", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.CSheet", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.DSheet", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.ESheet", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.LetterSmall", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Tabloid", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Ledger", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Statement", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Executive", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.A3", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.A4Small", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.A5", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.B4", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.B5", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Folio", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Quarto", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Standard10x14", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Standard11x17", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Note", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Number9Envelope", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Number10Envelope", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Number11Envelope", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Number12Envelope", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Number14Envelope", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.DLEnvelope", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.C5Envelope", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.C3Envelope", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.C4Envelope", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.C6Envelope", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.C65Envelope", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.B4Envelope", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.B5Envelope", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.B6Envelope", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.ItalyEnvelope", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.MonarchEnvelope", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.PersonalEnvelope", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.USStandardFanfold", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.GermanStandardFanfold", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.GermanLegalFanfold", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.IsoB4", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.JapanesePostcard", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Standard9x11", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Standard10x11", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Standard15x11", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.InviteEnvelope", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.LetterExtra", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.LegalExtra", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.TabloidExtra", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.A4Extra", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.LetterTransverse", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.A4Transverse", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.LetterExtraTransverse", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.APlus", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.BPlus", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.LetterPlus", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.A4Plus", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.A5Transverse", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.B5Transverse", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.A3Extra", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.A5Extra", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.B5Extra", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.A2", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.A3Transverse", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.A3ExtraTransverse", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.JapaneseDoublePostcard", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.A6", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.JapaneseEnvelopeKakuNumber2", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.JapaneseEnvelopeKakuNumber3", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.JapaneseEnvelopeChouNumber3", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.JapaneseEnvelopeChouNumber4", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.LetterRotated", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.A3Rotated", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.A4Rotated", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.A5Rotated", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.B4JisRotated", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.B5JisRotated", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.JapanesePostcardRotated", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.JapaneseDoublePostcardRotated", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.A6Rotated", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.JapaneseEnvelopeKakuNumber2Rotated", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.JapaneseEnvelopeKakuNumber3Rotated", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.JapaneseEnvelopeChouNumber3Rotated", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.JapaneseEnvelopeChouNumber4Rotated", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.B6Jis", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.B6JisRotated", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Standard12x11", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.JapaneseEnvelopeYouNumber4", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.JapaneseEnvelopeYouNumber4Rotated", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Prc16K", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Prc32K", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Prc32KBig", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.PrcEnvelopeNumber1", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.PrcEnvelopeNumber2", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.PrcEnvelopeNumber3", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.PrcEnvelopeNumber4", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.PrcEnvelopeNumber5", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.PrcEnvelopeNumber6", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.PrcEnvelopeNumber7", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.PrcEnvelopeNumber8", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.PrcEnvelopeNumber9", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.PrcEnvelopeNumber10", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Prc16KRotated", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Prc32KRotated", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Prc32KBigRotated", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.PrcEnvelopeNumber1Rotated", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.PrcEnvelopeNumber2Rotated", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.PrcEnvelopeNumber3Rotated", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.PrcEnvelopeNumber4Rotated", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.PrcEnvelopeNumber5Rotated", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.PrcEnvelopeNumber6Rotated", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.PrcEnvelopeNumber7Rotated", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.PrcEnvelopeNumber8Rotated", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.PrcEnvelopeNumber9Rotated", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.PrcEnvelopeNumber10Rotated", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" } ], "DocsId": "T:System.Drawing.Printing.PaperKind", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.PaperSize.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSize.cs#L24C5-L29C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSize.cs#L24C5-L29C6" }, { "DocsId": "M:System.Drawing.Printing.PaperSize.#ctor(System.String,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSize.cs#L42C5-L48C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSize.cs#L42C5-L48C6" }, { "DocsId": "M:System.Drawing.Printing.PaperSize.ToString", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSize.cs#L130C42-L130C188" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSize.cs#L130C42-L130C188" }, { "DocsId": "P:System.Drawing.Printing.PaperSize.Height", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSize.cs#L55C16-L55C23" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSize.cs#L55C16-L55C23" }, { "DocsId": "P:System.Drawing.Printing.PaperSize.Kind", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSize.cs#L74C13-L80C37" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSize.cs#L74C13-L80C37" }, { "DocsId": "P:System.Drawing.Printing.PaperSize.PaperName", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSize.cs#L89C16-L89C21" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSize.cs#L89C16-L89C21" }, { "DocsId": "P:System.Drawing.Printing.PaperSize.RawKind", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSize.cs#L106C16-L106C37" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSize.cs#L106C16-L106C37" }, { "DocsId": "P:System.Drawing.Printing.PaperSize.Width", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSize.cs#L115C16-L115C22" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSize.cs#L115C16-L115C22" } ], "DocsId": "T:System.Drawing.Printing.PaperSize", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSize.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSize.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.PaperSource.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSource.cs#L17C5-L21C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSource.cs#L17C5-L21C6" }, { "DocsId": "M:System.Drawing.Printing.PaperSource.ToString", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSource.cs#L66C42-L66C83" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSource.cs#L66C42-L66C83" }, { "DocsId": "P:System.Drawing.Printing.PaperSource.Kind", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSource.cs#L36C13-L41C26" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSource.cs#L36C13-L41C26" }, { "DocsId": "P:System.Drawing.Printing.PaperSource.RawKind", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSource.cs#L50C16-L50C37" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSource.cs#L50C16-L50C37" }, { "DocsId": "P:System.Drawing.Printing.PaperSource.SourceName", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSource.cs#L59C16-L59C21" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSource.cs#L59C16-L59C21" } ], "DocsId": "T:System.Drawing.Printing.PaperSource", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSource.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSource.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Printing.PaperSourceKind.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperSourceKind.Upper", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperSourceKind.Lower", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperSourceKind.Middle", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperSourceKind.Manual", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperSourceKind.Envelope", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperSourceKind.ManualFeed", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperSourceKind.AutomaticFeed", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperSourceKind.TractorFeed", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperSourceKind.SmallFormat", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperSourceKind.LargeFormat", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperSourceKind.LargeCapacity", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperSourceKind.Cassette", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperSourceKind.FormSource", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperSourceKind.Custom", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" } ], "DocsId": "T:System.Drawing.Printing.PaperSourceKind", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.PrinterResolution.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolution.cs#L20C5-L23C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolution.cs#L20C5-L23C6" }, { "DocsId": "M:System.Drawing.Printing.PrinterResolution.ToString", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolution.cs#L72C9-L78C80" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolution.cs#L72C9-L78C80" }, { "DocsId": "P:System.Drawing.Printing.PrinterResolution.Kind", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolution.cs#L37C16-L37C21" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolution.cs#L37C16-L37C21" }, { "DocsId": "P:System.Drawing.Printing.PrinterResolution.X", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolution.cs#L54C16-L54C18" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolution.cs#L54C16-L54C18" }, { "DocsId": "P:System.Drawing.Printing.PrinterResolution.Y", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolution.cs#L63C16-L63C18" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolution.cs#L63C16-L63C18" } ], "DocsId": "T:System.Drawing.Printing.PrinterResolution", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolution.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolution.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Printing.PrinterResolutionKind.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolutionKind.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolutionKind.cs" }, { "DocsId": "F:System.Drawing.Printing.PrinterResolutionKind.High", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolutionKind.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolutionKind.cs" }, { "DocsId": "F:System.Drawing.Printing.PrinterResolutionKind.Medium", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolutionKind.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolutionKind.cs" }, { "DocsId": "F:System.Drawing.Printing.PrinterResolutionKind.Low", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolutionKind.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolutionKind.cs" }, { "DocsId": "F:System.Drawing.Printing.PrinterResolutionKind.Draft", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolutionKind.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolutionKind.cs" }, { "DocsId": "F:System.Drawing.Printing.PrinterResolutionKind.Custom", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolutionKind.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolutionKind.cs" } ], "DocsId": "T:System.Drawing.Printing.PrinterResolutionKind", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolutionKind.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolutionKind.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.PrinterUnitConvert.Convert(System.Double,System.Drawing.Printing.PrinterUnit,System.Drawing.Printing.PrinterUnit)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnitConvert.cs#L21C9-L23C64" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnitConvert.cs#L21C9-L23C64" }, { "DocsId": "M:System.Drawing.Printing.PrinterUnitConvert.Convert(System.Int32,System.Drawing.Printing.PrinterUnit,System.Drawing.Printing.PrinterUnit)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnitConvert.cs#L31C9-L31C74" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnitConvert.cs#L31C9-L31C74" }, { "DocsId": "M:System.Drawing.Printing.PrinterUnitConvert.Convert(System.Drawing.Point,System.Drawing.Printing.PrinterUnit,System.Drawing.Printing.PrinterUnit)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnitConvert.cs#L39C9-L42C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnitConvert.cs#L39C9-L42C27" }, { "DocsId": "M:System.Drawing.Printing.PrinterUnitConvert.Convert(System.Drawing.Size,System.Drawing.Printing.PrinterUnit,System.Drawing.Printing.PrinterUnit)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnitConvert.cs#L50C9-L53C26" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnitConvert.cs#L50C9-L53C26" }, { "DocsId": "M:System.Drawing.Printing.PrinterUnitConvert.Convert(System.Drawing.Rectangle,System.Drawing.Printing.PrinterUnit,System.Drawing.Printing.PrinterUnit)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnitConvert.cs#L61C9-L66C31" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnitConvert.cs#L61C9-L66C31" }, { "DocsId": "M:System.Drawing.Printing.PrinterUnitConvert.Convert(System.Drawing.Printing.Margins,System.Drawing.Printing.PrinterUnit,System.Drawing.Printing.PrinterUnit)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnitConvert.cs#L74C9-L81C23" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnitConvert.cs#L74C9-L81C23" } ], "DocsId": "T:System.Drawing.Printing.PrinterUnitConvert", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnitConvert.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnitConvert.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Printing.PrintRange.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrintRange.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrintRange.cs" }, { "DocsId": "F:System.Drawing.Printing.PrintRange.AllPages", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrintRange.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrintRange.cs" }, { "DocsId": "F:System.Drawing.Printing.PrintRange.SomePages", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrintRange.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrintRange.cs" }, { "DocsId": "F:System.Drawing.Printing.PrintRange.Selection", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrintRange.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrintRange.cs" }, { "DocsId": "F:System.Drawing.Printing.PrintRange.CurrentPage", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrintRange.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrintRange.cs" } ], "DocsId": "T:System.Drawing.Printing.PrintRange", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrintRange.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrintRange.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.StandardPrintController.OnStartPrint(System.Drawing.Printing.PrintDocument,System.Drawing.Printing.PrintEventArgs)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/DefaultPrintController.cs#L26C9-L55C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/DefaultPrintController.cs#L26C9-L55C6" }, { "DocsId": "M:System.Drawing.Printing.StandardPrintController.OnStartPage(System.Drawing.Printing.PrintDocument,System.Drawing.Printing.PrintPageEventArgs)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/DefaultPrintController.cs#L65C9-L100C26" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/DefaultPrintController.cs#L65C9-L100C26" }, { "DocsId": "M:System.Drawing.Printing.StandardPrintController.OnEndPage(System.Drawing.Printing.PrintDocument,System.Drawing.Printing.PrintPageEventArgs)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/DefaultPrintController.cs#L112C13-L122C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/DefaultPrintController.cs#L112C13-L122C6" }, { "DocsId": "M:System.Drawing.Printing.StandardPrintController.OnEndPrint(System.Drawing.Printing.PrintDocument,System.Drawing.Printing.PrintEventArgs)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/DefaultPrintController.cs#L131C9-L147C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/DefaultPrintController.cs#L131C9-L147C6" }, { "DocsId": "M:System.Drawing.Printing.StandardPrintController.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/DefaultPrintController.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/DefaultPrintController.cs" } ], "DocsId": "T:System.Drawing.Printing.StandardPrintController", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/DefaultPrintController.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/DefaultPrintController.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.PageSettings.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L27C29-L29C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L27C29-L29C6" }, { "DocsId": "M:System.Drawing.Printing.PageSettings.#ctor(System.Drawing.Printing.PrinterSettings)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L17C5-L38C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L17C5-L38C6" }, { "DocsId": "M:System.Drawing.Printing.PageSettings.Clone", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L267C9-L269C23" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L267C9-L269C23" }, { "DocsId": "M:System.Drawing.Printing.PageSettings.CopyToHdevmode(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L277C9-L371C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L277C9-L371C6" }, { "DocsId": "M:System.Drawing.Printing.PageSettings.SetHdevmode(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L506C9-L529C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L506C9-L529C6" }, { "DocsId": "M:System.Drawing.Printing.PageSettings.ToString", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L535C9-L535C182" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L535C9-L535C182" }, { "DocsId": "P:System.Drawing.Printing.PageSettings.Bounds", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L47C13-L51C31" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L47C13-L51C31" }, { "DocsId": "P:System.Drawing.Printing.PageSettings.Color", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L62C13-L65C37" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L62C13-L65C37" }, { "DocsId": "P:System.Drawing.Printing.PageSettings.HardMarginX", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L77C13-L90C32" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L77C13-L90C32" }, { "DocsId": "P:System.Drawing.Printing.PageSettings.HardMarginY", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L102C13-L115C32" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L102C13-L115C32" }, { "DocsId": "P:System.Drawing.Printing.PageSettings.Landscape", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L126C13-L129C41" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L126C13-L129C41" }, { "DocsId": "P:System.Drawing.Printing.PageSettings.Margins", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L139C15-L139C31" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L139C15-L139C31" }, { "DocsId": "P:System.Drawing.Printing.PageSettings.PaperSize", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L150C13-L150C46" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L150C13-L150C46" }, { "DocsId": "P:System.Drawing.Printing.PageSettings.PaperSource", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L162C13-L176C37" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L162C13-L176C37" }, { "DocsId": "P:System.Drawing.Printing.PageSettings.PrintableArea", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L188C13-L220C34" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L188C13-L220C34" }, { "DocsId": "P:System.Drawing.Printing.PageSettings.PrinterResolution", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L231C13-L245C43" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L231C13-L245C43" }, { "DocsId": "P:System.Drawing.Printing.PageSettings.PrinterSettings", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L258C16-L258C31" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L258C16-L258C31" } ], "DocsId": "T:System.Drawing.Printing.PageSettings", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.PrintDocument.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L14C5-L35C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L14C5-L35C6" }, { "DocsId": "M:System.Drawing.Printing.PrintDocument.OnBeginPrint(System.Drawing.Printing.PrintEventArgs)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L193C9-L194C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L193C9-L194C6" }, { "DocsId": "M:System.Drawing.Printing.PrintDocument.OnEndPrint(System.Drawing.Printing.PrintEventArgs)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L201C9-L202C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L201C9-L202C6" }, { "DocsId": "M:System.Drawing.Printing.PrintDocument.OnPrintPage(System.Drawing.Printing.PrintPageEventArgs)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L209C9-L210C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L209C9-L210C6" }, { "DocsId": "M:System.Drawing.Printing.PrintDocument.OnQueryPageSettings(System.Drawing.Printing.QueryPageSettingsEventArgs)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L217C9-L218C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L217C9-L218C6" }, { "DocsId": "M:System.Drawing.Printing.PrintDocument.Print", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L225C9-L227C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L225C9-L227C6" }, { "DocsId": "M:System.Drawing.Printing.PrintDocument.ToString", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L232C42-L232C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L232C42-L232C75" }, { "DocsId": "E:System.Drawing.Printing.PrintDocument.BeginPrint", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L135C13-L136C10" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L135C13-L136C10" }, { "DocsId": "E:System.Drawing.Printing.PrintDocument.EndPrint", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L151C13-L152C10" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L151C13-L152C10" }, { "DocsId": "E:System.Drawing.Printing.PrintDocument.PrintPage", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L167C13-L168C10" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L167C13-L168C10" }, { "DocsId": "E:System.Drawing.Printing.PrintDocument.QueryPageSettings", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L180C13-L181C10" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L180C13-L181C10" }, { "DocsId": "P:System.Drawing.Printing.PrintDocument.DefaultPageSettings", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L47C15-L47C43" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L47C15-L47C43" }, { "DocsId": "P:System.Drawing.Printing.PrintDocument.DocumentName", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L65C16-L65C29" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L65C16-L65C29" }, { "DocsId": "P:System.Drawing.Printing.PrintDocument.OriginAtMargins", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L82C13-L82C37" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L82C13-L82C37" }, { "DocsId": "P:System.Drawing.Printing.PrintDocument.PrintController", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L100C16-L100C66" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L100C16-L100C66" }, { "DocsId": "P:System.Drawing.Printing.PrintDocument.PrinterSettings", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L114C15-L114C39" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L114C15-L114C39" } ], "DocsId": "T:System.Drawing.Printing.PrintDocument", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.PrinterSettings.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L28C5-L57C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L28C5-L57C6" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.IsDirectPrintingSupported(System.Drawing.Imaging.ImageFormat)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L447C9-L463C42" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L447C9-L463C42" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.IsDirectPrintingSupported(System.Drawing.Image)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L475C9-L509C42" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L475C9-L509C42" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.Clone", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L549C9-L551C22" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L549C9-L551C22" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.CreateMeasurementGraphics", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L611C9-L611C63" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L611C9-L611C63" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.CreateMeasurementGraphics(System.Boolean)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L617C9-L623C18" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L617C9-L623C18" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.CreateMeasurementGraphics(System.Drawing.Printing.PageSettings)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L629C9-L632C18" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L629C9-L632C18" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.CreateMeasurementGraphics(System.Drawing.Printing.PageSettings,System.Boolean)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L638C9-L644C18" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L638C9-L644C18" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.GetHdevmode", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L809C9-L811C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L809C9-L811C27" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.GetHdevmode(System.Drawing.Printing.PageSettings)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L899C9-L902C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L899C9-L902C27" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.GetHdevnames", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L913C9-L937C23" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L913C9-L937C23" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.SetHdevmode(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1162C9-L1200C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1162C9-L1200C6" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.SetHdevnames(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1207C9-L1221C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1207C9-L1221C6" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.ToString", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1228C9-L1229C223" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1228C9-L1229C223" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.CanDuplex", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L64C15-L64C91" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L64C15-L64C91" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.Copies", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L74C13-L77C58" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L74C13-L77C58" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.Collate", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L103C13-L106C127" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L103C13-L106C127" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.DefaultPageSettings", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L116C15-L116C43" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L116C15-L116C43" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.Duplex", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L133C13-L138C92" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L133C13-L138C92" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.FromPage", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L156C15-L156C32" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L156C15-L156C32" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.InstalledPrinters", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L180C13-L215C48" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L180C13-L215C48" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.IsDefaultPrinter", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L226C13-L226C86" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L226C13-L226C86" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.IsPlotter", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L237C13-L237C106" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L237C13-L237C106" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.IsValid", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L248C13-L248C91" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L248C13-L248C91" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.LandscapeAngle", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L257C15-L257C91" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L257C15-L257C91" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.MaximumCopies", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L265C15-L265C86" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L265C15-L265C86" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.MaximumPage", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L273C15-L273C31" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L273C15-L273C31" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.MinimumPage", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L289C15-L289C31" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L289C15-L289C31" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.PrintFileName", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L319C13-L320C34" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L319C13-L320C34" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.PaperSizes", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L337C15-L337C64" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L337C15-L337C64" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.PaperSources", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L345C15-L345C68" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L345C15-L345C68" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.PrintRange", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L371C15-L371C34" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L371C15-L371C34" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.PrintToFile", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L388C13-L388C33" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L388C13-L388C33" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.PrinterName", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L403C13-L403C40" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L403C13-L403C40" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.PrinterResolutions", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L438C15-L438C80" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L438C15-L438C80" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.SupportsColor", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L521C13-L524C39" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L521C13-L524C39" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.ToPage", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L533C15-L533C30" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L533C15-L533C30" }, { "DocsId": "T:System.Drawing.Printing.PrinterSettings.PaperSizeCollection", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs" }, { "DocsId": "T:System.Drawing.Printing.PrinterSettings.PaperSourceCollection", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs" }, { "DocsId": "T:System.Drawing.Printing.PrinterSettings.PrinterResolutionCollection", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs" }, { "DocsId": "T:System.Drawing.Printing.PrinterSettings.StringCollection", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs" } ], "DocsId": "T:System.Drawing.Printing.PrinterSettings", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.PrintEventArgs.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrintEventArgs.cs#L18C5-L20C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrintEventArgs.cs#L18C5-L20C6" }, { "DocsId": "P:System.Drawing.Printing.PrintEventArgs.PrintAction", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrintEventArgs.cs#L37C13-L37C33" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrintEventArgs.cs#L37C13-L37C33" } ], "DocsId": "T:System.Drawing.Printing.PrintEventArgs", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrintEventArgs.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrintEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.PrintPageEventArgs.#ctor(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Drawing.Printing.PageSettings)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventArgs.cs#L21C5-L33C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventArgs.cs#L21C5-L33C6" }, { "DocsId": "P:System.Drawing.Printing.PrintPageEventArgs.Cancel", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventArgs.cs#L40C15-L40C30" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventArgs.cs#L40C15-L40C30" }, { "DocsId": "P:System.Drawing.Printing.PrintPageEventArgs.Graphics", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventArgs.cs#L51C13-L51C30" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventArgs.cs#L51C13-L51C30" }, { "DocsId": "P:System.Drawing.Printing.PrintPageEventArgs.HasMorePages", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventArgs.cs#L60C15-L60C36" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventArgs.cs#L60C15-L60C36" }, { "DocsId": "P:System.Drawing.Printing.PrintPageEventArgs.MarginBounds", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventArgs.cs#L71C13-L71C34" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventArgs.cs#L71C13-L71C34" }, { "DocsId": "P:System.Drawing.Printing.PrintPageEventArgs.PageBounds", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventArgs.cs#L82C13-L82C32" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventArgs.cs#L82C13-L82C32" }, { "DocsId": "P:System.Drawing.Printing.PrintPageEventArgs.PageSettings", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventArgs.cs#L93C13-L93C34" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventArgs.cs#L93C13-L93C34" } ], "DocsId": "T:System.Drawing.Printing.PrintPageEventArgs", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventArgs.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IntPtr,System.Drawing.Imaging.WmfPlaceableFileHeader,System.Boolean)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L31C5-L35C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L31C5-L35C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IntPtr,System.Boolean)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L41C5-L45C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L41C5-L45C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L50C5-L56C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L50C5-L56C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IntPtr,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L63C9-L65C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L63C9-L65C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IntPtr,System.Drawing.Imaging.EmfType)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L71C9-L73C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L71C9-L73C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IntPtr,System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L80C9-L82C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L80C9-L82C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IntPtr,System.Drawing.RectangleF,System.Drawing.Imaging.MetafileFrameUnit)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L89C9-L91C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L89C9-L91C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IntPtr,System.Drawing.RectangleF,System.Drawing.Imaging.MetafileFrameUnit,System.Drawing.Imaging.EmfType)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L98C9-L100C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L98C9-L100C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IntPtr,System.Drawing.RectangleF,System.Drawing.Imaging.MetafileFrameUnit,System.Drawing.Imaging.EmfType,System.String)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L106C5-L117C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L106C5-L117C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IntPtr,System.Drawing.Rectangle,System.Drawing.Imaging.MetafileFrameUnit)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L124C9-L126C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L124C9-L126C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IntPtr,System.Drawing.Rectangle,System.Drawing.Imaging.MetafileFrameUnit,System.Drawing.Imaging.EmfType)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L133C9-L135C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L133C9-L135C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.String,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L141C9-L143C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L141C9-L143C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.String,System.IntPtr,System.Drawing.Imaging.EmfType)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L149C9-L151C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L149C9-L151C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.String,System.IntPtr,System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L157C9-L159C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L157C9-L159C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.String,System.IntPtr,System.Drawing.RectangleF,System.Drawing.Imaging.MetafileFrameUnit)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L165C9-L167C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L165C9-L167C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.String,System.IntPtr,System.Drawing.RectangleF,System.Drawing.Imaging.MetafileFrameUnit,System.Drawing.Imaging.EmfType)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L173C9-L175C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L173C9-L175C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.String,System.IntPtr,System.Drawing.RectangleF,System.Drawing.Imaging.MetafileFrameUnit,System.String)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L181C9-L183C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L181C9-L183C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.String,System.IntPtr,System.Drawing.RectangleF,System.Drawing.Imaging.MetafileFrameUnit,System.Drawing.Imaging.EmfType,System.String)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L188C5-L207C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L188C5-L207C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.String,System.IntPtr,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L213C9-L215C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L213C9-L215C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.String,System.IntPtr,System.Drawing.Rectangle,System.Drawing.Imaging.MetafileFrameUnit)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L221C9-L223C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L221C9-L223C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.String,System.IntPtr,System.Drawing.Rectangle,System.Drawing.Imaging.MetafileFrameUnit,System.Drawing.Imaging.EmfType)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L229C9-L231C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L229C9-L231C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.String,System.IntPtr,System.Drawing.Rectangle,System.Drawing.Imaging.MetafileFrameUnit,System.String)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L237C9-L239C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L237C9-L239C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IO.Stream,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L245C9-L247C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L245C9-L247C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IO.Stream,System.IntPtr,System.Drawing.Imaging.EmfType)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L253C9-L255C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L253C9-L255C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IO.Stream,System.IntPtr,System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L261C9-L263C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L261C9-L263C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IO.Stream,System.IntPtr,System.Drawing.RectangleF,System.Drawing.Imaging.MetafileFrameUnit)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L269C9-L271C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L269C9-L271C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IO.Stream,System.IntPtr,System.Drawing.RectangleF,System.Drawing.Imaging.MetafileFrameUnit,System.Drawing.Imaging.EmfType)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L277C9-L279C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L277C9-L279C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IO.Stream,System.IntPtr,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L285C9-L287C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L285C9-L287C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IO.Stream,System.IntPtr,System.Drawing.Rectangle,System.Drawing.Imaging.MetafileFrameUnit)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L293C9-L295C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L293C9-L295C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IO.Stream,System.IntPtr,System.Drawing.Rectangle,System.Drawing.Imaging.MetafileFrameUnit,System.Drawing.Imaging.EmfType)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L301C9-L303C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L301C9-L303C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IntPtr,System.Drawing.Imaging.WmfPlaceableFileHeader)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L310C9-L312C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L310C9-L312C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L317C5-L327C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L317C5-L327C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IntPtr,System.Drawing.Imaging.EmfType,System.String)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L332C5-L343C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L332C5-L343C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IntPtr,System.Drawing.Rectangle,System.Drawing.Imaging.MetafileFrameUnit,System.Drawing.Imaging.EmfType,System.String)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L349C5-L375C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L349C5-L375C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.String,System.IntPtr,System.Drawing.Imaging.EmfType,System.String)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L380C5-L395C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L380C5-L395C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.String,System.IntPtr,System.Drawing.Rectangle,System.Drawing.Imaging.MetafileFrameUnit,System.Drawing.Imaging.EmfType,System.String)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L400C5-L431C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L400C5-L431C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IO.Stream,System.IntPtr,System.Drawing.Imaging.EmfType,System.String)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L436C5-L451C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L436C5-L451C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IO.Stream,System.IntPtr,System.Drawing.RectangleF,System.Drawing.Imaging.MetafileFrameUnit,System.Drawing.Imaging.EmfType,System.String)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L456C5-L471C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L456C5-L471C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IO.Stream,System.IntPtr,System.Drawing.Rectangle,System.Drawing.Imaging.MetafileFrameUnit,System.Drawing.Imaging.EmfType,System.String)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L476C5-L505C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L476C5-L505C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.PlayRecord(System.Drawing.Imaging.EmfPlusRecordType,System.Int32,System.Int32,System.Byte[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L525C9-L531C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L525C9-L531C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.GetMetafileHeader(System.IntPtr,System.Drawing.Imaging.WmfPlaceableFileHeader)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L538C9-L544C23" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L538C9-L544C23" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.GetMetafileHeader(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L552C9-L558C23" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L552C9-L558C23" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.GetMetafileHeader(System.String)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L567C9-L602C23" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L567C9-L602C23" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.GetMetafileHeader(System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L612C9-L646C23" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L612C9-L646C23" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.GetMetafileHeader", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L656C9-L689C23" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L656C9-L689C23" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.GetHenhmetafile", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L697C9-L698C21" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L697C9-L698C21" } ], "DocsId": "T:System.Drawing.Imaging.Metafile", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Imaging.ColorAdjustType.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorAdjustType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorAdjustType.cs" }, { "DocsId": "F:System.Drawing.Imaging.ColorAdjustType.Default", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorAdjustType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorAdjustType.cs" }, { "DocsId": "F:System.Drawing.Imaging.ColorAdjustType.Bitmap", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorAdjustType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorAdjustType.cs" }, { "DocsId": "F:System.Drawing.Imaging.ColorAdjustType.Brush", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorAdjustType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorAdjustType.cs" }, { "DocsId": "F:System.Drawing.Imaging.ColorAdjustType.Pen", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorAdjustType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorAdjustType.cs" }, { "DocsId": "F:System.Drawing.Imaging.ColorAdjustType.Text", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorAdjustType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorAdjustType.cs" }, { "DocsId": "F:System.Drawing.Imaging.ColorAdjustType.Count", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorAdjustType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorAdjustType.cs" }, { "DocsId": "F:System.Drawing.Imaging.ColorAdjustType.Any", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorAdjustType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorAdjustType.cs" } ], "DocsId": "T:System.Drawing.Imaging.ColorAdjustType", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorAdjustType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorAdjustType.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Imaging.ColorChannelFlag.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorChannelFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorChannelFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ColorChannelFlag.ColorChannelC", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorChannelFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorChannelFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ColorChannelFlag.ColorChannelM", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorChannelFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorChannelFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ColorChannelFlag.ColorChannelY", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorChannelFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorChannelFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ColorChannelFlag.ColorChannelK", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorChannelFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorChannelFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ColorChannelFlag.ColorChannelLast", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorChannelFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorChannelFlags.cs" } ], "DocsId": "T:System.Drawing.Imaging.ColorChannelFlag", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorChannelFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorChannelFlags.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.ColorMap.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMap.cs#L17C5-L19C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMap.cs#L17C5-L19C6" }, { "DocsId": "P:System.Drawing.Imaging.ColorMap.OldColor", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMap.cs#L26C15-L26C32" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMap.cs#L26C15-L26C32" }, { "DocsId": "P:System.Drawing.Imaging.ColorMap.NewColor", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMap.cs#L34C15-L34C32" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMap.cs#L34C15-L34C32" } ], "DocsId": "T:System.Drawing.Imaging.ColorMap", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMap.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMap.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Imaging.ColorMapType.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMapType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMapType.cs" }, { "DocsId": "F:System.Drawing.Imaging.ColorMapType.Default", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMapType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMapType.cs" }, { "DocsId": "F:System.Drawing.Imaging.ColorMapType.Brush", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMapType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMapType.cs" } ], "DocsId": "T:System.Drawing.Imaging.ColorMapType", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMapType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMapType.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Imaging.ColorMatrixFlag.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrixFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrixFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ColorMatrixFlag.Default", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrixFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrixFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ColorMatrixFlag.SkipGrays", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrixFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrixFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ColorMatrixFlag.AltGrays", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrixFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrixFlags.cs" } ], "DocsId": "T:System.Drawing.Imaging.ColorMatrixFlag", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrixFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrixFlags.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Imaging.ColorMode.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMode.cs" }, { "DocsId": "F:System.Drawing.Imaging.ColorMode.Argb32Mode", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMode.cs" }, { "DocsId": "F:System.Drawing.Imaging.ColorMode.Argb64Mode", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMode.cs" } ], "DocsId": "T:System.Drawing.Imaging.ColorMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMode.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfRecordBase", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSetBkColor", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSetBkMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSetMapMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSetROP2", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSetRelAbs", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSetPolyFillMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSetStretchBltMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSetTextCharExtra", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSetTextColor", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSetTextJustification", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSetWindowOrg", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSetWindowExt", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSetViewportOrg", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSetViewportExt", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfOffsetWindowOrg", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfScaleWindowExt", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfOffsetViewportOrg", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfScaleViewportExt", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfLineTo", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfMoveTo", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfExcludeClipRect", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfIntersectClipRect", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfArc", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfEllipse", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfFloodFill", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfPie", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfRectangle", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfRoundRect", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfPatBlt", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSaveDC", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSetPixel", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfOffsetCilpRgn", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfTextOut", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfBitBlt", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfStretchBlt", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfPolygon", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfPolyline", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfEscape", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfRestoreDC", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfFillRegion", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfFrameRegion", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfInvertRegion", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfPaintRegion", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSelectClipRegion", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSelectObject", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSetTextAlign", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfChord", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSetMapperFlags", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfExtTextOut", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSetDibToDev", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSelectPalette", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfRealizePalette", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfAnimatePalette", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSetPalEntries", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfPolyPolygon", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfResizePalette", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfDibBitBlt", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfDibStretchBlt", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfDibCreatePatternBrush", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfStretchDib", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfExtFloodFill", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSetLayout", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfDeleteObject", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfCreatePalette", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfCreatePatternBrush", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfCreatePenIndirect", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfCreateFontIndirect", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfCreateBrushIndirect", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfCreateRegion", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfHeader", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfPolyBezier", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfPolygon", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfPolyline", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfPolyBezierTo", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfPolyLineTo", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfPolyPolyline", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfPolyPolygon", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetWindowExtEx", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetWindowOrgEx", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetViewportExtEx", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetViewportOrgEx", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetBrushOrgEx", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfEof", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetPixelV", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetMapperFlags", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetMapMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetBkMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetPolyFillMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetROP2", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetStretchBltMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetTextAlign", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetColorAdjustment", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetTextColor", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetBkColor", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfOffsetClipRgn", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfMoveToEx", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetMetaRgn", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfExcludeClipRect", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfIntersectClipRect", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfScaleViewportExtEx", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfScaleWindowExtEx", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSaveDC", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfRestoreDC", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetWorldTransform", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfModifyWorldTransform", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSelectObject", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfCreatePen", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfCreateBrushIndirect", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfDeleteObject", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfAngleArc", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfEllipse", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfRectangle", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfRoundRect", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfRoundArc", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfChord", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfPie", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSelectPalette", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfCreatePalette", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetPaletteEntries", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfResizePalette", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfRealizePalette", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfExtFloodFill", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfLineTo", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfArcTo", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfPolyDraw", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetArcDirection", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetMiterLimit", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfBeginPath", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfEndPath", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfCloseFigure", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfFillPath", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfStrokeAndFillPath", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfStrokePath", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfFlattenPath", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfWidenPath", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSelectClipPath", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfAbortPath", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfReserved069", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfGdiComment", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfFillRgn", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfFrameRgn", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfInvertRgn", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfPaintRgn", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfExtSelectClipRgn", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfBitBlt", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfStretchBlt", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfMaskBlt", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfPlgBlt", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetDIBitsToDevice", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfStretchDIBits", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfExtCreateFontIndirect", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfExtTextOutA", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfExtTextOutW", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfPolyBezier16", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfPolygon16", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfPolyline16", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfPolyBezierTo16", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfPolylineTo16", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfPolyPolyline16", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfPolyPolygon16", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfPolyDraw16", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfCreateMonoBrush", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfCreateDibPatternBrushPt", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfExtCreatePen", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfPolyTextOutA", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfPolyTextOutW", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetIcmMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfCreateColorSpace", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetColorSpace", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfDeleteColorSpace", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfGlsRecord", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfGlsBoundedRecord", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfPixelFormat", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfDrawEscape", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfExtEscape", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfStartDoc", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSmallTextOut", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfForceUfiMapping", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfNamedEscpae", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfColorCorrectPalette", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetIcmProfileA", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetIcmProfileW", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfAlphaBlend", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetLayout", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfTransparentBlt", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfReserved117", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfGradientFill", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetLinkedUfis", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetTextJustification", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfColorMatchToTargetW", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfCreateColorSpaceW", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfMax", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfMin", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfPlusRecordBase", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.Invalid", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.Header", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EndOfFile", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.Comment", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.GetDC", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.MultiFormatStart", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.MultiFormatSection", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.MultiFormatEnd", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.Object", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.Clear", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.FillRects", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.DrawRects", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.FillPolygon", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.DrawLines", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.FillEllipse", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.DrawEllipse", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.FillPie", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.DrawPie", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.DrawArc", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.FillRegion", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.FillPath", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.DrawPath", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.FillClosedCurve", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.DrawClosedCurve", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.DrawCurve", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.DrawBeziers", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.DrawImage", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.DrawImagePoints", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.DrawString", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.SetRenderingOrigin", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.SetAntiAliasMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.SetTextRenderingHint", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.SetTextContrast", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.SetInterpolationMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.SetPixelOffsetMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.SetCompositingMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.SetCompositingQuality", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.Save", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.Restore", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.BeginContainer", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.BeginContainerNoParams", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EndContainer", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.SetWorldTransform", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.ResetWorldTransform", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.MultiplyWorldTransform", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.TranslateWorldTransform", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.ScaleWorldTransform", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.RotateWorldTransform", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.SetPageTransform", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.ResetClip", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.SetClipRect", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.SetClipPath", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.SetClipRegion", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.OffsetClip", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.DrawDriverString", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.Total", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.Max", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.Min", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" } ], "DocsId": "T:System.Drawing.Imaging.EmfPlusRecordType", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Imaging.EmfType.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfType.EmfOnly", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfType.EmfPlusOnly", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfType.EmfPlusDual", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfType.cs" } ], "DocsId": "T:System.Drawing.Imaging.EmfType", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfType.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.Encoder.#ctor(System.Guid)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs#L36C5-L39C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs#L36C5-L39C6" }, { "DocsId": "F:System.Drawing.Imaging.Encoder.Compression", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" }, { "DocsId": "F:System.Drawing.Imaging.Encoder.ColorDepth", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" }, { "DocsId": "F:System.Drawing.Imaging.Encoder.ScanMethod", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" }, { "DocsId": "F:System.Drawing.Imaging.Encoder.Version", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" }, { "DocsId": "F:System.Drawing.Imaging.Encoder.RenderMethod", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" }, { "DocsId": "F:System.Drawing.Imaging.Encoder.Quality", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" }, { "DocsId": "F:System.Drawing.Imaging.Encoder.Transformation", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" }, { "DocsId": "F:System.Drawing.Imaging.Encoder.LuminanceTable", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" }, { "DocsId": "F:System.Drawing.Imaging.Encoder.ChrominanceTable", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" }, { "DocsId": "F:System.Drawing.Imaging.Encoder.SaveFlag", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" }, { "DocsId": "F:System.Drawing.Imaging.Encoder.ColorSpace", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" }, { "DocsId": "F:System.Drawing.Imaging.Encoder.ImageItems", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" }, { "DocsId": "F:System.Drawing.Imaging.Encoder.SaveAsCmyk", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" }, { "DocsId": "P:System.Drawing.Imaging.Encoder.Guid", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs#L43C15-L43C28" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs#L43C15-L43C28" } ], "DocsId": "T:System.Drawing.Imaging.Encoder", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Imaging.EncoderParameterValueType.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameterValueType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameterValueType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderParameterValueType.ValueTypeByte", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameterValueType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameterValueType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderParameterValueType.ValueTypeAscii", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameterValueType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameterValueType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderParameterValueType.ValueTypeShort", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameterValueType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameterValueType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderParameterValueType.ValueTypeLong", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameterValueType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameterValueType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderParameterValueType.ValueTypeRational", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameterValueType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameterValueType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderParameterValueType.ValueTypeLongRange", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameterValueType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameterValueType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderParameterValueType.ValueTypeUndefined", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameterValueType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameterValueType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderParameterValueType.ValueTypeRationalRange", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameterValueType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameterValueType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderParameterValueType.ValueTypePointer", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameterValueType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameterValueType.cs" } ], "DocsId": "T:System.Drawing.Imaging.EncoderParameterValueType", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameterValueType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameterValueType.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Imaging.EncoderValue.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.ColorTypeCMYK", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.ColorTypeYCCK", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.CompressionLZW", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.CompressionCCITT3", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.CompressionCCITT4", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.CompressionRle", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.CompressionNone", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.ScanMethodInterlaced", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.ScanMethodNonInterlaced", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.VersionGif87", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.VersionGif89", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.RenderProgressive", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.RenderNonProgressive", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.TransformRotate90", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.TransformRotate180", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.TransformRotate270", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.TransformFlipHorizontal", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.TransformFlipVertical", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.MultiFrame", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.LastFrame", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.Flush", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.FrameDimensionTime", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.FrameDimensionResolution", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.FrameDimensionPage", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" } ], "DocsId": "T:System.Drawing.Imaging.EncoderValue", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.FrameDimension.#ctor(System.Guid)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/FrameDimension.cs#L18C5-L21C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/FrameDimension.cs#L18C5-L21C6" }, { "DocsId": "M:System.Drawing.Imaging.FrameDimension.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/FrameDimension.cs#L60C9-L63C38" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/FrameDimension.cs#L60C9-L63C38" }, { "DocsId": "M:System.Drawing.Imaging.FrameDimension.GetHashCode", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/FrameDimension.cs#L68C9-L68C36" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/FrameDimension.cs#L68C9-L68C36" }, { "DocsId": "M:System.Drawing.Imaging.FrameDimension.ToString", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/FrameDimension.cs#L76C9-L79C45" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/FrameDimension.cs#L76C9-L79C45" }, { "DocsId": "P:System.Drawing.Imaging.FrameDimension.Guid", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/FrameDimension.cs#L28C15-L28C28" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/FrameDimension.cs#L28C15-L28C28" }, { "DocsId": "P:System.Drawing.Imaging.FrameDimension.Time", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/FrameDimension.cs#L36C15-L36C29" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/FrameDimension.cs#L36C15-L36C29" }, { "DocsId": "P:System.Drawing.Imaging.FrameDimension.Resolution", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/FrameDimension.cs#L44C15-L44C35" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/FrameDimension.cs#L44C15-L44C35" }, { "DocsId": "P:System.Drawing.Imaging.FrameDimension.Page", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/FrameDimension.cs#L52C15-L52C29" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/FrameDimension.cs#L52C15-L52C29" } ], "DocsId": "T:System.Drawing.Imaging.FrameDimension", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/FrameDimension.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/FrameDimension.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Imaging.ImageCodecFlags.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageCodecFlags.Encoder", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageCodecFlags.Decoder", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageCodecFlags.SupportBitmap", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageCodecFlags.SupportVector", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageCodecFlags.SeekableEncode", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageCodecFlags.BlockingDecode", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageCodecFlags.Builtin", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageCodecFlags.System", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageCodecFlags.User", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecFlags.cs" } ], "DocsId": "T:System.Drawing.Imaging.ImageCodecFlags", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecFlags.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Imaging.ImageFlags.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageFlags.None", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageFlags.Scalable", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageFlags.HasAlpha", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageFlags.HasTranslucent", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageFlags.PartiallyScalable", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageFlags.ColorSpaceRgb", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageFlags.ColorSpaceCmyk", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageFlags.ColorSpaceGray", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageFlags.ColorSpaceYcbcr", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageFlags.ColorSpaceYcck", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageFlags.HasRealDpi", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageFlags.HasRealPixelSize", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageFlags.ReadOnly", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageFlags.Caching", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" } ], "DocsId": "T:System.Drawing.Imaging.ImageFlags", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.ImageFormat.#ctor(System.Guid)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L35C5-L38C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L35C5-L38C6" }, { "DocsId": "M:System.Drawing.Imaging.ImageFormat.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L158C9-L161C38" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L158C9-L161C38" }, { "DocsId": "M:System.Drawing.Imaging.ImageFormat.GetHashCode", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L169C9-L169C36" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L169C9-L169C36" }, { "DocsId": "M:System.Drawing.Imaging.ImageFormat.ToString", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L189C9-L201C42" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L189C9-L201C42" }, { "DocsId": "P:System.Drawing.Imaging.ImageFormat.Guid", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L45C15-L45C28" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L45C15-L45C28" }, { "DocsId": "P:System.Drawing.Imaging.ImageFormat.MemoryBmp", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L53C15-L53C34" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L53C15-L53C34" }, { "DocsId": "P:System.Drawing.Imaging.ImageFormat.Bmp", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L61C15-L61C28" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L61C15-L61C28" }, { "DocsId": "P:System.Drawing.Imaging.ImageFormat.Emf", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L69C15-L69C28" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L69C15-L69C28" }, { "DocsId": "P:System.Drawing.Imaging.ImageFormat.Wmf", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L77C15-L77C28" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L77C15-L77C28" }, { "DocsId": "P:System.Drawing.Imaging.ImageFormat.Gif", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L85C15-L85C28" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L85C15-L85C28" }, { "DocsId": "P:System.Drawing.Imaging.ImageFormat.Jpeg", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L93C15-L93C29" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L93C15-L93C29" }, { "DocsId": "P:System.Drawing.Imaging.ImageFormat.Png", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L101C15-L101C28" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L101C15-L101C28" }, { "DocsId": "P:System.Drawing.Imaging.ImageFormat.Tiff", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L109C15-L109C29" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L109C15-L109C29" }, { "DocsId": "P:System.Drawing.Imaging.ImageFormat.Exif", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L117C15-L117C29" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L117C15-L117C29" }, { "DocsId": "P:System.Drawing.Imaging.ImageFormat.Icon", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L125C15-L125C29" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L125C15-L125C29" }, { "DocsId": "P:System.Drawing.Imaging.ImageFormat.Heif", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L137C15-L137C29" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L137C15-L137C29" }, { "DocsId": "P:System.Drawing.Imaging.ImageFormat.Webp", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L149C15-L149C29" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L149C15-L149C29" } ], "DocsId": "T:System.Drawing.Imaging.ImageFormat", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Imaging.ImageLockMode.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageLockMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageLockMode.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageLockMode.ReadOnly", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageLockMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageLockMode.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageLockMode.WriteOnly", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageLockMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageLockMode.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageLockMode.ReadWrite", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageLockMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageLockMode.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageLockMode.UserInputBuffer", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageLockMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageLockMode.cs" } ], "DocsId": "T:System.Drawing.Imaging.ImageLockMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageLockMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageLockMode.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Imaging.MetafileType.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileType.cs" }, { "DocsId": "F:System.Drawing.Imaging.MetafileType.Invalid", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileType.cs" }, { "DocsId": "F:System.Drawing.Imaging.MetafileType.Wmf", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileType.cs" }, { "DocsId": "F:System.Drawing.Imaging.MetafileType.WmfPlaceable", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileType.cs" }, { "DocsId": "F:System.Drawing.Imaging.MetafileType.Emf", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileType.cs" }, { "DocsId": "F:System.Drawing.Imaging.MetafileType.EmfPlusOnly", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileType.cs" }, { "DocsId": "F:System.Drawing.Imaging.MetafileType.EmfPlusDual", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileType.cs" } ], "DocsId": "T:System.Drawing.Imaging.MetafileType", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileType.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Imaging.PaletteFlags.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/PaletteFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/PaletteFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.PaletteFlags.HasAlpha", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/PaletteFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/PaletteFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.PaletteFlags.GrayScale", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/PaletteFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/PaletteFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.PaletteFlags.Halftone", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/PaletteFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/PaletteFlags.cs" } ], "DocsId": "T:System.Drawing.Imaging.PaletteFlags", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/PaletteFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/PaletteFlags.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Imaging.PixelFormat.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "DocsId": "F:System.Drawing.Imaging.PixelFormat.Indexed", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "DocsId": "F:System.Drawing.Imaging.PixelFormat.Gdi", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "DocsId": "F:System.Drawing.Imaging.PixelFormat.Alpha", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "DocsId": "F:System.Drawing.Imaging.PixelFormat.PAlpha", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "DocsId": "F:System.Drawing.Imaging.PixelFormat.Extended", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "DocsId": "F:System.Drawing.Imaging.PixelFormat.Canonical", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "DocsId": "F:System.Drawing.Imaging.PixelFormat.Undefined", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "DocsId": "F:System.Drawing.Imaging.PixelFormat.DontCare", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "DocsId": "F:System.Drawing.Imaging.PixelFormat.Format1bppIndexed", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "DocsId": "F:System.Drawing.Imaging.PixelFormat.Format4bppIndexed", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "DocsId": "F:System.Drawing.Imaging.PixelFormat.Format8bppIndexed", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "DocsId": "F:System.Drawing.Imaging.PixelFormat.Format16bppGrayScale", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "DocsId": "F:System.Drawing.Imaging.PixelFormat.Format16bppRgb555", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "DocsId": "F:System.Drawing.Imaging.PixelFormat.Format16bppRgb565", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "DocsId": "F:System.Drawing.Imaging.PixelFormat.Format16bppArgb1555", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "DocsId": "F:System.Drawing.Imaging.PixelFormat.Format24bppRgb", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "DocsId": "F:System.Drawing.Imaging.PixelFormat.Format32bppRgb", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "DocsId": "F:System.Drawing.Imaging.PixelFormat.Format32bppArgb", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "DocsId": "F:System.Drawing.Imaging.PixelFormat.Format32bppPArgb", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "DocsId": "F:System.Drawing.Imaging.PixelFormat.Format48bppRgb", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "DocsId": "F:System.Drawing.Imaging.PixelFormat.Format64bppArgb", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "DocsId": "F:System.Drawing.Imaging.PixelFormat.Format64bppPArgb", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "DocsId": "F:System.Drawing.Imaging.PixelFormat.Max", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" } ], "DocsId": "T:System.Drawing.Imaging.PixelFormat", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.PlayRecordCallback.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/PlayRecordCallback.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/PlayRecordCallback.cs" }, { "DocsId": "M:System.Drawing.Imaging.PlayRecordCallback.Invoke(System.Drawing.Imaging.EmfPlusRecordType,System.Int32,System.Int32,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/PlayRecordCallback.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/PlayRecordCallback.cs" }, { "DocsId": "M:System.Drawing.Imaging.PlayRecordCallback.BeginInvoke(System.Drawing.Imaging.EmfPlusRecordType,System.Int32,System.Int32,System.IntPtr,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/PlayRecordCallback.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/PlayRecordCallback.cs" }, { "DocsId": "M:System.Drawing.Imaging.PlayRecordCallback.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/PlayRecordCallback.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/PlayRecordCallback.cs" } ], "DocsId": "T:System.Drawing.Imaging.PlayRecordCallback", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/PlayRecordCallback.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/PlayRecordCallback.cs" }, { "Members": [ { "DocsId": "P:System.Drawing.Imaging.PropertyItem.Id", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/PropertyItem.cs#L19C21-L19C25" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/PropertyItem.cs#L19C21-L19C25" }, { "DocsId": "P:System.Drawing.Imaging.PropertyItem.Len", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/PropertyItem.cs#L24C22-L24C26" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/PropertyItem.cs#L24C22-L24C26" }, { "DocsId": "P:System.Drawing.Imaging.PropertyItem.Type", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/PropertyItem.cs#L29C25-L29C29" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/PropertyItem.cs#L29C25-L29C29" }, { "DocsId": "P:System.Drawing.Imaging.PropertyItem.Value", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/PropertyItem.cs#L34C28-L34C32" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/PropertyItem.cs#L34C28-L34C32" } ], "DocsId": "T:System.Drawing.Imaging.PropertyItem", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/PropertyItem.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/PropertyItem.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.WmfPlaceableFileHeader.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/WmfPlaceableFileHeader.cs#L18C5-L18C51" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/WmfPlaceableFileHeader.cs#L18C5-L18C51" }, { "DocsId": "P:System.Drawing.Imaging.WmfPlaceableFileHeader.Key", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/WmfPlaceableFileHeader.cs#L33C15-L33C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/WmfPlaceableFileHeader.cs#L33C15-L33C27" }, { "DocsId": "P:System.Drawing.Imaging.WmfPlaceableFileHeader.Hmf", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/WmfPlaceableFileHeader.cs#L42C15-L42C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/WmfPlaceableFileHeader.cs#L42C15-L42C27" }, { "DocsId": "P:System.Drawing.Imaging.WmfPlaceableFileHeader.BboxLeft", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/WmfPlaceableFileHeader.cs#L51C15-L51C32" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/WmfPlaceableFileHeader.cs#L51C15-L51C32" }, { "DocsId": "P:System.Drawing.Imaging.WmfPlaceableFileHeader.BboxTop", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/WmfPlaceableFileHeader.cs#L60C15-L60C31" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/WmfPlaceableFileHeader.cs#L60C15-L60C31" }, { "DocsId": "P:System.Drawing.Imaging.WmfPlaceableFileHeader.BboxRight", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/WmfPlaceableFileHeader.cs#L69C15-L69C33" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/WmfPlaceableFileHeader.cs#L69C15-L69C33" }, { "DocsId": "P:System.Drawing.Imaging.WmfPlaceableFileHeader.BboxBottom", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/WmfPlaceableFileHeader.cs#L78C15-L78C34" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/WmfPlaceableFileHeader.cs#L78C15-L78C34" }, { "DocsId": "P:System.Drawing.Imaging.WmfPlaceableFileHeader.Inch", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/WmfPlaceableFileHeader.cs#L87C15-L87C28" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/WmfPlaceableFileHeader.cs#L87C15-L87C28" }, { "DocsId": "P:System.Drawing.Imaging.WmfPlaceableFileHeader.Reserved", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/WmfPlaceableFileHeader.cs#L96C15-L96C32" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/WmfPlaceableFileHeader.cs#L96C15-L96C32" }, { "DocsId": "P:System.Drawing.Imaging.WmfPlaceableFileHeader.Checksum", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/WmfPlaceableFileHeader.cs#L105C15-L105C32" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/WmfPlaceableFileHeader.cs#L105C15-L105C32" } ], "DocsId": "T:System.Drawing.Imaging.WmfPlaceableFileHeader", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/WmfPlaceableFileHeader.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/WmfPlaceableFileHeader.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.BitmapData.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/BitmapData.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/BitmapData.cs" }, { "DocsId": "P:System.Drawing.Imaging.BitmapData.Width", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/BitmapData.cs#L30C15-L30C29" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/BitmapData.cs#L30C15-L30C29" }, { "DocsId": "P:System.Drawing.Imaging.BitmapData.Height", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/BitmapData.cs#L39C15-L39C30" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/BitmapData.cs#L39C15-L39C30" }, { "DocsId": "P:System.Drawing.Imaging.BitmapData.Stride", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/BitmapData.cs#L48C15-L48C30" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/BitmapData.cs#L48C15-L48C30" }, { "DocsId": "P:System.Drawing.Imaging.BitmapData.PixelFormat", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/BitmapData.cs#L57C15-L57C35" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/BitmapData.cs#L57C15-L57C35" }, { "DocsId": "P:System.Drawing.Imaging.BitmapData.Scan0", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/BitmapData.cs#L99C15-L99C29" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/BitmapData.cs#L99C15-L99C29" }, { "DocsId": "P:System.Drawing.Imaging.BitmapData.Reserved", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/BitmapData.cs#L108C15-L108C32" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/BitmapData.cs#L108C15-L108C32" } ], "DocsId": "T:System.Drawing.Imaging.BitmapData", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/BitmapData.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/BitmapData.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.ColorMatrix.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L47C5-L78C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L47C5-L78C6" }, { "DocsId": "M:System.Drawing.Imaging.ColorMatrix.#ctor(System.Single[][])", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L309C5-L312C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L309C5-L312C6" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix00", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L85C15-L85C32" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L85C15-L85C32" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix01", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L93C15-L93C32" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L93C15-L93C32" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix02", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L102C15-L102C32" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L102C15-L102C32" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix03", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L111C15-L111C32" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L111C15-L111C32" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix04", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L120C15-L120C32" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L120C15-L120C32" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix10", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L129C15-L129C32" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L129C15-L129C32" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix11", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L138C15-L138C32" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L138C15-L138C32" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix12", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L147C15-L147C32" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L147C15-L147C32" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix13", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L156C15-L156C32" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L156C15-L156C32" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix14", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L165C15-L165C32" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L165C15-L165C32" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix20", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L174C15-L174C32" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L174C15-L174C32" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix21", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L183C15-L183C32" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L183C15-L183C32" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix22", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L192C15-L192C32" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L192C15-L192C32" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix23", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L201C15-L201C32" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L201C15-L201C32" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix24", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L210C15-L210C32" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L210C15-L210C32" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix30", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L219C15-L219C32" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L219C15-L219C32" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix31", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L228C15-L228C32" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L228C15-L228C32" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix32", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L237C15-L237C32" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L237C15-L237C32" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix33", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L246C15-L246C32" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L246C15-L246C32" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix34", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L255C15-L255C32" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L255C15-L255C32" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix40", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L264C15-L264C32" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L264C15-L264C32" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix41", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L273C15-L273C32" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L273C15-L273C32" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix42", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L282C15-L282C32" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L282C15-L282C32" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix43", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L291C15-L291C32" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L291C15-L291C32" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix44", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L300C15-L300C32" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L300C15-L300C32" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Item(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L386C13-L386C45" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L386C13-L386C45" } ], "DocsId": "T:System.Drawing.Imaging.ColorMatrix", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs" }, { "Members": [ { "DocsId": "P:System.Drawing.Imaging.ColorPalette.Flags", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorPalette.cs#L28C13-L28C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorPalette.cs#L28C13-L28C27" }, { "DocsId": "P:System.Drawing.Imaging.ColorPalette.Entries", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorPalette.cs#L39C13-L39C29" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorPalette.cs#L39C13-L39C29" } ], "DocsId": "T:System.Drawing.Imaging.ColorPalette", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorPalette.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorPalette.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.EncoderParameter.Dispose", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L51C9-L54C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L51C9-L54C6" }, { "DocsId": "M:System.Drawing.Imaging.EncoderParameter.Finalize", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L66C28-L66C53" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L66C28-L16707566C0" }, { "DocsId": "M:System.Drawing.Imaging.EncoderParameter.#ctor(System.Drawing.Imaging.Encoder,System.Byte)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L68C5-L78C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L68C5-L78C6" }, { "DocsId": "M:System.Drawing.Imaging.EncoderParameter.#ctor(System.Drawing.Imaging.Encoder,System.Byte,System.Boolean)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L80C5-L93C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L80C5-L93C6" }, { "DocsId": "M:System.Drawing.Imaging.EncoderParameter.#ctor(System.Drawing.Imaging.Encoder,System.Int16)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L95C5-L105C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L95C5-L105C6" }, { "DocsId": "M:System.Drawing.Imaging.EncoderParameter.#ctor(System.Drawing.Imaging.Encoder,System.Int64)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L107C5-L117C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L107C5-L117C6" }, { "DocsId": "M:System.Drawing.Imaging.EncoderParameter.#ctor(System.Drawing.Imaging.Encoder,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L119C5-L130C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L119C5-L130C6" }, { "DocsId": "M:System.Drawing.Imaging.EncoderParameter.#ctor(System.Drawing.Imaging.Encoder,System.Int64,System.Int64)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L132C5-L143C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L132C5-L143C6" }, { "DocsId": "M:System.Drawing.Imaging.EncoderParameter.#ctor(System.Drawing.Imaging.Encoder,System.Int32,System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L145C5-L163C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L145C5-L163C6" }, { "DocsId": "M:System.Drawing.Imaging.EncoderParameter.#ctor(System.Drawing.Imaging.Encoder,System.String)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L165C5-L173C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L165C5-L173C6" }, { "DocsId": "M:System.Drawing.Imaging.EncoderParameter.#ctor(System.Drawing.Imaging.Encoder,System.Byte[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L175C5-L186C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L175C5-L186C6" }, { "DocsId": "M:System.Drawing.Imaging.EncoderParameter.#ctor(System.Drawing.Imaging.Encoder,System.Byte[],System.Boolean)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L188C5-L199C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L188C5-L199C6" }, { "DocsId": "M:System.Drawing.Imaging.EncoderParameter.#ctor(System.Drawing.Imaging.Encoder,System.Int16[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L201C5-L211C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L201C5-L211C6" }, { "DocsId": "M:System.Drawing.Imaging.EncoderParameter.#ctor(System.Drawing.Imaging.Encoder,System.Int64[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L213C5-L230C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L213C5-L230C6" }, { "DocsId": "M:System.Drawing.Imaging.EncoderParameter.#ctor(System.Drawing.Imaging.Encoder,System.Int32[],System.Int32[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L232C5-L249C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L232C5-L249C6" }, { "DocsId": "M:System.Drawing.Imaging.EncoderParameter.#ctor(System.Drawing.Imaging.Encoder,System.Int64[],System.Int64[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L251C5-L268C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L251C5-L268C6" }, { "DocsId": "M:System.Drawing.Imaging.EncoderParameter.#ctor(System.Drawing.Imaging.Encoder,System.Int32[],System.Int32[],System.Int32[],System.Int32[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L270C5-L296C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L270C5-L296C6" }, { "DocsId": "M:System.Drawing.Imaging.EncoderParameter.#ctor(System.Drawing.Imaging.Encoder,System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L299C5-L322C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L299C5-L322C6" }, { "DocsId": "M:System.Drawing.Imaging.EncoderParameter.#ctor(System.Drawing.Imaging.Encoder,System.Int32,System.Drawing.Imaging.EncoderParameterValueType,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L324C5-L348C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L324C5-L348C6" }, { "DocsId": "P:System.Drawing.Imaging.EncoderParameter.Encoder", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L30C16-L30C35" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L30C16-L30C35" }, { "DocsId": "P:System.Drawing.Imaging.EncoderParameter.Type", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L37C46-L37C65" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L37C46-L37C65" }, { "DocsId": "P:System.Drawing.Imaging.EncoderParameter.ValueType", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L42C51-L42C70" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L42C51-L42C70" }, { "DocsId": "P:System.Drawing.Imaging.EncoderParameter.NumberOfValues", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L47C34-L47C49" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L47C34-L47C49" } ], "DocsId": "T:System.Drawing.Imaging.EncoderParameter", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.EncoderParameters.#ctor(System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameters.cs#L11C5-L11C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameters.cs#L11C5-L11C79" }, { "DocsId": "M:System.Drawing.Imaging.EncoderParameters.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameters.cs#L13C5-L13C66" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameters.cs#L13C5-L13C66" }, { "DocsId": "M:System.Drawing.Imaging.EncoderParameters.Dispose", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameters.cs#L58C40-L64C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameters.cs#L58C40-L64C6" }, { "DocsId": "P:System.Drawing.Imaging.EncoderParameters.Param", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameters.cs#L15C39-L15C43" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameters.cs#L15C39-L15C43" } ], "DocsId": "T:System.Drawing.Imaging.EncoderParameters", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameters.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameters.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L55C5-L65C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L55C5-L65C6" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.Dispose", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L77C9-L79C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L77C9-L79C6" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.Finalize", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L123C9-L124C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L123C9-L124C6" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.Clone", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L133C9-L140C43" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L133C9-L140C43" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetColorMatrix(System.Drawing.Imaging.ColorMatrix)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L148C9-L149C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L148C9-L149C6" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetColorMatrix(System.Drawing.Imaging.ColorMatrix,System.Drawing.Imaging.ColorMatrixFlag)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L156C9-L157C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L156C9-L157C6" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetColorMatrix(System.Drawing.Imaging.ColorMatrix,System.Drawing.Imaging.ColorMatrixFlag,System.Drawing.Imaging.ColorAdjustType)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L164C9-L174C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L164C9-L174C6" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.ClearColorMatrix", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L181C9-L182C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L181C9-L182C6" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.ClearColorMatrix(System.Drawing.Imaging.ColorAdjustType)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L189C9-L199C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L189C9-L199C6" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetColorMatrices(System.Drawing.Imaging.ColorMatrix,System.Drawing.Imaging.ColorMatrix)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L206C9-L207C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L206C9-L207C6" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetColorMatrices(System.Drawing.Imaging.ColorMatrix,System.Drawing.Imaging.ColorMatrix,System.Drawing.Imaging.ColorMatrixFlag)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L211C9-L212C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L211C9-L212C6" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetColorMatrices(System.Drawing.Imaging.ColorMatrix,System.Drawing.Imaging.ColorMatrix,System.Drawing.Imaging.ColorMatrixFlag,System.Drawing.Imaging.ColorAdjustType)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L217C9-L227C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L217C9-L227C6" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetThreshold(System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L231C9-L232C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L231C9-L232C6" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetThreshold(System.Single,System.Drawing.Imaging.ColorAdjustType)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L236C9-L244C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L236C9-L244C6" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.ClearThreshold", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L248C9-L249C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L248C9-L249C6" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.ClearThreshold(System.Drawing.Imaging.ColorAdjustType)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L253C9-L261C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L253C9-L261C6" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetGamma(System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L265C9-L266C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L265C9-L266C6" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetGamma(System.Single,System.Drawing.Imaging.ColorAdjustType)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L270C9-L278C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L270C9-L278C6" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.ClearGamma", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L282C9-L283C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L282C9-L283C6" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.ClearGamma(System.Drawing.Imaging.ColorAdjustType)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L287C9-L295C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L287C9-L295C6" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetNoOp", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L299C9-L300C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L299C9-L300C6" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetNoOp(System.Drawing.Imaging.ColorAdjustType)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L304C9-L311C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L304C9-L311C6" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.ClearNoOp", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L315C9-L316C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L315C9-L316C6" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.ClearNoOp(System.Drawing.Imaging.ColorAdjustType)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L320C9-L327C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L320C9-L327C6" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetColorKey(System.Drawing.Color,System.Drawing.Color)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L331C9-L332C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L331C9-L332C6" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetColorKey(System.Drawing.Color,System.Drawing.Color,System.Drawing.Imaging.ColorAdjustType)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L336C9-L348C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L336C9-L348C6" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.ClearColorKey", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L352C9-L353C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L352C9-L353C6" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.ClearColorKey(System.Drawing.Imaging.ColorAdjustType)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L357C9-L367C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L357C9-L367C6" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetOutputChannel(System.Drawing.Imaging.ColorChannelFlag)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L371C9-L372C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L371C9-L372C6" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetOutputChannel(System.Drawing.Imaging.ColorChannelFlag,System.Drawing.Imaging.ColorAdjustType)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L376C9-L384C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L376C9-L384C6" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.ClearOutputChannel", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L388C9-L389C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L388C9-L389C6" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.ClearOutputChannel(System.Drawing.Imaging.ColorAdjustType)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L393C9-L401C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L393C9-L401C6" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetOutputChannelColorProfile(System.String)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L405C9-L406C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L405C9-L406C6" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetOutputChannelColorProfile(System.String,System.Drawing.Imaging.ColorAdjustType)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L412C9-L422C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L412C9-L422C6" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.ClearOutputChannelColorProfile", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L426C9-L427C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L426C9-L427C6" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.ClearOutputChannelColorProfile(System.Drawing.Imaging.ColorAdjustType)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L431C9-L439C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L431C9-L439C6" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetRemapTable(System.Drawing.Imaging.ColorMap[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L443C9-L444C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L443C9-L444C6" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetRemapTable(System.Drawing.Imaging.ColorMap[],System.Drawing.Imaging.ColorAdjustType)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L449C9-L473C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L449C9-L473C6" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.ClearRemapTable", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L477C9-L478C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L477C9-L478C6" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.ClearRemapTable(System.Drawing.Imaging.ColorAdjustType)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L482C9-L488C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L482C9-L488C6" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetBrushRemapTable(System.Drawing.Imaging.ColorMap[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L492C9-L493C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L492C9-L493C6" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.ClearBrushRemapTable", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L497C9-L498C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L497C9-L498C6" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetWrapMode(System.Drawing.Drawing2D.WrapMode)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L502C9-L503C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L502C9-L503C6" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetWrapMode(System.Drawing.Drawing2D.WrapMode,System.Drawing.Color)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L507C9-L508C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L507C9-L508C6" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetWrapMode(System.Drawing.Drawing2D.WrapMode,System.Drawing.Color,System.Boolean)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L512C9-L520C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L512C9-L520C6" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.GetAdjustedPalette(System.Drawing.Imaging.ColorPalette,System.Drawing.Imaging.ColorAdjustType)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L525C9-L541C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L525C9-L541C6" } ], "DocsId": "T:System.Drawing.Imaging.ImageAttributes", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.ImageCodecInfo.GetImageDecoders", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L110C9-L135C28" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L110C9-L135C28" }, { "DocsId": "M:System.Drawing.Imaging.ImageCodecInfo.GetImageEncoders", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L144C9-L169C28" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L144C9-L169C28" }, { "DocsId": "P:System.Drawing.Imaging.ImageCodecInfo.Clsid", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L30C15-L30C29" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L30C15-L30C29" }, { "DocsId": "P:System.Drawing.Imaging.ImageCodecInfo.FormatID", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L36C15-L36C32" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L36C15-L36C32" }, { "DocsId": "P:System.Drawing.Imaging.ImageCodecInfo.CodecName", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L42C15-L42C33" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L42C15-L42C33" }, { "DocsId": "P:System.Drawing.Imaging.ImageCodecInfo.DllName", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L50C13-L50C29" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L50C13-L50C29" }, { "DocsId": "P:System.Drawing.Imaging.ImageCodecInfo.FormatDescription", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L60C15-L60C41" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L60C15-L60C41" }, { "DocsId": "P:System.Drawing.Imaging.ImageCodecInfo.FilenameExtension", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L66C15-L66C41" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L66C15-L66C41" }, { "DocsId": "P:System.Drawing.Imaging.ImageCodecInfo.MimeType", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L72C15-L72C32" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L72C15-L72C32" }, { "DocsId": "P:System.Drawing.Imaging.ImageCodecInfo.Flags", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L78C15-L78C29" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L78C15-L78C29" }, { "DocsId": "P:System.Drawing.Imaging.ImageCodecInfo.Version", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L84C15-L84C31" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L84C15-L84C31" }, { "DocsId": "P:System.Drawing.Imaging.ImageCodecInfo.SignaturePatterns", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L91C15-L91C41" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L91C15-L91C41" }, { "DocsId": "P:System.Drawing.Imaging.ImageCodecInfo.SignatureMasks", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L98C15-L98C38" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L98C15-L98C38" } ], "DocsId": "T:System.Drawing.Imaging.ImageCodecInfo", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Imaging.MetafileFrameUnit.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileFrameUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileFrameUnit.cs" }, { "DocsId": "F:System.Drawing.Imaging.MetafileFrameUnit.Pixel", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileFrameUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileFrameUnit.cs" }, { "DocsId": "F:System.Drawing.Imaging.MetafileFrameUnit.Point", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileFrameUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileFrameUnit.cs" }, { "DocsId": "F:System.Drawing.Imaging.MetafileFrameUnit.Inch", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileFrameUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileFrameUnit.cs" }, { "DocsId": "F:System.Drawing.Imaging.MetafileFrameUnit.Document", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileFrameUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileFrameUnit.cs" }, { "DocsId": "F:System.Drawing.Imaging.MetafileFrameUnit.Millimeter", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileFrameUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileFrameUnit.cs" }, { "DocsId": "F:System.Drawing.Imaging.MetafileFrameUnit.GdiCompatible", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileFrameUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileFrameUnit.cs" } ], "DocsId": "T:System.Drawing.Imaging.MetafileFrameUnit", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileFrameUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileFrameUnit.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.MetafileHeader.IsWmf", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L96C9-L104C26" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L96C9-L104C26" }, { "DocsId": "M:System.Drawing.Imaging.MetafileHeader.IsWmfPlaceable", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L112C9-L115C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L112C9-L115C75" }, { "DocsId": "M:System.Drawing.Imaging.MetafileHeader.IsEmf", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L123C9-L126C66" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L123C9-L126C66" }, { "DocsId": "M:System.Drawing.Imaging.MetafileHeader.IsEmfOrEmfPlus", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L135C9-L138C66" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L135C9-L138C66" }, { "DocsId": "M:System.Drawing.Imaging.MetafileHeader.IsEmfPlus", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L147C9-L150C74" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L147C9-L150C74" }, { "DocsId": "M:System.Drawing.Imaging.MetafileHeader.IsEmfPlusDual", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L159C9-L162C74" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L159C9-L162C74" }, { "DocsId": "M:System.Drawing.Imaging.MetafileHeader.IsEmfPlusOnly", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L171C9-L174C74" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L171C9-L174C74" }, { "DocsId": "M:System.Drawing.Imaging.MetafileHeader.IsDisplay", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L182C9-L183C87" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L182C9-L183C87" }, { "DocsId": "P:System.Drawing.Imaging.MetafileHeader.Type", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L30C13-L30C52" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L30C13-L30C52" }, { "DocsId": "P:System.Drawing.Imaging.MetafileHeader.MetafileSize", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L41C13-L41C52" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L41C13-L41C52" }, { "DocsId": "P:System.Drawing.Imaging.MetafileHeader.Version", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L52C13-L52C58" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L52C13-L52C58" }, { "DocsId": "P:System.Drawing.Imaging.MetafileHeader.DpiX", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L63C13-L63C52" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L63C13-L63C52" }, { "DocsId": "P:System.Drawing.Imaging.MetafileHeader.DpiY", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L74C13-L74C52" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L74C13-L74C52" }, { "DocsId": "P:System.Drawing.Imaging.MetafileHeader.Bounds", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L85C13-L87C69" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L85C13-L87C69" }, { "DocsId": "P:System.Drawing.Imaging.MetafileHeader.WmfHeader", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L193C13-L196C34" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L193C13-L196C34" }, { "DocsId": "P:System.Drawing.Imaging.MetafileHeader.EmfPlusHeaderSize", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L207C13-L210C78" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L207C13-L210C78" }, { "DocsId": "P:System.Drawing.Imaging.MetafileHeader.LogicalDpiX", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L221C13-L224C66" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L221C13-L224C66" }, { "DocsId": "P:System.Drawing.Imaging.MetafileHeader.LogicalDpiY", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L235C13-L238C66" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L235C13-L238C66" } ], "DocsId": "T:System.Drawing.Imaging.MetafileHeader", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.MetaHeader.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/MetaHeader.cs#L17C5-L19C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/MetaHeader.cs#L17C5-L19C6" }, { "DocsId": "P:System.Drawing.Imaging.MetaHeader.Type", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/MetaHeader.cs#L37C15-L37C34" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/MetaHeader.cs#L37C15-L37C34" }, { "DocsId": "P:System.Drawing.Imaging.MetaHeader.HeaderSize", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/MetaHeader.cs#L46C15-L46C40" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/MetaHeader.cs#L46C15-L46C40" }, { "DocsId": "P:System.Drawing.Imaging.MetaHeader.Version", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/MetaHeader.cs#L55C15-L55C37" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/MetaHeader.cs#L55C15-L55C37" }, { "DocsId": "P:System.Drawing.Imaging.MetaHeader.Size", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/MetaHeader.cs#L64C15-L64C34" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/MetaHeader.cs#L64C15-L64C34" }, { "DocsId": "P:System.Drawing.Imaging.MetaHeader.NoObjects", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/MetaHeader.cs#L70C15-L70C39" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/MetaHeader.cs#L70C15-L70C39" }, { "DocsId": "P:System.Drawing.Imaging.MetaHeader.MaxRecord", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/MetaHeader.cs#L76C15-L76C39" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/MetaHeader.cs#L76C15-L76C39" }, { "DocsId": "P:System.Drawing.Imaging.MetaHeader.NoParameters", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/MetaHeader.cs#L82C15-L82C42" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/MetaHeader.cs#L82C15-L82C42" } ], "DocsId": "T:System.Drawing.Imaging.MetaHeader", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Imaging/MetaHeader.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Imaging/MetaHeader.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Graphics.DrawImageAbort.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" }, { "DocsId": "M:System.Drawing.Graphics.DrawImageAbort.Invoke(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" }, { "DocsId": "M:System.Drawing.Graphics.DrawImageAbort.BeginInvoke(System.IntPtr,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" }, { "DocsId": "M:System.Drawing.Graphics.DrawImageAbort.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" } ], "DocsId": "T:System.Drawing.Graphics.DrawImageAbort", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafileProc.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafileProc.Invoke(System.Drawing.Imaging.EmfPlusRecordType,System.Int32,System.Int32,System.IntPtr,System.Drawing.Imaging.PlayRecordCallback)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafileProc.BeginInvoke(System.Drawing.Imaging.EmfPlusRecordType,System.Int32,System.Int32,System.IntPtr,System.Drawing.Imaging.PlayRecordCallback,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafileProc.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" } ], "DocsId": "T:System.Drawing.Graphics.EnumerateMetafileProc", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Image.GetThumbnailImageAbort.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Image.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Image.cs" }, { "DocsId": "M:System.Drawing.Image.GetThumbnailImageAbort.Invoke", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Image.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Image.cs" }, { "DocsId": "M:System.Drawing.Image.GetThumbnailImageAbort.BeginInvoke(System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Image.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Image.cs" }, { "DocsId": "M:System.Drawing.Image.GetThumbnailImageAbort.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Image.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Image.cs" } ], "DocsId": "T:System.Drawing.Image.GetThumbnailImageAbort", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Image.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Image.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.FontConverter.FontNameConverter.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L424C9-L427C10" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L424C9-L427C10" }, { "DocsId": "M:System.Drawing.FontConverter.FontNameConverter.System#IDisposable#Dispose", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L431C9-L431C10" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L431C9-L431C10" }, { "DocsId": "M:System.Drawing.FontConverter.FontNameConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L435C13-L435C99" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L435C13-L435C99" }, { "DocsId": "M:System.Drawing.FontConverter.FontNameConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L440C13-L440C124" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L440C13-L440C124" }, { "DocsId": "M:System.Drawing.FontConverter.FontNameConverter.GetStandardValues(System.ComponentModel.ITypeDescriptorContext)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L445C13-L452C71" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L445C13-L452C71" }, { "DocsId": "M:System.Drawing.FontConverter.FontNameConverter.GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L456C93-L456C98" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L456C93-L456C98" }, { "DocsId": "M:System.Drawing.FontConverter.FontNameConverter.GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L459C93-L459C97" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L459C93-L459C97" } ], "DocsId": "T:System.Drawing.FontConverter.FontNameConverter", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.FontConverter.FontUnitConverter.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L491C38-L491C68" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L491C38-L491C68" }, { "DocsId": "M:System.Drawing.FontConverter.FontUnitConverter.GetStandardValues(System.ComponentModel.ITypeDescriptorContext)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L496C13-L504C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L496C13-L504C27" } ], "DocsId": "T:System.Drawing.FontConverter.FontUnitConverter", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PaperSizeCollection.#ctor(System.Drawing.Printing.PaperSize[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1255C9-L1258C10" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1255C9-L1258C10" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PaperSizeCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1284C13-L1284C55" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1284C13-L1284C55" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PaperSizeCollection.System#Collections#ICollection#get_Count", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1291C17-L1291C30" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1291C17-L1291C30" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PaperSizeCollection.System#Collections#ICollection#get_IsSynchronized", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1300C17-L1300C30" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1300C17-L1300C30" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PaperSizeCollection.System#Collections#ICollection#get_SyncRoot", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1308C17-L1308C29" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1308C17-L1308C29" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PaperSizeCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1314C13-L1315C10" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1314C13-L1315C10" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PaperSizeCollection.CopyTo(System.Drawing.Printing.PaperSize[],System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1319C13-L1320C10" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1319C13-L1320C10" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PaperSizeCollection.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1324C13-L1324C36" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1324C13-L1324C36" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PaperSizeCollection.Add(System.Drawing.Printing.PaperSize)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1332C13-L1336C26" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1332C13-L1336C26" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.PaperSizeCollection.Count", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1267C17-L1267C38" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1267C17-L1267C38" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.PaperSizeCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1278C17-L1278C38" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1278C17-L1278C38" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.PaperSizeCollection.System#Collections#ICollection#Count", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1291C17-L1291C30" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1291C17-L1291C30" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.PaperSizeCollection.System#Collections#ICollection#IsSynchronized", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1300C17-L1300C30" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1300C17-L1300C30" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.PaperSizeCollection.System#Collections#ICollection#SyncRoot", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1308C17-L1308C29" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1308C17-L1308C29" } ], "DocsId": "T:System.Drawing.Printing.PrinterSettings.PaperSizeCollection", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PaperSourceCollection.#ctor(System.Drawing.Printing.PaperSource[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1347C9-L1350C10" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1347C9-L1350C10" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PaperSourceCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1376C13-L1376C55" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1376C13-L1376C55" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PaperSourceCollection.System#Collections#ICollection#get_Count", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1383C17-L1383C30" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1383C17-L1383C30" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PaperSourceCollection.System#Collections#ICollection#get_IsSynchronized", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1392C17-L1392C30" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1392C17-L1392C30" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PaperSourceCollection.System#Collections#ICollection#get_SyncRoot", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1400C17-L1400C29" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1400C17-L1400C29" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PaperSourceCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1406C13-L1407C10" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1406C13-L1407C10" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PaperSourceCollection.CopyTo(System.Drawing.Printing.PaperSource[],System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1411C13-L1412C10" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1411C13-L1412C10" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PaperSourceCollection.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1416C13-L1416C36" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1416C13-L1416C36" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PaperSourceCollection.Add(System.Drawing.Printing.PaperSource)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1422C13-L1426C26" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1422C13-L1426C26" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.PaperSourceCollection.Count", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1359C17-L1359C38" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1359C17-L1359C38" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.PaperSourceCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1370C17-L1370C38" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1370C17-L1370C38" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.PaperSourceCollection.System#Collections#ICollection#Count", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1383C17-L1383C30" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1383C17-L1383C30" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.PaperSourceCollection.System#Collections#ICollection#IsSynchronized", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1392C17-L1392C30" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1392C17-L1392C30" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.PaperSourceCollection.System#Collections#ICollection#SyncRoot", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1400C17-L1400C29" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1400C17-L1400C29" } ], "DocsId": "T:System.Drawing.Printing.PrinterSettings.PaperSourceCollection", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PrinterResolutionCollection.#ctor(System.Drawing.Printing.PrinterResolution[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1437C9-L1440C10" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1437C9-L1440C10" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PrinterResolutionCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1466C13-L1466C55" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1466C13-L1466C55" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PrinterResolutionCollection.System#Collections#ICollection#get_Count", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1473C17-L1473C30" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1473C17-L1473C30" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PrinterResolutionCollection.System#Collections#ICollection#get_IsSynchronized", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1481C17-L1481C30" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1481C17-L1481C30" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PrinterResolutionCollection.System#Collections#ICollection#get_SyncRoot", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1489C17-L1489C29" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1489C17-L1489C29" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PrinterResolutionCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1495C13-L1496C10" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1495C13-L1496C10" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PrinterResolutionCollection.CopyTo(System.Drawing.Printing.PrinterResolution[],System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1500C13-L1501C10" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1500C13-L1501C10" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PrinterResolutionCollection.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1505C13-L1505C36" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1505C13-L1505C36" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PrinterResolutionCollection.Add(System.Drawing.Printing.PrinterResolution)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1511C13-L1515C26" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1511C13-L1515C26" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.PrinterResolutionCollection.Count", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1449C17-L1449C38" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1449C17-L1449C38" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.PrinterResolutionCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1460C17-L1460C38" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1460C17-L1460C38" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.PrinterResolutionCollection.System#Collections#ICollection#Count", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1473C17-L1473C30" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1473C17-L1473C30" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.PrinterResolutionCollection.System#Collections#ICollection#IsSynchronized", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1481C17-L1481C30" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1481C17-L1481C30" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.PrinterResolutionCollection.System#Collections#ICollection#SyncRoot", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1489C17-L1489C29" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1489C17-L1489C29" } ], "DocsId": "T:System.Drawing.Printing.PrinterSettings.PrinterResolutionCollection", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.PrinterSettings.StringCollection.#ctor(System.String[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1526C9-L1529C10" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1526C9-L1529C10" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.StringCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1555C13-L1555C55" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1555C13-L1555C55" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.StringCollection.System#Collections#ICollection#get_Count", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1562C17-L1562C30" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1562C17-L1562C30" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.StringCollection.System#Collections#ICollection#get_IsSynchronized", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1570C17-L1570C30" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1570C17-L1570C30" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.StringCollection.System#Collections#ICollection#get_SyncRoot", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1578C17-L1578C29" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1578C17-L1578C29" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.StringCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1584C13-L1585C10" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1584C13-L1585C10" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.StringCollection.CopyTo(System.String[],System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1590C13-L1591C10" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1590C13-L1591C10" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.StringCollection.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1595C13-L1595C36" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1595C13-L1595C36" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.StringCollection.Add(System.String)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1603C13-L1607C26" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1603C13-L1607C26" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.StringCollection.Count", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1538C17-L1538C38" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1538C17-L1538C38" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.StringCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1549C17-L1549C38" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1549C17-L1549C38" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.StringCollection.System#Collections#ICollection#Count", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1562C17-L1562C30" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1562C17-L1562C30" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.StringCollection.System#Collections#ICollection#IsSynchronized", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1570C17-L1570C30" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1570C17-L1570C30" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.StringCollection.System#Collections#ICollection#SyncRoot", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1578C17-L1578C29" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1578C17-L1578C29" } ], "DocsId": "T:System.Drawing.Printing.PrinterSettings.StringCollection", - "SourceLink": "https://github.com/dotnet/winforms/blob/41a4bd690229661e3ec74276ce3f93863b22435b/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6c37c986b6c8fc0669b38a03a03445a75b8227a6/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-7.0/System.Security.Cryptography.Xml.json b/xml/SourceLinkInformation/net-7.0/System.Security.Cryptography.Xml.json index 12294725813..d849cb51d54 100644 --- a/xml/SourceLinkInformation/net-7.0/System.Security.Cryptography.Xml.json +++ b/xml/SourceLinkInformation/net-7.0/System.Security.Cryptography.Xml.json @@ -1,1925 +1,1924 @@ { "Assembly": "System.Security.Cryptography.Xml", - "GUID": "3E4A5BA2F1354522B16286398B8BD81BFFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "AA992A29BB824AD4A54FF54E7E6C3915FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.CipherData.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherData.cs#L15C9-L15C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherData.cs#L15C9-L15C32" }, { "DocsId": "M:System.Security.Cryptography.Xml.CipherData.#ctor(System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherData.cs#L17C9-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherData.cs#L17C9-L20C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.CipherData.#ctor(System.Security.Cryptography.Xml.CipherReference)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherData.cs#L22C9-L25C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherData.cs#L22C9-L25C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.CipherData.GetXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherData.cs#L70C13-L74C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherData.cs#L70C13-L74C37" }, { "DocsId": "M:System.Security.Cryptography.Xml.CipherData.LoadXml(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherData.cs#L101C13-L129C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherData.cs#L101C13-L129C10" }, { "DocsId": "P:System.Security.Cryptography.Xml.CipherData.CipherReference", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherData.cs#L39C19-L39C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherData.cs#L39C19-L39C43" }, { "DocsId": "P:System.Security.Cryptography.Xml.CipherData.CipherValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherData.cs#L55C19-L55C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherData.cs#L55C19-L55C39" } ], "DocsId": "T:System.Security.Cryptography.Xml.CipherData", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherData.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherData.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.CipherReference.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherReference.cs#L13C36-L16C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherReference.cs#L13C36-L16C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.CipherReference.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherReference.cs#L18C46-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherReference.cs#L18C46-L21C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.CipherReference.#ctor(System.String,System.Security.Cryptography.Xml.TransformChain)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherReference.cs#L23C77-L26C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherReference.cs#L23C77-L26C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.CipherReference.GetXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherReference.cs#L45C13-L49C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherReference.cs#L45C13-L49C37" }, { "DocsId": "M:System.Security.Cryptography.Xml.CipherReference.LoadXml(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherReference.cs#L73C13-L91C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherReference.cs#L73C13-L91C10" } ], "DocsId": "T:System.Security.Cryptography.Xml.CipherReference", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherReference.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherReference.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.CryptoSignedXmlRecursionException.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CryptoSignedXmlRecursionException.cs#L20C54-L20C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CryptoSignedXmlRecursionException.cs#L20C54-L20C64" }, { "DocsId": "M:System.Security.Cryptography.Xml.CryptoSignedXmlRecursionException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CryptoSignedXmlRecursionException.cs#L21C68-L21C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CryptoSignedXmlRecursionException.cs#L21C68-L21C85" }, { "DocsId": "M:System.Security.Cryptography.Xml.CryptoSignedXmlRecursionException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CryptoSignedXmlRecursionException.cs#L22C85-L22C109" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CryptoSignedXmlRecursionException.cs#L22C85-L22C109" }, { "DocsId": "M:System.Security.Cryptography.Xml.CryptoSignedXmlRecursionException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CryptoSignedXmlRecursionException.cs#L27C105-L27C128" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CryptoSignedXmlRecursionException.cs#L27C105-L27C128" } ], "DocsId": "T:System.Security.Cryptography.Xml.CryptoSignedXmlRecursionException", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CryptoSignedXmlRecursionException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CryptoSignedXmlRecursionException.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.DataObject.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataObject.cs#L21C9-L25C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataObject.cs#L21C9-L25C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.DataObject.#ctor(System.String,System.String,System.String,System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataObject.cs#L27C9-L40C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataObject.cs#L27C9-L40C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.DataObject.GetXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataObject.cs#L109C13-L113C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataObject.cs#L109C13-L113C37" }, { "DocsId": "M:System.Security.Cryptography.Xml.DataObject.LoadXml(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataObject.cs#L140C13-L156C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataObject.cs#L140C13-L156C10" }, { "DocsId": "P:System.Security.Cryptography.Xml.DataObject.Id", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataObject.cs#L48C19-L48C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataObject.cs#L48C19-L48C30" }, { "DocsId": "P:System.Security.Cryptography.Xml.DataObject.MimeType", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataObject.cs#L58C19-L58C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataObject.cs#L58C19-L58C36" }, { "DocsId": "P:System.Security.Cryptography.Xml.DataObject.Encoding", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataObject.cs#L68C19-L68C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataObject.cs#L68C19-L68C36" }, { "DocsId": "P:System.Security.Cryptography.Xml.DataObject.Data", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataObject.cs#L78C19-L78C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataObject.cs#L78C19-L78C34" } ], "DocsId": "T:System.Security.Cryptography.Xml.DataObject", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataObject.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataObject.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.DataReference.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataReference.cs#L8C34-L11C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataReference.cs#L8C34-L11C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.DataReference.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataReference.cs#L13C44-L16C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataReference.cs#L13C44-L16C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.DataReference.#ctor(System.String,System.Security.Cryptography.Xml.TransformChain)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataReference.cs#L18C75-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataReference.cs#L18C75-L21C10" } ], "DocsId": "T:System.Security.Cryptography.Xml.DataReference", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataReference.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataReference.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.DSAKeyValue.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DSAKeyValue.cs#L21C9-L24C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DSAKeyValue.cs#L21C9-L24C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.DSAKeyValue.#ctor(System.Security.Cryptography.DSA)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DSAKeyValue.cs#L26C9-L34C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DSAKeyValue.cs#L26C9-L34C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.DSAKeyValue.GetXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DSAKeyValue.cs#L69C13-L71C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DSAKeyValue.cs#L69C13-L71C40" }, { "DocsId": "M:System.Security.Cryptography.Xml.DSAKeyValue.LoadXml(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DSAKeyValue.cs#L156C13-L213C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DSAKeyValue.cs#L156C13-L213C10" }, { "DocsId": "P:System.Security.Cryptography.Xml.DSAKeyValue.Key", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DSAKeyValue.cs#L42C20-L42C24" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DSAKeyValue.cs#L42C20-L42C24" } ], "DocsId": "T:System.Security.Cryptography.Xml.DSAKeyValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DSAKeyValue.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DSAKeyValue.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedData.LoadXml(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedData.cs#L15C13-L69C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedData.cs#L15C13-L69C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedData.GetXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedData.cs#L73C13-L77C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedData.cs#L73C13-L77C37" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedData.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedData.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedData.cs" } ], "DocsId": "T:System.Security.Cryptography.Xml.EncryptedData", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedData.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedData.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedKey.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedKey.cs#L15C9-L15C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedKey.cs#L15C9-L15C34" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedKey.AddReference(System.Security.Cryptography.Xml.DataReference)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedKey.cs#L42C13-L43C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedKey.cs#L42C13-L43C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedKey.AddReference(System.Security.Cryptography.Xml.KeyReference)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedKey.cs#L47C13-L48C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedKey.cs#L47C13-L48C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedKey.LoadXml(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedKey.cs#L54C13-L144C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedKey.cs#L54C13-L144C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedKey.GetXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedKey.cs#L148C13-L152C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedKey.cs#L148C13-L152C37" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptedKey.Recipient", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedKey.cs#L20C20-L20C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedKey.cs#L20C20-L20C47" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptedKey.CarriedKeyName", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedKey.cs#L30C19-L30C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedKey.cs#L30C19-L30C42" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptedKey.ReferenceList", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedKey.cs#L38C47-L38C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedKey.cs#L38C47-L38C85" } ], "DocsId": "T:System.Security.Cryptography.Xml.EncryptedKey", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedKey.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedKey.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedReference.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedReference.cs#L16C42-L18C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedReference.cs#L16C42-L18C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedReference.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedReference.cs#L20C52-L22C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedReference.cs#L20C52-L22C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedReference.#ctor(System.String,System.Security.Cryptography.Xml.TransformChain)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedReference.cs#L24C9-L29C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedReference.cs#L24C9-L29C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedReference.AddTransform(System.Security.Cryptography.Xml.Transform)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedReference.cs#L57C13-L58C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedReference.cs#L57C13-L58C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedReference.GetXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedReference.cs#L81C13-L85C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedReference.cs#L81C13-L85C37" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedReference.LoadXml(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedReference.cs#L109C13-L130C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedReference.cs#L109C13-L130C10" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptedReference.Uri", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedReference.cs#L33C19-L33C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedReference.cs#L33C19-L33C31" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptedReference.TransformChain", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedReference.cs#L47C20-L47C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedReference.cs#L47C20-L47C60" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptedReference.ReferenceType", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedReference.cs#L62C19-L62C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedReference.cs#L62C19-L62C41" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptedReference.CacheValid", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedReference.cs#L75C17-L75C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedReference.cs#L75C17-L75C45" } ], "DocsId": "T:System.Security.Cryptography.Xml.EncryptedReference", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedReference.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedReference.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedType.AddProperty(System.Security.Cryptography.Xml.EncryptionProperty)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs#L91C13-L92C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs#L91C13-L92C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedType.LoadXml(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedType.GetXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedType.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptedType.Id", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs#L32C19-L32C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs#L32C19-L32C30" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptedType.Type", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs#L42C19-L42C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs#L42C19-L42C32" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptedType.MimeType", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs#L52C19-L52C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs#L52C19-L52C36" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptedType.Encoding", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs#L62C19-L62C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs#L62C19-L62C36" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptedType.KeyInfo", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs#L73C20-L73C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs#L73C20-L73C46" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptedType.EncryptionMethod", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs#L79C19-L79C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs#L79C19-L79C44" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptedType.EncryptionProperties", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs#L87C77-L87C122" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs#L87C77-L87C122" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptedType.CipherData", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs#L96C20-L96C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs#L96C20-L96C52" } ], "DocsId": "T:System.Security.Cryptography.Xml.EncryptedType", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedXml.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L81C33-L81C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L81C33-L81C60" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedXml.#ctor(System.Xml.XmlDocument)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L85C53-L85C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L85C53-L85C77" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedXml.#ctor(System.Xml.XmlDocument,System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L89C9-L102C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L89C9-L102C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedXml.GetIdElement(System.Xml.XmlDocument,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L266C13-L266C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L266C13-L266C69" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedXml.GetDecryptionIV(System.Security.Cryptography.Xml.EncryptedData,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L272C13-L303C23" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L272C13-L303C23" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedXml.GetDecryptionKey(System.Security.Cryptography.Xml.EncryptedData,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L312C13-L393C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L312C13-L393C25" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedXml.DecryptEncryptedKey(System.Security.Cryptography.Xml.EncryptedKey)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L401C13-L513C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L401C13-L513C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedXml.AddKeyNameMapping(System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L523C13-L535C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L523C13-L535C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedXml.ClearKeyNameMappings", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L539C13-L540C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L539C13-L540C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedXml.Encrypt(System.Xml.XmlElement,System.Security.Cryptography.X509Certificates.X509Certificate2)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L548C13-L585C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L548C13-L585C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedXml.Encrypt(System.Xml.XmlElement,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L594C13-L668C23" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L594C13-L668C23" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedXml.DecryptDocument", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L679C13-L696C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L679C13-L696C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedXml.EncryptData(System.Byte[],System.Security.Cryptography.SymmetricAlgorithm)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L701C13-L742C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L701C13-L742C27" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedXml.EncryptData(System.Xml.XmlElement,System.Security.Cryptography.SymmetricAlgorithm,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L748C13-L758C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L748C13-L758C63" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedXml.DecryptData(System.Security.Cryptography.Xml.EncryptedData,System.Security.Cryptography.SymmetricAlgorithm)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L764C13-L809C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L764C13-L809C27" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedXml.ReplaceData(System.Xml.XmlElement,System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L815C13-L880C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L815C13-L880C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedXml.ReplaceElement(System.Xml.XmlElement,System.Security.Cryptography.Xml.EncryptedData,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L889C13-L914C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L889C13-L914C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedXml.EncryptKey(System.Byte[],System.Security.Cryptography.SymmetricAlgorithm)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L919C13-L941C102" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L919C13-L941C102" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedXml.EncryptKey(System.Byte[],System.Security.Cryptography.RSA,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L949C13-L966C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L949C13-L966C64" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedXml.DecryptKey(System.Byte[],System.Security.Cryptography.SymmetricAlgorithm)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L973C13-L995C102" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L973C13-L995C102" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedXml.DecryptKey(System.Byte[],System.Security.Cryptography.RSA,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L1002C13-L1019C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L1002C13-L1019C67" }, { "DocsId": "F:System.Security.Cryptography.Xml.EncryptedXml.XmlEncNamespaceUrl", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.EncryptedXml.XmlEncElementUrl", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.EncryptedXml.XmlEncElementContentUrl", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.EncryptedXml.XmlEncEncryptedKeyUrl", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.EncryptedXml.XmlEncDESUrl", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.EncryptedXml.XmlEncTripleDESUrl", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.EncryptedXml.XmlEncAES128Url", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.EncryptedXml.XmlEncAES256Url", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.EncryptedXml.XmlEncAES192Url", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.EncryptedXml.XmlEncRSA15Url", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.EncryptedXml.XmlEncRSAOAEPUrl", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.EncryptedXml.XmlEncTripleDESKeyWrapUrl", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.EncryptedXml.XmlEncAES128KeyWrapUrl", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.EncryptedXml.XmlEncAES256KeyWrapUrl", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.EncryptedXml.XmlEncAES192KeyWrapUrl", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.EncryptedXml.XmlEncSHA256Url", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.EncryptedXml.XmlEncSHA512Url", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptedXml.XmlDSigSearchDepth", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L125C17-L125C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L125C17-L125C44" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptedXml.DocumentEvidence", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L136C19-L136C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L136C19-L136C36" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptedXml.Resolver", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L143C19-L143C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L143C19-L143C39" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptedXml.Padding", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L151C19-L151C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L151C19-L151C35" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptedXml.Mode", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L159C19-L159C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L159C19-L159C32" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptedXml.Encoding", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L166C19-L166C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L166C19-L166C36" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptedXml.Recipient", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L175C20-L175C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L175C20-L175C47" } ], "DocsId": "T:System.Security.Cryptography.Xml.EncryptedXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionMethod.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionMethod.cs#L15C9-L18C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionMethod.cs#L15C9-L18C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionMethod.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionMethod.cs#L20C9-L24C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionMethod.cs#L20C9-L24C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionMethod.GetXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionMethod.cs#L59C13-L63C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionMethod.cs#L59C13-L63C37" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionMethod.LoadXml(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionMethod.cs#L84C13-L103C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionMethod.cs#L84C13-L103C10" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptionMethod.KeySize", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionMethod.cs#L37C19-L37C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionMethod.cs#L37C19-L37C35" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptionMethod.KeyAlgorithm", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionMethod.cs#L49C19-L49C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionMethod.cs#L49C19-L49C37" } ], "DocsId": "T:System.Security.Cryptography.Xml.EncryptionMethod", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionMethod.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionMethod.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionProperty.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionProperty.cs#L17C9-L17C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionProperty.cs#L17C9-L17C40" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionProperty.#ctor(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionProperty.cs#L19C9-L31C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionProperty.cs#L19C9-L31C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionProperty.GetXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionProperty.cs#L70C13-L74C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionProperty.cs#L70C13-L74C37" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionProperty.LoadXml(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionProperty.cs#L84C13-L97C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionProperty.cs#L84C13-L97C10" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptionProperty.Id", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionProperty.cs#L35C19-L35C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionProperty.cs#L35C19-L35C30" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptionProperty.Target", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionProperty.cs#L40C19-L40C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionProperty.cs#L40C19-L40C34" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptionProperty.PropertyElement", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionProperty.cs#L46C19-L46C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionProperty.cs#L46C19-L46C36" } ], "DocsId": "T:System.Security.Cryptography.Xml.EncryptionProperty", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionProperty.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionProperty.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionPropertyCollection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L12C9-L15C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L12C9-L15C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionPropertyCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L19C13-L19C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L19C13-L19C43" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionPropertyCollection.System#Collections#IList#Add(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L30C13-L33C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L30C13-L33C38" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionPropertyCollection.Add(System.Security.Cryptography.Xml.EncryptionProperty)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L38C13-L38C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L38C13-L38C38" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionPropertyCollection.Clear", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L43C13-L44C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L43C13-L44C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionPropertyCollection.System#Collections#IList#Contains(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L49C13-L52C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L49C13-L52C43" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionPropertyCollection.Contains(System.Security.Cryptography.Xml.EncryptionProperty)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L57C13-L57C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L57C13-L57C43" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionPropertyCollection.System#Collections#IList#IndexOf(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L63C13-L66C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L63C13-L66C42" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionPropertyCollection.IndexOf(System.Security.Cryptography.Xml.EncryptionProperty)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L71C13-L71C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L71C13-L71C42" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionPropertyCollection.System#Collections#IList#Insert(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L77C13-L81C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L77C13-L81C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionPropertyCollection.Insert(System.Int32,System.Security.Cryptography.Xml.EncryptionProperty)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L85C13-L86C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L85C13-L86C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionPropertyCollection.System#Collections#IList#Remove(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L91C13-L95C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L91C13-L95C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionPropertyCollection.Remove(System.Security.Cryptography.Xml.EncryptionProperty)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L99C13-L100C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L99C13-L100C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionPropertyCollection.RemoveAt(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L104C13-L105C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L104C13-L105C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionPropertyCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L119C13-L119C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L119C13-L119C55" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionPropertyCollection.System#Collections#IList#get_Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L138C19-L138C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L138C19-L138C40" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionPropertyCollection.System#Collections#IList#set_Item(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L141C17-L145C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L141C17-L145C14" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionPropertyCollection.CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L150C13-L151C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L150C13-L151C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionPropertyCollection.CopyTo(System.Security.Cryptography.Xml.EncryptionProperty[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L155C13-L156C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L155C13-L156C10" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptionPropertyCollection.Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L24C19-L24C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L24C19-L24C39" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptionPropertyCollection.IsFixedSize", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L109C19-L109C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L109C19-L109C45" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptionPropertyCollection.IsReadOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L114C19-L114C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L114C19-L114C44" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptionPropertyCollection.ItemOf(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L127C17-L127C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L127C17-L127C66" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptionPropertyCollection.System#Collections#IList#Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L138C19-L138C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L138C19-L138C40" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptionPropertyCollection.SyncRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L160C19-L160C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L160C19-L160C42" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptionPropertyCollection.IsSynchronized", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L165C19-L165C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L165C19-L165C48" } ], "DocsId": "T:System.Security.Cryptography.Xml.EncryptionPropertyCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.IRelDecryptor.Decrypt(System.Security.Cryptography.Xml.EncryptionMethod,System.Security.Cryptography.Xml.KeyInfo,System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/IRelDecryptor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/IRelDecryptor.cs" } ], "DocsId": "T:System.Security.Cryptography.Xml.IRelDecryptor", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/IRelDecryptor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/IRelDecryptor.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfo.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfo.cs#L19C9-L22C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfo.cs#L19C9-L22C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfo.GetXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfo.cs#L36C13-L38C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfo.cs#L36C13-L38C40" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfo.LoadXml(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfo.cs#L65C13-L113C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfo.cs#L65C13-L113C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfo.AddClause(System.Security.Cryptography.Xml.KeyInfoClause)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfo.cs#L126C13-L127C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfo.cs#L126C13-L127C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfo.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfo.cs#L131C13-L131C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfo.cs#L131C13-L131C52" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfo.GetEnumerator(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfo.cs#L136C13-L148C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfo.cs#L136C13-L148C50" }, { "DocsId": "P:System.Security.Cryptography.Xml.KeyInfo.Id", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfo.cs#L30C19-L30C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfo.cs#L30C19-L30C30" }, { "DocsId": "P:System.Security.Cryptography.Xml.KeyInfo.Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfo.cs#L117C19-L117C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfo.cs#L117C19-L117C48" } ], "DocsId": "T:System.Security.Cryptography.Xml.KeyInfo", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfo.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfo.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoClause.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoClause.cs#L14C9-L14C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoClause.cs#L14C9-L14C38" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoClause.GetXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoClause.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoClause.cs" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoClause.LoadXml(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoClause.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoClause.cs" } ], "DocsId": "T:System.Security.Cryptography.Xml.KeyInfoClause", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoClause.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoClause.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoEncryptedKey.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoEncryptedKey.cs#L15C9-L15C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoEncryptedKey.cs#L15C9-L15C41" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoEncryptedKey.#ctor(System.Security.Cryptography.Xml.EncryptedKey)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoEncryptedKey.cs#L17C9-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoEncryptedKey.cs#L17C9-L20C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoEncryptedKey.GetXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoEncryptedKey.cs#L30C13-L32C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoEncryptedKey.cs#L30C13-L32C43" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoEncryptedKey.LoadXml(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoEncryptedKey.cs#L44C13-L46C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoEncryptedKey.cs#L44C13-L46C10" }, { "DocsId": "P:System.Security.Cryptography.Xml.KeyInfoEncryptedKey.EncryptedKey", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoEncryptedKey.cs#L24C19-L24C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoEncryptedKey.cs#L24C19-L24C40" } ], "DocsId": "T:System.Security.Cryptography.Xml.KeyInfoEncryptedKey", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoEncryptedKey.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoEncryptedKey.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoName.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoName.cs#L16C32-L16C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoName.cs#L16C32-L16C46" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoName.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoName.cs#L18C9-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoName.cs#L18C9-L21C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoName.GetXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoName.cs#L39C13-L41C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoName.cs#L39C13-L41C40" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoName.LoadXml(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoName.cs#L53C13-L60C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoName.cs#L53C13-L60C10" }, { "DocsId": "P:System.Security.Cryptography.Xml.KeyInfoName.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoName.cs#L29C19-L29C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoName.cs#L29C19-L29C35" } ], "DocsId": "T:System.Security.Cryptography.Xml.KeyInfoName", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoName.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoName.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoNode.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoNode.cs#L17C9-L17C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoNode.cs#L17C9-L17C33" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoNode.#ctor(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoNode.cs#L19C9-L22C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoNode.cs#L19C9-L22C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoNode.GetXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoNode.cs#L40C13-L42C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoNode.cs#L40C13-L42C40" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoNode.LoadXml(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoNode.cs#L52C13-L53C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoNode.cs#L52C13-L53C10" }, { "DocsId": "P:System.Security.Cryptography.Xml.KeyInfoNode.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoNode.cs#L30C19-L30C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoNode.cs#L30C19-L30C32" } ], "DocsId": "T:System.Security.Cryptography.Xml.KeyInfoNode", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoNode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoNode.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoRetrievalMethod.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoRetrievalMethod.cs#L17C9-L17C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoRetrievalMethod.cs#L17C9-L17C44" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoRetrievalMethod.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoRetrievalMethod.cs#L19C9-L22C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoRetrievalMethod.cs#L19C9-L22C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoRetrievalMethod.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoRetrievalMethod.cs#L24C9-L28C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoRetrievalMethod.cs#L24C9-L28C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoRetrievalMethod.GetXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoRetrievalMethod.cs#L48C13-L50C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoRetrievalMethod.cs#L48C13-L50C40" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoRetrievalMethod.LoadXml(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoRetrievalMethod.cs#L68C13-L75C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoRetrievalMethod.cs#L68C13-L75C10" }, { "DocsId": "P:System.Security.Cryptography.Xml.KeyInfoRetrievalMethod.Uri", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoRetrievalMethod.cs#L36C19-L36C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoRetrievalMethod.cs#L36C19-L36C31" }, { "DocsId": "P:System.Security.Cryptography.Xml.KeyInfoRetrievalMethod.Type", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoRetrievalMethod.cs#L42C19-L42C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoRetrievalMethod.cs#L42C19-L42C32" } ], "DocsId": "T:System.Security.Cryptography.Xml.KeyInfoRetrievalMethod", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoRetrievalMethod.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoRetrievalMethod.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoX509Data.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L29C9-L29C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L29C9-L29C37" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoX509Data.#ctor(System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L31C9-L35C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L31C9-L35C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoX509Data.#ctor(System.Security.Cryptography.X509Certificates.X509Certificate)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L37C9-L40C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L37C9-L40C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoX509Data.#ctor(System.Security.Cryptography.X509Certificates.X509Certificate,System.Security.Cryptography.X509Certificates.X509IncludeOption)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L42C9-L94C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L42C9-L94C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoX509Data.AddCertificate(System.Security.Cryptography.X509Certificates.X509Certificate)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L107C13-L116C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L107C13-L116C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoX509Data.AddSubjectKeyId(System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L125C13-L127C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L125C13-L127C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoX509Data.AddSubjectKeyId(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L131C13-L133C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L131C13-L133C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoX509Data.AddSubjectName(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L142C13-L144C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L142C13-L144C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoX509Data.AddIssuerSerial(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L153C13-L165C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L153C13-L165C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoX509Data.GetXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L199C13-L201C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L199C13-L201C40" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoX509Data.LoadXml(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L265C13-L312C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L265C13-L312C10" }, { "DocsId": "P:System.Security.Cryptography.Xml.KeyInfoX509Data.Certificates", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L102C19-L102C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L102C19-L102C40" }, { "DocsId": "P:System.Security.Cryptography.Xml.KeyInfoX509Data.SubjectKeyIds", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L120C19-L120C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L120C19-L120C41" }, { "DocsId": "P:System.Security.Cryptography.Xml.KeyInfoX509Data.SubjectNames", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L137C19-L137C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L137C19-L137C40" }, { "DocsId": "P:System.Security.Cryptography.Xml.KeyInfoX509Data.IssuerSerials", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L148C19-L148C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L148C19-L148C41" }, { "DocsId": "P:System.Security.Cryptography.Xml.KeyInfoX509Data.CRL", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L176C19-L176C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L176C19-L176C31" } ], "DocsId": "T:System.Security.Cryptography.Xml.KeyInfoX509Data", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.KeyReference.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyReference.cs#L8C33-L11C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyReference.cs#L8C33-L11C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyReference.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyReference.cs#L13C43-L16C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyReference.cs#L13C43-L16C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyReference.#ctor(System.String,System.Security.Cryptography.Xml.TransformChain)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyReference.cs#L18C74-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyReference.cs#L18C74-L21C10" } ], "DocsId": "T:System.Security.Cryptography.Xml.KeyReference", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyReference.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyReference.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.Reference.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L32C9-L39C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L32C9-L39C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.Reference.#ctor(System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L41C9-L48C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L41C9-L48C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.Reference.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L50C9-L58C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L50C9-L58C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.Reference.GetXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L160C13-L164C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L160C13-L164C37" }, { "DocsId": "M:System.Security.Cryptography.Xml.Reference.LoadXml(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L211C13-L326C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L211C13-L339C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.Reference.AddTransform(System.Security.Cryptography.Xml.Transform)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L330C13-L337C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L343C13-L350C10" }, { "DocsId": "P:System.Security.Cryptography.Xml.Reference.Id", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L75C19-L75C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L75C19-L75C30" }, { "DocsId": "P:System.Security.Cryptography.Xml.Reference.Uri", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L81C19-L81C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L81C19-L81C31" }, { "DocsId": "P:System.Security.Cryptography.Xml.Reference.Type", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L91C19-L91C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L91C19-L91C32" }, { "DocsId": "P:System.Security.Cryptography.Xml.Reference.DigestMethod", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L101C19-L101C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L101C19-L101C40" }, { "DocsId": "P:System.Security.Cryptography.Xml.Reference.DigestValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L111C19-L111C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L111C19-L111C39" }, { "DocsId": "P:System.Security.Cryptography.Xml.Reference.TransformChain", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L121C20-L121C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L121C20-L121C60" } ], "DocsId": "T:System.Security.Cryptography.Xml.Reference", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.ReferenceList.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L12C9-L15C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L12C9-L15C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.ReferenceList.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L19C13-L19C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L19C13-L19C48" }, { "DocsId": "M:System.Security.Cryptography.Xml.ReferenceList.Add(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L30C13-L38C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L30C13-L38C43" }, { "DocsId": "M:System.Security.Cryptography.Xml.ReferenceList.Clear", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L44C13-L45C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L44C13-L45C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.ReferenceList.Contains(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L49C13-L49C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L49C13-L49C48" }, { "DocsId": "M:System.Security.Cryptography.Xml.ReferenceList.IndexOf(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L54C13-L54C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L54C13-L54C47" }, { "DocsId": "M:System.Security.Cryptography.Xml.ReferenceList.Insert(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L59C13-L68C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L59C13-L68C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.ReferenceList.Remove(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L73C13-L74C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L73C13-L74C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.ReferenceList.RemoveAt(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L78C13-L79C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L78C13-L79C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.ReferenceList.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L83C13-L83C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L83C13-L83C60" }, { "DocsId": "M:System.Security.Cryptography.Xml.ReferenceList.System#Collections#IList#get_Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L102C19-L102C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L102C19-L102C45" }, { "DocsId": "M:System.Security.Cryptography.Xml.ReferenceList.System#Collections#IList#set_Item(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L105C17-L112C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L105C17-L112C14" }, { "DocsId": "M:System.Security.Cryptography.Xml.ReferenceList.CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L117C13-L118C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L117C13-L118C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.ReferenceList.System#Collections#IList#get_IsFixedSize", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L122C19-L122C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L122C19-L122C50" }, { "DocsId": "M:System.Security.Cryptography.Xml.ReferenceList.System#Collections#IList#get_IsReadOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L127C19-L127C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L127C19-L127C49" }, { "DocsId": "P:System.Security.Cryptography.Xml.ReferenceList.Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L24C19-L24C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L24C19-L24C44" }, { "DocsId": "P:System.Security.Cryptography.Xml.ReferenceList.ItemOf(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L91C17-L91C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L91C17-L91C37" }, { "DocsId": "P:System.Security.Cryptography.Xml.ReferenceList.System#Collections#IList#Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L102C19-L102C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L102C19-L102C45" }, { "DocsId": "P:System.Security.Cryptography.Xml.ReferenceList.System#Collections#IList#IsFixedSize", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L122C19-L122C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L122C19-L122C50" }, { "DocsId": "P:System.Security.Cryptography.Xml.ReferenceList.System#Collections#IList#IsReadOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L127C19-L127C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L127C19-L127C49" }, { "DocsId": "P:System.Security.Cryptography.Xml.ReferenceList.SyncRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L132C19-L132C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L132C19-L132C47" }, { "DocsId": "P:System.Security.Cryptography.Xml.ReferenceList.IsSynchronized", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L137C19-L137C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L137C19-L137C53" } ], "DocsId": "T:System.Security.Cryptography.Xml.ReferenceList", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.RSAKeyValue.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/RSAKeyValue.cs#L16C9-L19C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/RSAKeyValue.cs#L16C9-L19C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.RSAKeyValue.#ctor(System.Security.Cryptography.RSA)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/RSAKeyValue.cs#L21C9-L29C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/RSAKeyValue.cs#L21C9-L29C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.RSAKeyValue.GetXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/RSAKeyValue.cs#L64C13-L66C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/RSAKeyValue.cs#L64C13-L66C40" }, { "DocsId": "M:System.Security.Cryptography.Xml.RSAKeyValue.LoadXml(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/RSAKeyValue.cs#L111C13-L144C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/RSAKeyValue.cs#L111C13-L144C10" }, { "DocsId": "P:System.Security.Cryptography.Xml.RSAKeyValue.Key", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/RSAKeyValue.cs#L37C20-L37C24" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/RSAKeyValue.cs#L37C20-L37C24" } ], "DocsId": "T:System.Security.Cryptography.Xml.RSAKeyValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/RSAKeyValue.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/RSAKeyValue.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.Signature.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Signature.cs#L31C9-L35C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Signature.cs#L31C9-L35C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.Signature.GetXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Signature.cs#L87C13-L89C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Signature.cs#L87C13-L89C37" }, { "DocsId": "M:System.Security.Cryptography.Xml.Signature.LoadXml(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Signature.cs#L136C13-L226C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Signature.cs#L136C13-L226C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.Signature.AddObject(System.Security.Cryptography.Xml.DataObject)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Signature.cs#L230C13-L231C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Signature.cs#L230C13-L231C10" }, { "DocsId": "P:System.Security.Cryptography.Xml.Signature.Id", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Signature.cs#L43C19-L43C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Signature.cs#L43C19-L43C30" }, { "DocsId": "P:System.Security.Cryptography.Xml.Signature.SignedInfo", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Signature.cs#L49C19-L49C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Signature.cs#L49C19-L49C38" }, { "DocsId": "P:System.Security.Cryptography.Xml.Signature.SignatureValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Signature.cs#L60C19-L60C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Signature.cs#L60C19-L60C42" }, { "DocsId": "P:System.Security.Cryptography.Xml.Signature.KeyInfo", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Signature.cs#L66C20-L66C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Signature.cs#L66C20-L66C46" }, { "DocsId": "P:System.Security.Cryptography.Xml.Signature.ObjectList", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Signature.cs#L72C19-L72C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Signature.cs#L72C19-L72C43" } ], "DocsId": "T:System.Security.Cryptography.Xml.Signature", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Signature.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Signature.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.SignedInfo.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L29C9-L32C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L29C9-L32C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.SignedInfo.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L36C13-L36C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L36C13-L36C47" }, { "DocsId": "M:System.Security.Cryptography.Xml.SignedInfo.CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L41C13-L41C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L41C13-L41C47" }, { "DocsId": "M:System.Security.Cryptography.Xml.SignedInfo.GetXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L157C13-L161C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L157C13-L161C37" }, { "DocsId": "M:System.Security.Cryptography.Xml.SignedInfo.LoadXml(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L207C13-L282C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L207C13-L282C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.SignedInfo.AddReference(System.Security.Cryptography.Xml.Reference)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L286C13-L293C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L286C13-L293C10" }, { "DocsId": "P:System.Security.Cryptography.Xml.SignedInfo.Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L46C19-L46C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L46C19-L46C53" }, { "DocsId": "P:System.Security.Cryptography.Xml.SignedInfo.IsReadOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L51C19-L51C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L51C19-L51C53" }, { "DocsId": "P:System.Security.Cryptography.Xml.SignedInfo.IsSynchronized", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L56C19-L56C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L56C19-L56C53" }, { "DocsId": "P:System.Security.Cryptography.Xml.SignedInfo.SyncRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L61C19-L61C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L61C19-L61C53" }, { "DocsId": "P:System.Security.Cryptography.Xml.SignedInfo.Id", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L70C19-L70C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L70C19-L70C30" }, { "DocsId": "P:System.Security.Cryptography.Xml.SignedInfo.CanonicalizationMethod", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L84C17-L86C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L84C17-L86C48" }, { "DocsId": "P:System.Security.Cryptography.Xml.SignedInfo.CanonicalizationMethodObject", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L99C17-L107C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L99C17-L107C57" }, { "DocsId": "P:System.Security.Cryptography.Xml.SignedInfo.SignatureMethod", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L113C19-L113C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L113C19-L113C43" }, { "DocsId": "P:System.Security.Cryptography.Xml.SignedInfo.SignatureLength", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L123C19-L123C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L123C19-L123C43" }, { "DocsId": "P:System.Security.Cryptography.Xml.SignedInfo.References", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L133C19-L133C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L133C19-L133C38" } ], "DocsId": "T:System.Security.Cryptography.Xml.SignedInfo", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.SignedXml.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L33C9-L95C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L33C9-L95C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.SignedXml.#ctor(System.Xml.XmlDocument)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L33C9-L107C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L33C9-L107C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.SignedXml.#ctor(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L33C9-L119C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L33C9-L119C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.SignedXml.GetXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L224C13-L227C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L224C13-L227C45" }, { "DocsId": "M:System.Security.Cryptography.Xml.SignedXml.LoadXml(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L234C13-L244C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L234C13-L244C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.SignedXml.AddReference(System.Security.Cryptography.Xml.Reference)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L252C13-L253C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L252C13-L253C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.SignedXml.AddObject(System.Security.Cryptography.Xml.DataObject)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L257C13-L258C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L257C13-L258C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.SignedXml.CheckSignature", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L262C13-L262C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L262C13-L262C54" }, { "DocsId": "M:System.Security.Cryptography.Xml.SignedXml.CheckSignatureReturningKey(System.Security.Cryptography.AsymmetricAlgorithm@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L267C13-L289C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L267C13-L289C25" }, { "DocsId": "M:System.Security.Cryptography.Xml.SignedXml.CheckSignature(System.Security.Cryptography.AsymmetricAlgorithm)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L294C13-L313C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L294C13-L313C25" }, { "DocsId": "M:System.Security.Cryptography.Xml.SignedXml.CheckSignature(System.Security.Cryptography.KeyedHashAlgorithm)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L318C13-L336C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L318C13-L336C25" }, { "DocsId": "M:System.Security.Cryptography.Xml.SignedXml.CheckSignature(System.Security.Cryptography.X509Certificates.X509Certificate2,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L341C13-L387C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L341C13-L387C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.SignedXml.ComputeSignature", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L392C13-L436C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L392C13-L436C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.SignedXml.ComputeSignature(System.Security.Cryptography.KeyedHashAlgorithm)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L440C13-L476C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L440C13-L476C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.SignedXml.GetPublicKey", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L484C13-L520C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L484C13-L520C25" }, { "DocsId": "M:System.Security.Cryptography.Xml.SignedXml.GetIdElement(System.Xml.XmlDocument,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L554C13-L554C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L554C13-L554C59" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.m_signature", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.m_strSigningKeyName", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlDsigNamespaceUrl", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlDsigMinimalCanonicalizationUrl", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlDsigCanonicalizationUrl", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlDsigCanonicalizationWithCommentsUrl", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlDsigSHA1Url", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlDsigDSAUrl", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlDsigRSASHA1Url", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlDsigHMACSHA1Url", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlDsigSHA256Url", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlDsigRSASHA256Url", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlDsigSHA384Url", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlDsigRSASHA384Url", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlDsigSHA512Url", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlDsigRSASHA512Url", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlDsigC14NTransformUrl", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlDsigC14NWithCommentsTransformUrl", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlDsigExcC14NTransformUrl", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlDsigExcC14NWithCommentsTransformUrl", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlDsigBase64TransformUrl", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlDsigXPathTransformUrl", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlDsigXsltTransformUrl", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlDsigEnvelopedSignatureTransformUrl", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlDecryptionTransformUrl", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlLicenseTransformUrl", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "P:System.Security.Cryptography.Xml.SignedXml.SigningKeyName", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L144C19-L144C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L144C19-L144C46" }, { "DocsId": "P:System.Security.Cryptography.Xml.SignedXml.Resolver", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L154C17-L156C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L154C17-L156C14" }, { "DocsId": "P:System.Security.Cryptography.Xml.SignedXml.SignatureFormatValidator", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L166C19-L166C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L166C19-L166C52" }, { "DocsId": "P:System.Security.Cryptography.Xml.SignedXml.SafeCanonicalizationMethods", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L172C19-L172C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L172C19-L172C55" }, { "DocsId": "P:System.Security.Cryptography.Xml.SignedXml.SigningKey", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L177C19-L177C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L177C19-L177C38" }, { "DocsId": "P:System.Security.Cryptography.Xml.SignedXml.EncryptedXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L186C20-L186C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L186C20-L186C68" }, { "DocsId": "P:System.Security.Cryptography.Xml.SignedXml.Signature", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L192C19-L192C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L192C19-L192C38" }, { "DocsId": "P:System.Security.Cryptography.Xml.SignedXml.SignedInfo", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L197C19-L197C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L197C19-L197C49" }, { "DocsId": "P:System.Security.Cryptography.Xml.SignedXml.SignatureMethod", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L202C19-L202C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L202C19-L202C66" }, { "DocsId": "P:System.Security.Cryptography.Xml.SignedXml.SignatureLength", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L207C19-L207C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L207C19-L207C66" }, { "DocsId": "P:System.Security.Cryptography.Xml.SignedXml.SignatureValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L212C19-L212C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L212C19-L212C53" }, { "DocsId": "P:System.Security.Cryptography.Xml.SignedXml.KeyInfo", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L217C19-L217C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L217C19-L217C46" } ], "DocsId": "T:System.Security.Cryptography.Xml.SignedXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.Transform.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs#L56C9-L56C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs#L56C9-L56C34" }, { "DocsId": "M:System.Security.Cryptography.Xml.Transform.GetXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs#L118C13-L120C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs#L118C13-L120C37" }, { "DocsId": "M:System.Security.Cryptography.Xml.Transform.LoadInnerXml(System.Xml.XmlNodeList)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs" }, { "DocsId": "M:System.Security.Cryptography.Xml.Transform.GetInnerXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs" }, { "DocsId": "M:System.Security.Cryptography.Xml.Transform.LoadInput(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs" }, { "DocsId": "M:System.Security.Cryptography.Xml.Transform.GetOutput", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs" }, { "DocsId": "M:System.Security.Cryptography.Xml.Transform.GetOutput(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs" }, { "DocsId": "M:System.Security.Cryptography.Xml.Transform.GetDigestedOutput(System.Security.Cryptography.HashAlgorithm)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs#L156C13-L156C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs#L156C13-L156C72" }, { "DocsId": "P:System.Security.Cryptography.Xml.Transform.Algorithm", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs#L64C19-L64C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs#L64C19-L64C37" }, { "DocsId": "P:System.Security.Cryptography.Xml.Transform.InputTypes", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs" }, { "DocsId": "P:System.Security.Cryptography.Xml.Transform.OutputTypes", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs" }, { "DocsId": "P:System.Security.Cryptography.Xml.Transform.Context", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs#L163C17-L171C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs#L163C17-L171C43" }, { "DocsId": "P:System.Security.Cryptography.Xml.Transform.PropagatedNamespaces", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs#L183C17-L218C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs#L183C17-L218C46" } ], "DocsId": "T:System.Security.Cryptography.Xml.Transform", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.TransformChain.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/TransformChain.cs#L29C9-L32C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/TransformChain.cs#L29C9-L32C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.TransformChain.Add(System.Security.Cryptography.Xml.Transform)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/TransformChain.cs#L36C13-L38C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/TransformChain.cs#L36C13-L38C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.TransformChain.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/TransformChain.cs#L42C13-L42C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/TransformChain.cs#L42C13-L42C48" }, { "DocsId": "P:System.Security.Cryptography.Xml.TransformChain.Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/TransformChain.cs#L47C19-L47C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/TransformChain.cs#L47C19-L47C44" }, { "DocsId": "P:System.Security.Cryptography.Xml.TransformChain.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/TransformChain.cs#L54C17-L56C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/TransformChain.cs#L54C17-L56C55" } ], "DocsId": "T:System.Security.Cryptography.Xml.TransformChain", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/TransformChain.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/TransformChain.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.XmlDecryptionTransform.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs#L18C9-L35C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs#L18C9-L35C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDecryptionTransform.IsTargetElement(System.Xml.XmlElement,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs#L41C13-L47C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs#L41C13-L47C26" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDecryptionTransform.AddExceptUri(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs#L81C13-L87C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs#L81C13-L87C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDecryptionTransform.LoadInnerXml(System.Xml.XmlNodeList)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs#L91C13-L118C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs#L91C13-L118C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDecryptionTransform.GetInnerXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs#L122C13-L134C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs#L122C13-L134C39" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDecryptionTransform.LoadInput(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs#L139C13-L147C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs#L139C13-L147C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDecryptionTransform.GetOutput", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs#L266C13-L270C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs#L266C13-L270C40" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDecryptionTransform.GetOutput(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs#L275C13-L278C108" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs#L275C13-L278C108" }, { "DocsId": "P:System.Security.Cryptography.Xml.XmlDecryptionTransform.EncryptedXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs#L54C17-L64C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs#L54C17-L64C30" }, { "DocsId": "P:System.Security.Cryptography.Xml.XmlDecryptionTransform.InputTypes", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs#L71C19-L71C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs#L71C19-L71C38" }, { "DocsId": "P:System.Security.Cryptography.Xml.XmlDecryptionTransform.OutputTypes", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs#L76C19-L76C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs#L76C19-L76C39" } ], "DocsId": "T:System.Security.Cryptography.Xml.XmlDecryptionTransform", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigBase64Transform.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigBase64Transform.cs#L13C9-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigBase64Transform.cs#L13C9-L20C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigBase64Transform.LoadInnerXml(System.Xml.XmlNodeList)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigBase64Transform.cs#L34C9-L34C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigBase64Transform.cs#L34C9-L34C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigBase64Transform.GetInnerXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigBase64Transform.cs#L38C13-L38C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigBase64Transform.cs#L38C13-L38C25" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigBase64Transform.LoadInput(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigBase64Transform.cs#L43C13-L58C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigBase64Transform.cs#L43C13-L58C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigBase64Transform.GetOutput", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigBase64Transform.cs#L121C13-L121C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigBase64Transform.cs#L121C13-L121C25" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigBase64Transform.GetOutput(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigBase64Transform.cs#L126C13-L128C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigBase64Transform.cs#L126C13-L128C25" }, { "DocsId": "P:System.Security.Cryptography.Xml.XmlDsigBase64Transform.InputTypes", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigBase64Transform.cs#L24C19-L24C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigBase64Transform.cs#L24C19-L24C38" }, { "DocsId": "P:System.Security.Cryptography.Xml.XmlDsigBase64Transform.OutputTypes", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigBase64Transform.cs#L29C19-L29C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigBase64Transform.cs#L29C19-L29C39" } ], "DocsId": "T:System.Security.Cryptography.Xml.XmlDsigBase64Transform", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigBase64Transform.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigBase64Transform.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigC14NTransform.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NTransform.cs#L11C9-L19C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NTransform.cs#L11C9-L19C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigC14NTransform.#ctor(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NTransform.cs#L11C9-L25C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NTransform.cs#L11C9-L25C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigC14NTransform.LoadInnerXml(System.Xml.XmlNodeList)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NTransform.cs#L39C13-L41C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NTransform.cs#L39C13-L41C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigC14NTransform.GetInnerXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NTransform.cs#L45C13-L45C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NTransform.cs#L45C13-L45C25" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigC14NTransform.LoadInput(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NTransform.cs#L50C13-L67C99" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NTransform.cs#L50C13-L67C99" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigC14NTransform.GetOutput", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NTransform.cs#L73C13-L73C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NTransform.cs#L73C13-L73C56" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigC14NTransform.GetOutput(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NTransform.cs#L78C13-L80C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NTransform.cs#L78C13-L80C56" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigC14NTransform.GetDigestedOutput(System.Security.Cryptography.HashAlgorithm)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NTransform.cs#L85C13-L85C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NTransform.cs#L85C13-L85C50" }, { "DocsId": "P:System.Security.Cryptography.Xml.XmlDsigC14NTransform.InputTypes", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NTransform.cs#L29C19-L29C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NTransform.cs#L29C19-L29C38" }, { "DocsId": "P:System.Security.Cryptography.Xml.XmlDsigC14NTransform.OutputTypes", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NTransform.cs#L34C19-L34C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NTransform.cs#L34C19-L34C39" } ], "DocsId": "T:System.Security.Cryptography.Xml.XmlDsigC14NTransform", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NTransform.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NTransform.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigC14NWithCommentsTransform.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NWithCommentsTransform.cs#L9C15-L12C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NWithCommentsTransform.cs#L9C15-L12C10" } ], "DocsId": "T:System.Security.Cryptography.Xml.XmlDsigC14NWithCommentsTransform", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NWithCommentsTransform.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NWithCommentsTransform.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigEnvelopedSignatureTransform.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigEnvelopedSignatureTransform.cs#L11C9-L27C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigEnvelopedSignatureTransform.cs#L11C9-L27C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigEnvelopedSignatureTransform.#ctor(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigEnvelopedSignatureTransform.cs#L11C9-L34C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigEnvelopedSignatureTransform.cs#L11C9-L34C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigEnvelopedSignatureTransform.LoadInnerXml(System.Xml.XmlNodeList)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigEnvelopedSignatureTransform.cs#L49C13-L51C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigEnvelopedSignatureTransform.cs#L49C13-L51C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigEnvelopedSignatureTransform.GetInnerXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigEnvelopedSignatureTransform.cs#L56C13-L56C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigEnvelopedSignatureTransform.cs#L56C13-L56C25" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigEnvelopedSignatureTransform.LoadInput(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigEnvelopedSignatureTransform.cs#L61C13-L76C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigEnvelopedSignatureTransform.cs#L61C13-L76C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigEnvelopedSignatureTransform.GetOutput", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigEnvelopedSignatureTransform.cs#L122C13-L174C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigEnvelopedSignatureTransform.cs#L122C13-L174C44" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigEnvelopedSignatureTransform.GetOutput(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigEnvelopedSignatureTransform.cs#L180C13-L192C108" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigEnvelopedSignatureTransform.cs#L180C13-L192C108" }, { "DocsId": "P:System.Security.Cryptography.Xml.XmlDsigEnvelopedSignatureTransform.InputTypes", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigEnvelopedSignatureTransform.cs#L38C19-L38C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigEnvelopedSignatureTransform.cs#L38C19-L38C38" }, { "DocsId": "P:System.Security.Cryptography.Xml.XmlDsigEnvelopedSignatureTransform.OutputTypes", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigEnvelopedSignatureTransform.cs#L43C19-L43C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigEnvelopedSignatureTransform.cs#L43C19-L43C39" } ], "DocsId": "T:System.Security.Cryptography.Xml.XmlDsigEnvelopedSignatureTransform", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigEnvelopedSignatureTransform.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigEnvelopedSignatureTransform.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigExcC14NTransform.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L17C44-L17C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L17C44-L17C65" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigExcC14NTransform.#ctor(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L19C64-L19C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L19C64-L19C95" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigExcC14NTransform.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L21C80-L21C126" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L21C80-L21C126" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigExcC14NTransform.#ctor(System.Boolean,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L11C9-L28C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L11C9-L28C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigExcC14NTransform.LoadInnerXml(System.Xml.XmlNodeList)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L48C13-L73C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L48C13-L73C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigExcC14NTransform.LoadInput(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L77C13-L91C99" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L77C13-L91C99" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigExcC14NTransform.GetInnerXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L96C13-L105C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L96C13-L105C39" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigExcC14NTransform.GetOutput", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L110C13-L110C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L110C13-L110C67" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigExcC14NTransform.GetOutput(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L115C13-L117C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L115C13-L117C67" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigExcC14NTransform.GetDigestedOutput(System.Security.Cryptography.HashAlgorithm)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L122C13-L122C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L122C13-L122C61" }, { "DocsId": "P:System.Security.Cryptography.Xml.XmlDsigExcC14NTransform.InclusiveNamespacesPrefixList", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L32C19-L32C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L32C19-L32C57" }, { "DocsId": "P:System.Security.Cryptography.Xml.XmlDsigExcC14NTransform.InputTypes", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L38C19-L38C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L38C19-L38C38" }, { "DocsId": "P:System.Security.Cryptography.Xml.XmlDsigExcC14NTransform.OutputTypes", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L43C19-L43C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L43C19-L43C39" } ], "DocsId": "T:System.Security.Cryptography.Xml.XmlDsigExcC14NTransform", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigExcC14NWithCommentsTransform.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NWithCommentsTransform.cs#L12C56-L15C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NWithCommentsTransform.cs#L12C56-L15C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigExcC14NWithCommentsTransform.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NWithCommentsTransform.cs#L17C92-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NWithCommentsTransform.cs#L17C92-L20C10" } ], "DocsId": "T:System.Security.Cryptography.Xml.XmlDsigExcC14NWithCommentsTransform", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NWithCommentsTransform.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NWithCommentsTransform.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigXPathTransform.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXPathTransform.cs#L14C9-L23C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXPathTransform.cs#L14C9-L23C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigXPathTransform.LoadInnerXml(System.Xml.XmlNodeList)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXPathTransform.cs#L38C13-L84C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXPathTransform.cs#L38C13-L84C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigXPathTransform.GetInnerXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXPathTransform.cs#L88C13-L115C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXPathTransform.cs#L88C13-L115C40" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigXPathTransform.LoadInput(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXPathTransform.cs#L120C13-L132C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXPathTransform.cs#L120C13-L132C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigXPathTransform.GetOutput", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXPathTransform.cs#L161C13-L188C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXPathTransform.cs#L161C13-L188C35" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigXPathTransform.GetOutput(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXPathTransform.cs#L193C13-L195C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXPathTransform.cs#L193C13-L195C45" }, { "DocsId": "P:System.Security.Cryptography.Xml.XmlDsigXPathTransform.InputTypes", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXPathTransform.cs#L27C19-L27C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXPathTransform.cs#L27C19-L27C38" }, { "DocsId": "P:System.Security.Cryptography.Xml.XmlDsigXPathTransform.OutputTypes", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXPathTransform.cs#L32C19-L32C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXPathTransform.cs#L32C19-L32C39" } ], "DocsId": "T:System.Security.Cryptography.Xml.XmlDsigXPathTransform", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXPathTransform.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXPathTransform.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigXsltTransform.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXsltTransform.cs#L15C9-L25C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXsltTransform.cs#L15C9-L25C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigXsltTransform.#ctor(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXsltTransform.cs#L15C9-L31C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXsltTransform.cs#L15C9-L31C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigXsltTransform.LoadInnerXml(System.Xml.XmlNodeList)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXsltTransform.cs#L51C13-L75C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXsltTransform.cs#L51C13-L75C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigXsltTransform.GetInnerXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXsltTransform.cs#L79C13-L79C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXsltTransform.cs#L79C13-L79C30" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigXsltTransform.LoadInput(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXsltTransform.cs#L84C13-L108C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXsltTransform.cs#L84C13-L108C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigXsltTransform.GetOutput", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXsltTransform.cs#L118C13-L141C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXsltTransform.cs#L118C13-L141C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigXsltTransform.GetOutput(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXsltTransform.cs#L145C13-L147C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXsltTransform.cs#L145C13-L147C40" }, { "DocsId": "P:System.Security.Cryptography.Xml.XmlDsigXsltTransform.InputTypes", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXsltTransform.cs#L37C17-L37C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXsltTransform.cs#L37C17-L37C36" }, { "DocsId": "P:System.Security.Cryptography.Xml.XmlDsigXsltTransform.OutputTypes", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXsltTransform.cs#L45C17-L45C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXsltTransform.cs#L45C17-L45C37" } ], "DocsId": "T:System.Security.Cryptography.Xml.XmlDsigXsltTransform", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXsltTransform.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXsltTransform.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.XmlLicenseTransform.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlLicenseTransform.cs#L14C9-L30C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlLicenseTransform.cs#L14C9-L30C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlLicenseTransform.GetInnerXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlLicenseTransform.cs#L106C13-L106C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlLicenseTransform.cs#L106C13-L106C25" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlLicenseTransform.GetOutput", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlLicenseTransform.cs#L111C13-L111C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlLicenseTransform.cs#L111C13-L111C30" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlLicenseTransform.GetOutput(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlLicenseTransform.cs#L116C13-L119C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlLicenseTransform.cs#L116C13-L119C32" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlLicenseTransform.LoadInnerXml(System.Xml.XmlNodeList)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlLicenseTransform.cs#L125C13-L127C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlLicenseTransform.cs#L125C13-L127C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlLicenseTransform.LoadInput(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlLicenseTransform.cs#L132C13-L183C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlLicenseTransform.cs#L132C13-L183C10" }, { "DocsId": "P:System.Security.Cryptography.Xml.XmlLicenseTransform.InputTypes", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlLicenseTransform.cs#L34C19-L34C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlLicenseTransform.cs#L34C19-L34C38" }, { "DocsId": "P:System.Security.Cryptography.Xml.XmlLicenseTransform.OutputTypes", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlLicenseTransform.cs#L39C19-L39C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlLicenseTransform.cs#L39C19-L39C39" }, { "DocsId": "P:System.Security.Cryptography.Xml.XmlLicenseTransform.Decryptor", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlLicenseTransform.cs#L44C19-L44C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlLicenseTransform.cs#L44C19-L44C40" } ], "DocsId": "T:System.Security.Cryptography.Xml.XmlLicenseTransform", - "SourceLink": "https://github.com/dotnet/runtime/blob/5535e31a712343a63f5d7d796cd874e563e5ac14/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlLicenseTransform.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/087e15321bb712ef6fe8b0ba6f8bd12facf92629/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlLicenseTransform.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/Microsoft.Bcl.TimeProvider.json b/xml/SourceLinkInformation/net-8.0/Microsoft.Bcl.TimeProvider.json index a39d2b975fc..190e69eddbe 100644 --- a/xml/SourceLinkInformation/net-8.0/Microsoft.Bcl.TimeProvider.json +++ b/xml/SourceLinkInformation/net-8.0/Microsoft.Bcl.TimeProvider.json @@ -1,29 +1,28 @@ { "Assembly": "Microsoft.Bcl.TimeProvider", - "GUID": "5D3220AFCCB64A2F83C32316E91A198EFFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "C695DDA9ABE74098AA5D56AD24B792CFFFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:System.Threading.Tasks.TimeProviderTaskExtensions.Delay(System.TimeProvider,System.TimeSpan,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Bcl.TimeProvider/src/System/Threading/Tasks/TimeProviderTaskExtensions.cs#L52C13-L52C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Bcl.TimeProvider/src/System/Threading/Tasks/TimeProviderTaskExtensions.cs#L52C13-L52C71" }, { "DocsId": "M:System.Threading.Tasks.TimeProviderTaskExtensions.WaitAsync(System.Threading.Tasks.Task,System.TimeSpan,System.TimeProvider,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Bcl.TimeProvider/src/System/Threading/Tasks/TimeProviderTaskExtensions.cs#L137C13-L137C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Bcl.TimeProvider/src/System/Threading/Tasks/TimeProviderTaskExtensions.cs#L137C13-L137C77" }, { "DocsId": "M:System.Threading.Tasks.TimeProviderTaskExtensions.WaitAsync``1(System.Threading.Tasks.Task{``0},System.TimeSpan,System.TimeProvider,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Bcl.TimeProvider/src/System/Threading/Tasks/TimeProviderTaskExtensions.cs#L233C16-L233C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Bcl.TimeProvider/src/System/Threading/Tasks/TimeProviderTaskExtensions.cs#L233C16-L233C72" }, { "DocsId": "M:System.Threading.Tasks.TimeProviderTaskExtensions.CreateCancellationTokenSource(System.TimeProvider,System.TimeSpan)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Bcl.TimeProvider/src/System/Threading/Tasks/TimeProviderTaskExtensions.cs#L261C13-L261C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Bcl.TimeProvider/src/System/Threading/Tasks/TimeProviderTaskExtensions.cs#L261C13-L261C69" } ], "DocsId": "T:System.Threading.Tasks.TimeProviderTaskExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Bcl.TimeProvider/src/System/Threading/Tasks/TimeProviderTaskExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Bcl.TimeProvider/src/System/Threading/Tasks/TimeProviderTaskExtensions.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.AmbientMetadata.Application.json b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.AmbientMetadata.Application.json index fbe4c7b9b5b..672506064e6 100644 --- a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.AmbientMetadata.Application.json +++ b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.AmbientMetadata.Application.json @@ -1,67 +1,66 @@ { "Assembly": "Microsoft.Extensions.AmbientMetadata.Application", - "GUID": "EB8B84EC3B1A413382C222E8E72A389CFFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "3517BE3308B14C69A4BFEB07AC40200BFFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ApplicationMetadataServiceCollectionExtensions.AddApplicationMetadata(Microsoft.Extensions.DependencyInjection.IServiceCollection,Microsoft.Extensions.Configuration.IConfigurationSection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.AmbientMetadata.Application/ApplicationMetadataServiceCollectionExtensions.cs#L25C9-L30C25" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.AmbientMetadata.Application/ApplicationMetadataServiceCollectionExtensions.cs#L25C9-L30C25" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ApplicationMetadataServiceCollectionExtensions.AddApplicationMetadata(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{Microsoft.Extensions.AmbientMetadata.ApplicationMetadata})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.AmbientMetadata.Application/ApplicationMetadataServiceCollectionExtensions.cs#L42C9-L47C25" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.AmbientMetadata.Application/ApplicationMetadataServiceCollectionExtensions.cs#L42C9-L47C25" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.ApplicationMetadataServiceCollectionExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.AmbientMetadata.Application/ApplicationMetadataServiceCollectionExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.AmbientMetadata.Application/ApplicationMetadataServiceCollectionExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Hosting.ApplicationMetadataHostBuilderExtensions.UseApplicationMetadata(Microsoft.Extensions.Hosting.IHostBuilder,System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.AmbientMetadata.Application/ApplicationMetadataHostBuilderExtensions.cs#L28C9-L33C175" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.AmbientMetadata.Application/ApplicationMetadataHostBuilderExtensions.cs#L16707566C0-L33C175" } ], "DocsId": "T:Microsoft.Extensions.Hosting.ApplicationMetadataHostBuilderExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.AmbientMetadata.Application/ApplicationMetadataHostBuilderExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.AmbientMetadata.Application/ApplicationMetadataHostBuilderExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.ApplicationMetadataConfigurationBuilderExtensions.AddApplicationMetadata(Microsoft.Extensions.Configuration.IConfigurationBuilder,Microsoft.Extensions.Hosting.IHostEnvironment,System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.AmbientMetadata.Application/ApplicationMetadataConfigurationBuilderExtensions.cs#L29C9-L33C89" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.AmbientMetadata.Application/ApplicationMetadataConfigurationBuilderExtensions.cs#L29C9-L33C89" } ], "DocsId": "T:Microsoft.Extensions.Configuration.ApplicationMetadataConfigurationBuilderExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.AmbientMetadata.Application/ApplicationMetadataConfigurationBuilderExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.AmbientMetadata.Application/ApplicationMetadataConfigurationBuilderExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AmbientMetadata.ApplicationMetadata.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.AmbientMetadata.Application/ApplicationMetadata.cs#L27C51-L33C63" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.AmbientMetadata.Application/ApplicationMetadata.cs#L27C51-L33C63" }, { "DocsId": "P:Microsoft.Extensions.AmbientMetadata.ApplicationMetadata.DeploymentRing", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.AmbientMetadata.Application/ApplicationMetadata.cs#L16C37-L16C41" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.AmbientMetadata.Application/ApplicationMetadata.cs#L16C37-L16C41" }, { "DocsId": "P:Microsoft.Extensions.AmbientMetadata.ApplicationMetadata.BuildVersion", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.AmbientMetadata.Application/ApplicationMetadata.cs#L21C35-L21C39" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.AmbientMetadata.Application/ApplicationMetadata.cs#L21C35-L21C39" }, { "DocsId": "P:Microsoft.Extensions.AmbientMetadata.ApplicationMetadata.ApplicationName", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.AmbientMetadata.Application/ApplicationMetadata.cs#L27C37-L27C41" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.AmbientMetadata.Application/ApplicationMetadata.cs#L27C37-L27C41" }, { "DocsId": "P:Microsoft.Extensions.AmbientMetadata.ApplicationMetadata.EnvironmentName", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.AmbientMetadata.Application/ApplicationMetadata.cs#L33C37-L33C41" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.AmbientMetadata.Application/ApplicationMetadata.cs#L33C37-L33C41" } ], "DocsId": "T:Microsoft.Extensions.AmbientMetadata.ApplicationMetadata", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.AmbientMetadata.Application/ApplicationMetadata.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.AmbientMetadata.Application/ApplicationMetadata.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.AsyncState.json b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.AsyncState.json index c641d88e4bd..9ce475ac9b4 100644 --- a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.AsyncState.json +++ b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.AsyncState.json @@ -1,96 +1,95 @@ { "Assembly": "Microsoft.Extensions.AsyncState", - "GUID": "313F59DA9D634C2CAD88DF7233F9707CFFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "8868D6FECC354707BD6D57794BFB6A8AFFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.AsyncStateExtensions.AddAsyncState(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.AsyncState/AsyncStateExtensions.cs#L25C9-L31C25" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.AsyncState/AsyncStateExtensions.cs#L25C9-L31C25" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.AsyncStateExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.AsyncState/AsyncStateExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.AsyncState/AsyncStateExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AsyncState.AsyncStateToken.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.AsyncState/AsyncStateToken.cs#L27C9-L27C62" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.AsyncState/AsyncStateToken.cs#L27C9-L27C62" }, { "DocsId": "M:Microsoft.Extensions.AsyncState.AsyncStateToken.Equals(Microsoft.Extensions.AsyncState.AsyncStateToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.AsyncState/AsyncStateToken.cs#L37C9-L37C37" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.AsyncState/AsyncStateToken.cs#L37C9-L37C37" }, { "DocsId": "M:Microsoft.Extensions.AsyncState.AsyncStateToken.GetHashCode", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.AsyncState/AsyncStateToken.cs#L46C9-L46C36" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.AsyncState/AsyncStateToken.cs#L46C9-L46C36" }, { "DocsId": "M:Microsoft.Extensions.AsyncState.AsyncStateToken.op_Equality(Microsoft.Extensions.AsyncState.AsyncStateToken,Microsoft.Extensions.AsyncState.AsyncStateToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.AsyncState/AsyncStateToken.cs#L57C9-L57C35" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.AsyncState/AsyncStateToken.cs#L57C9-L57C35" }, { "DocsId": "M:Microsoft.Extensions.AsyncState.AsyncStateToken.op_Inequality(Microsoft.Extensions.AsyncState.AsyncStateToken,Microsoft.Extensions.AsyncState.AsyncStateToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.AsyncState/AsyncStateToken.cs#L68C9-L68C33" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.AsyncState/AsyncStateToken.cs#L68C9-L68C33" } ], "DocsId": "T:Microsoft.Extensions.AsyncState.AsyncStateToken", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.AsyncState/AsyncStateToken.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.AsyncState/AsyncStateToken.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AsyncState.IAsyncContext`1.Get", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.AsyncState/IAsyncContext.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.AsyncState/IAsyncContext.cs" }, { "DocsId": "M:Microsoft.Extensions.AsyncState.IAsyncContext`1.Set(`0)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.AsyncState/IAsyncContext.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.AsyncState/IAsyncContext.cs" }, { "DocsId": "M:Microsoft.Extensions.AsyncState.IAsyncContext`1.TryGet(`0@)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.AsyncState/IAsyncContext.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.AsyncState/IAsyncContext.cs" } ], "DocsId": "T:Microsoft.Extensions.AsyncState.IAsyncContext`1", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.AsyncState/IAsyncContext.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.AsyncState/IAsyncContext.cs" }, { "Members": [], "DocsId": "T:Microsoft.Extensions.AsyncState.IAsyncLocalContext`1", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.AsyncState/IAsyncLocalContext.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.AsyncState/IAsyncLocalContext.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AsyncState.IAsyncState.Initialize", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.AsyncState/IAsyncState.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.AsyncState/IAsyncState.cs" }, { "DocsId": "M:Microsoft.Extensions.AsyncState.IAsyncState.Reset", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.AsyncState/IAsyncState.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.AsyncState/IAsyncState.cs" }, { "DocsId": "M:Microsoft.Extensions.AsyncState.IAsyncState.TryGet(Microsoft.Extensions.AsyncState.AsyncStateToken,System.Object@)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.AsyncState/IAsyncState.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.AsyncState/IAsyncState.cs" }, { "DocsId": "M:Microsoft.Extensions.AsyncState.IAsyncState.Get(Microsoft.Extensions.AsyncState.AsyncStateToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.AsyncState/IAsyncState.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.AsyncState/IAsyncState.cs" }, { "DocsId": "M:Microsoft.Extensions.AsyncState.IAsyncState.Set(Microsoft.Extensions.AsyncState.AsyncStateToken,System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.AsyncState/IAsyncState.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.AsyncState/IAsyncState.cs" }, { "DocsId": "M:Microsoft.Extensions.AsyncState.IAsyncState.RegisterAsyncContext", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.AsyncState/IAsyncState.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.AsyncState/IAsyncState.cs" } ], "DocsId": "T:Microsoft.Extensions.AsyncState.IAsyncState", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.AsyncState/IAsyncState.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.AsyncState/IAsyncState.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Caching.Memory.json b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Caching.Memory.json index ee82eacbcf9..89c3a70b8fc 100644 --- a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Caching.Memory.json +++ b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Caching.Memory.json @@ -1,189 +1,188 @@ { "Assembly": "Microsoft.Extensions.Caching.Memory", - "GUID": "C807BC9B3C374581946DF8F12F28B902FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "9A355FFA5DDE4C23834B2660C93B9F19FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.MemoryCacheServiceCollectionExtensions.AddMemoryCache(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCacheServiceCollectionExtensions.cs#L24C13-L29C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCacheServiceCollectionExtensions.cs#L24C13-L29C29" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.MemoryCacheServiceCollectionExtensions.AddMemoryCache(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{Microsoft.Extensions.Caching.Memory.MemoryCacheOptions})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCacheServiceCollectionExtensions.cs#L43C13-L49C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCacheServiceCollectionExtensions.cs#L43C13-L49C29" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.MemoryCacheServiceCollectionExtensions.AddDistributedMemoryCache(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCacheServiceCollectionExtensions.cs#L68C13-L73C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCacheServiceCollectionExtensions.cs#L68C13-L73C29" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.MemoryCacheServiceCollectionExtensions.AddDistributedMemoryCache(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{Microsoft.Extensions.Caching.Memory.MemoryDistributedCacheOptions})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCacheServiceCollectionExtensions.cs#L95C13-L101C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCacheServiceCollectionExtensions.cs#L95C13-L101C29" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.MemoryCacheServiceCollectionExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCacheServiceCollectionExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCacheServiceCollectionExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Caching.Distributed.MemoryDistributedCache.#ctor(Microsoft.Extensions.Options.IOptions{Microsoft.Extensions.Caching.Memory.MemoryDistributedCacheOptions})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryDistributedCache.cs#L26C15-L26C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryDistributedCache.cs#L26C15-L26C68" }, { "DocsId": "M:Microsoft.Extensions.Caching.Distributed.MemoryDistributedCache.#ctor(Microsoft.Extensions.Options.IOptions{Microsoft.Extensions.Caching.Memory.MemoryDistributedCacheOptions},Microsoft.Extensions.Logging.ILoggerFactory)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryDistributedCache.cs#L33C9-L39C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryDistributedCache.cs#L33C9-L39C10" }, { "DocsId": "M:Microsoft.Extensions.Caching.Distributed.MemoryDistributedCache.Get(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryDistributedCache.cs#L48C13-L50C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryDistributedCache.cs#L48C13-L50C48" }, { "DocsId": "M:Microsoft.Extensions.Caching.Distributed.MemoryDistributedCache.GetAsync(System.String,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryDistributedCache.cs#L61C13-L63C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryDistributedCache.cs#L61C13-L63C46" }, { "DocsId": "M:Microsoft.Extensions.Caching.Distributed.MemoryDistributedCache.Set(System.String,System.Byte[],Microsoft.Extensions.Caching.Distributed.DistributedCacheEntryOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryDistributedCache.cs#L74C13-L85C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryDistributedCache.cs#L74C13-L85C10" }, { "DocsId": "M:Microsoft.Extensions.Caching.Distributed.MemoryDistributedCache.SetAsync(System.String,System.Byte[],Microsoft.Extensions.Caching.Distributed.DistributedCacheEntryOptions,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryDistributedCache.cs#L97C13-L102C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryDistributedCache.cs#L97C13-L102C39" }, { "DocsId": "M:Microsoft.Extensions.Caching.Distributed.MemoryDistributedCache.Refresh(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryDistributedCache.cs#L111C13-L114C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryDistributedCache.cs#L111C13-L114C10" }, { "DocsId": "M:Microsoft.Extensions.Caching.Distributed.MemoryDistributedCache.RefreshAsync(System.String,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryDistributedCache.cs#L124C13-L127C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryDistributedCache.cs#L124C13-L127C39" }, { "DocsId": "M:Microsoft.Extensions.Caching.Distributed.MemoryDistributedCache.Remove(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryDistributedCache.cs#L136C13-L139C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryDistributedCache.cs#L136C13-L139C10" }, { "DocsId": "M:Microsoft.Extensions.Caching.Distributed.MemoryDistributedCache.RemoveAsync(System.String,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryDistributedCache.cs#L149C13-L152C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryDistributedCache.cs#L149C13-L152C39" } ], "DocsId": "T:Microsoft.Extensions.Caching.Distributed.MemoryDistributedCache", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryDistributedCache.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryDistributedCache.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Caching.Memory.MemoryCache.#ctor(Microsoft.Extensions.Options.IOptions{Microsoft.Extensions.Caching.Memory.MemoryCacheOptions})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCache.cs#L39C15-L39C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCache.cs#L39C15-L39C68" }, { "DocsId": "M:Microsoft.Extensions.Caching.Memory.MemoryCache.#ctor(Microsoft.Extensions.Options.IOptions{Microsoft.Extensions.Caching.Memory.MemoryCacheOptions},Microsoft.Extensions.Logging.ILoggerFactory)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCache.cs#L46C9-L65C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCache.cs#L46C9-L65C10" }, { "DocsId": "M:Microsoft.Extensions.Caching.Memory.MemoryCache.Finalize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCache.cs#L72C27-L72C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCache.cs#L72C27-L16707566C0" }, { "DocsId": "M:Microsoft.Extensions.Caching.Memory.MemoryCache.CreateEntry(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCache.cs#L106C13-L109C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCache.cs#L106C13-L109C46" }, { "DocsId": "M:Microsoft.Extensions.Caching.Memory.MemoryCache.TryGetValue(System.Object,System.Object@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCache.cs#L220C13-L275C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCache.cs#L220C13-L275C26" }, { "DocsId": "M:Microsoft.Extensions.Caching.Memory.MemoryCache.Remove(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCache.cs#L281C13-L298C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCache.cs#L281C13-L298C10" }, { "DocsId": "M:Microsoft.Extensions.Caching.Memory.MemoryCache.Clear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCache.cs#L305C13-L313C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCache.cs#L305C13-L313C10" }, { "DocsId": "M:Microsoft.Extensions.Caching.Memory.MemoryCache.GetCurrentStatistics", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCache.cs#L321C13-L333C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCache.cs#L321C13-L333C25" }, { "DocsId": "M:Microsoft.Extensions.Caching.Memory.MemoryCache.Compact(System.Double)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCache.cs#L517C13-L520C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCache.cs#L517C13-L520C10" }, { "DocsId": "M:Microsoft.Extensions.Caching.Memory.MemoryCache.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCache.cs#L607C13-L608C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCache.cs#L607C13-L608C10" }, { "DocsId": "M:Microsoft.Extensions.Caching.Memory.MemoryCache.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCache.cs#L616C13-L626C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCache.cs#L616C13-L626C10" }, { "DocsId": "P:Microsoft.Extensions.Caching.Memory.MemoryCache.Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCache.cs#L77C29-L77C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCache.cs#L77C29-L77C49" }, { "DocsId": "P:Microsoft.Extensions.Caching.Memory.MemoryCache.Keys", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCache.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCache.cs" } ], "DocsId": "T:Microsoft.Extensions.Caching.Memory.MemoryCache", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCache.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCache.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Caching.Memory.MemoryCacheOptions.Microsoft#Extensions#Options#IOptions#get_Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCacheOptions.cs#L89C19-L89C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCacheOptions.cs#L89C19-L89C31" }, { "DocsId": "M:Microsoft.Extensions.Caching.Memory.MemoryCacheOptions.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCacheOptions.cs#L16C9-L29C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCacheOptions.cs#L16C9-L29C88" }, { "DocsId": "P:Microsoft.Extensions.Caching.Memory.MemoryCacheOptions.Clock", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCacheOptions.cs#L24C38-L24C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCacheOptions.cs#L24C38-L24C42" }, { "DocsId": "P:Microsoft.Extensions.Caching.Memory.MemoryCacheOptions.ExpirationScanFrequency", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCacheOptions.cs#L29C51-L29C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCacheOptions.cs#L29C51-L29C55" }, { "DocsId": "P:Microsoft.Extensions.Caching.Memory.MemoryCacheOptions.SizeLimit", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCacheOptions.cs#L40C20-L40C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCacheOptions.cs#L40C20-L40C54" }, { "DocsId": "P:Microsoft.Extensions.Caching.Memory.MemoryCacheOptions.CompactOnMemoryPressure", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCacheOptions.cs#L57C47-L57C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCacheOptions.cs#L57C47-L57C51" }, { "DocsId": "P:Microsoft.Extensions.Caching.Memory.MemoryCacheOptions.CompactionPercentage", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCacheOptions.cs#L64C20-L64C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCacheOptions.cs#L64C20-L64C41" }, { "DocsId": "P:Microsoft.Extensions.Caching.Memory.MemoryCacheOptions.TrackLinkedCacheEntries", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCacheOptions.cs#L80C47-L80C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCacheOptions.cs#L80C47-L80C51" }, { "DocsId": "P:Microsoft.Extensions.Caching.Memory.MemoryCacheOptions.TrackStatistics", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCacheOptions.cs#L85C39-L85C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCacheOptions.cs#L85C39-L85C43" }, { "DocsId": "P:Microsoft.Extensions.Caching.Memory.MemoryCacheOptions.Microsoft#Extensions#Options#IOptions#Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCacheOptions.cs#L89C19-L89C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCacheOptions.cs#L89C19-L89C31" } ], "DocsId": "T:Microsoft.Extensions.Caching.Memory.MemoryCacheOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCacheOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCacheOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Caching.Memory.MemoryDistributedCacheOptions.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryDistributedCacheOptions.cs#L15C15-L19C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryDistributedCacheOptions.cs#L15C15-L19C10" } ], "DocsId": "T:Microsoft.Extensions.Caching.Memory.MemoryDistributedCacheOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryDistributedCacheOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryDistributedCacheOptions.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Caching.SqlServer.json b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Caching.SqlServer.json index a3ae6a91a10..211e3813870 100644 --- a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Caching.SqlServer.json +++ b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Caching.SqlServer.json @@ -1,101 +1,100 @@ { "Assembly": "Microsoft.Extensions.Caching.SqlServer", - "GUID": "B5D8258144CD4EAD88D338B498023922FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "C858615BD4BF40128E2337825D2A044AFFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.SqlServerCachingServicesExtensions.AddDistributedSqlServerCache(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{Microsoft.Extensions.Caching.SqlServer.SqlServerCacheOptions})", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Caching/SqlServer/src/SqlServerCachingServicesExtensions.cs#L24C9-L31C25" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Caching/SqlServer/src/SqlServerCachingServicesExtensions.cs#L24C9-L31C25" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.SqlServerCachingServicesExtensions", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Caching/SqlServer/src/SqlServerCachingServicesExtensions.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Caching/SqlServer/src/SqlServerCachingServicesExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Caching.SqlServer.SqlServerCache.#ctor(Microsoft.Extensions.Options.IOptions{Microsoft.Extensions.Caching.SqlServer.SqlServerCacheOptions})", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Caching/SqlServer/src/SqlServerCache.cs#L28C5-L81C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Caching/SqlServer/src/SqlServerCache.cs#L28C5-L81C6" }, { "DocsId": "M:Microsoft.Extensions.Caching.SqlServer.SqlServerCache.Get(System.String)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Caching/SqlServer/src/SqlServerCache.cs#L86C9-L92C22" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Caching/SqlServer/src/SqlServerCache.cs#L86C9-L92C22" }, { "DocsId": "M:Microsoft.Extensions.Caching.SqlServer.SqlServerCache.GetAsync(System.String,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Caching/SqlServer/src/SqlServerCache.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Caching/SqlServer/src/SqlServerCache.cs" }, { "DocsId": "M:Microsoft.Extensions.Caching.SqlServer.SqlServerCache.Refresh(System.String)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Caching/SqlServer/src/SqlServerCache.cs#L112C9-L117C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Caching/SqlServer/src/SqlServerCache.cs#L112C9-L117C6" }, { "DocsId": "M:Microsoft.Extensions.Caching.SqlServer.SqlServerCache.RefreshAsync(System.String,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Caching/SqlServer/src/SqlServerCache.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Caching/SqlServer/src/SqlServerCache.cs" }, { "DocsId": "M:Microsoft.Extensions.Caching.SqlServer.SqlServerCache.Remove(System.String)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Caching/SqlServer/src/SqlServerCache.cs#L134C9-L139C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Caching/SqlServer/src/SqlServerCache.cs#L134C9-L139C6" }, { "DocsId": "M:Microsoft.Extensions.Caching.SqlServer.SqlServerCache.RemoveAsync(System.String,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Caching/SqlServer/src/SqlServerCache.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Caching/SqlServer/src/SqlServerCache.cs" }, { "DocsId": "M:Microsoft.Extensions.Caching.SqlServer.SqlServerCache.Set(System.String,System.Byte[],Microsoft.Extensions.Caching.Distributed.DistributedCacheEntryOptions)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Caching/SqlServer/src/SqlServerCache.cs#L156C9-L165C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Caching/SqlServer/src/SqlServerCache.cs#L156C9-L165C6" }, { "DocsId": "M:Microsoft.Extensions.Caching.SqlServer.SqlServerCache.SetAsync(System.String,System.Byte[],Microsoft.Extensions.Caching.Distributed.DistributedCacheEntryOptions,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Caching/SqlServer/src/SqlServerCache.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Caching/SqlServer/src/SqlServerCache.cs" } ], "DocsId": "T:Microsoft.Extensions.Caching.SqlServer.SqlServerCache", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Caching/SqlServer/src/SqlServerCache.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Caching/SqlServer/src/SqlServerCache.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Caching.SqlServer.SqlServerCacheOptions.Microsoft#Extensions#Options#IOptions#get_Value", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Caching/SqlServer/src/SqlServerCacheOptions.cs#L50C13-L50C25" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Caching/SqlServer/src/SqlServerCacheOptions.cs#L50C13-L50C25" }, { "DocsId": "M:Microsoft.Extensions.Caching.SqlServer.SqlServerCacheOptions.#ctor", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Caching/SqlServer/src/SqlServerCacheOptions.cs#L18C53-L44C86" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Caching/SqlServer/src/SqlServerCacheOptions.cs#L18C53-L44C86" }, { "DocsId": "P:Microsoft.Extensions.Caching.SqlServer.SqlServerCacheOptions.SystemClock", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Caching/SqlServer/src/SqlServerCacheOptions.cs#L18C39-L18C43" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Caching/SqlServer/src/SqlServerCacheOptions.cs#L18C39-L18C43" }, { "DocsId": "P:Microsoft.Extensions.Caching.SqlServer.SqlServerCacheOptions.ExpiredItemsDeletionInterval", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Caching/SqlServer/src/SqlServerCacheOptions.cs#L23C53-L23C57" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Caching/SqlServer/src/SqlServerCacheOptions.cs#L23C53-L23C57" }, { "DocsId": "P:Microsoft.Extensions.Caching.SqlServer.SqlServerCacheOptions.ConnectionString", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Caching/SqlServer/src/SqlServerCacheOptions.cs#L28C39-L28C43" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Caching/SqlServer/src/SqlServerCacheOptions.cs#L28C39-L28C43" }, { "DocsId": "P:Microsoft.Extensions.Caching.SqlServer.SqlServerCacheOptions.SchemaName", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Caching/SqlServer/src/SqlServerCacheOptions.cs#L33C33-L33C37" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Caching/SqlServer/src/SqlServerCacheOptions.cs#L33C33-L33C37" }, { "DocsId": "P:Microsoft.Extensions.Caching.SqlServer.SqlServerCacheOptions.TableName", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Caching/SqlServer/src/SqlServerCacheOptions.cs#L38C32-L38C36" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Caching/SqlServer/src/SqlServerCacheOptions.cs#L38C32-L38C36" }, { "DocsId": "P:Microsoft.Extensions.Caching.SqlServer.SqlServerCacheOptions.DefaultSlidingExpiration", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Caching/SqlServer/src/SqlServerCacheOptions.cs#L44C48-L44C52" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Caching/SqlServer/src/SqlServerCacheOptions.cs#L44C48-L44C52" }, { "DocsId": "P:Microsoft.Extensions.Caching.SqlServer.SqlServerCacheOptions.Microsoft#Extensions#Options#IOptions#Value", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Caching/SqlServer/src/SqlServerCacheOptions.cs#L50C13-L50C25" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Caching/SqlServer/src/SqlServerCacheOptions.cs#L50C13-L50C25" } ], "DocsId": "T:Microsoft.Extensions.Caching.SqlServer.SqlServerCacheOptions", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Caching/SqlServer/src/SqlServerCacheOptions.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Caching/SqlServer/src/SqlServerCacheOptions.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Caching.StackExchangeRedis.json b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Caching.StackExchangeRedis.json index 7157efb59e2..64913432e85 100644 --- a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Caching.StackExchangeRedis.json +++ b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Caching.StackExchangeRedis.json @@ -1,101 +1,100 @@ { "Assembly": "Microsoft.Extensions.Caching.StackExchangeRedis", - "GUID": "5B4DA7D88EA446FC8C9110BC93B8D5B6FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "F34CAC34919146A3A5C01ED0D4EBF44AFFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.StackExchangeRedisCacheServiceCollectionExtensions.AddStackExchangeRedisCache(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{Microsoft.Extensions.Caching.StackExchangeRedis.RedisCacheOptions})", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Caching/StackExchangeRedis/src/StackExchangeRedisCacheServiceCollectionExtensions.cs#L26C9-L34C25" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Caching/StackExchangeRedis/src/StackExchangeRedisCacheServiceCollectionExtensions.cs#L26C9-L34C25" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.StackExchangeRedisCacheServiceCollectionExtensions", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Caching/StackExchangeRedis/src/StackExchangeRedisCacheServiceCollectionExtensions.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Caching/StackExchangeRedis/src/StackExchangeRedisCacheServiceCollectionExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Caching.StackExchangeRedis.RedisCache.#ctor(Microsoft.Extensions.Options.IOptions{Microsoft.Extensions.Caching.StackExchangeRedis.RedisCacheOptions})", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Caching/StackExchangeRedis/src/RedisCache.cs#L111C11-L113C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Caching/StackExchangeRedis/src/RedisCache.cs#L111C11-L113C6" }, { "DocsId": "M:Microsoft.Extensions.Caching.StackExchangeRedis.RedisCache.Get(System.String)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Caching/StackExchangeRedis/src/RedisCache.cs#L142C9-L144C50" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Caching/StackExchangeRedis/src/RedisCache.cs#L142C9-L144C50" }, { "DocsId": "M:Microsoft.Extensions.Caching.StackExchangeRedis.RedisCache.GetAsync(System.String,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Caching/StackExchangeRedis/src/RedisCache.Log.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Caching/StackExchangeRedis/src/RedisCache.Log.cs" }, { "DocsId": "M:Microsoft.Extensions.Caching.StackExchangeRedis.RedisCache.Set(System.String,System.Byte[],Microsoft.Extensions.Caching.Distributed.DistributedCacheEntryOptions)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Caching/StackExchangeRedis/src/RedisCache.cs#L160C9-L186C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Caching/StackExchangeRedis/src/RedisCache.cs#L160C9-L186C6" }, { "DocsId": "M:Microsoft.Extensions.Caching.StackExchangeRedis.RedisCache.SetAsync(System.String,System.Byte[],Microsoft.Extensions.Caching.Distributed.DistributedCacheEntryOptions,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Caching/StackExchangeRedis/src/RedisCache.Log.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Caching/StackExchangeRedis/src/RedisCache.Log.cs" }, { "DocsId": "M:Microsoft.Extensions.Caching.StackExchangeRedis.RedisCache.Refresh(System.String)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Caching/StackExchangeRedis/src/RedisCache.cs#L225C9-L228C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Caching/StackExchangeRedis/src/RedisCache.cs#L225C9-L228C6" }, { "DocsId": "M:Microsoft.Extensions.Caching.StackExchangeRedis.RedisCache.RefreshAsync(System.String,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Caching/StackExchangeRedis/src/RedisCache.Log.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Caching/StackExchangeRedis/src/RedisCache.Log.cs" }, { "DocsId": "M:Microsoft.Extensions.Caching.StackExchangeRedis.RedisCache.Remove(System.String)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Caching/StackExchangeRedis/src/RedisCache.cs#L451C9-L463C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Caching/StackExchangeRedis/src/RedisCache.cs#L451C9-L463C6" }, { "DocsId": "M:Microsoft.Extensions.Caching.StackExchangeRedis.RedisCache.RemoveAsync(System.String,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Caching/StackExchangeRedis/src/RedisCache.Log.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Caching/StackExchangeRedis/src/RedisCache.Log.cs" }, { "DocsId": "M:Microsoft.Extensions.Caching.StackExchangeRedis.RedisCache.Dispose", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Caching/StackExchangeRedis/src/RedisCache.cs#L602C9-L610C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Caching/StackExchangeRedis/src/RedisCache.cs#L602C9-L610C6" } ], "DocsId": "T:Microsoft.Extensions.Caching.StackExchangeRedis.RedisCache", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Caching/StackExchangeRedis/src/RedisCache.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Caching/StackExchangeRedis/src/RedisCache.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Caching.StackExchangeRedis.RedisCacheOptions.Microsoft#Extensions#Options#IOptions#get_Value", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Caching/StackExchangeRedis/src/RedisCacheOptions.cs#L47C15-L47C27" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Caching/StackExchangeRedis/src/RedisCacheOptions.cs#L47C15-L47C27" }, { "DocsId": "M:Microsoft.Extensions.Caching.StackExchangeRedis.RedisCacheOptions.#ctor", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Caching/StackExchangeRedis/src/RedisCacheOptions.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Caching/StackExchangeRedis/src/RedisCacheOptions.cs" }, { "DocsId": "P:Microsoft.Extensions.Caching.StackExchangeRedis.RedisCacheOptions.Configuration", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Caching/StackExchangeRedis/src/RedisCacheOptions.cs#L21C36-L21C40" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Caching/StackExchangeRedis/src/RedisCacheOptions.cs#L21C36-L21C40" }, { "DocsId": "P:Microsoft.Extensions.Caching.StackExchangeRedis.RedisCacheOptions.ConfigurationOptions", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Caching/StackExchangeRedis/src/RedisCacheOptions.cs#L27C57-L27C61" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Caching/StackExchangeRedis/src/RedisCacheOptions.cs#L27C57-L27C61" }, { "DocsId": "P:Microsoft.Extensions.Caching.StackExchangeRedis.RedisCacheOptions.ConnectionMultiplexerFactory", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Caching/StackExchangeRedis/src/RedisCacheOptions.cs#L32C79-L32C83" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Caching/StackExchangeRedis/src/RedisCacheOptions.cs#L32C79-L32C83" }, { "DocsId": "P:Microsoft.Extensions.Caching.StackExchangeRedis.RedisCacheOptions.InstanceName", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Caching/StackExchangeRedis/src/RedisCacheOptions.cs#L38C35-L38C39" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Caching/StackExchangeRedis/src/RedisCacheOptions.cs#L38C35-L38C39" }, { "DocsId": "P:Microsoft.Extensions.Caching.StackExchangeRedis.RedisCacheOptions.ProfilingSession", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Caching/StackExchangeRedis/src/RedisCacheOptions.cs#L43C55-L43C59" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Caching/StackExchangeRedis/src/RedisCacheOptions.cs#L43C55-L43C59" }, { "DocsId": "P:Microsoft.Extensions.Caching.StackExchangeRedis.RedisCacheOptions.Microsoft#Extensions#Options#IOptions#Value", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Caching/StackExchangeRedis/src/RedisCacheOptions.cs#L47C15-L47C27" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Caching/StackExchangeRedis/src/RedisCacheOptions.cs#L47C15-L47C27" } ], "DocsId": "T:Microsoft.Extensions.Caching.StackExchangeRedis.RedisCacheOptions", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Caching/StackExchangeRedis/src/RedisCacheOptions.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Caching/StackExchangeRedis/src/RedisCacheOptions.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Compliance.Abstractions.json b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Compliance.Abstractions.json index 8e75f5f0280..907abb3d6f7 100644 --- a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Compliance.Abstractions.json +++ b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Compliance.Abstractions.json @@ -1,273 +1,272 @@ { "Assembly": "Microsoft.Extensions.Compliance.Abstractions", - "GUID": "E1FF2846CCF94ECFA0035835834EC467FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "6189042A76894CA2B05ECB005BA68A07FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:System.Text.RedactionStringBuilderExtensions.AppendRedacted(System.Text.StringBuilder,Microsoft.Extensions.Compliance.Redaction.Redactor,System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/RedactionStringBuilderExtensions.cs#L34C12-L34C66" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/RedactionStringBuilderExtensions.cs#L34C12-L34C66" }, { "DocsId": "M:System.Text.RedactionStringBuilderExtensions.AppendRedacted(System.Text.StringBuilder,Microsoft.Extensions.Compliance.Redaction.Redactor,System.ReadOnlySpan{System.Char})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/RedactionStringBuilderExtensions.cs#L48C9-L66C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/RedactionStringBuilderExtensions.cs#L48C9-L66C6" } ], "DocsId": "T:System.Text.RedactionStringBuilderExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/RedactionStringBuilderExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/RedactionStringBuilderExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Compliance.Redaction.IRedactionBuilder.SetRedactor``1(Microsoft.Extensions.Compliance.Classification.DataClassificationSet[])", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/IRedactionBuilder.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/IRedactionBuilder.cs" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Redaction.IRedactionBuilder.SetFallbackRedactor``1", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/IRedactionBuilder.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/IRedactionBuilder.cs" }, { "DocsId": "P:Microsoft.Extensions.Compliance.Redaction.IRedactionBuilder.Services", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/IRedactionBuilder.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/IRedactionBuilder.cs" } ], "DocsId": "T:Microsoft.Extensions.Compliance.Redaction.IRedactionBuilder", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/IRedactionBuilder.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/IRedactionBuilder.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Compliance.Redaction.IRedactorProvider.GetRedactor(Microsoft.Extensions.Compliance.Classification.DataClassificationSet)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/IRedactorProvider.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/IRedactorProvider.cs" } ], "DocsId": "T:Microsoft.Extensions.Compliance.Redaction.IRedactorProvider", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/IRedactorProvider.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/IRedactorProvider.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Compliance.Redaction.NullRedactor.GetRedactedLength(System.ReadOnlySpan{System.Char})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/NullRedactor.cs#L20C72-L20C84" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/NullRedactor.cs#L20C72-L20C84" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Redaction.NullRedactor.Redact(System.ReadOnlySpan{System.Char},System.Span{System.Char})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/NullRedactor.cs#L25C9-L31C30" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/NullRedactor.cs#L25C9-L31C30" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Redaction.NullRedactor.Redact(System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/NullRedactor.cs#L35C54-L35C76" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/NullRedactor.cs#L35C54-L35C76" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Redaction.NullRedactor.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/NullRedactor.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/NullRedactor.cs" }, { "DocsId": "P:Microsoft.Extensions.Compliance.Redaction.NullRedactor.Instance", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/NullRedactor.cs#L17C43-L17C47" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/NullRedactor.cs#L17C43-L17C47" } ], "DocsId": "T:Microsoft.Extensions.Compliance.Redaction.NullRedactor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/NullRedactor.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/NullRedactor.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Compliance.Redaction.NullRedactorProvider.GetRedactor(Microsoft.Extensions.Compliance.Classification.DataClassificationSet)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/NullRedactorProvider.cs#L19C75-L19C96" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/NullRedactorProvider.cs#L19C75-L19C96" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Redaction.NullRedactorProvider.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/NullRedactorProvider.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/NullRedactorProvider.cs" }, { "DocsId": "P:Microsoft.Extensions.Compliance.Redaction.NullRedactorProvider.Instance", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/NullRedactorProvider.cs#L16C51-L16C55" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/NullRedactorProvider.cs#L16C51-L16C55" } ], "DocsId": "T:Microsoft.Extensions.Compliance.Redaction.NullRedactorProvider", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/NullRedactorProvider.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/NullRedactorProvider.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Compliance.Redaction.Redactor.Redact(System.ReadOnlySpan{System.Char})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/Redactor.cs#L30C9-L44C116" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/Redactor.cs#L30C9-L44C116" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Redaction.Redactor.Redact(System.ReadOnlySpan{System.Char},System.Span{System.Char})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/Redactor.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/Redactor.cs" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Redaction.Redactor.Redact(System.String,System.Span{System.Char})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/Redactor.cs#L83C66-L83C102" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/Redactor.cs#L83C66-L83C102" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Redaction.Redactor.Redact(System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/Redactor.cs#L94C53-L94C76" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/Redactor.cs#L94C53-L94C76" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Redaction.Redactor.Redact``1(``0,System.String,System.IFormatProvider)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/Redactor.cs#L112C9-L153C42" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/Redactor.cs#L112C9-L153C42" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Redaction.Redactor.Redact``1(``0,System.Span{System.Char},System.String,System.IFormatProvider)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/Redactor.cs#L174C9-L204C55" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/Redactor.cs#L174C9-L204C55" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Redaction.Redactor.TryRedact``1(``0,System.Span{System.Char},System.Int32@,System.ReadOnlySpan{System.Char},System.IFormatProvider)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/Redactor.cs#L225C9-L284C21" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/Redactor.cs#L225C9-L284C21" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Redaction.Redactor.GetRedactedLength(System.ReadOnlySpan{System.Char})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/Redactor.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/Redactor.cs" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Redaction.Redactor.GetRedactedLength(System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/Redactor.cs#L299C52-L299C85" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/Redactor.cs#L299C52-L299C85" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Redaction.Redactor.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/Redactor.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/Redactor.cs" } ], "DocsId": "T:Microsoft.Extensions.Compliance.Redaction.Redactor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/Redactor.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/Redactor.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Compliance.Classification.DataClassification.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassification.cs#L41C9-L43C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassification.cs#L41C9-L43C6" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Classification.DataClassification.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassification.cs#L56C49-L56C93" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassification.cs#L56C49-L56C93" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Classification.DataClassification.Equals(Microsoft.Extensions.Compliance.Classification.DataClassification)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassification.cs#L63C53-L63C111" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassification.cs#L63C53-L63C111" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Classification.DataClassification.GetHashCode", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassification.cs#L69C42-L69C79" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassification.cs#L69C42-L69C79" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Classification.DataClassification.op_Equality(Microsoft.Extensions.Compliance.Classification.DataClassification,Microsoft.Extensions.Compliance.Classification.DataClassification)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassification.cs#L79C9-L79C35" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassification.cs#L79C9-L79C35" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Classification.DataClassification.op_Inequality(Microsoft.Extensions.Compliance.Classification.DataClassification,Microsoft.Extensions.Compliance.Classification.DataClassification)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassification.cs#L90C9-L90C36" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassification.cs#L90C9-L90C36" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Classification.DataClassification.ToString", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassification.cs#L97C42-L97C117" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassification.cs#L97C42-L97C117" }, { "DocsId": "P:Microsoft.Extensions.Compliance.Classification.DataClassification.None", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassification.cs#L17C46-L17C63" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassification.cs#L17C46-L17C63" }, { "DocsId": "P:Microsoft.Extensions.Compliance.Classification.DataClassification.Unknown", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassification.cs#L22C49-L22C69" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassification.cs#L22C49-L22C69" }, { "DocsId": "P:Microsoft.Extensions.Compliance.Classification.DataClassification.TaxonomyName", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassification.cs#L27C34-L27C38" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassification.cs#L27C34-L27C38" }, { "DocsId": "P:Microsoft.Extensions.Compliance.Classification.DataClassification.Value", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassification.cs#L32C27-L32C31" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassification.cs#L32C27-L32C31" } ], "DocsId": "T:Microsoft.Extensions.Compliance.Classification.DataClassification", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassification.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassification.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Compliance.Classification.DataClassificationAttribute.#ctor(Microsoft.Extensions.Compliance.Classification.DataClassification)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassificationAttribute.cs#L29C41-L43C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassificationAttribute.cs#L29C41-L43C6" }, { "DocsId": "P:Microsoft.Extensions.Compliance.Classification.DataClassificationAttribute.Notes", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassificationAttribute.cs#L29C27-L29C31" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassificationAttribute.cs#L29C27-L29C31" }, { "DocsId": "P:Microsoft.Extensions.Compliance.Classification.DataClassificationAttribute.Classification", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassificationAttribute.cs#L34C48-L34C52" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassificationAttribute.cs#L34C48-L34C52" } ], "DocsId": "T:Microsoft.Extensions.Compliance.Classification.DataClassificationAttribute", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassificationAttribute.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassificationAttribute.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Compliance.Classification.DataClassificationSet.#ctor(Microsoft.Extensions.Compliance.Classification.DataClassification)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassificationSet.cs#L17C5-L28C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassificationSet.cs#L17C5-L28C6" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Classification.DataClassificationSet.#ctor(System.Collections.Generic.IEnumerable{Microsoft.Extensions.Compliance.Classification.DataClassification})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassificationSet.cs#L17C5-L39C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassificationSet.cs#L17C5-L39C6" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Classification.DataClassificationSet.#ctor(Microsoft.Extensions.Compliance.Classification.DataClassification[])", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassificationSet.cs#L17C5-L50C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassificationSet.cs#L17C5-L50C6" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Classification.DataClassificationSet.op_Implicit(Microsoft.Extensions.Compliance.Classification.DataClassification)~Microsoft.Extensions.Compliance.Classification.DataClassificationSet", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassificationSet.cs#L58C9-L58C55" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassificationSet.cs#L58C9-L58C55" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Classification.DataClassificationSet.FromDataClassification(Microsoft.Extensions.Compliance.Classification.DataClassification)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassificationSet.cs#L66C102-L66C121" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassificationSet.cs#L66C102-L66C121" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Classification.DataClassificationSet.Union(Microsoft.Extensions.Compliance.Classification.DataClassificationSet)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassificationSet.cs#L78C9-L83C67" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassificationSet.cs#L78C9-L83C67" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Classification.DataClassificationSet.GetHashCode", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassificationSet.cs#L90C42-L90C57" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassificationSet.cs#L90C42-L90C57" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Classification.DataClassificationSet.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassificationSet.cs#L97C49-L97C85" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassificationSet.cs#L97C49-L97C85" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Classification.DataClassificationSet.Equals(Microsoft.Extensions.Compliance.Classification.DataClassificationSet)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassificationSet.cs#L104C57-L104C124" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassificationSet.cs#L104C57-L104C124" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Classification.DataClassificationSet.ToString", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassificationSet.cs#L112C9-L136C23" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassificationSet.cs#L112C9-L136C23" } ], "DocsId": "T:Microsoft.Extensions.Compliance.Classification.DataClassificationSet", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassificationSet.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassificationSet.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Compliance.Classification.NoDataClassificationAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/NoDataClassificationAttribute.cs#L15C11-L17C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/NoDataClassificationAttribute.cs#L15C11-L17C6" } ], "DocsId": "T:Microsoft.Extensions.Compliance.Classification.NoDataClassificationAttribute", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/NoDataClassificationAttribute.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/NoDataClassificationAttribute.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Compliance.Classification.UnknownDataClassificationAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/UnknownDataClassificationAttribute.cs#L15C11-L17C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/UnknownDataClassificationAttribute.cs#L15C11-L17C6" } ], "DocsId": "T:Microsoft.Extensions.Compliance.Classification.UnknownDataClassificationAttribute", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/UnknownDataClassificationAttribute.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/UnknownDataClassificationAttribute.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Compliance.Redaction.json b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Compliance.Redaction.json index b1c0bbf6137..ae39ac469a1 100644 --- a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Compliance.Redaction.json +++ b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Compliance.Redaction.json @@ -1,93 +1,92 @@ { "Assembly": "Microsoft.Extensions.Compliance.Redaction", - "GUID": "BB88D92B00E04E168E2AB90CE3A995DFFFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "5D78626EAB274EABB65DCD9CEECC64E3FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.RedactionServiceCollectionExtensions.AddRedaction(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Redaction/RedactionServiceCollectionExtensions.cs#L23C12-L23C57" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Redaction/RedactionServiceCollectionExtensions.cs#L23C12-L23C57" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.RedactionServiceCollectionExtensions.AddRedaction(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{Microsoft.Extensions.Compliance.Redaction.IRedactionBuilder})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Redaction/RedactionServiceCollectionExtensions.cs#L35C9-L45C25" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Redaction/RedactionServiceCollectionExtensions.cs#L35C9-L45C25" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.RedactionServiceCollectionExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Redaction/RedactionServiceCollectionExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Redaction/RedactionServiceCollectionExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Compliance.Redaction.ErasingRedactor.Redact(System.ReadOnlySpan{System.Char},System.Span{System.Char})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Redaction/ErasingRedactor.cs#L19C86-L19C87" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Redaction/ErasingRedactor.cs#L19C86-L19C87" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Redaction.ErasingRedactor.GetRedactedLength(System.ReadOnlySpan{System.Char})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Redaction/ErasingRedactor.cs#L22C72-L22C73" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Redaction/ErasingRedactor.cs#L22C72-L22C73" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Redaction.ErasingRedactor.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Redaction/ErasingRedactor.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Redaction/ErasingRedactor.cs" }, { "DocsId": "P:Microsoft.Extensions.Compliance.Redaction.ErasingRedactor.Instance", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Redaction/ErasingRedactor.cs#L16C46-L16C50" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Redaction/ErasingRedactor.cs#L16C46-L16C50" } ], "DocsId": "T:Microsoft.Extensions.Compliance.Redaction.ErasingRedactor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Redaction/ErasingRedactor.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Redaction/ErasingRedactor.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Compliance.Redaction.HmacRedactor.#ctor(Microsoft.Extensions.Options.IOptions{Microsoft.Extensions.Compliance.Redaction.HmacRedactorOptions})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Redaction/HmacRedactor.cs#L43C5-L50C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Redaction/HmacRedactor.cs#L43C5-L50C6" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Redaction.HmacRedactor.GetRedactedLength(System.ReadOnlySpan{System.Char})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Redaction/HmacRedactor.cs#L55C9-L60C32" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Redaction/HmacRedactor.cs#L55C9-L60C32" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Redaction.HmacRedactor.Redact(System.ReadOnlySpan{System.Char},System.Span{System.Char})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Redaction/HmacRedactor.cs#L67C9-L76C97" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Redaction/HmacRedactor.cs#L67C9-L76C97" } ], "DocsId": "T:Microsoft.Extensions.Compliance.Redaction.HmacRedactor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Redaction/HmacRedactor.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Redaction/HmacRedactor.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Compliance.Redaction.HmacRedactorOptions.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Redaction/HmacRedactorOptions.cs#L45C39-L45C51" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Redaction/HmacRedactorOptions.cs#L45C39-L45C51" }, { "DocsId": "P:Microsoft.Extensions.Compliance.Redaction.HmacRedactorOptions.KeyId", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Redaction/HmacRedactorOptions.cs#L24C25-L24C29" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Redaction/HmacRedactorOptions.cs#L24C25-L24C29" }, { "DocsId": "P:Microsoft.Extensions.Compliance.Redaction.HmacRedactorOptions.Key", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Redaction/HmacRedactorOptions.cs#L45C25-L45C29" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Redaction/HmacRedactorOptions.cs#L45C25-L45C29" } ], "DocsId": "T:Microsoft.Extensions.Compliance.Redaction.HmacRedactorOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Redaction/HmacRedactorOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Redaction/HmacRedactorOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Compliance.Redaction.RedactionExtensions.SetHmacRedactor(Microsoft.Extensions.Compliance.Redaction.IRedactionBuilder,System.Action{Microsoft.Extensions.Compliance.Redaction.HmacRedactorOptions},Microsoft.Extensions.Compliance.Classification.DataClassificationSet[])", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Redaction/RedactionExtensions.cs#L27C9-L36C67" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Redaction/RedactionExtensions.cs#L27C9-L36C67" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Redaction.RedactionExtensions.SetHmacRedactor(Microsoft.Extensions.Compliance.Redaction.IRedactionBuilder,Microsoft.Extensions.Configuration.IConfigurationSection,Microsoft.Extensions.Compliance.Classification.DataClassificationSet[])", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Redaction/RedactionExtensions.cs#L49C9-L57C67" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Redaction/RedactionExtensions.cs#L49C9-L57C67" } ], "DocsId": "T:Microsoft.Extensions.Compliance.Redaction.RedactionExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Redaction/RedactionExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Redaction/RedactionExtensions.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Compliance.Testing.json b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Compliance.Testing.json index 920a8d9cd07..3f0a9d7b858 100644 --- a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Compliance.Testing.json +++ b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Compliance.Testing.json @@ -1,251 +1,250 @@ { "Assembly": "Microsoft.Extensions.Compliance.Testing", - "GUID": "D680BA2828DA4B8AB33CA9D5B7DABF17FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "577D265DB11B432084BBE75B9DD4E0B7FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:System.FakeRedactionServiceProviderExtensions.GetFakeRedactionCollector(System.IServiceProvider)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactionServiceProviderExtensions.cs#L26C12-L26C86" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactionServiceProviderExtensions.cs#L26C12-L26C86" } ], "DocsId": "T:System.FakeRedactionServiceProviderExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactionServiceProviderExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactionServiceProviderExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.FakeRedactionServiceCollectionExtensions.AddFakeRedaction(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactionServiceCollectionExtensions.cs#L26C9-L39C23" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactionServiceCollectionExtensions.cs#L26C9-L39C23" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.FakeRedactionServiceCollectionExtensions.AddFakeRedaction(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{Microsoft.Extensions.Compliance.Testing.FakeRedactorOptions})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactionServiceCollectionExtensions.cs#L51C9-L67C23" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactionServiceCollectionExtensions.cs#L51C9-L67C23" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.FakeRedactionServiceCollectionExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactionServiceCollectionExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactionServiceCollectionExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Compliance.Testing.FakeRedactionCollector.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactionCollector.cs#L15C5-L16C63" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactionCollector.cs#L15C5-L16C63" }, { "DocsId": "P:Microsoft.Extensions.Compliance.Testing.FakeRedactionCollector.LastRedactorRequested", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactionCollector.cs#L26C13-L35C10" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactionCollector.cs#L26C13-L35C10" }, { "DocsId": "P:Microsoft.Extensions.Compliance.Testing.FakeRedactionCollector.AllRedactorRequests", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactionCollector.cs#L45C13-L49C10" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactionCollector.cs#L45C13-L49C10" }, { "DocsId": "P:Microsoft.Extensions.Compliance.Testing.FakeRedactionCollector.LastRedactedData", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactionCollector.cs#L60C13-L69C10" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactionCollector.cs#L60C13-L69C10" }, { "DocsId": "P:Microsoft.Extensions.Compliance.Testing.FakeRedactionCollector.AllRedactedData", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactionCollector.cs#L79C13-L83C10" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactionCollector.cs#L79C13-L83C10" } ], "DocsId": "T:Microsoft.Extensions.Compliance.Testing.FakeRedactionCollector", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactionCollector.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactionCollector.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Compliance.Testing.FakeRedactor.#ctor(Microsoft.Extensions.Options.IOptions{Microsoft.Extensions.Compliance.Testing.FakeRedactorOptions},Microsoft.Extensions.Compliance.Testing.FakeRedactionCollector)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactor.cs#L39C5-L63C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactor.cs#L39C5-L63C6" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Testing.FakeRedactor.Create(Microsoft.Extensions.Compliance.Testing.FakeRedactorOptions,Microsoft.Extensions.Compliance.Testing.FakeRedactionCollector)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactor.cs#L71C121-L71C197" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactor.cs#L71C121-L71C197" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Testing.FakeRedactor.Redact(System.ReadOnlySpan{System.Char},System.Span{System.Char})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactor.cs#L76C9-L86C27" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactor.cs#L76C9-L86C27" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Testing.FakeRedactor.GetRedactedLength(System.ReadOnlySpan{System.Char})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactor.cs#L92C9-L92C94" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactor.cs#L92C9-L92C94" }, { "DocsId": "P:Microsoft.Extensions.Compliance.Testing.FakeRedactor.EventCollector", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactor.cs#L32C52-L32C56" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactor.cs#L32C52-L32C56" } ], "DocsId": "T:Microsoft.Extensions.Compliance.Testing.FakeRedactor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactor.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactor.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Compliance.Testing.FakeRedactorOptions.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactorOptions.cs#L25C51-L25C64" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactorOptions.cs#L25C51-L25C64" }, { "DocsId": "P:Microsoft.Extensions.Compliance.Testing.FakeRedactorOptions.RedactionFormat", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactorOptions.cs#L25C37-L25C41" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactorOptions.cs#L25C37-L25C41" } ], "DocsId": "T:Microsoft.Extensions.Compliance.Testing.FakeRedactorOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactorOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactorOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Compliance.Testing.FakeRedactorProvider.#ctor(Microsoft.Extensions.Compliance.Testing.FakeRedactorOptions,Microsoft.Extensions.Compliance.Testing.FakeRedactionCollector)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactorProvider.cs#L28C5-L32C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactorProvider.cs#L28C5-L32C6" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Testing.FakeRedactorProvider.GetRedactor(Microsoft.Extensions.Compliance.Classification.DataClassificationSet)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactorProvider.cs#L37C9-L41C26" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactorProvider.cs#L37C9-L41C26" }, { "DocsId": "P:Microsoft.Extensions.Compliance.Testing.FakeRedactorProvider.Collector", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactorProvider.cs#L21C47-L21C51" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactorProvider.cs#L21C47-L21C51" } ], "DocsId": "T:Microsoft.Extensions.Compliance.Testing.FakeRedactorProvider", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactorProvider.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactorProvider.cs" }, { "Members": [ { "DocsId": "P:Microsoft.Extensions.Compliance.Testing.FakeTaxonomy.TaxonomyName", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeTaxonomy.cs#L16C42-L16C72" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeTaxonomy.cs#L16C42-L16C72" }, { "DocsId": "P:Microsoft.Extensions.Compliance.Testing.FakeTaxonomy.PrivateData", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeTaxonomy.cs#L21C53-L21C91" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeTaxonomy.cs#L21C53-L21C91" }, { "DocsId": "P:Microsoft.Extensions.Compliance.Testing.FakeTaxonomy.PublicData", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeTaxonomy.cs#L26C52-L26C89" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeTaxonomy.cs#L26C52-L26C89" } ], "DocsId": "T:Microsoft.Extensions.Compliance.Testing.FakeTaxonomy", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeTaxonomy.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeTaxonomy.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Compliance.Testing.PrivateDataAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/PrivateDataAttribute.cs#L17C11-L19C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/PrivateDataAttribute.cs#L17C11-L19C6" } ], "DocsId": "T:Microsoft.Extensions.Compliance.Testing.PrivateDataAttribute", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/PrivateDataAttribute.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/PrivateDataAttribute.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Compliance.Testing.PublicDataAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/PublicDataAttribute.cs#L17C11-L19C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/PublicDataAttribute.cs#L17C11-L19C6" } ], "DocsId": "T:Microsoft.Extensions.Compliance.Testing.PublicDataAttribute", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/PublicDataAttribute.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/PublicDataAttribute.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Compliance.Testing.RedactedData.#ctor(System.String,System.String,System.Int32)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/RedactedData.cs#L37C9-L40C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/RedactedData.cs#L37C9-L40C6" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Testing.RedactedData.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/RedactedData.cs#L47C49-L47C91" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/RedactedData.cs#L47C49-L47C91" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Testing.RedactedData.Equals(Microsoft.Extensions.Compliance.Testing.RedactedData)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/RedactedData.cs#L54C47-L54C145" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/RedactedData.cs#L54C47-L54C145" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Testing.RedactedData.GetHashCode", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/RedactedData.cs#L60C42-L60C94" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/RedactedData.cs#L60C42-L60C94" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Testing.RedactedData.op_Equality(Microsoft.Extensions.Compliance.Testing.RedactedData,Microsoft.Extensions.Compliance.Testing.RedactedData)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/RedactedData.cs#L70C9-L70C35" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/RedactedData.cs#L70C9-L70C35" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Testing.RedactedData.op_Inequality(Microsoft.Extensions.Compliance.Testing.RedactedData,Microsoft.Extensions.Compliance.Testing.RedactedData)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/RedactedData.cs#L81C9-L81C33" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/RedactedData.cs#L81C9-L81C33" }, { "DocsId": "P:Microsoft.Extensions.Compliance.Testing.RedactedData.Original", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/RedactedData.cs#L17C30-L17C34" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/RedactedData.cs#L17C30-L17C34" }, { "DocsId": "P:Microsoft.Extensions.Compliance.Testing.RedactedData.Redacted", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/RedactedData.cs#L22C30-L22C34" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/RedactedData.cs#L22C30-L22C34" }, { "DocsId": "P:Microsoft.Extensions.Compliance.Testing.RedactedData.SequenceNumber", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/RedactedData.cs#L27C33-L27C37" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/RedactedData.cs#L27C33-L27C37" } ], "DocsId": "T:Microsoft.Extensions.Compliance.Testing.RedactedData", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/RedactedData.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/RedactedData.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Compliance.Testing.RedactorRequested.#ctor(Microsoft.Extensions.Compliance.Classification.DataClassificationSet,System.Int32)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/RedactorRequested.cs#L31C9-L33C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/RedactorRequested.cs#L31C9-L33C6" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Testing.RedactorRequested.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/RedactorRequested.cs#L40C49-L40C96" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/RedactorRequested.cs#L40C49-L40C96" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Testing.RedactorRequested.Equals(Microsoft.Extensions.Compliance.Testing.RedactorRequested)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/RedactorRequested.cs#L47C52-L47C147" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/RedactorRequested.cs#L47C52-L47C147" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Testing.RedactorRequested.GetHashCode", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/RedactorRequested.cs#L53C42-L53C95" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/RedactorRequested.cs#L53C42-L53C95" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Testing.RedactorRequested.op_Equality(Microsoft.Extensions.Compliance.Testing.RedactorRequested,Microsoft.Extensions.Compliance.Testing.RedactorRequested)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/RedactorRequested.cs#L63C9-L63C35" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/RedactorRequested.cs#L63C9-L63C35" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Testing.RedactorRequested.op_Inequality(Microsoft.Extensions.Compliance.Testing.RedactorRequested,Microsoft.Extensions.Compliance.Testing.RedactorRequested)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/RedactorRequested.cs#L74C9-L74C33" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/RedactorRequested.cs#L74C9-L74C33" }, { "DocsId": "P:Microsoft.Extensions.Compliance.Testing.RedactorRequested.DataClassifications", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/RedactorRequested.cs#L17C56-L17C60" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/RedactorRequested.cs#L17C56-L17C60" }, { "DocsId": "P:Microsoft.Extensions.Compliance.Testing.RedactorRequested.SequenceNumber", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/RedactorRequested.cs#L22C33-L22C37" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/RedactorRequested.cs#L22C33-L22C37" } ], "DocsId": "T:Microsoft.Extensions.Compliance.Testing.RedactorRequested", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/RedactorRequested.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/RedactorRequested.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Compliance.Redaction.FakeRedactionBuilderExtensions.SetFakeRedactor(Microsoft.Extensions.Compliance.Redaction.IRedactionBuilder,Microsoft.Extensions.Compliance.Classification.DataClassificationSet[])", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactionBuilderExtensions.cs#L30C9-L34C67" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactionBuilderExtensions.cs#L30C9-L34C67" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Redaction.FakeRedactionBuilderExtensions.SetFakeRedactor(Microsoft.Extensions.Compliance.Redaction.IRedactionBuilder,System.Action{Microsoft.Extensions.Compliance.Testing.FakeRedactorOptions},Microsoft.Extensions.Compliance.Classification.DataClassificationSet[])", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactionBuilderExtensions.cs#L47C9-L56C67" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactionBuilderExtensions.cs#L47C9-L56C67" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Redaction.FakeRedactionBuilderExtensions.SetFakeRedactor(Microsoft.Extensions.Compliance.Redaction.IRedactionBuilder,Microsoft.Extensions.Configuration.IConfigurationSection,Microsoft.Extensions.Compliance.Classification.DataClassificationSet[])", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactionBuilderExtensions.cs#L69C9-L78C67" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactionBuilderExtensions.cs#L69C9-L78C67" } ], "DocsId": "T:Microsoft.Extensions.Compliance.Redaction.FakeRedactionBuilderExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactionBuilderExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactionBuilderExtensions.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Configuration.Abstractions.json b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Configuration.Abstractions.json index 26a87741c9d..c63e2030fff 100644 --- a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Configuration.Abstractions.json +++ b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Configuration.Abstractions.json @@ -1,234 +1,233 @@ { "Assembly": "Microsoft.Extensions.Configuration.Abstractions", - "GUID": "4B5A46DD82914B1D9808B076537A46DCFFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "227CFDBAAC224BD881796E665A61C45DFFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationDebugViewContext.#ctor(System.String,System.String,System.String,Microsoft.Extensions.Configuration.IConfigurationProvider)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationDebugViewContext.cs#L20C13-L24C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationDebugViewContext.cs#L20C13-L24C10" }, { "DocsId": "P:Microsoft.Extensions.Configuration.ConfigurationDebugViewContext.Path", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationDebugViewContext.cs#L29C30-L29C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationDebugViewContext.cs#L29C30-L29C34" }, { "DocsId": "P:Microsoft.Extensions.Configuration.ConfigurationDebugViewContext.Key", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationDebugViewContext.cs#L34C29-L34C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationDebugViewContext.cs#L34C29-L34C33" }, { "DocsId": "P:Microsoft.Extensions.Configuration.ConfigurationDebugViewContext.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationDebugViewContext.cs#L39C32-L39C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationDebugViewContext.cs#L39C32-L39C36" }, { "DocsId": "P:Microsoft.Extensions.Configuration.ConfigurationDebugViewContext.ConfigurationProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationDebugViewContext.cs#L44C63-L44C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationDebugViewContext.cs#L44C63-L44C67" } ], "DocsId": "T:Microsoft.Extensions.Configuration.ConfigurationDebugViewContext", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationDebugViewContext.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationDebugViewContext.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationExtensions.Add``1(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.Action{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationExtensions.cs#L24C13-L26C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationExtensions.cs#L24C13-L26C40" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationExtensions.GetConnectionString(Microsoft.Extensions.Configuration.IConfiguration,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationExtensions.cs#L37C13-L37C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationExtensions.cs#L37C13-L37C73" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationExtensions.AsEnumerable(Microsoft.Extensions.Configuration.IConfiguration)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationExtensions.cs#L45C117-L45C169" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationExtensions.cs#L45C117-L45C169" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationExtensions.AsEnumerable(Microsoft.Extensions.Configuration.IConfiguration,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationExtensions.cs" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationExtensions.Exists(Microsoft.Extensions.Configuration.IConfigurationSection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationExtensions.cs#L80C13-L84C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationExtensions.cs#L80C13-L84C73" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationExtensions.GetRequiredSection(Microsoft.Extensions.Configuration.IConfiguration,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationExtensions.cs#L99C13-L107C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationExtensions.cs#L99C13-L107C88" } ], "DocsId": "T:Microsoft.Extensions.Configuration.ConfigurationExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationKeyNameAttribute.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationKeyNameAttribute.cs#L18C9-L18C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationKeyNameAttribute.cs#L18C9-L18C73" }, { "DocsId": "P:Microsoft.Extensions.Configuration.ConfigurationKeyNameAttribute.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationKeyNameAttribute.cs#L23C30-L23C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationKeyNameAttribute.cs#L23C30-L23C34" } ], "DocsId": "T:Microsoft.Extensions.Configuration.ConfigurationKeyNameAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationKeyNameAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationKeyNameAttribute.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationPath.Combine(System.String[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationPath.cs#L27C13-L29C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationPath.cs#L27C13-L29C60" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationPath.Combine(System.Collections.Generic.IEnumerable{System.String})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationPath.cs#L39C13-L41C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationPath.cs#L39C13-L41C60" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationPath.GetSectionKey(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationPath.cs#L52C13-L58C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationPath.cs#L52C13-L58C91" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationPath.GetParentPath(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationPath.cs#L68C13-L74C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationPath.cs#L68C13-L74C90" }, { "DocsId": "F:Microsoft.Extensions.Configuration.ConfigurationPath.KeyDelimiter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationPath.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationPath.cs" } ], "DocsId": "T:Microsoft.Extensions.Configuration.ConfigurationPath", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationPath.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationPath.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationRootExtensions.GetDebugView(Microsoft.Extensions.Configuration.IConfigurationRoot)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationRootExtensions.cs#L22C13-L22C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationRootExtensions.cs#L22C13-L22C59" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationRootExtensions.GetDebugView(Microsoft.Extensions.Configuration.IConfigurationRoot,System.Func{Microsoft.Extensions.Configuration.ConfigurationDebugViewContext,System.String})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationRootExtensions.cs#L74C13-L78C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationRootExtensions.cs#L16707566C0-L78C39" } ], "DocsId": "T:Microsoft.Extensions.Configuration.ConfigurationRootExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationRootExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationRootExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.IConfiguration.GetSection(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfiguration.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfiguration.cs" }, { "DocsId": "M:Microsoft.Extensions.Configuration.IConfiguration.GetChildren", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfiguration.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfiguration.cs" }, { "DocsId": "M:Microsoft.Extensions.Configuration.IConfiguration.GetReloadToken", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfiguration.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfiguration.cs" }, { "DocsId": "P:Microsoft.Extensions.Configuration.IConfiguration.Item(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfiguration.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfiguration.cs" } ], "DocsId": "T:Microsoft.Extensions.Configuration.IConfiguration", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfiguration.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfiguration.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.IConfigurationBuilder.Add(Microsoft.Extensions.Configuration.IConfigurationSource)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfigurationBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfigurationBuilder.cs" }, { "DocsId": "M:Microsoft.Extensions.Configuration.IConfigurationBuilder.Build", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfigurationBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfigurationBuilder.cs" }, { "DocsId": "P:Microsoft.Extensions.Configuration.IConfigurationBuilder.Properties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfigurationBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfigurationBuilder.cs" }, { "DocsId": "P:Microsoft.Extensions.Configuration.IConfigurationBuilder.Sources", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfigurationBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfigurationBuilder.cs" } ], "DocsId": "T:Microsoft.Extensions.Configuration.IConfigurationBuilder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfigurationBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfigurationBuilder.cs" }, { "Members": [], "DocsId": "T:Microsoft.Extensions.Configuration.IConfigurationManager", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfigurationManager.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfigurationManager.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.IConfigurationProvider.TryGet(System.String,System.String@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfigurationProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfigurationProvider.cs" }, { "DocsId": "M:Microsoft.Extensions.Configuration.IConfigurationProvider.Set(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfigurationProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfigurationProvider.cs" }, { "DocsId": "M:Microsoft.Extensions.Configuration.IConfigurationProvider.GetReloadToken", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfigurationProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfigurationProvider.cs" }, { "DocsId": "M:Microsoft.Extensions.Configuration.IConfigurationProvider.Load", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfigurationProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfigurationProvider.cs" }, { "DocsId": "M:Microsoft.Extensions.Configuration.IConfigurationProvider.GetChildKeys(System.Collections.Generic.IEnumerable{System.String},System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfigurationProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfigurationProvider.cs" } ], "DocsId": "T:Microsoft.Extensions.Configuration.IConfigurationProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfigurationProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfigurationProvider.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.IConfigurationRoot.Reload", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfigurationRoot.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfigurationRoot.cs" }, { "DocsId": "P:Microsoft.Extensions.Configuration.IConfigurationRoot.Providers", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfigurationRoot.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfigurationRoot.cs" } ], "DocsId": "T:Microsoft.Extensions.Configuration.IConfigurationRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfigurationRoot.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfigurationRoot.cs" }, { "Members": [ { "DocsId": "P:Microsoft.Extensions.Configuration.IConfigurationSection.Key", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfigurationSection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfigurationSection.cs" }, { "DocsId": "P:Microsoft.Extensions.Configuration.IConfigurationSection.Path", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfigurationSection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfigurationSection.cs" }, { "DocsId": "P:Microsoft.Extensions.Configuration.IConfigurationSection.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfigurationSection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfigurationSection.cs" } ], "DocsId": "T:Microsoft.Extensions.Configuration.IConfigurationSection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfigurationSection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfigurationSection.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.IConfigurationSource.Build(Microsoft.Extensions.Configuration.IConfigurationBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfigurationSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfigurationSource.cs" } ], "DocsId": "T:Microsoft.Extensions.Configuration.IConfigurationSource", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfigurationSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfigurationSource.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Configuration.Binder.json b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Configuration.Binder.json index 87e5be099fe..6c0288d4cfd 100644 --- a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Configuration.Binder.json +++ b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Configuration.Binder.json @@ -1,75 +1,74 @@ { "Assembly": "Microsoft.Extensions.Configuration.Binder", - "GUID": "D0BAA1E7C76E4E28BF5E9CD9974142FFFFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "18DF1939609A4990A41FF0C7EFDDCDAAFFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.BinderOptions.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Binder/src/BinderOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Binder/src/BinderOptions.cs" }, { "DocsId": "P:Microsoft.Extensions.Configuration.BinderOptions.BindNonPublicProperties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Binder/src/BinderOptions.cs#L15C47-L15C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Binder/src/BinderOptions.cs#L15C47-L15C51" }, { "DocsId": "P:Microsoft.Extensions.Configuration.BinderOptions.ErrorOnUnknownConfiguration", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Binder/src/BinderOptions.cs#L23C51-L23C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Binder/src/BinderOptions.cs#L23C51-L23C55" } ], "DocsId": "T:Microsoft.Extensions.Configuration.BinderOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Binder/src/BinderOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Binder/src/BinderOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationBinder.Get``1(Microsoft.Extensions.Configuration.IConfiguration)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Binder/src/ConfigurationBinder.cs#L38C16-L38C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Binder/src/ConfigurationBinder.cs#L38C16-L38C42" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationBinder.Get``1(Microsoft.Extensions.Configuration.IConfiguration,System.Action{Microsoft.Extensions.Configuration.BinderOptions})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Binder/src/ConfigurationBinder.cs#L53C13-L60C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Binder/src/ConfigurationBinder.cs#L53C13-L60C30" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationBinder.Get(Microsoft.Extensions.Configuration.IConfiguration,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Binder/src/ConfigurationBinder.cs#L74C16-L74C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Binder/src/ConfigurationBinder.cs#L74C16-L74C45" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationBinder.Get(Microsoft.Extensions.Configuration.IConfiguration,System.Type,System.Action{Microsoft.Extensions.Configuration.BinderOptions})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Binder/src/ConfigurationBinder.cs#L93C13-L100C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Binder/src/ConfigurationBinder.cs#L93C13-L100C39" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationBinder.Bind(Microsoft.Extensions.Configuration.IConfiguration,System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Binder/src/ConfigurationBinder.cs#L113C13-L115C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Binder/src/ConfigurationBinder.cs#L113C13-L115C10" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationBinder.Bind(Microsoft.Extensions.Configuration.IConfiguration,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Binder/src/ConfigurationBinder.cs#L125C16-L125C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Binder/src/ConfigurationBinder.cs#L125C16-L125C50" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationBinder.Bind(Microsoft.Extensions.Configuration.IConfiguration,System.Object,System.Action{Microsoft.Extensions.Configuration.BinderOptions})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Binder/src/ConfigurationBinder.cs#L137C13-L146C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Binder/src/ConfigurationBinder.cs#L137C13-L146C10" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationBinder.GetValue``1(Microsoft.Extensions.Configuration.IConfiguration,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Binder/src/ConfigurationBinder.cs#L158C13-L158C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Binder/src/ConfigurationBinder.cs#L158C13-L158C61" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationBinder.GetValue``1(Microsoft.Extensions.Configuration.IConfiguration,System.String,``0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Binder/src/ConfigurationBinder.cs#L172C13-L172C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Binder/src/ConfigurationBinder.cs#L172C13-L172C78" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationBinder.GetValue(Microsoft.Extensions.Configuration.IConfiguration,System.Type,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Binder/src/ConfigurationBinder.cs#L189C13-L189C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Binder/src/ConfigurationBinder.cs#L189C13-L189C75" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationBinder.GetValue(Microsoft.Extensions.Configuration.IConfiguration,System.Type,System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Binder/src/ConfigurationBinder.cs#L207C13-L216C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Binder/src/ConfigurationBinder.cs#L207C13-L216C33" } ], "DocsId": "T:Microsoft.Extensions.Configuration.ConfigurationBinder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Binder/src/ConfigurationBinder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Binder/src/ConfigurationBinder.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Configuration.CommandLine.json b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Configuration.CommandLine.json index 7bbfc36751b..a33649dab00 100644 --- a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Configuration.CommandLine.json +++ b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Configuration.CommandLine.json @@ -1,65 +1,64 @@ { "Assembly": "Microsoft.Extensions.Configuration.CommandLine", - "GUID": "AC7923773449455EA379829365DFC6E4FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "76307E31F20A4A119EE724A613E0DEC5FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.CommandLineConfigurationExtensions.AddCommandLine(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.String[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.CommandLine/src/CommandLineConfigurationExtensions.cs#L68C13-L68C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.CommandLine/src/CommandLineConfigurationExtensions.cs#L68C13-L68C84" }, { "DocsId": "M:Microsoft.Extensions.Configuration.CommandLineConfigurationExtensions.AddCommandLine(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.String[],System.Collections.Generic.IDictionary{System.String,System.String})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.CommandLine/src/CommandLineConfigurationExtensions.cs#L157C13-L158C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.CommandLine/src/CommandLineConfigurationExtensions.cs#L157C13-L158C41" }, { "DocsId": "M:Microsoft.Extensions.Configuration.CommandLineConfigurationExtensions.AddCommandLine(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.Action{Microsoft.Extensions.Configuration.CommandLine.CommandLineConfigurationSource})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.CommandLine/src/CommandLineConfigurationExtensions.cs#L168C16-L168C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.CommandLine/src/CommandLineConfigurationExtensions.cs#L168C16-L168C44" } ], "DocsId": "T:Microsoft.Extensions.Configuration.CommandLineConfigurationExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.CommandLine/src/CommandLineConfigurationExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.CommandLine/src/CommandLineConfigurationExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.CommandLine.CommandLineConfigurationProvider.#ctor(System.Collections.Generic.IEnumerable{System.String},System.Collections.Generic.IDictionary{System.String,System.String})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.CommandLine/src/CommandLineConfigurationProvider.cs#L21C9-L31C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.CommandLine/src/CommandLineConfigurationProvider.cs#L21C9-L31C10" }, { "DocsId": "M:Microsoft.Extensions.Configuration.CommandLine.CommandLineConfigurationProvider.Load", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.CommandLine/src/CommandLineConfigurationProvider.cs#L43C13-L133C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.CommandLine/src/CommandLineConfigurationProvider.cs#L43C13-L133C10" }, { "DocsId": "P:Microsoft.Extensions.Configuration.CommandLine.CommandLineConfigurationProvider.Args", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.CommandLine/src/CommandLineConfigurationProvider.cs#L36C46-L36C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.CommandLine/src/CommandLineConfigurationProvider.cs#L36C46-L36C50" } ], "DocsId": "T:Microsoft.Extensions.Configuration.CommandLine.CommandLineConfigurationProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.CommandLine/src/CommandLineConfigurationProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.CommandLine/src/CommandLineConfigurationProvider.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.CommandLine.CommandLineConfigurationSource.Build(Microsoft.Extensions.Configuration.IConfigurationBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.CommandLine/src/CommandLineConfigurationSource.cs#L31C13-L31C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.CommandLine/src/CommandLineConfigurationSource.cs#L31C13-L31C79" }, { "DocsId": "M:Microsoft.Extensions.Configuration.CommandLine.CommandLineConfigurationSource.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.CommandLine/src/CommandLineConfigurationSource.cs#L22C57-L22C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.CommandLine/src/CommandLineConfigurationSource.cs#L22C57-L22C78" }, { "DocsId": "P:Microsoft.Extensions.Configuration.CommandLine.CommandLineConfigurationSource.SwitchMappings", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.CommandLine/src/CommandLineConfigurationSource.cs#L17C62-L17C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.CommandLine/src/CommandLineConfigurationSource.cs#L17C62-L17C66" }, { "DocsId": "P:Microsoft.Extensions.Configuration.CommandLine.CommandLineConfigurationSource.Args", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.CommandLine/src/CommandLineConfigurationSource.cs#L22C43-L22C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.CommandLine/src/CommandLineConfigurationSource.cs#L22C43-L22C47" } ], "DocsId": "T:Microsoft.Extensions.Configuration.CommandLine.CommandLineConfigurationSource", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.CommandLine/src/CommandLineConfigurationSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.CommandLine/src/CommandLineConfigurationSource.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Configuration.EnvironmentVariables.json b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Configuration.EnvironmentVariables.json index 573dc080328..aae7685d060 100644 --- a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Configuration.EnvironmentVariables.json +++ b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Configuration.EnvironmentVariables.json @@ -1,65 +1,64 @@ { "Assembly": "Microsoft.Extensions.Configuration.EnvironmentVariables", - "GUID": "CF1DE85B6F0E4AC082370DB71DE0D202FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "040CB64CE88E48579286191539945525FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.EnvironmentVariablesExtensions.AddEnvironmentVariables(Microsoft.Extensions.Configuration.IConfigurationBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.EnvironmentVariables/src/EnvironmentVariablesExtensions.cs#L21C13-L22C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.EnvironmentVariables/src/EnvironmentVariablesExtensions.cs#L21C13-L22C41" }, { "DocsId": "M:Microsoft.Extensions.Configuration.EnvironmentVariablesExtensions.AddEnvironmentVariables(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.EnvironmentVariables/src/EnvironmentVariablesExtensions.cs#L36C13-L37C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.EnvironmentVariables/src/EnvironmentVariablesExtensions.cs#L36C13-L37C41" }, { "DocsId": "M:Microsoft.Extensions.Configuration.EnvironmentVariablesExtensions.AddEnvironmentVariables(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.Action{Microsoft.Extensions.Configuration.EnvironmentVariables.EnvironmentVariablesConfigurationSource})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.EnvironmentVariables/src/EnvironmentVariablesExtensions.cs#L47C16-L47C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.EnvironmentVariables/src/EnvironmentVariablesExtensions.cs#L47C16-L47C44" } ], "DocsId": "T:Microsoft.Extensions.Configuration.EnvironmentVariablesExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.EnvironmentVariables/src/EnvironmentVariablesExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.EnvironmentVariables/src/EnvironmentVariablesExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.EnvironmentVariables.EnvironmentVariablesConfigurationProvider.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.EnvironmentVariables/src/EnvironmentVariablesConfigurationProvider.cs#L26C9-L30C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.EnvironmentVariables/src/EnvironmentVariablesConfigurationProvider.cs#L26C9-L30C10" }, { "DocsId": "M:Microsoft.Extensions.Configuration.EnvironmentVariables.EnvironmentVariablesConfigurationProvider.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.EnvironmentVariables/src/EnvironmentVariablesConfigurationProvider.cs#L36C9-L40C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.EnvironmentVariables/src/EnvironmentVariablesConfigurationProvider.cs#L36C9-L40C10" }, { "DocsId": "M:Microsoft.Extensions.Configuration.EnvironmentVariables.EnvironmentVariablesConfigurationProvider.Load", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.EnvironmentVariables/src/EnvironmentVariablesConfigurationProvider.cs#L46C13-L46C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.EnvironmentVariables/src/EnvironmentVariablesConfigurationProvider.cs#L46C13-L46C56" }, { "DocsId": "M:Microsoft.Extensions.Configuration.EnvironmentVariables.EnvironmentVariablesConfigurationProvider.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.EnvironmentVariables/src/EnvironmentVariablesConfigurationProvider.cs#L54C13-L59C22" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.EnvironmentVariables/src/EnvironmentVariablesConfigurationProvider.cs#L54C13-L59C22" } ], "DocsId": "T:Microsoft.Extensions.Configuration.EnvironmentVariables.EnvironmentVariablesConfigurationProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.EnvironmentVariables/src/EnvironmentVariablesConfigurationProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.EnvironmentVariables/src/EnvironmentVariablesConfigurationProvider.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.EnvironmentVariables.EnvironmentVariablesConfigurationSource.Build(Microsoft.Extensions.Configuration.IConfigurationBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.EnvironmentVariables/src/EnvironmentVariablesConfigurationSource.cs#L23C13-L23C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.EnvironmentVariables/src/EnvironmentVariablesConfigurationSource.cs#L23C13-L23C74" }, { "DocsId": "M:Microsoft.Extensions.Configuration.EnvironmentVariables.EnvironmentVariablesConfigurationSource.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.EnvironmentVariables/src/EnvironmentVariablesConfigurationSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.EnvironmentVariables/src/EnvironmentVariablesConfigurationSource.cs" }, { "DocsId": "P:Microsoft.Extensions.Configuration.EnvironmentVariables.EnvironmentVariablesConfigurationSource.Prefix", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.EnvironmentVariables/src/EnvironmentVariablesConfigurationSource.cs#L14C33-L14C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.EnvironmentVariables/src/EnvironmentVariablesConfigurationSource.cs#L14C33-L14C37" } ], "DocsId": "T:Microsoft.Extensions.Configuration.EnvironmentVariables.EnvironmentVariablesConfigurationSource", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.EnvironmentVariables/src/EnvironmentVariablesConfigurationSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.EnvironmentVariables/src/EnvironmentVariablesConfigurationSource.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Configuration.FileExtensions.json b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Configuration.FileExtensions.json index 74334fcbec0..cab5220faa4 100644 --- a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Configuration.FileExtensions.json +++ b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Configuration.FileExtensions.json @@ -1,135 +1,134 @@ { "Assembly": "Microsoft.Extensions.Configuration.FileExtensions", - "GUID": "9EFA779929EE47EC8B713F9D9C370F69FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "474351CA022547A590CB40850B51B398FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.FileConfigurationExtensions.SetFileProvider(Microsoft.Extensions.Configuration.IConfigurationBuilder,Microsoft.Extensions.FileProviders.IFileProvider)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationExtensions.cs#L25C13-L29C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationExtensions.cs#L25C13-L29C28" }, { "DocsId": "M:Microsoft.Extensions.Configuration.FileConfigurationExtensions.GetFileProvider(Microsoft.Extensions.Configuration.IConfigurationBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationExtensions.cs#L42C13-L44C126" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationExtensions.cs#L42C13-L44C126" }, { "DocsId": "M:Microsoft.Extensions.Configuration.FileConfigurationExtensions.SetBasePath(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationExtensions.cs#L55C13-L58C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationExtensions.cs#L55C13-L58C80" }, { "DocsId": "M:Microsoft.Extensions.Configuration.FileConfigurationExtensions.SetFileLoadExceptionHandler(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.Action{Microsoft.Extensions.Configuration.FileLoadExceptionContext})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationExtensions.cs#L69C13-L72C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationExtensions.cs#L69C13-L72C28" }, { "DocsId": "M:Microsoft.Extensions.Configuration.FileConfigurationExtensions.GetFileLoadExceptionHandler(Microsoft.Extensions.Configuration.IConfigurationBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationExtensions.cs#L82C13-L88C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationExtensions.cs#L82C13-L88C25" } ], "DocsId": "T:Microsoft.Extensions.Configuration.FileConfigurationExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.FileConfigurationProvider.#ctor(Microsoft.Extensions.Configuration.FileConfigurationSource)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationProvider.cs#L26C9-L42C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationProvider.cs#L26C9-L42C10" }, { "DocsId": "M:Microsoft.Extensions.Configuration.FileConfigurationProvider.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationProvider.cs#L54C16-L54C103" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationProvider.cs#L54C16-L54C103" }, { "DocsId": "M:Microsoft.Extensions.Configuration.FileConfigurationProvider.Load", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationProvider.cs#L127C13-L128C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationProvider.cs#L127C13-L128C10" }, { "DocsId": "M:Microsoft.Extensions.Configuration.FileConfigurationProvider.Load(System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationProvider.cs" }, { "DocsId": "M:Microsoft.Extensions.Configuration.FileConfigurationProvider.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationProvider.cs#L156C34-L156C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationProvider.cs#L156C34-L156C47" }, { "DocsId": "M:Microsoft.Extensions.Configuration.FileConfigurationProvider.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationProvider.cs#L164C13-L170C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationProvider.cs#L164C13-L170C10" }, { "DocsId": "P:Microsoft.Extensions.Configuration.FileConfigurationProvider.Source", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationProvider.cs#L47C49-L47C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationProvider.cs#L47C49-L47C53" } ], "DocsId": "T:Microsoft.Extensions.Configuration.FileConfigurationProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationProvider.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.FileConfigurationSource.Build(Microsoft.Extensions.Configuration.IConfigurationBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationSource.cs" }, { "DocsId": "M:Microsoft.Extensions.Configuration.FileConfigurationSource.EnsureDefaults(Microsoft.Extensions.Configuration.IConfigurationBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationSource.cs#L66C13-L73C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationSource.cs#L66C13-L73C10" }, { "DocsId": "M:Microsoft.Extensions.Configuration.FileConfigurationSource.ResolveFileProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationSource.cs#L81C13-L99C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationSource.cs#L81C13-L99C10" }, { "DocsId": "M:Microsoft.Extensions.Configuration.FileConfigurationSource.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationSource.cs#L46C48-L46C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationSource.cs#L46C48-L46C51" }, { "DocsId": "P:Microsoft.Extensions.Configuration.FileConfigurationSource.FileProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationSource.cs#L19C46-L19C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationSource.cs#L19C46-L19C50" }, { "DocsId": "P:Microsoft.Extensions.Configuration.FileConfigurationSource.Path", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationSource.cs#L30C31-L30C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationSource.cs#L30C31-L30C35" }, { "DocsId": "P:Microsoft.Extensions.Configuration.FileConfigurationSource.Optional", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationSource.cs#L35C32-L35C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationSource.cs#L35C32-L35C36" }, { "DocsId": "P:Microsoft.Extensions.Configuration.FileConfigurationSource.ReloadOnChange", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationSource.cs#L40C38-L40C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationSource.cs#L40C38-L40C42" }, { "DocsId": "P:Microsoft.Extensions.Configuration.FileConfigurationSource.ReloadDelay", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationSource.cs#L46C34-L46C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationSource.cs#L46C34-L46C38" }, { "DocsId": "P:Microsoft.Extensions.Configuration.FileConfigurationSource.OnLoadException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationSource.cs#L51C68-L51C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationSource.cs#L51C68-L51C72" } ], "DocsId": "T:Microsoft.Extensions.Configuration.FileConfigurationSource", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationSource.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.FileLoadExceptionContext.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileLoadExceptionContext.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileLoadExceptionContext.cs" }, { "DocsId": "P:Microsoft.Extensions.Configuration.FileLoadExceptionContext.Provider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileLoadExceptionContext.cs#L16C53-L16C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileLoadExceptionContext.cs#L16C53-L16C57" }, { "DocsId": "P:Microsoft.Extensions.Configuration.FileLoadExceptionContext.Exception", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileLoadExceptionContext.cs#L21C38-L21C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileLoadExceptionContext.cs#L21C38-L21C42" }, { "DocsId": "P:Microsoft.Extensions.Configuration.FileLoadExceptionContext.Ignore", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileLoadExceptionContext.cs#L26C30-L26C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileLoadExceptionContext.cs#L26C30-L26C34" } ], "DocsId": "T:Microsoft.Extensions.Configuration.FileLoadExceptionContext", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileLoadExceptionContext.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileLoadExceptionContext.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Configuration.Ini.json b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Configuration.Ini.json index 0f29c48444c..553484e8042 100644 --- a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Configuration.Ini.json +++ b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Configuration.Ini.json @@ -1,97 +1,96 @@ { "Assembly": "Microsoft.Extensions.Configuration.Ini", - "GUID": "809BED4363C14D6E93A9156F99433556FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "6A1E0A76ACEC4CAAA927CAEE6641350EFFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.IniConfigurationExtensions.AddIniFile(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Ini/src/IniConfigurationExtensions.cs#L25C13-L25C108" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Ini/src/IniConfigurationExtensions.cs#L25C13-L25C108" }, { "DocsId": "M:Microsoft.Extensions.Configuration.IniConfigurationExtensions.AddIniFile(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Ini/src/IniConfigurationExtensions.cs#L38C13-L38C111" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Ini/src/IniConfigurationExtensions.cs#L38C13-L38C111" }, { "DocsId": "M:Microsoft.Extensions.Configuration.IniConfigurationExtensions.AddIniFile(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.String,System.Boolean,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Ini/src/IniConfigurationExtensions.cs#L52C13-L52C120" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Ini/src/IniConfigurationExtensions.cs#L52C13-L52C120" }, { "DocsId": "M:Microsoft.Extensions.Configuration.IniConfigurationExtensions.AddIniFile(Microsoft.Extensions.Configuration.IConfigurationBuilder,Microsoft.Extensions.FileProviders.IFileProvider,System.String,System.Boolean,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Ini/src/IniConfigurationExtensions.cs#L67C13-L81C16" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Ini/src/IniConfigurationExtensions.cs#L16707566C0-L81C16" }, { "DocsId": "M:Microsoft.Extensions.Configuration.IniConfigurationExtensions.AddIniFile(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.Action{Microsoft.Extensions.Configuration.Ini.IniConfigurationSource})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Ini/src/IniConfigurationExtensions.cs#L91C16-L91C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Ini/src/IniConfigurationExtensions.cs#L91C16-L91C44" }, { "DocsId": "M:Microsoft.Extensions.Configuration.IniConfigurationExtensions.AddIniStream(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Ini/src/IniConfigurationExtensions.cs#L101C13-L103C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Ini/src/IniConfigurationExtensions.cs#L16707566C0-L103C86" } ], "DocsId": "T:Microsoft.Extensions.Configuration.IniConfigurationExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Ini/src/IniConfigurationExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Ini/src/IniConfigurationExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.Ini.IniConfigurationProvider.#ctor(Microsoft.Extensions.Configuration.Ini.IniConfigurationSource)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Ini/src/IniConfigurationProvider.cs#L26C74-L26C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Ini/src/IniConfigurationProvider.cs#L26C74-L26C90" }, { "DocsId": "M:Microsoft.Extensions.Configuration.Ini.IniConfigurationProvider.Load(System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Ini/src/IniConfigurationProvider.cs#L33C16-L33C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Ini/src/IniConfigurationProvider.cs#L33C16-L33C66" } ], "DocsId": "T:Microsoft.Extensions.Configuration.Ini.IniConfigurationProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Ini/src/IniConfigurationProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Ini/src/IniConfigurationProvider.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.Ini.IniConfigurationSource.Build(Microsoft.Extensions.Configuration.IConfigurationBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Ini/src/IniConfigurationSource.cs#L27C13-L28C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Ini/src/IniConfigurationSource.cs#L27C13-L28C55" }, { "DocsId": "M:Microsoft.Extensions.Configuration.Ini.IniConfigurationSource.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Ini/src/IniConfigurationSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Ini/src/IniConfigurationSource.cs" } ], "DocsId": "T:Microsoft.Extensions.Configuration.Ini.IniConfigurationSource", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Ini/src/IniConfigurationSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Ini/src/IniConfigurationSource.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.Ini.IniStreamConfigurationProvider.#ctor(Microsoft.Extensions.Configuration.Ini.IniStreamConfigurationSource)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Ini/src/IniStreamConfigurationProvider.cs#L19C86-L19C102" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Ini/src/IniStreamConfigurationProvider.cs#L19C86-L19C102" }, { "DocsId": "M:Microsoft.Extensions.Configuration.Ini.IniStreamConfigurationProvider.Read(System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Ini/src/IniStreamConfigurationProvider.cs#L28C13-L84C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Ini/src/IniStreamConfigurationProvider.cs#L28C13-L84C25" }, { "DocsId": "M:Microsoft.Extensions.Configuration.Ini.IniStreamConfigurationProvider.Load(System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Ini/src/IniStreamConfigurationProvider.cs#L93C13-L94C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Ini/src/IniStreamConfigurationProvider.cs#L93C13-L94C10" } ], "DocsId": "T:Microsoft.Extensions.Configuration.Ini.IniStreamConfigurationProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Ini/src/IniStreamConfigurationProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Ini/src/IniStreamConfigurationProvider.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.Ini.IniStreamConfigurationSource.Build(Microsoft.Extensions.Configuration.IConfigurationBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Ini/src/IniStreamConfigurationSource.cs#L26C16-L26C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Ini/src/IniStreamConfigurationSource.cs#L26C16-L26C56" }, { "DocsId": "M:Microsoft.Extensions.Configuration.Ini.IniStreamConfigurationSource.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Ini/src/IniStreamConfigurationSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Ini/src/IniStreamConfigurationSource.cs" } ], "DocsId": "T:Microsoft.Extensions.Configuration.Ini.IniStreamConfigurationSource", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Ini/src/IniStreamConfigurationSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Ini/src/IniStreamConfigurationSource.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Configuration.Json.json b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Configuration.Json.json index 1424fd08a41..8b9524d0f1b 100644 --- a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Configuration.Json.json +++ b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Configuration.Json.json @@ -1,93 +1,92 @@ { "Assembly": "Microsoft.Extensions.Configuration.Json", - "GUID": "9035877BE27D47A38DD619AD503A7926FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "74F4A2AFABEA4BB7A777452A7EE38E2CFFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.JsonConfigurationExtensions.AddJsonFile(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Json/src/JsonConfigurationExtensions.cs#L25C13-L25C109" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Json/src/JsonConfigurationExtensions.cs#L25C13-L25C109" }, { "DocsId": "M:Microsoft.Extensions.Configuration.JsonConfigurationExtensions.AddJsonFile(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Json/src/JsonConfigurationExtensions.cs#L38C13-L38C112" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Json/src/JsonConfigurationExtensions.cs#L38C13-L38C112" }, { "DocsId": "M:Microsoft.Extensions.Configuration.JsonConfigurationExtensions.AddJsonFile(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.String,System.Boolean,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Json/src/JsonConfigurationExtensions.cs#L52C13-L52C121" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Json/src/JsonConfigurationExtensions.cs#L52C13-L52C121" }, { "DocsId": "M:Microsoft.Extensions.Configuration.JsonConfigurationExtensions.AddJsonFile(Microsoft.Extensions.Configuration.IConfigurationBuilder,Microsoft.Extensions.FileProviders.IFileProvider,System.String,System.Boolean,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Json/src/JsonConfigurationExtensions.cs#L67C13-L81C16" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Json/src/JsonConfigurationExtensions.cs#L16707566C0-L81C16" }, { "DocsId": "M:Microsoft.Extensions.Configuration.JsonConfigurationExtensions.AddJsonFile(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.Action{Microsoft.Extensions.Configuration.Json.JsonConfigurationSource})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Json/src/JsonConfigurationExtensions.cs#L91C16-L91C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Json/src/JsonConfigurationExtensions.cs#L91C16-L91C44" }, { "DocsId": "M:Microsoft.Extensions.Configuration.JsonConfigurationExtensions.AddJsonStream(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Json/src/JsonConfigurationExtensions.cs#L101C13-L103C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Json/src/JsonConfigurationExtensions.cs#L16707566C0-L103C87" } ], "DocsId": "T:Microsoft.Extensions.Configuration.JsonConfigurationExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Json/src/JsonConfigurationExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Json/src/JsonConfigurationExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.Json.JsonConfigurationProvider.#ctor(Microsoft.Extensions.Configuration.Json.JsonConfigurationSource)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Json/src/JsonConfigurationProvider.cs#L20C76-L20C92" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Json/src/JsonConfigurationProvider.cs#L20C76-L20C92" }, { "DocsId": "M:Microsoft.Extensions.Configuration.Json.JsonConfigurationProvider.Load(System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Json/src/JsonConfigurationProvider.cs#L30C17-L36C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Json/src/JsonConfigurationProvider.cs#L30C17-L36C10" } ], "DocsId": "T:Microsoft.Extensions.Configuration.Json.JsonConfigurationProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Json/src/JsonConfigurationProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Json/src/JsonConfigurationProvider.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.Json.JsonConfigurationSource.Build(Microsoft.Extensions.Configuration.IConfigurationBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Json/src/JsonConfigurationSource.cs#L20C13-L21C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Json/src/JsonConfigurationSource.cs#L20C13-L21C56" }, { "DocsId": "M:Microsoft.Extensions.Configuration.Json.JsonConfigurationSource.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Json/src/JsonConfigurationSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Json/src/JsonConfigurationSource.cs" } ], "DocsId": "T:Microsoft.Extensions.Configuration.Json.JsonConfigurationSource", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Json/src/JsonConfigurationSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Json/src/JsonConfigurationSource.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.Json.JsonStreamConfigurationProvider.#ctor(Microsoft.Extensions.Configuration.Json.JsonStreamConfigurationSource)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Json/src/JsonStreamConfigurationProvider.cs#L17C88-L17C104" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Json/src/JsonStreamConfigurationProvider.cs#L17C88-L17C104" }, { "DocsId": "M:Microsoft.Extensions.Configuration.Json.JsonStreamConfigurationProvider.Load(System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Json/src/JsonStreamConfigurationProvider.cs#L25C13-L26C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Json/src/JsonStreamConfigurationProvider.cs#L25C13-L26C10" } ], "DocsId": "T:Microsoft.Extensions.Configuration.Json.JsonStreamConfigurationProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Json/src/JsonStreamConfigurationProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Json/src/JsonStreamConfigurationProvider.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.Json.JsonStreamConfigurationSource.Build(Microsoft.Extensions.Configuration.IConfigurationBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Json/src/JsonStreamConfigurationSource.cs#L17C16-L17C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Json/src/JsonStreamConfigurationSource.cs#L17C16-L17C57" }, { "DocsId": "M:Microsoft.Extensions.Configuration.Json.JsonStreamConfigurationSource.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Json/src/JsonStreamConfigurationSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Json/src/JsonStreamConfigurationSource.cs" } ], "DocsId": "T:Microsoft.Extensions.Configuration.Json.JsonStreamConfigurationSource", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Json/src/JsonStreamConfigurationSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Json/src/JsonStreamConfigurationSource.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Configuration.KeyPerFile.json b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Configuration.KeyPerFile.json index 019d21fb9ab..2db432a90c7 100644 --- a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Configuration.KeyPerFile.json +++ b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Configuration.KeyPerFile.json @@ -1,93 +1,92 @@ { "Assembly": "Microsoft.Extensions.Configuration.KeyPerFile", - "GUID": "0DAF4BB8303B46B7B0F2C9649DD42E8BFFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "8364C22587F4479187C5C3A265A23314FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.KeyPerFileConfigurationBuilderExtensions.AddKeyPerFile(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.String)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Configuration.KeyPerFile/src/KeyPerFileConfigurationBuilderExtensions.cs#L24C12-L24C88" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Configuration.KeyPerFile/src/KeyPerFileConfigurationBuilderExtensions.cs#L24C12-L24C88" }, { "DocsId": "M:Microsoft.Extensions.Configuration.KeyPerFileConfigurationBuilderExtensions.AddKeyPerFile(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Configuration.KeyPerFile/src/KeyPerFileConfigurationBuilderExtensions.cs#L35C12-L35C81" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Configuration.KeyPerFile/src/KeyPerFileConfigurationBuilderExtensions.cs#L35C12-L35C81" }, { "DocsId": "M:Microsoft.Extensions.Configuration.KeyPerFileConfigurationBuilderExtensions.AddKeyPerFile(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.String,System.Boolean,System.Boolean)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Configuration.KeyPerFile/src/KeyPerFileConfigurationBuilderExtensions.cs#L47C12-L56C11" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Configuration.KeyPerFile/src/KeyPerFileConfigurationBuilderExtensions.cs#L16707566C0-L56C11" }, { "DocsId": "M:Microsoft.Extensions.Configuration.KeyPerFileConfigurationBuilderExtensions.AddKeyPerFile(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.Action{Microsoft.Extensions.Configuration.KeyPerFile.KeyPerFileConfigurationSource})", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Configuration.KeyPerFile/src/KeyPerFileConfigurationBuilderExtensions.cs#L66C12-L66C40" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Configuration.KeyPerFile/src/KeyPerFileConfigurationBuilderExtensions.cs#L66C12-L66C40" } ], "DocsId": "T:Microsoft.Extensions.Configuration.KeyPerFileConfigurationBuilderExtensions", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Configuration.KeyPerFile/src/KeyPerFileConfigurationBuilderExtensions.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Configuration.KeyPerFile/src/KeyPerFileConfigurationBuilderExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.KeyPerFile.KeyPerFileConfigurationProvider.#ctor(Microsoft.Extensions.Configuration.KeyPerFile.KeyPerFileConfigurationSource)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Configuration.KeyPerFile/src/KeyPerFileConfigurationProvider.cs#L25C5-L40C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Configuration.KeyPerFile/src/KeyPerFileConfigurationProvider.cs#L25C5-L40C6" }, { "DocsId": "M:Microsoft.Extensions.Configuration.KeyPerFile.KeyPerFileConfigurationProvider.Load", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Configuration.KeyPerFile/src/KeyPerFileConfigurationProvider.cs#L55C9-L56C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Configuration.KeyPerFile/src/KeyPerFileConfigurationProvider.cs#L55C9-L56C6" }, { "DocsId": "M:Microsoft.Extensions.Configuration.KeyPerFile.KeyPerFileConfigurationProvider.ToString", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Configuration.KeyPerFile/src/KeyPerFileConfigurationProvider.cs#L117C12-L117C115" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Configuration.KeyPerFile/src/KeyPerFileConfigurationProvider.cs#L117C12-L117C115" }, { "DocsId": "M:Microsoft.Extensions.Configuration.KeyPerFile.KeyPerFileConfigurationProvider.Dispose", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Configuration.KeyPerFile/src/KeyPerFileConfigurationProvider.cs#L122C9-L123C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Configuration.KeyPerFile/src/KeyPerFileConfigurationProvider.cs#L122C9-L123C6" } ], "DocsId": "T:Microsoft.Extensions.Configuration.KeyPerFile.KeyPerFileConfigurationProvider", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Configuration.KeyPerFile/src/KeyPerFileConfigurationProvider.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Configuration.KeyPerFile/src/KeyPerFileConfigurationProvider.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.KeyPerFile.KeyPerFileConfigurationSource.#ctor", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Configuration.KeyPerFile/src/KeyPerFileConfigurationSource.cs#L29C48-L18C111" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Configuration.KeyPerFile/src/KeyPerFileConfigurationSource.cs#L29C48-L18C111" }, { "DocsId": "M:Microsoft.Extensions.Configuration.KeyPerFile.KeyPerFileConfigurationSource.Build(Microsoft.Extensions.Configuration.IConfigurationBuilder)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Configuration.KeyPerFile/src/KeyPerFileConfigurationSource.cs#L65C12-L65C53" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Configuration.KeyPerFile/src/KeyPerFileConfigurationSource.cs#L65C12-L65C53" }, { "DocsId": "P:Microsoft.Extensions.Configuration.KeyPerFile.KeyPerFileConfigurationSource.FileProvider", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Configuration.KeyPerFile/src/KeyPerFileConfigurationSource.cs#L23C42-L23C46" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Configuration.KeyPerFile/src/KeyPerFileConfigurationSource.cs#L23C42-L23C46" }, { "DocsId": "P:Microsoft.Extensions.Configuration.KeyPerFile.KeyPerFileConfigurationSource.IgnorePrefix", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Configuration.KeyPerFile/src/KeyPerFileConfigurationSource.cs#L29C34-L29C38" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Configuration.KeyPerFile/src/KeyPerFileConfigurationSource.cs#L29C34-L29C38" }, { "DocsId": "P:Microsoft.Extensions.Configuration.KeyPerFile.KeyPerFileConfigurationSource.IgnoreCondition", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Configuration.KeyPerFile/src/KeyPerFileConfigurationSource.cs#L35C49-L35C53" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Configuration.KeyPerFile/src/KeyPerFileConfigurationSource.cs#L35C49-L35C53" }, { "DocsId": "P:Microsoft.Extensions.Configuration.KeyPerFile.KeyPerFileConfigurationSource.Optional", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Configuration.KeyPerFile/src/KeyPerFileConfigurationSource.cs#L40C28-L40C32" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Configuration.KeyPerFile/src/KeyPerFileConfigurationSource.cs#L40C28-L40C32" }, { "DocsId": "P:Microsoft.Extensions.Configuration.KeyPerFile.KeyPerFileConfigurationSource.ReloadOnChange", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Configuration.KeyPerFile/src/KeyPerFileConfigurationSource.cs#L45C34-L45C38" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Configuration.KeyPerFile/src/KeyPerFileConfigurationSource.cs#L45C34-L45C38" }, { "DocsId": "P:Microsoft.Extensions.Configuration.KeyPerFile.KeyPerFileConfigurationSource.ReloadDelay", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Configuration.KeyPerFile/src/KeyPerFileConfigurationSource.cs#L51C30-L51C34" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Configuration.KeyPerFile/src/KeyPerFileConfigurationSource.cs#L51C30-L51C34" }, { "DocsId": "P:Microsoft.Extensions.Configuration.KeyPerFile.KeyPerFileConfigurationSource.SectionDelimiter", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Configuration.KeyPerFile/src/KeyPerFileConfigurationSource.cs#L57C38-L57C42" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Configuration.KeyPerFile/src/KeyPerFileConfigurationSource.cs#L57C38-L57C42" } ], "DocsId": "T:Microsoft.Extensions.Configuration.KeyPerFile.KeyPerFileConfigurationSource", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Configuration.KeyPerFile/src/KeyPerFileConfigurationSource.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Configuration.KeyPerFile/src/KeyPerFileConfigurationSource.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Configuration.UserSecrets.json b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Configuration.UserSecrets.json index 73a24fa4382..3d161d4cb34 100644 --- a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Configuration.UserSecrets.json +++ b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Configuration.UserSecrets.json @@ -1,73 +1,72 @@ { "Assembly": "Microsoft.Extensions.Configuration.UserSecrets", - "GUID": "B9F2137B41B84F09877FDD2890B7D6D9FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "E1813CF6E95342F78528DF98B08BBDE1FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.UserSecretsConfigurationExtensions.AddUserSecrets``1(Microsoft.Extensions.Configuration.IConfigurationBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.UserSecrets/src/UserSecretsConfigurationExtensions.cs#L32C16-L32C103" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.UserSecrets/src/UserSecretsConfigurationExtensions.cs#L32C16-L32C103" }, { "DocsId": "M:Microsoft.Extensions.Configuration.UserSecretsConfigurationExtensions.AddUserSecrets``1(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.UserSecrets/src/UserSecretsConfigurationExtensions.cs#L50C16-L50C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.UserSecrets/src/UserSecretsConfigurationExtensions.cs#L50C16-L50C97" }, { "DocsId": "M:Microsoft.Extensions.Configuration.UserSecretsConfigurationExtensions.AddUserSecrets``1(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.Boolean,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.UserSecrets/src/UserSecretsConfigurationExtensions.cs#L69C16-L69C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.UserSecrets/src/UserSecretsConfigurationExtensions.cs#L69C16-L69C90" }, { "DocsId": "M:Microsoft.Extensions.Configuration.UserSecretsConfigurationExtensions.AddUserSecrets(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.Reflection.Assembly)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.UserSecrets/src/UserSecretsConfigurationExtensions.cs#L85C16-L85C93" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.UserSecrets/src/UserSecretsConfigurationExtensions.cs#L85C16-L85C93" }, { "DocsId": "M:Microsoft.Extensions.Configuration.UserSecretsConfigurationExtensions.AddUserSecrets(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.Reflection.Assembly,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.UserSecrets/src/UserSecretsConfigurationExtensions.cs#L102C16-L102C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.UserSecrets/src/UserSecretsConfigurationExtensions.cs#L102C16-L102C87" }, { "DocsId": "M:Microsoft.Extensions.Configuration.UserSecretsConfigurationExtensions.AddUserSecrets(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.Reflection.Assembly,System.Boolean,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.UserSecrets/src/UserSecretsConfigurationExtensions.cs#L121C13-L135C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.UserSecrets/src/UserSecretsConfigurationExtensions.cs#L121C13-L135C34" }, { "DocsId": "M:Microsoft.Extensions.Configuration.UserSecretsConfigurationExtensions.AddUserSecrets(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.UserSecrets/src/UserSecretsConfigurationExtensions.cs#L150C16-L150C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.UserSecrets/src/UserSecretsConfigurationExtensions.cs#L150C16-L150C82" }, { "DocsId": "M:Microsoft.Extensions.Configuration.UserSecretsConfigurationExtensions.AddUserSecrets(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.UserSecrets/src/UserSecretsConfigurationExtensions.cs#L165C16-L165C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.UserSecrets/src/UserSecretsConfigurationExtensions.cs#L165C16-L165C90" } ], "DocsId": "T:Microsoft.Extensions.Configuration.UserSecretsConfigurationExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.UserSecrets/src/UserSecretsConfigurationExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.UserSecrets/src/UserSecretsConfigurationExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.UserSecrets.PathHelper.GetSecretsPathFromSecretsId(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.UserSecrets/src/PathHelper.cs#L28C13-L28C92" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.UserSecrets/src/PathHelper.cs#L28C13-L28C92" }, { "DocsId": "M:Microsoft.Extensions.Configuration.UserSecrets.PathHelper.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.UserSecrets/src/PathHelper.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.UserSecrets/src/PathHelper.cs" } ], "DocsId": "T:Microsoft.Extensions.Configuration.UserSecrets.PathHelper", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.UserSecrets/src/PathHelper.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.UserSecrets/src/PathHelper.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.UserSecrets.UserSecretsIdAttribute.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.UserSecrets/src/UserSecretsIdAttribute.cs#L25C9-L33C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.UserSecrets/src/UserSecretsIdAttribute.cs#L25C9-L33C10" }, { "DocsId": "P:Microsoft.Extensions.Configuration.UserSecrets.UserSecretsIdAttribute.UserSecretsId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.UserSecrets/src/UserSecretsIdAttribute.cs#L38C39-L38C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.UserSecrets/src/UserSecretsIdAttribute.cs#L38C39-L38C43" } ], "DocsId": "T:Microsoft.Extensions.Configuration.UserSecrets.UserSecretsIdAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.UserSecrets/src/UserSecretsIdAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.UserSecrets/src/UserSecretsIdAttribute.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Configuration.Xml.json b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Configuration.Xml.json index d6d7dc6f035..87ac12d8d9a 100644 --- a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Configuration.Xml.json +++ b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Configuration.Xml.json @@ -1,119 +1,118 @@ { "Assembly": "Microsoft.Extensions.Configuration.Xml", - "GUID": "B5D14E55D8A9402C9AED6C87C8D56C55FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "ABA2BAF7E4BA4A79A1321C3BB88DB1BCFFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.XmlConfigurationExtensions.AddXmlFile(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlConfigurationExtensions.cs#L28C13-L28C108" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlConfigurationExtensions.cs#L28C13-L28C108" }, { "DocsId": "M:Microsoft.Extensions.Configuration.XmlConfigurationExtensions.AddXmlFile(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlConfigurationExtensions.cs#L43C13-L43C111" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlConfigurationExtensions.cs#L43C13-L43C111" }, { "DocsId": "M:Microsoft.Extensions.Configuration.XmlConfigurationExtensions.AddXmlFile(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.String,System.Boolean,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlConfigurationExtensions.cs#L59C13-L59C120" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlConfigurationExtensions.cs#L59C13-L59C120" }, { "DocsId": "M:Microsoft.Extensions.Configuration.XmlConfigurationExtensions.AddXmlFile(Microsoft.Extensions.Configuration.IConfigurationBuilder,Microsoft.Extensions.FileProviders.IFileProvider,System.String,System.Boolean,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlConfigurationExtensions.cs#L76C13-L90C16" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlConfigurationExtensions.cs#L16707566C0-L90C16" }, { "DocsId": "M:Microsoft.Extensions.Configuration.XmlConfigurationExtensions.AddXmlFile(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.Action{Microsoft.Extensions.Configuration.Xml.XmlConfigurationSource})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlConfigurationExtensions.cs#L102C16-L102C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlConfigurationExtensions.cs#L102C16-L102C44" }, { "DocsId": "M:Microsoft.Extensions.Configuration.XmlConfigurationExtensions.AddXmlStream(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlConfigurationExtensions.cs#L114C13-L116C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlConfigurationExtensions.cs#L16707566C0-L116C86" } ], "DocsId": "T:Microsoft.Extensions.Configuration.XmlConfigurationExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlConfigurationExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlConfigurationExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.Xml.XmlConfigurationProvider.#ctor(Microsoft.Extensions.Configuration.Xml.XmlConfigurationSource)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlConfigurationProvider.cs#L22C65-L20C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlConfigurationProvider.cs#L22C65-L20C90" }, { "DocsId": "M:Microsoft.Extensions.Configuration.Xml.XmlConfigurationProvider.Load(System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlConfigurationProvider.cs#L30C13-L31C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlConfigurationProvider.cs#L30C13-L31C10" } ], "DocsId": "T:Microsoft.Extensions.Configuration.Xml.XmlConfigurationProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlConfigurationProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlConfigurationProvider.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.Xml.XmlConfigurationSource.Build(Microsoft.Extensions.Configuration.IConfigurationBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlConfigurationSource.cs#L22C13-L23C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlConfigurationSource.cs#L22C13-L23C55" }, { "DocsId": "M:Microsoft.Extensions.Configuration.Xml.XmlConfigurationSource.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlConfigurationSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlConfigurationSource.cs" } ], "DocsId": "T:Microsoft.Extensions.Configuration.Xml.XmlConfigurationSource", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlConfigurationSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlConfigurationSource.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.Xml.XmlDocumentDecryptor.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlDocumentDecryptor.cs#L32C9-L35C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlDocumentDecryptor.cs#L32C9-L35C10" }, { "DocsId": "M:Microsoft.Extensions.Configuration.Xml.XmlDocumentDecryptor.CreateDecryptingXmlReader(System.IO.Stream,System.Xml.XmlReaderSettings)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlDocumentDecryptor.cs#L66C13-L91C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlDocumentDecryptor.cs#L66C13-L91C62" }, { "DocsId": "M:Microsoft.Extensions.Configuration.Xml.XmlDocumentDecryptor.DecryptDocumentAndCreateXmlReader(System.Xml.XmlDocument)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlDocumentDecryptor.cs#L106C13-L112C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlDocumentDecryptor.cs#L106C13-L112C62" }, { "DocsId": "F:Microsoft.Extensions.Configuration.Xml.XmlDocumentDecryptor.Instance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlDocumentDecryptor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlDocumentDecryptor.cs" } ], "DocsId": "T:Microsoft.Extensions.Configuration.Xml.XmlDocumentDecryptor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlDocumentDecryptor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlDocumentDecryptor.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.Xml.XmlStreamConfigurationProvider.#ctor(Microsoft.Extensions.Configuration.Xml.XmlStreamConfigurationSource)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlStreamConfigurationProvider.cs#L31C86-L31C102" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlStreamConfigurationProvider.cs#L31C86-L31C102" }, { "DocsId": "M:Microsoft.Extensions.Configuration.Xml.XmlStreamConfigurationProvider.Read(System.IO.Stream,Microsoft.Extensions.Configuration.Xml.XmlDocumentDecryptor)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlStreamConfigurationProvider.cs#L41C13-L180C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlStreamConfigurationProvider.cs#L41C13-L180C47" }, { "DocsId": "M:Microsoft.Extensions.Configuration.Xml.XmlStreamConfigurationProvider.Load(System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlStreamConfigurationProvider.cs#L189C13-L190C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlStreamConfigurationProvider.cs#L189C13-L190C10" } ], "DocsId": "T:Microsoft.Extensions.Configuration.Xml.XmlStreamConfigurationProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlStreamConfigurationProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlStreamConfigurationProvider.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.Xml.XmlStreamConfigurationSource.Build(Microsoft.Extensions.Configuration.IConfigurationBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlStreamConfigurationSource.cs#L21C16-L21C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlStreamConfigurationSource.cs#L21C16-L21C56" }, { "DocsId": "M:Microsoft.Extensions.Configuration.Xml.XmlStreamConfigurationSource.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlStreamConfigurationSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlStreamConfigurationSource.cs" } ], "DocsId": "T:Microsoft.Extensions.Configuration.Xml.XmlStreamConfigurationSource", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlStreamConfigurationSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlStreamConfigurationSource.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Configuration.json b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Configuration.json index a77a0def6e3..1681b378ba0 100644 --- a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Configuration.json +++ b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Configuration.json @@ -1,425 +1,424 @@ { "Assembly": "Microsoft.Extensions.Configuration", - "GUID": "D20ED08639BE4E0D9BC234CFC5219E32FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "E9B6F24FEECA460289CC91B4404C1DF3FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.ChainedBuilderExtensions.AddConfiguration(Microsoft.Extensions.Configuration.IConfigurationBuilder,Microsoft.Extensions.Configuration.IConfiguration)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ChainedBuilderExtensions.cs#L21C16-L21C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ChainedBuilderExtensions.cs#L21C16-L21C97" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ChainedBuilderExtensions.AddConfiguration(Microsoft.Extensions.Configuration.IConfigurationBuilder,Microsoft.Extensions.Configuration.IConfiguration,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ChainedBuilderExtensions.cs#L32C13-L40C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ChainedBuilderExtensions.cs#L32C13-L40C41" } ], "DocsId": "T:Microsoft.Extensions.Configuration.ChainedBuilderExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ChainedBuilderExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ChainedBuilderExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.ChainedConfigurationProvider.#ctor(Microsoft.Extensions.Configuration.ChainedConfigurationSource)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ChainedConfigurationProvider.cs#L22C9-L28C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ChainedConfigurationProvider.cs#L22C9-L28C10" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ChainedConfigurationProvider.TryGet(System.String,System.String@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ChainedConfigurationProvider.cs#L43C13-L44C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ChainedConfigurationProvider.cs#L43C13-L44C49" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ChainedConfigurationProvider.Set(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ChainedConfigurationProvider.cs#L52C55-L52C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ChainedConfigurationProvider.cs#L52C55-L52C75" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ChainedConfigurationProvider.GetReloadToken", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ChainedConfigurationProvider.cs#L58C49-L58C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ChainedConfigurationProvider.cs#L58C49-L58C73" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ChainedConfigurationProvider.Load", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ChainedConfigurationProvider.cs#L63C30-L63C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ChainedConfigurationProvider.cs#L63C30-L63C31" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ChainedConfigurationProvider.GetChildKeys(System.Collections.Generic.IEnumerable{System.String},System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ChainedConfigurationProvider.cs#L77C13-L85C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ChainedConfigurationProvider.cs#L77C13-L85C25" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ChainedConfigurationProvider.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ChainedConfigurationProvider.cs#L91C13-L95C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ChainedConfigurationProvider.cs#L91C13-L95C10" }, { "DocsId": "P:Microsoft.Extensions.Configuration.ChainedConfigurationProvider.Configuration", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ChainedConfigurationProvider.cs#L33C48-L33C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ChainedConfigurationProvider.cs#L33C48-L33C55" } ], "DocsId": "T:Microsoft.Extensions.Configuration.ChainedConfigurationProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ChainedConfigurationProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ChainedConfigurationProvider.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.ChainedConfigurationSource.Build(Microsoft.Extensions.Configuration.IConfigurationBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ChainedConfigurationSource.cs#L31C16-L31C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ChainedConfigurationSource.cs#L31C16-L31C54" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ChainedConfigurationSource.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ChainedConfigurationSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ChainedConfigurationSource.cs" }, { "DocsId": "P:Microsoft.Extensions.Configuration.ChainedConfigurationSource.Configuration", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ChainedConfigurationSource.cs#L17C48-L17C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ChainedConfigurationSource.cs#L17C48-L17C52" }, { "DocsId": "P:Microsoft.Extensions.Configuration.ChainedConfigurationSource.ShouldDisposeConfiguration", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ChainedConfigurationSource.cs#L23C50-L23C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ChainedConfigurationSource.cs#L23C50-L23C54" } ], "DocsId": "T:Microsoft.Extensions.Configuration.ChainedConfigurationSource", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ChainedConfigurationSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ChainedConfigurationSource.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationBuilder.Add(Microsoft.Extensions.Configuration.IConfigurationSource)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationBuilder.cs#L34C13-L37C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationBuilder.cs#L34C13-L37C25" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationBuilder.Build", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationBuilder.cs#L47C13-L53C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationBuilder.cs#L47C13-L53C53" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationBuilder.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationBuilder.cs#L14C9-L25C98" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationBuilder.cs#L14C9-L25C98" }, { "DocsId": "P:Microsoft.Extensions.Configuration.ConfigurationBuilder.Sources", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationBuilder.cs#L19C55-L19C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationBuilder.cs#L19C55-L19C63" }, { "DocsId": "P:Microsoft.Extensions.Configuration.ConfigurationBuilder.Properties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationBuilder.cs#L25C57-L25C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationBuilder.cs#L25C57-L25C61" } ], "DocsId": "T:Microsoft.Extensions.Configuration.ConfigurationBuilder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationBuilder.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationKeyComparer.Compare(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationKeyComparer.cs#L32C13-L59C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationKeyComparer.cs#L32C13-L59C65" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationKeyComparer.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationKeyComparer.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationKeyComparer.cs" }, { "DocsId": "P:Microsoft.Extensions.Configuration.ConfigurationKeyComparer.Instance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationKeyComparer.cs#L19C59-L19C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationKeyComparer.cs#L19C59-L19C63" } ], "DocsId": "T:Microsoft.Extensions.Configuration.ConfigurationKeyComparer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationKeyComparer.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationKeyComparer.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationManager.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationManager.cs#L33C9-L50C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationManager.cs#L33C9-L50C10" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationManager.GetSection(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationManager.cs#L68C64-L68C99" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationManager.cs#L68C64-L68C99" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationManager.GetChildren", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationManager.cs#L71C68-L71C104" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationManager.cs#L71C68-L71C104" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationManager.Microsoft#Extensions#Configuration#IConfigurationBuilder#get_Properties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationManager.cs#L73C73-L73C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationManager.cs#L73C73-L73C84" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationManager.Microsoft#Extensions#Configuration#IConfigurationRoot#get_Providers", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationManager.cs#L81C77-L81C122" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationManager.cs#L81C77-L81C122" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationManager.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationManager.cs#L86C13-L88C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationManager.cs#L86C13-L88C10" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationManager.Microsoft#Extensions#Configuration#IConfigurationBuilder#Add(Microsoft.Extensions.Configuration.IConfigurationSource)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationManager.cs#L92C13-L95C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationManager.cs#L92C13-L95C25" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationManager.Microsoft#Extensions#Configuration#IConfigurationBuilder#Build", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationManager.cs#L98C61-L98C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationManager.cs#L98C61-L98C65" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationManager.Microsoft#Extensions#Configuration#IConfiguration#GetReloadToken", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationManager.cs#L100C57-L100C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationManager.cs#L100C57-L100C69" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationManager.Microsoft#Extensions#Configuration#IConfigurationRoot#Reload", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationManager.cs#L104C20-L113C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationManager.cs#L104C20-L113C10" }, { "DocsId": "P:Microsoft.Extensions.Configuration.ConfigurationManager.Item(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationManager.cs#L57C17-L59C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationManager.cs#L57C17-L59C14" }, { "DocsId": "P:Microsoft.Extensions.Configuration.ConfigurationManager.Microsoft#Extensions#Configuration#IConfigurationBuilder#Properties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationManager.cs#L73C73-L73C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationManager.cs#L73C73-L73C84" }, { "DocsId": "P:Microsoft.Extensions.Configuration.ConfigurationManager.Sources", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationManager.cs#L76C55-L76C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationManager.cs#L76C55-L76C63" }, { "DocsId": "P:Microsoft.Extensions.Configuration.ConfigurationManager.Microsoft#Extensions#Configuration#IConfigurationRoot#Providers", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationManager.cs#L81C77-L81C122" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationManager.cs#L81C77-L81C122" } ], "DocsId": "T:Microsoft.Extensions.Configuration.ConfigurationManager", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationManager.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationManager.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationProvider.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationProvider.cs#L17C9-L25C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationProvider.cs#L17C9-L25C10" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationProvider.TryGet(System.String,System.String@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationProvider.cs#L39C16-L39C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationProvider.cs#L39C16-L39C48" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationProvider.Set(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationProvider.cs#L47C16-L47C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationProvider.cs#L47C16-L47C33" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationProvider.Load", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationProvider.cs#L53C11-L53C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationProvider.cs#L53C11-L53C12" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationProvider.GetChildKeys(System.Collections.Generic.IEnumerable{System.String},System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationProvider.cs#L65C13-L93C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationProvider.cs#L65C13-L93C28" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationProvider.GetReloadToken", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationProvider.cs#L109C13-L109C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationProvider.cs#L109C13-L109C33" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationProvider.OnReload", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationProvider.cs#L117C13-L119C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationProvider.cs#L117C13-L119C10" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationProvider.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationProvider.cs#L125C46-L125C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationProvider.cs#L125C46-L125C60" }, { "DocsId": "P:Microsoft.Extensions.Configuration.ConfigurationProvider.Data", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationProvider.cs#L30C55-L30C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationProvider.cs#L30C55-L30C59" } ], "DocsId": "T:Microsoft.Extensions.Configuration.ConfigurationProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationProvider.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationReloadToken.RegisterChangeCallback(System.Action{System.Object},System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationReloadToken.cs#L39C13-L44C23" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationReloadToken.cs#L39C13-L44C23" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationReloadToken.OnReload", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationReloadToken.cs#L50C35-L50C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationReloadToken.cs#L50C35-L50C48" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationReloadToken.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationReloadToken.cs#L16C9-L22C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationReloadToken.cs#L16C9-L22C71" }, { "DocsId": "P:Microsoft.Extensions.Configuration.ConfigurationReloadToken.ActiveChangeCallbacks", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationReloadToken.cs#L22C45-L22C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationReloadToken.cs#L22C45-L22C49" }, { "DocsId": "P:Microsoft.Extensions.Configuration.ConfigurationReloadToken.HasChanged", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationReloadToken.cs#L28C35-L28C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationReloadToken.cs#L28C35-L28C63" } ], "DocsId": "T:Microsoft.Extensions.Configuration.ConfigurationReloadToken", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationReloadToken.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationReloadToken.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationRoot.#ctor(System.Collections.Generic.IList{Microsoft.Extensions.Configuration.IConfigurationProvider})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationRoot.cs#L21C9-L38C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationRoot.cs#L21C9-L38C10" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationRoot.GetChildren", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationRoot.cs#L60C68-L60C104" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationRoot.cs#L60C68-L60C104" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationRoot.GetReloadToken", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationRoot.cs#L66C49-L66C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationRoot.cs#L66C49-L66C61" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationRoot.GetSection(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationRoot.cs#L78C16-L78C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationRoot.cs#L78C16-L78C51" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationRoot.Reload", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationRoot.cs#L85C57-L90C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationRoot.cs#L85C57-L90C10" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationRoot.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationRoot.cs#L102C50-L112C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationRoot.cs#L102C50-L112C10" }, { "DocsId": "P:Microsoft.Extensions.Configuration.ConfigurationRoot.Providers", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationRoot.cs#L43C65-L43C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationRoot.cs#L43C65-L43C75" }, { "DocsId": "P:Microsoft.Extensions.Configuration.ConfigurationRoot.Item(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationRoot.cs#L52C20-L52C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationRoot.cs#L52C20-L52C53" } ], "DocsId": "T:Microsoft.Extensions.Configuration.ConfigurationRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationRoot.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationRoot.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationSection.#ctor(Microsoft.Extensions.Configuration.IConfigurationRoot,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationSection.cs#L27C9-L34C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationSection.cs#L27C9-L34C10" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationSection.GetSection(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationSection.cs#L89C64-L89C125" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationSection.cs#L89C64-L89C125" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationSection.GetChildren", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationSection.cs#L95C68-L95C105" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationSection.cs#L95C68-L95C105" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationSection.GetReloadToken", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationSection.cs#L101C49-L101C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationSection.cs#L101C49-L101C71" }, { "DocsId": "P:Microsoft.Extensions.Configuration.ConfigurationSection.Path", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationSection.cs#L39C31-L39C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationSection.cs#L39C31-L39C36" }, { "DocsId": "P:Microsoft.Extensions.Configuration.ConfigurationSection.Key", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationSection.cs#L46C13-L46C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationSection.cs#L46C13-L46C60" }, { "DocsId": "P:Microsoft.Extensions.Configuration.ConfigurationSection.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationSection.cs#L55C17-L55C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationSection.cs#L55C17-L55C36" }, { "DocsId": "P:Microsoft.Extensions.Configuration.ConfigurationSection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationSection.cs#L72C17-L72C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationSection.cs#L72C17-L72C75" } ], "DocsId": "T:Microsoft.Extensions.Configuration.ConfigurationSection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationSection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationSection.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.MemoryConfigurationBuilderExtensions.AddInMemoryCollection(Microsoft.Extensions.Configuration.IConfigurationBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/MemoryConfigurationBuilderExtensions.cs#L22C13-L25C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/MemoryConfigurationBuilderExtensions.cs#L22C13-L25C41" }, { "DocsId": "M:Microsoft.Extensions.Configuration.MemoryConfigurationBuilderExtensions.AddInMemoryCollection(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{System.String,System.String}})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/MemoryConfigurationBuilderExtensions.cs#L38C13-L41C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/MemoryConfigurationBuilderExtensions.cs#L38C13-L41C41" } ], "DocsId": "T:Microsoft.Extensions.Configuration.MemoryConfigurationBuilderExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/MemoryConfigurationBuilderExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/MemoryConfigurationBuilderExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.StreamConfigurationProvider.#ctor(Microsoft.Extensions.Configuration.StreamConfigurationSource)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/StreamConfigurationProvider.cs#L25C9-L30C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/StreamConfigurationProvider.cs#L25C9-L30C10" }, { "DocsId": "M:Microsoft.Extensions.Configuration.StreamConfigurationProvider.Load(System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/StreamConfigurationProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/StreamConfigurationProvider.cs" }, { "DocsId": "M:Microsoft.Extensions.Configuration.StreamConfigurationProvider.Load", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/StreamConfigurationProvider.cs#L43C13-L55C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/StreamConfigurationProvider.cs#L43C13-L55C10" }, { "DocsId": "P:Microsoft.Extensions.Configuration.StreamConfigurationProvider.Source", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/StreamConfigurationProvider.cs#L17C51-L17C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/StreamConfigurationProvider.cs#L17C51-L17C55" } ], "DocsId": "T:Microsoft.Extensions.Configuration.StreamConfigurationProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/StreamConfigurationProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/StreamConfigurationProvider.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.StreamConfigurationSource.Build(Microsoft.Extensions.Configuration.IConfigurationBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/StreamConfigurationSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/StreamConfigurationSource.cs" }, { "DocsId": "M:Microsoft.Extensions.Configuration.StreamConfigurationSource.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/StreamConfigurationSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/StreamConfigurationSource.cs" }, { "DocsId": "P:Microsoft.Extensions.Configuration.StreamConfigurationSource.Stream", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/StreamConfigurationSource.cs#L18C33-L18C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/StreamConfigurationSource.cs#L18C33-L18C37" } ], "DocsId": "T:Microsoft.Extensions.Configuration.StreamConfigurationSource", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/StreamConfigurationSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/StreamConfigurationSource.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.Memory.MemoryConfigurationProvider.#ctor(Microsoft.Extensions.Configuration.Memory.MemoryConfigurationSource)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/MemoryConfigurationProvider.cs#L21C9-L34C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/MemoryConfigurationProvider.cs#L21C9-L34C10" }, { "DocsId": "M:Microsoft.Extensions.Configuration.Memory.MemoryConfigurationProvider.Add(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/MemoryConfigurationProvider.cs#L43C13-L44C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/MemoryConfigurationProvider.cs#L43C13-L44C10" }, { "DocsId": "M:Microsoft.Extensions.Configuration.Memory.MemoryConfigurationProvider.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/MemoryConfigurationProvider.cs#L52C13-L52C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/MemoryConfigurationProvider.cs#L52C13-L52C41" }, { "DocsId": "M:Microsoft.Extensions.Configuration.Memory.MemoryConfigurationProvider.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/MemoryConfigurationProvider.cs#L61C13-L61C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/MemoryConfigurationProvider.cs#L61C13-L61C36" } ], "DocsId": "T:Microsoft.Extensions.Configuration.Memory.MemoryConfigurationProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/MemoryConfigurationProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/MemoryConfigurationProvider.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.Memory.MemoryConfigurationSource.Build(Microsoft.Extensions.Configuration.IConfigurationBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/MemoryConfigurationSource.cs#L25C13-L25C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/MemoryConfigurationSource.cs#L25C13-L25C58" }, { "DocsId": "M:Microsoft.Extensions.Configuration.Memory.MemoryConfigurationSource.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/MemoryConfigurationSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/MemoryConfigurationSource.cs" }, { "DocsId": "P:Microsoft.Extensions.Configuration.Memory.MemoryConfigurationSource.InitialData", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/MemoryConfigurationSource.cs#L16C74-L16C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/MemoryConfigurationSource.cs#L16C74-L16C78" } ], "DocsId": "T:Microsoft.Extensions.Configuration.Memory.MemoryConfigurationSource", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/MemoryConfigurationSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/MemoryConfigurationSource.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.DependencyInjection.Abstractions.json b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.DependencyInjection.Abstractions.json index 79f56396005..c61d0b9278c 100644 --- a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.DependencyInjection.Abstractions.json +++ b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.DependencyInjection.Abstractions.json @@ -1,1000 +1,999 @@ { "Assembly": "Microsoft.Extensions.DependencyInjection.Abstractions", - "GUID": "215D67BACFD84ECBA84F55B77A2D70A0FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "6DB970BE451E4145B1B6A0C89C81F71EFFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ActivatorUtilities.CreateInstance(System.IServiceProvider,System.Type,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ActivatorUtilities.cs#L52C13-L192C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ActivatorUtilities.cs#L52C13-L192C53" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ActivatorUtilities.CreateFactory(System.Type,System.Type[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ActivatorUtilities.cs#L281C13-L298C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ActivatorUtilities.cs#L281C13-L298C34" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ActivatorUtilities.CreateFactory``1(System.Type[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ActivatorUtilities.cs#L318C13-L331C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ActivatorUtilities.cs#L318C13-L331C34" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ActivatorUtilities.CreateInstance``1(System.IServiceProvider,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ActivatorUtilities.cs#L352C13-L352C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ActivatorUtilities.cs#L352C13-L352C71" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ActivatorUtilities.GetServiceOrCreateInstance``1(System.IServiceProvider)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ActivatorUtilities.cs#L363C13-L363C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ActivatorUtilities.cs#L363C13-L363C71" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ActivatorUtilities.GetServiceOrCreateInstance(System.IServiceProvider,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ActivatorUtilities.cs#L376C13-L376C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ActivatorUtilities.cs#L376C13-L376C80" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.ActivatorUtilities", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ActivatorUtilities.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ActivatorUtilities.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ActivatorUtilitiesConstructorAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ActivatorUtilitiesConstructorAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ActivatorUtilitiesConstructorAttribute.cs" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.ActivatorUtilitiesConstructorAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ActivatorUtilitiesConstructorAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ActivatorUtilitiesConstructorAttribute.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.AsyncServiceScope.#ctor(Microsoft.Extensions.DependencyInjection.IServiceScope)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/AsyncServiceScope.cs#L25C13-L28C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/AsyncServiceScope.cs#L25C13-L28C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.AsyncServiceScope.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/AsyncServiceScope.cs#L36C13-L37C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/AsyncServiceScope.cs#L36C13-L37C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.AsyncServiceScope.DisposeAsync", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/AsyncServiceScope.cs#L42C13-L49C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/AsyncServiceScope.cs#L42C13-L49C28" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.AsyncServiceScope.ServiceProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/AsyncServiceScope.cs#L31C52-L31C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/AsyncServiceScope.cs#L31C52-L31C81" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.AsyncServiceScope", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/AsyncServiceScope.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/AsyncServiceScope.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.FromKeyedServicesAttribute.#ctor(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/FromKeyedServicesAttribute.cs#L18C9-L18C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/FromKeyedServicesAttribute.cs#L18C9-L18C67" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.FromKeyedServicesAttribute.Key", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/FromKeyedServicesAttribute.cs#L23C29-L23C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/FromKeyedServicesAttribute.cs#L23C29-L23C33" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.FromKeyedServicesAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/FromKeyedServicesAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/FromKeyedServicesAttribute.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.IKeyedServiceProvider.GetKeyedService(System.Type,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/IKeyedServiceProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/IKeyedServiceProvider.cs" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.IKeyedServiceProvider.GetRequiredKeyedService(System.Type,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/IKeyedServiceProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/IKeyedServiceProvider.cs" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.IKeyedServiceProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/IKeyedServiceProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/IKeyedServiceProvider.cs" }, { "Members": [ { "DocsId": "P:Microsoft.Extensions.DependencyInjection.KeyedService.AnyKey", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/IKeyedServiceProvider.cs#L41C39-L41C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/IKeyedServiceProvider.cs#L41C39-L41C43" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.KeyedService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/IKeyedServiceProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/IKeyedServiceProvider.cs" }, { "Members": [], "DocsId": "T:Microsoft.Extensions.DependencyInjection.IServiceCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/IServiceCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/IServiceCollection.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.IServiceProviderFactory`1.CreateBuilder(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/IServiceProviderFactory.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/IServiceProviderFactory.cs" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.IServiceProviderFactory`1.CreateServiceProvider(`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/IServiceProviderFactory.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/IServiceProviderFactory.cs" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.IServiceProviderFactory`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/IServiceProviderFactory.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/IServiceProviderFactory.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.IServiceProviderIsKeyedService.IsKeyedService(System.Type,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/IServiceProviderIsKeyedService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/IServiceProviderIsKeyedService.cs" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.IServiceProviderIsKeyedService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/IServiceProviderIsKeyedService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/IServiceProviderIsKeyedService.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.IServiceProviderIsService.IsService(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/IServiceProviderIsService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/IServiceProviderIsService.cs" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.IServiceProviderIsService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/IServiceProviderIsService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/IServiceProviderIsService.cs" }, { "Members": [ { "DocsId": "P:Microsoft.Extensions.DependencyInjection.IServiceScope.ServiceProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/IServiceScope.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/IServiceScope.cs" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.IServiceScope", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/IServiceScope.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/IServiceScope.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.IServiceScopeFactory.CreateScope", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/IServiceScopeFactory.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/IServiceScopeFactory.cs" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.IServiceScopeFactory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/IServiceScopeFactory.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/IServiceScopeFactory.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ISupportRequiredService.GetRequiredService(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ISupportRequiredService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ISupportRequiredService.cs" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.ISupportRequiredService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ISupportRequiredService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ISupportRequiredService.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ObjectFactory.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ObjectFactory.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ObjectFactory.cs" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ObjectFactory.Invoke(System.IServiceProvider,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ObjectFactory.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ObjectFactory.cs" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ObjectFactory.BeginInvoke(System.IServiceProvider,System.Object[],System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ObjectFactory.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ObjectFactory.cs" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ObjectFactory.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ObjectFactory.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ObjectFactory.cs" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.ObjectFactory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ObjectFactory.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ObjectFactory.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ObjectFactory`1.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ObjectFactoryT.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ObjectFactoryT.cs" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ObjectFactory`1.Invoke(System.IServiceProvider,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ObjectFactoryT.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ObjectFactoryT.cs" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ObjectFactory`1.BeginInvoke(System.IServiceProvider,System.Object[],System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ObjectFactoryT.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ObjectFactoryT.cs" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ObjectFactory`1.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ObjectFactoryT.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ObjectFactoryT.cs" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.ObjectFactory`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ObjectFactoryT.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ObjectFactoryT.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollection.Clear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollection.cs#L44C13-L46C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollection.cs#L44C13-L46C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollection.Contains(Microsoft.Extensions.DependencyInjection.ServiceDescriptor)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollection.cs#L51C13-L51C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollection.cs#L51C13-L51C48" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollection.CopyTo(Microsoft.Extensions.DependencyInjection.ServiceDescriptor[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollection.cs#L57C13-L58C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollection.cs#L57C13-L58C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollection.Remove(Microsoft.Extensions.DependencyInjection.ServiceDescriptor)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollection.cs#L63C13-L64C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollection.cs#L63C13-L64C46" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollection.cs#L70C13-L70C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollection.cs#L70C13-L70C49" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollection.System#Collections#Generic#ICollection#Add(Microsoft.Extensions.DependencyInjection.ServiceDescriptor)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollection.cs#L75C13-L77C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollection.cs#L75C13-L77C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollection.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollection.cs#L81C13-L81C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollection.cs#L81C13-L81C36" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollection.IndexOf(Microsoft.Extensions.DependencyInjection.ServiceDescriptor)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollection.cs#L87C13-L87C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollection.cs#L87C13-L87C47" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollection.Insert(System.Int32,Microsoft.Extensions.DependencyInjection.ServiceDescriptor)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollection.cs#L93C13-L95C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollection.cs#L93C13-L95C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollection.RemoveAt(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollection.cs#L100C13-L102C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollection.cs#L100C13-L102C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollection.MakeReadOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollection.cs#L112C13-L113C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollection.cs#L112C13-L113C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollection.cs#L18C9-L18C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollection.cs#L18C9-L18C95" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.ServiceCollection.Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollection.cs#L22C29-L22C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollection.cs#L22C29-L22C47" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.ServiceCollection.IsReadOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollection.cs#L25C35-L25C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollection.cs#L25C35-L25C46" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.ServiceCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollection.cs#L32C17-L32C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollection.cs#L32C17-L32C44" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.ServiceCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollection.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddTransient(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs#L29C13-L33C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs#L29C13-L33C94" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddTransient(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Func{System.IServiceProvider,System.Object})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs#L51C13-L55C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs#L51C13-L55C97" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddTransient``2(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs#L72C13-L74C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs#L72C13-L74C85" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddTransient(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs#L89C13-L92C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs#L89C13-L92C68" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddTransient``1(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs#L106C13-L108C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs#L106C13-L108C60" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddTransient``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Func{System.IServiceProvider,``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs#L126C13-L129C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs#L126C13-L129C83" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddTransient``2(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Func{System.IServiceProvider,``1})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs#L150C13-L153C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs#L150C13-L153C83" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddScoped(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs#L171C13-L175C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs#L171C13-L175C91" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddScoped(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Func{System.IServiceProvider,System.Object})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs#L193C13-L197C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs#L193C13-L197C94" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddScoped``2(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs#L214C13-L216C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs#L214C13-L216C82" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddScoped(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs#L231C13-L234C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs#L231C13-L234C65" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddScoped``1(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs#L248C13-L250C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs#L248C13-L250C57" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddScoped``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Func{System.IServiceProvider,``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs#L268C13-L271C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs#L268C13-L271C80" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddScoped``2(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Func{System.IServiceProvider,``1})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs#L292C13-L295C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs#L292C13-L295C80" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs#L314C13-L318C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs#L314C13-L318C94" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Func{System.IServiceProvider,System.Object})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs#L336C13-L340C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs#L336C13-L340C97" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton``2(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs#L357C13-L359C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs#L357C13-L359C85" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs#L374C13-L377C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs#L374C13-L377C68" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton``1(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs#L391C13-L393C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs#L391C13-L393C60" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Func{System.IServiceProvider,``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs#L411C13-L414C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs#L411C13-L414C83" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton``2(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Func{System.IServiceProvider,``1})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs#L435C13-L438C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs#L435C13-L438C83" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs#L456C13-L462C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs#L456C13-L462C29" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,``0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs#L479C13-L482C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs#L479C13-L482C84" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddKeyedTransient(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Object,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.Keyed.cs#L31C13-L35C111" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.Keyed.cs#L31C13-L35C111" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddKeyedTransient(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Object,System.Func{System.IServiceProvider,System.Object,System.Object})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.Keyed.cs#L55C13-L59C114" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.Keyed.cs#L55C13-L59C114" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddKeyedTransient``2(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.Keyed.cs#L79C13-L81C102" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.Keyed.cs#L79C13-L81C102" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddKeyedTransient(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.Keyed.cs#L98C13-L101C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.Keyed.cs#L98C13-L101C85" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddKeyedTransient``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.Keyed.cs#L118C13-L120C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.Keyed.cs#L118C13-L120C77" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddKeyedTransient``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Object,System.Func{System.IServiceProvider,System.Object,``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.Keyed.cs#L140C13-L143C100" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.Keyed.cs#L140C13-L143C100" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddKeyedTransient``2(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Object,System.Func{System.IServiceProvider,System.Object,``1})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.Keyed.cs#L166C13-L169C100" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.Keyed.cs#L166C13-L169C100" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddKeyedScoped(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Object,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.Keyed.cs#L189C13-L193C108" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.Keyed.cs#L189C13-L193C108" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddKeyedScoped(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Object,System.Func{System.IServiceProvider,System.Object,System.Object})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.Keyed.cs#L213C13-L217C111" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.Keyed.cs#L213C13-L217C111" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddKeyedScoped``2(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.Keyed.cs#L237C13-L239C99" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.Keyed.cs#L237C13-L239C99" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddKeyedScoped(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.Keyed.cs#L256C13-L259C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.Keyed.cs#L256C13-L259C82" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddKeyedScoped``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.Keyed.cs#L276C13-L278C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.Keyed.cs#L276C13-L278C74" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddKeyedScoped``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Object,System.Func{System.IServiceProvider,System.Object,``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.Keyed.cs#L298C13-L301C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.Keyed.cs#L298C13-L301C97" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddKeyedScoped``2(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Object,System.Func{System.IServiceProvider,System.Object,``1})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.Keyed.cs#L324C13-L327C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.Keyed.cs#L324C13-L327C97" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddKeyedSingleton(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Object,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.Keyed.cs#L348C13-L352C111" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.Keyed.cs#L347C13-L351C111" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddKeyedSingleton(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Object,System.Func{System.IServiceProvider,System.Object,System.Object})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.Keyed.cs#L372C13-L376C114" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.Keyed.cs#L371C13-L375C114" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddKeyedSingleton``2(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.Keyed.cs#L396C13-L398C102" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.Keyed.cs#L395C13-L397C102" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddKeyedSingleton(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.Keyed.cs#L415C13-L418C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.Keyed.cs#L414C13-L417C85" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddKeyedSingleton``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.Keyed.cs#L435C13-L437C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.Keyed.cs#L434C13-L436C95" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddKeyedSingleton``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Object,System.Func{System.IServiceProvider,System.Object,``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.Keyed.cs#L457C13-L460C100" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.Keyed.cs#L456C13-L459C100" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddKeyedSingleton``2(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Object,System.Func{System.IServiceProvider,System.Object,``1})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.Keyed.cs#L483C13-L486C100" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.Keyed.cs#L482C13-L485C100" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddKeyedSingleton(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Object,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.Keyed.cs#L506C13-L512C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.Keyed.cs#L505C13-L511C29" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddKeyedSingleton``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Object,``0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.Keyed.cs#L531C13-L534C101" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.Keyed.cs#L530C13-L533C101" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.#ctor(System.Type,System.Type,Microsoft.Extensions.DependencyInjection.ServiceLifetime)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L26C15-L28C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L26C15-L28C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.#ctor(System.Type,System.Object,System.Type,Microsoft.Extensions.DependencyInjection.ServiceLifetime)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L42C15-L48C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L42C15-L48C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.#ctor(System.Type,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L59C15-L61C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L59C15-L61C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.#ctor(System.Type,System.Object,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L74C15-L80C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L74C15-L80C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.#ctor(System.Type,System.Func{System.IServiceProvider,System.Object},Microsoft.Extensions.DependencyInjection.ServiceLifetime)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L92C15-L98C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L92C15-L98C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.#ctor(System.Type,System.Object,System.Func{System.IServiceProvider,System.Object,System.Object},Microsoft.Extensions.DependencyInjection.ServiceLifetime)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L112C15-L127C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L16707566C0-L127C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L258C13-L288C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L258C13-L288C97" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.Transient``2", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L349C13-L349C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L349C13-L349C94" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.KeyedTransient``2(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L365C13-L365C100" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L365C13-L365C100" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.Transient(System.Type,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L380C13-L383C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L380C13-L383C85" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.KeyedTransient(System.Type,System.Object,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L400C13-L403C102" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L400C13-L403C102" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.Transient``2(System.Func{System.IServiceProvider,``1})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L421C13-L423C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L421C13-L423C97" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.KeyedTransient``2(System.Object,System.Func{System.IServiceProvider,System.Object,``1})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L443C13-L445C114" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L443C13-L445C114" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.Transient``1(System.Func{System.IServiceProvider,``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L459C13-L461C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L459C13-L461C97" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.KeyedTransient``1(System.Object,System.Func{System.IServiceProvider,System.Object,``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L476C13-L478C114" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L476C13-L478C114" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.Transient(System.Type,System.Func{System.IServiceProvider,System.Object})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L491C13-L494C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L491C13-L494C88" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.KeyedTransient(System.Type,System.Object,System.Func{System.IServiceProvider,System.Object,System.Object})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L508C13-L511C105" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L508C13-L511C105" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.Scoped``2", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L526C13-L526C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L526C13-L526C91" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.KeyedScoped``2(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L542C13-L542C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L542C13-L542C97" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.Scoped(System.Type,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L557C13-L557C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L557C13-L557C82" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.KeyedScoped(System.Type,System.Object,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L574C13-L574C99" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L574C13-L574C99" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.Scoped``2(System.Func{System.IServiceProvider,``1})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L592C13-L594C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L592C13-L594C94" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.KeyedScoped``2(System.Object,System.Func{System.IServiceProvider,System.Object,``1})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L614C13-L616C111" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L614C13-L616C111" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.Scoped``1(System.Func{System.IServiceProvider,``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L630C13-L632C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L630C13-L632C94" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.KeyedScoped``1(System.Object,System.Func{System.IServiceProvider,System.Object,``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L647C13-L649C111" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L647C13-L649C111" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.Scoped(System.Type,System.Func{System.IServiceProvider,System.Object})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L662C13-L665C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L662C13-L665C85" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.KeyedScoped(System.Type,System.Object,System.Func{System.IServiceProvider,System.Object,System.Object})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L679C13-L682C102" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L679C13-L682C102" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.Singleton``2", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L697C13-L697C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L697C13-L697C94" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.KeyedSingleton``2(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L714C13-L714C100" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L714C13-L714C100" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.Singleton(System.Type,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L729C13-L732C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L729C13-L732C85" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.KeyedSingleton(System.Type,System.Object,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L749C13-L752C102" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L749C13-L752C102" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.Singleton``2(System.Func{System.IServiceProvider,``1})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L770C13-L772C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L770C13-L772C97" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.KeyedSingleton``2(System.Object,System.Func{System.IServiceProvider,System.Object,``1})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L792C13-L794C114" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L792C13-L794C114" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.Singleton``1(System.Func{System.IServiceProvider,``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L808C13-L810C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L808C13-L810C97" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.KeyedSingleton``1(System.Object,System.Func{System.IServiceProvider,System.Object,``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L827C13-L829C114" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L827C13-L829C114" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.Singleton(System.Type,System.Func{System.IServiceProvider,System.Object})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L844C13-L847C92" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L844C13-L847C92" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.KeyedSingleton(System.Type,System.Object,System.Func{System.IServiceProvider,System.Object,System.Object})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L864C13-L867C109" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L864C13-L867C109" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.Singleton``1(``0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L881C13-L883C109" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L881C13-L883C109" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.KeyedSingleton``1(System.Object,``0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L900C13-L902C89" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L900C13-L902C89" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.Singleton(System.Type,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L917C13-L920C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L917C13-L920C79" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.KeyedSingleton(System.Type,System.Object,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L937C13-L940C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L937C13-L940C91" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.Describe(System.Type,System.Type,Microsoft.Extensions.DependencyInjection.ServiceLifetime)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L970C13-L970C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L970C13-L970C85" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.DescribeKeyed(System.Type,System.Object,System.Type,Microsoft.Extensions.DependencyInjection.ServiceLifetime)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L989C13-L989C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L989C13-L989C97" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.Describe(System.Type,System.Func{System.IServiceProvider,System.Object},Microsoft.Extensions.DependencyInjection.ServiceLifetime)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L1003C13-L1003C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L1003C13-L1003C88" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.DescribeKeyed(System.Type,System.Object,System.Func{System.IServiceProvider,System.Object,System.Object},Microsoft.Extensions.DependencyInjection.ServiceLifetime)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L1018C13-L1018C100" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L1018C13-L1018C100" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.Lifetime", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L139C43-L139C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L139C43-L139C47" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.ServiceKey", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L144C37-L144C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L144C37-L144C41" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.ServiceType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L149C35-L149C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L149C35-L149C39" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.ImplementationType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L162C17-L166C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L162C17-L166C44" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.KeyedImplementationType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L178C17-L182C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L178C17-L182C44" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.ImplementationInstance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L195C17-L199C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L195C17-L199C48" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.KeyedImplementationInstance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L210C17-L214C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L210C17-L214C48" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.ImplementationFactory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L227C17-L231C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L227C17-L231C80" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.KeyedImplementationFactory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L242C17-L246C89" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L242C17-L246C89" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.IsKeyedService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L253C39-L253C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L253C39-L253C57" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.ServiceDescriptor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceKeyAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceKeyAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceKeyAttribute.cs" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.ServiceKeyAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceKeyAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceKeyAttribute.cs" }, { "Members": [ { "DocsId": "F:Microsoft.Extensions.DependencyInjection.ServiceLifetime.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceLifetime.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceLifetime.cs" }, { "DocsId": "F:Microsoft.Extensions.DependencyInjection.ServiceLifetime.Singleton", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceLifetime.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceLifetime.cs" }, { "DocsId": "F:Microsoft.Extensions.DependencyInjection.ServiceLifetime.Scoped", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceLifetime.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceLifetime.cs" }, { "DocsId": "F:Microsoft.Extensions.DependencyInjection.ServiceLifetime.Transient", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceLifetime.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceLifetime.cs" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.ServiceLifetime", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceLifetime.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceLifetime.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceProviderKeyedServiceExtensions.GetKeyedService``1(System.IServiceProvider,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceProviderKeyedServiceExtensions.cs#L24C13-L31C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceProviderKeyedServiceExtensions.cs#L24C13-L31C79" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceProviderKeyedServiceExtensions.GetRequiredKeyedService(System.IServiceProvider,System.Type,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceProviderKeyedServiceExtensions.cs#L44C13-L52C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceProviderKeyedServiceExtensions.cs#L44C13-L52C79" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceProviderKeyedServiceExtensions.GetRequiredKeyedService``1(System.IServiceProvider,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceProviderKeyedServiceExtensions.cs#L65C13-L67C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceProviderKeyedServiceExtensions.cs#L65C13-L67C79" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceProviderKeyedServiceExtensions.GetKeyedServices``1(System.IServiceProvider,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceProviderKeyedServiceExtensions.cs#L79C13-L81C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceProviderKeyedServiceExtensions.cs#L79C13-L81C81" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceProviderKeyedServiceExtensions.GetKeyedServices(System.IServiceProvider,System.Type,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceProviderKeyedServiceExtensions.cs#L94C13-L98C105" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceProviderKeyedServiceExtensions.cs#L94C13-L98C105" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.ServiceProviderKeyedServiceExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceProviderKeyedServiceExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceProviderKeyedServiceExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetService``1(System.IServiceProvider)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceProviderServiceExtensions.cs#L23C13-L25C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceProviderServiceExtensions.cs#L23C13-L25C55" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(System.IServiceProvider,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceProviderServiceExtensions.cs#L37C13-L51C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceProviderServiceExtensions.cs#L37C13-L51C28" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService``1(System.IServiceProvider)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceProviderServiceExtensions.cs#L63C13-L65C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceProviderServiceExtensions.cs#L63C13-L65C62" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetServices``1(System.IServiceProvider)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceProviderServiceExtensions.cs#L76C13-L78C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceProviderServiceExtensions.cs#L76C13-L78C66" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetServices(System.IServiceProvider,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceProviderServiceExtensions.cs#L90C13-L94C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceProviderServiceExtensions.cs#L90C13-L94C88" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.CreateScope(System.IServiceProvider)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceProviderServiceExtensions.cs#L104C13-L104C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceProviderServiceExtensions.cs#L104C13-L104C86" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.CreateAsyncScope(System.IServiceProvider)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceProviderServiceExtensions.cs#L114C13-L114C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceProviderServiceExtensions.cs#L114C13-L114C66" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.CreateAsyncScope(Microsoft.Extensions.DependencyInjection.IServiceScopeFactory)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceProviderServiceExtensions.cs#L124C13-L124C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceProviderServiceExtensions.cs#L124C13-L124C77" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceProviderServiceExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceProviderServiceExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.Add(Microsoft.Extensions.DependencyInjection.IServiceCollection,Microsoft.Extensions.DependencyInjection.ServiceDescriptor)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L25C13-L29C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L25C13-L29C31" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.Add(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Collections.Generic.IEnumerable{Microsoft.Extensions.DependencyInjection.ServiceDescriptor})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L42C13-L50C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L42C13-L50C31" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.TryAdd(Microsoft.Extensions.DependencyInjection.IServiceCollection,Microsoft.Extensions.DependencyInjection.ServiceDescriptor)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L63C13-L78C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L63C13-L78C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.TryAdd(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Collections.Generic.IEnumerable{Microsoft.Extensions.DependencyInjection.ServiceDescriptor})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L90C13-L97C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L90C13-L97C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.TryAddTransient(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L109C13-L114C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L109C13-L114C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.TryAddTransient(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L129C13-L135C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L129C13-L135C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.TryAddTransient(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Func{System.IServiceProvider,System.Object})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L150C13-L156C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L150C13-L156C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.TryAddTransient``1(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L167C13-L170C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L167C13-L170C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.TryAddTransient``2(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L184C13-L187C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L184C13-L187C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.TryAddTransient``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Func{System.IServiceProvider,``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L202C13-L203C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L202C13-L203C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.TryAddScoped(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L215C13-L220C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L215C13-L220C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.TryAddScoped(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L235C13-L241C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L235C13-L241C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.TryAddScoped(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Func{System.IServiceProvider,System.Object})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L256C13-L262C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L256C13-L262C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.TryAddScoped``1(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L273C13-L276C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L273C13-L276C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.TryAddScoped``2(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L290C13-L293C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L290C13-L293C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.TryAddScoped``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Func{System.IServiceProvider,``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L308C13-L309C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L308C13-L309C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.TryAddSingleton(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L321C13-L326C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L321C13-L326C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.TryAddSingleton(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L341C13-L347C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L341C13-L347C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.TryAddSingleton(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Func{System.IServiceProvider,System.Object})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L362C13-L368C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L362C13-L368C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.TryAddSingleton``1(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L379C13-L382C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L379C13-L382C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.TryAddSingleton``2(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L396C13-L399C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L396C13-L399C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.TryAddSingleton``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,``0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L412C13-L417C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L412C13-L417C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.TryAddSingleton``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Func{System.IServiceProvider,``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L432C13-L433C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L432C13-L433C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.TryAddEnumerable(Microsoft.Extensions.DependencyInjection.IServiceCollection,Microsoft.Extensions.DependencyInjection.ServiceDescriptor)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L456C13-L485C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L456C13-L485C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.TryAddEnumerable(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Collections.Generic.IEnumerable{Microsoft.Extensions.DependencyInjection.ServiceDescriptor})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L508C13-L515C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L508C13-L515C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.Replace(Microsoft.Extensions.DependencyInjection.IServiceCollection,Microsoft.Extensions.DependencyInjection.ServiceDescriptor)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L528C13-L543C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L528C13-L543C31" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.RemoveAll``1(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L553C13-L553C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L553C13-L553C53" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.RemoveAll(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L564C13-L575C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L564C13-L575C31" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.TryAddKeyedTransient(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.Keyed.cs#L24C13-L29C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.Keyed.cs#L24C13-L29C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.TryAddKeyedTransient(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Object,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.Keyed.cs#L46C13-L52C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.Keyed.cs#L46C13-L52C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.TryAddKeyedTransient(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Object,System.Func{System.IServiceProvider,System.Object,System.Object})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.Keyed.cs#L69C13-L75C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.Keyed.cs#L69C13-L75C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.TryAddKeyedTransient``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.Keyed.cs#L87C13-L90C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.Keyed.cs#L87C13-L90C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.TryAddKeyedTransient``2(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.Keyed.cs#L105C13-L108C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.Keyed.cs#L105C13-L108C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.TryAddKeyedTransient``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Object,System.Func{System.IServiceProvider,System.Object,``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.Keyed.cs#L125C13-L126C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.Keyed.cs#L125C13-L126C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.TryAddKeyedScoped(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.Keyed.cs#L140C13-L145C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.Keyed.cs#L140C13-L145C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.TryAddKeyedScoped(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Object,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.Keyed.cs#L162C13-L168C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.Keyed.cs#L162C13-L168C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.TryAddKeyedScoped(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Object,System.Func{System.IServiceProvider,System.Object,System.Object})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.Keyed.cs#L185C13-L191C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.Keyed.cs#L185C13-L191C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.TryAddKeyedScoped``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.Keyed.cs#L203C13-L206C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.Keyed.cs#L203C13-L206C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.TryAddKeyedScoped``2(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.Keyed.cs#L221C13-L224C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.Keyed.cs#L221C13-L224C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.TryAddKeyedScoped``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Object,System.Func{System.IServiceProvider,System.Object,``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.Keyed.cs#L241C13-L242C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.Keyed.cs#L241C13-L242C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.TryAddKeyedSingleton(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.Keyed.cs#L256C13-L261C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.Keyed.cs#L256C13-L261C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.TryAddKeyedSingleton(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Object,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.Keyed.cs#L278C13-L284C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.Keyed.cs#L278C13-L284C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.TryAddKeyedSingleton(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Object,System.Func{System.IServiceProvider,System.Object,System.Object})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.Keyed.cs#L301C13-L307C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.Keyed.cs#L301C13-L307C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.TryAddKeyedSingleton``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.Keyed.cs#L319C13-L322C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.Keyed.cs#L319C13-L322C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.TryAddKeyedSingleton``2(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.Keyed.cs#L337C13-L340C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.Keyed.cs#L337C13-L340C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.TryAddKeyedSingleton``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Object,``0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.Keyed.cs#L354C13-L359C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.Keyed.cs#L354C13-L359C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.TryAddKeyedSingleton``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Object,System.Func{System.IServiceProvider,System.Object,``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.Keyed.cs#L376C13-L377C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.Keyed.cs#L376C13-L377C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.RemoveAllKeyed``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.Keyed.cs#L387C13-L387C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.Keyed.cs#L387C13-L387C70" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.RemoveAllKeyed(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.Keyed.cs#L399C13-L410C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.Keyed.cs#L399C13-L410C31" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.DependencyInjection.AutoActivation.json b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.DependencyInjection.AutoActivation.json index 740fe62be5b..aaed9588d26 100644 --- a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.DependencyInjection.AutoActivation.json +++ b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.DependencyInjection.AutoActivation.json @@ -1,133 +1,132 @@ { "Assembly": "Microsoft.Extensions.DependencyInjection.AutoActivation", - "GUID": "D6D07D6C52594AA79E23C4213689E8F7FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "20E1B1905DDB46BBAD374677BA13B86AFFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.AutoActivationExtensions.ActivateSingleton``1(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.cs#L27C9-L49C25" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.cs#L27C9-L49C25" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.AutoActivationExtensions.ActivateSingleton(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.cs#L60C9-L87C25" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.cs#L16707566C0-L87C25" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.AutoActivationExtensions.AddActivatedSingleton``2(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Func{System.IServiceProvider,``1})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.cs#L102C9-L107C44" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.cs#L102C9-L107C44" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.AutoActivationExtensions.AddActivatedSingleton``2(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.cs#L121C9-L125C44" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.cs#L121C9-L125C44" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.AutoActivationExtensions.AddActivatedSingleton``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Func{System.IServiceProvider,``0})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.cs#L138C9-L143C44" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.cs#L138C9-L143C44" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.AutoActivationExtensions.AddActivatedSingleton``1(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.cs#L155C9-L159C44" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.cs#L155C9-L159C44" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.AutoActivationExtensions.AddActivatedSingleton(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.cs#L173C9-L178C45" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.cs#L173C9-L178C45" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.AutoActivationExtensions.AddActivatedSingleton(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Func{System.IServiceProvider,System.Object})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.cs#L193C9-L199C45" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.cs#L193C9-L199C45" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.AutoActivationExtensions.AddActivatedSingleton(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Type)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.cs#L214C9-L220C45" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.cs#L214C9-L220C45" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.AutoActivationExtensions.TryAddActivatedSingleton(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.cs#L232C9-L236C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.cs#L232C9-L236C6" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.AutoActivationExtensions.TryAddActivatedSingleton(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Type)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.cs#L249C9-L254C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.cs#L249C9-L254C6" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.AutoActivationExtensions.TryAddActivatedSingleton(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Func{System.IServiceProvider,System.Object})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.cs#L264C9-L269C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.cs#L264C9-L269C6" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.AutoActivationExtensions.TryAddActivatedSingleton``1(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.cs#L279C9-L282C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.cs#L279C9-L282C6" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.AutoActivationExtensions.TryAddActivatedSingleton``2(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.cs#L294C9-L297C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.cs#L294C9-L297C6" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.AutoActivationExtensions.TryAddActivatedSingleton``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Func{System.IServiceProvider,``0})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.cs#L308C9-L312C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.cs#L308C9-L312C6" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.AutoActivationExtensions.ActivateKeyedSingleton``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.Keyed.cs#L26C9-L48C25" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.Keyed.cs#L16707566C0-L48C25" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.AutoActivationExtensions.ActivateKeyedSingleton(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.Keyed.cs#L63C9-L90C25" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.Keyed.cs#L16707566C0-L90C25" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.AutoActivationExtensions.AddActivatedKeyedSingleton``2(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Object,System.Func{System.IServiceProvider,System.Object,``1})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.Keyed.cs#L109C9-L114C59" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.Keyed.cs#L109C9-L114C59" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.AutoActivationExtensions.AddActivatedKeyedSingleton``2(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.Keyed.cs#L131C9-L133C59" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.Keyed.cs#L131C9-L133C59" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.AutoActivationExtensions.AddActivatedKeyedSingleton``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Object,System.Func{System.IServiceProvider,System.Object,``0})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.Keyed.cs#L150C9-L152C59" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.Keyed.cs#L150C9-L152C59" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.AutoActivationExtensions.AddActivatedKeyedSingleton``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.Keyed.cs#L167C9-L169C59" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.Keyed.cs#L167C9-L169C59" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.AutoActivationExtensions.AddActivatedKeyedSingleton(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.Keyed.cs#L184C9-L189C62" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.Keyed.cs#L184C9-L189C62" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.AutoActivationExtensions.AddActivatedKeyedSingleton(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Object,System.Func{System.IServiceProvider,System.Object,System.Object})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.Keyed.cs#L206C9-L212C62" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.Keyed.cs#L206C9-L212C62" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.AutoActivationExtensions.AddActivatedKeyedSingleton(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Object,System.Type)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.Keyed.cs#L229C9-L235C62" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.Keyed.cs#L229C9-L235C62" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.AutoActivationExtensions.TryAddActivatedKeyedSingleton(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.Keyed.cs#L249C9-L253C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.Keyed.cs#L249C9-L253C6" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.AutoActivationExtensions.TryAddActivatedKeyedSingleton(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Object,System.Type)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.Keyed.cs#L268C9-L273C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.Keyed.cs#L268C9-L273C6" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.AutoActivationExtensions.TryAddActivatedKeyedSingleton(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Object,System.Func{System.IServiceProvider,System.Object,System.Object})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.Keyed.cs#L288C9-L293C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.Keyed.cs#L288C9-L293C6" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.AutoActivationExtensions.TryAddActivatedKeyedSingleton``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.Keyed.cs#L306C9-L309C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.Keyed.cs#L306C9-L309C6" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.AutoActivationExtensions.TryAddActivatedKeyedSingleton``2(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.Keyed.cs#L324C9-L327C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.Keyed.cs#L324C9-L327C6" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.AutoActivationExtensions.TryAddActivatedKeyedSingleton``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Object,System.Func{System.IServiceProvider,System.Object,``0})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.Keyed.cs#L342C9-L346C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.Keyed.cs#L342C9-L346C6" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.AutoActivationExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.DependencyInjection.Specification.Tests.json b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.DependencyInjection.Specification.Tests.json index 0ce7561e669..813ff01543c 100644 --- a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.DependencyInjection.Specification.Tests.json +++ b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.DependencyInjection.Specification.Tests.json @@ -1,1297 +1,1296 @@ { "Assembly": "Microsoft.Extensions.DependencyInjection.Specification.Tests", - "GUID": "DEF461F24DEB4B5D87849790B3FE465CFFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "A318287E245F46D68CA37C68F5F3DC38FFFFFFFF", "Types": [ { "Members": [], "DocsId": "T:Microsoft.Extensions.DependencyInjection.ClassWithInternalConstructor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithInternalConstructor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithInternalConstructor.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.TypeActivatorEnablesYouToCreateAnyTypeWithServicesEvenWhenNotInIocContainer(Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.CreateInstanceFunc)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs#L49C13-L56C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs#L49C13-L56C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.TypeActivatorAcceptsAnyNumberOfAdditionalConstructorParametersToProvide(Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.CreateInstanceFunc)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs#L63C13-L74C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs#L63C13-L74C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.TypeActivatorWorksWithStaticCtor(Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.CreateInstanceFunc)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs#L81C13-L87C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs#L81C13-L87C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.TypeActivatorWorksWithCtorWithOptionalArgs(Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.CreateInstanceFunc)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs#L94C13-L103C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs#L94C13-L103C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.TypeActivatorWorksWithCtorWithOptionalArgs_WithStructDefaults(Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.CreateInstanceFunc)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs#L110C13-L123C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs#L110C13-L123C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.TypeActivatorCanDisambiguateConstructorsWithUniqueArguments(Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.CreateInstanceFunc)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs#L130C13-L142C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs#L130C13-L142C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.TypeActivatorRequiresPublicConstructor(Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.CreateInstanceFunc,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs#L154C13-L164C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs#L16707566C0-L164C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.TypeActivatorRequiresAllArgumentsCanBeAccepted(Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.CreateInstanceFunc)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs#L171C13-L184C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs#L16707566C0-L184C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.TypeActivatorRethrowsOriginalExceptionFromConstructor(Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.CreateInstanceFunc)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs#L191C13-L203C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs#L16707566C0-L203C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.TypeActivatorCreateFactoryDoesNotAllowForAmbiguousConstructorMatches(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs#L211C13-L221C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs#L16707566C0-L221C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.TypeActivatorCreateInstanceUsesLongestAvailableConstructor(System.Object,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs#L229C13-L252C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs#L16707566C0-L252C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.TypeActivatorUsesMarkedConstructor(Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.CreateInstanceFunc)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs#L259C13-L268C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs#L259C13-L268C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.TypeActivatorThrowsOnMultipleMarkedCtors(Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.CreateInstanceFunc)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs#L275C13-L283C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs#L16707566C0-L283C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.TypeActivatorThrowsWhenMarkedCtorDoesntAcceptArguments(Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.CreateInstanceFunc)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs#L290C13-L298C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs#L16707566C0-L298C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.GetServiceOrCreateInstanceRegisteredServiceTransient", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs#L304C13-L324C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs#L304C13-L324C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.GetServiceOrCreateInstanceRegisteredServiceSingleton", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs#L329C13-L351C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs#L329C13-L351C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.GetServiceOrCreateInstanceUnregisteredService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs#L356C13-L379C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs#L356C13-L379C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.UnRegisteredServiceAsConstructorParameterThrowsException(Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.CreateInstanceFunc)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs#L385C13-L394C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs#L16707566C0-L394C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.CreateInstance_WithAbstractTypeAndPublicConstructor_ThrowsCorrectException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs#L400C13-L407C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs#L16707566C0-L407C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.CreateInstance_CapturesInnerException_OfTargetInvocationException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs#L413C13-L419C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs#L16707566C0-L419C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.CreateServiceProvider(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.ServicesRegisteredWithImplementationTypeCanBeResolved", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L21C13-L31C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L21C13-L31C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.ServicesRegisteredWithImplementationType_ReturnDifferentInstancesPerResolution_ForTransientServices", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L37C13-L49C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L37C13-L49C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.ServicesRegisteredWithImplementationType_ReturnSameInstancesPerResolution_ForSingletons", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L55C13-L67C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L55C13-L67C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.ServiceInstanceCanBeResolved", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L73C13-L83C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L73C13-L83C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.TransientServiceCanBeResolvedFromProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L89C13-L100C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L89C13-L100C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.TransientServiceCanBeResolvedFromScope", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L106C13-L123C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L106C13-L123C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.NonSingletonService_WithInjectedProvider_ResolvesScopeProvider(Microsoft.Extensions.DependencyInjection.ServiceLifetime)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L131C13-L164C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L131C13-L164C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.SingletonServiceCanBeResolvedFromScope", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L170C13-L196C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L170C13-L196C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.SingleServiceCanBeIEnumerableResolved", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L202C13-L213C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L202C13-L213C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.MultipleServiceCanBeIEnumerableResolved", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L219C13-L231C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L219C13-L231C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.RegistrationOrderIsPreservedWhenServicesAreIEnumerableResolved", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L237C13-L258C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L237C13-L258C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.OuterServiceCanHaveOtherServicesInjected", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L264C13-L280C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L264C13-L280C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.FactoryServicesCanBeCreatedByGetService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L286C13-L307C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L286C13-L307C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.FactoryServicesAreCreatedAsPartOfCreatingObjectGraph", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L313C13-L351C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L313C13-L351C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.LastServiceReplacesPreviousServices", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L357C13-L367C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L357C13-L367C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.SingletonServiceCanBeResolved", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L373C13-L384C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L373C13-L384C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.ServiceProviderRegistersServiceScopeFactory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L390C13-L398C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L390C13-L398C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.ServiceScopeFactoryIsSingleton", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L404C13-L418C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L404C13-L418C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.ScopedServiceCanBeResolved", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L424C13-L439C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L424C13-L439C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.NestedScopedServiceCanBeResolved", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L445C13-L461C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L445C13-L461C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.ScopedServices_FromCachedScopeFactory_CanBeResolvedAndDisposed", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L467C13-L496C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L467C13-L496C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.ScopesAreFlatNotHierarchical", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L502C13-L514C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L502C13-L514C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.ServiceProviderIsDisposable", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L519C13-L522C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L519C13-L522C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.DisposingScopeDisposesService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L528C13-L563C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L528C13-L563C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.SelfResolveThenDispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L569C13-L578C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L569C13-L578C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.SafelyDisposeNestedProviderReferences", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L584C13-L594C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L584C13-L594C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.SingletonServicesComeFromRootProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L600C13-L625C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L600C13-L625C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.NestedScopedServiceCanBeResolvedWithNoFallbackProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L631C13-L645C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L631C13-L645C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.OpenGenericServicesCanBeResolved", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L651C13-L662C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L651C13-L662C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.ConstrainedOpenGenericServicesCanBeResolved", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L668C13-L685C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L668C13-L685C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.ConstrainedOpenGenericServicesReturnsEmptyWithNoMatches", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L691C13-L699C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L691C13-L699C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.InterfaceConstrainedOpenGenericServicesCanBeResolved", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L705C13-L722C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L705C13-L722C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.AbstractClassConstrainedOpenGenericServicesCanBeResolved", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L728C13-L745C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L728C13-L745C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.ClosedServicesPreferredOverOpenGenericServices", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L751C13-L762C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L751C13-L762C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.ResolvingEnumerableContainingOpenGenericServiceUsesCorrectSlot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L769C13-L784C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L769C13-L784C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.AttemptingToResolveNonexistentServiceReturnsNull", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L790C13-L798C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L790C13-L798C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.NonexistentServiceCanBeIEnumerableResolved", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L804C13-L812C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L804C13-L812C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.ServiceContainerPicksConstructorWithLongestMatches(Microsoft.Extensions.DependencyInjection.IServiceCollection,Microsoft.Extensions.DependencyInjection.Specification.Fakes.TypeWithSupersetConstructors)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L867C13-L879C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L867C13-L879C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.DisposesInReverseOrderOfCreation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L885C13-L905C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L885C13-L905C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.ResolvesMixedOpenClosedGenericsAsEnumerable", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L911C13-L932C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L911C13-L932C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.ResolvesDifferentInstancesForServiceWhenResolvingEnumerable(System.Type,System.Type,System.Type,Microsoft.Extensions.DependencyInjection.ServiceLifetime)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L942C13-L966C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L942C13-L966C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.ExplicitServiceRegisterationWithIsService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ServiceProviderIsServiceSpecificationTests.cs#L19C13-L36C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ServiceProviderIsServiceSpecificationTests.cs#L19C13-L36C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.OpenGenericsWithIsService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ServiceProviderIsServiceSpecificationTests.cs#L41C13-L58C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ServiceProviderIsServiceSpecificationTests.cs#L41C13-L58C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.ClosedGenericsWithIsService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ServiceProviderIsServiceSpecificationTests.cs#L63C13-L79C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ServiceProviderIsServiceSpecificationTests.cs#L63C13-L79C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.IEnumerableWithIsServiceAlwaysReturnsTrue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ServiceProviderIsServiceSpecificationTests.cs#L84C13-L102C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ServiceProviderIsServiceSpecificationTests.cs#L84C13-L102C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.BuiltInServicesWithIsServiceReturnsTrue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ServiceProviderIsServiceSpecificationTests.cs#L107C13-L125C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ServiceProviderIsServiceSpecificationTests.cs#L107C13-L125C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.ExpectStructWithPublicDefaultConstructorInvoked", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs#L15C80-L15C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs#L15C80-L15C85" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.CreateInstanceFuncs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.TypesWithNonPublicConstructorData", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs#L145C13-L147C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs#L145C13-L147C56" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.ServiceContainerPicksConstructorWithLongestMatchesData", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L818C17-L856C19" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L818C17-L856C19" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.SupportsIServiceProviderIsService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ServiceProviderIsServiceSpecificationTests.cs#L14C66-L14C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ServiceProviderIsServiceSpecificationTests.cs#L14C66-L14C70" }, { "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.CreateInstanceFunc", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.ClassWithOptionalArgsCtor.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithOptionalArgsCtor.cs#L8C9-L11C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithOptionalArgsCtor.cs#L8C9-L11C10" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.ClassWithOptionalArgsCtor.Whatever", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithOptionalArgsCtor.cs#L13C34-L13C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithOptionalArgsCtor.cs#L13C34-L13C38" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.ClassWithOptionalArgsCtor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithOptionalArgsCtor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithOptionalArgsCtor.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.ClassWithOptionalArgsCtorWithStructs.#ctor(System.DateTime,System.DateTime,System.TimeSpan,System.TimeSpan,System.DateTimeOffset,System.DateTimeOffset,System.Guid,System.Guid,Microsoft.Extensions.DependencyInjection.Specification.ClassWithOptionalArgsCtorWithStructs.CustomStruct,Microsoft.Extensions.DependencyInjection.Specification.ClassWithOptionalArgsCtorWithStructs.CustomStruct,System.Nullable{System.ConsoleColor},System.Nullable{System.ConsoleColor},System.Nullable{System.Int32},System.Nullable{System.Int32},Microsoft.Extensions.DependencyInjection.Specification.ClassWithOptionalArgsCtorWithStructs.StructWithPublicDefaultConstructor)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithOptionalArgsCtorWithStructs.cs#L19C9-L43C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithOptionalArgsCtorWithStructs.cs#L19C9-L43C10" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.ClassWithOptionalArgsCtorWithStructs.Color", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithOptionalArgsCtorWithStructs.cs#L10C38-L10C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithOptionalArgsCtorWithStructs.cs#L10C38-L10C42" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.ClassWithOptionalArgsCtorWithStructs.ColorNull", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithOptionalArgsCtorWithStructs.cs#L11C42-L11C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithOptionalArgsCtorWithStructs.cs#L11C42-L11C46" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.ClassWithOptionalArgsCtorWithStructs.Integer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithOptionalArgsCtorWithStructs.cs#L13C31-L13C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithOptionalArgsCtorWithStructs.cs#L13C31-L13C35" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.ClassWithOptionalArgsCtorWithStructs.IntegerNull", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithOptionalArgsCtorWithStructs.cs#L14C35-L14C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithOptionalArgsCtorWithStructs.cs#L14C35-L14C39" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.ClassWithOptionalArgsCtorWithStructs.StructWithConstructor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithOptionalArgsCtorWithStructs.cs#L16C75-L16C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithOptionalArgsCtorWithStructs.cs#L16C75-L16C79" }, { "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.ClassWithOptionalArgsCtorWithStructs.CustomStruct", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithOptionalArgsCtorWithStructs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithOptionalArgsCtorWithStructs.cs" }, { "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.ClassWithOptionalArgsCtorWithStructs.StructWithPublicDefaultConstructor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithOptionalArgsCtorWithStructs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithOptionalArgsCtorWithStructs.cs" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.ClassWithOptionalArgsCtorWithStructs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithOptionalArgsCtorWithStructs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithOptionalArgsCtorWithStructs.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests.CreateServiceProvider(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests.ResolveKeyedService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L19C13-L30C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L19C13-L30C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests.ResolveNullKeyedService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L35C13-L46C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L35C13-L46C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests.ResolveNonKeyedService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L51C13-L62C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L51C13-L62C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests.ResolveKeyedOpenGenericService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L67C13-L78C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L67C13-L78C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests.ResolveKeyedServices", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L83C13-L101C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L83C13-L101C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests.ResolveKeyedServicesAnyKey", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L106C13-L130C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L106C13-L130C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests.ResolveKeyedServicesAnyKeyWithAnyKeyRegistration", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L135C13-L159C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L135C13-L159C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests.ResolveKeyedGenericServices", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L164C13-L182C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L164C13-L182C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests.ResolveKeyedServiceSingletonInstance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L187C13-L195C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L187C13-L195C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests.ResolveKeyedServiceSingletonInstanceWithKeyInjection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L200C13-L210C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L200C13-L210C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests.ResolveKeyedServiceSingletonInstanceWithAnyKey", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L215C13-L231C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L215C13-L231C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests.ResolveKeyedServicesSingletonInstanceWithAnyKey", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L236C13-L247C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L236C13-L247C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests.ResolveKeyedServiceSingletonInstanceWithKeyedParameter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L252C13-L264C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L252C13-L264C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests.CreateServiceWithKeyedParameter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L269C13-L281C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L269C13-L281C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests.ResolveKeyedServiceSingletonFactory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L286C13-L294C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L16707566C0-L294C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests.ResolveKeyedServiceSingletonFactoryWithAnyKey", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L299C13-L314C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L299C13-L314C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests.ResolveKeyedServiceSingletonFactoryWithAnyKeyIgnoreWrongType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L319C13-L327C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L16707566C0-L327C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests.ResolveKeyedServiceSingletonType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L332C13-L339C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L332C13-L339C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests.ResolveKeyedServiceTransientFactory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L344C13-L355C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L344C13-L355C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests.ResolveKeyedServiceTransientType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L360C13-L369C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L360C13-L369C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests.ResolveKeyedServiceTransientTypeWithAnyKey", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L374C13-L383C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L374C13-L383C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests.ResolveKeyedSingletonFromInjectedServiceProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L388C13-L401C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L388C13-L401C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests.ResolveKeyedTransientFromInjectedServiceProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L406C13-L419C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L406C13-L419C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests.ResolveKeyedSingletonFromScopeServiceProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L424C13-L443C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L424C13-L443C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests.ResolveKeyedScopedFromScopeServiceProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L448C13-L467C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L448C13-L467C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests.ResolveKeyedTransientFromScopeServiceProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L472C13-L491C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L472C13-L491C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests.SimpleServiceKeyedResolution", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L542C17-L554C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L542C17-L554C14" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests.ExplicitServiceRegistrationWithIsKeyedService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ServiceProviderIsKeyedServiceSpecificationTests.cs#L19C13-L37C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ServiceProviderIsKeyedServiceSpecificationTests.cs#L19C13-L37C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests.OpenGenericsWithIsKeyedService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ServiceProviderIsKeyedServiceSpecificationTests.cs#L42C13-L60C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ServiceProviderIsKeyedServiceSpecificationTests.cs#L42C13-L60C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests.ClosedGenericsWithIsKeyedService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ServiceProviderIsKeyedServiceSpecificationTests.cs#L65C13-L82C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ServiceProviderIsKeyedServiceSpecificationTests.cs#L65C13-L82C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests.IEnumerableWithIsKeyedServiceAlwaysReturnsTrue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ServiceProviderIsKeyedServiceSpecificationTests.cs#L87C13-L106C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ServiceProviderIsKeyedServiceSpecificationTests.cs#L87C13-L106C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests.NonKeyedServiceWithIsKeyedService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ServiceProviderIsKeyedServiceSpecificationTests.cs#L111C13-L127C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ServiceProviderIsKeyedServiceSpecificationTests.cs#L111C13-L127C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests.SupportsIServiceProviderIsKeyedService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ServiceProviderIsKeyedServiceSpecificationTests.cs#L14C71-L14C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ServiceProviderIsKeyedServiceSpecificationTests.cs#L14C71-L14C75" }, { "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests.SimpleParentWithDynamicKeyedService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs" }, { "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests.ISimpleService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs" }, { "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests.SimpleService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs" }, { "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests.AnotherSimpleService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.AbstractClass.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/AbstractClass.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/AbstractClass.cs" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.AbstractClass", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/AbstractClass.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/AbstractClass.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.AnotherClass.#ctor(Microsoft.Extensions.DependencyInjection.Specification.Fakes.IFakeService)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/AnotherClass.cs#L8C9-L11C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/AnotherClass.cs#L8C9-L11C10" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.Fakes.AnotherClass.FakeService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/AnotherClass.cs#L13C43-L13C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/AnotherClass.cs#L13C43-L13C47" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.AnotherClass", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/AnotherClass.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/AnotherClass.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.AnotherClassAcceptingData.#ctor(Microsoft.Extensions.DependencyInjection.Specification.Fakes.IFakeService,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/AnotherClassAcceptingData.cs#L8C9-L13C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/AnotherClassAcceptingData.cs#L8C9-L13C10" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.Fakes.AnotherClassAcceptingData.FakeService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/AnotherClassAcceptingData.cs#L15C43-L15C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/AnotherClassAcceptingData.cs#L15C43-L15C47" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.Fakes.AnotherClassAcceptingData.One", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/AnotherClassAcceptingData.cs#L17C29-L17C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/AnotherClassAcceptingData.cs#L17C29-L17C33" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.Fakes.AnotherClassAcceptingData.Two", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/AnotherClassAcceptingData.cs#L19C29-L19C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/AnotherClassAcceptingData.cs#L19C29-L19C33" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.AnotherClassAcceptingData", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/AnotherClassAcceptingData.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/AnotherClassAcceptingData.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassImplementingIComparable.CompareTo(Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassImplementingIComparable)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassImplementingIComparable.cs#L10C69-L10C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassImplementingIComparable.cs#L10C69-L10C70" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassImplementingIComparable.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassImplementingIComparable.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassImplementingIComparable.cs" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassImplementingIComparable", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassImplementingIComparable.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassImplementingIComparable.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassImplementingIEnumerable.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassImplementingIEnumerable.cs#L11C47-L11C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassImplementingIEnumerable.cs#L11C47-L11C82" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassImplementingIEnumerable.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassImplementingIEnumerable.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassImplementingIEnumerable.cs" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassImplementingIEnumerable", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassImplementingIEnumerable.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassImplementingIEnumerable.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassInheritingAbstractClass.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassInheritingAbstractClass.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassInheritingAbstractClass.cs" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassInheritingAbstractClass", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassInheritingAbstractClass.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassInheritingAbstractClass.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassAlsoInheritingAbstractClass.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassInheritingAbstractClass.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassInheritingAbstractClass.cs" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassAlsoInheritingAbstractClass", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassInheritingAbstractClass.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassInheritingAbstractClass.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassInheritingClassInheritingAbstractClass.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassInheritingAbstractClass.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassInheritingAbstractClass.cs" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassInheritingClassInheritingAbstractClass", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassInheritingAbstractClass.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassInheritingAbstractClass.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithAbstractClassConstraint`1.#ctor(`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithAbstractClassConstraint.cs#L9C9-L9C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithAbstractClassConstraint.cs#L9C9-L9C74" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithAbstractClassConstraint`1.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithAbstractClassConstraint.cs#L11C26-L11C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithAbstractClassConstraint.cs#L11C26-L11C30" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithAbstractClassConstraint`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithAbstractClassConstraint.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithAbstractClassConstraint.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithAmbiguousCtors.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithAmbiguousCtors.cs#L8C9-L11C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithAmbiguousCtors.cs#L8C9-L11C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithAmbiguousCtors.#ctor(Microsoft.Extensions.DependencyInjection.Specification.Fakes.IFakeService,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithAmbiguousCtors.cs#L13C9-L16C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithAmbiguousCtors.cs#L13C9-L16C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithAmbiguousCtors.#ctor(Microsoft.Extensions.DependencyInjection.Specification.Fakes.IFakeService,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithAmbiguousCtors.cs#L18C9-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithAmbiguousCtors.cs#L18C9-L21C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithAmbiguousCtors.#ctor(Microsoft.Extensions.DependencyInjection.Specification.Fakes.IFakeService,System.String,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithAmbiguousCtors.cs#L23C9-L30C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithAmbiguousCtors.cs#L23C9-L30C10" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithAmbiguousCtors.FakeService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithAmbiguousCtors.cs#L32C43-L32C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithAmbiguousCtors.cs#L32C43-L32C47" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithAmbiguousCtors.Data1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithAmbiguousCtors.cs#L34C31-L34C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithAmbiguousCtors.cs#L34C31-L34C35" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithAmbiguousCtors.Data2", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithAmbiguousCtors.cs#L36C28-L36C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithAmbiguousCtors.cs#L36C28-L36C32" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithAmbiguousCtors.CtorUsed", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithAmbiguousCtors.cs#L37C34-L37C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithAmbiguousCtors.cs#L37C34-L37C38" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithAmbiguousCtors", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithAmbiguousCtors.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithAmbiguousCtors.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithAmbiguousCtorsAndAttribute.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithAmbiguousCtorsAndAttribute.cs#L8C9-L11C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithAmbiguousCtorsAndAttribute.cs#L8C9-L11C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithAmbiguousCtorsAndAttribute.#ctor(Microsoft.Extensions.DependencyInjection.Specification.Fakes.IFakeService,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithAmbiguousCtorsAndAttribute.cs#L14C9-L17C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithAmbiguousCtorsAndAttribute.cs#L14C9-L17C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithAmbiguousCtorsAndAttribute.#ctor(Microsoft.Extensions.DependencyInjection.Specification.Fakes.IFakeService,Microsoft.Extensions.DependencyInjection.Specification.Fakes.IFakeOuterService,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithAmbiguousCtorsAndAttribute.cs#L19C9-L22C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithAmbiguousCtorsAndAttribute.cs#L19C9-L22C10" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithAmbiguousCtorsAndAttribute.CtorUsed", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithAmbiguousCtorsAndAttribute.cs#L24C34-L24C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithAmbiguousCtorsAndAttribute.cs#L24C34-L24C38" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithAmbiguousCtorsAndAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithAmbiguousCtorsAndAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithAmbiguousCtorsAndAttribute.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithClassConstraint`1.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithClassConstraint.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithClassConstraint.cs" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithClassConstraint`1.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithClassConstraint.cs#L9C26-L9C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithClassConstraint.cs#L9C26-L9C30" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithClassConstraint`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithClassConstraint.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithClassConstraint.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithInterfaceConstraint`1.#ctor(`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithInterfaceConstraint.cs#L11C9-L11C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithInterfaceConstraint.cs#L11C9-L11C70" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithInterfaceConstraint`1.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithInterfaceConstraint.cs#L13C26-L13C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithInterfaceConstraint.cs#L13C26-L13C30" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithInterfaceConstraint`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithInterfaceConstraint.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithInterfaceConstraint.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithMultipleMarkedCtors.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithMultipleMarkedCtors.cs#L9C9-L11C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithMultipleMarkedCtors.cs#L9C9-L11C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithMultipleMarkedCtors.#ctor(Microsoft.Extensions.DependencyInjection.Specification.Fakes.IFakeService,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithMultipleMarkedCtors.cs#L14C9-L16C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithMultipleMarkedCtors.cs#L14C9-L16C10" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithMultipleMarkedCtors", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithMultipleMarkedCtors.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithMultipleMarkedCtors.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithNestedReferencesToProvider.#ctor(System.IServiceProvider)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithNestedReferencesToProvider.cs#L13C9-L17C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithNestedReferencesToProvider.cs#L13C9-L17C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithNestedReferencesToProvider.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithNestedReferencesToProvider.cs#L30C13-L32C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithNestedReferencesToProvider.cs#L30C13-L32C10" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithNestedReferencesToProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithNestedReferencesToProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithNestedReferencesToProvider.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithNewConstraint`1.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithNewConstraint.cs#L9C35-L9C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithNewConstraint.cs#L9C35-L9C42" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithNewConstraint`1.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithNewConstraint.cs#L9C26-L9C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithNewConstraint.cs#L9C26-L9C30" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithNewConstraint`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithNewConstraint.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithNewConstraint.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithNoConstraints`1.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithNoConstraint.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithNoConstraint.cs" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithNoConstraints`1.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithNoConstraint.cs#L8C26-L8C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithNoConstraint.cs#L8C26-L8C30" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithNoConstraints`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithNoConstraint.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithNoConstraint.cs" }, { "Members": [], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithPrivateCtor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithPrivateCtor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithPrivateCtor.cs" }, { "Members": [], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithProtectedConstructor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithProtectedConstructor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithProtectedConstructor.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithSelfReferencingConstraint`1.#ctor(`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithSelfReferencingConstraint.cs#L11C9-L11C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithSelfReferencingConstraint.cs#L11C9-L11C76" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithSelfReferencingConstraint`1.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithSelfReferencingConstraint.cs#L13C26-L13C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithSelfReferencingConstraint.cs#L13C26-L13C30" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithSelfReferencingConstraint`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithSelfReferencingConstraint.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithSelfReferencingConstraint.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithServiceProvider.#ctor(System.IServiceProvider)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithServiceProvider.cs#L12C9-L15C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithServiceProvider.cs#L12C9-L15C10" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithServiceProvider.ServiceProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithServiceProvider.cs#L17C51-L17C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithServiceProvider.cs#L17C51-L17C55" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithServiceProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithServiceProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithServiceProvider.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithStaticCtor.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithStaticCtor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithStaticCtor.cs" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithStaticCtor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithStaticCtor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithStaticCtor.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithStructConstraint`1.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithStructConstraint.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithStructConstraint.cs" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithStructConstraint`1.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithStructConstraint.cs#L9C26-L9C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithStructConstraint.cs#L9C26-L9C30" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithStructConstraint`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithStructConstraint.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithStructConstraint.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithThrowingCtor.#ctor(Microsoft.Extensions.DependencyInjection.Specification.Fakes.IFakeService)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithThrowingCtor.cs#L10C9-L12C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithThrowingCtor.cs#L10C9-L12C64" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithThrowingCtor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithThrowingCtor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithThrowingCtor.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithThrowingEmptyCtor.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithThrowingEmptyCtor.cs#L10C9-L12C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithThrowingEmptyCtor.cs#L10C9-L12C69" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithThrowingEmptyCtor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithThrowingEmptyCtor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithThrowingEmptyCtor.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ConstrainedFakeOpenGenericService`1.#ctor(`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ConstrainedFakeOpenGenericService.cs#L9C9-L12C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ConstrainedFakeOpenGenericService.cs#L9C9-L12C10" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ConstrainedFakeOpenGenericService`1.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ConstrainedFakeOpenGenericService.cs#L13C29-L13C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ConstrainedFakeOpenGenericService.cs#L13C29-L13C33" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ConstrainedFakeOpenGenericService`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ConstrainedFakeOpenGenericService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ConstrainedFakeOpenGenericService.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.CreationCountFakeService.#ctor(Microsoft.Extensions.DependencyInjection.Specification.Fakes.IFakeService)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/CreationCountFakeService.cs#L10C9-L14C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/CreationCountFakeService.cs#L10C9-L14C10" }, { "DocsId": "F:Microsoft.Extensions.DependencyInjection.Specification.Fakes.CreationCountFakeService.InstanceLock", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/CreationCountFakeService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/CreationCountFakeService.cs" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.Fakes.CreationCountFakeService.InstanceCount", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/CreationCountFakeService.cs#L16C43-L16C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/CreationCountFakeService.cs#L16C43-L16C47" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.Fakes.CreationCountFakeService.InstanceId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/CreationCountFakeService.cs#L18C33-L18C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/CreationCountFakeService.cs#L18C33-L18C37" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.CreationCountFakeService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/CreationCountFakeService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/CreationCountFakeService.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.FakeDisposableCallbackInnerService.#ctor(Microsoft.Extensions.DependencyInjection.Specification.Fakes.FakeDisposeCallback)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeDisposableCallbackInnerService.cs#L8C83-L10C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeDisposableCallbackInnerService.cs#L8C83-L10C10" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.FakeDisposableCallbackInnerService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeDisposableCallbackInnerService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeDisposableCallbackInnerService.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.FakeDisposableCallbackOuterService.#ctor(Microsoft.Extensions.DependencyInjection.Specification.Fakes.IFakeService,System.Collections.Generic.IEnumerable{Microsoft.Extensions.DependencyInjection.Specification.Fakes.IFakeMultipleService},Microsoft.Extensions.DependencyInjection.Specification.Fakes.FakeDisposeCallback)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeDisposableCallbackOuterService.cs#L14C45-L18C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeDisposableCallbackOuterService.cs#L14C45-L18C10" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.Fakes.FakeDisposableCallbackOuterService.SingleService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeDisposableCallbackOuterService.cs#L20C45-L20C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeDisposableCallbackOuterService.cs#L20C45-L20C49" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.Fakes.FakeDisposableCallbackOuterService.MultipleServices", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeDisposableCallbackOuterService.cs#L21C69-L21C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeDisposableCallbackOuterService.cs#L21C69-L21C73" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.FakeDisposableCallbackOuterService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeDisposableCallbackOuterService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeDisposableCallbackOuterService.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.FakeDisposableCallbackService.#ctor(Microsoft.Extensions.DependencyInjection.Specification.Fakes.FakeDisposeCallback)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeDisposableCallbackService.cs#L14C9-L18C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeDisposableCallbackService.cs#L14C9-L18C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.FakeDisposableCallbackService.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeDisposableCallbackService.cs#L22C13-L23C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeDisposableCallbackService.cs#L22C13-L23C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.FakeDisposableCallbackService.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeDisposableCallbackService.cs#L27C13-L27C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeDisposableCallbackService.cs#L27C13-L27C35" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.FakeDisposableCallbackService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeDisposableCallbackService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeDisposableCallbackService.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.FakeDisposeCallback.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeDisposeCallback.cs#L10C49-L10C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeDisposeCallback.cs#L10C49-L10C67" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.Fakes.FakeDisposeCallback.Disposed", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeDisposeCallback.cs#L10C40-L10C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeDisposeCallback.cs#L10C40-L10C44" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.FakeDisposeCallback", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeDisposeCallback.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeDisposeCallback.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.FakeOneMultipleService.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeOneMultipleService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeOneMultipleService.cs" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.FakeOneMultipleService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeOneMultipleService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeOneMultipleService.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.FakeOpenGenericService`1.#ctor(`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeOpenGenericService.cs#L8C9-L11C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeOpenGenericService.cs#L8C9-L11C10" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.Fakes.FakeOpenGenericService`1.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeOpenGenericService.cs#L13C29-L13C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeOpenGenericService.cs#L13C29-L13C33" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.FakeOpenGenericService`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeOpenGenericService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeOpenGenericService.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.FakeOuterService.#ctor(Microsoft.Extensions.DependencyInjection.Specification.Fakes.IFakeService,System.Collections.Generic.IEnumerable{Microsoft.Extensions.DependencyInjection.Specification.Fakes.IFakeMultipleService})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeOuterService.cs#L10C9-L16C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeOuterService.cs#L10C9-L16C10" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.Fakes.FakeOuterService.SingleService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeOuterService.cs#L18C45-L18C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeOuterService.cs#L18C45-L18C49" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.Fakes.FakeOuterService.MultipleServices", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeOuterService.cs#L20C69-L20C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeOuterService.cs#L20C69-L20C73" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.FakeOuterService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeOuterService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeOuterService.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.FakeService.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeService.cs#L16C13-L22C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeService.cs#L16C13-L22C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.FakeService.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeService.cs" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.Fakes.FakeService.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeService.cs#L10C34-L10C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeService.cs#L10C34-L10C38" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.Fakes.FakeService.Disposed", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeService.cs#L12C32-L12C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeService.cs#L12C32-L12C36" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.FakeService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeService.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.FakeTwoMultipleService.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeTwoMultipleService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeTwoMultipleService.cs" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.FakeTwoMultipleService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeTwoMultipleService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeTwoMultipleService.cs" }, { "Members": [ { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.Fakes.IFactoryService.FakeService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/IFactoryService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/IFactoryService.cs" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.Fakes.IFactoryService.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/IFactoryService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/IFactoryService.cs" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.IFactoryService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/IFactoryService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/IFactoryService.cs" }, { "Members": [], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.IFakeEveryService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/IFakeEveryService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/IFakeEveryService.cs" }, { "Members": [], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.IFakeMultipleService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/IFakeMultipleService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/IFakeMultipleService.cs" }, { "Members": [ { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.Fakes.IFakeOpenGenericService`1.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/IFakeOpenGenericService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/IFakeOpenGenericService.cs" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.IFakeOpenGenericService`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/IFakeOpenGenericService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/IFakeOpenGenericService.cs" }, { "Members": [ { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.Fakes.IFakeOuterService.SingleService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/IFakeOuterService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/IFakeOuterService.cs" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.Fakes.IFakeOuterService.MultipleServices", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/IFakeOuterService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/IFakeOuterService.cs" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.IFakeOuterService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/IFakeOuterService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/IFakeOuterService.cs" }, { "Members": [], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.IFakeScopedService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/IFakeScopedService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/IFakeScopedService.cs" }, { "Members": [], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.IFakeService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/IFakeService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/IFakeService.cs" }, { "Members": [], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.IFakeServiceInstance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/IFakeServiceInstance.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/IFakeServiceInstance.cs" }, { "Members": [], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.IFakeSingletonService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/IFakeSingletonService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/IFakeSingletonService.cs" }, { "Members": [], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.INonexistentService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/INonexistentService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/INonexistentService.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.PocoClass.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/PocoClass.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/PocoClass.cs" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.PocoClass", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/PocoClass.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/PocoClass.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ScopedFactoryService.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ScopedFactoryService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ScopedFactoryService.cs" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ScopedFactoryService.FakeService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ScopedFactoryService.cs#L8C43-L8C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ScopedFactoryService.cs#L8C43-L8C47" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ScopedFactoryService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ScopedFactoryService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ScopedFactoryService.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ServiceAcceptingFactoryService.#ctor(Microsoft.Extensions.DependencyInjection.Specification.Fakes.ScopedFactoryService,Microsoft.Extensions.DependencyInjection.Specification.Fakes.IFactoryService)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ServiceAcceptingFactoryService.cs#L8C9-L14C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ServiceAcceptingFactoryService.cs#L8C9-L14C10" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ServiceAcceptingFactoryService.ScopedService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ServiceAcceptingFactoryService.cs#L16C53-L16C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ServiceAcceptingFactoryService.cs#L16C53-L16C57" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ServiceAcceptingFactoryService.TransientService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ServiceAcceptingFactoryService.cs#L18C51-L18C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ServiceAcceptingFactoryService.cs#L18C51-L18C55" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ServiceAcceptingFactoryService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ServiceAcceptingFactoryService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ServiceAcceptingFactoryService.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.TransientFactoryService.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/TransientFactoryService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/TransientFactoryService.cs" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.Fakes.TransientFactoryService.FakeService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/TransientFactoryService.cs#L8C43-L8C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/TransientFactoryService.cs#L8C43-L8C47" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.Fakes.TransientFactoryService.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/TransientFactoryService.cs#L10C28-L10C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/TransientFactoryService.cs#L10C28-L10C32" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.TransientFactoryService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/TransientFactoryService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/TransientFactoryService.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.TypeWithSupersetConstructors.#ctor(Microsoft.Extensions.DependencyInjection.Specification.Fakes.IFactoryService)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/TypeWithSupersetConstructors.cs#L9C15-L13C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/TypeWithSupersetConstructors.cs#L9C15-L13C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.TypeWithSupersetConstructors.#ctor(Microsoft.Extensions.DependencyInjection.Specification.Fakes.IFakeService)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/TypeWithSupersetConstructors.cs#L16C15-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/TypeWithSupersetConstructors.cs#L16C15-L20C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.TypeWithSupersetConstructors.#ctor(Microsoft.Extensions.DependencyInjection.Specification.Fakes.IFakeService,Microsoft.Extensions.DependencyInjection.Specification.Fakes.IFactoryService)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/TypeWithSupersetConstructors.cs#L25C15-L30C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/TypeWithSupersetConstructors.cs#L25C15-L30C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.TypeWithSupersetConstructors.#ctor(Microsoft.Extensions.DependencyInjection.Specification.Fakes.IFakeService,Microsoft.Extensions.DependencyInjection.Specification.Fakes.IFakeMultipleService,Microsoft.Extensions.DependencyInjection.Specification.Fakes.IFactoryService)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/TypeWithSupersetConstructors.cs#L36C15-L42C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/TypeWithSupersetConstructors.cs#L36C15-L42C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.TypeWithSupersetConstructors.#ctor(Microsoft.Extensions.DependencyInjection.Specification.Fakes.IFakeMultipleService,Microsoft.Extensions.DependencyInjection.Specification.Fakes.IFactoryService,Microsoft.Extensions.DependencyInjection.Specification.Fakes.IFakeService,Microsoft.Extensions.DependencyInjection.Specification.Fakes.IFakeScopedService)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/TypeWithSupersetConstructors.cs#L44C9-L54C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/TypeWithSupersetConstructors.cs#L44C9-L54C10" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.Fakes.TypeWithSupersetConstructors.Service", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/TypeWithSupersetConstructors.cs#L56C39-L56C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/TypeWithSupersetConstructors.cs#L56C39-L56C43" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.Fakes.TypeWithSupersetConstructors.FactoryService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/TypeWithSupersetConstructors.cs#L58C49-L58C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/TypeWithSupersetConstructors.cs#L58C49-L58C53" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.Fakes.TypeWithSupersetConstructors.MultipleService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/TypeWithSupersetConstructors.cs#L60C55-L60C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/TypeWithSupersetConstructors.cs#L60C55-L60C59" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.Fakes.TypeWithSupersetConstructors.ScopedService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/TypeWithSupersetConstructors.cs#L62C51-L62C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/TypeWithSupersetConstructors.cs#L62C51-L62C55" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.TypeWithSupersetConstructors", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/TypeWithSupersetConstructors.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/TypeWithSupersetConstructors.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.CreateInstanceFunc.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.CreateInstanceFunc.Invoke(System.IServiceProvider,System.Type,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.CreateInstanceFunc.BeginInvoke(System.IServiceProvider,System.Type,System.Object[],System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.CreateInstanceFunc.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.CreateInstanceFunc", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs" }, { "Members": [], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.ClassWithOptionalArgsCtorWithStructs.CustomStruct", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithOptionalArgsCtorWithStructs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithOptionalArgsCtorWithStructs.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.ClassWithOptionalArgsCtorWithStructs.StructWithPublicDefaultConstructor.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithOptionalArgsCtorWithStructs.cs#L53C17-L54C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithOptionalArgsCtorWithStructs.cs#L53C17-L54C14" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.ClassWithOptionalArgsCtorWithStructs.StructWithPublicDefaultConstructor.ConstructorInvoked", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithOptionalArgsCtorWithStructs.cs#L49C46-L49C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithOptionalArgsCtorWithStructs.cs#L49C46-L49C50" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.ClassWithOptionalArgsCtorWithStructs.StructWithPublicDefaultConstructor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithOptionalArgsCtorWithStructs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithOptionalArgsCtorWithStructs.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests.SimpleParentWithDynamicKeyedService.#ctor(System.IServiceProvider)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L560C13-L563C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L560C13-L563C14" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests.SimpleParentWithDynamicKeyedService.GetService(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L565C62-L565C117" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L565C62-L565C117" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests.SimpleParentWithDynamicKeyedService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs" }, { "Members": [], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests.ISimpleService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests.SimpleService.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests.SimpleService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests.AnotherSimpleService.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests.AnotherSimpleService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.DependencyInjection.json b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.DependencyInjection.json index 62ceb602ff7..dcd205e01cc 100644 --- a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.DependencyInjection.json +++ b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.DependencyInjection.json @@ -1,91 +1,90 @@ { "Assembly": "Microsoft.Extensions.DependencyInjection", - "GUID": "51C8B2FB0DE4460AB258E9A36A174AC3FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "01E3C16D285A43B0AAE19840A38357A6FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.DefaultServiceProviderFactory.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection/src/DefaultServiceProviderFactory.cs#L19C50-L22C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection/src/DefaultServiceProviderFactory.cs#L19C50-L22C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.DefaultServiceProviderFactory.#ctor(Microsoft.Extensions.DependencyInjection.ServiceProviderOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection/src/DefaultServiceProviderFactory.cs#L29C9-L32C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection/src/DefaultServiceProviderFactory.cs#L29C9-L32C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.DefaultServiceProviderFactory.CreateBuilder(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection/src/DefaultServiceProviderFactory.cs#L37C13-L37C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection/src/DefaultServiceProviderFactory.cs#L37C13-L37C29" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.DefaultServiceProviderFactory.CreateServiceProvider(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection/src/DefaultServiceProviderFactory.cs#L43C13-L43C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection/src/DefaultServiceProviderFactory.cs#L43C13-L43C68" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.DefaultServiceProviderFactory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection/src/DefaultServiceProviderFactory.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection/src/DefaultServiceProviderFactory.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionContainerBuilderExtensions.BuildServiceProvider(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection/src/ServiceCollectionContainerBuilderExtensions.cs#L20C13-L20C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection/src/ServiceCollectionContainerBuilderExtensions.cs#L20C13-L20C83" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionContainerBuilderExtensions.BuildServiceProvider(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection/src/ServiceCollectionContainerBuilderExtensions.cs#L34C13-L34C114" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection/src/ServiceCollectionContainerBuilderExtensions.cs#L34C13-L34C114" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionContainerBuilderExtensions.BuildServiceProvider(Microsoft.Extensions.DependencyInjection.IServiceCollection,Microsoft.Extensions.DependencyInjection.ServiceProviderOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection/src/ServiceCollectionContainerBuilderExtensions.cs#L48C13-L57C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection/src/ServiceCollectionContainerBuilderExtensions.cs#L48C13-L57C59" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.ServiceCollectionContainerBuilderExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection/src/ServiceCollectionContainerBuilderExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection/src/ServiceCollectionContainerBuilderExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceProvider.GetService(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection/src/ServiceProvider.cs#L101C56-L101C120" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection/src/ServiceProvider.cs#L101C56-L101C120" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceProvider.GetKeyedService(System.Type,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection/src/ServiceProvider.cs#L110C16-L110C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection/src/ServiceProvider.cs#L110C16-L110C62" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceProvider.GetRequiredKeyedService(System.Type,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection/src/ServiceProvider.cs#L123C16-L123C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection/src/ServiceProvider.cs#L123C16-L123C70" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceProvider.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection/src/ServiceProvider.cs#L140C13-L142C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection/src/ServiceProvider.cs#L140C13-L142C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceProvider.DisposeAsync", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection/src/ServiceProvider.cs#L147C13-L148C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection/src/ServiceProvider.cs#L147C13-L148C40" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.ServiceProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection/src/ServiceProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection/src/ServiceProvider.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceProviderOptions.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection/src/ServiceProviderOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection/src/ServiceProviderOptions.cs" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.ServiceProviderOptions.ValidateScopes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection/src/ServiceProviderOptions.cs#L19C38-L19C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection/src/ServiceProviderOptions.cs#L19C38-L19C42" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.ServiceProviderOptions.ValidateOnBuild", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection/src/ServiceProviderOptions.cs#L25C39-L25C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection/src/ServiceProviderOptions.cs#L25C39-L25C43" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.ServiceProviderOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection/src/ServiceProviderOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection/src/ServiceProviderOptions.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.DependencyModel.json b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.DependencyModel.json index e9d601fea89..6158e1a0623 100644 --- a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.DependencyModel.json +++ b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.DependencyModel.json @@ -1,665 +1,664 @@ { "Assembly": "Microsoft.Extensions.DependencyModel", - "GUID": "9C0A1CDAAF504669811CCA694BD43EFCFFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "47A9B2A607354B439E5DEF8298D14CC1FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:System.Collections.Generic.CollectionExtensions.GetDefaultGroup(System.Collections.Generic.IEnumerable{Microsoft.Extensions.DependencyModel.RuntimeAssetGroup})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/CollectionExtensions.cs#L11C103-L11C131" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/CollectionExtensions.cs#L11C103-L11C131" }, { "DocsId": "M:System.Collections.Generic.CollectionExtensions.GetRuntimeGroup(System.Collections.Generic.IEnumerable{Microsoft.Extensions.DependencyModel.RuntimeAssetGroup},System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/CollectionExtensions.cs#L15C13-L19C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/CollectionExtensions.cs#L15C13-L19C44" }, { "DocsId": "M:System.Collections.Generic.CollectionExtensions.GetDefaultAssets(System.Collections.Generic.IEnumerable{Microsoft.Extensions.DependencyModel.RuntimeAssetGroup})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/CollectionExtensions.cs#L27C105-L27C134" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/CollectionExtensions.cs#L27C105-L27C134" }, { "DocsId": "M:System.Collections.Generic.CollectionExtensions.GetRuntimeAssets(System.Collections.Generic.IEnumerable{Microsoft.Extensions.DependencyModel.RuntimeAssetGroup},System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/CollectionExtensions.cs#L30C13-L34C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/CollectionExtensions.cs#L30C13-L34C45" }, { "DocsId": "M:System.Collections.Generic.CollectionExtensions.GetDefaultRuntimeFileAssets(System.Collections.Generic.IEnumerable{Microsoft.Extensions.DependencyModel.RuntimeAssetGroup})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/CollectionExtensions.cs#L51C121-L51C156" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/CollectionExtensions.cs#L51C121-L51C156" }, { "DocsId": "M:System.Collections.Generic.CollectionExtensions.GetRuntimeFileAssets(System.Collections.Generic.IEnumerable{Microsoft.Extensions.DependencyModel.RuntimeAssetGroup},System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/CollectionExtensions.cs#L54C13-L58C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/CollectionExtensions.cs#L54C13-L58C51" } ], "DocsId": "T:System.Collections.Generic.CollectionExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/CollectionExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/CollectionExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.DotNet.PlatformAbstractions.HashCodeCombiner.Add(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/HashCodeCombiner.cs#L32C13-L33C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/HashCodeCombiner.cs#L32C13-L33C10" }, { "DocsId": "M:Microsoft.DotNet.PlatformAbstractions.HashCodeCombiner.Add(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/HashCodeCombiner.cs#L38C13-L40C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/HashCodeCombiner.cs#L38C13-L40C10" }, { "DocsId": "M:Microsoft.DotNet.PlatformAbstractions.HashCodeCombiner.Add(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/HashCodeCombiner.cs#L45C13-L47C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/HashCodeCombiner.cs#L45C13-L47C10" }, { "DocsId": "M:Microsoft.DotNet.PlatformAbstractions.HashCodeCombiner.Add``1(``0,System.Collections.Generic.IEqualityComparer{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/HashCodeCombiner.cs#L52C13-L54C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/HashCodeCombiner.cs#L52C13-L54C10" }, { "DocsId": "M:Microsoft.DotNet.PlatformAbstractions.HashCodeCombiner.Start", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/HashCodeCombiner.cs#L59C13-L59C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/HashCodeCombiner.cs#L59C13-L59C50" }, { "DocsId": "P:Microsoft.DotNet.PlatformAbstractions.HashCodeCombiner.CombinedHash", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/HashCodeCombiner.cs#L20C19-L20C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/HashCodeCombiner.cs#L20C19-L20C56" } ], "DocsId": "T:Microsoft.DotNet.PlatformAbstractions.HashCodeCombiner", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/HashCodeCombiner.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/HashCodeCombiner.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyModel.CompilationLibrary.#ctor(System.String,System.String,System.String,System.String,System.Collections.Generic.IEnumerable{System.String},System.Collections.Generic.IEnumerable{Microsoft.Extensions.DependencyModel.Dependency},System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/CompilationLibrary.cs#L20C15-L22C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/CompilationLibrary.cs#L20C15-L22C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyModel.CompilationLibrary.#ctor(System.String,System.String,System.String,System.String,System.Collections.Generic.IEnumerable{System.String},System.Collections.Generic.IEnumerable{Microsoft.Extensions.DependencyModel.Dependency},System.Boolean,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/CompilationLibrary.cs#L33C15-L38C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/CompilationLibrary.cs#L33C15-L38C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyModel.CompilationLibrary.ResolveReferencePaths", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/CompilationLibrary.cs#L51C13-L53C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/CompilationLibrary.cs#L51C13-L53C71" }, { "DocsId": "M:Microsoft.Extensions.DependencyModel.CompilationLibrary.ResolveReferencePaths(Microsoft.Extensions.DependencyModel.Resolution.ICompilationAssemblyResolver[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/CompilationLibrary.cs#L58C13-L71C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/CompilationLibrary.cs#L58C13-L71C71" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.CompilationLibrary.Assemblies", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/CompilationLibrary.cs#L40C51-L40C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/CompilationLibrary.cs#L40C51-L40C55" } ], "DocsId": "T:Microsoft.Extensions.DependencyModel.CompilationLibrary", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/CompilationLibrary.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/CompilationLibrary.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyModel.CompilationOptions.#ctor(System.Collections.Generic.IEnumerable{System.String},System.String,System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/CompilationOptions.cs#L50C9-L77C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/CompilationOptions.cs#L50C9-L77C10" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.CompilationOptions.Defines", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/CompilationOptions.cs#L12C49-L12C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/CompilationOptions.cs#L12C49-L12C53" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.CompilationOptions.LanguageVersion", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/CompilationOptions.cs#L14C42-L14C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/CompilationOptions.cs#L14C42-L14C46" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.CompilationOptions.Platform", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/CompilationOptions.cs#L16C35-L16C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/CompilationOptions.cs#L16C35-L16C39" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.CompilationOptions.AllowUnsafe", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/CompilationOptions.cs#L18C36-L18C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/CompilationOptions.cs#L18C36-L18C40" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.CompilationOptions.WarningsAsErrors", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/CompilationOptions.cs#L20C41-L20C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/CompilationOptions.cs#L20C41-L20C45" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.CompilationOptions.Optimize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/CompilationOptions.cs#L22C33-L22C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/CompilationOptions.cs#L22C33-L22C37" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.CompilationOptions.KeyFile", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/CompilationOptions.cs#L24C34-L24C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/CompilationOptions.cs#L24C34-L24C38" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.CompilationOptions.DelaySign", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/CompilationOptions.cs#L26C34-L26C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/CompilationOptions.cs#L26C34-L26C38" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.CompilationOptions.PublicSign", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/CompilationOptions.cs#L28C35-L28C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/CompilationOptions.cs#L28C35-L28C39" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.CompilationOptions.DebugType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/CompilationOptions.cs#L30C36-L30C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/CompilationOptions.cs#L30C36-L30C40" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.CompilationOptions.EmitEntryPoint", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/CompilationOptions.cs#L32C39-L32C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/CompilationOptions.cs#L32C39-L32C43" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.CompilationOptions.GenerateXmlDocumentation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/CompilationOptions.cs#L34C49-L34C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/CompilationOptions.cs#L34C49-L34C53" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.CompilationOptions.Default", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/CompilationOptions.cs#L36C52-L36C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/CompilationOptions.cs#L36C52-L36C56" } ], "DocsId": "T:Microsoft.Extensions.DependencyModel.CompilationOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/CompilationOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/CompilationOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyModel.Dependency.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/Dependency.cs#L14C13-L24C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/Dependency.cs#L14C13-L24C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyModel.Dependency.Equals(Microsoft.Extensions.DependencyModel.Dependency)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/Dependency.cs#L31C13-L31C93" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/Dependency.cs#L31C13-L31C93" }, { "DocsId": "M:Microsoft.Extensions.DependencyModel.Dependency.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/Dependency.cs#L34C73-L34C123" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/Dependency.cs#L34C73-L34C123" }, { "DocsId": "M:Microsoft.Extensions.DependencyModel.Dependency.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/Dependency.cs#L37C13-L37C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/Dependency.cs#L37C13-L37C75" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.Dependency.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/Dependency.cs#L26C30-L26C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/Dependency.cs#L26C30-L26C34" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.Dependency.Version", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/Dependency.cs#L27C33-L27C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/Dependency.cs#L27C33-L27C37" } ], "DocsId": "T:Microsoft.Extensions.DependencyModel.Dependency", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/Dependency.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/Dependency.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyModel.DependencyContext.#ctor(Microsoft.Extensions.DependencyModel.TargetInfo,Microsoft.Extensions.DependencyModel.CompilationOptions,System.Collections.Generic.IEnumerable{Microsoft.Extensions.DependencyModel.CompilationLibrary},System.Collections.Generic.IEnumerable{Microsoft.Extensions.DependencyModel.RuntimeLibrary},System.Collections.Generic.IEnumerable{Microsoft.Extensions.DependencyModel.RuntimeFallbacks})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContext.cs#L19C9-L36C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContext.cs#L19C9-L36C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyModel.DependencyContext.Merge(Microsoft.Extensions.DependencyModel.DependencyContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContext.cs#L53C13-L61C19" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContext.cs#L53C13-L61C19" }, { "DocsId": "M:Microsoft.Extensions.DependencyModel.DependencyContext.Load(System.Reflection.Assembly)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContext.cs#L79C13-L79C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContext.cs#L79C13-L79C67" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.DependencyContext.Default", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContext.cs#L39C53-L39C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContext.cs#L39C53-L39C74" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.DependencyContext.Target", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContext.cs#L41C36-L41C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContext.cs#L41C36-L41C40" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.DependencyContext.CompilationOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContext.cs#L43C56-L43C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContext.cs#L43C56-L43C60" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.DependencyContext.CompileLibraries", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContext.cs#L45C69-L45C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContext.cs#L45C69-L45C73" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.DependencyContext.RuntimeLibraries", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContext.cs#L47C65-L47C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContext.cs#L47C65-L47C69" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.DependencyContext.RuntimeGraph", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContext.cs#L49C63-L49C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContext.cs#L49C63-L49C67" } ], "DocsId": "T:Microsoft.Extensions.DependencyModel.DependencyContext", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContext.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContext.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyModel.DependencyContextExtensions.GetDefaultNativeAssets(Microsoft.Extensions.DependencyModel.DependencyContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextExtensions.cs#L18C13-L20C142" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextExtensions.cs#L18C13-L20C142" }, { "DocsId": "M:Microsoft.Extensions.DependencyModel.DependencyContextExtensions.GetDefaultNativeRuntimeFileAssets(Microsoft.Extensions.DependencyModel.DependencyContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextExtensions.cs#L25C13-L27C153" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextExtensions.cs#L25C13-L27C153" }, { "DocsId": "M:Microsoft.Extensions.DependencyModel.DependencyContextExtensions.GetRuntimeNativeAssets(Microsoft.Extensions.DependencyModel.DependencyContext,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextExtensions.cs#L32C13-L35C169" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextExtensions.cs#L32C13-L35C169" }, { "DocsId": "M:Microsoft.Extensions.DependencyModel.DependencyContextExtensions.GetRuntimeNativeRuntimeFileAssets(Microsoft.Extensions.DependencyModel.DependencyContext,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextExtensions.cs#L40C13-L43C180" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextExtensions.cs#L40C13-L43C180" }, { "DocsId": "M:Microsoft.Extensions.DependencyModel.DependencyContextExtensions.GetDefaultNativeAssets(Microsoft.Extensions.DependencyModel.RuntimeLibrary,Microsoft.Extensions.DependencyModel.DependencyContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextExtensions.cs#L48C13-L50C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextExtensions.cs#L48C13-L50C83" }, { "DocsId": "M:Microsoft.Extensions.DependencyModel.DependencyContextExtensions.GetDefaultNativeRuntimeFileAssets(Microsoft.Extensions.DependencyModel.RuntimeLibrary,Microsoft.Extensions.DependencyModel.DependencyContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextExtensions.cs#L55C13-L57C89" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextExtensions.cs#L55C13-L57C89" }, { "DocsId": "M:Microsoft.Extensions.DependencyModel.DependencyContextExtensions.GetRuntimeNativeAssets(Microsoft.Extensions.DependencyModel.RuntimeLibrary,Microsoft.Extensions.DependencyModel.DependencyContext,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextExtensions.cs#L62C13-L66C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextExtensions.cs#L62C13-L66C88" }, { "DocsId": "M:Microsoft.Extensions.DependencyModel.DependencyContextExtensions.GetRuntimeNativeRuntimeFileAssets(Microsoft.Extensions.DependencyModel.RuntimeLibrary,Microsoft.Extensions.DependencyModel.DependencyContext,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextExtensions.cs#L71C13-L75C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextExtensions.cs#L71C13-L75C94" }, { "DocsId": "M:Microsoft.Extensions.DependencyModel.DependencyContextExtensions.GetDefaultAssemblyNames(Microsoft.Extensions.DependencyModel.DependencyContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextExtensions.cs#L80C13-L82C143" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextExtensions.cs#L80C13-L82C143" }, { "DocsId": "M:Microsoft.Extensions.DependencyModel.DependencyContextExtensions.GetRuntimeAssemblyNames(Microsoft.Extensions.DependencyModel.DependencyContext,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextExtensions.cs#L87C13-L90C170" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextExtensions.cs#L87C13-L90C170" }, { "DocsId": "M:Microsoft.Extensions.DependencyModel.DependencyContextExtensions.GetDefaultAssemblyNames(Microsoft.Extensions.DependencyModel.RuntimeLibrary,Microsoft.Extensions.DependencyModel.DependencyContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextExtensions.cs#L95C13-L98C109" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextExtensions.cs#L95C13-L98C109" }, { "DocsId": "M:Microsoft.Extensions.DependencyModel.DependencyContextExtensions.GetRuntimeAssemblyNames(Microsoft.Extensions.DependencyModel.RuntimeLibrary,Microsoft.Extensions.DependencyModel.DependencyContext,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextExtensions.cs#L103C13-L107C114" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextExtensions.cs#L103C13-L107C114" } ], "DocsId": "T:Microsoft.Extensions.DependencyModel.DependencyContextExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyModel.DependencyContextJsonReader.Read(System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextJsonReader.cs#L24C13-L37C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextJsonReader.cs#L24C13-L37C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyModel.DependencyContextJsonReader.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextJsonReader.cs#L41C13-L45C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextJsonReader.cs#L41C13-L45C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyModel.DependencyContextJsonReader.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextJsonReader.cs#L49C13-L50C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextJsonReader.cs#L49C13-L50C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyModel.DependencyContextJsonReader.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextJsonReader.cs#L20C9-L20C100" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextJsonReader.cs#L20C9-L20C100" } ], "DocsId": "T:Microsoft.Extensions.DependencyModel.DependencyContextJsonReader", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextJsonReader.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextJsonReader.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyModel.DependencyContextLoader.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextLoader.cs#L22C44-L28C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextLoader.cs#L22C44-L28C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyModel.DependencyContextLoader.Load(System.Reflection.Assembly)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextLoader.cs#L57C13-L81C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextLoader.cs#L57C13-L81C28" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.DependencyContextLoader.Default", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextLoader.cs#L42C57-L42C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextLoader.cs#L42C57-L42C61" } ], "DocsId": "T:Microsoft.Extensions.DependencyModel.DependencyContextLoader", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextLoader.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextLoader.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyModel.DependencyContextWriter.Write(Microsoft.Extensions.DependencyModel.DependencyContext,System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextWriter.cs#L18C13-L39C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextWriter.cs#L18C13-L39C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyModel.DependencyContextWriter.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextWriter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextWriter.cs" } ], "DocsId": "T:Microsoft.Extensions.DependencyModel.DependencyContextWriter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextWriter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextWriter.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyModel.IDependencyContextReader.Read(System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/IDependencyContextReader.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/IDependencyContextReader.cs" } ], "DocsId": "T:Microsoft.Extensions.DependencyModel.IDependencyContextReader", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/IDependencyContextReader.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/IDependencyContextReader.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyModel.Library.#ctor(System.String,System.String,System.String,System.String,System.Collections.Generic.IEnumerable{Microsoft.Extensions.DependencyModel.Dependency},System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/Library.cs#L18C15-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/Library.cs#L18C15-L20C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyModel.Library.#ctor(System.String,System.String,System.String,System.String,System.Collections.Generic.IEnumerable{Microsoft.Extensions.DependencyModel.Dependency},System.Boolean,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/Library.cs#L30C15-L32C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/Library.cs#L30C15-L32C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyModel.Library.#ctor(System.String,System.String,System.String,System.String,System.Collections.Generic.IEnumerable{Microsoft.Extensions.DependencyModel.Dependency},System.Boolean,System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/Library.cs#L33C9-L66C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/Library.cs#L33C9-L66C10" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.Library.Type", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/Library.cs#L68C30-L68C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/Library.cs#L68C30-L68C34" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.Library.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/Library.cs#L70C30-L70C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/Library.cs#L70C30-L70C34" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.Library.Version", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/Library.cs#L72C33-L72C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/Library.cs#L72C33-L72C37" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.Library.Hash", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/Library.cs#L74C31-L74C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/Library.cs#L74C31-L74C35" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.Library.Dependencies", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/Library.cs#L76C57-L76C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/Library.cs#L76C57-L76C61" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.Library.Serviceable", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/Library.cs#L78C35-L78C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/Library.cs#L78C35-L78C39" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.Library.Path", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/Library.cs#L80C31-L80C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/Library.cs#L80C31-L80C35" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.Library.HashPath", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/Library.cs#L82C35-L82C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/Library.cs#L82C35-L82C39" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.Library.RuntimeStoreManifestName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/Library.cs#L84C51-L84C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/Library.cs#L84C51-L84C55" } ], "DocsId": "T:Microsoft.Extensions.DependencyModel.Library", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/Library.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/Library.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyModel.ResourceAssembly.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/ResourceAssembly.cs#L10C9-L22C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/ResourceAssembly.cs#L10C9-L22C10" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.ResourceAssembly.Locale", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/ResourceAssembly.cs#L24C32-L24C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/ResourceAssembly.cs#L24C32-L24C36" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.ResourceAssembly.Path", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/ResourceAssembly.cs#L26C30-L26C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/ResourceAssembly.cs#L26C30-L26C34" } ], "DocsId": "T:Microsoft.Extensions.DependencyModel.ResourceAssembly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/ResourceAssembly.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/ResourceAssembly.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyModel.RuntimeAssembly.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeAssembly.cs#L14C9-L26C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeAssembly.cs#L14C9-L26C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyModel.RuntimeAssembly.Create(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeAssembly.cs#L34C13-L44C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeAssembly.cs#L34C13-L44C60" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.RuntimeAssembly.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeAssembly.cs#L28C37-L28C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeAssembly.cs#L28C37-L28C55" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.RuntimeAssembly.Path", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeAssembly.cs#L30C30-L30C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeAssembly.cs#L30C30-L30C34" } ], "DocsId": "T:Microsoft.Extensions.DependencyModel.RuntimeAssembly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeAssembly.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeAssembly.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyModel.RuntimeAssetGroup.#ctor(System.String,System.String[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeAssetGroup.cs#L14C81-L14C131" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeAssetGroup.cs#L14C81-L14C131" }, { "DocsId": "M:Microsoft.Extensions.DependencyModel.RuntimeAssetGroup.#ctor(System.String,System.Collections.Generic.IEnumerable{System.String})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeAssetGroup.cs#L16C9-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeAssetGroup.cs#L16C9-L20C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyModel.RuntimeAssetGroup.#ctor(System.String,System.Collections.Generic.IEnumerable{Microsoft.Extensions.DependencyModel.RuntimeFile})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeAssetGroup.cs#L22C9-L26C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeAssetGroup.cs#L22C9-L26C10" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.RuntimeAssetGroup.Runtime", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeAssetGroup.cs#L31C34-L31C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeAssetGroup.cs#L31C34-L31C38" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.RuntimeAssetGroup.AssetPaths", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeAssetGroup.cs#L40C17-L45C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeAssetGroup.cs#L40C17-L45C75" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.RuntimeAssetGroup.RuntimeFiles", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeAssetGroup.cs#L56C17-L61C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeAssetGroup.cs#L56C17-L61C97" } ], "DocsId": "T:Microsoft.Extensions.DependencyModel.RuntimeAssetGroup", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeAssetGroup.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeAssetGroup.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyModel.RuntimeFallbacks.#ctor(System.String,System.String[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeFallbacks.cs#L15C79-L15C129" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeFallbacks.cs#L15C79-L15C129" }, { "DocsId": "M:Microsoft.Extensions.DependencyModel.RuntimeFallbacks.#ctor(System.String,System.Collections.Generic.IEnumerable{System.String})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeFallbacks.cs#L16C9-L26C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeFallbacks.cs#L16C9-L26C10" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.RuntimeFallbacks.Runtime", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeFallbacks.cs#L12C33-L12C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeFallbacks.cs#L12C33-L12C37" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.RuntimeFallbacks.Fallbacks", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeFallbacks.cs#L13C51-L13C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeFallbacks.cs#L13C51-L13C55" } ], "DocsId": "T:Microsoft.Extensions.DependencyModel.RuntimeFallbacks", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeFallbacks.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeFallbacks.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyModel.RuntimeFile.#ctor(System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeFile.cs#L10C9-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeFile.cs#L10C9-L20C10" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.RuntimeFile.Path", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeFile.cs#L22C30-L22C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeFile.cs#L22C30-L22C34" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.RuntimeFile.AssemblyVersion", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeFile.cs#L24C42-L24C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeFile.cs#L24C42-L24C46" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.RuntimeFile.FileVersion", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeFile.cs#L26C38-L26C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeFile.cs#L26C38-L26C42" } ], "DocsId": "T:Microsoft.Extensions.DependencyModel.RuntimeFile", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeFile.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeFile.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyModel.RuntimeLibrary.#ctor(System.String,System.String,System.String,System.String,System.Collections.Generic.IReadOnlyList{Microsoft.Extensions.DependencyModel.RuntimeAssetGroup},System.Collections.Generic.IReadOnlyList{Microsoft.Extensions.DependencyModel.RuntimeAssetGroup},System.Collections.Generic.IEnumerable{Microsoft.Extensions.DependencyModel.ResourceAssembly},System.Collections.Generic.IEnumerable{Microsoft.Extensions.DependencyModel.Dependency},System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeLibrary.cs#L21C15-L33C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeLibrary.cs#L21C15-L33C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyModel.RuntimeLibrary.#ctor(System.String,System.String,System.String,System.String,System.Collections.Generic.IReadOnlyList{Microsoft.Extensions.DependencyModel.RuntimeAssetGroup},System.Collections.Generic.IReadOnlyList{Microsoft.Extensions.DependencyModel.RuntimeAssetGroup},System.Collections.Generic.IEnumerable{Microsoft.Extensions.DependencyModel.ResourceAssembly},System.Collections.Generic.IEnumerable{Microsoft.Extensions.DependencyModel.Dependency},System.Boolean,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeLibrary.cs#L46C15-L59C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeLibrary.cs#L46C15-L59C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyModel.RuntimeLibrary.#ctor(System.String,System.String,System.String,System.String,System.Collections.Generic.IReadOnlyList{Microsoft.Extensions.DependencyModel.RuntimeAssetGroup},System.Collections.Generic.IReadOnlyList{Microsoft.Extensions.DependencyModel.RuntimeAssetGroup},System.Collections.Generic.IEnumerable{Microsoft.Extensions.DependencyModel.ResourceAssembly},System.Collections.Generic.IEnumerable{Microsoft.Extensions.DependencyModel.Dependency},System.Boolean,System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeLibrary.cs#L98C15-L115C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeLibrary.cs#L98C15-L115C10" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.RuntimeLibrary.RuntimeAssemblyGroups", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeLibrary.cs#L117C73-L117C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeLibrary.cs#L117C73-L117C77" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.RuntimeLibrary.NativeLibraryGroups", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeLibrary.cs#L119C71-L119C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeLibrary.cs#L119C71-L119C75" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.RuntimeLibrary.ResourceAssemblies", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeLibrary.cs#L121C69-L121C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeLibrary.cs#L121C69-L121C73" } ], "DocsId": "T:Microsoft.Extensions.DependencyModel.RuntimeLibrary", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeLibrary.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeLibrary.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyModel.TargetInfo.#ctor(System.String,System.String,System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/TargetInfo.cs#L9C9-L23C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/TargetInfo.cs#L9C9-L23C10" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.TargetInfo.Framework", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/TargetInfo.cs#L25C35-L25C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/TargetInfo.cs#L25C35-L25C39" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.TargetInfo.Runtime", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/TargetInfo.cs#L27C34-L27C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/TargetInfo.cs#L27C34-L27C38" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.TargetInfo.RuntimeSignature", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/TargetInfo.cs#L29C43-L29C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/TargetInfo.cs#L29C43-L29C47" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.TargetInfo.IsPortable", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/TargetInfo.cs#L31C34-L31C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/TargetInfo.cs#L31C34-L31C38" } ], "DocsId": "T:Microsoft.Extensions.DependencyModel.TargetInfo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/TargetInfo.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/TargetInfo.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyModel.Resolution.AppBaseCompilationAssemblyResolver.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/Resolution/AppBaseCompilationAssemblyResolver.cs#L19C15-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/Resolution/AppBaseCompilationAssemblyResolver.cs#L19C15-L21C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyModel.Resolution.AppBaseCompilationAssemblyResolver.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/Resolution/AppBaseCompilationAssemblyResolver.cs#L24C15-L26C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/Resolution/AppBaseCompilationAssemblyResolver.cs#L24C15-L26C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyModel.Resolution.AppBaseCompilationAssemblyResolver.TryResolveAssemblyPaths(Microsoft.Extensions.DependencyModel.CompilationLibrary,System.Collections.Generic.List{System.String})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/Resolution/AppBaseCompilationAssemblyResolver.cs#L46C13-L121C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/Resolution/AppBaseCompilationAssemblyResolver.cs#L46C13-L121C10" } ], "DocsId": "T:Microsoft.Extensions.DependencyModel.Resolution.AppBaseCompilationAssemblyResolver", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/Resolution/AppBaseCompilationAssemblyResolver.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/Resolution/AppBaseCompilationAssemblyResolver.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyModel.Resolution.CompositeCompilationAssemblyResolver.#ctor(Microsoft.Extensions.DependencyModel.Resolution.ICompilationAssemblyResolver[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/Resolution/CompositeCompilationAssemblyResolver.cs#L13C9-L18C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/Resolution/CompositeCompilationAssemblyResolver.cs#L13C9-L18C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyModel.Resolution.CompositeCompilationAssemblyResolver.TryResolveAssemblyPaths(Microsoft.Extensions.DependencyModel.CompilationLibrary,System.Collections.Generic.List{System.String})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/Resolution/CompositeCompilationAssemblyResolver.cs#L22C63-L29C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/Resolution/CompositeCompilationAssemblyResolver.cs#L22C63-L29C26" } ], "DocsId": "T:Microsoft.Extensions.DependencyModel.Resolution.CompositeCompilationAssemblyResolver", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/Resolution/CompositeCompilationAssemblyResolver.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/Resolution/CompositeCompilationAssemblyResolver.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyModel.Resolution.DotNetReferenceAssembliesPathResolver.Resolve", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/Resolution/DotNetReferenceAssembliesPathResolver.cs#L27C13-L27C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/Resolution/DotNetReferenceAssembliesPathResolver.cs#L27C13-L27C83" }, { "DocsId": "M:Microsoft.Extensions.DependencyModel.Resolution.DotNetReferenceAssembliesPathResolver.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/Resolution/DotNetReferenceAssembliesPathResolver.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/Resolution/DotNetReferenceAssembliesPathResolver.cs" }, { "DocsId": "F:Microsoft.Extensions.DependencyModel.Resolution.DotNetReferenceAssembliesPathResolver.DotNetReferenceAssembliesPathEnv", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/Resolution/DotNetReferenceAssembliesPathResolver.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/Resolution/DotNetReferenceAssembliesPathResolver.cs" } ], "DocsId": "T:Microsoft.Extensions.DependencyModel.Resolution.DotNetReferenceAssembliesPathResolver", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/Resolution/DotNetReferenceAssembliesPathResolver.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/Resolution/DotNetReferenceAssembliesPathResolver.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyModel.Resolution.ICompilationAssemblyResolver.TryResolveAssemblyPaths(Microsoft.Extensions.DependencyModel.CompilationLibrary,System.Collections.Generic.List{System.String})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/Resolution/ICompilationAssemblyResolver.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/Resolution/ICompilationAssemblyResolver.cs" } ], "DocsId": "T:Microsoft.Extensions.DependencyModel.Resolution.ICompilationAssemblyResolver", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/Resolution/ICompilationAssemblyResolver.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/Resolution/ICompilationAssemblyResolver.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyModel.Resolution.PackageCompilationAssemblyResolver.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/Resolution/PackageCompilationAssemblyResolver.cs#L17C15-L19C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/Resolution/PackageCompilationAssemblyResolver.cs#L17C15-L19C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyModel.Resolution.PackageCompilationAssemblyResolver.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/Resolution/PackageCompilationAssemblyResolver.cs#L22C15-L24C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/Resolution/PackageCompilationAssemblyResolver.cs#L22C15-L24C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyModel.Resolution.PackageCompilationAssemblyResolver.TryResolveAssemblyPaths(Microsoft.Extensions.DependencyModel.CompilationLibrary,System.Collections.Generic.List{System.String})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/Resolution/PackageCompilationAssemblyResolver.cs#L79C13-L100C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/Resolution/PackageCompilationAssemblyResolver.cs#L79C13-L100C26" } ], "DocsId": "T:Microsoft.Extensions.DependencyModel.Resolution.PackageCompilationAssemblyResolver", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/Resolution/PackageCompilationAssemblyResolver.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/Resolution/PackageCompilationAssemblyResolver.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyModel.Resolution.ReferenceAssemblyPathResolver.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/Resolution/ReferenceAssemblyPathResolver.cs#L18C15-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/Resolution/ReferenceAssemblyPathResolver.cs#L18C15-L20C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyModel.Resolution.ReferenceAssemblyPathResolver.#ctor(System.String,System.String[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/Resolution/ReferenceAssemblyPathResolver.cs#L23C15-L25C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/Resolution/ReferenceAssemblyPathResolver.cs#L23C15-L25C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyModel.Resolution.ReferenceAssemblyPathResolver.TryResolveAssemblyPaths(Microsoft.Extensions.DependencyModel.CompilationLibrary,System.Collections.Generic.List{System.String})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/Resolution/ReferenceAssemblyPathResolver.cs#L46C13-L60C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/Resolution/ReferenceAssemblyPathResolver.cs#L46C13-L60C25" } ], "DocsId": "T:Microsoft.Extensions.DependencyModel.Resolution.ReferenceAssemblyPathResolver", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/Resolution/ReferenceAssemblyPathResolver.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/Resolution/ReferenceAssemblyPathResolver.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Diagnostics.Abstractions.json b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Diagnostics.Abstractions.json index a53fdc95afe..264dd266188 100644 --- a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Diagnostics.Abstractions.json +++ b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Diagnostics.Abstractions.json @@ -1,207 +1,206 @@ { "Assembly": "Microsoft.Extensions.Diagnostics.Abstractions", - "GUID": "A982DE958DF749FB81CCBAE156E6D8F0FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "FEC71087B8BD47C3A5BD61AFF86D2260FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.IMetricsBuilder.Services", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/IMetricsBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/IMetricsBuilder.cs" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Metrics.IMetricsBuilder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/IMetricsBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/IMetricsBuilder.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.IMetricsListener.Initialize(Microsoft.Extensions.Diagnostics.Metrics.IObservableInstrumentsSource)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/IMetricsListener.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/IMetricsListener.cs" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.IMetricsListener.InstrumentPublished(System.Diagnostics.Metrics.Instrument,System.Object@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/IMetricsListener.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/IMetricsListener.cs" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.IMetricsListener.MeasurementsCompleted(System.Diagnostics.Metrics.Instrument,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/IMetricsListener.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/IMetricsListener.cs" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.IMetricsListener.GetMeasurementHandlers", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/IMetricsListener.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/IMetricsListener.cs" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.IMetricsListener.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/IMetricsListener.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/IMetricsListener.cs" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Metrics.IMetricsListener", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/IMetricsListener.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/IMetricsListener.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.InstrumentRule.#ctor(System.String,System.String,System.String,Microsoft.Extensions.Diagnostics.Metrics.MeterScope,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/InstrumentRule.cs#L31C45-L25C129" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/InstrumentRule.cs#L31C45-L25C129" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.InstrumentRule.MeterName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/InstrumentRule.cs#L31C36-L31C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/InstrumentRule.cs#L31C36-L31C40" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.InstrumentRule.InstrumentName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/InstrumentRule.cs#L37C41-L37C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/InstrumentRule.cs#L37C41-L37C45" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.InstrumentRule.ListenerName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/InstrumentRule.cs#L43C39-L43C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/InstrumentRule.cs#L43C39-L43C43" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.InstrumentRule.Scopes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/InstrumentRule.cs#L49C36-L49C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/InstrumentRule.cs#L49C36-L49C40" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.InstrumentRule.Enable", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/InstrumentRule.cs#L56C30-L56C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/InstrumentRule.cs#L56C30-L56C34" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Metrics.InstrumentRule", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/InstrumentRule.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/InstrumentRule.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.IObservableInstrumentsSource.RecordObservableInstruments", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/IObservableInstrumentsSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/IObservableInstrumentsSource.cs" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Metrics.IObservableInstrumentsSource", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/IObservableInstrumentsSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/IObservableInstrumentsSource.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.MeasurementHandlers.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MeasurementHandlers.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MeasurementHandlers.cs" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.MeasurementHandlers.ByteHandler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MeasurementHandlers.cs#L16C57-L16C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MeasurementHandlers.cs#L16C57-L16C61" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.MeasurementHandlers.ShortHandler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MeasurementHandlers.cs#L21C59-L21C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MeasurementHandlers.cs#L21C59-L21C63" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.MeasurementHandlers.IntHandler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MeasurementHandlers.cs#L26C55-L26C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MeasurementHandlers.cs#L26C55-L26C59" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.MeasurementHandlers.LongHandler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MeasurementHandlers.cs#L31C57-L31C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MeasurementHandlers.cs#L31C57-L31C61" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.MeasurementHandlers.FloatHandler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MeasurementHandlers.cs#L36C59-L36C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MeasurementHandlers.cs#L36C59-L36C63" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.MeasurementHandlers.DoubleHandler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MeasurementHandlers.cs#L41C61-L41C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MeasurementHandlers.cs#L41C61-L41C65" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.MeasurementHandlers.DecimalHandler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MeasurementHandlers.cs#L46C63-L46C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MeasurementHandlers.cs#L46C63-L46C67" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Metrics.MeasurementHandlers", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MeasurementHandlers.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MeasurementHandlers.cs" }, { "Members": [ { "DocsId": "F:Microsoft.Extensions.Diagnostics.Metrics.MeterScope.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MeterScope.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MeterScope.cs" }, { "DocsId": "F:Microsoft.Extensions.Diagnostics.Metrics.MeterScope.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MeterScope.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MeterScope.cs" }, { "DocsId": "F:Microsoft.Extensions.Diagnostics.Metrics.MeterScope.Global", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MeterScope.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MeterScope.cs" }, { "DocsId": "F:Microsoft.Extensions.Diagnostics.Metrics.MeterScope.Local", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MeterScope.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MeterScope.cs" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Metrics.MeterScope", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MeterScope.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MeterScope.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.MetricsBuilderExtensions.AddListener``1(Microsoft.Extensions.Diagnostics.Metrics.IMetricsBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MetricsBuilderExtensions.Listeners.cs#L24C13-L26C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MetricsBuilderExtensions.Listeners.cs#L24C13-L26C28" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.MetricsBuilderExtensions.AddListener(Microsoft.Extensions.Diagnostics.Metrics.IMetricsBuilder,Microsoft.Extensions.Diagnostics.Metrics.IMetricsListener)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MetricsBuilderExtensions.Listeners.cs#L37C13-L39C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MetricsBuilderExtensions.Listeners.cs#L37C13-L39C28" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.MetricsBuilderExtensions.ClearListeners(Microsoft.Extensions.Diagnostics.Metrics.IMetricsBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MetricsBuilderExtensions.Listeners.cs#L49C13-L51C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MetricsBuilderExtensions.Listeners.cs#L49C13-L51C28" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.MetricsBuilderExtensions.EnableMetrics(Microsoft.Extensions.Diagnostics.Metrics.IMetricsBuilder,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MetricsBuilderExtensions.Rules.cs#L22C16-L22C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MetricsBuilderExtensions.Rules.cs#L16707566C0-L22C82" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.MetricsBuilderExtensions.EnableMetrics(Microsoft.Extensions.Diagnostics.Metrics.IMetricsBuilder,System.String,System.String,System.String,Microsoft.Extensions.Diagnostics.Metrics.MeterScope)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MetricsBuilderExtensions.Rules.cs#L35C16-L35C120" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MetricsBuilderExtensions.Rules.cs#L16707566C0-L35C120" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.MetricsBuilderExtensions.EnableMetrics(Microsoft.Extensions.Diagnostics.Metrics.MetricsOptions,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MetricsBuilderExtensions.Rules.cs#L44C16-L44C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MetricsBuilderExtensions.Rules.cs#L44C16-L44C81" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.MetricsBuilderExtensions.EnableMetrics(Microsoft.Extensions.Diagnostics.Metrics.MetricsOptions,System.String,System.String,System.String,Microsoft.Extensions.Diagnostics.Metrics.MeterScope)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MetricsBuilderExtensions.Rules.cs#L57C16-L57C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MetricsBuilderExtensions.Rules.cs#L57C16-L57C94" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.MetricsBuilderExtensions.DisableMetrics(Microsoft.Extensions.Diagnostics.Metrics.IMetricsBuilder,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MetricsBuilderExtensions.Rules.cs#L66C16-L66C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MetricsBuilderExtensions.Rules.cs#L16707566C0-L66C83" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.MetricsBuilderExtensions.DisableMetrics(Microsoft.Extensions.Diagnostics.Metrics.IMetricsBuilder,System.String,System.String,System.String,Microsoft.Extensions.Diagnostics.Metrics.MeterScope)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MetricsBuilderExtensions.Rules.cs#L79C16-L79C121" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MetricsBuilderExtensions.Rules.cs#L16707566C0-L79C121" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.MetricsBuilderExtensions.DisableMetrics(Microsoft.Extensions.Diagnostics.Metrics.MetricsOptions,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MetricsBuilderExtensions.Rules.cs#L88C16-L88C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MetricsBuilderExtensions.Rules.cs#L88C16-L88C82" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.MetricsBuilderExtensions.DisableMetrics(Microsoft.Extensions.Diagnostics.Metrics.MetricsOptions,System.String,System.String,System.String,Microsoft.Extensions.Diagnostics.Metrics.MeterScope)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MetricsBuilderExtensions.Rules.cs#L101C16-L101C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MetricsBuilderExtensions.Rules.cs#L101C16-L101C95" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Metrics.MetricsBuilderExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MetricsBuilderExtensions.Listeners.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MetricsBuilderExtensions.Listeners.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.MetricsOptions.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MetricsOptions.cs#L16C55-L16C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MetricsOptions.cs#L16C55-L16C81" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.MetricsOptions.Rules", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MetricsOptions.cs#L16C46-L16C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MetricsOptions.cs#L16C46-L16C50" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Metrics.MetricsOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MetricsOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MetricsOptions.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Diagnostics.ExceptionSummarization.json b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Diagnostics.ExceptionSummarization.json index 0e36460a76a..8d302f19e58 100644 --- a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Diagnostics.ExceptionSummarization.json +++ b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Diagnostics.ExceptionSummarization.json @@ -1,119 +1,118 @@ { "Assembly": "Microsoft.Extensions.Diagnostics.ExceptionSummarization", - "GUID": "F597855C5FAC4F98B3B8E3ACBF506AE3FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "2BB20FC8ADF749908E3CE0EC858E8552FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ExceptionSummarizationServiceCollectionExtensions.AddExceptionSummarizer(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/ExceptionSummarizationServiceCollectionExtensions.cs#L25C9-L28C25" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/ExceptionSummarizationServiceCollectionExtensions.cs#L25C9-L28C25" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ExceptionSummarizationServiceCollectionExtensions.AddExceptionSummarizer(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{Microsoft.Extensions.Diagnostics.ExceptionSummarization.IExceptionSummarizationBuilder})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/ExceptionSummarizationServiceCollectionExtensions.cs#L40C9-L46C25" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/ExceptionSummarizationServiceCollectionExtensions.cs#L40C9-L46C25" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.ExceptionSummarizationServiceCollectionExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/ExceptionSummarizationServiceCollectionExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/ExceptionSummarizationServiceCollectionExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.ExceptionSummarization.ExceptionSummarizationBuilderExtensions.AddHttpProvider(Microsoft.Extensions.Diagnostics.ExceptionSummarization.IExceptionSummarizationBuilder)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/ExceptionSummarizationBuilderExtensions.cs#L23C12-L23C77" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/ExceptionSummarizationBuilderExtensions.cs#L23C12-L23C77" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.ExceptionSummarization.ExceptionSummarizationBuilderExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/ExceptionSummarizationBuilderExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/ExceptionSummarizationBuilderExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.ExceptionSummarization.ExceptionSummary.#ctor(System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/ExceptionSummary.cs#L31C9-L34C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/ExceptionSummary.cs#L31C9-L34C6" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.ExceptionSummarization.ExceptionSummary.GetHashCode", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/ExceptionSummary.cs#L67C42-L70C65" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/ExceptionSummary.cs#L67C42-L70C65" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.ExceptionSummarization.ExceptionSummary.ToString", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/ExceptionSummary.cs#L81C9-L83C68" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/ExceptionSummary.cs#L81C9-L83C68" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.ExceptionSummarization.ExceptionSummary.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/ExceptionSummary.cs#L91C49-L91C99" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/ExceptionSummary.cs#L91C49-L91C99" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.ExceptionSummarization.ExceptionSummary.Equals(Microsoft.Extensions.Diagnostics.ExceptionSummarization.ExceptionSummary)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/ExceptionSummary.cs#L100C9-L102C92" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/ExceptionSummary.cs#L100C9-L102C92" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.ExceptionSummarization.ExceptionSummary.op_Equality(Microsoft.Extensions.Diagnostics.ExceptionSummarization.ExceptionSummary,Microsoft.Extensions.Diagnostics.ExceptionSummarization.ExceptionSummary)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/ExceptionSummary.cs#L113C9-L113C35" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/ExceptionSummary.cs#L113C9-L113C35" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.ExceptionSummarization.ExceptionSummary.op_Inequality(Microsoft.Extensions.Diagnostics.ExceptionSummarization.ExceptionSummary,Microsoft.Extensions.Diagnostics.ExceptionSummarization.ExceptionSummary)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/ExceptionSummary.cs#L124C9-L124C36" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/ExceptionSummary.cs#L124C9-L124C36" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.ExceptionSummarization.ExceptionSummary.ExceptionType", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/ExceptionSummary.cs#L43C35-L43C39" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/ExceptionSummary.cs#L43C35-L43C39" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.ExceptionSummarization.ExceptionSummary.Description", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/ExceptionSummary.cs#L52C33-L52C37" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/ExceptionSummary.cs#L52C33-L52C37" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.ExceptionSummarization.ExceptionSummary.AdditionalDetails", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/ExceptionSummary.cs#L61C39-L61C43" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/ExceptionSummary.cs#L61C39-L61C43" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.ExceptionSummarization.ExceptionSummary", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/ExceptionSummary.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/ExceptionSummary.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.ExceptionSummarization.IExceptionSummarizationBuilder.AddProvider``1", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/IExceptionSummarizationBuilder.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/IExceptionSummarizationBuilder.cs" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.ExceptionSummarization.IExceptionSummarizationBuilder.Services", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/IExceptionSummarizationBuilder.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/IExceptionSummarizationBuilder.cs" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.ExceptionSummarization.IExceptionSummarizationBuilder", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/IExceptionSummarizationBuilder.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/IExceptionSummarizationBuilder.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.ExceptionSummarization.IExceptionSummarizer.Summarize(System.Exception)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/IExceptionSummarizer.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/IExceptionSummarizer.cs" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.ExceptionSummarization.IExceptionSummarizer", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/IExceptionSummarizer.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/IExceptionSummarizer.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.ExceptionSummarization.IExceptionSummaryProvider.Describe(System.Exception,System.String@)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/IExceptionSummaryProvider.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/IExceptionSummaryProvider.cs" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.ExceptionSummarization.IExceptionSummaryProvider.SupportedExceptionTypes", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/IExceptionSummaryProvider.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/IExceptionSummaryProvider.cs" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.ExceptionSummarization.IExceptionSummaryProvider.Descriptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/IExceptionSummaryProvider.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/IExceptionSummaryProvider.cs" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.ExceptionSummarization.IExceptionSummaryProvider", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/IExceptionSummaryProvider.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/IExceptionSummaryProvider.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.json b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.json index cbb59d6d931..ad5098420dd 100644 --- a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.json +++ b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.json @@ -1,215 +1,214 @@ { "Assembly": "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions", - "GUID": "C0DC0C16F9F34AAA9B7FDE87AE0F6825FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "4A4742B02B8D4D3DA7106F1F066901E3FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckContext.#ctor", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/HealthChecks/Abstractions/src/HealthCheckContext.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/HealthChecks/Abstractions/src/HealthCheckContext.cs" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckContext.Registration", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/HealthChecks/Abstractions/src/HealthCheckContext.cs#L15C51-L15C55" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/HealthChecks/Abstractions/src/HealthCheckContext.cs#L15C51-L15C55" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckContext", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/HealthChecks/Abstractions/src/HealthCheckContext.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/HealthChecks/Abstractions/src/HealthCheckContext.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckRegistration.#ctor(System.String,Microsoft.Extensions.Diagnostics.HealthChecks.IHealthCheck,System.Nullable{Microsoft.Extensions.Diagnostics.HealthChecks.HealthStatus},System.Collections.Generic.IEnumerable{System.String})", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/HealthChecks/Abstractions/src/HealthCheckRegistration.cs#L41C11-L43C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/HealthChecks/Abstractions/src/HealthCheckRegistration.cs#L41C11-L43C6" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckRegistration.#ctor(System.String,Microsoft.Extensions.Diagnostics.HealthChecks.IHealthCheck,System.Nullable{Microsoft.Extensions.Diagnostics.HealthChecks.HealthStatus},System.Collections.Generic.IEnumerable{System.String},System.Nullable{System.TimeSpan})", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/HealthChecks/Abstractions/src/HealthCheckRegistration.cs#L56C5-L71C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/HealthChecks/Abstractions/src/HealthCheckRegistration.cs#L16707566C0-L71C6" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckRegistration.#ctor(System.String,System.Func{System.IServiceProvider,Microsoft.Extensions.Diagnostics.HealthChecks.IHealthCheck},System.Nullable{Microsoft.Extensions.Diagnostics.HealthChecks.HealthStatus},System.Collections.Generic.IEnumerable{System.String})", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/HealthChecks/Abstractions/src/HealthCheckRegistration.cs#L88C11-L90C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/HealthChecks/Abstractions/src/HealthCheckRegistration.cs#L88C11-L90C6" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckRegistration.#ctor(System.String,System.Func{System.IServiceProvider,Microsoft.Extensions.Diagnostics.HealthChecks.IHealthCheck},System.Nullable{Microsoft.Extensions.Diagnostics.HealthChecks.HealthStatus},System.Collections.Generic.IEnumerable{System.String},System.Nullable{System.TimeSpan})", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/HealthChecks/Abstractions/src/HealthCheckRegistration.cs#L103C5-L123C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/HealthChecks/Abstractions/src/HealthCheckRegistration.cs#L103C5-L123C6" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckRegistration.Factory", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/HealthChecks/Abstractions/src/HealthCheckRegistration.cs#L130C16-L130C24" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/HealthChecks/Abstractions/src/HealthCheckRegistration.cs#L130C16-L130C24" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckRegistration.FailureStatus", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/HealthChecks/Abstractions/src/HealthCheckRegistration.cs#L142C41-L142C45" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/HealthChecks/Abstractions/src/HealthCheckRegistration.cs#L142C41-L142C45" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckRegistration.Timeout", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/HealthChecks/Abstractions/src/HealthCheckRegistration.cs#L149C16-L149C24" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/HealthChecks/Abstractions/src/HealthCheckRegistration.cs#L149C16-L149C24" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckRegistration.Delay", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/HealthChecks/Abstractions/src/HealthCheckRegistration.cs#L166C30-L166C34" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/HealthChecks/Abstractions/src/HealthCheckRegistration.cs#L166C30-L166C34" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckRegistration.Period", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/HealthChecks/Abstractions/src/HealthCheckRegistration.cs#L171C31-L171C35" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/HealthChecks/Abstractions/src/HealthCheckRegistration.cs#L171C31-L171C35" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckRegistration.Name", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/HealthChecks/Abstractions/src/HealthCheckRegistration.cs#L178C16-L178C21" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/HealthChecks/Abstractions/src/HealthCheckRegistration.cs#L178C16-L178C21" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckRegistration.Tags", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/HealthChecks/Abstractions/src/HealthCheckRegistration.cs#L190C32-L190C36" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/HealthChecks/Abstractions/src/HealthCheckRegistration.cs#L190C32-L190C36" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckRegistration", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/HealthChecks/Abstractions/src/HealthCheckRegistration.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/HealthChecks/Abstractions/src/HealthCheckRegistration.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckResult.#ctor(Microsoft.Extensions.Diagnostics.HealthChecks.HealthStatus,System.String,System.Exception,System.Collections.Generic.IReadOnlyDictionary{System.String,System.Object})", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/HealthChecks/Abstractions/src/HealthCheckResult.cs#L26C9-L30C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/HealthChecks/Abstractions/src/HealthCheckResult.cs#L26C9-L30C6" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckResult.Healthy(System.String,System.Collections.Generic.IReadOnlyDictionary{System.String,System.Object})", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/HealthChecks/Abstractions/src/HealthCheckResult.cs#L60C9-L60C104" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/HealthChecks/Abstractions/src/HealthCheckResult.cs#L60C9-L60C104" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckResult.Degraded(System.String,System.Exception,System.Collections.Generic.IReadOnlyDictionary{System.String,System.Object})", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/HealthChecks/Abstractions/src/HealthCheckResult.cs#L72C9-L72C110" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/HealthChecks/Abstractions/src/HealthCheckResult.cs#L72C9-L72C110" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckResult.Unhealthy(System.String,System.Exception,System.Collections.Generic.IReadOnlyDictionary{System.String,System.Object})", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/HealthChecks/Abstractions/src/HealthCheckResult.cs#L84C9-L84C100" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/HealthChecks/Abstractions/src/HealthCheckResult.cs#L84C9-L84C100" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckResult.Data", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/HealthChecks/Abstractions/src/HealthCheckResult.cs#L35C55-L35C59" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/HealthChecks/Abstractions/src/HealthCheckResult.cs#L35C55-L35C59" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckResult.Description", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/HealthChecks/Abstractions/src/HealthCheckResult.cs#L40C34-L40C38" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/HealthChecks/Abstractions/src/HealthCheckResult.cs#L40C34-L40C38" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckResult.Exception", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/HealthChecks/Abstractions/src/HealthCheckResult.cs#L45C35-L45C39" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/HealthChecks/Abstractions/src/HealthCheckResult.cs#L45C35-L45C39" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckResult.Status", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/HealthChecks/Abstractions/src/HealthCheckResult.cs#L50C34-L50C38" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/HealthChecks/Abstractions/src/HealthCheckResult.cs#L50C34-L50C38" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckResult", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/HealthChecks/Abstractions/src/HealthCheckResult.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/HealthChecks/Abstractions/src/HealthCheckResult.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.HealthChecks.HealthReport.#ctor(System.Collections.Generic.IReadOnlyDictionary{System.String,Microsoft.Extensions.Diagnostics.HealthChecks.HealthReportEntry},System.TimeSpan)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/HealthChecks/Abstractions/src/HealthReport.cs#L20C11-L25C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/HealthChecks/Abstractions/src/HealthReport.cs#L20C11-L25C6" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.HealthChecks.HealthReport.#ctor(System.Collections.Generic.IReadOnlyDictionary{System.String,Microsoft.Extensions.Diagnostics.HealthChecks.HealthReportEntry},Microsoft.Extensions.Diagnostics.HealthChecks.HealthStatus,System.TimeSpan)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/HealthChecks/Abstractions/src/HealthReport.cs#L33C5-L38C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/HealthChecks/Abstractions/src/HealthReport.cs#L33C5-L38C6" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.HealthChecks.HealthReport.Entries", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/HealthChecks/Abstractions/src/HealthReport.cs#L47C69-L47C73" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/HealthChecks/Abstractions/src/HealthReport.cs#L47C69-L47C73" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.HealthChecks.HealthReport.Status", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/HealthChecks/Abstractions/src/HealthReport.cs#L53C34-L53C38" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/HealthChecks/Abstractions/src/HealthReport.cs#L53C34-L53C38" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.HealthChecks.HealthReport.TotalDuration", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/HealthChecks/Abstractions/src/HealthReport.cs#L58C37-L58C41" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/HealthChecks/Abstractions/src/HealthReport.cs#L58C37-L58C41" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.HealthChecks.HealthReport", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/HealthChecks/Abstractions/src/HealthReport.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/HealthChecks/Abstractions/src/HealthReport.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.HealthChecks.HealthReportEntry.#ctor(Microsoft.Extensions.Diagnostics.HealthChecks.HealthStatus,System.String,System.TimeSpan,System.Exception,System.Collections.Generic.IReadOnlyDictionary{System.String,System.Object})", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/HealthChecks/Abstractions/src/HealthReportEntry.cs#L27C11-L29C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/HealthChecks/Abstractions/src/HealthReportEntry.cs#L27C11-L29C6" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.HealthChecks.HealthReportEntry.#ctor(Microsoft.Extensions.Diagnostics.HealthChecks.HealthStatus,System.String,System.TimeSpan,System.Exception,System.Collections.Generic.IReadOnlyDictionary{System.String,System.Object},System.Collections.Generic.IEnumerable{System.String})", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/HealthChecks/Abstractions/src/HealthReportEntry.cs#L43C9-L49C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/HealthChecks/Abstractions/src/HealthReportEntry.cs#L43C9-L49C6" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.HealthChecks.HealthReportEntry.Data", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/HealthChecks/Abstractions/src/HealthReportEntry.cs#L54C55-L54C59" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/HealthChecks/Abstractions/src/HealthReportEntry.cs#L54C55-L54C59" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.HealthChecks.HealthReportEntry.Description", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/HealthChecks/Abstractions/src/HealthReportEntry.cs#L59C34-L59C38" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/HealthChecks/Abstractions/src/HealthReportEntry.cs#L59C34-L59C38" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.HealthChecks.HealthReportEntry.Duration", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/HealthChecks/Abstractions/src/HealthReportEntry.cs#L64C32-L64C36" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/HealthChecks/Abstractions/src/HealthReportEntry.cs#L64C32-L64C36" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.HealthChecks.HealthReportEntry.Exception", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/HealthChecks/Abstractions/src/HealthReportEntry.cs#L69C35-L69C39" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/HealthChecks/Abstractions/src/HealthReportEntry.cs#L69C35-L69C39" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.HealthChecks.HealthReportEntry.Status", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/HealthChecks/Abstractions/src/HealthReportEntry.cs#L74C34-L74C38" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/HealthChecks/Abstractions/src/HealthReportEntry.cs#L74C34-L74C38" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.HealthChecks.HealthReportEntry.Tags", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/HealthChecks/Abstractions/src/HealthReportEntry.cs#L79C39-L79C43" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/HealthChecks/Abstractions/src/HealthReportEntry.cs#L79C39-L79C43" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.HealthChecks.HealthReportEntry", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/HealthChecks/Abstractions/src/HealthReportEntry.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/HealthChecks/Abstractions/src/HealthReportEntry.cs" }, { "Members": [ { "DocsId": "F:Microsoft.Extensions.Diagnostics.HealthChecks.HealthStatus.value__", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/HealthChecks/Abstractions/src/HealthStatus.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/HealthChecks/Abstractions/src/HealthStatus.cs" }, { "DocsId": "F:Microsoft.Extensions.Diagnostics.HealthChecks.HealthStatus.Unhealthy", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/HealthChecks/Abstractions/src/HealthStatus.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/HealthChecks/Abstractions/src/HealthStatus.cs" }, { "DocsId": "F:Microsoft.Extensions.Diagnostics.HealthChecks.HealthStatus.Degraded", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/HealthChecks/Abstractions/src/HealthStatus.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/HealthChecks/Abstractions/src/HealthStatus.cs" }, { "DocsId": "F:Microsoft.Extensions.Diagnostics.HealthChecks.HealthStatus.Healthy", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/HealthChecks/Abstractions/src/HealthStatus.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/HealthChecks/Abstractions/src/HealthStatus.cs" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.HealthChecks.HealthStatus", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/HealthChecks/Abstractions/src/HealthStatus.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/HealthChecks/Abstractions/src/HealthStatus.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.HealthChecks.IHealthCheck.CheckHealthAsync(Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckContext,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/HealthChecks/Abstractions/src/IHealthCheck.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/HealthChecks/Abstractions/src/IHealthCheck.cs" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.HealthChecks.IHealthCheck", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/HealthChecks/Abstractions/src/IHealthCheck.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/HealthChecks/Abstractions/src/IHealthCheck.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.HealthChecks.IHealthCheckPublisher.PublishAsync(Microsoft.Extensions.Diagnostics.HealthChecks.HealthReport,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/HealthChecks/Abstractions/src/IHealthCheckPublisher.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/HealthChecks/Abstractions/src/IHealthCheckPublisher.cs" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.HealthChecks.IHealthCheckPublisher", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/HealthChecks/Abstractions/src/IHealthCheckPublisher.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/HealthChecks/Abstractions/src/IHealthCheckPublisher.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Diagnostics.HealthChecks.Common.json b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Diagnostics.HealthChecks.Common.json index 469a571fa00..3da2926320b 100644 --- a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Diagnostics.HealthChecks.Common.json +++ b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Diagnostics.HealthChecks.Common.json @@ -1,78 +1,77 @@ { "Assembly": "Microsoft.Extensions.Diagnostics.HealthChecks.Common", - "GUID": "5E48E924A04C4DAA861D32C114C6A39FFFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "A4F4D04695CE458D92C7700D60613829FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.CommonHealthChecksExtensions.AddApplicationLifecycleHealthCheck(Microsoft.Extensions.DependencyInjection.IHealthChecksBuilder,System.String[])", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.Common/CommonHealthChecksExtensions.ApplicationLifecycle.cs#L24C12-L25C105" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.Common/CommonHealthChecksExtensions.ApplicationLifecycle.cs#L24C12-L25C105" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.CommonHealthChecksExtensions.AddApplicationLifecycleHealthCheck(Microsoft.Extensions.DependencyInjection.IHealthChecksBuilder,System.Collections.Generic.IEnumerable{System.String})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.Common/CommonHealthChecksExtensions.ApplicationLifecycle.cs#L35C12-L36C105" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.Common/CommonHealthChecksExtensions.ApplicationLifecycle.cs#L35C12-L36C105" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.CommonHealthChecksExtensions.AddManualHealthCheck(Microsoft.Extensions.DependencyInjection.IHealthChecksBuilder,System.String[])", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.Common/CommonHealthChecksExtensions.Manual.cs#L22C12-L24C84" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.Common/CommonHealthChecksExtensions.Manual.cs#L22C12-L24C84" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.CommonHealthChecksExtensions.AddManualHealthCheck(Microsoft.Extensions.DependencyInjection.IHealthChecksBuilder,System.Collections.Generic.IEnumerable{System.String})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.Common/CommonHealthChecksExtensions.Manual.cs#L34C12-L36C84" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.Common/CommonHealthChecksExtensions.Manual.cs#L34C12-L36C84" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.CommonHealthChecksExtensions.ReportHealthy(Microsoft.Extensions.Diagnostics.HealthChecks.IManualHealthCheck)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.Common/CommonHealthChecksExtensions.Manual.cs#L44C12-L44C80" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.Common/CommonHealthChecksExtensions.Manual.cs#L44C12-L44C80" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.CommonHealthChecksExtensions.ReportUnhealthy(Microsoft.Extensions.Diagnostics.HealthChecks.IManualHealthCheck,System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.Common/CommonHealthChecksExtensions.Manual.cs#L53C12-L53C114" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.Common/CommonHealthChecksExtensions.Manual.cs#L53C12-L53C114" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.CommonHealthChecksExtensions.AddTelemetryHealthCheckPublisher(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.Common/CommonHealthChecksExtensions.TelemetryPublisher.cs#L21C12-L24C82" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.Common/CommonHealthChecksExtensions.TelemetryPublisher.cs#L21C12-L24C82" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.CommonHealthChecksExtensions.AddTelemetryHealthCheckPublisher(Microsoft.Extensions.DependencyInjection.IServiceCollection,Microsoft.Extensions.Configuration.IConfigurationSection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.Common/CommonHealthChecksExtensions.TelemetryPublisher.cs#L34C12-L38C82" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.Common/CommonHealthChecksExtensions.TelemetryPublisher.cs#L34C12-L38C82" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.CommonHealthChecksExtensions.AddTelemetryHealthCheckPublisher(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{Microsoft.Extensions.Diagnostics.HealthChecks.TelemetryHealthCheckPublisherOptions})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.Common/CommonHealthChecksExtensions.TelemetryPublisher.cs#L48C12-L52C82" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.Common/CommonHealthChecksExtensions.TelemetryPublisher.cs#L48C12-L52C82" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.CommonHealthChecksExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.Common/CommonHealthChecksExtensions.ApplicationLifecycle.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.Common/CommonHealthChecksExtensions.ApplicationLifecycle.cs" }, { "Members": [ { "DocsId": "P:Microsoft.Extensions.Diagnostics.HealthChecks.IManualHealthCheck.Result", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.Common/IManualHealthCheck.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.Common/IManualHealthCheck.cs" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.HealthChecks.IManualHealthCheck", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.Common/IManualHealthCheck.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.Common/IManualHealthCheck.cs" }, { "Members": [], "DocsId": "T:Microsoft.Extensions.Diagnostics.HealthChecks.IManualHealthCheck`1", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.Common/IManualHealthCheck.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.Common/IManualHealthCheck.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.HealthChecks.TelemetryHealthCheckPublisherOptions.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.Common/TelemetryHealthCheckPublisherOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.Common/TelemetryHealthCheckPublisherOptions.cs" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.HealthChecks.TelemetryHealthCheckPublisherOptions.LogOnlyUnhealthy", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.Common/TelemetryHealthCheckPublisherOptions.cs#L18C36-L18C40" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.Common/TelemetryHealthCheckPublisherOptions.cs#L18C36-L18C40" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.HealthChecks.TelemetryHealthCheckPublisherOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.Common/TelemetryHealthCheckPublisherOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.Common/TelemetryHealthCheckPublisherOptions.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore.json b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore.json index d7651b38001..cefc0cc4b57 100644 --- a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore.json +++ b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore.json @@ -1,17 +1,16 @@ { "Assembly": "Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore", - "GUID": "728B6581C57246F28EEB41E09A4A8038FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "2C812700A86943B5B0F40E019960BB0DFFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.EntityFrameworkCoreHealthChecksBuilderExtensions.AddDbContextCheck``1(Microsoft.Extensions.DependencyInjection.IHealthChecksBuilder,System.String,System.Nullable{Microsoft.Extensions.Diagnostics.HealthChecks.HealthStatus},System.Collections.Generic.IEnumerable{System.String},System.Func{``0,System.Threading.CancellationToken,System.Threading.Tasks.Task{System.Boolean}})", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Middleware/HealthChecks.EntityFrameworkCore/src/DependencyInjection/EntityFrameworkCoreHealthChecksBuilderExtensions.cs#L60C9-L72C122" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Middleware/HealthChecks.EntityFrameworkCore/src/DependencyInjection/EntityFrameworkCoreHealthChecksBuilderExtensions.cs#L16707566C0-L72C122" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.EntityFrameworkCoreHealthChecksBuilderExtensions", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Middleware/HealthChecks.EntityFrameworkCore/src/DependencyInjection/EntityFrameworkCoreHealthChecksBuilderExtensions.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Middleware/HealthChecks.EntityFrameworkCore/src/DependencyInjection/EntityFrameworkCoreHealthChecksBuilderExtensions.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization.json b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization.json index 3bb7bcdb8a6..95e86caca24 100644 --- a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization.json +++ b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization.json @@ -1,85 +1,84 @@ { "Assembly": "Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization", - "GUID": "290CA84406644FB49C3873F99D017F40FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "7869F4CF15E9484897634F7F6952D876FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ResourceUtilizationHealthCheckExtensions.AddResourceUtilizationHealthCheck(Microsoft.Extensions.DependencyInjection.IHealthChecksBuilder,System.String[])", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization/ResourceUtilizationHealthCheckExtensions.cs#L28C9-L32C94" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization/ResourceUtilizationHealthCheckExtensions.cs#L28C9-L32C94" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ResourceUtilizationHealthCheckExtensions.AddResourceUtilizationHealthCheck(Microsoft.Extensions.DependencyInjection.IHealthChecksBuilder,System.Collections.Generic.IEnumerable{System.String})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization/ResourceUtilizationHealthCheckExtensions.cs#L44C9-L48C94" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization/ResourceUtilizationHealthCheckExtensions.cs#L44C9-L48C94" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ResourceUtilizationHealthCheckExtensions.AddResourceUtilizationHealthCheck(Microsoft.Extensions.DependencyInjection.IHealthChecksBuilder,Microsoft.Extensions.Configuration.IConfigurationSection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization/ResourceUtilizationHealthCheckExtensions.cs#L62C9-L66C60" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization/ResourceUtilizationHealthCheckExtensions.cs#L62C9-L66C60" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ResourceUtilizationHealthCheckExtensions.AddResourceUtilizationHealthCheck(Microsoft.Extensions.DependencyInjection.IHealthChecksBuilder,Microsoft.Extensions.Configuration.IConfigurationSection,System.String[])", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization/ResourceUtilizationHealthCheckExtensions.cs#L82C9-L87C64" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization/ResourceUtilizationHealthCheckExtensions.cs#L82C9-L87C64" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ResourceUtilizationHealthCheckExtensions.AddResourceUtilizationHealthCheck(Microsoft.Extensions.DependencyInjection.IHealthChecksBuilder,Microsoft.Extensions.Configuration.IConfigurationSection,System.Collections.Generic.IEnumerable{System.String})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization/ResourceUtilizationHealthCheckExtensions.cs#L103C9-L108C64" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization/ResourceUtilizationHealthCheckExtensions.cs#L103C9-L108C64" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ResourceUtilizationHealthCheckExtensions.AddResourceUtilizationHealthCheck(Microsoft.Extensions.DependencyInjection.IHealthChecksBuilder,System.Action{Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilizationHealthCheckOptions})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization/ResourceUtilizationHealthCheckExtensions.cs#L122C9-L126C60" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization/ResourceUtilizationHealthCheckExtensions.cs#L122C9-L126C60" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ResourceUtilizationHealthCheckExtensions.AddResourceUtilizationHealthCheck(Microsoft.Extensions.DependencyInjection.IHealthChecksBuilder,System.Action{Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilizationHealthCheckOptions},System.String[])", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization/ResourceUtilizationHealthCheckExtensions.cs#L142C9-L147C64" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization/ResourceUtilizationHealthCheckExtensions.cs#L142C9-L147C64" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ResourceUtilizationHealthCheckExtensions.AddResourceUtilizationHealthCheck(Microsoft.Extensions.DependencyInjection.IHealthChecksBuilder,System.Action{Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilizationHealthCheckOptions},System.Collections.Generic.IEnumerable{System.String})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization/ResourceUtilizationHealthCheckExtensions.cs#L163C9-L168C64" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization/ResourceUtilizationHealthCheckExtensions.cs#L163C9-L168C64" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.ResourceUtilizationHealthCheckExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization/ResourceUtilizationHealthCheckExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization/ResourceUtilizationHealthCheckExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUsageThresholds.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization/ResourceUsageThresholds.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization/ResourceUsageThresholds.cs" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUsageThresholds.DegradedUtilizationPercentage", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization/ResourceUsageThresholds.cs#L22C52-L22C56" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization/ResourceUsageThresholds.cs#L22C52-L22C56" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUsageThresholds.UnhealthyUtilizationPercentage", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization/ResourceUsageThresholds.cs#L31C53-L31C57" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization/ResourceUsageThresholds.cs#L31C53-L31C57" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUsageThresholds", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization/ResourceUsageThresholds.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization/ResourceUsageThresholds.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilizationHealthCheckOptions.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization/ResourceUtilizationHealthCheckOptions.cs#L27C66-L46C73" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization/ResourceUtilizationHealthCheckOptions.cs#L27C66-L46C73" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilizationHealthCheckOptions.CpuThresholds", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization/ResourceUtilizationHealthCheckOptions.cs#L27C52-L27C56" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization/ResourceUtilizationHealthCheckOptions.cs#L27C52-L27C56" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilizationHealthCheckOptions.MemoryThresholds", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization/ResourceUtilizationHealthCheckOptions.cs#L37C55-L37C59" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization/ResourceUtilizationHealthCheckOptions.cs#L37C55-L37C59" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilizationHealthCheckOptions.SamplingWindow", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization/ResourceUtilizationHealthCheckOptions.cs#L46C38-L46C42" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization/ResourceUtilizationHealthCheckOptions.cs#L46C38-L46C42" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilizationHealthCheckOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization/ResourceUtilizationHealthCheckOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization/ResourceUtilizationHealthCheckOptions.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Diagnostics.HealthChecks.json b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Diagnostics.HealthChecks.json index 6a8b6519a34..c13dd5a8aaa 100644 --- a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Diagnostics.HealthChecks.json +++ b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Diagnostics.HealthChecks.json @@ -1,165 +1,164 @@ { "Assembly": "Microsoft.Extensions.Diagnostics.HealthChecks", - "GUID": "D85FE41042904CECAFFE5704693AAB27FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "3AB9DD59DD2A495E80E3EDF996815E58FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HealthChecksBuilderAddCheckExtensions.AddCheck(Microsoft.Extensions.DependencyInjection.IHealthChecksBuilder,System.String,Microsoft.Extensions.Diagnostics.HealthChecks.IHealthCheck,System.Nullable{Microsoft.Extensions.Diagnostics.HealthChecks.HealthStatus},System.Collections.Generic.IEnumerable{System.String})", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/HealthChecks/HealthChecks/src/DependencyInjection/HealthChecksBuilderAddCheckExtensions.cs#L37C9-L37C80" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/HealthChecks/HealthChecks/src/DependencyInjection/HealthChecksBuilderAddCheckExtensions.cs#L37C9-L37C80" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HealthChecksBuilderAddCheckExtensions.AddCheck(Microsoft.Extensions.DependencyInjection.IHealthChecksBuilder,System.String,Microsoft.Extensions.Diagnostics.HealthChecks.IHealthCheck,System.Nullable{Microsoft.Extensions.Diagnostics.HealthChecks.HealthStatus},System.Collections.Generic.IEnumerable{System.String},System.Nullable{System.TimeSpan})", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/HealthChecks/HealthChecks/src/DependencyInjection/HealthChecksBuilderAddCheckExtensions.cs#L62C9-L66C103" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/HealthChecks/HealthChecks/src/DependencyInjection/HealthChecksBuilderAddCheckExtensions.cs#L62C9-L66C103" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HealthChecksBuilderAddCheckExtensions.AddCheck``1(Microsoft.Extensions.DependencyInjection.IHealthChecksBuilder,System.String,System.Nullable{Microsoft.Extensions.Diagnostics.HealthChecks.HealthStatus},System.Collections.Generic.IEnumerable{System.String})", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/HealthChecks/HealthChecks/src/DependencyInjection/HealthChecksBuilderAddCheckExtensions.cs#L94C9-L94C73" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/HealthChecks/HealthChecks/src/DependencyInjection/HealthChecksBuilderAddCheckExtensions.cs#L94C9-L94C73" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HealthChecksBuilderAddCheckExtensions.AddCheck``1(Microsoft.Extensions.DependencyInjection.IHealthChecksBuilder,System.String,System.Nullable{Microsoft.Extensions.Diagnostics.HealthChecks.HealthStatus},System.Collections.Generic.IEnumerable{System.String},System.Nullable{System.TimeSpan})", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/HealthChecks/HealthChecks/src/DependencyInjection/HealthChecksBuilderAddCheckExtensions.cs#L123C9-L126C121" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/HealthChecks/HealthChecks/src/DependencyInjection/HealthChecksBuilderAddCheckExtensions.cs#L123C9-L126C121" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HealthChecksBuilderAddCheckExtensions.AddTypeActivatedCheck``1(Microsoft.Extensions.DependencyInjection.IHealthChecksBuilder,System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/HealthChecks/HealthChecks/src/DependencyInjection/HealthChecksBuilderAddCheckExtensions.cs#L153C9-L156C95" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/HealthChecks/HealthChecks/src/DependencyInjection/HealthChecksBuilderAddCheckExtensions.cs#L153C9-L156C95" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HealthChecksBuilderAddCheckExtensions.AddTypeActivatedCheck``1(Microsoft.Extensions.DependencyInjection.IHealthChecksBuilder,System.String,System.Nullable{Microsoft.Extensions.Diagnostics.HealthChecks.HealthStatus},System.Object[])", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/HealthChecks/HealthChecks/src/DependencyInjection/HealthChecksBuilderAddCheckExtensions.cs#L182C9-L185C89" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/HealthChecks/HealthChecks/src/DependencyInjection/HealthChecksBuilderAddCheckExtensions.cs#L182C9-L185C89" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HealthChecksBuilderAddCheckExtensions.AddTypeActivatedCheck``1(Microsoft.Extensions.DependencyInjection.IHealthChecksBuilder,System.String,System.Nullable{Microsoft.Extensions.Diagnostics.HealthChecks.HealthStatus},System.Collections.Generic.IEnumerable{System.String},System.Object[])", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/HealthChecks/HealthChecks/src/DependencyInjection/HealthChecksBuilderAddCheckExtensions.cs#L213C9-L216C100" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/HealthChecks/HealthChecks/src/DependencyInjection/HealthChecksBuilderAddCheckExtensions.cs#L16707566C0-L216C100" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HealthChecksBuilderAddCheckExtensions.AddTypeActivatedCheck``1(Microsoft.Extensions.DependencyInjection.IHealthChecksBuilder,System.String,System.Nullable{Microsoft.Extensions.Diagnostics.HealthChecks.HealthStatus},System.Collections.Generic.IEnumerable{System.String},System.TimeSpan,System.Object[])", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/HealthChecks/HealthChecks/src/DependencyInjection/HealthChecksBuilderAddCheckExtensions.cs#L251C9-L254C109" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/HealthChecks/HealthChecks/src/DependencyInjection/HealthChecksBuilderAddCheckExtensions.cs#L16707566C0-L254C109" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.HealthChecksBuilderAddCheckExtensions", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/HealthChecks/HealthChecks/src/DependencyInjection/HealthChecksBuilderAddCheckExtensions.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/HealthChecks/HealthChecks/src/DependencyInjection/HealthChecksBuilderAddCheckExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HealthChecksBuilderDelegateExtensions.AddCheck(Microsoft.Extensions.DependencyInjection.IHealthChecksBuilder,System.String,System.Func{Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckResult},System.Collections.Generic.IEnumerable{System.String})", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/HealthChecks/HealthChecks/src/DependencyInjection/HealthChecksBuilderDelegateExtensions.cs#L34C9-L34C62" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/HealthChecks/HealthChecks/src/DependencyInjection/HealthChecksBuilderDelegateExtensions.cs#L34C9-L34C62" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HealthChecksBuilderDelegateExtensions.AddCheck(Microsoft.Extensions.DependencyInjection.IHealthChecksBuilder,System.String,System.Func{Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckResult},System.Collections.Generic.IEnumerable{System.String},System.Nullable{System.TimeSpan})", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/HealthChecks/HealthChecks/src/DependencyInjection/HealthChecksBuilderDelegateExtensions.cs#L54C9-L59C109" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/HealthChecks/HealthChecks/src/DependencyInjection/HealthChecksBuilderDelegateExtensions.cs#L16707566C0-L59C109" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HealthChecksBuilderDelegateExtensions.AddCheck(Microsoft.Extensions.DependencyInjection.IHealthChecksBuilder,System.String,System.Func{System.Threading.CancellationToken,Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckResult},System.Collections.Generic.IEnumerable{System.String})", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/HealthChecks/HealthChecks/src/DependencyInjection/HealthChecksBuilderDelegateExtensions.cs#L77C9-L77C62" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/HealthChecks/HealthChecks/src/DependencyInjection/HealthChecksBuilderDelegateExtensions.cs#L77C9-L77C62" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HealthChecksBuilderDelegateExtensions.AddCheck(Microsoft.Extensions.DependencyInjection.IHealthChecksBuilder,System.String,System.Func{System.Threading.CancellationToken,Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckResult},System.Collections.Generic.IEnumerable{System.String},System.Nullable{System.TimeSpan})", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/HealthChecks/HealthChecks/src/DependencyInjection/HealthChecksBuilderDelegateExtensions.cs#L97C9-L102C109" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/HealthChecks/HealthChecks/src/DependencyInjection/HealthChecksBuilderDelegateExtensions.cs#L16707566C0-L102C109" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HealthChecksBuilderDelegateExtensions.AddAsyncCheck(Microsoft.Extensions.DependencyInjection.IHealthChecksBuilder,System.String,System.Func{System.Threading.Tasks.Task{Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckResult}},System.Collections.Generic.IEnumerable{System.String})", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/HealthChecks/HealthChecks/src/DependencyInjection/HealthChecksBuilderDelegateExtensions.cs#L120C9-L120C67" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/HealthChecks/HealthChecks/src/DependencyInjection/HealthChecksBuilderDelegateExtensions.cs#L120C9-L120C67" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HealthChecksBuilderDelegateExtensions.AddAsyncCheck(Microsoft.Extensions.DependencyInjection.IHealthChecksBuilder,System.String,System.Func{System.Threading.Tasks.Task{Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckResult}},System.Collections.Generic.IEnumerable{System.String},System.Nullable{System.TimeSpan})", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/HealthChecks/HealthChecks/src/DependencyInjection/HealthChecksBuilderDelegateExtensions.cs#L140C9-L145C109" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/HealthChecks/HealthChecks/src/DependencyInjection/HealthChecksBuilderDelegateExtensions.cs#L16707566C0-L145C109" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HealthChecksBuilderDelegateExtensions.AddAsyncCheck(Microsoft.Extensions.DependencyInjection.IHealthChecksBuilder,System.String,System.Func{System.Threading.CancellationToken,System.Threading.Tasks.Task{Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckResult}},System.Collections.Generic.IEnumerable{System.String})", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/HealthChecks/HealthChecks/src/DependencyInjection/HealthChecksBuilderDelegateExtensions.cs#L163C9-L163C67" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/HealthChecks/HealthChecks/src/DependencyInjection/HealthChecksBuilderDelegateExtensions.cs#L163C9-L163C67" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HealthChecksBuilderDelegateExtensions.AddAsyncCheck(Microsoft.Extensions.DependencyInjection.IHealthChecksBuilder,System.String,System.Func{System.Threading.CancellationToken,System.Threading.Tasks.Task{Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckResult}},System.Collections.Generic.IEnumerable{System.String},System.Nullable{System.TimeSpan})", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/HealthChecks/HealthChecks/src/DependencyInjection/HealthChecksBuilderDelegateExtensions.cs#L183C9-L188C109" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/HealthChecks/HealthChecks/src/DependencyInjection/HealthChecksBuilderDelegateExtensions.cs#L16707566C0-L188C109" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.HealthChecksBuilderDelegateExtensions", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/HealthChecks/HealthChecks/src/DependencyInjection/HealthChecksBuilderDelegateExtensions.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/HealthChecks/HealthChecks/src/DependencyInjection/HealthChecksBuilderDelegateExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HealthCheckServiceCollectionExtensions.AddHealthChecks(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/HealthChecks/HealthChecks/src/DependencyInjection/HealthCheckServiceCollectionExtensions.cs#L28C9-L30C50" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/HealthChecks/HealthChecks/src/DependencyInjection/HealthCheckServiceCollectionExtensions.cs#L28C9-L30C50" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.HealthCheckServiceCollectionExtensions", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/HealthChecks/HealthChecks/src/DependencyInjection/HealthCheckServiceCollectionExtensions.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/HealthChecks/HealthChecks/src/DependencyInjection/HealthCheckServiceCollectionExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.IHealthChecksBuilder.Add(Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckRegistration)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/HealthChecks/HealthChecks/src/DependencyInjection/IHealthChecksBuilder.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/HealthChecks/HealthChecks/src/DependencyInjection/IHealthChecksBuilder.cs" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.IHealthChecksBuilder.Services", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/HealthChecks/HealthChecks/src/DependencyInjection/IHealthChecksBuilder.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/HealthChecks/HealthChecks/src/DependencyInjection/IHealthChecksBuilder.cs" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.IHealthChecksBuilder", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/HealthChecks/HealthChecks/src/DependencyInjection/IHealthChecksBuilder.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/HealthChecks/HealthChecks/src/DependencyInjection/IHealthChecksBuilder.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckPublisherOptions.#ctor", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/HealthChecks/HealthChecks/src/HealthCheckPublisherOptions.cs#L85C45-L23C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/HealthChecks/HealthChecks/src/HealthCheckPublisherOptions.cs#L85C45-L23C6" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckPublisherOptions.Delay", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/HealthChecks/HealthChecks/src/HealthCheckPublisherOptions.cs#L32C16-L32C22" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/HealthChecks/HealthChecks/src/HealthCheckPublisherOptions.cs#L32C16-L32C22" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckPublisherOptions.Period", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/HealthChecks/HealthChecks/src/HealthCheckPublisherOptions.cs#L53C16-L53C23" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/HealthChecks/HealthChecks/src/HealthCheckPublisherOptions.cs#L53C16-L53C23" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckPublisherOptions.Predicate", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/HealthChecks/HealthChecks/src/HealthCheckPublisherOptions.cs#L78C61-L78C65" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/HealthChecks/HealthChecks/src/HealthCheckPublisherOptions.cs#L78C61-L78C65" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckPublisherOptions.Timeout", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/HealthChecks/HealthChecks/src/HealthCheckPublisherOptions.cs#L85C31-L85C35" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/HealthChecks/HealthChecks/src/HealthCheckPublisherOptions.cs#L85C31-L85C35" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckPublisherOptions", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/HealthChecks/HealthChecks/src/HealthCheckPublisherOptions.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/HealthChecks/HealthChecks/src/HealthCheckPublisherOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckService.CheckHealthAsync(System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/HealthChecks/HealthChecks/src/HealthCheckService.cs#L45C9-L45C69" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/HealthChecks/HealthChecks/src/HealthCheckService.cs#L45C9-L45C69" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckService.CheckHealthAsync(System.Func{Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckRegistration,System.Boolean},System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/HealthChecks/HealthChecks/src/HealthCheckService.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/HealthChecks/HealthChecks/src/HealthCheckService.cs" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckService.#ctor", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/HealthChecks/HealthChecks/src/HealthCheckService.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/HealthChecks/HealthChecks/src/HealthCheckService.cs" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckService", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/HealthChecks/HealthChecks/src/HealthCheckService.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/HealthChecks/HealthChecks/src/HealthCheckService.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckServiceOptions.#ctor", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/HealthChecks/HealthChecks/src/HealthCheckServiceOptions.cs#L16C74-L16C109" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/HealthChecks/HealthChecks/src/HealthCheckServiceOptions.cs#L16C74-L16C109" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckServiceOptions.Registrations", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/HealthChecks/HealthChecks/src/HealthCheckServiceOptions.cs#L16C65-L16C69" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/HealthChecks/HealthChecks/src/HealthCheckServiceOptions.cs#L16C65-L16C69" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckServiceOptions", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/HealthChecks/HealthChecks/src/HealthCheckServiceOptions.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/HealthChecks/HealthChecks/src/HealthCheckServiceOptions.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Diagnostics.Probes.json b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Diagnostics.Probes.json index 548dd5bfb92..d23087bd71e 100644 --- a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Diagnostics.Probes.json +++ b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Diagnostics.Probes.json @@ -1,121 +1,120 @@ { "Assembly": "Microsoft.Extensions.Diagnostics.Probes", - "GUID": "91A5AF980C8D407B963825D2DCDF0224FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "76AAE75E134B4D4F86684EEE950BFD02FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Probes.KubernetesProbesOptions.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/KubernetesProbesOptions.cs#L21C67-L46C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/KubernetesProbesOptions.cs#L21C67-L46C6" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Probes.KubernetesProbesOptions.LivenessProbe", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/KubernetesProbesOptions.cs#L21C53-L21C57" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/KubernetesProbesOptions.cs#L21C53-L21C57" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Probes.KubernetesProbesOptions.StartupProbe", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/KubernetesProbesOptions.cs#L32C52-L32C56" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/KubernetesProbesOptions.cs#L32C52-L32C56" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Probes.KubernetesProbesOptions.ReadinessProbe", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/KubernetesProbesOptions.cs#L43C54-L43C58" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/KubernetesProbesOptions.cs#L43C54-L43C58" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Probes.KubernetesProbesOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/KubernetesProbesOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/KubernetesProbesOptions.cs" }, { "Members": [ { "DocsId": "F:Microsoft.Extensions.Diagnostics.Probes.ProbeTags.Liveness", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/ProbeTags.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/ProbeTags.cs" }, { "DocsId": "F:Microsoft.Extensions.Diagnostics.Probes.ProbeTags.Startup", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/ProbeTags.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/ProbeTags.cs" }, { "DocsId": "F:Microsoft.Extensions.Diagnostics.Probes.ProbeTags.Readiness", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/ProbeTags.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/ProbeTags.cs" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Probes.ProbeTags", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/ProbeTags.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/ProbeTags.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Probes.TcpEndpointProbesOptions.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/TcpEndpointProbesOptions.cs#L28C40-L46C84" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/TcpEndpointProbesOptions.cs#L28C40-L46C84" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Probes.TcpEndpointProbesOptions.TcpPort", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/TcpEndpointProbesOptions.cs#L28C26-L28C30" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/TcpEndpointProbesOptions.cs#L28C26-L28C30" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Probes.TcpEndpointProbesOptions.MaxPendingConnections", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/TcpEndpointProbesOptions.cs#L37C40-L37C44" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/TcpEndpointProbesOptions.cs#L37C40-L37C44" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Probes.TcpEndpointProbesOptions.HealthAssessmentPeriod", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/TcpEndpointProbesOptions.cs#L46C46-L46C50" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/TcpEndpointProbesOptions.cs#L46C46-L46C50" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Probes.TcpEndpointProbesOptions.FilterChecks", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/TcpEndpointProbesOptions.cs#L54C64-L54C68" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/TcpEndpointProbesOptions.cs#L54C64-L54C68" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Probes.TcpEndpointProbesOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/TcpEndpointProbesOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/TcpEndpointProbesOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.KubernetesProbesExtensions.AddKubernetesProbes(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/KubernetesProbesExtensions.cs#L23C12-L23C52" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/KubernetesProbesExtensions.cs#L23C12-L23C52" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.KubernetesProbesExtensions.AddKubernetesProbes(Microsoft.Extensions.DependencyInjection.IServiceCollection,Microsoft.Extensions.Configuration.IConfigurationSection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/KubernetesProbesExtensions.cs#L33C9-L36C67" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/KubernetesProbesExtensions.cs#L16707566C0-L36C67" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.KubernetesProbesExtensions.AddKubernetesProbes(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{Microsoft.Extensions.Diagnostics.Probes.KubernetesProbesOptions})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/KubernetesProbesExtensions.cs#L47C9-L103C16" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/KubernetesProbesExtensions.cs#L16707566C0-L103C16" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.KubernetesProbesExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/KubernetesProbesExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/KubernetesProbesExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.TcpEndpointProbesExtensions.AddTcpEndpointProbe(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/TcpEndpointProbesExtensions.cs#L28C9-L30C95" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/TcpEndpointProbesExtensions.cs#L28C9-L30C95" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.TcpEndpointProbesExtensions.AddTcpEndpointProbe(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/TcpEndpointProbesExtensions.cs#L42C9-L55C25" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/TcpEndpointProbesExtensions.cs#L16707566C0-L55C25" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.TcpEndpointProbesExtensions.AddTcpEndpointProbe(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{Microsoft.Extensions.Diagnostics.Probes.TcpEndpointProbesOptions})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/TcpEndpointProbesExtensions.cs#L69C9-L74C47" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/TcpEndpointProbesExtensions.cs#L69C9-L74C47" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.TcpEndpointProbesExtensions.AddTcpEndpointProbe(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.String,System.Action{Microsoft.Extensions.Diagnostics.Probes.TcpEndpointProbesOptions})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/TcpEndpointProbesExtensions.cs#L90C9-L95C51" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/TcpEndpointProbesExtensions.cs#L90C9-L95C51" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.TcpEndpointProbesExtensions.AddTcpEndpointProbe(Microsoft.Extensions.DependencyInjection.IServiceCollection,Microsoft.Extensions.Configuration.IConfigurationSection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/TcpEndpointProbesExtensions.cs#L109C9-L114C47" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/TcpEndpointProbesExtensions.cs#L109C9-L114C47" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.TcpEndpointProbesExtensions.AddTcpEndpointProbe(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.String,Microsoft.Extensions.Configuration.IConfigurationSection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/TcpEndpointProbesExtensions.cs#L130C9-L135C51" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/TcpEndpointProbesExtensions.cs#L130C9-L135C51" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.TcpEndpointProbesExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/TcpEndpointProbesExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/TcpEndpointProbesExtensions.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Diagnostics.ResourceMonitoring.json b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Diagnostics.ResourceMonitoring.json index db1d342fc37..359e552d057 100644 --- a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Diagnostics.ResourceMonitoring.json +++ b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Diagnostics.ResourceMonitoring.json @@ -1,155 +1,154 @@ { "Assembly": "Microsoft.Extensions.Diagnostics.ResourceMonitoring", - "GUID": "7E9994BBEFAF4A5A80647EBA751D9D45FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "D62A820DBB3541CDBF925EECB62F9FA8FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ResourceMonitoringServiceCollectionExtensions.AddResourceMonitoring(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/ResourceMonitoringServiceCollectionExtensions.cs#L32C9-L34C65" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/ResourceMonitoringServiceCollectionExtensions.cs#L32C9-L34C65" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ResourceMonitoringServiceCollectionExtensions.AddResourceMonitoring(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{Microsoft.Extensions.Diagnostics.ResourceMonitoring.IResourceMonitorBuilder})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/ResourceMonitoringServiceCollectionExtensions.cs#L48C9-L51C66" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/ResourceMonitoringServiceCollectionExtensions.cs#L48C9-L51C66" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.ResourceMonitoringServiceCollectionExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/ResourceMonitoringServiceCollectionExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/ResourceMonitoringServiceCollectionExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.ResourceMonitoring.IResourceMonitor.GetUtilization(System.TimeSpan)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/IResourceMonitor.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/IResourceMonitor.cs" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.ResourceMonitoring.IResourceMonitor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/IResourceMonitor.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/IResourceMonitor.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.ResourceMonitoring.IResourceMonitorBuilder.AddPublisher``1", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/IResourceMonitorBuilder.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/IResourceMonitorBuilder.cs" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.ResourceMonitoring.IResourceMonitorBuilder.Services", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/IResourceMonitorBuilder.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/IResourceMonitorBuilder.cs" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.ResourceMonitoring.IResourceMonitorBuilder", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/IResourceMonitorBuilder.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/IResourceMonitorBuilder.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.ResourceMonitoring.IResourceUtilizationPublisher.PublishAsync(Microsoft.Extensions.Diagnostics.ResourceMonitoring.ResourceUtilization,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/IResourceUtilizationPublisher.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/IResourceUtilizationPublisher.cs" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.ResourceMonitoring.IResourceUtilizationPublisher", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/IResourceUtilizationPublisher.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/IResourceUtilizationPublisher.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.ResourceMonitoring.ResourceMonitoringBuilderExtensions.ConfigureMonitor(Microsoft.Extensions.Diagnostics.ResourceMonitoring.IResourceMonitorBuilder,System.Action{Microsoft.Extensions.Diagnostics.ResourceMonitoring.ResourceMonitoringOptions})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/ResourceMonitoringBuilderExtensions.cs#L28C9-L31C104" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/ResourceMonitoringBuilderExtensions.cs#L16707566C0-L31C104" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.ResourceMonitoring.ResourceMonitoringBuilderExtensions.ConfigureMonitor(Microsoft.Extensions.Diagnostics.ResourceMonitoring.IResourceMonitorBuilder,Microsoft.Extensions.Configuration.IConfigurationSection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/ResourceMonitoringBuilderExtensions.cs#L45C9-L48C97" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/ResourceMonitoringBuilderExtensions.cs#L16707566C0-L48C97" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.ResourceMonitoring.ResourceMonitoringBuilderExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/ResourceMonitoringBuilderExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/ResourceMonitoringBuilderExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.ResourceMonitoring.ResourceMonitoringOptions.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/ResourceMonitoringOptions.cs#L32C54-L19C80" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/ResourceMonitoringOptions.cs#L32C54-L19C80" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.ResourceMonitoring.ResourceMonitoringOptions.CollectionWindow", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/ResourceMonitoringOptions.cs#L32C40-L32C44" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/ResourceMonitoringOptions.cs#L32C40-L32C44" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.ResourceMonitoring.ResourceMonitoringOptions.SamplingInterval", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/ResourceMonitoringOptions.cs#L44C40-L44C44" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/ResourceMonitoringOptions.cs#L44C40-L44C44" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.ResourceMonitoring.ResourceMonitoringOptions.PublishingWindow", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/ResourceMonitoringOptions.cs#L56C40-L56C44" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/ResourceMonitoringOptions.cs#L56C40-L56C44" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.ResourceMonitoring.ResourceMonitoringOptions.CpuConsumptionRefreshInterval", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/ResourceMonitoringOptions.Linux.cs#L26C53-L26C57" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/ResourceMonitoringOptions.Linux.cs#L26C53-L26C57" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.ResourceMonitoring.ResourceMonitoringOptions.MemoryConsumptionRefreshInterval", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/ResourceMonitoringOptions.Linux.cs#L39C56-L39C60" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/ResourceMonitoringOptions.Linux.cs#L39C56-L39C60" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.ResourceMonitoring.ResourceMonitoringOptions.SourceIpAddresses", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/ResourceMonitoringOptions.Windows.cs#L19C45-L19C49" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/ResourceMonitoringOptions.Windows.cs#L19C45-L19C49" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.ResourceMonitoring.ResourceMonitoringOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/ResourceMonitoringOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/ResourceMonitoringOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.ResourceMonitoring.ResourceUtilization.#ctor(System.Double,System.UInt64,Microsoft.Extensions.Diagnostics.ResourceMonitoring.SystemResources)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/ResourceUtilization.cs#L44C43-L58C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/ResourceUtilization.cs#L44C43-L58C6" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.ResourceMonitoring.ResourceUtilization.CpuUsedPercentage", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/ResourceUtilization.cs#L24C39-L24C43" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/ResourceUtilization.cs#L24C39-L24C43" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.ResourceMonitoring.ResourceUtilization.MemoryUsedPercentage", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/ResourceUtilization.cs#L32C42-L32C46" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/ResourceUtilization.cs#L32C42-L32C46" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.ResourceMonitoring.ResourceUtilization.MemoryUsedInBytes", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/ResourceUtilization.cs#L37C38-L37C42" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/ResourceUtilization.cs#L37C38-L37C42" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.ResourceMonitoring.ResourceUtilization.SystemResources", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/ResourceUtilization.cs#L42C46-L42C50" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/ResourceUtilization.cs#L42C46-L42C50" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.ResourceMonitoring.ResourceUtilization", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/ResourceUtilization.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/ResourceUtilization.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.ResourceMonitoring.SystemResources.#ctor(System.Double,System.Double,System.UInt64,System.UInt64)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/SystemResources.cs#L54C9-L58C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/SystemResources.cs#L57C9-L61C6" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.ResourceMonitoring.SystemResources.GuaranteedCpuUnits", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/SystemResources.cs#L23C40-L23C44" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/SystemResources.cs#L26C40-L26C44" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.ResourceMonitoring.SystemResources.MaximumCpuUnits", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/SystemResources.cs#L33C37-L33C41" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/SystemResources.cs#L36C37-L36C41" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.ResourceMonitoring.SystemResources.GuaranteedMemoryInBytes", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/SystemResources.cs#L38C44-L38C48" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/SystemResources.cs#L41C44-L41C48" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.ResourceMonitoring.SystemResources.MaximumMemoryInBytes", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/SystemResources.cs#L43C41-L43C45" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/SystemResources.cs#L46C41-L46C45" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.ResourceMonitoring.SystemResources", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/SystemResources.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/SystemResources.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Diagnostics.Testing.json b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Diagnostics.Testing.json index 18b02de9a8f..9993a88ba80 100644 --- a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Diagnostics.Testing.json +++ b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Diagnostics.Testing.json @@ -1,387 +1,386 @@ { "Assembly": "Microsoft.Extensions.Diagnostics.Testing", - "GUID": "C7DA38943D924C6295EA4E9EC01BB98DFFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "214C0ACD6B60469AB9FB33EB683C802BFFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:System.FakeLoggerServiceProviderExtensions.GetFakeLogCollector(System.IServiceProvider)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLoggerServiceProviderExtensions.cs#L21C12-L21C126" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLoggerServiceProviderExtensions.cs#L21C12-L21C126" } ], "DocsId": "T:System.FakeLoggerServiceProviderExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLoggerServiceProviderExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLoggerServiceProviderExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.Testing.CollectedMeasurement`1.ContainsTags(System.Collections.Generic.KeyValuePair{System.String,System.Object}[])", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/CollectedMeasurement.cs#L61C29-L74C21" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/CollectedMeasurement.cs#L61C29-L74C21" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.Testing.CollectedMeasurement`1.ContainsTags(System.String[])", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/CollectedMeasurement.cs#L84C29-L92C21" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/CollectedMeasurement.cs#L84C29-L92C21" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.Testing.CollectedMeasurement`1.MatchesTags(System.Collections.Generic.KeyValuePair{System.String,System.Object}[])", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/CollectedMeasurement.cs#L100C77-L100C126" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/CollectedMeasurement.cs#L100C77-L100C126" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.Testing.CollectedMeasurement`1.MatchesTags(System.String[])", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/CollectedMeasurement.cs#L107C54-L107C117" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/CollectedMeasurement.cs#L107C54-L107C117" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.Testing.CollectedMeasurement`1.Value", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/CollectedMeasurement.cs#L42C22-L42C26" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/CollectedMeasurement.cs#L42C22-L42C26" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.Testing.CollectedMeasurement`1.Timestamp", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/CollectedMeasurement.cs#L47C39-L47C43" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/CollectedMeasurement.cs#L47C39-L47C43" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.Testing.CollectedMeasurement`1.Tags", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/CollectedMeasurement.cs#L52C56-L52C60" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/CollectedMeasurement.cs#L52C56-L52C60" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Metrics.Testing.CollectedMeasurement`1", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/CollectedMeasurement.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/CollectedMeasurement.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.Testing.MeasurementExtensions.ContainsTags``1(System.Collections.Generic.IEnumerable{Microsoft.Extensions.Diagnostics.Metrics.Testing.CollectedMeasurement{``0}},System.Collections.Generic.KeyValuePair{System.String,System.Object}[])", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/MeasurementExtensions.cs#L24C12-L24C57" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/MeasurementExtensions.cs#L16707566C0-L24C57" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.Testing.MeasurementExtensions.ContainsTags``1(System.Collections.Generic.IEnumerable{Microsoft.Extensions.Diagnostics.Metrics.Testing.CollectedMeasurement{``0}},System.String[])", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/MeasurementExtensions.cs#L35C12-L35C57" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/MeasurementExtensions.cs#L16707566C0-L35C57" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.Testing.MeasurementExtensions.MatchesTags``1(System.Collections.Generic.IEnumerable{Microsoft.Extensions.Diagnostics.Metrics.Testing.CollectedMeasurement{``0}},System.Collections.Generic.KeyValuePair{System.String,System.Object}[])", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/MeasurementExtensions.cs#L46C12-L46C56" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/MeasurementExtensions.cs#L16707566C0-L46C56" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.Testing.MeasurementExtensions.MatchesTags``1(System.Collections.Generic.IEnumerable{Microsoft.Extensions.Diagnostics.Metrics.Testing.CollectedMeasurement{``0}},System.String[])", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/MeasurementExtensions.cs#L57C12-L57C56" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/MeasurementExtensions.cs#L16707566C0-L57C56" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.Testing.MeasurementExtensions.EvaluateAsCounter``1(System.Collections.Generic.IEnumerable{Microsoft.Extensions.Diagnostics.Metrics.Testing.CollectedMeasurement{``0}})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/MeasurementExtensions.cs#L69C9-L77C91" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/MeasurementExtensions.cs#L69C9-L16707566C0" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Metrics.Testing.MeasurementExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/MeasurementExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/MeasurementExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.Testing.MetricCollector`1.#ctor(System.Diagnostics.Metrics.Instrument{`0},System.TimeProvider)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/MetricCollector.cs#L49C11-L55C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/MetricCollector.cs#L49C11-L55C6" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.Testing.MetricCollector`1.#ctor(System.Diagnostics.Metrics.ObservableInstrument{`0},System.TimeProvider)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/MetricCollector.cs#L63C11-L69C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/MetricCollector.cs#L63C11-L69C6" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.Testing.MetricCollector`1.#ctor(System.Object,System.String,System.String,System.TimeProvider)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/MetricCollector.cs#L85C11-L91C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/MetricCollector.cs#L16707566C0-L91C6" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.Testing.MetricCollector`1.#ctor(System.Diagnostics.Metrics.Meter,System.String,System.TimeProvider)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/MetricCollector.cs#L100C11-L106C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/MetricCollector.cs#L16707566C0-L106C6" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.Testing.MetricCollector`1.Dispose", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/MetricCollector.cs#L124C9-L145C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/MetricCollector.cs#L124C9-L145C6" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.Testing.MetricCollector`1.Clear", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/MetricCollector.cs#L160C9-L165C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/MetricCollector.cs#L160C9-L165C6" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.Testing.MetricCollector`1.GetMeasurementSnapshot(System.Boolean)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/MetricCollector.cs#L174C9-L186C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/MetricCollector.cs#L174C9-L186C6" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.Testing.MetricCollector`1.WaitForMeasurementsAsync(System.Int32,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/MetricCollector.cs#L211C9-L242C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/MetricCollector.cs#L16707566C0-L242C6" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.Testing.MetricCollector`1.WaitForMeasurementsAsync(System.Int32,System.TimeSpan)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/MetricCollector.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/MetricCollector.cs" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.Testing.MetricCollector`1.RecordObservableInstruments", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/MetricCollector.cs#L266C9-L268C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/MetricCollector.cs#L266C9-L268C6" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.Testing.MetricCollector`1.Instrument", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/MetricCollector.cs#L153C38-L153C49" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/MetricCollector.cs#L153C38-L153C49" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.Testing.MetricCollector`1.LastMeasurement", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/MetricCollector.cs#L195C13-L200C10" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/MetricCollector.cs#L195C13-L200C10" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Metrics.Testing.MetricCollector`1", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/MetricCollector.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/MetricCollector.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.FakeLoggerServiceCollectionExtensions.AddFakeLogging(Microsoft.Extensions.DependencyInjection.IServiceCollection,Microsoft.Extensions.Configuration.IConfigurationSection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLoggerServiceCollectionExtensions.cs#L23C12-L23C63" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLoggerServiceCollectionExtensions.cs#L16707566C0-L23C63" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.FakeLoggerServiceCollectionExtensions.AddFakeLogging(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{Microsoft.Extensions.Logging.Testing.FakeLogCollectorOptions})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLoggerServiceCollectionExtensions.cs#L32C12-L32C65" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLoggerServiceCollectionExtensions.cs#L16707566C0-L32C65" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.FakeLoggerServiceCollectionExtensions.AddFakeLogging(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLoggerServiceCollectionExtensions.cs#L40C12-L40C68" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLoggerServiceCollectionExtensions.cs#L40C12-L40C68" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.FakeLoggerServiceCollectionExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLoggerServiceCollectionExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLoggerServiceCollectionExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.FakeLoggerBuilderExtensions.AddFakeLogging(Microsoft.Extensions.Logging.ILoggingBuilder,Microsoft.Extensions.Configuration.IConfigurationSection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLoggerBuilderExtensions.cs#L27C9-L34C24" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLoggerBuilderExtensions.cs#L27C9-L34C24" }, { "DocsId": "M:Microsoft.Extensions.Logging.FakeLoggerBuilderExtensions.AddFakeLogging(Microsoft.Extensions.Logging.ILoggingBuilder,System.Action{Microsoft.Extensions.Logging.Testing.FakeLogCollectorOptions})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLoggerBuilderExtensions.cs#L45C9-L52C24" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLoggerBuilderExtensions.cs#L45C9-L52C24" }, { "DocsId": "M:Microsoft.Extensions.Logging.FakeLoggerBuilderExtensions.AddFakeLogging(Microsoft.Extensions.Logging.ILoggingBuilder)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLoggerBuilderExtensions.cs#L61C12-L61C44" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLoggerBuilderExtensions.cs#L61C12-L61C44" } ], "DocsId": "T:Microsoft.Extensions.Logging.FakeLoggerBuilderExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLoggerBuilderExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLoggerBuilderExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.Testing.FakeLogCollector.#ctor(Microsoft.Extensions.Options.IOptions{Microsoft.Extensions.Logging.Testing.FakeLogCollectorOptions})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogCollector.cs#L19C5-L29C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogCollector.cs#L19C5-L29C6" }, { "DocsId": "M:Microsoft.Extensions.Logging.Testing.FakeLogCollector.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogCollector.cs#L19C5-L37C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogCollector.cs#L19C5-L37C6" }, { "DocsId": "M:Microsoft.Extensions.Logging.Testing.FakeLogCollector.Create(Microsoft.Extensions.Logging.Testing.FakeLogCollectorOptions)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogCollector.cs#L46C9-L46C84" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogCollector.cs#L46C9-L46C84" }, { "DocsId": "M:Microsoft.Extensions.Logging.Testing.FakeLogCollector.Clear", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogCollector.cs#L54C9-L58C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogCollector.cs#L54C9-L58C6" }, { "DocsId": "M:Microsoft.Extensions.Logging.Testing.FakeLogCollector.GetSnapshot(System.Boolean)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogCollector.cs#L69C9-L79C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogCollector.cs#L69C9-L79C6" }, { "DocsId": "P:Microsoft.Extensions.Logging.Testing.FakeLogCollector.LatestRecord", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogCollector.cs#L92C13-L101C10" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogCollector.cs#L92C13-L101C10" }, { "DocsId": "P:Microsoft.Extensions.Logging.Testing.FakeLogCollector.Count", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogCollector.cs#L107C25-L107C39" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogCollector.cs#L107C25-L107C39" } ], "DocsId": "T:Microsoft.Extensions.Logging.Testing.FakeLogCollector", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogCollector.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogCollector.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.Testing.FakeLogCollectorOptions.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogCollectorOptions.cs#L25C60-L64C95" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogCollectorOptions.cs#L25C60-L64C95" }, { "DocsId": "P:Microsoft.Extensions.Logging.Testing.FakeLogCollectorOptions.FilteredCategories", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogCollectorOptions.cs#L25C46-L25C50" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogCollectorOptions.cs#L25C46-L25C50" }, { "DocsId": "P:Microsoft.Extensions.Logging.Testing.FakeLogCollectorOptions.FilteredLevels", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogCollectorOptions.cs#L35C44-L35C48" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogCollectorOptions.cs#L35C44-L35C48" }, { "DocsId": "P:Microsoft.Extensions.Logging.Testing.FakeLogCollectorOptions.CollectRecordsForDisabledLogLevels", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogCollectorOptions.cs#L44C54-L44C58" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogCollectorOptions.cs#L44C54-L44C58" }, { "DocsId": "P:Microsoft.Extensions.Logging.Testing.FakeLogCollectorOptions.TimeProvider", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogCollectorOptions.cs#L50C40-L50C44" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogCollectorOptions.cs#L50C40-L50C44" }, { "DocsId": "P:Microsoft.Extensions.Logging.Testing.FakeLogCollectorOptions.OutputSink", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogCollectorOptions.cs#L59C41-L59C45" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogCollectorOptions.cs#L59C41-L59C45" }, { "DocsId": "P:Microsoft.Extensions.Logging.Testing.FakeLogCollectorOptions.OutputFormatter", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogCollectorOptions.cs#L64C58-L64C62" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogCollectorOptions.cs#L64C58-L64C62" } ], "DocsId": "T:Microsoft.Extensions.Logging.Testing.FakeLogCollectorOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogCollectorOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogCollectorOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.Testing.FakeLogger.#ctor(Microsoft.Extensions.Logging.Testing.FakeLogCollector,System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogger.cs#L22C5-L33C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogger.cs#L22C5-L33C6" }, { "DocsId": "M:Microsoft.Extensions.Logging.Testing.FakeLogger.#ctor(System.Action{System.String},System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogger.cs#L41C11-L43C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogger.cs#L41C11-L43C6" }, { "DocsId": "M:Microsoft.Extensions.Logging.Testing.FakeLogger.BeginScope``1(``0)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogger.cs#L52C35-L52C60" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogger.cs#L52C35-L52C60" }, { "DocsId": "M:Microsoft.Extensions.Logging.Testing.FakeLogger.Log``1(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,``0,System.Exception,System.Func{``0,System.Exception,System.String})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogger.cs#L65C9-L73C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogger.cs#L65C9-L73C6" }, { "DocsId": "M:Microsoft.Extensions.Logging.Testing.FakeLogger.ControlLevel(Microsoft.Extensions.Logging.LogLevel,System.Boolean)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogger.cs#L80C66-L80C164" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogger.cs#L80C66-L80C164" }, { "DocsId": "M:Microsoft.Extensions.Logging.Testing.FakeLogger.IsEnabled(Microsoft.Extensions.Logging.LogLevel)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogger.cs#L87C49-L87C87" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogger.cs#L87C49-L87C87" }, { "DocsId": "P:Microsoft.Extensions.Logging.Testing.FakeLogger.Collector", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogger.cs#L92C41-L92C45" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogger.cs#L92C41-L92C45" }, { "DocsId": "P:Microsoft.Extensions.Logging.Testing.FakeLogger.LatestRecord", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogger.cs#L101C42-L101C64" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogger.cs#L101C42-L101C64" }, { "DocsId": "P:Microsoft.Extensions.Logging.Testing.FakeLogger.Category", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogger.cs#L106C31-L106C35" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogger.cs#L106C31-L106C35" } ], "DocsId": "T:Microsoft.Extensions.Logging.Testing.FakeLogger", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogger.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogger.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.Testing.FakeLoggerProvider.#ctor(Microsoft.Extensions.Logging.Testing.FakeLogCollector)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLoggerProvider.cs#L22C5-L32C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLoggerProvider.cs#L22C5-L32C6" }, { "DocsId": "M:Microsoft.Extensions.Logging.Testing.FakeLoggerProvider.Finalize", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLoggerProvider.cs#L40C9-L41C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLoggerProvider.cs#L40C9-L41C6" }, { "DocsId": "M:Microsoft.Extensions.Logging.Testing.FakeLoggerProvider.SetScopeProvider(Microsoft.Extensions.Logging.IExternalScopeProvider)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLoggerProvider.cs#L49C9-L55C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLoggerProvider.cs#L49C9-L55C6" }, { "DocsId": "M:Microsoft.Extensions.Logging.Testing.FakeLoggerProvider.Microsoft#Extensions#Logging#ILoggerProvider#CreateLogger(System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLoggerProvider.cs#L62C66-L62C92" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLoggerProvider.cs#L62C66-L62C92" }, { "DocsId": "M:Microsoft.Extensions.Logging.Testing.FakeLoggerProvider.CreateLogger(System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLoggerProvider.cs#L71C9-L74C12" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLoggerProvider.cs#L71C9-L74C12" }, { "DocsId": "M:Microsoft.Extensions.Logging.Testing.FakeLoggerProvider.Dispose", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLoggerProvider.cs#L82C9-L84C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLoggerProvider.cs#L82C9-L84C6" }, { "DocsId": "M:Microsoft.Extensions.Logging.Testing.FakeLoggerProvider.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLoggerProvider.cs#L97C5-L97C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLoggerProvider.cs#L97C5-L97C6" }, { "DocsId": "P:Microsoft.Extensions.Logging.Testing.FakeLoggerProvider.Collector", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLoggerProvider.cs#L89C41-L89C45" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLoggerProvider.cs#L89C41-L89C45" } ], "DocsId": "T:Microsoft.Extensions.Logging.Testing.FakeLoggerProvider", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLoggerProvider.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLoggerProvider.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.Testing.FakeLogger`1.#ctor(Microsoft.Extensions.Logging.Testing.FakeLogCollector)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLoggerT.cs#L30C11-L32C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLoggerT.cs#L30C11-L32C6" }, { "DocsId": "M:Microsoft.Extensions.Logging.Testing.FakeLogger`1.#ctor(System.Action{System.String})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLoggerT.cs#L39C11-L41C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLoggerT.cs#L39C11-L41C6" } ], "DocsId": "T:Microsoft.Extensions.Logging.Testing.FakeLogger`1", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLoggerT.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLoggerT.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.Testing.FakeLogRecord.#ctor(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.Object,System.Exception,System.String,System.Collections.Generic.IReadOnlyList{System.Object},System.String,System.Boolean,System.DateTimeOffset)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogRecord.cs#L29C5-L41C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogRecord.cs#L29C5-L41C6" }, { "DocsId": "M:Microsoft.Extensions.Logging.Testing.FakeLogRecord.GetStructuredStateValue(System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogRecord.cs#L80C9-L92C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogRecord.cs#L80C9-L92C6" }, { "DocsId": "M:Microsoft.Extensions.Logging.Testing.FakeLogRecord.ToString", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogRecord.cs#L131C42-L131C57" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogRecord.cs#L131C42-L131C57" }, { "DocsId": "P:Microsoft.Extensions.Logging.Testing.FakeLogRecord.Level", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogRecord.cs#L46C29-L46C33" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogRecord.cs#L46C29-L46C33" }, { "DocsId": "P:Microsoft.Extensions.Logging.Testing.FakeLogRecord.Id", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogRecord.cs#L51C25-L51C29" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogRecord.cs#L51C25-L51C29" }, { "DocsId": "P:Microsoft.Extensions.Logging.Testing.FakeLogRecord.State", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogRecord.cs#L56C28-L56C32" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogRecord.cs#L56C28-L56C32" }, { "DocsId": "P:Microsoft.Extensions.Logging.Testing.FakeLogRecord.StructuredState", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogRecord.cs#L68C77-L68C129" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogRecord.cs#L68C77-L68C129" }, { "DocsId": "P:Microsoft.Extensions.Logging.Testing.FakeLogRecord.Exception", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogRecord.cs#L97C35-L97C39" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogRecord.cs#L97C35-L97C39" }, { "DocsId": "P:Microsoft.Extensions.Logging.Testing.FakeLogRecord.Message", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogRecord.cs#L102C29-L102C33" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogRecord.cs#L102C29-L102C33" }, { "DocsId": "P:Microsoft.Extensions.Logging.Testing.FakeLogRecord.Scopes", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogRecord.cs#L107C44-L107C48" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogRecord.cs#L107C44-L107C48" }, { "DocsId": "P:Microsoft.Extensions.Logging.Testing.FakeLogRecord.Category", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogRecord.cs#L115C31-L115C35" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogRecord.cs#L115C31-L115C35" }, { "DocsId": "P:Microsoft.Extensions.Logging.Testing.FakeLogRecord.LevelEnabled", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogRecord.cs#L120C32-L120C36" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogRecord.cs#L120C32-L120C36" }, { "DocsId": "P:Microsoft.Extensions.Logging.Testing.FakeLogRecord.Timestamp", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogRecord.cs#L125C39-L125C43" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogRecord.cs#L125C39-L125C43" } ], "DocsId": "T:Microsoft.Extensions.Logging.Testing.FakeLogRecord", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogRecord.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogRecord.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Diagnostics.json b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Diagnostics.json index 1ee0bcdab9a..8f78f9f2263 100644 --- a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Diagnostics.json +++ b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Diagnostics.json @@ -1,61 +1,60 @@ { "Assembly": "Microsoft.Extensions.Diagnostics", - "GUID": "C12AD5C10DDE4A18A2D89D0ABCB73EA9FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "76F28F985110487FA2F385C799246299FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.MetricsServiceExtensions.AddMetrics(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics/src/Metrics/MetricsServiceExtensions.cs#L25C13-L42C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics/src/Metrics/MetricsServiceExtensions.cs#L25C13-L42C29" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.MetricsServiceExtensions.AddMetrics(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{Microsoft.Extensions.Diagnostics.Metrics.IMetricsBuilder})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics/src/Metrics/MetricsServiceExtensions.cs#L53C13-L63C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics/src/Metrics/MetricsServiceExtensions.cs#L53C13-L63C29" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.MetricsServiceExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics/src/Metrics/MetricsServiceExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics/src/Metrics/MetricsServiceExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.MetricsBuilderConfigurationExtensions.AddConfiguration(Microsoft.Extensions.Diagnostics.Metrics.IMetricsBuilder,Microsoft.Extensions.Configuration.IConfiguration)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics/src/Metrics/Configuration/MetricsBuilderConfigurationExtensions.cs#L27C13-L40C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics/src/Metrics/Configuration/MetricsBuilderConfigurationExtensions.cs#L27C13-L40C28" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Metrics.MetricsBuilderConfigurationExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics/src/Metrics/Configuration/MetricsBuilderConfigurationExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics/src/Metrics/Configuration/MetricsBuilderConfigurationExtensions.cs" }, { "Members": [ { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.ConsoleMetrics.DebugListenerName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics/src/Metrics/ConsoleMetrics.cs#L14C51-L14C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics/src/Metrics/ConsoleMetrics.cs#L14C51-L14C65" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Metrics.ConsoleMetrics", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics/src/Metrics/ConsoleMetrics.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics/src/Metrics/ConsoleMetrics.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.MetricsBuilderConsoleExtensions.AddDebugConsole(Microsoft.Extensions.Diagnostics.Metrics.IMetricsBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics/src/Metrics/MetricsBuilderConsoleExtensions.cs#L16C88-L16C137" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics/src/Metrics/MetricsBuilderConsoleExtensions.cs#L16C88-L16C137" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Metrics.MetricsBuilderConsoleExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics/src/Metrics/MetricsBuilderConsoleExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics/src/Metrics/MetricsBuilderConsoleExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.Configuration.IMetricListenerConfigurationFactory.GetConfiguration(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics/src/Metrics/Configuration/IMetricListenerConfigurationFactory.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics/src/Metrics/Configuration/IMetricListenerConfigurationFactory.cs" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Metrics.Configuration.IMetricListenerConfigurationFactory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics/src/Metrics/Configuration/IMetricListenerConfigurationFactory.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics/src/Metrics/Configuration/IMetricListenerConfigurationFactory.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.FileProviders.Abstractions.json b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.FileProviders.Abstractions.json index 51ffb2d5812..7b5589424df 100644 --- a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.FileProviders.Abstractions.json +++ b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.FileProviders.Abstractions.json @@ -1,177 +1,176 @@ { "Assembly": "Microsoft.Extensions.FileProviders.Abstractions", - "GUID": "7F677D51A2C34FE09371256BF3BE3928FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "E5E2C4F760284968AC88200C783EAD55FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "P:Microsoft.Extensions.FileProviders.IDirectoryContents.Exists", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/IDirectoryContents.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/IDirectoryContents.cs" } ], "DocsId": "T:Microsoft.Extensions.FileProviders.IDirectoryContents", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/IDirectoryContents.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/IDirectoryContents.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.FileProviders.IFileInfo.CreateReadStream", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/IFileInfo.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/IFileInfo.cs" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.IFileInfo.Exists", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/IFileInfo.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/IFileInfo.cs" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.IFileInfo.Length", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/IFileInfo.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/IFileInfo.cs" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.IFileInfo.PhysicalPath", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/IFileInfo.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/IFileInfo.cs" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.IFileInfo.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/IFileInfo.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/IFileInfo.cs" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.IFileInfo.LastModified", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/IFileInfo.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/IFileInfo.cs" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.IFileInfo.IsDirectory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/IFileInfo.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/IFileInfo.cs" } ], "DocsId": "T:Microsoft.Extensions.FileProviders.IFileInfo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/IFileInfo.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/IFileInfo.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.FileProviders.IFileProvider.GetFileInfo(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/IFileProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/IFileProvider.cs" }, { "DocsId": "M:Microsoft.Extensions.FileProviders.IFileProvider.GetDirectoryContents(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/IFileProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/IFileProvider.cs" }, { "DocsId": "M:Microsoft.Extensions.FileProviders.IFileProvider.Watch(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/IFileProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/IFileProvider.cs" } ], "DocsId": "T:Microsoft.Extensions.FileProviders.IFileProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/IFileProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/IFileProvider.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.FileProviders.NotFoundDirectoryContents.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NotFoundDirectoryContents.cs#L27C58-L27C103" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NotFoundDirectoryContents.cs#L27C58-L27C103" }, { "DocsId": "M:Microsoft.Extensions.FileProviders.NotFoundDirectoryContents.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NotFoundDirectoryContents.cs#L30C52-L30C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NotFoundDirectoryContents.cs#L30C52-L30C67" }, { "DocsId": "M:Microsoft.Extensions.FileProviders.NotFoundDirectoryContents.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NotFoundDirectoryContents.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NotFoundDirectoryContents.cs" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.NotFoundDirectoryContents.Singleton", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NotFoundDirectoryContents.cs#L18C61-L18C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NotFoundDirectoryContents.cs#L18C61-L18C65" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.NotFoundDirectoryContents.Exists", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NotFoundDirectoryContents.cs#L23C31-L23C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NotFoundDirectoryContents.cs#L23C31-L23C36" } ], "DocsId": "T:Microsoft.Extensions.FileProviders.NotFoundDirectoryContents", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NotFoundDirectoryContents.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NotFoundDirectoryContents.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.FileProviders.NotFoundFileInfo.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NotFoundFileInfo.cs#L19C9-L22C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NotFoundFileInfo.cs#L19C9-L22C10" }, { "DocsId": "M:Microsoft.Extensions.FileProviders.NotFoundFileInfo.CreateReadStream", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NotFoundFileInfo.cs#L60C13-L60C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NotFoundFileInfo.cs#L60C13-L60C80" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.NotFoundFileInfo.Exists", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NotFoundFileInfo.cs#L27C31-L27C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NotFoundFileInfo.cs#L27C31-L27C36" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.NotFoundFileInfo.IsDirectory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NotFoundFileInfo.cs#L32C36-L32C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NotFoundFileInfo.cs#L32C36-L32C41" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.NotFoundFileInfo.LastModified", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NotFoundFileInfo.cs#L37C47-L37C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NotFoundFileInfo.cs#L37C47-L37C70" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.NotFoundFileInfo.Length", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NotFoundFileInfo.cs#L42C31-L42C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NotFoundFileInfo.cs#L42C31-L42C33" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.NotFoundFileInfo.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NotFoundFileInfo.cs#L45C30-L45C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NotFoundFileInfo.cs#L45C30-L45C34" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.NotFoundFileInfo.PhysicalPath", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NotFoundFileInfo.cs#L50C40-L50C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NotFoundFileInfo.cs#L50C40-L50C44" } ], "DocsId": "T:Microsoft.Extensions.FileProviders.NotFoundFileInfo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NotFoundFileInfo.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NotFoundFileInfo.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.FileProviders.NullChangeToken.RegisterChangeCallback(System.Action{System.Object},System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NullChangeToken.cs#L41C13-L41C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NullChangeToken.cs#L41C13-L41C45" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.NullChangeToken.Singleton", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NullChangeToken.cs#L17C51-L17C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NullChangeToken.cs#L17C51-L17C55" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.NullChangeToken.HasChanged", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NullChangeToken.cs#L26C35-L26C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NullChangeToken.cs#L26C35-L26C40" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.NullChangeToken.ActiveChangeCallbacks", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NullChangeToken.cs#L31C46-L31C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NullChangeToken.cs#L31C46-L31C51" } ], "DocsId": "T:Microsoft.Extensions.FileProviders.NullChangeToken", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NullChangeToken.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NullChangeToken.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.FileProviders.NullFileProvider.GetDirectoryContents(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NullFileProvider.cs#L18C75-L18C110" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NullFileProvider.cs#L18C75-L18C110" }, { "DocsId": "M:Microsoft.Extensions.FileProviders.NullFileProvider.GetFileInfo(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NullFileProvider.cs#L25C57-L25C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NullFileProvider.cs#L25C57-L25C86" }, { "DocsId": "M:Microsoft.Extensions.FileProviders.NullFileProvider.Watch(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NullFileProvider.cs#L32C53-L32C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NullFileProvider.cs#L32C53-L32C78" }, { "DocsId": "M:Microsoft.Extensions.FileProviders.NullFileProvider.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NullFileProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NullFileProvider.cs" } ], "DocsId": "T:Microsoft.Extensions.FileProviders.NullFileProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NullFileProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NullFileProvider.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.FileProviders.Composite.json b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.FileProviders.Composite.json index 8fe1c5cbea7..d6125f4b177 100644 --- a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.FileProviders.Composite.json +++ b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.FileProviders.Composite.json @@ -1,59 +1,58 @@ { "Assembly": "Microsoft.Extensions.FileProviders.Composite", - "GUID": "89CFB965D83F4E7EA111E438982AFD08FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "D84ED147AE7E4C57BE65E4D8B3BDC119FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.FileProviders.CompositeFileProvider.#ctor(Microsoft.Extensions.FileProviders.IFileProvider[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Composite/src/CompositeFileProvider.cs#L23C9-L26C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Composite/src/CompositeFileProvider.cs#L23C9-L26C10" }, { "DocsId": "M:Microsoft.Extensions.FileProviders.CompositeFileProvider.#ctor(System.Collections.Generic.IEnumerable{Microsoft.Extensions.FileProviders.IFileProvider})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Composite/src/CompositeFileProvider.cs#L32C9-L37C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Composite/src/CompositeFileProvider.cs#L32C9-L37C10" }, { "DocsId": "M:Microsoft.Extensions.FileProviders.CompositeFileProvider.GetFileInfo(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Composite/src/CompositeFileProvider.cs#L46C52-L54C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Composite/src/CompositeFileProvider.cs#L46C52-L54C50" }, { "DocsId": "M:Microsoft.Extensions.FileProviders.CompositeFileProvider.GetDirectoryContents(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Composite/src/CompositeFileProvider.cs#L66C13-L67C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Composite/src/CompositeFileProvider.cs#L66C13-L67C38" }, { "DocsId": "M:Microsoft.Extensions.FileProviders.CompositeFileProvider.Watch(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Composite/src/CompositeFileProvider.cs#L79C13-L95C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Composite/src/CompositeFileProvider.cs#L79C13-L95C59" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.CompositeFileProvider.FileProviders", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Composite/src/CompositeFileProvider.cs#L101C60-L101C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Composite/src/CompositeFileProvider.cs#L101C60-L101C74" } ], "DocsId": "T:Microsoft.Extensions.FileProviders.CompositeFileProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Composite/src/CompositeFileProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Composite/src/CompositeFileProvider.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.FileProviders.Composite.CompositeDirectoryContents.#ctor(System.Collections.Generic.IList{Microsoft.Extensions.FileProviders.IFileProvider},System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Composite/src/CompositeDirectoryContents.cs#L29C9-L35C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Composite/src/CompositeDirectoryContents.cs#L29C9-L35C10" }, { "DocsId": "M:Microsoft.Extensions.FileProviders.Composite.CompositeDirectoryContents.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Composite/src/CompositeDirectoryContents.cs#L85C13-L86C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Composite/src/CompositeDirectoryContents.cs#L85C13-L86C43" }, { "DocsId": "M:Microsoft.Extensions.FileProviders.Composite.CompositeDirectoryContents.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Composite/src/CompositeDirectoryContents.cs#L91C13-L92C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Composite/src/CompositeDirectoryContents.cs#L91C13-L92C43" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.Composite.CompositeDirectoryContents.Exists", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Composite/src/CompositeDirectoryContents.cs#L102C17-L103C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Composite/src/CompositeDirectoryContents.cs#L102C17-L103C32" } ], "DocsId": "T:Microsoft.Extensions.FileProviders.Composite.CompositeDirectoryContents", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Composite/src/CompositeDirectoryContents.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Composite/src/CompositeDirectoryContents.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.FileProviders.Embedded.json b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.FileProviders.Embedded.json index 38674e28ecf..f781a47ee3a 100644 --- a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.FileProviders.Embedded.json +++ b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.FileProviders.Embedded.json @@ -1,109 +1,108 @@ { "Assembly": "Microsoft.Extensions.FileProviders.Embedded", - "GUID": "6A35079773FB4C679B84761FF3B97CFAFFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "B4CE74768D774C4DA15D4F8A66F49CCDFFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.FileProviders.EmbeddedFileProvider.#ctor(System.Reflection.Assembly)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/FileProviders/Embedded/src/EmbeddedFileProvider.cs#L37C11-L39C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/FileProviders/Embedded/src/EmbeddedFileProvider.cs#L37C11-L39C6" }, { "DocsId": "M:Microsoft.Extensions.FileProviders.EmbeddedFileProvider.#ctor(System.Reflection.Assembly,System.String)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/FileProviders/Embedded/src/EmbeddedFileProvider.cs#L49C5-L72C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/FileProviders/Embedded/src/EmbeddedFileProvider.cs#L49C5-L72C6" }, { "DocsId": "M:Microsoft.Extensions.FileProviders.EmbeddedFileProvider.GetFileInfo(System.String)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/FileProviders/Embedded/src/EmbeddedFileProvider.cs#L84C9-L124C91" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/FileProviders/Embedded/src/EmbeddedFileProvider.cs#L84C9-L124C91" }, { "DocsId": "M:Microsoft.Extensions.FileProviders.EmbeddedFileProvider.GetDirectoryContents(System.String)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/FileProviders/Embedded/src/EmbeddedFileProvider.cs#L140C9-L168C57" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/FileProviders/Embedded/src/EmbeddedFileProvider.cs#L140C9-L168C57" }, { "DocsId": "M:Microsoft.Extensions.FileProviders.EmbeddedFileProvider.Watch(System.String)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/FileProviders/Embedded/src/EmbeddedFileProvider.cs#L178C9-L178C42" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/FileProviders/Embedded/src/EmbeddedFileProvider.cs#L178C9-L178C42" } ], "DocsId": "T:Microsoft.Extensions.FileProviders.EmbeddedFileProvider", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/FileProviders/Embedded/src/EmbeddedFileProvider.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/FileProviders/Embedded/src/EmbeddedFileProvider.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.FileProviders.ManifestEmbeddedFileProvider.#ctor(System.Reflection.Assembly)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/FileProviders/Embedded/src/ManifestEmbeddedFileProvider.cs#L28C11-L28C92" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/FileProviders/Embedded/src/ManifestEmbeddedFileProvider.cs#L28C11-L28C92" }, { "DocsId": "M:Microsoft.Extensions.FileProviders.ManifestEmbeddedFileProvider.#ctor(System.Reflection.Assembly,System.String)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/FileProviders/Embedded/src/ManifestEmbeddedFileProvider.cs#L36C11-L38C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/FileProviders/Embedded/src/ManifestEmbeddedFileProvider.cs#L36C11-L38C6" }, { "DocsId": "M:Microsoft.Extensions.FileProviders.ManifestEmbeddedFileProvider.#ctor(System.Reflection.Assembly,System.String,System.DateTimeOffset)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/FileProviders/Embedded/src/ManifestEmbeddedFileProvider.cs#L48C11-L50C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/FileProviders/Embedded/src/ManifestEmbeddedFileProvider.cs#L48C11-L50C6" }, { "DocsId": "M:Microsoft.Extensions.FileProviders.ManifestEmbeddedFileProvider.#ctor(System.Reflection.Assembly,System.String,System.String,System.DateTimeOffset)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/FileProviders/Embedded/src/ManifestEmbeddedFileProvider.cs#L61C11-L63C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/FileProviders/Embedded/src/ManifestEmbeddedFileProvider.cs#L61C11-L63C6" }, { "DocsId": "M:Microsoft.Extensions.FileProviders.ManifestEmbeddedFileProvider.GetDirectoryContents(System.String)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/FileProviders/Embedded/src/ManifestEmbeddedFileProvider.cs#L85C9-L96C82" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/FileProviders/Embedded/src/ManifestEmbeddedFileProvider.cs#L85C9-L96C82" }, { "DocsId": "M:Microsoft.Extensions.FileProviders.ManifestEmbeddedFileProvider.GetFileInfo(System.String)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/FileProviders/Embedded/src/ManifestEmbeddedFileProvider.cs#L102C9-L113C46" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/FileProviders/Embedded/src/ManifestEmbeddedFileProvider.cs#L102C9-L113C46" }, { "DocsId": "M:Microsoft.Extensions.FileProviders.ManifestEmbeddedFileProvider.Watch(System.String)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/FileProviders/Embedded/src/ManifestEmbeddedFileProvider.cs#L119C9-L121C42" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/FileProviders/Embedded/src/ManifestEmbeddedFileProvider.cs#L119C9-L121C42" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.ManifestEmbeddedFileProvider.Assembly", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/FileProviders/Embedded/src/ManifestEmbeddedFileProvider.cs#L78C32-L78C36" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/FileProviders/Embedded/src/ManifestEmbeddedFileProvider.cs#L78C32-L78C36" } ], "DocsId": "T:Microsoft.Extensions.FileProviders.ManifestEmbeddedFileProvider", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/FileProviders/Embedded/src/ManifestEmbeddedFileProvider.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/FileProviders/Embedded/src/ManifestEmbeddedFileProvider.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.FileProviders.Embedded.EmbeddedResourceFileInfo.#ctor(System.Reflection.Assembly,System.String,System.String,System.DateTimeOffset)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/FileProviders/Embedded/src/EmbeddedResourceFileInfo.cs#L27C5-L37C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/FileProviders/Embedded/src/EmbeddedResourceFileInfo.cs#L27C5-L37C6" }, { "DocsId": "M:Microsoft.Extensions.FileProviders.Embedded.EmbeddedResourceFileInfo.CreateReadStream", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/FileProviders/Embedded/src/EmbeddedResourceFileInfo.cs#L83C9-L89C23" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/FileProviders/Embedded/src/EmbeddedResourceFileInfo.cs#L83C9-L89C23" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.Embedded.EmbeddedResourceFileInfo.Exists", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/FileProviders/Embedded/src/EmbeddedResourceFileInfo.cs#L42C27-L42C31" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/FileProviders/Embedded/src/EmbeddedResourceFileInfo.cs#L42C27-L42C31" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.Embedded.EmbeddedResourceFileInfo.Length", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/FileProviders/Embedded/src/EmbeddedResourceFileInfo.cs#L51C13-L56C34" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/FileProviders/Embedded/src/EmbeddedResourceFileInfo.cs#L51C13-L56C34" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.Embedded.EmbeddedResourceFileInfo.PhysicalPath", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/FileProviders/Embedded/src/EmbeddedResourceFileInfo.cs#L63C36-L63C40" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/FileProviders/Embedded/src/EmbeddedResourceFileInfo.cs#L63C36-L63C40" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.Embedded.EmbeddedResourceFileInfo.Name", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/FileProviders/Embedded/src/EmbeddedResourceFileInfo.cs#L68C26-L68C30" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/FileProviders/Embedded/src/EmbeddedResourceFileInfo.cs#L68C26-L68C30" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.Embedded.EmbeddedResourceFileInfo.LastModified", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/FileProviders/Embedded/src/EmbeddedResourceFileInfo.cs#L73C42-L73C46" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/FileProviders/Embedded/src/EmbeddedResourceFileInfo.cs#L73C42-L73C46" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.Embedded.EmbeddedResourceFileInfo.IsDirectory", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/FileProviders/Embedded/src/EmbeddedResourceFileInfo.cs#L78C32-L78C37" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/FileProviders/Embedded/src/EmbeddedResourceFileInfo.cs#L78C32-L78C37" } ], "DocsId": "T:Microsoft.Extensions.FileProviders.Embedded.EmbeddedResourceFileInfo", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/FileProviders/Embedded/src/EmbeddedResourceFileInfo.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/FileProviders/Embedded/src/EmbeddedResourceFileInfo.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.FileProviders.Physical.json b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.FileProviders.Physical.json index 9d370ed5461..c58837035b5 100644 --- a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.FileProviders.Physical.json +++ b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.FileProviders.Physical.json @@ -1,283 +1,282 @@ { "Assembly": "Microsoft.Extensions.FileProviders.Physical", - "GUID": "E3157AB7D7D940649003A3CB7F69BF40FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "865C928C9D5242B9A9B5A580A908D1AEFFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.FileProviders.PhysicalFileProvider.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFileProvider.cs#L45C15-L47C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFileProvider.cs#L45C15-L47C10" }, { "DocsId": "M:Microsoft.Extensions.FileProviders.PhysicalFileProvider.#ctor(System.String,Microsoft.Extensions.FileProviders.Physical.ExclusionFilters)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFileProvider.cs#L34C9-L71C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFileProvider.cs#L34C9-L71C10" }, { "DocsId": "M:Microsoft.Extensions.FileProviders.PhysicalFileProvider.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFileProvider.cs#L203C13-L205C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFileProvider.cs#L203C13-L205C10" }, { "DocsId": "M:Microsoft.Extensions.FileProviders.PhysicalFileProvider.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFileProvider.cs#L213C13-L221C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFileProvider.cs#L213C13-L221C10" }, { "DocsId": "M:Microsoft.Extensions.FileProviders.PhysicalFileProvider.GetFileInfo(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFileProvider.cs#L265C13-L291C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFileProvider.cs#L265C13-L291C51" }, { "DocsId": "M:Microsoft.Extensions.FileProviders.PhysicalFileProvider.GetDirectoryContents(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFileProvider.cs#L307C17-L336C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFileProvider.cs#L307C17-L336C10" }, { "DocsId": "M:Microsoft.Extensions.FileProviders.PhysicalFileProvider.Watch(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFileProvider.cs#L354C13-L362C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFileProvider.cs#L354C13-L362C62" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.PhysicalFileProvider.UsePollingFileWatcher", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFileProvider.cs#L91C17-L99C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFileProvider.cs#L91C17-L99C56" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.PhysicalFileProvider.UseActivePolling", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFileProvider.cs#L130C17-L135C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFileProvider.cs#L130C17-L135C48" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.PhysicalFileProvider.Root", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFileProvider.cs#L226C30-L226C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFileProvider.cs#L226C30-L226C34" } ], "DocsId": "T:Microsoft.Extensions.FileProviders.PhysicalFileProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFileProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFileProvider.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.FileProviders.Internal.PhysicalDirectoryContents.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/Internal/PhysicalDirectoryContents.cs#L24C15-L25C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/Internal/PhysicalDirectoryContents.cs#L24C15-L25C12" }, { "DocsId": "M:Microsoft.Extensions.FileProviders.Internal.PhysicalDirectoryContents.#ctor(System.String,Microsoft.Extensions.FileProviders.Physical.ExclusionFilters)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/Internal/PhysicalDirectoryContents.cs#L32C9-L37C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/Internal/PhysicalDirectoryContents.cs#L32C9-L37C10" }, { "DocsId": "M:Microsoft.Extensions.FileProviders.Internal.PhysicalDirectoryContents.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/Internal/PhysicalDirectoryContents.cs#L43C58-L43C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/Internal/PhysicalDirectoryContents.cs#L43C58-L43C79" }, { "DocsId": "M:Microsoft.Extensions.FileProviders.Internal.PhysicalDirectoryContents.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/Internal/PhysicalDirectoryContents.cs#L44C52-L44C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/Internal/PhysicalDirectoryContents.cs#L44C52-L44C73" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.Internal.PhysicalDirectoryContents.Exists", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/Internal/PhysicalDirectoryContents.cs#L40C31-L40C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/Internal/PhysicalDirectoryContents.cs#L40C31-L40C43" } ], "DocsId": "T:Microsoft.Extensions.FileProviders.Internal.PhysicalDirectoryContents", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/Internal/PhysicalDirectoryContents.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/Internal/PhysicalDirectoryContents.cs" }, { "Members": [ { "DocsId": "F:Microsoft.Extensions.FileProviders.Physical.ExclusionFilters.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/ExclusionFilters.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/ExclusionFilters.cs" }, { "DocsId": "F:Microsoft.Extensions.FileProviders.Physical.ExclusionFilters.Sensitive", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/ExclusionFilters.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/ExclusionFilters.cs" }, { "DocsId": "F:Microsoft.Extensions.FileProviders.Physical.ExclusionFilters.DotPrefixed", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/ExclusionFilters.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/ExclusionFilters.cs" }, { "DocsId": "F:Microsoft.Extensions.FileProviders.Physical.ExclusionFilters.Hidden", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/ExclusionFilters.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/ExclusionFilters.cs" }, { "DocsId": "F:Microsoft.Extensions.FileProviders.Physical.ExclusionFilters.System", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/ExclusionFilters.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/ExclusionFilters.cs" }, { "DocsId": "F:Microsoft.Extensions.FileProviders.Physical.ExclusionFilters.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/ExclusionFilters.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/ExclusionFilters.cs" } ], "DocsId": "T:Microsoft.Extensions.FileProviders.Physical.ExclusionFilters", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/ExclusionFilters.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/ExclusionFilters.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.FileProviders.Physical.PhysicalDirectoryInfo.#ctor(System.IO.DirectoryInfo)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalDirectoryInfo.cs#L26C9-L29C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalDirectoryInfo.cs#L26C9-L29C10" }, { "DocsId": "M:Microsoft.Extensions.FileProviders.Physical.PhysicalDirectoryInfo.CreateReadStream", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalDirectoryInfo.cs#L68C13-L68C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalDirectoryInfo.cs#L68C13-L68C72" }, { "DocsId": "M:Microsoft.Extensions.FileProviders.Physical.PhysicalDirectoryInfo.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalDirectoryInfo.cs#L74C13-L75C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalDirectoryInfo.cs#L74C13-L75C45" }, { "DocsId": "M:Microsoft.Extensions.FileProviders.Physical.PhysicalDirectoryInfo.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalDirectoryInfo.cs#L80C13-L81C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalDirectoryInfo.cs#L80C13-L81C45" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.Physical.PhysicalDirectoryInfo.Exists", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalDirectoryInfo.cs#L38C31-L38C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalDirectoryInfo.cs#L38C31-L38C43" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.Physical.PhysicalDirectoryInfo.Length", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalDirectoryInfo.cs#L43C31-L43C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalDirectoryInfo.cs#L43C31-L43C33" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.Physical.PhysicalDirectoryInfo.PhysicalPath", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalDirectoryInfo.cs#L46C39-L46C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalDirectoryInfo.cs#L46C39-L46C53" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.Physical.PhysicalDirectoryInfo.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalDirectoryInfo.cs#L49C31-L49C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalDirectoryInfo.cs#L49C31-L49C41" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.Physical.PhysicalDirectoryInfo.LastModified", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalDirectoryInfo.cs#L54C47-L54C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalDirectoryInfo.cs#L54C47-L54C69" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.Physical.PhysicalDirectoryInfo.IsDirectory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalDirectoryInfo.cs#L59C36-L59C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalDirectoryInfo.cs#L59C36-L59C40" } ], "DocsId": "T:Microsoft.Extensions.FileProviders.Physical.PhysicalDirectoryInfo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalDirectoryInfo.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalDirectoryInfo.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.FileProviders.Physical.PhysicalFileInfo.#ctor(System.IO.FileInfo)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFileInfo.cs#L20C9-L23C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFileInfo.cs#L20C9-L23C10" }, { "DocsId": "M:Microsoft.Extensions.FileProviders.Physical.PhysicalFileInfo.CreateReadStream", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFileInfo.cs#L50C13-L57C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFileInfo.cs#L50C13-L57C72" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.Physical.PhysicalFileInfo.Exists", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFileInfo.cs#L26C31-L26C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFileInfo.cs#L26C31-L26C43" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.Physical.PhysicalFileInfo.Length", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFileInfo.cs#L29C31-L29C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFileInfo.cs#L29C31-L29C43" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.Physical.PhysicalFileInfo.PhysicalPath", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFileInfo.cs#L32C39-L32C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFileInfo.cs#L32C39-L32C53" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.Physical.PhysicalFileInfo.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFileInfo.cs#L35C31-L35C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFileInfo.cs#L35C31-L35C41" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.Physical.PhysicalFileInfo.LastModified", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFileInfo.cs#L38C47-L38C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFileInfo.cs#L38C47-L38C69" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.Physical.PhysicalFileInfo.IsDirectory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFileInfo.cs#L43C36-L43C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFileInfo.cs#L43C36-L43C41" } ], "DocsId": "T:Microsoft.Extensions.FileProviders.Physical.PhysicalFileInfo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFileInfo.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFileInfo.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.FileProviders.Physical.PhysicalFilesWatcher.#ctor(System.String,System.IO.FileSystemWatcher,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFilesWatcher.cs#L61C15-L63C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFilesWatcher.cs#L61C15-L63C10" }, { "DocsId": "M:Microsoft.Extensions.FileProviders.Physical.PhysicalFilesWatcher.#ctor(System.String,System.IO.FileSystemWatcher,System.Boolean,Microsoft.Extensions.FileProviders.Physical.ExclusionFilters)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFilesWatcher.cs#L33C9-L112C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFilesWatcher.cs#L33C9-L112C10" }, { "DocsId": "M:Microsoft.Extensions.FileProviders.Physical.PhysicalFilesWatcher.CreateFileChangeToken(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFilesWatcher.cs#L136C13-L152C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFilesWatcher.cs#L136C13-L152C32" }, { "DocsId": "M:Microsoft.Extensions.FileProviders.Physical.PhysicalFilesWatcher.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFilesWatcher.cs#L257C13-L259C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFilesWatcher.cs#L257C13-L259C10" }, { "DocsId": "M:Microsoft.Extensions.FileProviders.Physical.PhysicalFilesWatcher.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFilesWatcher.cs#L267C13-L276C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFilesWatcher.cs#L267C13-L276C10" } ], "DocsId": "T:Microsoft.Extensions.FileProviders.Physical.PhysicalFilesWatcher", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFilesWatcher.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFilesWatcher.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.FileProviders.Physical.PollingFileChangeToken.#ctor(System.IO.FileInfo)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PollingFileChangeToken.cs#L40C9-L44C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PollingFileChangeToken.cs#L40C9-L44C10" }, { "DocsId": "M:Microsoft.Extensions.FileProviders.Physical.PollingFileChangeToken.Microsoft#Extensions#FileProviders#IPollingChangeToken#get_CancellationTokenSource", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PollingFileChangeToken.cs#L79C81-L79C104" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PollingFileChangeToken.cs#L79C81-L79C104" }, { "DocsId": "M:Microsoft.Extensions.FileProviders.Physical.PollingFileChangeToken.RegisterChangeCallback(System.Action{System.Object},System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PollingFileChangeToken.cs#L123C13-L128C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PollingFileChangeToken.cs#L123C13-L128C74" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.Physical.PollingFileChangeToken.ActiveChangeCallbacks", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PollingFileChangeToken.cs#L64C45-L64C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PollingFileChangeToken.cs#L64C45-L64C49" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.Physical.PollingFileChangeToken.Microsoft#Extensions#FileProviders#IPollingChangeToken#CancellationTokenSource", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PollingFileChangeToken.cs#L79C81-L79C104" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PollingFileChangeToken.cs#L79C81-L79C104" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.Physical.PollingFileChangeToken.HasChanged", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PollingFileChangeToken.cs#L92C17-L111C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PollingFileChangeToken.cs#L92C17-L111C36" } ], "DocsId": "T:Microsoft.Extensions.FileProviders.Physical.PollingFileChangeToken", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PollingFileChangeToken.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PollingFileChangeToken.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.FileProviders.Physical.PollingWildCardChangeToken.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PollingWildCardChangeToken.cs#L42C15-L47C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PollingWildCardChangeToken.cs#L42C15-L47C10" }, { "DocsId": "M:Microsoft.Extensions.FileProviders.Physical.PollingWildCardChangeToken.Microsoft#Extensions#FileProviders#IPollingChangeToken#get_CancellationTokenSource", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PollingWildCardChangeToken.cs#L82C81-L82C104" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PollingWildCardChangeToken.cs#L82C81-L82C104" }, { "DocsId": "M:Microsoft.Extensions.FileProviders.Physical.PollingWildCardChangeToken.GetLastWriteUtc(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PollingWildCardChangeToken.cs#L148C13-L149C123" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PollingWildCardChangeToken.cs#L148C13-L149C123" }, { "DocsId": "M:Microsoft.Extensions.FileProviders.Physical.PollingWildCardChangeToken.Microsoft#Extensions#Primitives#IChangeToken#RegisterChangeCallback(System.Action{System.Object},System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PollingWildCardChangeToken.cs#L190C13-L195C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PollingWildCardChangeToken.cs#L190C13-L195C74" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.Physical.PollingWildCardChangeToken.ActiveChangeCallbacks", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PollingWildCardChangeToken.cs#L64C45-L64C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PollingWildCardChangeToken.cs#L64C45-L64C49" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.Physical.PollingWildCardChangeToken.Microsoft#Extensions#FileProviders#IPollingChangeToken#CancellationTokenSource", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PollingWildCardChangeToken.cs#L82C81-L82C104" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PollingWildCardChangeToken.cs#L82C81-L82C104" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.Physical.PollingWildCardChangeToken.HasChanged", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PollingWildCardChangeToken.cs#L91C17-L104C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PollingWildCardChangeToken.cs#L91C17-L104C33" } ], "DocsId": "T:Microsoft.Extensions.FileProviders.Physical.PollingWildCardChangeToken", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PollingWildCardChangeToken.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PollingWildCardChangeToken.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.FileSystemGlobbing.json b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.FileSystemGlobbing.json index f943823c8e9..ea7d405333e 100644 --- a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.FileSystemGlobbing.json +++ b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.FileSystemGlobbing.json @@ -1,783 +1,782 @@ { "Assembly": "Microsoft.Extensions.FileSystemGlobbing", - "GUID": "00F6A8E3E3734B3E8590EF432E299E34FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "A7A4FF3F1CBF41D9BFA60BC3BF429931FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.FilePatternMatch.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/FilePatternMatch.cs#L40C13-L44C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/FilePatternMatch.cs#L40C13-L44C10" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.FilePatternMatch.Equals(Microsoft.Extensions.FileSystemGlobbing.FilePatternMatch)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/FilePatternMatch.cs#L53C13-L54C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/FilePatternMatch.cs#L53C13-L54C88" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.FilePatternMatch.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/FilePatternMatch.cs#L63C13-L63C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/FilePatternMatch.cs#L63C13-L63C59" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.FilePatternMatch.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/FilePatternMatch.cs#L70C13-L70C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/FilePatternMatch.cs#L70C13-L70C70" }, { "DocsId": "P:Microsoft.Extensions.FileSystemGlobbing.FilePatternMatch.Path", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/FilePatternMatch.cs#L22C30-L22C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/FilePatternMatch.cs#L22C30-L22C34" }, { "DocsId": "P:Microsoft.Extensions.FileSystemGlobbing.FilePatternMatch.Stem", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/FilePatternMatch.cs#L31C31-L31C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/FilePatternMatch.cs#L31C31-L31C35" } ], "DocsId": "T:Microsoft.Extensions.FileSystemGlobbing.FilePatternMatch", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/FilePatternMatch.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/FilePatternMatch.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.InMemoryDirectoryInfo.#ctor(System.String,System.Collections.Generic.IEnumerable{System.String})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/InMemoryDirectoryInfo.cs#L27C15-L29C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/InMemoryDirectoryInfo.cs#L27C15-L29C10" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.InMemoryDirectoryInfo.EnumerateFileSystemInfos", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/InMemoryDirectoryInfo.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/InMemoryDirectoryInfo.cs" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.InMemoryDirectoryInfo.GetDirectory(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/InMemoryDirectoryInfo.cs#L131C13-L138C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/InMemoryDirectoryInfo.cs#L132C13-L139C74" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.InMemoryDirectoryInfo.GetFile(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/InMemoryDirectoryInfo.cs#L149C13-L159C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/InMemoryDirectoryInfo.cs#L150C13-L160C10" }, { "DocsId": "P:Microsoft.Extensions.FileSystemGlobbing.InMemoryDirectoryInfo.FullName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/InMemoryDirectoryInfo.cs#L71C43-L71C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/InMemoryDirectoryInfo.cs#L72C43-L72C47" }, { "DocsId": "P:Microsoft.Extensions.FileSystemGlobbing.InMemoryDirectoryInfo.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/InMemoryDirectoryInfo.cs#L74C39-L74C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/InMemoryDirectoryInfo.cs#L75C39-L75C43" }, { "DocsId": "P:Microsoft.Extensions.FileSystemGlobbing.InMemoryDirectoryInfo.ParentDirectory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/InMemoryDirectoryInfo.cs#L78C13-L78C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/InMemoryDirectoryInfo.cs#L79C13-L79C86" } ], "DocsId": "T:Microsoft.Extensions.FileSystemGlobbing.InMemoryDirectoryInfo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/InMemoryDirectoryInfo.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/InMemoryDirectoryInfo.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Matcher.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Matcher.cs#L108C15-L110C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Matcher.cs#L108C15-L110C10" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Matcher.#ctor(System.StringComparison)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Matcher.cs#L99C9-L120C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Matcher.cs#L99C9-L120C10" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Matcher.AddInclude(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Matcher.cs#L136C13-L137C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Matcher.cs#L136C13-L137C25" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Matcher.AddExclude(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Matcher.cs#L154C13-L155C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Matcher.cs#L154C13-L155C25" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Matcher.Execute(Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoBase)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Matcher.cs#L165C13-L168C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Matcher.cs#L165C13-L168C38" } ], "DocsId": "T:Microsoft.Extensions.FileSystemGlobbing.Matcher", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Matcher.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Matcher.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.MatcherExtensions.AddExcludePatterns(Microsoft.Extensions.FileSystemGlobbing.Matcher,System.Collections.Generic.IEnumerable{System.String}[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/MatcherExtensions.cs#L21C51-L28C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/MatcherExtensions.cs#L21C51-L28C10" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.MatcherExtensions.AddIncludePatterns(Microsoft.Extensions.FileSystemGlobbing.Matcher,System.Collections.Generic.IEnumerable{System.String}[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/MatcherExtensions.cs#L37C51-L44C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/MatcherExtensions.cs#L37C51-L44C10" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.MatcherExtensions.GetResultsInFullPath(Microsoft.Extensions.FileSystemGlobbing.Matcher,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/MatcherExtensions.cs#L54C13-L57C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/MatcherExtensions.cs#L54C13-L66C27" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.MatcherExtensions.Match(Microsoft.Extensions.FileSystemGlobbing.Matcher,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/MatcherExtensions.cs#L68C13-L68C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/MatcherExtensions.cs#L77C13-L77C95" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.MatcherExtensions.Match(Microsoft.Extensions.FileSystemGlobbing.Matcher,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/MatcherExtensions.cs#L80C13-L80C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/MatcherExtensions.cs#L89C13-L89C71" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.MatcherExtensions.Match(Microsoft.Extensions.FileSystemGlobbing.Matcher,System.Collections.Generic.IEnumerable{System.String})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/MatcherExtensions.cs#L91C13-L91C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/MatcherExtensions.cs#L100C13-L100C75" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.MatcherExtensions.Match(Microsoft.Extensions.FileSystemGlobbing.Matcher,System.String,System.Collections.Generic.IEnumerable{System.String})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/MatcherExtensions.cs#L103C13-L105C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/MatcherExtensions.cs#L112C13-L114C79" } ], "DocsId": "T:Microsoft.Extensions.FileSystemGlobbing.MatcherExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/MatcherExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/MatcherExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.PatternMatchingResult.#ctor(System.Collections.Generic.IEnumerable{Microsoft.Extensions.FileSystemGlobbing.FilePatternMatch})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/PatternMatchingResult.cs#L20C15-L23C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/PatternMatchingResult.cs#L20C15-L23C10" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.PatternMatchingResult.#ctor(System.Collections.Generic.IEnumerable{Microsoft.Extensions.FileSystemGlobbing.FilePatternMatch},System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/PatternMatchingResult.cs#L30C9-L36C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/PatternMatchingResult.cs#L30C9-L36C10" }, { "DocsId": "P:Microsoft.Extensions.FileSystemGlobbing.PatternMatchingResult.Files", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/PatternMatchingResult.cs#L41C54-L41C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/PatternMatchingResult.cs#L41C54-L41C58" }, { "DocsId": "P:Microsoft.Extensions.FileSystemGlobbing.PatternMatchingResult.HasMatches", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/PatternMatchingResult.cs#L46C34-L46C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/PatternMatchingResult.cs#L46C34-L46C38" } ], "DocsId": "T:Microsoft.Extensions.FileSystemGlobbing.PatternMatchingResult", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/PatternMatchingResult.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/PatternMatchingResult.cs" }, { "Members": [ { "DocsId": "P:Microsoft.Extensions.FileSystemGlobbing.Internal.ILinearPattern.Segments", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/ILinearPattern.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/ILinearPattern.cs" } ], "DocsId": "T:Microsoft.Extensions.FileSystemGlobbing.Internal.ILinearPattern", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/ILinearPattern.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/ILinearPattern.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.IPathSegment.Match(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/IPathSegment.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/IPathSegment.cs" }, { "DocsId": "P:Microsoft.Extensions.FileSystemGlobbing.Internal.IPathSegment.CanProduceStem", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/IPathSegment.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/IPathSegment.cs" } ], "DocsId": "T:Microsoft.Extensions.FileSystemGlobbing.Internal.IPathSegment", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/IPathSegment.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/IPathSegment.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.IPattern.CreatePatternContextForInclude", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/IPattern.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/IPattern.cs" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.IPattern.CreatePatternContextForExclude", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/IPattern.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/IPattern.cs" } ], "DocsId": "T:Microsoft.Extensions.FileSystemGlobbing.Internal.IPattern", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/IPattern.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/IPattern.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.IPatternContext.Declare(System.Action{Microsoft.Extensions.FileSystemGlobbing.Internal.IPathSegment,System.Boolean})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/IPatternContext.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/IPatternContext.cs" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.IPatternContext.Test(Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoBase)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/IPatternContext.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/IPatternContext.cs" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.IPatternContext.Test(Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileInfoBase)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/IPatternContext.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/IPatternContext.cs" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.IPatternContext.PushDirectory(Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoBase)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/IPatternContext.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/IPatternContext.cs" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.IPatternContext.PopDirectory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/IPatternContext.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/IPatternContext.cs" } ], "DocsId": "T:Microsoft.Extensions.FileSystemGlobbing.Internal.IPatternContext", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/IPatternContext.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/IPatternContext.cs" }, { "Members": [ { "DocsId": "P:Microsoft.Extensions.FileSystemGlobbing.Internal.IRaggedPattern.Segments", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/IRaggedPattern.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/IRaggedPattern.cs" }, { "DocsId": "P:Microsoft.Extensions.FileSystemGlobbing.Internal.IRaggedPattern.StartsWith", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/IRaggedPattern.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/IRaggedPattern.cs" }, { "DocsId": "P:Microsoft.Extensions.FileSystemGlobbing.Internal.IRaggedPattern.Contains", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/IRaggedPattern.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/IRaggedPattern.cs" }, { "DocsId": "P:Microsoft.Extensions.FileSystemGlobbing.Internal.IRaggedPattern.EndsWith", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/IRaggedPattern.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/IRaggedPattern.cs" } ], "DocsId": "T:Microsoft.Extensions.FileSystemGlobbing.Internal.IRaggedPattern", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/IRaggedPattern.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/IRaggedPattern.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.MatcherContext.#ctor(System.Collections.Generic.IEnumerable{Microsoft.Extensions.FileSystemGlobbing.Internal.IPattern},System.Collections.Generic.IEnumerable{Microsoft.Extensions.FileSystemGlobbing.Internal.IPattern},Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoBase,System.StringComparison)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/MatcherContext.cs#L25C9-L46C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/MatcherContext.cs#L25C9-L46C10" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.MatcherContext.Execute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/MatcherContext.cs#L50C13-L54C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/MatcherContext.cs#L50C13-L54C72" } ], "DocsId": "T:Microsoft.Extensions.FileSystemGlobbing.Internal.MatcherContext", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/MatcherContext.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/MatcherContext.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternTestResult.Success(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternTestResult.cs#L25C13-L25C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternTestResult.cs#L25C13-L25C74" }, { "DocsId": "F:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternTestResult.Failed", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternTestResult.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternTestResult.cs" }, { "DocsId": "P:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternTestResult.IsSuccessful", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternTestResult.cs#L14C36-L14C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternTestResult.cs#L14C36-L14C40" }, { "DocsId": "P:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternTestResult.Stem", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternTestResult.cs#L15C31-L15C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternTestResult.cs#L15C31-L15C35" } ], "DocsId": "T:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternTestResult", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternTestResult.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternTestResult.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.Patterns.PatternBuilder.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/Patterns/PatternBuilder.cs#L16C9-L19C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/Patterns/PatternBuilder.cs#L16C9-L19C10" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.Patterns.PatternBuilder.#ctor(System.StringComparison)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/Patterns/PatternBuilder.cs#L21C9-L24C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/Patterns/PatternBuilder.cs#L21C9-L24C10" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.Patterns.PatternBuilder.Build(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/Patterns/PatternBuilder.cs#L30C13-L202C134" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/Patterns/PatternBuilder.cs#L30C13-L202C134" }, { "DocsId": "P:Microsoft.Extensions.FileSystemGlobbing.Internal.Patterns.PatternBuilder.ComparisonType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/Patterns/PatternBuilder.cs#L26C50-L26C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/Patterns/PatternBuilder.cs#L26C50-L26C54" } ], "DocsId": "T:Microsoft.Extensions.FileSystemGlobbing.Internal.Patterns.PatternBuilder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/Patterns/PatternBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/Patterns/PatternBuilder.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContext`1.Declare(System.Action{Microsoft.Extensions.FileSystemGlobbing.Internal.IPathSegment,System.Boolean})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContext.cs#L15C75-L15C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContext.cs#L15C75-L15C76" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContext`1.Test(Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileInfoBase)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContext.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContext.cs" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContext`1.Test(Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoBase)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContext.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContext.cs" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContext`1.PushDirectory(Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoBase)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContext.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContext.cs" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContext`1.PopDirectory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContext.cs#L25C13-L26C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContext.cs#L25C13-L26C10" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContext`1.PushDataFrame(`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContext.cs#L30C13-L32C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContext.cs#L30C13-L32C10" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContext`1.IsStackEmpty", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContext.cs#L36C13-L36C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContext.cs#L36C13-L36C38" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContext`1.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContext.cs#L12C9-L12C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContext.cs#L12C9-L12C55" }, { "DocsId": "F:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContext`1.Frame", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContext.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContext.cs" } ], "DocsId": "T:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContext`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContext.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContext.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextLinear.#ctor(Microsoft.Extensions.FileSystemGlobbing.Internal.ILinearPattern)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextLinear.cs#L13C9-L18C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextLinear.cs#L13C9-L18C10" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextLinear.Test(Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileInfoBase)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextLinear.cs#L22C13-L32C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextLinear.cs#L22C13-L32C45" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextLinear.PushDirectory(Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoBase)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextLinear.cs#L38C13-L65C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextLinear.cs#L38C13-L65C10" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextLinear.IsLastSegment", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextLinear.cs#L83C13-L83C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextLinear.cs#L83C13-L83C69" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextLinear.TestMatchingSegment(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextLinear.cs#L88C13-L93C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextLinear.cs#L88C13-L93C70" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextLinear.CalculateStem(Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileInfoBase)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextLinear.cs#L98C13-L98C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextLinear.cs#L98C13-L98C77" }, { "DocsId": "P:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextLinear.Pattern", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextLinear.cs#L79C44-L79C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextLinear.cs#L79C44-L79C48" }, { "DocsId": "T:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextLinear.FrameData", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextLinear.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextLinear.cs" } ], "DocsId": "T:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextLinear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextLinear.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextLinear.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextLinearExclude.#ctor(Microsoft.Extensions.FileSystemGlobbing.Internal.ILinearPattern)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextLinearExclude.cs#L12C15-L14C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextLinearExclude.cs#L12C15-L14C10" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextLinearExclude.Test(Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoBase)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextLinearExclude.cs#L18C13-L28C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextLinearExclude.cs#L18C13-L28C75" } ], "DocsId": "T:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextLinearExclude", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextLinearExclude.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextLinearExclude.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextLinearInclude.#ctor(Microsoft.Extensions.FileSystemGlobbing.Internal.ILinearPattern)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextLinearInclude.cs#L12C15-L14C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextLinearInclude.cs#L12C15-L14C10" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextLinearInclude.Declare(System.Action{Microsoft.Extensions.FileSystemGlobbing.Internal.IPathSegment,System.Boolean})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextLinearInclude.cs#L18C13-L32C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextLinearInclude.cs#L18C13-L32C10" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextLinearInclude.Test(Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoBase)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextLinearInclude.cs#L36C13-L46C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextLinearInclude.cs#L36C13-L46C76" } ], "DocsId": "T:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextLinearInclude", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextLinearInclude.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextLinearInclude.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextRagged.#ctor(Microsoft.Extensions.FileSystemGlobbing.Internal.IRaggedPattern)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRagged.cs#L12C9-L17C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRagged.cs#L12C9-L17C10" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextRagged.Test(Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileInfoBase)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRagged.cs#L21C13-L30C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRagged.cs#L21C13-L30C45" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextRagged.PushDirectory(Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoBase)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRagged.cs#L36C13-L102C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRagged.cs#L36C13-L102C10" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextRagged.PopDirectory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRagged.cs#L106C13-L111C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRagged.cs#L106C13-L111C10" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextRagged.IsStartingGroup", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRagged.cs#L138C13-L138C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRagged.cs#L138C13-L138C50" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextRagged.IsEndingGroup", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRagged.cs#L143C13-L143C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRagged.cs#L143C13-L143C70" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextRagged.TestMatchingSegment(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRagged.cs#L148C13-L152C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRagged.cs#L148C13-L152C72" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextRagged.TestMatchingGroup(Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileSystemInfoBase)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRagged.cs#L157C13-L174C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRagged.cs#L157C13-L174C25" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextRagged.CalculateStem(Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileInfoBase)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRagged.cs#L179C13-L179C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRagged.cs#L179C13-L179C77" }, { "DocsId": "P:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextRagged.Pattern", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRagged.cs#L134C44-L134C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRagged.cs#L134C44-L134C48" }, { "DocsId": "T:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextRagged.FrameData", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRagged.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRagged.cs" } ], "DocsId": "T:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextRagged", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRagged.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRagged.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextRaggedExclude.#ctor(Microsoft.Extensions.FileSystemGlobbing.Internal.IRaggedPattern)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRaggedExclude.cs#L12C15-L14C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRaggedExclude.cs#L12C15-L14C10" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextRaggedExclude.Test(Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoBase)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRaggedExclude.cs#L18C13-L42C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRaggedExclude.cs#L18C13-L42C26" } ], "DocsId": "T:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextRaggedExclude", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRaggedExclude.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRaggedExclude.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextRaggedInclude.#ctor(Microsoft.Extensions.FileSystemGlobbing.Internal.IRaggedPattern)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRaggedInclude.cs#L13C15-L15C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRaggedInclude.cs#L13C15-L15C10" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextRaggedInclude.Declare(System.Action{Microsoft.Extensions.FileSystemGlobbing.Internal.IPathSegment,System.Boolean})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRaggedInclude.cs#L19C13-L37C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRaggedInclude.cs#L19C13-L37C10" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextRaggedInclude.Test(Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoBase)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRaggedInclude.cs#L41C13-L57C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRaggedInclude.cs#L41C13-L57C25" } ], "DocsId": "T:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextRaggedInclude", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRaggedInclude.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRaggedInclude.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments.CurrentPathSegment.Match(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/CurrentPathSegment.cs#L12C44-L12C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/CurrentPathSegment.cs#L12C44-L12C49" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments.CurrentPathSegment.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/CurrentPathSegment.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/CurrentPathSegment.cs" }, { "DocsId": "P:Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments.CurrentPathSegment.CanProduceStem", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/CurrentPathSegment.cs#L10C39-L10C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/CurrentPathSegment.cs#L10C39-L10C44" } ], "DocsId": "T:Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments.CurrentPathSegment", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/CurrentPathSegment.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/CurrentPathSegment.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments.LiteralPathSegment.#ctor(System.String,System.StringComparison)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/LiteralPathSegment.cs#L16C9-L22C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/LiteralPathSegment.cs#L16C9-L22C10" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments.LiteralPathSegment.Match(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/LiteralPathSegment.cs#L28C13-L28C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/LiteralPathSegment.cs#L28C13-L28C65" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments.LiteralPathSegment.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/LiteralPathSegment.cs#L33C13-L35C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/LiteralPathSegment.cs#L33C13-L35C68" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments.LiteralPathSegment.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/LiteralPathSegment.cs#L40C13-L40C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/LiteralPathSegment.cs#L40C13-L40C97" }, { "DocsId": "P:Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments.LiteralPathSegment.CanProduceStem", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/LiteralPathSegment.cs#L14C39-L14C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/LiteralPathSegment.cs#L14C39-L14C44" }, { "DocsId": "P:Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments.LiteralPathSegment.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/LiteralPathSegment.cs#L24C31-L24C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/LiteralPathSegment.cs#L24C31-L24C35" } ], "DocsId": "T:Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments.LiteralPathSegment", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/LiteralPathSegment.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/LiteralPathSegment.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments.ParentPathSegment.Match(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/ParentPathSegment.cs#L16C13-L16C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/ParentPathSegment.cs#L16C13-L16C82" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments.ParentPathSegment.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/ParentPathSegment.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/ParentPathSegment.cs" }, { "DocsId": "P:Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments.ParentPathSegment.CanProduceStem", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/ParentPathSegment.cs#L12C39-L12C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/ParentPathSegment.cs#L12C39-L12C44" } ], "DocsId": "T:Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments.ParentPathSegment", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/ParentPathSegment.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/ParentPathSegment.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments.RecursiveWildcardSegment.Match(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/RecursiveWildcardSegment.cs#L12C44-L12C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/RecursiveWildcardSegment.cs#L12C44-L12C49" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments.RecursiveWildcardSegment.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/RecursiveWildcardSegment.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/RecursiveWildcardSegment.cs" }, { "DocsId": "P:Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments.RecursiveWildcardSegment.CanProduceStem", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/RecursiveWildcardSegment.cs#L10C39-L10C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/RecursiveWildcardSegment.cs#L10C39-L10C43" } ], "DocsId": "T:Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments.RecursiveWildcardSegment", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/RecursiveWildcardSegment.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/RecursiveWildcardSegment.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments.WildcardPathSegment.#ctor(System.String,System.Collections.Generic.List{System.String},System.String,System.StringComparison)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/WildcardPathSegment.cs#L18C9-L32C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/WildcardPathSegment.cs#L18C9-L32C10" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments.WildcardPathSegment.Match(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/WildcardPathSegment.cs#L44C13-L79C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/WildcardPathSegment.cs#L44C13-L79C25" }, { "DocsId": "F:Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments.WildcardPathSegment.MatchAll", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/WildcardPathSegment.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/WildcardPathSegment.cs" }, { "DocsId": "P:Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments.WildcardPathSegment.CanProduceStem", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/WildcardPathSegment.cs#L34C44-L34C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/WildcardPathSegment.cs#L34C44-L34C56" }, { "DocsId": "P:Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments.WildcardPathSegment.BeginsWith", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/WildcardPathSegment.cs#L36C36-L36C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/WildcardPathSegment.cs#L36C36-L36C40" }, { "DocsId": "P:Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments.WildcardPathSegment.Contains", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/WildcardPathSegment.cs#L38C40-L38C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/WildcardPathSegment.cs#L38C40-L38C44" }, { "DocsId": "P:Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments.WildcardPathSegment.EndsWith", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/WildcardPathSegment.cs#L40C34-L40C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/WildcardPathSegment.cs#L40C34-L40C38" } ], "DocsId": "T:Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments.WildcardPathSegment", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/WildcardPathSegment.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/WildcardPathSegment.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoBase.EnumerateFileSystemInfos", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/DirectoryInfoBase.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/DirectoryInfoBase.cs" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoBase.GetDirectory(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/DirectoryInfoBase.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/DirectoryInfoBase.cs" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoBase.GetFile(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/DirectoryInfoBase.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/DirectoryInfoBase.cs" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoBase.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/DirectoryInfoBase.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/DirectoryInfoBase.cs" } ], "DocsId": "T:Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoBase", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/DirectoryInfoBase.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/DirectoryInfoBase.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoWrapper.#ctor(System.IO.DirectoryInfo)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/DirectoryInfoWrapper.cs#L24C15-L25C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/DirectoryInfoWrapper.cs#L24C15-L25C12" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoWrapper.EnumerateFileSystemInfos", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/DirectoryInfoWrapper.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/DirectoryInfoWrapper.cs" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoWrapper.GetDirectory(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/DirectoryInfoWrapper.cs#L72C13-L96C119" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/DirectoryInfoWrapper.cs#L72C13-L96C119" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoWrapper.GetFile(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/DirectoryInfoWrapper.cs#L103C16-L103C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/DirectoryInfoWrapper.cs#L103C16-L103C94" }, { "DocsId": "P:Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoWrapper.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/DirectoryInfoWrapper.cs#L106C40-L106C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/DirectoryInfoWrapper.cs#L106C40-L106C82" }, { "DocsId": "P:Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoWrapper.FullName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/DirectoryInfoWrapper.cs#L114C44-L114C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/DirectoryInfoWrapper.cs#L114C44-L114C67" }, { "DocsId": "P:Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoWrapper.ParentDirectory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/DirectoryInfoWrapper.cs#L123C16-L123C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/DirectoryInfoWrapper.cs#L123C16-L123C64" } ], "DocsId": "T:Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoWrapper", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/DirectoryInfoWrapper.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/DirectoryInfoWrapper.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileInfoBase.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/FileInfoBase.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/FileInfoBase.cs" } ], "DocsId": "T:Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileInfoBase", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/FileInfoBase.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/FileInfoBase.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileInfoWrapper.#ctor(System.IO.FileInfo)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/FileInfoWrapper.cs#L20C9-L25C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/FileInfoWrapper.cs#L20C9-L25C10" }, { "DocsId": "P:Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileInfoWrapper.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/FileInfoWrapper.cs#L33C40-L33C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/FileInfoWrapper.cs#L33C40-L33C54" }, { "DocsId": "P:Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileInfoWrapper.FullName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/FileInfoWrapper.cs#L41C44-L41C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/FileInfoWrapper.cs#L41C44-L41C62" }, { "DocsId": "P:Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileInfoWrapper.ParentDirectory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/FileInfoWrapper.cs#L50C16-L50C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/FileInfoWrapper.cs#L50C16-L50C62" } ], "DocsId": "T:Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileInfoWrapper", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/FileInfoWrapper.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/FileInfoWrapper.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileSystemInfoBase.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/FileSystemInfoBase.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/FileSystemInfoBase.cs" }, { "DocsId": "P:Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileSystemInfoBase.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/FileSystemInfoBase.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/FileSystemInfoBase.cs" }, { "DocsId": "P:Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileSystemInfoBase.FullName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/FileSystemInfoBase.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/FileSystemInfoBase.cs" }, { "DocsId": "P:Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileSystemInfoBase.ParentDirectory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/FileSystemInfoBase.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/FileSystemInfoBase.cs" } ], "DocsId": "T:Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileSystemInfoBase", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/FileSystemInfoBase.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/FileSystemInfoBase.cs" }, { "Members": [ { "DocsId": "F:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextLinear.FrameData.IsNotApplicable", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextLinear.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextLinear.cs" }, { "DocsId": "F:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextLinear.FrameData.SegmentIndex", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextLinear.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextLinear.cs" }, { "DocsId": "F:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextLinear.FrameData.InStem", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextLinear.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextLinear.cs" }, { "DocsId": "P:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextLinear.FrameData.StemItems", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextLinear.cs#L74C47-L74C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextLinear.cs#L74C47-L74C80" }, { "DocsId": "P:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextLinear.FrameData.Stem", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextLinear.cs#L76C36-L76C92" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextLinear.cs#L76C36-L76C92" } ], "DocsId": "T:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextLinear.FrameData", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextLinear.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextLinear.cs" }, { "Members": [ { "DocsId": "F:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextRagged.FrameData.IsNotApplicable", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRagged.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRagged.cs" }, { "DocsId": "F:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextRagged.FrameData.SegmentGroupIndex", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRagged.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRagged.cs" }, { "DocsId": "F:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextRagged.FrameData.SegmentGroup", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRagged.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRagged.cs" }, { "DocsId": "F:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextRagged.FrameData.BacktrackAvailable", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRagged.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRagged.cs" }, { "DocsId": "F:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextRagged.FrameData.SegmentIndex", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRagged.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRagged.cs" }, { "DocsId": "F:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextRagged.FrameData.InStem", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRagged.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRagged.cs" }, { "DocsId": "P:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextRagged.FrameData.StemItems", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRagged.cs#L129C47-L129C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRagged.cs#L129C47-L129C80" }, { "DocsId": "P:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextRagged.FrameData.Stem", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRagged.cs#L131C36-L131C92" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRagged.cs#L131C36-L131C92" } ], "DocsId": "T:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextRagged.FrameData", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRagged.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRagged.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Hosting.Abstractions.json b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Hosting.Abstractions.json index 984df4be8bc..bf15dfa74fa 100644 --- a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Hosting.Abstractions.json +++ b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Hosting.Abstractions.json @@ -1,461 +1,460 @@ { "Assembly": "Microsoft.Extensions.Hosting.Abstractions", - "GUID": "9886C20028DA439281CAE9B9854111BAFFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "B116A6EE86BF4B5A96163C500714C989FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionHostedServiceExtensions.AddHostedService``1(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/ServiceCollectionHostedServiceExtensions.cs#L25C13-L27C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/ServiceCollectionHostedServiceExtensions.cs#L25C13-L27C29" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionHostedServiceExtensions.AddHostedService``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Func{System.IServiceProvider,``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/ServiceCollectionHostedServiceExtensions.cs#L40C13-L42C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/ServiceCollectionHostedServiceExtensions.cs#L40C13-L42C29" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.ServiceCollectionHostedServiceExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/ServiceCollectionHostedServiceExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/ServiceCollectionHostedServiceExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Hosting.BackgroundService.ExecuteAsync(System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/BackgroundService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/BackgroundService.cs" }, { "DocsId": "M:Microsoft.Extensions.Hosting.BackgroundService.StartAsync(System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/BackgroundService.cs#L43C13-L55C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/BackgroundService.cs#L43C13-L55C39" }, { "DocsId": "M:Microsoft.Extensions.Hosting.BackgroundService.StopAsync(System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/BackgroundService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/BackgroundService.cs" }, { "DocsId": "M:Microsoft.Extensions.Hosting.BackgroundService.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/BackgroundService.cs#L94C13-L95C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/BackgroundService.cs#L94C13-L95C10" }, { "DocsId": "M:Microsoft.Extensions.Hosting.BackgroundService.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/BackgroundService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/BackgroundService.cs" }, { "DocsId": "P:Microsoft.Extensions.Hosting.BackgroundService.ExecuteTask", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/BackgroundService.cs#L24C45-L24C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/BackgroundService.cs#L24C45-L24C57" } ], "DocsId": "T:Microsoft.Extensions.Hosting.BackgroundService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/BackgroundService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/BackgroundService.cs" }, { "Members": [ { "DocsId": "F:Microsoft.Extensions.Hosting.EnvironmentName.Development", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/EnvironmentName.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/EnvironmentName.cs" }, { "DocsId": "F:Microsoft.Extensions.Hosting.EnvironmentName.Staging", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/EnvironmentName.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/EnvironmentName.cs" }, { "DocsId": "F:Microsoft.Extensions.Hosting.EnvironmentName.Production", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/EnvironmentName.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/EnvironmentName.cs" } ], "DocsId": "T:Microsoft.Extensions.Hosting.EnvironmentName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/EnvironmentName.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/EnvironmentName.cs" }, { "Members": [ { "DocsId": "F:Microsoft.Extensions.Hosting.Environments.Development", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/Environments.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/Environments.cs" }, { "DocsId": "F:Microsoft.Extensions.Hosting.Environments.Staging", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/Environments.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/Environments.cs" }, { "DocsId": "F:Microsoft.Extensions.Hosting.Environments.Production", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/Environments.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/Environments.cs" } ], "DocsId": "T:Microsoft.Extensions.Hosting.Environments", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/Environments.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/Environments.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Hosting.HostAbortedException.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostAbortedException.cs#L23C41-L23C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostAbortedException.cs#L23C41-L23C81" }, { "DocsId": "M:Microsoft.Extensions.Hosting.HostAbortedException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostAbortedException.cs#L37C56-L37C107" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostAbortedException.cs#L37C56-L37C107" }, { "DocsId": "M:Microsoft.Extensions.Hosting.HostAbortedException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostAbortedException.cs#L55C83-L55C150" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostAbortedException.cs#L55C83-L55C150" } ], "DocsId": "T:Microsoft.Extensions.Hosting.HostAbortedException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostAbortedException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostAbortedException.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Hosting.HostBuilderContext.#ctor(System.Collections.Generic.IDictionary{System.Object,System.Object})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostBuilderContext.cs#L19C9-L24C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostBuilderContext.cs#L19C9-L24C10" }, { "DocsId": "P:Microsoft.Extensions.Hosting.HostBuilderContext.HostingEnvironment", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostBuilderContext.cs#L29C54-L29C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostBuilderContext.cs#L29C54-L29C58" }, { "DocsId": "P:Microsoft.Extensions.Hosting.HostBuilderContext.Configuration", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostBuilderContext.cs#L34C47-L34C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostBuilderContext.cs#L34C47-L34C51" }, { "DocsId": "P:Microsoft.Extensions.Hosting.HostBuilderContext.Properties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostBuilderContext.cs#L39C57-L39C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostBuilderContext.cs#L39C57-L39C61" } ], "DocsId": "T:Microsoft.Extensions.Hosting.HostBuilderContext", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostBuilderContext.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostBuilderContext.cs" }, { "Members": [ { "DocsId": "F:Microsoft.Extensions.Hosting.HostDefaults.ApplicationKey", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostDefaults.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostDefaults.cs" }, { "DocsId": "F:Microsoft.Extensions.Hosting.HostDefaults.EnvironmentKey", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostDefaults.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostDefaults.cs" }, { "DocsId": "F:Microsoft.Extensions.Hosting.HostDefaults.ContentRootKey", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostDefaults.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostDefaults.cs" } ], "DocsId": "T:Microsoft.Extensions.Hosting.HostDefaults", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostDefaults.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostDefaults.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Hosting.HostEnvironmentEnvExtensions.IsDevelopment(Microsoft.Extensions.Hosting.IHostEnvironment)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostEnvironmentEnvExtensions.cs#L20C13-L22C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostEnvironmentEnvExtensions.cs#L20C13-L22C76" }, { "DocsId": "M:Microsoft.Extensions.Hosting.HostEnvironmentEnvExtensions.IsStaging(Microsoft.Extensions.Hosting.IHostEnvironment)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostEnvironmentEnvExtensions.cs#L32C13-L34C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostEnvironmentEnvExtensions.cs#L32C13-L34C72" }, { "DocsId": "M:Microsoft.Extensions.Hosting.HostEnvironmentEnvExtensions.IsProduction(Microsoft.Extensions.Hosting.IHostEnvironment)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostEnvironmentEnvExtensions.cs#L44C13-L46C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostEnvironmentEnvExtensions.cs#L44C13-L46C75" }, { "DocsId": "M:Microsoft.Extensions.Hosting.HostEnvironmentEnvExtensions.IsEnvironment(Microsoft.Extensions.Hosting.IHostEnvironment,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostEnvironmentEnvExtensions.cs#L59C13-L64C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostEnvironmentEnvExtensions.cs#L59C13-L64C53" } ], "DocsId": "T:Microsoft.Extensions.Hosting.HostEnvironmentEnvExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostEnvironmentEnvExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostEnvironmentEnvExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Hosting.HostingAbstractionsHostBuilderExtensions.Start(Microsoft.Extensions.Hosting.IHostBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostingAbstractionsHostBuilderExtensions.cs#L21C13-L21C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostingAbstractionsHostBuilderExtensions.cs#L21C13-L21C70" }, { "DocsId": "M:Microsoft.Extensions.Hosting.HostingAbstractionsHostBuilderExtensions.StartAsync(Microsoft.Extensions.Hosting.IHostBuilder,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostingAbstractionsHostBuilderExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostingAbstractionsHostBuilderExtensions.cs" } ], "DocsId": "T:Microsoft.Extensions.Hosting.HostingAbstractionsHostBuilderExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostingAbstractionsHostBuilderExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostingAbstractionsHostBuilderExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Hosting.HostingAbstractionsHostExtensions.Start(Microsoft.Extensions.Hosting.IHost)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostingAbstractionsHostExtensions.cs#L22C13-L23C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostingAbstractionsHostExtensions.cs#L22C13-L23C10" }, { "DocsId": "M:Microsoft.Extensions.Hosting.HostingAbstractionsHostExtensions.StopAsync(Microsoft.Extensions.Hosting.IHost,System.TimeSpan)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostingAbstractionsHostExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostingAbstractionsHostExtensions.cs" }, { "DocsId": "M:Microsoft.Extensions.Hosting.HostingAbstractionsHostExtensions.WaitForShutdown(Microsoft.Extensions.Hosting.IHost)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostingAbstractionsHostExtensions.cs#L44C13-L45C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostingAbstractionsHostExtensions.cs#L44C13-L45C10" }, { "DocsId": "M:Microsoft.Extensions.Hosting.HostingAbstractionsHostExtensions.Run(Microsoft.Extensions.Hosting.IHost)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostingAbstractionsHostExtensions.cs#L53C13-L54C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostingAbstractionsHostExtensions.cs#L53C13-L54C10" }, { "DocsId": "M:Microsoft.Extensions.Hosting.HostingAbstractionsHostExtensions.RunAsync(Microsoft.Extensions.Hosting.IHost,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostingAbstractionsHostExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostingAbstractionsHostExtensions.cs" }, { "DocsId": "M:Microsoft.Extensions.Hosting.HostingAbstractionsHostExtensions.WaitForShutdownAsync(Microsoft.Extensions.Hosting.IHost,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostingAbstractionsHostExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostingAbstractionsHostExtensions.cs" } ], "DocsId": "T:Microsoft.Extensions.Hosting.HostingAbstractionsHostExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostingAbstractionsHostExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostingAbstractionsHostExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Hosting.HostingEnvironmentExtensions.IsDevelopment(Microsoft.Extensions.Hosting.IHostingEnvironment)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostingEnvironmentExtensions.cs#L21C13-L23C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostingEnvironmentExtensions.cs#L21C13-L23C82" }, { "DocsId": "M:Microsoft.Extensions.Hosting.HostingEnvironmentExtensions.IsStaging(Microsoft.Extensions.Hosting.IHostingEnvironment)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostingEnvironmentExtensions.cs#L33C13-L35C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostingEnvironmentExtensions.cs#L33C13-L35C78" }, { "DocsId": "M:Microsoft.Extensions.Hosting.HostingEnvironmentExtensions.IsProduction(Microsoft.Extensions.Hosting.IHostingEnvironment)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostingEnvironmentExtensions.cs#L45C13-L47C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostingEnvironmentExtensions.cs#L45C13-L47C81" }, { "DocsId": "M:Microsoft.Extensions.Hosting.HostingEnvironmentExtensions.IsEnvironment(Microsoft.Extensions.Hosting.IHostingEnvironment,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostingEnvironmentExtensions.cs#L60C13-L65C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostingEnvironmentExtensions.cs#L60C13-L65C53" } ], "DocsId": "T:Microsoft.Extensions.Hosting.HostingEnvironmentExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostingEnvironmentExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostingEnvironmentExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Hosting.IApplicationLifetime.StopApplication", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IApplicationLifetime.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IApplicationLifetime.cs" }, { "DocsId": "P:Microsoft.Extensions.Hosting.IApplicationLifetime.ApplicationStarted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IApplicationLifetime.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IApplicationLifetime.cs" }, { "DocsId": "P:Microsoft.Extensions.Hosting.IApplicationLifetime.ApplicationStopping", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IApplicationLifetime.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IApplicationLifetime.cs" }, { "DocsId": "P:Microsoft.Extensions.Hosting.IApplicationLifetime.ApplicationStopped", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IApplicationLifetime.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IApplicationLifetime.cs" } ], "DocsId": "T:Microsoft.Extensions.Hosting.IApplicationLifetime", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IApplicationLifetime.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IApplicationLifetime.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Hosting.IHost.StartAsync(System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHost.cs" }, { "DocsId": "M:Microsoft.Extensions.Hosting.IHost.StopAsync(System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHost.cs" }, { "DocsId": "P:Microsoft.Extensions.Hosting.IHost.Services", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHost.cs" } ], "DocsId": "T:Microsoft.Extensions.Hosting.IHost", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHost.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Hosting.IHostApplicationBuilder.ConfigureContainer``1(Microsoft.Extensions.DependencyInjection.IServiceProviderFactory{``0},System.Action{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostApplicationBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostApplicationBuilder.cs" }, { "DocsId": "P:Microsoft.Extensions.Hosting.IHostApplicationBuilder.Properties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostApplicationBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostApplicationBuilder.cs" }, { "DocsId": "P:Microsoft.Extensions.Hosting.IHostApplicationBuilder.Configuration", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostApplicationBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostApplicationBuilder.cs" }, { "DocsId": "P:Microsoft.Extensions.Hosting.IHostApplicationBuilder.Environment", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostApplicationBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostApplicationBuilder.cs" }, { "DocsId": "P:Microsoft.Extensions.Hosting.IHostApplicationBuilder.Logging", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostApplicationBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostApplicationBuilder.cs" }, { "DocsId": "P:Microsoft.Extensions.Hosting.IHostApplicationBuilder.Metrics", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostApplicationBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostApplicationBuilder.cs" }, { "DocsId": "P:Microsoft.Extensions.Hosting.IHostApplicationBuilder.Services", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostApplicationBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostApplicationBuilder.cs" } ], "DocsId": "T:Microsoft.Extensions.Hosting.IHostApplicationBuilder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostApplicationBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostApplicationBuilder.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Hosting.IHostApplicationLifetime.StopApplication", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostApplicationLifetime.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostApplicationLifetime.cs" }, { "DocsId": "P:Microsoft.Extensions.Hosting.IHostApplicationLifetime.ApplicationStarted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostApplicationLifetime.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostApplicationLifetime.cs" }, { "DocsId": "P:Microsoft.Extensions.Hosting.IHostApplicationLifetime.ApplicationStopping", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostApplicationLifetime.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostApplicationLifetime.cs" }, { "DocsId": "P:Microsoft.Extensions.Hosting.IHostApplicationLifetime.ApplicationStopped", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostApplicationLifetime.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostApplicationLifetime.cs" } ], "DocsId": "T:Microsoft.Extensions.Hosting.IHostApplicationLifetime", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostApplicationLifetime.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostApplicationLifetime.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Hosting.IHostBuilder.ConfigureHostConfiguration(System.Action{Microsoft.Extensions.Configuration.IConfigurationBuilder})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostBuilder.cs" }, { "DocsId": "M:Microsoft.Extensions.Hosting.IHostBuilder.ConfigureAppConfiguration(System.Action{Microsoft.Extensions.Hosting.HostBuilderContext,Microsoft.Extensions.Configuration.IConfigurationBuilder})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostBuilder.cs" }, { "DocsId": "M:Microsoft.Extensions.Hosting.IHostBuilder.ConfigureServices(System.Action{Microsoft.Extensions.Hosting.HostBuilderContext,Microsoft.Extensions.DependencyInjection.IServiceCollection})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostBuilder.cs" }, { "DocsId": "M:Microsoft.Extensions.Hosting.IHostBuilder.UseServiceProviderFactory``1(Microsoft.Extensions.DependencyInjection.IServiceProviderFactory{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostBuilder.cs" }, { "DocsId": "M:Microsoft.Extensions.Hosting.IHostBuilder.UseServiceProviderFactory``1(System.Func{Microsoft.Extensions.Hosting.HostBuilderContext,Microsoft.Extensions.DependencyInjection.IServiceProviderFactory{``0}})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostBuilder.cs" }, { "DocsId": "M:Microsoft.Extensions.Hosting.IHostBuilder.ConfigureContainer``1(System.Action{Microsoft.Extensions.Hosting.HostBuilderContext,``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostBuilder.cs" }, { "DocsId": "M:Microsoft.Extensions.Hosting.IHostBuilder.Build", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostBuilder.cs" }, { "DocsId": "P:Microsoft.Extensions.Hosting.IHostBuilder.Properties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostBuilder.cs" } ], "DocsId": "T:Microsoft.Extensions.Hosting.IHostBuilder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostBuilder.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Hosting.IHostedLifecycleService.StartingAsync(System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostedLifecycleService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostedLifecycleService.cs" }, { "DocsId": "M:Microsoft.Extensions.Hosting.IHostedLifecycleService.StartedAsync(System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostedLifecycleService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostedLifecycleService.cs" }, { "DocsId": "M:Microsoft.Extensions.Hosting.IHostedLifecycleService.StoppingAsync(System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostedLifecycleService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostedLifecycleService.cs" }, { "DocsId": "M:Microsoft.Extensions.Hosting.IHostedLifecycleService.StoppedAsync(System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostedLifecycleService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostedLifecycleService.cs" } ], "DocsId": "T:Microsoft.Extensions.Hosting.IHostedLifecycleService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostedLifecycleService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostedLifecycleService.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Hosting.IHostedService.StartAsync(System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostedService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostedService.cs" }, { "DocsId": "M:Microsoft.Extensions.Hosting.IHostedService.StopAsync(System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostedService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostedService.cs" } ], "DocsId": "T:Microsoft.Extensions.Hosting.IHostedService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostedService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostedService.cs" }, { "Members": [ { "DocsId": "P:Microsoft.Extensions.Hosting.IHostEnvironment.EnvironmentName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostEnvironment.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostEnvironment.cs" }, { "DocsId": "P:Microsoft.Extensions.Hosting.IHostEnvironment.ApplicationName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostEnvironment.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostEnvironment.cs" }, { "DocsId": "P:Microsoft.Extensions.Hosting.IHostEnvironment.ContentRootPath", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostEnvironment.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostEnvironment.cs" }, { "DocsId": "P:Microsoft.Extensions.Hosting.IHostEnvironment.ContentRootFileProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostEnvironment.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostEnvironment.cs" } ], "DocsId": "T:Microsoft.Extensions.Hosting.IHostEnvironment", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostEnvironment.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostEnvironment.cs" }, { "Members": [ { "DocsId": "P:Microsoft.Extensions.Hosting.IHostingEnvironment.EnvironmentName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostingEnvironment.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostingEnvironment.cs" }, { "DocsId": "P:Microsoft.Extensions.Hosting.IHostingEnvironment.ApplicationName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostingEnvironment.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostingEnvironment.cs" }, { "DocsId": "P:Microsoft.Extensions.Hosting.IHostingEnvironment.ContentRootPath", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostingEnvironment.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostingEnvironment.cs" }, { "DocsId": "P:Microsoft.Extensions.Hosting.IHostingEnvironment.ContentRootFileProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostingEnvironment.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostingEnvironment.cs" } ], "DocsId": "T:Microsoft.Extensions.Hosting.IHostingEnvironment", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostingEnvironment.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostingEnvironment.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Hosting.IHostLifetime.WaitForStartAsync(System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostLifetime.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostLifetime.cs" }, { "DocsId": "M:Microsoft.Extensions.Hosting.IHostLifetime.StopAsync(System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostLifetime.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostLifetime.cs" } ], "DocsId": "T:Microsoft.Extensions.Hosting.IHostLifetime", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostLifetime.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostLifetime.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Hosting.Systemd.json b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Hosting.Systemd.json index 832f01b02df..ed1dc922321 100644 --- a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Hosting.Systemd.json +++ b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Hosting.Systemd.json @@ -1,107 +1,106 @@ { "Assembly": "Microsoft.Extensions.Hosting.Systemd", - "GUID": "B9EE59E7A279433BAD58AE1D05367EFCFFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "3852F205682E43239A87272D8D90F137FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.Hosting.SystemdHostBuilderExtensions.UseSystemd(Microsoft.Extensions.Hosting.IHostBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Systemd/src/SystemdHostBuilderExtensions.cs#L35C13-L44C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Systemd/src/SystemdHostBuilderExtensions.cs#L35C13-L44C32" }, { "DocsId": "M:Microsoft.Extensions.Hosting.SystemdHostBuilderExtensions.AddSystemd(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Systemd/src/SystemdHostBuilderExtensions.cs#L70C13-L76C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Systemd/src/SystemdHostBuilderExtensions.cs#L70C13-L76C29" } ], "DocsId": "T:Microsoft.Extensions.Hosting.SystemdHostBuilderExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Systemd/src/SystemdHostBuilderExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Systemd/src/SystemdHostBuilderExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Hosting.Systemd.ISystemdNotifier.Notify(Microsoft.Extensions.Hosting.Systemd.ServiceState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Systemd/src/ISystemdNotifier.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Systemd/src/ISystemdNotifier.cs" }, { "DocsId": "P:Microsoft.Extensions.Hosting.Systemd.ISystemdNotifier.IsEnabled", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Systemd/src/ISystemdNotifier.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Systemd/src/ISystemdNotifier.cs" } ], "DocsId": "T:Microsoft.Extensions.Hosting.Systemd.ISystemdNotifier", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Systemd/src/ISystemdNotifier.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Systemd/src/ISystemdNotifier.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Hosting.Systemd.ServiceState.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Systemd/src/ServiceState.cs#L32C13-L35C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Systemd/src/ServiceState.cs#L32C13-L35C10" }, { "DocsId": "M:Microsoft.Extensions.Hosting.Systemd.ServiceState.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Systemd/src/ServiceState.cs#L42C16-L42C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Systemd/src/ServiceState.cs#L42C16-L42C77" }, { "DocsId": "F:Microsoft.Extensions.Hosting.Systemd.ServiceState.Ready", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Systemd/src/ServiceState.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Systemd/src/ServiceState.cs" }, { "DocsId": "F:Microsoft.Extensions.Hosting.Systemd.ServiceState.Stopping", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Systemd/src/ServiceState.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Systemd/src/ServiceState.cs" } ], "DocsId": "T:Microsoft.Extensions.Hosting.Systemd.ServiceState", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Systemd/src/ServiceState.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Systemd/src/ServiceState.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Hosting.Systemd.SystemdHelpers.IsSystemdService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Systemd/src/SystemdHelpers.cs#L27C50-L27C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Systemd/src/SystemdHelpers.cs#L27C50-L27C67" } ], "DocsId": "T:Microsoft.Extensions.Hosting.Systemd.SystemdHelpers", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Systemd/src/SystemdHelpers.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Systemd/src/SystemdHelpers.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Hosting.Systemd.SystemdLifetime.#ctor(Microsoft.Extensions.Hosting.IHostEnvironment,Microsoft.Extensions.Hosting.IHostApplicationLifetime,Microsoft.Extensions.Hosting.Systemd.ISystemdNotifier,Microsoft.Extensions.Logging.ILoggerFactory)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Systemd/src/SystemdLifetime.cs#L32C9-L43C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Systemd/src/SystemdLifetime.cs#L32C9-L43C10" }, { "DocsId": "M:Microsoft.Extensions.Hosting.Systemd.SystemdLifetime.StopAsync(System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Systemd/src/SystemdLifetime.cs#L61C13-L61C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Systemd/src/SystemdLifetime.cs#L61C13-L61C39" }, { "DocsId": "M:Microsoft.Extensions.Hosting.Systemd.SystemdLifetime.WaitForStartAsync(System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Systemd/src/SystemdLifetime.cs#L75C13-L88C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Systemd/src/SystemdLifetime.cs#L75C13-L88C39" }, { "DocsId": "M:Microsoft.Extensions.Hosting.Systemd.SystemdLifetime.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Systemd/src/SystemdLifetime.cs#L113C13-L117C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Systemd/src/SystemdLifetime.cs#L113C13-L117C10" } ], "DocsId": "T:Microsoft.Extensions.Hosting.Systemd.SystemdLifetime", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Systemd/src/SystemdLifetime.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Systemd/src/SystemdLifetime.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Hosting.Systemd.SystemdNotifier.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Systemd/src/SystemdNotifier.cs#L24C13-L25C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Systemd/src/SystemdNotifier.cs#L24C13-L25C12" }, { "DocsId": "M:Microsoft.Extensions.Hosting.Systemd.SystemdNotifier.Notify(Microsoft.Extensions.Hosting.Systemd.ServiceState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Systemd/src/SystemdNotifier.cs#L39C13-L53C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Systemd/src/SystemdNotifier.cs#L39C13-L53C10" }, { "DocsId": "P:Microsoft.Extensions.Hosting.Systemd.SystemdNotifier.IsEnabled", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Systemd/src/SystemdNotifier.cs#L34C34-L34C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Systemd/src/SystemdNotifier.cs#L34C34-L34C53" } ], "DocsId": "T:Microsoft.Extensions.Hosting.Systemd.SystemdNotifier", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Systemd/src/SystemdNotifier.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Systemd/src/SystemdNotifier.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Hosting.Testing.json b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Hosting.Testing.json index e1531177e05..2b007733d0f 100644 --- a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Hosting.Testing.json +++ b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Hosting.Testing.json @@ -1,121 +1,120 @@ { "Assembly": "Microsoft.Extensions.Hosting.Testing", - "GUID": "4F37DFA75EDD4F498B6A32ED3A6DDD21FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "ECD79DA699CF4495A5CDC8064C944B32FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.Hosting.FakeHostingExtensions.StartAndStopAsync(Microsoft.Extensions.Hosting.IHostedService,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHostingExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHostingExtensions.cs" }, { "DocsId": "M:Microsoft.Extensions.Hosting.FakeHostingExtensions.GetFakeLogCollector(Microsoft.Extensions.Hosting.IHost)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHostingExtensions.cs#L54C9-L55C52" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHostingExtensions.cs#L54C9-L55C52" }, { "DocsId": "M:Microsoft.Extensions.Hosting.FakeHostingExtensions.GetFakeRedactionCollector(Microsoft.Extensions.Hosting.IHost)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHostingExtensions.cs#L66C9-L67C58" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHostingExtensions.cs#L66C9-L67C58" }, { "DocsId": "M:Microsoft.Extensions.Hosting.FakeHostingExtensions.AddFakeLoggingOutputSink(Microsoft.Extensions.Hosting.IHostBuilder,System.Action{System.String})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHostingExtensions.cs#L78C9-L96C13" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHostingExtensions.cs#L16707566C0-L96C13" }, { "DocsId": "M:Microsoft.Extensions.Hosting.FakeHostingExtensions.Configure(Microsoft.Extensions.Hosting.IHostBuilder,System.Action{Microsoft.Extensions.Hosting.IHostBuilder})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHostingExtensions.cs#L110C9-L113C24" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHostingExtensions.cs#L110C9-L113C24" }, { "DocsId": "M:Microsoft.Extensions.Hosting.FakeHostingExtensions.ConfigureHostConfiguration(Microsoft.Extensions.Hosting.IHostBuilder,System.ValueTuple{System.String,System.String}[])", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHostingExtensions.cs#L124C9-L131C24" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHostingExtensions.cs#L124C9-L131C24" }, { "DocsId": "M:Microsoft.Extensions.Hosting.FakeHostingExtensions.ConfigureHostConfiguration(Microsoft.Extensions.Hosting.IHostBuilder,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHostingExtensions.cs#L143C9-L144C119" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHostingExtensions.cs#L16707566C0-L144C119" }, { "DocsId": "M:Microsoft.Extensions.Hosting.FakeHostingExtensions.ConfigureAppConfiguration(Microsoft.Extensions.Hosting.IHostBuilder,System.ValueTuple{System.String,System.String}[])", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHostingExtensions.cs#L155C9-L162C24" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHostingExtensions.cs#L155C9-L162C24" }, { "DocsId": "M:Microsoft.Extensions.Hosting.FakeHostingExtensions.ConfigureAppConfiguration(Microsoft.Extensions.Hosting.IHostBuilder,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHostingExtensions.cs#L174C9-L175C123" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHostingExtensions.cs#L16707566C0-L175C123" } ], "DocsId": "T:Microsoft.Extensions.Hosting.FakeHostingExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHostingExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHostingExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Hosting.Testing.FakeHost.CreateBuilder", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHost.cs#L35C51-L35C93" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHost.cs#L35C51-L35C93" }, { "DocsId": "M:Microsoft.Extensions.Hosting.Testing.FakeHost.CreateBuilder(System.Action{Microsoft.Extensions.Hosting.Testing.FakeHostOptions})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHost.cs#L44C9-L48C39" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHost.cs#L44C9-L48C39" }, { "DocsId": "M:Microsoft.Extensions.Hosting.Testing.FakeHost.CreateBuilder(Microsoft.Extensions.Hosting.Testing.FakeHostOptions)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHost.cs#L58C9-L59C45" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHost.cs#L58C9-L59C45" }, { "DocsId": "M:Microsoft.Extensions.Hosting.Testing.FakeHost.StartAsync(System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHost.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHost.cs" }, { "DocsId": "M:Microsoft.Extensions.Hosting.Testing.FakeHost.StopAsync(System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHost.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHost.cs" }, { "DocsId": "M:Microsoft.Extensions.Hosting.Testing.FakeHost.Dispose", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHost.cs#L114C9-L123C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHost.cs#L114C9-L123C6" }, { "DocsId": "P:Microsoft.Extensions.Hosting.Testing.FakeHost.Services", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHost.cs#L19C41-L19C55" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHost.cs#L19C41-L19C55" } ], "DocsId": "T:Microsoft.Extensions.Hosting.Testing.FakeHost", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHost.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHost.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Hosting.Testing.FakeHostOptions.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHostOptions.cs#L19C52-L58C51" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHostOptions.cs#L19C52-L58C51" }, { "DocsId": "P:Microsoft.Extensions.Hosting.Testing.FakeHostOptions.StartUpTimeout", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHostOptions.cs#L19C38-L19C42" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHostOptions.cs#L19C38-L19C42" }, { "DocsId": "P:Microsoft.Extensions.Hosting.Testing.FakeHostOptions.ShutDownTimeout", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHostOptions.cs#L26C39-L26C43" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHostOptions.cs#L26C39-L26C43" }, { "DocsId": "P:Microsoft.Extensions.Hosting.Testing.FakeHostOptions.TimeToLive", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHostOptions.cs#L36C34-L36C38" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHostOptions.cs#L36C34-L36C38" }, { "DocsId": "P:Microsoft.Extensions.Hosting.Testing.FakeHostOptions.FakeLogging", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHostOptions.cs#L44C31-L44C35" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHostOptions.cs#L44C31-L44C35" }, { "DocsId": "P:Microsoft.Extensions.Hosting.Testing.FakeHostOptions.ValidateScopes", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHostOptions.cs#L47C34-L47C38" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHostOptions.cs#L47C34-L47C38" }, { "DocsId": "P:Microsoft.Extensions.Hosting.Testing.FakeHostOptions.ValidateOnBuild", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHostOptions.cs#L50C35-L50C39" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHostOptions.cs#L50C35-L50C39" }, { "DocsId": "P:Microsoft.Extensions.Hosting.Testing.FakeHostOptions.FakeRedaction", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHostOptions.cs#L58C33-L58C37" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHostOptions.cs#L58C33-L58C37" } ], "DocsId": "T:Microsoft.Extensions.Hosting.Testing.FakeHostOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHostOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHostOptions.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Hosting.WindowsServices.json b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Hosting.WindowsServices.json index f018265857d..ae6da147517 100644 --- a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Hosting.WindowsServices.json +++ b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Hosting.WindowsServices.json @@ -1,91 +1,90 @@ { "Assembly": "Microsoft.Extensions.Hosting.WindowsServices", - "GUID": "D65B164C110E4F989F84AFF9A9F4B582FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "6C496538600B4C6AB292318609FA1E49FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.Hosting.WindowsServiceLifetimeHostBuilderExtensions.UseWindowsService(Microsoft.Extensions.Hosting.IHostBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.WindowsServices/src/WindowsServiceLifetimeHostBuilderExtensions.cs#L31C13-L31C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.WindowsServices/src/WindowsServiceLifetimeHostBuilderExtensions.cs#L31C13-L31C61" }, { "DocsId": "M:Microsoft.Extensions.Hosting.WindowsServiceLifetimeHostBuilderExtensions.UseWindowsService(Microsoft.Extensions.Hosting.IHostBuilder,System.Action{Microsoft.Extensions.Hosting.WindowsServiceLifetimeOptions})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.WindowsServices/src/WindowsServiceLifetimeHostBuilderExtensions.cs#L47C13-L57C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.WindowsServices/src/WindowsServiceLifetimeHostBuilderExtensions.cs#L16707566C0-L57C32" }, { "DocsId": "M:Microsoft.Extensions.Hosting.WindowsServiceLifetimeHostBuilderExtensions.AddWindowsService(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.WindowsServices/src/WindowsServiceLifetimeHostBuilderExtensions.cs#L77C13-L77C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.WindowsServices/src/WindowsServiceLifetimeHostBuilderExtensions.cs#L77C13-L77C58" }, { "DocsId": "M:Microsoft.Extensions.Hosting.WindowsServiceLifetimeHostBuilderExtensions.AddWindowsService(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{Microsoft.Extensions.Hosting.WindowsServiceLifetimeOptions})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.WindowsServices/src/WindowsServiceLifetimeHostBuilderExtensions.cs#L97C13-L104C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.WindowsServices/src/WindowsServiceLifetimeHostBuilderExtensions.cs#L97C13-L104C29" } ], "DocsId": "T:Microsoft.Extensions.Hosting.WindowsServiceLifetimeHostBuilderExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.WindowsServices/src/WindowsServiceLifetimeHostBuilderExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.WindowsServices/src/WindowsServiceLifetimeHostBuilderExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Hosting.WindowsServiceLifetimeOptions.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.WindowsServices/src/WindowsServiceLifetimeOptions.cs#L16C51-L16C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.WindowsServices/src/WindowsServiceLifetimeOptions.cs#L16C51-L16C63" }, { "DocsId": "P:Microsoft.Extensions.Hosting.WindowsServiceLifetimeOptions.ServiceName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.WindowsServices/src/WindowsServiceLifetimeOptions.cs#L16C37-L16C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.WindowsServices/src/WindowsServiceLifetimeOptions.cs#L16C37-L16C41" } ], "DocsId": "T:Microsoft.Extensions.Hosting.WindowsServiceLifetimeOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.WindowsServices/src/WindowsServiceLifetimeOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.WindowsServices/src/WindowsServiceLifetimeOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Hosting.WindowsServices.WindowsServiceHelpers.IsWindowsService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.WindowsServices/src/WindowsServiceHelpers.cs#L24C50-L24C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.WindowsServices/src/WindowsServiceHelpers.cs#L24C50-L24C66" } ], "DocsId": "T:Microsoft.Extensions.Hosting.WindowsServices.WindowsServiceHelpers", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.WindowsServices/src/WindowsServiceHelpers.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.WindowsServices/src/WindowsServiceHelpers.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Hosting.WindowsServices.WindowsServiceLifetime.#ctor(Microsoft.Extensions.Hosting.IHostEnvironment,Microsoft.Extensions.Hosting.IHostApplicationLifetime,Microsoft.Extensions.Logging.ILoggerFactory,Microsoft.Extensions.Options.IOptions{Microsoft.Extensions.Hosting.HostOptions})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.WindowsServices/src/WindowsServiceLifetime.cs#L34C15-L36C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.WindowsServices/src/WindowsServiceLifetime.cs#L34C15-L36C10" }, { "DocsId": "M:Microsoft.Extensions.Hosting.WindowsServices.WindowsServiceLifetime.#ctor(Microsoft.Extensions.Hosting.IHostEnvironment,Microsoft.Extensions.Hosting.IHostApplicationLifetime,Microsoft.Extensions.Logging.ILoggerFactory,Microsoft.Extensions.Options.IOptions{Microsoft.Extensions.Hosting.HostOptions},Microsoft.Extensions.Options.IOptions{Microsoft.Extensions.Hosting.WindowsServiceLifetimeOptions})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.WindowsServices/src/WindowsServiceLifetime.cs#L20C9-L60C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.WindowsServices/src/WindowsServiceLifetime.cs#L20C9-L60C10" }, { "DocsId": "M:Microsoft.Extensions.Hosting.WindowsServices.WindowsServiceLifetime.WaitForStartAsync(System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.WindowsServices/src/WindowsServiceLifetime.cs#L77C13-L93C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.WindowsServices/src/WindowsServiceLifetime.cs#L77C13-L93C37" }, { "DocsId": "M:Microsoft.Extensions.Hosting.WindowsServices.WindowsServiceLifetime.StopAsync(System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.WindowsServices/src/WindowsServiceLifetime.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.WindowsServices/src/WindowsServiceLifetime.cs" }, { "DocsId": "M:Microsoft.Extensions.Hosting.WindowsServices.WindowsServiceLifetime.OnStart(System.String[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.WindowsServices/src/WindowsServiceLifetime.cs#L137C13-L139C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.WindowsServices/src/WindowsServiceLifetime.cs#L137C13-L139C10" }, { "DocsId": "M:Microsoft.Extensions.Hosting.WindowsServices.WindowsServiceLifetime.OnStop", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.WindowsServices/src/WindowsServiceLifetime.cs#L148C13-L153C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.WindowsServices/src/WindowsServiceLifetime.cs#L148C13-L153C10" }, { "DocsId": "M:Microsoft.Extensions.Hosting.WindowsServices.WindowsServiceLifetime.OnShutdown", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.WindowsServices/src/WindowsServiceLifetime.cs#L162C13-L167C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.WindowsServices/src/WindowsServiceLifetime.cs#L162C13-L167C10" }, { "DocsId": "M:Microsoft.Extensions.Hosting.WindowsServices.WindowsServiceLifetime.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.WindowsServices/src/WindowsServiceLifetime.cs#L175C13-L181C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.WindowsServices/src/WindowsServiceLifetime.cs#L175C13-L181C10" } ], "DocsId": "T:Microsoft.Extensions.Hosting.WindowsServices.WindowsServiceLifetime", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.WindowsServices/src/WindowsServiceLifetime.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.WindowsServices/src/WindowsServiceLifetime.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Hosting.json b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Hosting.json index afcd0397f33..e091c983ae0 100644 --- a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Hosting.json +++ b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Hosting.json @@ -1,401 +1,400 @@ { "Assembly": "Microsoft.Extensions.Hosting", - "GUID": "4E4CB03D0FF54BA180D07DDE68E1E1F8FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "D32035A7E8F84D9EAD3406585367F0C0FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "F:Microsoft.Extensions.Hosting.BackgroundServiceExceptionBehavior.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/BackgroundServiceExceptionBehavior.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/BackgroundServiceExceptionBehavior.cs" }, { "DocsId": "F:Microsoft.Extensions.Hosting.BackgroundServiceExceptionBehavior.StopHost", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/BackgroundServiceExceptionBehavior.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/BackgroundServiceExceptionBehavior.cs" }, { "DocsId": "F:Microsoft.Extensions.Hosting.BackgroundServiceExceptionBehavior.Ignore", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/BackgroundServiceExceptionBehavior.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/BackgroundServiceExceptionBehavior.cs" } ], "DocsId": "T:Microsoft.Extensions.Hosting.BackgroundServiceExceptionBehavior", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/BackgroundServiceExceptionBehavior.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/BackgroundServiceExceptionBehavior.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Hosting.ConsoleLifetimeOptions.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/ConsoleLifetimeOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/ConsoleLifetimeOptions.cs" }, { "DocsId": "P:Microsoft.Extensions.Hosting.ConsoleLifetimeOptions.SuppressStatusMessages", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/ConsoleLifetimeOptions.cs#L15C46-L15C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/ConsoleLifetimeOptions.cs#L15C46-L15C50" } ], "DocsId": "T:Microsoft.Extensions.Hosting.ConsoleLifetimeOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/ConsoleLifetimeOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/ConsoleLifetimeOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Hosting.Host.CreateDefaultBuilder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/Host.cs#L32C13-L32C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/Host.cs#L32C13-L32C45" }, { "DocsId": "M:Microsoft.Extensions.Hosting.Host.CreateDefaultBuilder(System.String[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/Host.cs#L55C13-L56C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/Host.cs#L55C13-L56C52" }, { "DocsId": "M:Microsoft.Extensions.Hosting.Host.CreateApplicationBuilder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/Host.cs#L75C76-L75C104" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/Host.cs#L75C76-L75C104" }, { "DocsId": "M:Microsoft.Extensions.Hosting.Host.CreateApplicationBuilder(System.String[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/Host.cs#L96C90-L96C122" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/Host.cs#L96C90-L96C122" }, { "DocsId": "M:Microsoft.Extensions.Hosting.Host.CreateApplicationBuilder(Microsoft.Extensions.Hosting.HostApplicationBuilderSettings)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/Host.cs#L101C16-L101C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/Host.cs#L101C16-L101C52" }, { "DocsId": "M:Microsoft.Extensions.Hosting.Host.CreateEmptyApplicationBuilder(Microsoft.Extensions.Hosting.HostApplicationBuilderSettings)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/Host.cs#L109C16-L109C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/Host.cs#L109C16-L109C65" } ], "DocsId": "T:Microsoft.Extensions.Hosting.Host", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/Host.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/Host.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Hosting.HostApplicationBuilder.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostApplicationBuilder.cs#L53C15-L55C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostApplicationBuilder.cs#L53C15-L55C10" }, { "DocsId": "M:Microsoft.Extensions.Hosting.HostApplicationBuilder.#ctor(System.String[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostApplicationBuilder.cs#L76C15-L78C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostApplicationBuilder.cs#L76C15-L78C10" }, { "DocsId": "M:Microsoft.Extensions.Hosting.HostApplicationBuilder.#ctor(Microsoft.Extensions.Hosting.HostApplicationBuilderSettings)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostApplicationBuilder.cs#L23C9-L116C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostApplicationBuilder.cs#L23C9-L116C10" }, { "DocsId": "M:Microsoft.Extensions.Hosting.HostApplicationBuilder.Microsoft#Extensions#Hosting#IHostApplicationBuilder#get_Properties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostApplicationBuilder.cs#L188C75-L188C105" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostApplicationBuilder.cs#L188C75-L188C105" }, { "DocsId": "M:Microsoft.Extensions.Hosting.HostApplicationBuilder.Microsoft#Extensions#Hosting#IHostApplicationBuilder#get_Configuration", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostApplicationBuilder.cs#L201C72-L201C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostApplicationBuilder.cs#L201C72-L201C85" }, { "DocsId": "M:Microsoft.Extensions.Hosting.HostApplicationBuilder.ConfigureContainer``1(Microsoft.Extensions.DependencyInjection.IServiceProviderFactory{``0},System.Action{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostApplicationBuilder.cs#L215C13-L226C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostApplicationBuilder.cs#L16707566C0-L226C10" }, { "DocsId": "M:Microsoft.Extensions.Hosting.HostApplicationBuilder.Build", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostApplicationBuilder.cs#L234C13-L249C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostApplicationBuilder.cs#L234C13-L249C10" }, { "DocsId": "P:Microsoft.Extensions.Hosting.HostApplicationBuilder.Microsoft#Extensions#Hosting#IHostApplicationBuilder#Properties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostApplicationBuilder.cs#L188C75-L188C105" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostApplicationBuilder.cs#L188C75-L188C105" }, { "DocsId": "P:Microsoft.Extensions.Hosting.HostApplicationBuilder.Environment", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostApplicationBuilder.cs#L191C48-L191C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostApplicationBuilder.cs#L191C48-L191C60" }, { "DocsId": "P:Microsoft.Extensions.Hosting.HostApplicationBuilder.Configuration", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostApplicationBuilder.cs#L199C53-L199C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostApplicationBuilder.cs#L199C53-L199C57" }, { "DocsId": "P:Microsoft.Extensions.Hosting.HostApplicationBuilder.Microsoft#Extensions#Hosting#IHostApplicationBuilder#Configuration", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostApplicationBuilder.cs#L201C72-L201C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostApplicationBuilder.cs#L201C72-L201C85" }, { "DocsId": "P:Microsoft.Extensions.Hosting.HostApplicationBuilder.Services", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostApplicationBuilder.cs#L204C47-L204C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostApplicationBuilder.cs#L204C47-L204C65" }, { "DocsId": "P:Microsoft.Extensions.Hosting.HostApplicationBuilder.Logging", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostApplicationBuilder.cs#L207C43-L207C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostApplicationBuilder.cs#L207C43-L207C51" }, { "DocsId": "P:Microsoft.Extensions.Hosting.HostApplicationBuilder.Metrics", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostApplicationBuilder.cs#L210C43-L210C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostApplicationBuilder.cs#L210C43-L210C51" } ], "DocsId": "T:Microsoft.Extensions.Hosting.HostApplicationBuilder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostApplicationBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostApplicationBuilder.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Hosting.HostApplicationBuilderSettings.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostApplicationBuilderSettings.cs#L18C9-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostApplicationBuilderSettings.cs#L18C9-L20C10" }, { "DocsId": "P:Microsoft.Extensions.Hosting.HostApplicationBuilderSettings.DisableDefaults", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostApplicationBuilderSettings.cs#L37C39-L37C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostApplicationBuilderSettings.cs#L37C39-L37C43" }, { "DocsId": "P:Microsoft.Extensions.Hosting.HostApplicationBuilderSettings.Args", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostApplicationBuilderSettings.cs#L42C33-L42C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostApplicationBuilderSettings.cs#L42C33-L42C37" }, { "DocsId": "P:Microsoft.Extensions.Hosting.HostApplicationBuilderSettings.Configuration", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostApplicationBuilderSettings.cs#L49C54-L49C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostApplicationBuilderSettings.cs#L49C54-L49C58" }, { "DocsId": "P:Microsoft.Extensions.Hosting.HostApplicationBuilderSettings.EnvironmentName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostApplicationBuilderSettings.cs#L54C42-L54C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostApplicationBuilderSettings.cs#L54C42-L54C46" }, { "DocsId": "P:Microsoft.Extensions.Hosting.HostApplicationBuilderSettings.ApplicationName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostApplicationBuilderSettings.cs#L59C42-L59C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostApplicationBuilderSettings.cs#L59C42-L59C46" }, { "DocsId": "P:Microsoft.Extensions.Hosting.HostApplicationBuilderSettings.ContentRootPath", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostApplicationBuilderSettings.cs#L64C42-L64C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostApplicationBuilderSettings.cs#L64C42-L64C46" } ], "DocsId": "T:Microsoft.Extensions.Hosting.HostApplicationBuilderSettings", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostApplicationBuilderSettings.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostApplicationBuilderSettings.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Hosting.HostBuilder.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostBuilder.cs#L28C9-L47C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostBuilder.cs#L28C9-L47C10" }, { "DocsId": "M:Microsoft.Extensions.Hosting.HostBuilder.ConfigureHostConfiguration(System.Action{Microsoft.Extensions.Configuration.IConfigurationBuilder})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostBuilder.cs#L63C13-L66C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostBuilder.cs#L63C13-L66C25" }, { "DocsId": "M:Microsoft.Extensions.Hosting.HostBuilder.ConfigureAppConfiguration(System.Action{Microsoft.Extensions.Hosting.HostBuilderContext,Microsoft.Extensions.Configuration.IConfigurationBuilder})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostBuilder.cs#L79C13-L82C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostBuilder.cs#L79C13-L82C25" }, { "DocsId": "M:Microsoft.Extensions.Hosting.HostBuilder.ConfigureServices(System.Action{Microsoft.Extensions.Hosting.HostBuilderContext,Microsoft.Extensions.DependencyInjection.IServiceCollection})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostBuilder.cs#L93C13-L96C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostBuilder.cs#L93C13-L96C25" }, { "DocsId": "M:Microsoft.Extensions.Hosting.HostBuilder.UseServiceProviderFactory``1(Microsoft.Extensions.DependencyInjection.IServiceProviderFactory{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostBuilder.cs#L107C13-L110C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostBuilder.cs#L107C13-L110C25" }, { "DocsId": "M:Microsoft.Extensions.Hosting.HostBuilder.UseServiceProviderFactory``1(System.Func{Microsoft.Extensions.Hosting.HostBuilderContext,Microsoft.Extensions.DependencyInjection.IServiceProviderFactory{``0}})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostBuilder.cs#L121C13-L124C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostBuilder.cs#L121C13-L124C25" }, { "DocsId": "M:Microsoft.Extensions.Hosting.HostBuilder.ConfigureContainer``1(System.Action{Microsoft.Extensions.Hosting.HostBuilderContext,``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostBuilder.cs#L137C13-L140C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostBuilder.cs#L137C13-L140C25" }, { "DocsId": "M:Microsoft.Extensions.Hosting.HostBuilder.Build", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostBuilder.cs#L150C13-L167C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostBuilder.cs#L150C13-L167C10" }, { "DocsId": "P:Microsoft.Extensions.Hosting.HostBuilder.Properties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostBuilder.cs#L52C57-L52C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostBuilder.cs#L52C57-L52C61" } ], "DocsId": "T:Microsoft.Extensions.Hosting.HostBuilder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostBuilder.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Hosting.HostingHostBuilderExtensions.UseEnvironment(Microsoft.Extensions.Hosting.IHostBuilder,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostingHostBuilderExtensions.cs#L36C13-L44C16" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostingHostBuilderExtensions.cs#L16707566C0-L44C16" }, { "DocsId": "M:Microsoft.Extensions.Hosting.HostingHostBuilderExtensions.UseContentRoot(Microsoft.Extensions.Hosting.IHostBuilder,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostingHostBuilderExtensions.cs#L56C13-L64C16" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostingHostBuilderExtensions.cs#L16707566C0-L64C16" }, { "DocsId": "M:Microsoft.Extensions.Hosting.HostingHostBuilderExtensions.UseDefaultServiceProvider(Microsoft.Extensions.Hosting.IHostBuilder,System.Action{Microsoft.Extensions.DependencyInjection.ServiceProviderOptions})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostingHostBuilderExtensions.cs#L74C16-L74C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostingHostBuilderExtensions.cs#L16707566C0-L74C95" }, { "DocsId": "M:Microsoft.Extensions.Hosting.HostingHostBuilderExtensions.UseDefaultServiceProvider(Microsoft.Extensions.Hosting.IHostBuilder,System.Action{Microsoft.Extensions.Hosting.HostBuilderContext,Microsoft.Extensions.DependencyInjection.ServiceProviderOptions})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostingHostBuilderExtensions.cs#L84C13-L89C16" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostingHostBuilderExtensions.cs#L16707566C0-L89C16" }, { "DocsId": "M:Microsoft.Extensions.Hosting.HostingHostBuilderExtensions.ConfigureLogging(Microsoft.Extensions.Hosting.IHostBuilder,System.Action{Microsoft.Extensions.Hosting.HostBuilderContext,Microsoft.Extensions.Logging.ILoggingBuilder})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostingHostBuilderExtensions.cs#L100C13-L100C145" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostingHostBuilderExtensions.cs#L16707566C0-L100C145" }, { "DocsId": "M:Microsoft.Extensions.Hosting.HostingHostBuilderExtensions.ConfigureLogging(Microsoft.Extensions.Hosting.IHostBuilder,System.Action{Microsoft.Extensions.Logging.ILoggingBuilder})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostingHostBuilderExtensions.cs#L111C13-L111C116" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostingHostBuilderExtensions.cs#L16707566C0-L111C116" }, { "DocsId": "M:Microsoft.Extensions.Hosting.HostingHostBuilderExtensions.ConfigureHostOptions(Microsoft.Extensions.Hosting.IHostBuilder,System.Action{Microsoft.Extensions.Hosting.HostBuilderContext,Microsoft.Extensions.Hosting.HostOptions})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostingHostBuilderExtensions.cs#L122C13-L123C124" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostingHostBuilderExtensions.cs#L16707566C0-L123C124" }, { "DocsId": "M:Microsoft.Extensions.Hosting.HostingHostBuilderExtensions.ConfigureHostOptions(Microsoft.Extensions.Hosting.IHostBuilder,System.Action{Microsoft.Extensions.Hosting.HostOptions})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostingHostBuilderExtensions.cs#L134C13-L134C104" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostingHostBuilderExtensions.cs#L16707566C0-L134C104" }, { "DocsId": "M:Microsoft.Extensions.Hosting.HostingHostBuilderExtensions.ConfigureAppConfiguration(Microsoft.Extensions.Hosting.IHostBuilder,System.Action{Microsoft.Extensions.Configuration.IConfigurationBuilder})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostingHostBuilderExtensions.cs#L148C13-L148C108" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostingHostBuilderExtensions.cs#L16707566C0-L148C108" }, { "DocsId": "M:Microsoft.Extensions.Hosting.HostingHostBuilderExtensions.ConfigureServices(Microsoft.Extensions.Hosting.IHostBuilder,System.Action{Microsoft.Extensions.DependencyInjection.IServiceCollection})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostingHostBuilderExtensions.cs#L159C13-L159C106" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostingHostBuilderExtensions.cs#L16707566C0-L159C106" }, { "DocsId": "M:Microsoft.Extensions.Hosting.HostingHostBuilderExtensions.ConfigureContainer``1(Microsoft.Extensions.Hosting.IHostBuilder,System.Action{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostingHostBuilderExtensions.cs#L172C13-L172C120" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostingHostBuilderExtensions.cs#L16707566C0-L172C120" }, { "DocsId": "M:Microsoft.Extensions.Hosting.HostingHostBuilderExtensions.ConfigureDefaults(Microsoft.Extensions.Hosting.IHostBuilder,System.String[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostingHostBuilderExtensions.cs#L196C13-L199C146" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostingHostBuilderExtensions.cs#L16707566C0-L199C146" }, { "DocsId": "M:Microsoft.Extensions.Hosting.HostingHostBuilderExtensions.UseConsoleLifetime(Microsoft.Extensions.Hosting.IHostBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostingHostBuilderExtensions.cs#L347C13-L347C123" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostingHostBuilderExtensions.cs#L347C13-L347C123" }, { "DocsId": "M:Microsoft.Extensions.Hosting.HostingHostBuilderExtensions.UseConsoleLifetime(Microsoft.Extensions.Hosting.IHostBuilder,System.Action{Microsoft.Extensions.Hosting.ConsoleLifetimeOptions})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostingHostBuilderExtensions.cs#L363C13-L367C16" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostingHostBuilderExtensions.cs#L16707566C0-L367C16" }, { "DocsId": "M:Microsoft.Extensions.Hosting.HostingHostBuilderExtensions.RunConsoleAsync(Microsoft.Extensions.Hosting.IHostBuilder,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostingHostBuilderExtensions.cs#L382C13-L382C89" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostingHostBuilderExtensions.cs#L382C13-L382C89" }, { "DocsId": "M:Microsoft.Extensions.Hosting.HostingHostBuilderExtensions.RunConsoleAsync(Microsoft.Extensions.Hosting.IHostBuilder,System.Action{Microsoft.Extensions.Hosting.ConsoleLifetimeOptions},System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostingHostBuilderExtensions.cs#L398C13-L398C105" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostingHostBuilderExtensions.cs#L398C13-L398C105" }, { "DocsId": "M:Microsoft.Extensions.Hosting.HostingHostBuilderExtensions.ConfigureMetrics(Microsoft.Extensions.Hosting.IHostBuilder,System.Action{Microsoft.Extensions.Diagnostics.Metrics.IMetricsBuilder})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostingHostBuilderExtensions.cs#L409C13-L409C116" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostingHostBuilderExtensions.cs#L16707566C0-L409C116" }, { "DocsId": "M:Microsoft.Extensions.Hosting.HostingHostBuilderExtensions.ConfigureMetrics(Microsoft.Extensions.Hosting.IHostBuilder,System.Action{Microsoft.Extensions.Hosting.HostBuilderContext,Microsoft.Extensions.Diagnostics.Metrics.IMetricsBuilder})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostingHostBuilderExtensions.cs#L420C13-L420C145" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostingHostBuilderExtensions.cs#L16707566C0-L420C145" } ], "DocsId": "T:Microsoft.Extensions.Hosting.HostingHostBuilderExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostingHostBuilderExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostingHostBuilderExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Hosting.HostOptions.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostOptions.cs#L24C57-L34C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostOptions.cs#L24C57-L34C80" }, { "DocsId": "P:Microsoft.Extensions.Hosting.HostOptions.ShutdownTimeout", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostOptions.cs#L24C43-L24C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostOptions.cs#L24C43-L24C47" }, { "DocsId": "P:Microsoft.Extensions.Hosting.HostOptions.StartupTimeout", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostOptions.cs#L34C42-L34C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostOptions.cs#L34C42-L34C46" }, { "DocsId": "P:Microsoft.Extensions.Hosting.HostOptions.ServicesStartConcurrently", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostOptions.cs#L39C49-L39C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostOptions.cs#L39C49-L39C53" }, { "DocsId": "P:Microsoft.Extensions.Hosting.HostOptions.ServicesStopConcurrently", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostOptions.cs#L44C48-L44C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostOptions.cs#L44C48-L44C52" }, { "DocsId": "P:Microsoft.Extensions.Hosting.HostOptions.BackgroundServiceExceptionBehavior", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostOptions.cs#L53C88-L53C92" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostOptions.cs#L53C88-L53C92" } ], "DocsId": "T:Microsoft.Extensions.Hosting.HostOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Hosting.Internal.ApplicationLifetime.#ctor(Microsoft.Extensions.Logging.ILogger{Microsoft.Extensions.Hosting.Internal.ApplicationLifetime})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/Internal/ApplicationLifetime.cs#L21C9-L33C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/Internal/ApplicationLifetime.cs#L21C9-L33C10" }, { "DocsId": "M:Microsoft.Extensions.Hosting.Internal.ApplicationLifetime.StopApplication", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/Internal/ApplicationLifetime.cs#L62C13-L75C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/Internal/ApplicationLifetime.cs#L62C13-L75C10" }, { "DocsId": "M:Microsoft.Extensions.Hosting.Internal.ApplicationLifetime.NotifyStarted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/Internal/ApplicationLifetime.cs#L84C17-L92C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/Internal/ApplicationLifetime.cs#L84C17-L92C10" }, { "DocsId": "M:Microsoft.Extensions.Hosting.Internal.ApplicationLifetime.NotifyStopped", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/Internal/ApplicationLifetime.cs#L101C17-L109C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/Internal/ApplicationLifetime.cs#L101C17-L109C10" }, { "DocsId": "P:Microsoft.Extensions.Hosting.Internal.ApplicationLifetime.ApplicationStarted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/Internal/ApplicationLifetime.cs#L39C56-L39C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/Internal/ApplicationLifetime.cs#L39C56-L39C76" }, { "DocsId": "P:Microsoft.Extensions.Hosting.Internal.ApplicationLifetime.ApplicationStopping", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/Internal/ApplicationLifetime.cs#L45C57-L45C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/Internal/ApplicationLifetime.cs#L45C57-L45C78" }, { "DocsId": "P:Microsoft.Extensions.Hosting.Internal.ApplicationLifetime.ApplicationStopped", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/Internal/ApplicationLifetime.cs#L52C56-L52C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/Internal/ApplicationLifetime.cs#L52C56-L52C76" } ], "DocsId": "T:Microsoft.Extensions.Hosting.Internal.ApplicationLifetime", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/Internal/ApplicationLifetime.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/Internal/ApplicationLifetime.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Hosting.Internal.ConsoleLifetime.#ctor(Microsoft.Extensions.Options.IOptions{Microsoft.Extensions.Hosting.ConsoleLifetimeOptions},Microsoft.Extensions.Hosting.IHostEnvironment,Microsoft.Extensions.Hosting.IHostApplicationLifetime,Microsoft.Extensions.Options.IOptions{Microsoft.Extensions.Hosting.HostOptions})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/Internal/ConsoleLifetime.cs#L35C15-L35C107" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/Internal/ConsoleLifetime.cs#L35C15-L35C107" }, { "DocsId": "M:Microsoft.Extensions.Hosting.Internal.ConsoleLifetime.#ctor(Microsoft.Extensions.Options.IOptions{Microsoft.Extensions.Hosting.ConsoleLifetimeOptions},Microsoft.Extensions.Hosting.IHostEnvironment,Microsoft.Extensions.Hosting.IHostApplicationLifetime,Microsoft.Extensions.Options.IOptions{Microsoft.Extensions.Hosting.HostOptions},Microsoft.Extensions.Logging.ILoggerFactory)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/Internal/ConsoleLifetime.cs#L46C9-L59C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/Internal/ConsoleLifetime.cs#L46C9-L59C10" }, { "DocsId": "M:Microsoft.Extensions.Hosting.Internal.ConsoleLifetime.WaitForStartAsync(System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/Internal/ConsoleLifetime.cs#L78C13-L95C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/Internal/ConsoleLifetime.cs#L78C13-L95C39" }, { "DocsId": "M:Microsoft.Extensions.Hosting.Internal.ConsoleLifetime.StopAsync(System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/Internal/ConsoleLifetime.cs#L120C13-L120C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/Internal/ConsoleLifetime.cs#L120C13-L120C39" }, { "DocsId": "M:Microsoft.Extensions.Hosting.Internal.ConsoleLifetime.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/Internal/ConsoleLifetime.cs#L128C13-L132C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/Internal/ConsoleLifetime.cs#L128C13-L132C10" } ], "DocsId": "T:Microsoft.Extensions.Hosting.Internal.ConsoleLifetime", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/Internal/ConsoleLifetime.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/Internal/ConsoleLifetime.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Hosting.Internal.HostingEnvironment.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/Internal/HostingEnvironment.cs#L21C55-L31C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/Internal/HostingEnvironment.cs#L21C55-L31C67" }, { "DocsId": "P:Microsoft.Extensions.Hosting.Internal.HostingEnvironment.EnvironmentName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/Internal/HostingEnvironment.cs#L21C41-L21C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/Internal/HostingEnvironment.cs#L21C41-L21C45" }, { "DocsId": "P:Microsoft.Extensions.Hosting.Internal.HostingEnvironment.ApplicationName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/Internal/HostingEnvironment.cs#L26C41-L26C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/Internal/HostingEnvironment.cs#L26C41-L26C45" }, { "DocsId": "P:Microsoft.Extensions.Hosting.Internal.HostingEnvironment.ContentRootPath", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/Internal/HostingEnvironment.cs#L31C41-L31C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/Internal/HostingEnvironment.cs#L31C41-L31C45" }, { "DocsId": "P:Microsoft.Extensions.Hosting.Internal.HostingEnvironment.ContentRootFileProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/Internal/HostingEnvironment.cs#L36C56-L36C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/Internal/HostingEnvironment.cs#L36C56-L36C60" } ], "DocsId": "T:Microsoft.Extensions.Hosting.Internal.HostingEnvironment", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/Internal/HostingEnvironment.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/Internal/HostingEnvironment.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Http.Diagnostics.json b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Http.Diagnostics.json index 9e9b4b99a3c..9b3f188c1e6 100644 --- a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Http.Diagnostics.json +++ b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Http.Diagnostics.json @@ -1,253 +1,252 @@ { "Assembly": "Microsoft.Extensions.Http.Diagnostics", - "GUID": "8B83714DC9B3420787A350847F46B35DFFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "55668E8D08CD481192919F8F9FD60742FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:System.Net.HttpDiagnosticsHttpWebRequestExtensions.SetRequestMetadata(System.Net.HttpWebRequest,Microsoft.Extensions.Http.Diagnostics.RequestMetadata)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Http/HttpDiagnosticsHttpWebRequestExtensions.cs#L21C9-L27C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Http/HttpDiagnosticsHttpWebRequestExtensions.cs#L21C9-L27C6" }, { "DocsId": "M:System.Net.HttpDiagnosticsHttpWebRequestExtensions.GetRequestMetadata(System.Net.HttpWebRequest)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Http/HttpDiagnosticsHttpWebRequestExtensions.cs#L36C9-L55C32" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Http/HttpDiagnosticsHttpWebRequestExtensions.cs#L36C9-L55C32" } ], "DocsId": "T:System.Net.HttpDiagnosticsHttpWebRequestExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Http/HttpDiagnosticsHttpWebRequestExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Http/HttpDiagnosticsHttpWebRequestExtensions.cs" }, { "Members": [ { "DocsId": "M:System.Net.Http.HttpDiagnosticsHttpRequestMessageExtensions.SetRequestMetadata(System.Net.Http.HttpRequestMessage,Microsoft.Extensions.Http.Diagnostics.RequestMetadata)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Http/HttpDiagnosticsHttpRequestMessageExtensions.cs#L24C9-L32C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Http/HttpDiagnosticsHttpRequestMessageExtensions.cs#L24C9-L32C6" }, { "DocsId": "M:System.Net.Http.HttpDiagnosticsHttpRequestMessageExtensions.GetRequestMetadata(System.Net.Http.HttpRequestMessage)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Http/HttpDiagnosticsHttpRequestMessageExtensions.cs#L41C9-L45C25" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Http/HttpDiagnosticsHttpRequestMessageExtensions.cs#L41C9-L45C25" } ], "DocsId": "T:System.Net.Http.HttpDiagnosticsHttpRequestMessageExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Http/HttpDiagnosticsHttpRequestMessageExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Http/HttpDiagnosticsHttpRequestMessageExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpDiagnosticsServiceCollectionExtensions.AddDownstreamDependencyMetadata(Microsoft.Extensions.DependencyInjection.IServiceCollection,Microsoft.Extensions.Http.Diagnostics.IDownstreamDependencyMetadata)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Http/HttpDiagnosticsServiceCollectionExtensions.cs#L25C9-L29C25" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Http/HttpDiagnosticsServiceCollectionExtensions.cs#L25C9-L29C25" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpDiagnosticsServiceCollectionExtensions.AddDownstreamDependencyMetadata``1(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Http/HttpDiagnosticsServiceCollectionExtensions.cs#L41C9-L45C25" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Http/HttpDiagnosticsServiceCollectionExtensions.cs#L41C9-L45C25" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.HttpDiagnosticsServiceCollectionExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Http/HttpDiagnosticsServiceCollectionExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Http/HttpDiagnosticsServiceCollectionExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientLatencyTelemetryExtensions.AddHttpClientLatencyTelemetry(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Latency/HttpClientLatencyTelemetryExtensions.cs#L29C9-L47C16" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Latency/HttpClientLatencyTelemetryExtensions.cs#L29C9-L47C16" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientLatencyTelemetryExtensions.AddHttpClientLatencyTelemetry(Microsoft.Extensions.DependencyInjection.IServiceCollection,Microsoft.Extensions.Configuration.IConfigurationSection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Latency/HttpClientLatencyTelemetryExtensions.cs#L61C9-L66C57" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Latency/HttpClientLatencyTelemetryExtensions.cs#L61C9-L66C57" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientLatencyTelemetryExtensions.AddHttpClientLatencyTelemetry(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{Microsoft.Extensions.Http.Latency.HttpClientLatencyTelemetryOptions})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Latency/HttpClientLatencyTelemetryExtensions.cs#L80C9-L85C57" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Latency/HttpClientLatencyTelemetryExtensions.cs#L80C9-L85C57" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.HttpClientLatencyTelemetryExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Latency/HttpClientLatencyTelemetryExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Latency/HttpClientLatencyTelemetryExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientLoggingHttpClientBuilderExtensions.AddExtendedHttpClientLogging(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/HttpClientLoggingHttpClientBuilderExtensions.cs#L35C9-L37C62" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/HttpClientLoggingHttpClientBuilderExtensions.cs#L35C9-L37C62" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientLoggingHttpClientBuilderExtensions.AddExtendedHttpClientLogging(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder,Microsoft.Extensions.Configuration.IConfigurationSection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/HttpClientLoggingHttpClientBuilderExtensions.cs#L54C9-L57C96" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/HttpClientLoggingHttpClientBuilderExtensions.cs#L16707566C0-L57C96" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientLoggingHttpClientBuilderExtensions.AddExtendedHttpClientLogging(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder,System.Action{Microsoft.Extensions.Http.Logging.LoggingOptions})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/HttpClientLoggingHttpClientBuilderExtensions.cs#L74C9-L77C103" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/HttpClientLoggingHttpClientBuilderExtensions.cs#L16707566C0-L77C103" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.HttpClientLoggingHttpClientBuilderExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/HttpClientLoggingHttpClientBuilderExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/HttpClientLoggingHttpClientBuilderExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientLoggingServiceCollectionExtensions.AddExtendedHttpClientLogging(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/HttpClientLoggingServiceCollectionExtensions.cs#L33C9-L48C79" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/HttpClientLoggingServiceCollectionExtensions.cs#L33C9-L48C79" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientLoggingServiceCollectionExtensions.AddExtendedHttpClientLogging(Microsoft.Extensions.DependencyInjection.IServiceCollection,Microsoft.Extensions.Configuration.IConfigurationSection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/HttpClientLoggingServiceCollectionExtensions.cs#L63C9-L70C56" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/HttpClientLoggingServiceCollectionExtensions.cs#L63C9-L70C56" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientLoggingServiceCollectionExtensions.AddExtendedHttpClientLogging(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{Microsoft.Extensions.Http.Logging.LoggingOptions})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/HttpClientLoggingServiceCollectionExtensions.cs#L85C9-L92C56" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/HttpClientLoggingServiceCollectionExtensions.cs#L85C9-L92C56" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientLoggingServiceCollectionExtensions.AddHttpClientLogEnricher``1(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/HttpClientLoggingServiceCollectionExtensions.cs#L103C12-L103C85" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/HttpClientLoggingServiceCollectionExtensions.cs#L103C12-L103C85" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.HttpClientLoggingServiceCollectionExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/HttpClientLoggingServiceCollectionExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/HttpClientLoggingServiceCollectionExtensions.cs" }, { "Members": [ { "DocsId": "F:Microsoft.Extensions.Http.Logging.HttpClientLoggingTagNames.Duration", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/HttpClientLoggingTagNames.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/HttpClientLoggingTagNames.cs" }, { "DocsId": "F:Microsoft.Extensions.Http.Logging.HttpClientLoggingTagNames.Host", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/HttpClientLoggingTagNames.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/HttpClientLoggingTagNames.cs" }, { "DocsId": "F:Microsoft.Extensions.Http.Logging.HttpClientLoggingTagNames.Method", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/HttpClientLoggingTagNames.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/HttpClientLoggingTagNames.cs" }, { "DocsId": "F:Microsoft.Extensions.Http.Logging.HttpClientLoggingTagNames.Path", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/HttpClientLoggingTagNames.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/HttpClientLoggingTagNames.cs" }, { "DocsId": "F:Microsoft.Extensions.Http.Logging.HttpClientLoggingTagNames.RequestBody", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/HttpClientLoggingTagNames.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/HttpClientLoggingTagNames.cs" }, { "DocsId": "F:Microsoft.Extensions.Http.Logging.HttpClientLoggingTagNames.ResponseBody", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/HttpClientLoggingTagNames.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/HttpClientLoggingTagNames.cs" }, { "DocsId": "F:Microsoft.Extensions.Http.Logging.HttpClientLoggingTagNames.RequestHeaderPrefix", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/HttpClientLoggingTagNames.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/HttpClientLoggingTagNames.cs" }, { "DocsId": "F:Microsoft.Extensions.Http.Logging.HttpClientLoggingTagNames.ResponseHeaderPrefix", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/HttpClientLoggingTagNames.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/HttpClientLoggingTagNames.cs" }, { "DocsId": "F:Microsoft.Extensions.Http.Logging.HttpClientLoggingTagNames.StatusCode", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/HttpClientLoggingTagNames.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/HttpClientLoggingTagNames.cs" }, { "DocsId": "P:Microsoft.Extensions.Http.Logging.HttpClientLoggingTagNames.TagNames", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/HttpClientLoggingTagNames.cs#L63C52-L63C56" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/HttpClientLoggingTagNames.cs#L63C52-L63C56" } ], "DocsId": "T:Microsoft.Extensions.Http.Logging.HttpClientLoggingTagNames", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/HttpClientLoggingTagNames.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/HttpClientLoggingTagNames.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Http.Logging.IHttpClientLogEnricher.Enrich(Microsoft.Extensions.Diagnostics.Enrichment.IEnrichmentTagCollector,System.Net.Http.HttpRequestMessage,System.Net.Http.HttpResponseMessage,System.Exception)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/IHttpClientLogEnricher.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/IHttpClientLogEnricher.cs" } ], "DocsId": "T:Microsoft.Extensions.Http.Logging.IHttpClientLogEnricher", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/IHttpClientLogEnricher.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/IHttpClientLogEnricher.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Http.Logging.LoggingOptions.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/LoggingOptions.cs#L60C46-L147C138" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/LoggingOptions.cs#L60C46-L147C138" }, { "DocsId": "P:Microsoft.Extensions.Http.Logging.LoggingOptions.LogRequestStart", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/LoggingOptions.cs#L37C35-L37C39" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/LoggingOptions.cs#L37C35-L37C39" }, { "DocsId": "P:Microsoft.Extensions.Http.Logging.LoggingOptions.LogBody", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/LoggingOptions.cs#L48C27-L48C31" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/LoggingOptions.cs#L48C27-L48C31" }, { "DocsId": "P:Microsoft.Extensions.Http.Logging.LoggingOptions.BodySizeLimit", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/LoggingOptions.cs#L60C32-L60C36" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/LoggingOptions.cs#L60C32-L60C36" }, { "DocsId": "P:Microsoft.Extensions.Http.Logging.LoggingOptions.BodyReadTimeout", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/LoggingOptions.cs#L72C39-L72C43" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/LoggingOptions.cs#L72C39-L72C43" }, { "DocsId": "P:Microsoft.Extensions.Http.Logging.LoggingOptions.RequestBodyContentTypes", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/LoggingOptions.cs#L80C51-L80C55" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/LoggingOptions.cs#L80C51-L80C55" }, { "DocsId": "P:Microsoft.Extensions.Http.Logging.LoggingOptions.ResponseBodyContentTypes", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/LoggingOptions.cs#L88C52-L88C56" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/LoggingOptions.cs#L88C52-L88C56" }, { "DocsId": "P:Microsoft.Extensions.Http.Logging.LoggingOptions.RequestHeadersDataClasses", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/LoggingOptions.cs#L103C80-L103C84" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/LoggingOptions.cs#L103C80-L103C84" }, { "DocsId": "P:Microsoft.Extensions.Http.Logging.LoggingOptions.ResponseHeadersDataClasses", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/LoggingOptions.cs#L118C81-L118C85" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/LoggingOptions.cs#L118C81-L118C85" }, { "DocsId": "P:Microsoft.Extensions.Http.Logging.LoggingOptions.RequestPathLoggingMode", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/LoggingOptions.cs#L131C61-L131C65" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/LoggingOptions.cs#L131C61-L131C65" }, { "DocsId": "P:Microsoft.Extensions.Http.Logging.LoggingOptions.RequestPathParameterRedactionMode", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/LoggingOptions.cs#L139C80-L139C84" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/LoggingOptions.cs#L139C80-L139C84" }, { "DocsId": "P:Microsoft.Extensions.Http.Logging.LoggingOptions.RouteParameterDataClasses", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/LoggingOptions.cs#L147C80-L147C84" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/LoggingOptions.cs#L147C80-L147C84" }, { "DocsId": "P:Microsoft.Extensions.Http.Logging.LoggingOptions.LogContentHeaders", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/LoggingOptions.cs#L161C37-L161C41" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/LoggingOptions.cs#L161C37-L161C41" } ], "DocsId": "T:Microsoft.Extensions.Http.Logging.LoggingOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/LoggingOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/LoggingOptions.cs" }, { "Members": [ { "DocsId": "F:Microsoft.Extensions.Http.Logging.OutgoingPathLoggingMode.value__", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/OutgoingPathLoggingMode.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/OutgoingPathLoggingMode.cs" }, { "DocsId": "F:Microsoft.Extensions.Http.Logging.OutgoingPathLoggingMode.Formatted", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/OutgoingPathLoggingMode.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/OutgoingPathLoggingMode.cs" }, { "DocsId": "F:Microsoft.Extensions.Http.Logging.OutgoingPathLoggingMode.Structured", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/OutgoingPathLoggingMode.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/OutgoingPathLoggingMode.cs" } ], "DocsId": "T:Microsoft.Extensions.Http.Logging.OutgoingPathLoggingMode", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/OutgoingPathLoggingMode.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/OutgoingPathLoggingMode.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Http.Latency.HttpClientLatencyTelemetryOptions.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Latency/HttpClientLatencyTelemetryOptions.cs#L22C64-L22C68" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Latency/HttpClientLatencyTelemetryOptions.cs#L22C64-L22C68" }, { "DocsId": "P:Microsoft.Extensions.Http.Latency.HttpClientLatencyTelemetryOptions.EnableDetailedLatencyBreakdown", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Latency/HttpClientLatencyTelemetryOptions.cs#L22C50-L22C54" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Latency/HttpClientLatencyTelemetryOptions.cs#L22C50-L22C54" } ], "DocsId": "T:Microsoft.Extensions.Http.Latency.HttpClientLatencyTelemetryOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Latency/HttpClientLatencyTelemetryOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Latency/HttpClientLatencyTelemetryOptions.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Http.Resilience.json b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Http.Resilience.json index 793ff2a5ea1..53632639cae 100644 --- a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Http.Resilience.json +++ b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Http.Resilience.json @@ -1,517 +1,524 @@ { "Assembly": "Microsoft.Extensions.Http.Resilience", - "GUID": "766DF6BDC70F40E9803F3CF2C1B00C3BFFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "91E84486A3B9454CB7D7568051BB5972FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:System.Net.Http.HttpResilienceHttpRequestMessageExtensions.GetResilienceContext(System.Net.Http.HttpRequestMessage)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpResilienceHttpRequestMessageExtensions.cs#L27C9-L41C21" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpResilienceHttpRequestMessageExtensions.cs#L27C9-L41C21" }, { "DocsId": "M:System.Net.Http.HttpResilienceHttpRequestMessageExtensions.SetResilienceContext(System.Net.Http.HttpRequestMessage,Polly.ResilienceContext)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpResilienceHttpRequestMessageExtensions.cs#L51C9-L57C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpResilienceHttpRequestMessageExtensions.cs#L51C9-L57C6" } ], "DocsId": "T:System.Net.Http.HttpResilienceHttpRequestMessageExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpResilienceHttpRequestMessageExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpResilienceHttpRequestMessageExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ResilienceHttpClientBuilderExtensions.AddStandardHedgingHandler(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder,System.Action{Microsoft.Extensions.Http.Resilience.IRoutingStrategyBuilder})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/ResilienceHttpClientBuilderExtensions.Hedging.cs#L44C9-L51C31" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/ResilienceHttpClientBuilderExtensions.Hedging.cs#L44C9-L51C31" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ResilienceHttpClientBuilderExtensions.AddStandardHedgingHandler(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/ResilienceHttpClientBuilderExtensions.Hedging.cs#L73C9-L143C98" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/ResilienceHttpClientBuilderExtensions.Hedging.cs#L16707566C0-L143C98" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ResilienceHttpClientBuilderExtensions.AddResilienceHandler(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder,System.String,System.Action{Polly.ResiliencePipelineBuilder{System.Net.Http.HttpResponseMessage}})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHttpClientBuilderExtensions.Resilience.cs#L38C9-L42C95" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHttpClientBuilderExtensions.Resilience.cs#L16707566C0-L42C95" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ResilienceHttpClientBuilderExtensions.AddResilienceHandler(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder,System.String,System.Action{Polly.ResiliencePipelineBuilder{System.Net.Http.HttpResponseMessage},Microsoft.Extensions.Http.Resilience.ResilienceHandlerContext})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHttpClientBuilderExtensions.Resilience.cs#L61C9-L75C32" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHttpClientBuilderExtensions.Resilience.cs#L16707566C0-L75C32" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ResilienceHttpClientBuilderExtensions.AddStandardResilienceHandler(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder,Microsoft.Extensions.Configuration.IConfigurationSection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHttpClientBuilderExtensions.StandardResilience.cs#L32C9-L35C74" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHttpClientBuilderExtensions.StandardResilience.cs#L32C9-L35C74" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ResilienceHttpClientBuilderExtensions.AddStandardResilienceHandler(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder,System.Action{Microsoft.Extensions.Http.Resilience.HttpStandardResilienceOptions})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHttpClientBuilderExtensions.StandardResilience.cs#L50C9-L53C76" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHttpClientBuilderExtensions.StandardResilience.cs#L50C9-L53C76" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ResilienceHttpClientBuilderExtensions.AddStandardResilienceHandler(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHttpClientBuilderExtensions.StandardResilience.cs#L67C9-L89C89" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHttpClientBuilderExtensions.StandardResilience.cs#L16707566C0-L89C89" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.ResilienceHttpClientBuilderExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/ResilienceHttpClientBuilderExtensions.Hedging.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/ResilienceHttpClientBuilderExtensions.Hedging.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Http.Resilience.HedgingEndpointOptions.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/HedgingEndpointOptions.cs#L28C71-L59C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/HedgingEndpointOptions.cs#L28C71-L59C6" }, { "DocsId": "P:Microsoft.Extensions.Http.Resilience.HedgingEndpointOptions.RateLimiter", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/HedgingEndpointOptions.cs#L28C57-L28C61" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/HedgingEndpointOptions.cs#L28C57-L28C61" }, { "DocsId": "P:Microsoft.Extensions.Http.Resilience.HedgingEndpointOptions.CircuitBreaker", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/HedgingEndpointOptions.cs#L41C63-L41C67" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/HedgingEndpointOptions.cs#L41C63-L41C67" }, { "DocsId": "P:Microsoft.Extensions.Http.Resilience.HedgingEndpointOptions.Timeout", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/HedgingEndpointOptions.cs#L55C49-L55C53" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/HedgingEndpointOptions.cs#L55C49-L55C53" } ], "DocsId": "T:Microsoft.Extensions.Http.Resilience.HedgingEndpointOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/HedgingEndpointOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/HedgingEndpointOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Http.Resilience.HttpClientHedgingResiliencePredicates.IsTransient(Polly.Outcome{System.Net.Http.HttpResponseMessage})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/HttpClientHedgingResiliencePredicates.cs#L21C77-L25C19" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/HttpClientHedgingResiliencePredicates.cs#L26C12-L16707566C0" + }, + { + "DocsId": "M:Microsoft.Extensions.Http.Resilience.HttpClientHedgingResiliencePredicates.IsTransient(Polly.Outcome{System.Net.Http.HttpResponseMessage},System.Threading.CancellationToken)", + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/HttpClientHedgingResiliencePredicates.cs#L41C12-L42C35" } ], "DocsId": "T:Microsoft.Extensions.Http.Resilience.HttpClientHedgingResiliencePredicates", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/HttpClientHedgingResiliencePredicates.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/HttpClientHedgingResiliencePredicates.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Http.Resilience.HttpHedgingStrategyOptions.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/HttpHedgingStrategyOptions.cs#L22C5-L25C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/HttpHedgingStrategyOptions.cs#L22C5-L25C6" } ], "DocsId": "T:Microsoft.Extensions.Http.Resilience.HttpHedgingStrategyOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/HttpHedgingStrategyOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/HttpHedgingStrategyOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Http.Resilience.HttpStandardHedgingResilienceOptions.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/HttpStandardHedgingResilienceOptions.cs#L48C75-L74C88" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/HttpStandardHedgingResilienceOptions.cs#L48C75-L74C88" }, { "DocsId": "P:Microsoft.Extensions.Http.Resilience.HttpStandardHedgingResilienceOptions.TotalRequestTimeout", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/HttpStandardHedgingResilienceOptions.cs#L48C61-L48C65" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/HttpStandardHedgingResilienceOptions.cs#L48C61-L48C65" }, { "DocsId": "P:Microsoft.Extensions.Http.Resilience.HttpStandardHedgingResilienceOptions.Hedging", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/HttpStandardHedgingResilienceOptions.cs#L61C49-L61C53" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/HttpStandardHedgingResilienceOptions.cs#L61C49-L61C53" }, { "DocsId": "P:Microsoft.Extensions.Http.Resilience.HttpStandardHedgingResilienceOptions.Endpoint", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/HttpStandardHedgingResilienceOptions.cs#L74C46-L74C50" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/HttpStandardHedgingResilienceOptions.cs#L74C46-L74C50" } ], "DocsId": "T:Microsoft.Extensions.Http.Resilience.HttpStandardHedgingResilienceOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/HttpStandardHedgingResilienceOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/HttpStandardHedgingResilienceOptions.cs" }, { "Members": [ { "DocsId": "P:Microsoft.Extensions.Http.Resilience.IStandardHedgingHandlerBuilder.Name", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/IStandardHedgingHandlerBuilder.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/IStandardHedgingHandlerBuilder.cs" }, { "DocsId": "P:Microsoft.Extensions.Http.Resilience.IStandardHedgingHandlerBuilder.Services", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/IStandardHedgingHandlerBuilder.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/IStandardHedgingHandlerBuilder.cs" }, { "DocsId": "P:Microsoft.Extensions.Http.Resilience.IStandardHedgingHandlerBuilder.RoutingStrategyBuilder", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/IStandardHedgingHandlerBuilder.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/IStandardHedgingHandlerBuilder.cs" } ], "DocsId": "T:Microsoft.Extensions.Http.Resilience.IStandardHedgingHandlerBuilder", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/IStandardHedgingHandlerBuilder.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/IStandardHedgingHandlerBuilder.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Http.Resilience.StandardHedgingHandlerBuilderExtensions.Configure(Microsoft.Extensions.Http.Resilience.IStandardHedgingHandlerBuilder,Microsoft.Extensions.Configuration.IConfigurationSection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/StandardHedgingHandlerBuilderExtensions.cs#L30C9-L40C24" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/StandardHedgingHandlerBuilderExtensions.cs#L30C9-L40C24" }, { "DocsId": "M:Microsoft.Extensions.Http.Resilience.StandardHedgingHandlerBuilderExtensions.Configure(Microsoft.Extensions.Http.Resilience.IStandardHedgingHandlerBuilder,System.Action{Microsoft.Extensions.Http.Resilience.HttpStandardHedgingResilienceOptions})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/StandardHedgingHandlerBuilderExtensions.cs#L51C9-L54C70" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/StandardHedgingHandlerBuilderExtensions.cs#L16707566C0-L54C70" }, { "DocsId": "M:Microsoft.Extensions.Http.Resilience.StandardHedgingHandlerBuilderExtensions.Configure(Microsoft.Extensions.Http.Resilience.IStandardHedgingHandlerBuilder,System.Action{Microsoft.Extensions.Http.Resilience.HttpStandardHedgingResilienceOptions,System.IServiceProvider})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/StandardHedgingHandlerBuilderExtensions.cs#L65C9-L70C24" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/StandardHedgingHandlerBuilderExtensions.cs#L65C9-L70C24" }, { "DocsId": "M:Microsoft.Extensions.Http.Resilience.StandardHedgingHandlerBuilderExtensions.SelectPipelineByAuthority(Microsoft.Extensions.Http.Resilience.IStandardHedgingHandlerBuilder)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/StandardHedgingHandlerBuilderExtensions.cs#L80C9-L86C24" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/StandardHedgingHandlerBuilderExtensions.cs#L80C9-L86C24" }, { "DocsId": "M:Microsoft.Extensions.Http.Resilience.StandardHedgingHandlerBuilderExtensions.SelectPipelineBy(Microsoft.Extensions.Http.Resilience.IStandardHedgingHandlerBuilder,System.Func{System.IServiceProvider,System.Func{System.Net.Http.HttpRequestMessage,System.String}})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/StandardHedgingHandlerBuilderExtensions.cs#L98C9-L105C24" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/StandardHedgingHandlerBuilderExtensions.cs#L98C9-L105C24" } ], "DocsId": "T:Microsoft.Extensions.Http.Resilience.StandardHedgingHandlerBuilderExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/StandardHedgingHandlerBuilderExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/StandardHedgingHandlerBuilderExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Http.Resilience.HttpCircuitBreakerStrategyOptions.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Polly/HttpCircuitBreakerStrategyOptions.cs#L22C5-L25C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Polly/HttpCircuitBreakerStrategyOptions.cs#L22C5-L25C6" } ], "DocsId": "T:Microsoft.Extensions.Http.Resilience.HttpCircuitBreakerStrategyOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Polly/HttpCircuitBreakerStrategyOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Polly/HttpCircuitBreakerStrategyOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Http.Resilience.HttpClientResiliencePredicates.IsTransient(Polly.Outcome{System.Net.Http.HttpResponseMessage})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Polly/HttpClientResiliencePredicates.cs#L22C77-L26C19" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Polly/HttpClientResiliencePredicates.cs#L25C77-L16707566C0" + }, + { + "DocsId": "M:Microsoft.Extensions.Http.Resilience.HttpClientResiliencePredicates.IsTransient(Polly.Outcome{System.Net.Http.HttpResponseMessage},System.Threading.CancellationToken)", + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Polly/HttpClientResiliencePredicates.cs#L40C12-L41C35" } ], "DocsId": "T:Microsoft.Extensions.Http.Resilience.HttpClientResiliencePredicates", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Polly/HttpClientResiliencePredicates.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Polly/HttpClientResiliencePredicates.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Http.Resilience.HttpRateLimiterStrategyOptions.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Polly/HttpRateLimiterStrategyOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Polly/HttpRateLimiterStrategyOptions.cs" } ], "DocsId": "T:Microsoft.Extensions.Http.Resilience.HttpRateLimiterStrategyOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Polly/HttpRateLimiterStrategyOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Polly/HttpRateLimiterStrategyOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Http.Resilience.HttpRetryStrategyOptions.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Polly/HttpRetryStrategyOptions.cs#L27C5-L33C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Polly/HttpRetryStrategyOptions.cs#L27C5-L33C6" }, { "DocsId": "P:Microsoft.Extensions.Http.Resilience.HttpRetryStrategyOptions.ShouldRetryAfterHeader", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Polly/HttpRetryStrategyOptions.cs#L48C16-L48C39" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Polly/HttpRetryStrategyOptions.cs#L48C16-L48C39" } ], "DocsId": "T:Microsoft.Extensions.Http.Resilience.HttpRetryStrategyOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Polly/HttpRetryStrategyOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Polly/HttpRetryStrategyOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Http.Resilience.HttpTimeoutStrategyOptions.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Polly/HttpTimeoutStrategyOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Polly/HttpTimeoutStrategyOptions.cs" } ], "DocsId": "T:Microsoft.Extensions.Http.Resilience.HttpTimeoutStrategyOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Polly/HttpTimeoutStrategyOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Polly/HttpTimeoutStrategyOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Http.Resilience.HttpResiliencePipelineBuilderExtensions.SelectPipelineByAuthority(Microsoft.Extensions.Http.Resilience.IHttpResiliencePipelineBuilder)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpResiliencePipelineBuilderExtensions.cs#L23C9-L27C24" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpResiliencePipelineBuilderExtensions.cs#L23C9-L27C24" }, { "DocsId": "M:Microsoft.Extensions.Http.Resilience.HttpResiliencePipelineBuilderExtensions.SelectPipelineBy(Microsoft.Extensions.Http.Resilience.IHttpResiliencePipelineBuilder,System.Func{System.IServiceProvider,System.Func{System.Net.Http.HttpRequestMessage,System.String}})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpResiliencePipelineBuilderExtensions.cs#L39C9-L44C24" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpResiliencePipelineBuilderExtensions.cs#L39C9-L44C24" } ], "DocsId": "T:Microsoft.Extensions.Http.Resilience.HttpResiliencePipelineBuilderExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpResiliencePipelineBuilderExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpResiliencePipelineBuilderExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Http.Resilience.HttpStandardResilienceOptions.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpStandardResilienceOptions.cs#L40C71-L97C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpStandardResilienceOptions.cs#L40C71-L97C6" }, { "DocsId": "P:Microsoft.Extensions.Http.Resilience.HttpStandardResilienceOptions.RateLimiter", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpStandardResilienceOptions.cs#L40C57-L40C61" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpStandardResilienceOptions.cs#L40C57-L40C61" }, { "DocsId": "P:Microsoft.Extensions.Http.Resilience.HttpStandardResilienceOptions.TotalRequestTimeout", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpStandardResilienceOptions.cs#L53C61-L53C65" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpStandardResilienceOptions.cs#L53C61-L53C65" }, { "DocsId": "P:Microsoft.Extensions.Http.Resilience.HttpStandardResilienceOptions.Retry", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpStandardResilienceOptions.cs#L66C45-L66C49" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpStandardResilienceOptions.cs#L66C45-L66C49" }, { "DocsId": "P:Microsoft.Extensions.Http.Resilience.HttpStandardResilienceOptions.CircuitBreaker", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpStandardResilienceOptions.cs#L79C63-L79C67" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpStandardResilienceOptions.cs#L79C63-L79C67" }, { "DocsId": "P:Microsoft.Extensions.Http.Resilience.HttpStandardResilienceOptions.AttemptTimeout", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpStandardResilienceOptions.cs#L93C56-L93C60" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpStandardResilienceOptions.cs#L93C56-L93C60" } ], "DocsId": "T:Microsoft.Extensions.Http.Resilience.HttpStandardResilienceOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpStandardResilienceOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpStandardResilienceOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Http.Resilience.HttpStandardResiliencePipelineBuilderExtensions.Configure(Microsoft.Extensions.Http.Resilience.IHttpStandardResiliencePipelineBuilder,Microsoft.Extensions.Configuration.IConfigurationSection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpStandardResiliencePipelineBuilderExtensions.cs#L27C9-L40C24" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpStandardResiliencePipelineBuilderExtensions.cs#L27C9-L40C24" }, { "DocsId": "M:Microsoft.Extensions.Http.Resilience.HttpStandardResiliencePipelineBuilderExtensions.Configure(Microsoft.Extensions.Http.Resilience.IHttpStandardResiliencePipelineBuilder,System.Action{Microsoft.Extensions.Http.Resilience.HttpStandardResilienceOptions})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpStandardResiliencePipelineBuilderExtensions.cs#L53C9-L56C70" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpStandardResiliencePipelineBuilderExtensions.cs#L16707566C0-L56C70" }, { "DocsId": "M:Microsoft.Extensions.Http.Resilience.HttpStandardResiliencePipelineBuilderExtensions.Configure(Microsoft.Extensions.Http.Resilience.IHttpStandardResiliencePipelineBuilder,System.Action{Microsoft.Extensions.Http.Resilience.HttpStandardResilienceOptions,System.IServiceProvider})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpStandardResiliencePipelineBuilderExtensions.cs#L69C9-L74C24" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpStandardResiliencePipelineBuilderExtensions.cs#L69C9-L74C24" }, { "DocsId": "M:Microsoft.Extensions.Http.Resilience.HttpStandardResiliencePipelineBuilderExtensions.SelectPipelineByAuthority(Microsoft.Extensions.Http.Resilience.IHttpStandardResiliencePipelineBuilder)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpStandardResiliencePipelineBuilderExtensions.cs#L84C9-L88C24" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpStandardResiliencePipelineBuilderExtensions.cs#L84C9-L88C24" }, { "DocsId": "M:Microsoft.Extensions.Http.Resilience.HttpStandardResiliencePipelineBuilderExtensions.SelectPipelineBy(Microsoft.Extensions.Http.Resilience.IHttpStandardResiliencePipelineBuilder,System.Func{System.IServiceProvider,System.Func{System.Net.Http.HttpRequestMessage,System.String}})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpStandardResiliencePipelineBuilderExtensions.cs#L100C9-L105C24" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpStandardResiliencePipelineBuilderExtensions.cs#L100C9-L105C24" } ], "DocsId": "T:Microsoft.Extensions.Http.Resilience.HttpStandardResiliencePipelineBuilderExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpStandardResiliencePipelineBuilderExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpStandardResiliencePipelineBuilderExtensions.cs" }, { "Members": [ { "DocsId": "P:Microsoft.Extensions.Http.Resilience.IHttpResiliencePipelineBuilder.PipelineName", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/IHttpResiliencePipelineBuilder.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/IHttpResiliencePipelineBuilder.cs" }, { "DocsId": "P:Microsoft.Extensions.Http.Resilience.IHttpResiliencePipelineBuilder.Services", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/IHttpResiliencePipelineBuilder.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/IHttpResiliencePipelineBuilder.cs" } ], "DocsId": "T:Microsoft.Extensions.Http.Resilience.IHttpResiliencePipelineBuilder", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/IHttpResiliencePipelineBuilder.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/IHttpResiliencePipelineBuilder.cs" }, { "Members": [ { "DocsId": "P:Microsoft.Extensions.Http.Resilience.IHttpStandardResiliencePipelineBuilder.PipelineName", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/IHttpStandardResiliencePipelineBuilder.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/IHttpStandardResiliencePipelineBuilder.cs" }, { "DocsId": "P:Microsoft.Extensions.Http.Resilience.IHttpStandardResiliencePipelineBuilder.Services", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/IHttpStandardResiliencePipelineBuilder.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/IHttpStandardResiliencePipelineBuilder.cs" } ], "DocsId": "T:Microsoft.Extensions.Http.Resilience.IHttpStandardResiliencePipelineBuilder", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/IHttpStandardResiliencePipelineBuilder.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/IHttpStandardResiliencePipelineBuilder.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Http.Resilience.ResilienceHandler.#ctor(System.Func{System.Net.Http.HttpRequestMessage,Polly.ResiliencePipeline{System.Net.Http.HttpResponseMessage}})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHandler.cs#L30C5-L33C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHandler.cs#L30C5-L33C6" }, { "DocsId": "M:Microsoft.Extensions.Http.Resilience.ResilienceHandler.#ctor(Polly.ResiliencePipeline{System.Net.Http.HttpResponseMessage})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHandler.cs#L40C5-L44C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHandler.cs#L16707566C0-L44C6" }, { "DocsId": "M:Microsoft.Extensions.Http.Resilience.ResilienceHandler.SendAsync(System.Net.Http.HttpRequestMessage,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHandler.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHandler.cs" } ], "DocsId": "T:Microsoft.Extensions.Http.Resilience.ResilienceHandler", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHandler.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHandler.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Http.Resilience.ResilienceHandlerContext.EnableReloads``1(System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHandlerContext.cs#L52C157-L52C195" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHandlerContext.cs#L52C157-L52C195" }, { "DocsId": "M:Microsoft.Extensions.Http.Resilience.ResilienceHandlerContext.GetOptions``1(System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHandlerContext.cs#L64C158-L64C193" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHandlerContext.cs#L64C158-L64C193" }, { "DocsId": "M:Microsoft.Extensions.Http.Resilience.ResilienceHandlerContext.OnPipelineDisposed(System.Action)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHandlerContext.cs#L70C56-L70C107" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHandlerContext.cs#L70C56-L70C107" }, { "DocsId": "P:Microsoft.Extensions.Http.Resilience.ResilienceHandlerContext.ServiceProvider", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHandlerContext.cs#L27C48-L27C72" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHandlerContext.cs#L27C48-L27C72" }, { "DocsId": "P:Microsoft.Extensions.Http.Resilience.ResilienceHandlerContext.BuilderName", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHandlerContext.cs#L32C34-L32C59" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHandlerContext.cs#L32C34-L32C59" }, { "DocsId": "P:Microsoft.Extensions.Http.Resilience.ResilienceHandlerContext.InstanceName", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHandlerContext.cs#L37C35-L37C68" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHandlerContext.cs#L37C35-L37C68" } ], "DocsId": "T:Microsoft.Extensions.Http.Resilience.ResilienceHandlerContext", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHandlerContext.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHandlerContext.cs" }, { "Members": [ { "DocsId": "P:Microsoft.Extensions.Http.Resilience.IRoutingStrategyBuilder.Name", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/IRoutingStrategyBuilder.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/IRoutingStrategyBuilder.cs" }, { "DocsId": "P:Microsoft.Extensions.Http.Resilience.IRoutingStrategyBuilder.Services", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/IRoutingStrategyBuilder.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/IRoutingStrategyBuilder.cs" } ], "DocsId": "T:Microsoft.Extensions.Http.Resilience.IRoutingStrategyBuilder", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/IRoutingStrategyBuilder.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/IRoutingStrategyBuilder.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Http.Resilience.OrderedGroupsRoutingOptions.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/OrderedGroupsRoutingOptions.cs#L30C59-L30C87" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/OrderedGroupsRoutingOptions.cs#L30C59-L30C87" }, { "DocsId": "P:Microsoft.Extensions.Http.Resilience.OrderedGroupsRoutingOptions.Groups", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/OrderedGroupsRoutingOptions.cs#L30C45-L30C49" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/OrderedGroupsRoutingOptions.cs#L30C45-L30C49" } ], "DocsId": "T:Microsoft.Extensions.Http.Resilience.OrderedGroupsRoutingOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/OrderedGroupsRoutingOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/OrderedGroupsRoutingOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Http.Resilience.RoutingStrategyBuilderExtensions.ConfigureOrderedGroups(Microsoft.Extensions.Http.Resilience.IRoutingStrategyBuilder,Microsoft.Extensions.Configuration.IConfigurationSection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/RoutingStrategyBuilderExtensions.cs#L34C9-L38C24" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/RoutingStrategyBuilderExtensions.cs#L34C9-L38C24" }, { "DocsId": "M:Microsoft.Extensions.Http.Resilience.RoutingStrategyBuilderExtensions.ConfigureOrderedGroups(Microsoft.Extensions.Http.Resilience.IRoutingStrategyBuilder,System.Action{Microsoft.Extensions.Http.Resilience.OrderedGroupsRoutingOptions})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/RoutingStrategyBuilderExtensions.cs#L49C9-L52C83" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/RoutingStrategyBuilderExtensions.cs#L16707566C0-L52C83" }, { "DocsId": "M:Microsoft.Extensions.Http.Resilience.RoutingStrategyBuilderExtensions.ConfigureOrderedGroups(Microsoft.Extensions.Http.Resilience.IRoutingStrategyBuilder,System.Action{Microsoft.Extensions.Http.Resilience.OrderedGroupsRoutingOptions,System.IServiceProvider})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/RoutingStrategyBuilderExtensions.cs#L63C9-L68C24" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/RoutingStrategyBuilderExtensions.cs#L63C9-L68C24" }, { "DocsId": "M:Microsoft.Extensions.Http.Resilience.RoutingStrategyBuilderExtensions.ConfigureWeightedGroups(Microsoft.Extensions.Http.Resilience.IRoutingStrategyBuilder,Microsoft.Extensions.Configuration.IConfigurationSection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/RoutingStrategyBuilderExtensions.cs#L79C9-L84C24" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/RoutingStrategyBuilderExtensions.cs#L79C9-L84C24" }, { "DocsId": "M:Microsoft.Extensions.Http.Resilience.RoutingStrategyBuilderExtensions.ConfigureWeightedGroups(Microsoft.Extensions.Http.Resilience.IRoutingStrategyBuilder,System.Action{Microsoft.Extensions.Http.Resilience.WeightedGroupsRoutingOptions})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/RoutingStrategyBuilderExtensions.cs#L95C9-L98C84" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/RoutingStrategyBuilderExtensions.cs#L16707566C0-L98C84" }, { "DocsId": "M:Microsoft.Extensions.Http.Resilience.RoutingStrategyBuilderExtensions.ConfigureWeightedGroups(Microsoft.Extensions.Http.Resilience.IRoutingStrategyBuilder,System.Action{Microsoft.Extensions.Http.Resilience.WeightedGroupsRoutingOptions,System.IServiceProvider})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/RoutingStrategyBuilderExtensions.cs#L109C9-L114C24" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/RoutingStrategyBuilderExtensions.cs#L109C9-L114C24" } ], "DocsId": "T:Microsoft.Extensions.Http.Resilience.RoutingStrategyBuilderExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/RoutingStrategyBuilderExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/RoutingStrategyBuilderExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Http.Resilience.UriEndpoint.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/UriEndpoint.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/UriEndpoint.cs" }, { "DocsId": "P:Microsoft.Extensions.Http.Resilience.UriEndpoint.Uri", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/UriEndpoint.cs#L27C16-L27C20" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/UriEndpoint.cs#L27C16-L27C20" } ], "DocsId": "T:Microsoft.Extensions.Http.Resilience.UriEndpoint", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/UriEndpoint.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/UriEndpoint.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Http.Resilience.UriEndpointGroup.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/UriEndpointGroup.cs#L30C65-L30C96" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/UriEndpointGroup.cs#L30C65-L30C96" }, { "DocsId": "P:Microsoft.Extensions.Http.Resilience.UriEndpointGroup.Endpoints", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/UriEndpointGroup.cs#L30C51-L30C55" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/UriEndpointGroup.cs#L30C51-L30C55" } ], "DocsId": "T:Microsoft.Extensions.Http.Resilience.UriEndpointGroup", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/UriEndpointGroup.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/UriEndpointGroup.cs" }, { "Members": [ { "DocsId": "F:Microsoft.Extensions.Http.Resilience.WeightedGroupSelectionMode.value__", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/WeightedGroupSelectionMode.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/WeightedGroupSelectionMode.cs" }, { "DocsId": "F:Microsoft.Extensions.Http.Resilience.WeightedGroupSelectionMode.EveryAttempt", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/WeightedGroupSelectionMode.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/WeightedGroupSelectionMode.cs" }, { "DocsId": "F:Microsoft.Extensions.Http.Resilience.WeightedGroupSelectionMode.InitialAttempt", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/WeightedGroupSelectionMode.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/WeightedGroupSelectionMode.cs" } ], "DocsId": "T:Microsoft.Extensions.Http.Resilience.WeightedGroupSelectionMode", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/WeightedGroupSelectionMode.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/WeightedGroupSelectionMode.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Http.Resilience.WeightedGroupsRoutingOptions.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/WeightedGroupsRoutingOptions.cs#L36C67-L36C103" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/WeightedGroupsRoutingOptions.cs#L36C67-L36C103" }, { "DocsId": "P:Microsoft.Extensions.Http.Resilience.WeightedGroupsRoutingOptions.SelectionMode", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/WeightedGroupsRoutingOptions.cs#L22C55-L22C59" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/WeightedGroupsRoutingOptions.cs#L22C55-L22C59" }, { "DocsId": "P:Microsoft.Extensions.Http.Resilience.WeightedGroupsRoutingOptions.Groups", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/WeightedGroupsRoutingOptions.cs#L36C53-L36C57" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/WeightedGroupsRoutingOptions.cs#L36C53-L36C57" } ], "DocsId": "T:Microsoft.Extensions.Http.Resilience.WeightedGroupsRoutingOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/WeightedGroupsRoutingOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/WeightedGroupsRoutingOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Http.Resilience.WeightedUriEndpoint.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/WeightedUriEndpoint.cs#L34C39-L34C52" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/WeightedUriEndpoint.cs#L34C39-L34C52" }, { "DocsId": "P:Microsoft.Extensions.Http.Resilience.WeightedUriEndpoint.Uri", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/WeightedUriEndpoint.cs#L25C23-L25C27" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/WeightedUriEndpoint.cs#L25C23-L25C27" }, { "DocsId": "P:Microsoft.Extensions.Http.Resilience.WeightedUriEndpoint.Weight", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/WeightedUriEndpoint.cs#L34C25-L34C29" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/WeightedUriEndpoint.cs#L34C25-L34C29" } ], "DocsId": "T:Microsoft.Extensions.Http.Resilience.WeightedUriEndpoint", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/WeightedUriEndpoint.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/WeightedUriEndpoint.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Http.Resilience.WeightedUriEndpointGroup.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/WeightedUriEndpointGroup.cs#L24C39-L24C52" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/WeightedUriEndpointGroup.cs#L24C39-L24C52" }, { "DocsId": "P:Microsoft.Extensions.Http.Resilience.WeightedUriEndpointGroup.Weight", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/WeightedUriEndpointGroup.cs#L24C25-L24C29" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/WeightedUriEndpointGroup.cs#L24C25-L24C29" } ], "DocsId": "T:Microsoft.Extensions.Http.Resilience.WeightedUriEndpointGroup", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/WeightedUriEndpointGroup.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/WeightedUriEndpointGroup.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Http.json b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Http.json index e07ed7b7f8d..18ddd5f58f2 100644 --- a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Http.json +++ b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Http.json @@ -1,445 +1,444 @@ { "Assembly": "Microsoft.Extensions.Http", - "GUID": "69928585873C4B59BEBDFC8990C6C9AAFFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "0DDD8380A81F48F99FF094FC119EAB4CFFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:System.Net.Http.HttpClientFactoryExtensions.CreateClient(System.Net.Http.IHttpClientFactory)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/HttpClientFactoryExtensions.cs#L20C13-L22C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/HttpClientFactoryExtensions.cs#L20C13-L22C62" } ], "DocsId": "T:System.Net.Http.HttpClientFactoryExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/HttpClientFactoryExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/HttpClientFactoryExtensions.cs" }, { "Members": [ { "DocsId": "M:System.Net.Http.HttpMessageHandlerFactoryExtensions.CreateHandler(System.Net.Http.IHttpMessageHandlerFactory)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/HttpMessageHandlerFactoryExtensions.cs#L20C13-L22C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/HttpMessageHandlerFactoryExtensions.cs#L20C13-L22C63" } ], "DocsId": "T:System.Net.Http.HttpMessageHandlerFactoryExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/HttpMessageHandlerFactoryExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/HttpMessageHandlerFactoryExtensions.cs" }, { "Members": [ { "DocsId": "M:System.Net.Http.IHttpClientFactory.CreateClient(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/IHttpClientFactory.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/IHttpClientFactory.cs" } ], "DocsId": "T:System.Net.Http.IHttpClientFactory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/IHttpClientFactory.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/IHttpClientFactory.cs" }, { "Members": [ { "DocsId": "M:System.Net.Http.IHttpMessageHandlerFactory.CreateHandler(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/IHttpMessageHandlerFactory.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/IHttpMessageHandlerFactory.cs" } ], "DocsId": "T:System.Net.Http.IHttpMessageHandlerFactory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/IHttpMessageHandlerFactory.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/IHttpMessageHandlerFactory.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientBuilderExtensions.ConfigureHttpClient(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder,System.Action{System.Net.Http.HttpClient})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.cs#L30C13-L35C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.cs#L16707566C0-L35C28" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientBuilderExtensions.ConfigureHttpClient(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder,System.Action{System.IServiceProvider,System.Net.Http.HttpClient})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.cs#L50C13-L61C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.cs#L16707566C0-L61C28" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientBuilderExtensions.AddHttpMessageHandler(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder,System.Func{System.Net.Http.DelegatingHandler})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.cs#L76C13-L84C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.cs#L16707566C0-L84C28" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientBuilderExtensions.AddHttpMessageHandler(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder,System.Func{System.IServiceProvider,System.Net.Http.DelegatingHandler})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.cs#L104C13-L112C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.cs#L16707566C0-L112C28" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientBuilderExtensions.AddHttpMessageHandler``1(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.cs#L132C13-L139C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.cs#L132C13-L139C28" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientBuilderExtensions.ConfigurePrimaryHttpMessageHandler(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder,System.Func{System.Net.Http.HttpMessageHandler})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.cs#L155C13-L163C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.cs#L16707566C0-L163C28" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientBuilderExtensions.ConfigurePrimaryHttpMessageHandler(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder,System.Func{System.IServiceProvider,System.Net.Http.HttpMessageHandler})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.cs#L185C13-L193C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.cs#L16707566C0-L193C28" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientBuilderExtensions.ConfigurePrimaryHttpMessageHandler``1(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.cs#L214C13-L221C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.cs#L214C13-L221C28" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientBuilderExtensions.ConfigurePrimaryHttpMessageHandler(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder,System.Action{System.Net.Http.HttpMessageHandler,System.IServiceProvider})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.cs#L239C13-L247C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.cs#L16707566C0-L247C28" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientBuilderExtensions.ConfigureHttpMessageHandlerBuilder(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder,System.Action{Microsoft.Extensions.Http.HttpMessageHandlerBuilder})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.cs#L260C13-L265C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.cs#L16707566C0-L265C28" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientBuilderExtensions.UseSocketsHttpHandler(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder,System.Action{System.Net.Http.SocketsHttpHandler,System.IServiceProvider})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.cs#L287C13-L302C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.cs#L16707566C0-L302C28" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientBuilderExtensions.UseSocketsHttpHandler(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder,System.Action{Microsoft.Extensions.DependencyInjection.ISocketsHttpHandlerBuilder})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.cs#L325C13-L330C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.cs#L325C13-L330C28" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientBuilderExtensions.AddTypedClient``1(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.cs#L363C13-L365C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.cs#L363C13-L365C84" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientBuilderExtensions.AddTypedClient``2(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.cs#L431C13-L433C101" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.cs#L431C13-L433C101" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientBuilderExtensions.AddTypedClient``1(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder,System.Func{System.Net.Http.HttpClient,``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.cs#L483C13-L486C93" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.cs#L483C13-L486C93" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientBuilderExtensions.AddTypedClient``1(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder,System.Func{System.Net.Http.HttpClient,System.IServiceProvider,``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.cs#L529C13-L532C93" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.cs#L529C13-L532C93" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientBuilderExtensions.RedactLoggedHeaders(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder,System.Func{System.String,System.Boolean})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.cs#L564C13-L572C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.cs#L16707566C0-L572C28" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientBuilderExtensions.RedactLoggedHeaders(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder,System.Collections.Generic.IEnumerable{System.String})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.cs#L583C13-L593C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.cs#L16707566C0-L593C28" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientBuilderExtensions.SetHandlerLifetime(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder,System.TimeSpan)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.cs#L622C13-L630C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.cs#L16707566C0-L630C28" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientBuilderExtensions.ConfigureAdditionalHttpMessageHandlers(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder,System.Action{System.Collections.Generic.IList{System.Net.Http.DelegatingHandler},System.IServiceProvider})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.cs#L642C13-L650C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.cs#L16707566C0-L650C28" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientBuilderExtensions.AddLogger(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder,System.Func{System.IServiceProvider,Microsoft.Extensions.Http.Logging.IHttpClientLogger},System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.Logging.cs#L48C13-L69C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.Logging.cs#L16707566C0-L69C28" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientBuilderExtensions.AddLogger``1(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.Logging.cs#L111C13-L113C113" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.Logging.cs#L111C13-L113C113" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientBuilderExtensions.RemoveAllLoggers(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.Logging.cs#L123C13-L131C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.Logging.cs#L123C13-L131C28" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientBuilderExtensions.AddDefaultLogger(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.Logging.cs#L141C13-L144C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.Logging.cs#L141C13-L144C28" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.HttpClientBuilderExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientFactoryServiceCollectionExtensions.AddHttpClient(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientFactoryServiceCollectionExtensions.cs#L28C13-L71C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientFactoryServiceCollectionExtensions.cs#L28C13-L71C29" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientFactoryServiceCollectionExtensions.ConfigureHttpClientDefaults(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{Microsoft.Extensions.DependencyInjection.IHttpClientBuilder})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientFactoryServiceCollectionExtensions.cs#L82C13-L89C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientFactoryServiceCollectionExtensions.cs#L82C13-L89C29" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientFactoryServiceCollectionExtensions.AddHttpClient(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientFactoryServiceCollectionExtensions.cs#L110C13-L115C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientFactoryServiceCollectionExtensions.cs#L110C13-L115C65" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientFactoryServiceCollectionExtensions.AddHttpClient(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.String,System.Action{System.Net.Http.HttpClient})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientFactoryServiceCollectionExtensions.cs#L137C13-L145C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientFactoryServiceCollectionExtensions.cs#L137C13-L145C28" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientFactoryServiceCollectionExtensions.AddHttpClient(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.String,System.Action{System.IServiceProvider,System.Net.Http.HttpClient})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientFactoryServiceCollectionExtensions.cs#L167C13-L175C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientFactoryServiceCollectionExtensions.cs#L167C13-L175C28" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientFactoryServiceCollectionExtensions.AddHttpClient``1(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientFactoryServiceCollectionExtensions.cs#L204C13-L211C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientFactoryServiceCollectionExtensions.cs#L204C13-L211C28" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientFactoryServiceCollectionExtensions.AddHttpClient``2(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientFactoryServiceCollectionExtensions.cs#L245C13-L252C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientFactoryServiceCollectionExtensions.cs#L245C13-L252C28" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientFactoryServiceCollectionExtensions.AddHttpClient``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientFactoryServiceCollectionExtensions.cs#L284C13-L291C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientFactoryServiceCollectionExtensions.cs#L284C13-L291C28" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientFactoryServiceCollectionExtensions.AddHttpClient``2(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientFactoryServiceCollectionExtensions.cs#L328C13-L335C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientFactoryServiceCollectionExtensions.cs#L328C13-L335C28" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientFactoryServiceCollectionExtensions.AddHttpClient``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{System.Net.Http.HttpClient})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientFactoryServiceCollectionExtensions.cs#L365C13-L374C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientFactoryServiceCollectionExtensions.cs#L365C13-L374C28" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientFactoryServiceCollectionExtensions.AddHttpClient``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{System.IServiceProvider,System.Net.Http.HttpClient})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientFactoryServiceCollectionExtensions.cs#L404C13-L413C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientFactoryServiceCollectionExtensions.cs#L404C13-L413C28" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientFactoryServiceCollectionExtensions.AddHttpClient``2(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{System.Net.Http.HttpClient})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientFactoryServiceCollectionExtensions.cs#L448C13-L457C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientFactoryServiceCollectionExtensions.cs#L448C13-L457C28" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientFactoryServiceCollectionExtensions.AddHttpClient``2(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{System.IServiceProvider,System.Net.Http.HttpClient})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientFactoryServiceCollectionExtensions.cs#L492C13-L501C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientFactoryServiceCollectionExtensions.cs#L492C13-L501C28" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientFactoryServiceCollectionExtensions.AddHttpClient``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.String,System.Action{System.Net.Http.HttpClient})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientFactoryServiceCollectionExtensions.cs#L534C13-L543C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientFactoryServiceCollectionExtensions.cs#L534C13-L543C28" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientFactoryServiceCollectionExtensions.AddHttpClient``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.String,System.Action{System.IServiceProvider,System.Net.Http.HttpClient})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientFactoryServiceCollectionExtensions.cs#L576C13-L585C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientFactoryServiceCollectionExtensions.cs#L576C13-L585C28" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientFactoryServiceCollectionExtensions.AddHttpClient``2(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.String,System.Action{System.Net.Http.HttpClient})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientFactoryServiceCollectionExtensions.cs#L623C13-L632C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientFactoryServiceCollectionExtensions.cs#L623C13-L632C28" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientFactoryServiceCollectionExtensions.AddHttpClient``2(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.String,System.Action{System.IServiceProvider,System.Net.Http.HttpClient})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientFactoryServiceCollectionExtensions.cs#L670C13-L679C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientFactoryServiceCollectionExtensions.cs#L670C13-L679C28" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientFactoryServiceCollectionExtensions.AddHttpClient``2(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Func{System.Net.Http.HttpClient,``1})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientFactoryServiceCollectionExtensions.cs#L711C13-L715C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientFactoryServiceCollectionExtensions.cs#L711C13-L715C85" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientFactoryServiceCollectionExtensions.AddHttpClient``2(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.String,System.Func{System.Net.Http.HttpClient,``1})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientFactoryServiceCollectionExtensions.cs#L750C13-L758C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientFactoryServiceCollectionExtensions.cs#L750C13-L758C28" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientFactoryServiceCollectionExtensions.AddHttpClient``2(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Func{System.Net.Http.HttpClient,System.IServiceProvider,``1})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientFactoryServiceCollectionExtensions.cs#L790C13-L794C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientFactoryServiceCollectionExtensions.cs#L790C13-L794C85" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientFactoryServiceCollectionExtensions.AddHttpClient``2(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.String,System.Func{System.Net.Http.HttpClient,System.IServiceProvider,``1})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientFactoryServiceCollectionExtensions.cs#L827C13-L835C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientFactoryServiceCollectionExtensions.cs#L827C13-L835C28" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.HttpClientFactoryServiceCollectionExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientFactoryServiceCollectionExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientFactoryServiceCollectionExtensions.cs" }, { "Members": [ { "DocsId": "P:Microsoft.Extensions.DependencyInjection.IHttpClientBuilder.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/IHttpClientBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/IHttpClientBuilder.cs" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.IHttpClientBuilder.Services", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/IHttpClientBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/IHttpClientBuilder.cs" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.IHttpClientBuilder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/IHttpClientBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/IHttpClientBuilder.cs" }, { "Members": [ { "DocsId": "P:Microsoft.Extensions.DependencyInjection.ISocketsHttpHandlerBuilder.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/ISocketsHttpHandlerBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/ISocketsHttpHandlerBuilder.cs" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.ISocketsHttpHandlerBuilder.Services", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/ISocketsHttpHandlerBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/ISocketsHttpHandlerBuilder.cs" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.ISocketsHttpHandlerBuilder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/ISocketsHttpHandlerBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/ISocketsHttpHandlerBuilder.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.SocketsHttpHandlerBuilderExtensions.Configure(Microsoft.Extensions.DependencyInjection.ISocketsHttpHandlerBuilder,System.Action{System.Net.Http.SocketsHttpHandler,System.IServiceProvider})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/SocketsHttpHandlerBuilderExtensions.cs#L30C13-L43C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/SocketsHttpHandlerBuilderExtensions.cs#L16707566C0-L43C28" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.SocketsHttpHandlerBuilderExtensions.Configure(Microsoft.Extensions.DependencyInjection.ISocketsHttpHandlerBuilder,Microsoft.Extensions.Configuration.IConfiguration)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/SocketsHttpHandlerBuilderExtensions.cs#L64C13-L65C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/SocketsHttpHandlerBuilderExtensions.cs#L16707566C0-L65C94" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.SocketsHttpHandlerBuilderExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/SocketsHttpHandlerBuilderExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/SocketsHttpHandlerBuilderExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Http.HttpClientFactoryOptions.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/HttpClientFactoryOptions.cs#L22C9-L105C136" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/HttpClientFactoryOptions.cs#L22C9-L105C136" }, { "DocsId": "P:Microsoft.Extensions.Http.HttpClientFactoryOptions.HttpMessageHandlerBuilderActions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/HttpClientFactoryOptions.cs#L27C92-L27C96" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/HttpClientFactoryOptions.cs#L27C92-L27C96" }, { "DocsId": "P:Microsoft.Extensions.Http.HttpClientFactoryOptions.HttpClientActions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/HttpClientFactoryOptions.cs#L32C62-L32C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/HttpClientFactoryOptions.cs#L32C62-L32C66" }, { "DocsId": "P:Microsoft.Extensions.Http.HttpClientFactoryOptions.HandlerLifetime", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/HttpClientFactoryOptions.cs#L60C20-L60C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/HttpClientFactoryOptions.cs#L60C20-L60C36" }, { "DocsId": "P:Microsoft.Extensions.Http.HttpClientFactoryOptions.ShouldRedactHeaderValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/HttpClientFactoryOptions.cs#L75C61-L75C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/HttpClientFactoryOptions.cs#L75C61-L75C65" }, { "DocsId": "P:Microsoft.Extensions.Http.HttpClientFactoryOptions.SuppressHandlerScope", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/HttpClientFactoryOptions.cs#L102C44-L102C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/HttpClientFactoryOptions.cs#L102C44-L102C48" } ], "DocsId": "T:Microsoft.Extensions.Http.HttpClientFactoryOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/HttpClientFactoryOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/HttpClientFactoryOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Http.HttpMessageHandlerBuilder.Build", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/HttpMessageHandlerBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/HttpMessageHandlerBuilder.cs" }, { "DocsId": "M:Microsoft.Extensions.Http.HttpMessageHandlerBuilder.CreateHandlerPipeline(System.Net.Http.HttpMessageHandler,System.Collections.Generic.IEnumerable{System.Net.Http.DelegatingHandler})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/HttpMessageHandlerBuilder.cs#L83C13-L118C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/HttpMessageHandlerBuilder.cs#L83C13-L118C25" }, { "DocsId": "M:Microsoft.Extensions.Http.HttpMessageHandlerBuilder.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/HttpMessageHandlerBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/HttpMessageHandlerBuilder.cs" }, { "DocsId": "P:Microsoft.Extensions.Http.HttpMessageHandlerBuilder.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/HttpMessageHandlerBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/HttpMessageHandlerBuilder.cs" }, { "DocsId": "P:Microsoft.Extensions.Http.HttpMessageHandlerBuilder.PrimaryHandler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/HttpMessageHandlerBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/HttpMessageHandlerBuilder.cs" }, { "DocsId": "P:Microsoft.Extensions.Http.HttpMessageHandlerBuilder.AdditionalHandlers", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/HttpMessageHandlerBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/HttpMessageHandlerBuilder.cs" }, { "DocsId": "P:Microsoft.Extensions.Http.HttpMessageHandlerBuilder.Services", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/HttpMessageHandlerBuilder.cs#L55C52-L55C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/HttpMessageHandlerBuilder.cs#L55C52-L55C56" } ], "DocsId": "T:Microsoft.Extensions.Http.HttpMessageHandlerBuilder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/HttpMessageHandlerBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/HttpMessageHandlerBuilder.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Http.IHttpMessageHandlerBuilderFilter.Configure(System.Action{Microsoft.Extensions.Http.HttpMessageHandlerBuilder})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/IHttpMessageHandlerBuilderFilter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/IHttpMessageHandlerBuilderFilter.cs" } ], "DocsId": "T:Microsoft.Extensions.Http.IHttpMessageHandlerBuilderFilter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/IHttpMessageHandlerBuilderFilter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/IHttpMessageHandlerBuilderFilter.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Http.ITypedHttpClientFactory`1.CreateClient(System.Net.Http.HttpClient)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/ITypedHttpClientFactory.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/ITypedHttpClientFactory.cs" } ], "DocsId": "T:Microsoft.Extensions.Http.ITypedHttpClientFactory`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/ITypedHttpClientFactory.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/ITypedHttpClientFactory.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Http.Logging.IHttpClientAsyncLogger.LogRequestStartAsync(System.Net.Http.HttpRequestMessage,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/Logging/IHttpClientAsyncLogger.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/Logging/IHttpClientAsyncLogger.cs" }, { "DocsId": "M:Microsoft.Extensions.Http.Logging.IHttpClientAsyncLogger.LogRequestStopAsync(System.Object,System.Net.Http.HttpRequestMessage,System.Net.Http.HttpResponseMessage,System.TimeSpan,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/Logging/IHttpClientAsyncLogger.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/Logging/IHttpClientAsyncLogger.cs" }, { "DocsId": "M:Microsoft.Extensions.Http.Logging.IHttpClientAsyncLogger.LogRequestFailedAsync(System.Object,System.Net.Http.HttpRequestMessage,System.Net.Http.HttpResponseMessage,System.Exception,System.TimeSpan,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/Logging/IHttpClientAsyncLogger.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/Logging/IHttpClientAsyncLogger.cs" } ], "DocsId": "T:Microsoft.Extensions.Http.Logging.IHttpClientAsyncLogger", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/Logging/IHttpClientAsyncLogger.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/Logging/IHttpClientAsyncLogger.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Http.Logging.IHttpClientLogger.LogRequestStart(System.Net.Http.HttpRequestMessage)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/Logging/IHttpClientLogger.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/Logging/IHttpClientLogger.cs" }, { "DocsId": "M:Microsoft.Extensions.Http.Logging.IHttpClientLogger.LogRequestStop(System.Object,System.Net.Http.HttpRequestMessage,System.Net.Http.HttpResponseMessage,System.TimeSpan)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/Logging/IHttpClientLogger.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/Logging/IHttpClientLogger.cs" }, { "DocsId": "M:Microsoft.Extensions.Http.Logging.IHttpClientLogger.LogRequestFailed(System.Object,System.Net.Http.HttpRequestMessage,System.Net.Http.HttpResponseMessage,System.Exception,System.TimeSpan)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/Logging/IHttpClientLogger.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/Logging/IHttpClientLogger.cs" } ], "DocsId": "T:Microsoft.Extensions.Http.Logging.IHttpClientLogger", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/Logging/IHttpClientLogger.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/Logging/IHttpClientLogger.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.#ctor(Microsoft.Extensions.Logging.ILogger)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/Logging/LoggingHttpMessageHandler.cs#L28C9-L33C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/Logging/LoggingHttpMessageHandler.cs#L28C9-L33C10" }, { "DocsId": "M:Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.#ctor(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Http.HttpClientFactoryOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/Logging/LoggingHttpMessageHandler.cs#L41C9-L48C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/Logging/LoggingHttpMessageHandler.cs#L41C9-L48C10" }, { "DocsId": "M:Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(System.Net.Http.HttpRequestMessage,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/Logging/LoggingHttpMessageHandler.cs#L79C16-L79C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/Logging/LoggingHttpMessageHandler.cs#L79C16-L79C73" }, { "DocsId": "M:Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.Send(System.Net.Http.HttpRequestMessage,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/Logging/LoggingHttpMessageHandler.cs#L85C16-L85C99" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/Logging/LoggingHttpMessageHandler.cs#L85C16-L85C99" } ], "DocsId": "T:Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/Logging/LoggingHttpMessageHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/Logging/LoggingHttpMessageHandler.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.#ctor(Microsoft.Extensions.Logging.ILogger)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/Logging/LoggingScopeHttpMessageHandler.cs#L28C9-L33C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/Logging/LoggingScopeHttpMessageHandler.cs#L28C9-L33C10" }, { "DocsId": "M:Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.#ctor(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Http.HttpClientFactoryOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/Logging/LoggingScopeHttpMessageHandler.cs#L41C9-L48C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/Logging/LoggingScopeHttpMessageHandler.cs#L41C9-L48C10" }, { "DocsId": "M:Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(System.Net.Http.HttpRequestMessage,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/Logging/LoggingScopeHttpMessageHandler.cs#L81C16-L81C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/Logging/LoggingScopeHttpMessageHandler.cs#L81C16-L81C73" }, { "DocsId": "M:Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.Send(System.Net.Http.HttpRequestMessage,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/Logging/LoggingScopeHttpMessageHandler.cs#L87C16-L87C99" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/Logging/LoggingScopeHttpMessageHandler.cs#L87C16-L87C99" } ], "DocsId": "T:Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/Logging/LoggingScopeHttpMessageHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/Logging/LoggingScopeHttpMessageHandler.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Localization.Abstractions.json b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Localization.Abstractions.json index df75a499167..26223437286 100644 --- a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Localization.Abstractions.json +++ b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Localization.Abstractions.json @@ -1,126 +1,125 @@ { "Assembly": "Microsoft.Extensions.Localization.Abstractions", - "GUID": "B39F53897F2F4BD1802250409AD088F5FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "D469BEDD6A1A4FE180EB26C59DB2AAEFFFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.Localization.IStringLocalizer.GetAllStrings(System.Boolean)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Localization/Abstractions/src/IStringLocalizer.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Localization/Abstractions/src/IStringLocalizer.cs" }, { "DocsId": "P:Microsoft.Extensions.Localization.IStringLocalizer.Item(System.String)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Localization/Abstractions/src/IStringLocalizer.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Localization/Abstractions/src/IStringLocalizer.cs" }, { "DocsId": "P:Microsoft.Extensions.Localization.IStringLocalizer.Item(System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Localization/Abstractions/src/IStringLocalizer.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Localization/Abstractions/src/IStringLocalizer.cs" } ], "DocsId": "T:Microsoft.Extensions.Localization.IStringLocalizer", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Localization/Abstractions/src/IStringLocalizer.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Localization/Abstractions/src/IStringLocalizer.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Localization.IStringLocalizerFactory.Create(System.Type)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Localization/Abstractions/src/IStringLocalizerFactory.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Localization/Abstractions/src/IStringLocalizerFactory.cs" }, { "DocsId": "M:Microsoft.Extensions.Localization.IStringLocalizerFactory.Create(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Localization/Abstractions/src/IStringLocalizerFactory.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Localization/Abstractions/src/IStringLocalizerFactory.cs" } ], "DocsId": "T:Microsoft.Extensions.Localization.IStringLocalizerFactory", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Localization/Abstractions/src/IStringLocalizerFactory.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Localization/Abstractions/src/IStringLocalizerFactory.cs" }, { "Members": [], "DocsId": "T:Microsoft.Extensions.Localization.IStringLocalizer`1", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Localization/Abstractions/src/IStringLocalizerOfT.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Localization/Abstractions/src/IStringLocalizerOfT.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Localization.LocalizedString.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Localization/Abstractions/src/LocalizedString.cs#L21C11-L23C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Localization/Abstractions/src/LocalizedString.cs#L21C11-L23C6" }, { "DocsId": "M:Microsoft.Extensions.Localization.LocalizedString.#ctor(System.String,System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Localization/Abstractions/src/LocalizedString.cs#L32C11-L34C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Localization/Abstractions/src/LocalizedString.cs#L32C11-L34C6" }, { "DocsId": "M:Microsoft.Extensions.Localization.LocalizedString.#ctor(System.String,System.String,System.Boolean,System.String)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Localization/Abstractions/src/LocalizedString.cs#L43C5-L52C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Localization/Abstractions/src/LocalizedString.cs#L43C5-L52C6" }, { "DocsId": "M:Microsoft.Extensions.Localization.LocalizedString.op_Implicit(Microsoft.Extensions.Localization.LocalizedString)~System.String", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Localization/Abstractions/src/LocalizedString.cs#L61C9-L61C39" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Localization/Abstractions/src/LocalizedString.cs#L61C9-L61C39" }, { "DocsId": "M:Microsoft.Extensions.Localization.LocalizedString.ToString", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Localization/Abstractions/src/LocalizedString.cs#L88C42-L88C47" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Localization/Abstractions/src/LocalizedString.cs#L88C42-L88C47" }, { "DocsId": "P:Microsoft.Extensions.Localization.LocalizedString.Name", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Localization/Abstractions/src/LocalizedString.cs#L67C26-L67C30" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Localization/Abstractions/src/LocalizedString.cs#L67C26-L67C30" }, { "DocsId": "P:Microsoft.Extensions.Localization.LocalizedString.Value", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Localization/Abstractions/src/LocalizedString.cs#L72C27-L72C31" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Localization/Abstractions/src/LocalizedString.cs#L72C27-L72C31" }, { "DocsId": "P:Microsoft.Extensions.Localization.LocalizedString.ResourceNotFound", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Localization/Abstractions/src/LocalizedString.cs#L77C36-L77C40" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Localization/Abstractions/src/LocalizedString.cs#L77C36-L77C40" }, { "DocsId": "P:Microsoft.Extensions.Localization.LocalizedString.SearchedLocation", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Localization/Abstractions/src/LocalizedString.cs#L82C39-L82C43" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Localization/Abstractions/src/LocalizedString.cs#L82C39-L82C43" } ], "DocsId": "T:Microsoft.Extensions.Localization.LocalizedString", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Localization/Abstractions/src/LocalizedString.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Localization/Abstractions/src/LocalizedString.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Localization.StringLocalizerExtensions.GetString(Microsoft.Extensions.Localization.IStringLocalizer,System.String)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Localization/Abstractions/src/StringLocalizerExtensions.cs#L25C9-L28C38" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Localization/Abstractions/src/StringLocalizerExtensions.cs#L25C9-L28C38" }, { "DocsId": "M:Microsoft.Extensions.Localization.StringLocalizerExtensions.GetString(Microsoft.Extensions.Localization.IStringLocalizer,System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Localization/Abstractions/src/StringLocalizerExtensions.cs#L43C9-L46C49" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Localization/Abstractions/src/StringLocalizerExtensions.cs#L43C9-L46C49" }, { "DocsId": "M:Microsoft.Extensions.Localization.StringLocalizerExtensions.GetAllStrings(Microsoft.Extensions.Localization.IStringLocalizer)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Localization/Abstractions/src/StringLocalizerExtensions.cs#L56C9-L58C75" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Localization/Abstractions/src/StringLocalizerExtensions.cs#L56C9-L58C75" } ], "DocsId": "T:Microsoft.Extensions.Localization.StringLocalizerExtensions", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Localization/Abstractions/src/StringLocalizerExtensions.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Localization/Abstractions/src/StringLocalizerExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Localization.StringLocalizer`1.#ctor(Microsoft.Extensions.Localization.IStringLocalizerFactory)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Localization/Abstractions/src/StringLocalizerOfT.cs#L22C5-L27C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Localization/Abstractions/src/StringLocalizerOfT.cs#L22C5-L27C6" }, { "DocsId": "M:Microsoft.Extensions.Localization.StringLocalizer`1.GetAllStrings(System.Boolean)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Localization/Abstractions/src/StringLocalizerOfT.cs#L53C9-L53C56" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Localization/Abstractions/src/StringLocalizerOfT.cs#L53C9-L53C56" }, { "DocsId": "P:Microsoft.Extensions.Localization.StringLocalizer`1.Item(System.String)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Localization/Abstractions/src/StringLocalizerOfT.cs#L34C13-L36C37" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Localization/Abstractions/src/StringLocalizerOfT.cs#L34C13-L36C37" }, { "DocsId": "P:Microsoft.Extensions.Localization.StringLocalizer`1.Item(System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Localization/Abstractions/src/StringLocalizerOfT.cs#L45C13-L47C48" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Localization/Abstractions/src/StringLocalizerOfT.cs#L45C13-L47C48" } ], "DocsId": "T:Microsoft.Extensions.Localization.StringLocalizer`1", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Localization/Abstractions/src/StringLocalizerOfT.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Localization/Abstractions/src/StringLocalizerOfT.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Localization.json b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Localization.json index b2ccd725410..58c178dfdbc 100644 --- a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Localization.json +++ b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Localization.json @@ -1,163 +1,162 @@ { "Assembly": "Microsoft.Extensions.Localization", - "GUID": "5242290547C94EDE8C980B9033180B1FFFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "4D9DE34C1D4C44C68DE1DC7492C0DC89FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.LocalizationServiceCollectionExtensions.AddLocalization(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Localization/Localization/src/LocalizationServiceCollectionExtensions.cs#L23C9-L29C25" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Localization/Localization/src/LocalizationServiceCollectionExtensions.cs#L23C9-L29C25" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.LocalizationServiceCollectionExtensions.AddLocalization(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{Microsoft.Extensions.Localization.LocalizationOptions})", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Localization/Localization/src/LocalizationServiceCollectionExtensions.cs#L44C9-L49C25" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Localization/Localization/src/LocalizationServiceCollectionExtensions.cs#L44C9-L49C25" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.LocalizationServiceCollectionExtensions", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Localization/Localization/src/LocalizationServiceCollectionExtensions.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Localization/Localization/src/LocalizationServiceCollectionExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Localization.IResourceNamesCache.GetOrAdd(System.String,System.Func{System.String,System.Collections.Generic.IList{System.String}})", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Localization/Localization/src/IResourceNamesCache.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Localization/Localization/src/IResourceNamesCache.cs" } ], "DocsId": "T:Microsoft.Extensions.Localization.IResourceNamesCache", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Localization/Localization/src/IResourceNamesCache.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Localization/Localization/src/IResourceNamesCache.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Localization.LocalizationOptions.#ctor", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Localization/Localization/src/LocalizationOptions.cs#L20C49-L15C8" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Localization/Localization/src/LocalizationOptions.cs#L20C49-L15C8" }, { "DocsId": "P:Microsoft.Extensions.Localization.LocalizationOptions.ResourcesPath", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Localization/Localization/src/LocalizationOptions.cs#L20C35-L20C39" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Localization/Localization/src/LocalizationOptions.cs#L20C35-L20C39" } ], "DocsId": "T:Microsoft.Extensions.Localization.LocalizationOptions", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Localization/Localization/src/LocalizationOptions.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Localization/Localization/src/LocalizationOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Localization.ResourceLocationAttribute.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Localization/Localization/src/ResourceLocationAttribute.cs#L19C5-L24C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Localization/Localization/src/ResourceLocationAttribute.cs#L19C5-L24C6" }, { "DocsId": "P:Microsoft.Extensions.Localization.ResourceLocationAttribute.ResourceLocation", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Localization/Localization/src/ResourceLocationAttribute.cs#L29C38-L29C42" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Localization/Localization/src/ResourceLocationAttribute.cs#L29C38-L29C42" } ], "DocsId": "T:Microsoft.Extensions.Localization.ResourceLocationAttribute", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Localization/Localization/src/ResourceLocationAttribute.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Localization/Localization/src/ResourceLocationAttribute.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.#ctor(System.Resources.ResourceManager,System.Reflection.Assembly,System.String,Microsoft.Extensions.Localization.IResourceNamesCache,Microsoft.Extensions.Logging.ILogger)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Localization/Localization/src/ResourceManagerStringLocalizer.cs#L44C11-L51C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Localization/Localization/src/ResourceManagerStringLocalizer.cs#L44C11-L51C6" }, { "DocsId": "M:Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetAllStrings(System.Boolean)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Localization/Localization/src/ResourceManagerStringLocalizer.cs#L127C9-L127C75" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Localization/Localization/src/ResourceManagerStringLocalizer.cs#L127C9-L127C75" }, { "DocsId": "M:Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetAllStrings(System.Boolean,System.Globalization.CultureInfo)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Localization/Localization/src/ResourceManagerStringLocalizer.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Localization/Localization/src/ResourceManagerStringLocalizer.cs" }, { "DocsId": "M:Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetStringSafely(System.String,System.Globalization.CultureInfo)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Localization/Localization/src/ResourceManagerStringLocalizer.cs#L159C9-L181C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Localization/Localization/src/ResourceManagerStringLocalizer.cs#L159C9-L181C6" }, { "DocsId": "P:Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.Item(System.String)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Localization/Localization/src/ResourceManagerStringLocalizer.cs#L103C13-L107C131" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Localization/Localization/src/ResourceManagerStringLocalizer.cs#L103C13-L107C131" }, { "DocsId": "P:Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.Item(System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Localization/Localization/src/ResourceManagerStringLocalizer.cs#L116C13-L121C124" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Localization/Localization/src/ResourceManagerStringLocalizer.cs#L116C13-L121C124" } ], "DocsId": "T:Microsoft.Extensions.Localization.ResourceManagerStringLocalizer", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Localization/Localization/src/ResourceManagerStringLocalizer.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Localization/Localization/src/ResourceManagerStringLocalizer.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Localization.ResourceManagerStringLocalizerFactory.#ctor(Microsoft.Extensions.Options.IOptions{Microsoft.Extensions.Localization.LocalizationOptions},Microsoft.Extensions.Logging.ILoggerFactory)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Localization/Localization/src/ResourceManagerStringLocalizerFactory.cs#L25C5-L51C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Localization/Localization/src/ResourceManagerStringLocalizerFactory.cs#L25C5-L51C6" }, { "DocsId": "M:Microsoft.Extensions.Localization.ResourceManagerStringLocalizerFactory.GetResourcePrefix(System.Reflection.TypeInfo)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Localization/Localization/src/ResourceManagerStringLocalizerFactory.cs#L60C9-L62C117" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Localization/Localization/src/ResourceManagerStringLocalizerFactory.cs#L60C9-L62C117" }, { "DocsId": "M:Microsoft.Extensions.Localization.ResourceManagerStringLocalizerFactory.GetResourcePrefix(System.Reflection.TypeInfo,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Localization/Localization/src/ResourceManagerStringLocalizerFactory.cs#L78C9-L94C117" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Localization/Localization/src/ResourceManagerStringLocalizerFactory.cs#L78C9-L94C117" }, { "DocsId": "M:Microsoft.Extensions.Localization.ResourceManagerStringLocalizerFactory.GetResourcePrefix(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Localization/Localization/src/ResourceManagerStringLocalizerFactory.cs#L106C9-L117C33" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Localization/Localization/src/ResourceManagerStringLocalizerFactory.cs#L106C9-L117C33" }, { "DocsId": "M:Microsoft.Extensions.Localization.ResourceManagerStringLocalizerFactory.Create(System.Type)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Localization/Localization/src/ResourceManagerStringLocalizerFactory.cs#L128C9-L142C26" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Localization/Localization/src/ResourceManagerStringLocalizerFactory.cs#L128C9-L142C26" }, { "DocsId": "M:Microsoft.Extensions.Localization.ResourceManagerStringLocalizerFactory.Create(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Localization/Localization/src/ResourceManagerStringLocalizerFactory.cs#L153C9-L163C12" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Localization/Localization/src/ResourceManagerStringLocalizerFactory.cs#L16707566C0-L163C12" }, { "DocsId": "M:Microsoft.Extensions.Localization.ResourceManagerStringLocalizerFactory.CreateResourceManagerStringLocalizer(System.Reflection.Assembly,System.String)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Localization/Localization/src/ResourceManagerStringLocalizerFactory.cs#L175C9-L180C76" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Localization/Localization/src/ResourceManagerStringLocalizerFactory.cs#L175C9-L180C76" }, { "DocsId": "M:Microsoft.Extensions.Localization.ResourceManagerStringLocalizerFactory.GetResourcePrefix(System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Localization/Localization/src/ResourceManagerStringLocalizerFactory.cs#L193C9-L193C89" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Localization/Localization/src/ResourceManagerStringLocalizerFactory.cs#L193C9-L193C89" }, { "DocsId": "M:Microsoft.Extensions.Localization.ResourceManagerStringLocalizerFactory.GetResourceLocationAttribute(System.Reflection.Assembly)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Localization/Localization/src/ResourceManagerStringLocalizerFactory.cs#L202C9-L202C73" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Localization/Localization/src/ResourceManagerStringLocalizerFactory.cs#L202C9-L202C73" }, { "DocsId": "M:Microsoft.Extensions.Localization.ResourceManagerStringLocalizerFactory.GetRootNamespaceAttribute(System.Reflection.Assembly)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Localization/Localization/src/ResourceManagerStringLocalizerFactory.cs#L211C9-L211C70" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Localization/Localization/src/ResourceManagerStringLocalizerFactory.cs#L211C9-L211C70" } ], "DocsId": "T:Microsoft.Extensions.Localization.ResourceManagerStringLocalizerFactory", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Localization/Localization/src/ResourceManagerStringLocalizerFactory.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Localization/Localization/src/ResourceManagerStringLocalizerFactory.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Localization.ResourceNamesCache.#ctor", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Localization/Localization/src/ResourceNamesCache.cs#L15C5-L22C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Localization/Localization/src/ResourceNamesCache.cs#L15C5-L22C6" }, { "DocsId": "M:Microsoft.Extensions.Localization.ResourceNamesCache.GetOrAdd(System.String,System.Func{System.String,System.Collections.Generic.IList{System.String}})", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Localization/Localization/src/ResourceNamesCache.cs#L27C9-L27C52" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Localization/Localization/src/ResourceNamesCache.cs#L27C9-L27C52" } ], "DocsId": "T:Microsoft.Extensions.Localization.ResourceNamesCache", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Localization/Localization/src/ResourceNamesCache.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Localization/Localization/src/ResourceNamesCache.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Localization.RootNamespaceAttribute.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Localization/Localization/src/RootNamespaceAttribute.cs#L20C5-L25C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Localization/Localization/src/RootNamespaceAttribute.cs#L20C5-L25C6" }, { "DocsId": "P:Microsoft.Extensions.Localization.RootNamespaceAttribute.RootNamespace", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Localization/Localization/src/RootNamespaceAttribute.cs#L31C35-L31C39" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Localization/Localization/src/RootNamespaceAttribute.cs#L31C35-L31C39" } ], "DocsId": "T:Microsoft.Extensions.Localization.RootNamespaceAttribute", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Localization/Localization/src/RootNamespaceAttribute.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Localization/Localization/src/RootNamespaceAttribute.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Logging.Abstractions.json b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Logging.Abstractions.json index cd4d2534147..4117a5d8362 100644 --- a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Logging.Abstractions.json +++ b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Logging.Abstractions.json @@ -1,624 +1,623 @@ { "Assembly": "Microsoft.Extensions.Logging.Abstractions", - "GUID": "7D3753B68B804ECBBCB684CEA15E0658FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "08BA666778E54D21B3AE3502A2743BD3FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.EventId.op_Implicit(System.Int32)~Microsoft.Extensions.Logging.EventId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/EventId.cs#L20C13-L20C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/EventId.cs#L20C13-L20C35" }, { "DocsId": "M:Microsoft.Extensions.Logging.EventId.op_Equality(Microsoft.Extensions.Logging.EventId,Microsoft.Extensions.Logging.EventId)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/EventId.cs#L31C13-L31C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/EventId.cs#L31C13-L31C39" }, { "DocsId": "M:Microsoft.Extensions.Logging.EventId.op_Inequality(Microsoft.Extensions.Logging.EventId,Microsoft.Extensions.Logging.EventId)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/EventId.cs#L42C13-L42C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/EventId.cs#L42C13-L42C40" }, { "DocsId": "M:Microsoft.Extensions.Logging.EventId.#ctor(System.Int32,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/EventId.cs#L52C13-L54C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/EventId.cs#L52C13-L54C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.EventId.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/EventId.cs#L69C13-L69C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/EventId.cs#L69C13-L69C42" }, { "DocsId": "M:Microsoft.Extensions.Logging.EventId.Equals(Microsoft.Extensions.Logging.EventId)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/EventId.cs#L79C13-L79C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/EventId.cs#L79C13-L79C35" }, { "DocsId": "M:Microsoft.Extensions.Logging.EventId.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/EventId.cs#L85C13-L90C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/EventId.cs#L85C13-L90C62" }, { "DocsId": "M:Microsoft.Extensions.Logging.EventId.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/EventId.cs#L96C13-L96C23" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/EventId.cs#L96C13-L96C23" }, { "DocsId": "P:Microsoft.Extensions.Logging.EventId.Id", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/EventId.cs#L59C25-L59C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/EventId.cs#L59C25-L59C29" }, { "DocsId": "P:Microsoft.Extensions.Logging.EventId.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/EventId.cs#L64C31-L64C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/EventId.cs#L64C31-L64C35" } ], "DocsId": "T:Microsoft.Extensions.Logging.EventId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/EventId.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/EventId.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.IExternalScopeProvider.ForEachScope``1(System.Action{System.Object,``0},``0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/IExternalScopeProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/IExternalScopeProvider.cs" }, { "DocsId": "M:Microsoft.Extensions.Logging.IExternalScopeProvider.Push(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/IExternalScopeProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/IExternalScopeProvider.cs" } ], "DocsId": "T:Microsoft.Extensions.Logging.IExternalScopeProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/IExternalScopeProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/IExternalScopeProvider.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.ILogger.Log``1(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,``0,System.Exception,System.Func{``0,System.Exception,System.String})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/ILogger.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/ILogger.cs" }, { "DocsId": "M:Microsoft.Extensions.Logging.ILogger.IsEnabled(Microsoft.Extensions.Logging.LogLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/ILogger.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/ILogger.cs" }, { "DocsId": "M:Microsoft.Extensions.Logging.ILogger.BeginScope``1(``0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/ILogger.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/ILogger.cs" } ], "DocsId": "T:Microsoft.Extensions.Logging.ILogger", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/ILogger.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/ILogger.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.ILoggerFactory.CreateLogger(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/ILoggerFactory.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/ILoggerFactory.cs" }, { "DocsId": "M:Microsoft.Extensions.Logging.ILoggerFactory.AddProvider(Microsoft.Extensions.Logging.ILoggerProvider)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/ILoggerFactory.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/ILoggerFactory.cs" } ], "DocsId": "T:Microsoft.Extensions.Logging.ILoggerFactory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/ILoggerFactory.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/ILoggerFactory.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.ILoggerProvider.CreateLogger(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/ILoggerProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/ILoggerProvider.cs" } ], "DocsId": "T:Microsoft.Extensions.Logging.ILoggerProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/ILoggerProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/ILoggerProvider.cs" }, { "Members": [], "DocsId": "T:Microsoft.Extensions.Logging.ILogger`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/ILoggerT.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/ILoggerT.cs" }, { "Members": [ { "DocsId": "P:Microsoft.Extensions.Logging.ILoggingBuilder.Services", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/ILoggingBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/ILoggingBuilder.cs" } ], "DocsId": "T:Microsoft.Extensions.Logging.ILoggingBuilder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/ILoggingBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/ILoggingBuilder.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.ISupportExternalScope.SetScopeProvider(Microsoft.Extensions.Logging.IExternalScopeProvider)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/ISupportExternalScope.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/ISupportExternalScope.cs" } ], "DocsId": "T:Microsoft.Extensions.Logging.ISupportExternalScope", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/ISupportExternalScope.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/ISupportExternalScope.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.LogDefineOptions.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LogDefineOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LogDefineOptions.cs" }, { "DocsId": "P:Microsoft.Extensions.Logging.LogDefineOptions.SkipEnabledCheck", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LogDefineOptions.cs#L16C40-L16C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LogDefineOptions.cs#L16C40-L16C44" } ], "DocsId": "T:Microsoft.Extensions.Logging.LogDefineOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LogDefineOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LogDefineOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.LoggerExtensions.LogDebug(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.Exception,System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L28C13-L29C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L28C13-L29C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerExtensions.LogDebug(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L41C13-L42C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L41C13-L42C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerExtensions.LogDebug(Microsoft.Extensions.Logging.ILogger,System.Exception,System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L54C13-L55C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L54C13-L55C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerExtensions.LogDebug(Microsoft.Extensions.Logging.ILogger,System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L66C13-L67C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L66C13-L67C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerExtensions.LogTrace(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.Exception,System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L82C13-L83C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L82C13-L83C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerExtensions.LogTrace(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L95C13-L96C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L95C13-L96C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerExtensions.LogTrace(Microsoft.Extensions.Logging.ILogger,System.Exception,System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L108C13-L109C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L108C13-L109C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerExtensions.LogTrace(Microsoft.Extensions.Logging.ILogger,System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L120C13-L121C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L120C13-L121C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerExtensions.LogInformation(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.Exception,System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L136C13-L137C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L136C13-L137C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerExtensions.LogInformation(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L149C13-L150C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L149C13-L150C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerExtensions.LogInformation(Microsoft.Extensions.Logging.ILogger,System.Exception,System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L162C13-L163C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L162C13-L163C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerExtensions.LogInformation(Microsoft.Extensions.Logging.ILogger,System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L174C13-L175C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L174C13-L175C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerExtensions.LogWarning(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.Exception,System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L190C13-L191C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L190C13-L191C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerExtensions.LogWarning(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L203C13-L204C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L203C13-L204C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerExtensions.LogWarning(Microsoft.Extensions.Logging.ILogger,System.Exception,System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L216C13-L217C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L216C13-L217C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerExtensions.LogWarning(Microsoft.Extensions.Logging.ILogger,System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L228C13-L229C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L228C13-L229C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerExtensions.LogError(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.Exception,System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L244C13-L245C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L244C13-L245C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerExtensions.LogError(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L257C13-L258C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L257C13-L258C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerExtensions.LogError(Microsoft.Extensions.Logging.ILogger,System.Exception,System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L270C13-L271C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L270C13-L271C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerExtensions.LogError(Microsoft.Extensions.Logging.ILogger,System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L282C13-L283C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L282C13-L283C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerExtensions.LogCritical(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.Exception,System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L298C13-L299C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L298C13-L299C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerExtensions.LogCritical(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L311C13-L312C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L311C13-L312C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerExtensions.LogCritical(Microsoft.Extensions.Logging.ILogger,System.Exception,System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L324C13-L325C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L324C13-L325C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerExtensions.LogCritical(Microsoft.Extensions.Logging.ILogger,System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L336C13-L337C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L336C13-L337C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerExtensions.Log(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.LogLevel,System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L348C13-L349C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L348C13-L349C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerExtensions.Log(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L361C13-L362C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L361C13-L362C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerExtensions.Log(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.LogLevel,System.Exception,System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L374C13-L375C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L374C13-L375C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerExtensions.Log(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.Exception,System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L388C13-L391C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L388C13-L391C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerExtensions.BeginScope(Microsoft.Extensions.Logging.ILogger,System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L412C13-L414C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L412C13-L414C83" } ], "DocsId": "T:Microsoft.Extensions.Logging.LoggerExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.LoggerExternalScopeProvider.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExternalScopeProvider.cs#L14C9-L20C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExternalScopeProvider.cs#L14C9-L20C12" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerExternalScopeProvider.ForEachScope``1(System.Action{System.Object,``0},``0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExternalScopeProvider.cs#L34C13-L35C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExternalScopeProvider.cs#L16707566C0-L35C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerExternalScopeProvider.Push(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExternalScopeProvider.cs#L40C13-L44C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExternalScopeProvider.cs#L40C13-L44C29" } ], "DocsId": "T:Microsoft.Extensions.Logging.LoggerExternalScopeProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExternalScopeProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExternalScopeProvider.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.LoggerFactoryExtensions.CreateLogger``1(Microsoft.Extensions.Logging.ILoggerFactory)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerFactoryExtensions.cs#L22C13-L24C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerFactoryExtensions.cs#L22C13-L24C43" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerFactoryExtensions.CreateLogger(Microsoft.Extensions.Logging.ILoggerFactory,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerFactoryExtensions.cs#L34C13-L37C141" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerFactoryExtensions.cs#L34C13-L37C141" } ], "DocsId": "T:Microsoft.Extensions.Logging.LoggerFactoryExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerFactoryExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerFactoryExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessage.DefineScope(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessage.cs#L23C13-L27C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessage.cs#L16707566C0-L27C59" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessage.DefineScope``1(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessage.cs#L38C13-L40C92" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessage.cs#L16707566C0-L40C92" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessage.DefineScope``2(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessage.cs#L52C13-L54C108" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessage.cs#L16707566C0-L54C108" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessage.DefineScope``3(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessage.cs#L67C13-L69C124" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessage.cs#L16707566C0-L69C124" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessage.DefineScope``4(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessage.cs#L83C13-L85C140" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessage.cs#L16707566C0-L85C140" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessage.DefineScope``5(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessage.cs#L100C13-L102C156" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessage.cs#L16707566C0-L102C156" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessage.DefineScope``6(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessage.cs#L118C13-L120C172" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessage.cs#L16707566C0-L120C172" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessage.Define(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessage.cs#L131C16-L131C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessage.cs#L131C16-L131C70" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessage.Define(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.String,Microsoft.Extensions.Logging.LogDefineOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessage.cs#L143C13-L161C15" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessage.cs#L16707566C0-L161C15" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessage.Define``1(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessage.cs#L173C16-L173C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessage.cs#L173C16-L173C74" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessage.Define``1(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.String,Microsoft.Extensions.Logging.LogDefineOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessage.cs#L186C13-L204C15" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessage.cs#L16707566C0-L204C15" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessage.Define``2(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessage.cs#L217C16-L217C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessage.cs#L217C16-L217C78" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessage.Define``2(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.String,Microsoft.Extensions.Logging.LogDefineOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessage.cs#L231C13-L249C15" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessage.cs#L16707566C0-L249C15" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessage.Define``3(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessage.cs#L263C16-L263C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessage.cs#L263C16-L263C82" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessage.Define``3(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.String,Microsoft.Extensions.Logging.LogDefineOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessage.cs#L278C13-L296C15" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessage.cs#L16707566C0-L296C15" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessage.Define``4(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessage.cs#L311C16-L311C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessage.cs#L311C16-L311C86" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessage.Define``4(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.String,Microsoft.Extensions.Logging.LogDefineOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessage.cs#L327C13-L345C15" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessage.cs#L16707566C0-L345C15" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessage.Define``5(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessage.cs#L361C16-L361C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessage.cs#L361C16-L361C90" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessage.Define``5(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.String,Microsoft.Extensions.Logging.LogDefineOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessage.cs#L378C13-L396C15" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessage.cs#L16707566C0-L396C15" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessage.Define``6(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessage.cs#L413C16-L413C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessage.cs#L413C16-L413C94" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessage.Define``6(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.String,Microsoft.Extensions.Logging.LogDefineOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessage.cs#L431C13-L449C15" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessage.cs#L16707566C0-L449C15" } ], "DocsId": "T:Microsoft.Extensions.Logging.LoggerMessage", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessage.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessage.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessageAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessageAttribute.cs#L89C44-L38C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessageAttribute.cs#L89C44-L38C44" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessageAttribute.#ctor(System.Int32,Microsoft.Extensions.Logging.LogLevel,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessageAttribute.cs#L89C44-L52C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessageAttribute.cs#L89C44-L52C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessageAttribute.#ctor(Microsoft.Extensions.Logging.LogLevel,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessageAttribute.cs#L89C44-L64C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessageAttribute.cs#L89C44-L64C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessageAttribute.#ctor(Microsoft.Extensions.Logging.LogLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessageAttribute.cs#L89C44-L74C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessageAttribute.cs#L89C44-L74C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessageAttribute.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessageAttribute.cs#L89C44-L84C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessageAttribute.cs#L89C44-L84C10" }, { "DocsId": "P:Microsoft.Extensions.Logging.LoggerMessageAttribute.EventId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessageAttribute.cs#L89C30-L89C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessageAttribute.cs#L89C30-L89C34" }, { "DocsId": "P:Microsoft.Extensions.Logging.LoggerMessageAttribute.EventName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessageAttribute.cs#L97C36-L97C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessageAttribute.cs#L97C36-L97C40" }, { "DocsId": "P:Microsoft.Extensions.Logging.LoggerMessageAttribute.Level", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessageAttribute.cs#L102C33-L102C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessageAttribute.cs#L102C33-L102C37" }, { "DocsId": "P:Microsoft.Extensions.Logging.LoggerMessageAttribute.Message", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessageAttribute.cs#L107C33-L107C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessageAttribute.cs#L107C33-L107C37" }, { "DocsId": "P:Microsoft.Extensions.Logging.LoggerMessageAttribute.SkipEnabledCheck", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessageAttribute.cs#L112C40-L112C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessageAttribute.cs#L112C40-L112C44" } ], "DocsId": "T:Microsoft.Extensions.Logging.LoggerMessageAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessageAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessageAttribute.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.Logger`1.#ctor(Microsoft.Extensions.Logging.ILoggerFactory)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerT.cs#L25C9-L30C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerT.cs#L25C9-L30C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.Logger`1.Microsoft#Extensions#Logging#ILogger#BeginScope``1(``0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerT.cs#L35C13-L35C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerT.cs#L35C13-L35C46" }, { "DocsId": "M:Microsoft.Extensions.Logging.Logger`1.Microsoft#Extensions#Logging#ILogger#IsEnabled(Microsoft.Extensions.Logging.LogLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerT.cs#L41C13-L41C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerT.cs#L41C13-L41C48" }, { "DocsId": "M:Microsoft.Extensions.Logging.Logger`1.Microsoft#Extensions#Logging#ILogger#Log``1(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,``0,System.Exception,System.Func{``0,System.Exception,System.String})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerT.cs#L47C13-L48C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerT.cs#L47C13-L48C10" } ], "DocsId": "T:Microsoft.Extensions.Logging.Logger`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerT.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerT.cs" }, { "Members": [ { "DocsId": "F:Microsoft.Extensions.Logging.LogLevel.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LogLevel.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LogLevel.cs" }, { "DocsId": "F:Microsoft.Extensions.Logging.LogLevel.Trace", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LogLevel.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LogLevel.cs" }, { "DocsId": "F:Microsoft.Extensions.Logging.LogLevel.Debug", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LogLevel.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LogLevel.cs" }, { "DocsId": "F:Microsoft.Extensions.Logging.LogLevel.Information", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LogLevel.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LogLevel.cs" }, { "DocsId": "F:Microsoft.Extensions.Logging.LogLevel.Warning", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LogLevel.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LogLevel.cs" }, { "DocsId": "F:Microsoft.Extensions.Logging.LogLevel.Error", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LogLevel.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LogLevel.cs" }, { "DocsId": "F:Microsoft.Extensions.Logging.LogLevel.Critical", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LogLevel.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LogLevel.cs" }, { "DocsId": "F:Microsoft.Extensions.Logging.LogLevel.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LogLevel.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LogLevel.cs" } ], "DocsId": "T:Microsoft.Extensions.Logging.LogLevel", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LogLevel.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LogLevel.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.Abstractions.LogEntry`1.#ctor(Microsoft.Extensions.Logging.LogLevel,System.String,Microsoft.Extensions.Logging.EventId,`0,System.Exception,System.Func{`0,System.Exception,System.String})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LogEntry.cs#L24C13-L30C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LogEntry.cs#L24C13-L30C10" }, { "DocsId": "P:Microsoft.Extensions.Logging.Abstractions.LogEntry`1.LogLevel", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LogEntry.cs#L35C36-L35C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LogEntry.cs#L35C36-L35C40" }, { "DocsId": "P:Microsoft.Extensions.Logging.Abstractions.LogEntry`1.Category", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LogEntry.cs#L40C34-L40C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LogEntry.cs#L40C34-L40C38" }, { "DocsId": "P:Microsoft.Extensions.Logging.Abstractions.LogEntry`1.EventId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LogEntry.cs#L45C34-L45C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LogEntry.cs#L45C34-L45C38" }, { "DocsId": "P:Microsoft.Extensions.Logging.Abstractions.LogEntry`1.State", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LogEntry.cs#L50C31-L50C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LogEntry.cs#L50C31-L50C35" }, { "DocsId": "P:Microsoft.Extensions.Logging.Abstractions.LogEntry`1.Exception", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LogEntry.cs#L55C39-L55C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LogEntry.cs#L55C39-L55C43" }, { "DocsId": "P:Microsoft.Extensions.Logging.Abstractions.LogEntry`1.Formatter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LogEntry.cs#L60C61-L60C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LogEntry.cs#L60C61-L60C65" } ], "DocsId": "T:Microsoft.Extensions.Logging.Abstractions.LogEntry`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LogEntry.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LogEntry.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.Abstractions.NullLogger.BeginScope``1(``0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/NullLogger.cs#L28C13-L28C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/NullLogger.cs#L28C13-L28C39" }, { "DocsId": "M:Microsoft.Extensions.Logging.Abstractions.NullLogger.IsEnabled(Microsoft.Extensions.Logging.LogLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/NullLogger.cs#L34C13-L34C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/NullLogger.cs#L34C13-L34C26" }, { "DocsId": "M:Microsoft.Extensions.Logging.Abstractions.NullLogger.Log``1(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,``0,System.Exception,System.Func{``0,System.Exception,System.String})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/NullLogger.cs#L40C9-L40C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/NullLogger.cs#L40C9-L40C10" }, { "DocsId": "P:Microsoft.Extensions.Logging.Abstractions.NullLogger.Instance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/NullLogger.cs#L16C45-L16C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/NullLogger.cs#L16C45-L16C49" } ], "DocsId": "T:Microsoft.Extensions.Logging.Abstractions.NullLogger", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/NullLogger.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/NullLogger.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.Abstractions.NullLoggerFactory.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/NullLoggerFactory.cs#L15C9-L15C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/NullLoggerFactory.cs#L15C9-L15C39" }, { "DocsId": "M:Microsoft.Extensions.Logging.Abstractions.NullLoggerFactory.CreateLogger(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/NullLoggerFactory.cs#L28C13-L28C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/NullLoggerFactory.cs#L28C13-L28C40" }, { "DocsId": "M:Microsoft.Extensions.Logging.Abstractions.NullLoggerFactory.AddProvider(Microsoft.Extensions.Logging.ILoggerProvider)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/NullLoggerFactory.cs#L37C9-L37C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/NullLoggerFactory.cs#L37C9-L37C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.Abstractions.NullLoggerFactory.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/NullLoggerFactory.cs#L42C9-L42C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/NullLoggerFactory.cs#L42C9-L42C10" }, { "DocsId": "F:Microsoft.Extensions.Logging.Abstractions.NullLoggerFactory.Instance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/NullLoggerFactory.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/NullLoggerFactory.cs" } ], "DocsId": "T:Microsoft.Extensions.Logging.Abstractions.NullLoggerFactory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/NullLoggerFactory.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/NullLoggerFactory.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.Abstractions.NullLoggerProvider.CreateLogger(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/NullLoggerProvider.cs#L23C13-L23C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/NullLoggerProvider.cs#L23C13-L23C40" }, { "DocsId": "M:Microsoft.Extensions.Logging.Abstractions.NullLoggerProvider.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/NullLoggerProvider.cs#L29C9-L29C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/NullLoggerProvider.cs#L29C9-L29C10" }, { "DocsId": "P:Microsoft.Extensions.Logging.Abstractions.NullLoggerProvider.Instance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/NullLoggerProvider.cs#L14C53-L14C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/NullLoggerProvider.cs#L14C53-L14C57" } ], "DocsId": "T:Microsoft.Extensions.Logging.Abstractions.NullLoggerProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/NullLoggerProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/NullLoggerProvider.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.Abstractions.NullLogger`1.BeginScope``1(``0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/NullLoggerT.cs#L22C13-L22C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/NullLoggerT.cs#L22C13-L22C39" }, { "DocsId": "M:Microsoft.Extensions.Logging.Abstractions.NullLogger`1.Log``1(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,``0,System.Exception,System.Func{``0,System.Exception,System.String})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/NullLoggerT.cs#L36C9-L36C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/NullLoggerT.cs#L36C9-L36C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.Abstractions.NullLogger`1.IsEnabled(Microsoft.Extensions.Logging.LogLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/NullLoggerT.cs#L41C13-L41C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/NullLoggerT.cs#L41C13-L41C26" }, { "DocsId": "M:Microsoft.Extensions.Logging.Abstractions.NullLogger`1.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/NullLoggerT.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/NullLoggerT.cs" }, { "DocsId": "F:Microsoft.Extensions.Logging.Abstractions.NullLogger`1.Instance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/NullLoggerT.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/NullLoggerT.cs" } ], "DocsId": "T:Microsoft.Extensions.Logging.Abstractions.NullLogger`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/NullLoggerT.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/NullLoggerT.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Logging.AzureAppServices.json b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Logging.AzureAppServices.json index f0f1b760417..d5c0f0868e7 100644 --- a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Logging.AzureAppServices.json +++ b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Logging.AzureAppServices.json @@ -1,159 +1,158 @@ { "Assembly": "Microsoft.Extensions.Logging.AzureAppServices", - "GUID": "532FC4F064D14A67B8E081DE2E2FF400FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "0127C414C56A4D3382735B1F7DA04971FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.AzureAppServicesLoggerFactoryExtensions.AddAzureWebAppDiagnostics(Microsoft.Extensions.Logging.ILoggingBuilder)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Logging.AzureAppServices/src/AzureAppServicesLoggerFactoryExtensions.cs#L27C9-L30C70" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Logging.AzureAppServices/src/AzureAppServicesLoggerFactoryExtensions.cs#L27C9-L30C70" }, { "DocsId": "M:Microsoft.Extensions.Logging.AzureAppServicesLoggerFactoryExtensions.AddAzureWebAppDiagnostics(Microsoft.Extensions.Logging.ILoggingBuilder,System.Action{Microsoft.Extensions.Logging.AzureAppServices.AzureBlobLoggerOptions})", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Logging.AzureAppServices/src/AzureAppServicesLoggerFactoryExtensions.cs#L41C9-L44C88" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Logging.AzureAppServices/src/AzureAppServicesLoggerFactoryExtensions.cs#L41C9-L44C88" } ], "DocsId": "T:Microsoft.Extensions.Logging.AzureAppServicesLoggerFactoryExtensions", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Logging.AzureAppServices/src/AzureAppServicesLoggerFactoryExtensions.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Logging.AzureAppServices/src/AzureAppServicesLoggerFactoryExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.AzureAppServices.AzureBlobLoggerContext.#ctor(System.String,System.String,System.DateTimeOffset)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Logging.AzureAppServices/src/AzureBlobLoggerContext.cs#L21C9-L24C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Logging.AzureAppServices/src/AzureBlobLoggerContext.cs#L21C9-L24C6" }, { "DocsId": "P:Microsoft.Extensions.Logging.AzureAppServices.AzureBlobLoggerContext.AppName", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Logging.AzureAppServices/src/AzureBlobLoggerContext.cs#L29C29-L29C33" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Logging.AzureAppServices/src/AzureBlobLoggerContext.cs#L29C29-L29C33" }, { "DocsId": "P:Microsoft.Extensions.Logging.AzureAppServices.AzureBlobLoggerContext.Identifier", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Logging.AzureAppServices/src/AzureBlobLoggerContext.cs#L34C32-L34C36" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Logging.AzureAppServices/src/AzureBlobLoggerContext.cs#L34C32-L34C36" }, { "DocsId": "P:Microsoft.Extensions.Logging.AzureAppServices.AzureBlobLoggerContext.Timestamp", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Logging.AzureAppServices/src/AzureBlobLoggerContext.cs#L39C39-L39C43" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Logging.AzureAppServices/src/AzureBlobLoggerContext.cs#L39C39-L39C43" } ], "DocsId": "T:Microsoft.Extensions.Logging.AzureAppServices.AzureBlobLoggerContext", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Logging.AzureAppServices/src/AzureBlobLoggerContext.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Logging.AzureAppServices/src/AzureBlobLoggerContext.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.AzureAppServices.AzureBlobLoggerOptions.#ctor", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Logging.AzureAppServices/src/AzureBlobLoggerOptions.cs#L13C5-L40C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Logging.AzureAppServices/src/AzureBlobLoggerOptions.cs#L13C5-L40C6" }, { "DocsId": "P:Microsoft.Extensions.Logging.AzureAppServices.AzureBlobLoggerOptions.BlobName", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Logging.AzureAppServices/src/AzureBlobLoggerOptions.cs#L21C15-L21C32" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Logging.AzureAppServices/src/AzureBlobLoggerOptions.cs#L21C15-L21C32" }, { "DocsId": "P:Microsoft.Extensions.Logging.AzureAppServices.AzureBlobLoggerOptions.FileNameFormat", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Logging.AzureAppServices/src/AzureBlobLoggerOptions.cs#L36C66-L36C70" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Logging.AzureAppServices/src/AzureBlobLoggerOptions.cs#L36C66-L36C70" } ], "DocsId": "T:Microsoft.Extensions.Logging.AzureAppServices.AzureBlobLoggerOptions", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Logging.AzureAppServices/src/AzureBlobLoggerOptions.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Logging.AzureAppServices/src/AzureBlobLoggerOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.AzureAppServices.AzureFileLoggerOptions.#ctor", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Logging.AzureAppServices/src/AzureFileLoggerOptions.cs#L14C5-L16C47" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Logging.AzureAppServices/src/AzureFileLoggerOptions.cs#L14C5-L16C47" }, { "DocsId": "P:Microsoft.Extensions.Logging.AzureAppServices.AzureFileLoggerOptions.FileSizeLimit", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Logging.AzureAppServices/src/AzureFileLoggerOptions.cs#L25C15-L25C37" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Logging.AzureAppServices/src/AzureFileLoggerOptions.cs#L25C15-L25C37" }, { "DocsId": "P:Microsoft.Extensions.Logging.AzureAppServices.AzureFileLoggerOptions.RetainedFileCountLimit", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Logging.AzureAppServices/src/AzureFileLoggerOptions.cs#L42C15-L42C46" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Logging.AzureAppServices/src/AzureFileLoggerOptions.cs#L42C15-L42C46" }, { "DocsId": "P:Microsoft.Extensions.Logging.AzureAppServices.AzureFileLoggerOptions.FileName", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Logging.AzureAppServices/src/AzureFileLoggerOptions.cs#L60C15-L60C32" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Logging.AzureAppServices/src/AzureFileLoggerOptions.cs#L60C15-L60C32" } ], "DocsId": "T:Microsoft.Extensions.Logging.AzureAppServices.AzureFileLoggerOptions", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Logging.AzureAppServices/src/AzureFileLoggerOptions.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Logging.AzureAppServices/src/AzureFileLoggerOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.AzureAppServices.BatchingLoggerOptions.#ctor", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Logging.AzureAppServices/src/BatchingLoggerOptions.cs#L14C5-L15C61" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Logging.AzureAppServices/src/BatchingLoggerOptions.cs#L14C5-L15C61" }, { "DocsId": "P:Microsoft.Extensions.Logging.AzureAppServices.BatchingLoggerOptions.FlushPeriod", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Logging.AzureAppServices/src/BatchingLoggerOptions.cs#L22C15-L22C35" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Logging.AzureAppServices/src/BatchingLoggerOptions.cs#L22C15-L22C35" }, { "DocsId": "P:Microsoft.Extensions.Logging.AzureAppServices.BatchingLoggerOptions.BackgroundQueueSize", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Logging.AzureAppServices/src/BatchingLoggerOptions.cs#L40C15-L40C43" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Logging.AzureAppServices/src/BatchingLoggerOptions.cs#L40C15-L40C43" }, { "DocsId": "P:Microsoft.Extensions.Logging.AzureAppServices.BatchingLoggerOptions.BatchSize", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Logging.AzureAppServices/src/BatchingLoggerOptions.cs#L57C15-L57C33" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Logging.AzureAppServices/src/BatchingLoggerOptions.cs#L57C15-L57C33" }, { "DocsId": "P:Microsoft.Extensions.Logging.AzureAppServices.BatchingLoggerOptions.IsEnabled", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Logging.AzureAppServices/src/BatchingLoggerOptions.cs#L71C29-L71C33" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Logging.AzureAppServices/src/BatchingLoggerOptions.cs#L71C29-L71C33" }, { "DocsId": "P:Microsoft.Extensions.Logging.AzureAppServices.BatchingLoggerOptions.IncludeScopes", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Logging.AzureAppServices/src/BatchingLoggerOptions.cs#L77C33-L77C37" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Logging.AzureAppServices/src/BatchingLoggerOptions.cs#L77C33-L77C37" } ], "DocsId": "T:Microsoft.Extensions.Logging.AzureAppServices.BatchingLoggerOptions", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Logging.AzureAppServices/src/BatchingLoggerOptions.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Logging.AzureAppServices/src/BatchingLoggerOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.AzureAppServices.BatchingLoggerProvider.IntervalAsync(System.TimeSpan,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Logging.AzureAppServices/src/BatchingLoggerProvider.cs#L134C9-L134C56" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Logging.AzureAppServices/src/BatchingLoggerProvider.cs#L134C9-L134C56" }, { "DocsId": "M:Microsoft.Extensions.Logging.AzureAppServices.BatchingLoggerProvider.Dispose", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Logging.AzureAppServices/src/BatchingLoggerProvider.cs#L185C9-L190C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Logging.AzureAppServices/src/BatchingLoggerProvider.cs#L185C9-L190C6" }, { "DocsId": "M:Microsoft.Extensions.Logging.AzureAppServices.BatchingLoggerProvider.CreateLogger(System.String)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Logging.AzureAppServices/src/BatchingLoggerProvider.cs#L199C9-L199C55" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Logging.AzureAppServices/src/BatchingLoggerProvider.cs#L199C9-L199C55" }, { "DocsId": "M:Microsoft.Extensions.Logging.AzureAppServices.BatchingLoggerProvider.Microsoft#Extensions#Logging#ISupportExternalScope#SetScopeProvider(Microsoft.Extensions.Logging.IExternalScopeProvider)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Logging.AzureAppServices/src/BatchingLoggerProvider.cs#L208C9-L209C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Logging.AzureAppServices/src/BatchingLoggerProvider.cs#L208C9-L209C6" }, { "DocsId": "P:Microsoft.Extensions.Logging.AzureAppServices.BatchingLoggerProvider.IsEnabled", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Logging.AzureAppServices/src/BatchingLoggerProvider.cs#L64C29-L64C33" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Logging.AzureAppServices/src/BatchingLoggerProvider.cs#L64C29-L64C33" } ], "DocsId": "T:Microsoft.Extensions.Logging.AzureAppServices.BatchingLoggerProvider", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Logging.AzureAppServices/src/BatchingLoggerProvider.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Logging.AzureAppServices/src/BatchingLoggerProvider.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.AzureAppServices.BlobLoggerProvider.#ctor(Microsoft.Extensions.Options.IOptionsMonitor{Microsoft.Extensions.Logging.AzureAppServices.AzureBlobLoggerOptions})", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Logging.AzureAppServices/src/BlobLoggerProvider.cs#L32C11-L38C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Logging.AzureAppServices/src/BlobLoggerProvider.cs#L16707566C0-L38C6" } ], "DocsId": "T:Microsoft.Extensions.Logging.AzureAppServices.BlobLoggerProvider", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Logging.AzureAppServices/src/BlobLoggerProvider.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Logging.AzureAppServices/src/BlobLoggerProvider.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.AzureAppServices.FileLoggerProvider.#ctor(Microsoft.Extensions.Options.IOptionsMonitor{Microsoft.Extensions.Logging.AzureAppServices.AzureFileLoggerOptions})", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Logging.AzureAppServices/src/FileLoggerProvider.cs#L30C82-L37C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Logging.AzureAppServices/src/FileLoggerProvider.cs#L30C82-L37C6" } ], "DocsId": "T:Microsoft.Extensions.Logging.AzureAppServices.FileLoggerProvider", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/Logging.AzureAppServices/src/FileLoggerProvider.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/Logging.AzureAppServices/src/FileLoggerProvider.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Logging.Configuration.json b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Logging.Configuration.json index c1a6ecb3e98..80012eb5674 100644 --- a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Logging.Configuration.json +++ b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Logging.Configuration.json @@ -1,67 +1,66 @@ { "Assembly": "Microsoft.Extensions.Logging.Configuration", - "GUID": "E6A7C1C3322C4CA4A982E5D329AA0530FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "7EF080CCF44246439424FF79CE1AE2AFFFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.LoggingBuilderExtensions.AddConfiguration(Microsoft.Extensions.Logging.ILoggingBuilder,Microsoft.Extensions.Configuration.IConfiguration)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Configuration/src/LoggingBuilderExtensions.cs#L24C13-L31C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Configuration/src/LoggingBuilderExtensions.cs#L24C13-L31C28" } ], "DocsId": "T:Microsoft.Extensions.Logging.LoggingBuilderExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Configuration/src/LoggingBuilderExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Configuration/src/LoggingBuilderExtensions.cs" }, { "Members": [ { "DocsId": "P:Microsoft.Extensions.Logging.Configuration.ILoggerProviderConfiguration`1.Configuration", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Configuration/src/ILoggerProviderConfiguration.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Configuration/src/ILoggerProviderConfiguration.cs" } ], "DocsId": "T:Microsoft.Extensions.Logging.Configuration.ILoggerProviderConfiguration`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Configuration/src/ILoggerProviderConfiguration.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Configuration/src/ILoggerProviderConfiguration.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.Configuration.ILoggerProviderConfigurationFactory.GetConfiguration(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Configuration/src/ILoggerProviderConfigurationFactory.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Configuration/src/ILoggerProviderConfigurationFactory.cs" } ], "DocsId": "T:Microsoft.Extensions.Logging.Configuration.ILoggerProviderConfigurationFactory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Configuration/src/ILoggerProviderConfigurationFactory.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Configuration/src/ILoggerProviderConfigurationFactory.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.Configuration.LoggerProviderOptions.RegisterProviderOptions``2(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Configuration/src/LoggerProviderConfigurationExtensions.cs#L29C13-L31C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Configuration/src/LoggerProviderConfigurationExtensions.cs#L29C13-L31C10" } ], "DocsId": "T:Microsoft.Extensions.Logging.Configuration.LoggerProviderOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Configuration/src/LoggerProviderConfigurationExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Configuration/src/LoggerProviderConfigurationExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.Configuration.LoggerProviderOptionsChangeTokenSource`2.#ctor(Microsoft.Extensions.Logging.Configuration.ILoggerProviderConfiguration{`1})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Configuration/src/LoggerProviderOptionsChangeTokenSource.cs#L14C120-L16C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Configuration/src/LoggerProviderOptionsChangeTokenSource.cs#L14C120-L16C10" } ], "DocsId": "T:Microsoft.Extensions.Logging.Configuration.LoggerProviderOptionsChangeTokenSource`2", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Configuration/src/LoggerProviderOptionsChangeTokenSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Configuration/src/LoggerProviderOptionsChangeTokenSource.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.Configuration.LoggingBuilderConfigurationExtensions.AddConfiguration(Microsoft.Extensions.Logging.ILoggingBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Configuration/src/LoggingBuilderConfigurationExtensions.cs#L19C13-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Configuration/src/LoggingBuilderConfigurationExtensions.cs#L19C13-L21C10" } ], "DocsId": "T:Microsoft.Extensions.Logging.Configuration.LoggingBuilderConfigurationExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Configuration/src/LoggingBuilderConfigurationExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Configuration/src/LoggingBuilderConfigurationExtensions.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Logging.Console.json b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Logging.Console.json index 235dd6dd3ca..059287a7a1d 100644 --- a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Logging.Console.json +++ b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Logging.Console.json @@ -1,387 +1,386 @@ { "Assembly": "Microsoft.Extensions.Logging.Console", - "GUID": "43908647732F4D769D2675EEE446DDB8FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "851E3C956D2C4238A30A7B038BFDF914FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.ConsoleLoggerExtensions.AddConsole(Microsoft.Extensions.Logging.ILoggingBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerExtensions.cs#L32C13-L43C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerExtensions.cs#L32C13-L43C28" }, { "DocsId": "M:Microsoft.Extensions.Logging.ConsoleLoggerExtensions.AddConsole(Microsoft.Extensions.Logging.ILoggingBuilder,System.Action{Microsoft.Extensions.Logging.Console.ConsoleLoggerOptions})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerExtensions.cs#L53C13-L58C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerExtensions.cs#L53C13-L58C28" }, { "DocsId": "M:Microsoft.Extensions.Logging.ConsoleLoggerExtensions.AddSimpleConsole(Microsoft.Extensions.Logging.ILoggingBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerExtensions.cs#L66C13-L66C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerExtensions.cs#L66C13-L66C71" }, { "DocsId": "M:Microsoft.Extensions.Logging.ConsoleLoggerExtensions.AddSimpleConsole(Microsoft.Extensions.Logging.ILoggingBuilder,System.Action{Microsoft.Extensions.Logging.Console.SimpleConsoleFormatterOptions})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerExtensions.cs#L75C13-L75C124" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerExtensions.cs#L75C13-L75C124" }, { "DocsId": "M:Microsoft.Extensions.Logging.ConsoleLoggerExtensions.AddJsonConsole(Microsoft.Extensions.Logging.ILoggingBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerExtensions.cs#L83C13-L83C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerExtensions.cs#L83C13-L83C69" }, { "DocsId": "M:Microsoft.Extensions.Logging.ConsoleLoggerExtensions.AddJsonConsole(Microsoft.Extensions.Logging.ILoggingBuilder,System.Action{Microsoft.Extensions.Logging.Console.JsonConsoleFormatterOptions})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerExtensions.cs#L92C13-L92C120" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerExtensions.cs#L92C13-L92C120" }, { "DocsId": "M:Microsoft.Extensions.Logging.ConsoleLoggerExtensions.AddSystemdConsole(Microsoft.Extensions.Logging.ILoggingBuilder,System.Action{Microsoft.Extensions.Logging.Console.ConsoleFormatterOptions})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerExtensions.cs#L102C13-L102C119" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerExtensions.cs#L102C13-L102C119" }, { "DocsId": "M:Microsoft.Extensions.Logging.ConsoleLoggerExtensions.AddSystemdConsole(Microsoft.Extensions.Logging.ILoggingBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerExtensions.cs#L110C13-L110C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerExtensions.cs#L110C13-L110C72" }, { "DocsId": "M:Microsoft.Extensions.Logging.ConsoleLoggerExtensions.AddConsoleFormatter``2(Microsoft.Extensions.Logging.ILoggingBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerExtensions.cs#L136C13-L136C133" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerExtensions.cs#L136C13-L136C133" }, { "DocsId": "M:Microsoft.Extensions.Logging.ConsoleLoggerExtensions.AddConsoleFormatter``2(Microsoft.Extensions.Logging.ILoggingBuilder,System.Action{``1})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerExtensions.cs#L150C13-L154C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerExtensions.cs#L150C13-L154C28" }, { "DocsId": "M:Microsoft.Extensions.Logging.ConsoleLoggerExtensions.AddConsole(Microsoft.Extensions.Logging.ILoggerFactory,Microsoft.Extensions.Configuration.IConfiguration)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerExtensions.Obsolete.cs#L26C13-L27C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerExtensions.Obsolete.cs#L26C13-L27C49" }, { "DocsId": "M:Microsoft.Extensions.Logging.ConsoleLoggerExtensions.AddConsole(Microsoft.Extensions.Logging.ILoggerFactory,Microsoft.Extensions.Logging.Console.IConsoleLoggerSettings)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerExtensions.Obsolete.cs#L40C13-L41C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerExtensions.Obsolete.cs#L40C13-L41C28" }, { "DocsId": "M:Microsoft.Extensions.Logging.ConsoleLoggerExtensions.AddConsole(Microsoft.Extensions.Logging.ILoggerFactory,Microsoft.Extensions.Logging.LogLevel,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerExtensions.Obsolete.cs#L55C13-L56C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerExtensions.Obsolete.cs#L55C13-L56C28" }, { "DocsId": "M:Microsoft.Extensions.Logging.ConsoleLoggerExtensions.AddConsole(Microsoft.Extensions.Logging.ILoggerFactory,Microsoft.Extensions.Logging.LogLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerExtensions.Obsolete.cs#L69C13-L70C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerExtensions.Obsolete.cs#L69C13-L70C28" }, { "DocsId": "M:Microsoft.Extensions.Logging.ConsoleLoggerExtensions.AddConsole(Microsoft.Extensions.Logging.ILoggerFactory,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerExtensions.Obsolete.cs#L83C13-L84C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerExtensions.Obsolete.cs#L83C13-L84C28" }, { "DocsId": "M:Microsoft.Extensions.Logging.ConsoleLoggerExtensions.AddConsole(Microsoft.Extensions.Logging.ILoggerFactory,System.Func{System.String,Microsoft.Extensions.Logging.LogLevel,System.Boolean},System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerExtensions.Obsolete.cs#L98C13-L99C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerExtensions.Obsolete.cs#L98C13-L99C28" }, { "DocsId": "M:Microsoft.Extensions.Logging.ConsoleLoggerExtensions.AddConsole(Microsoft.Extensions.Logging.ILoggerFactory,System.Func{System.String,Microsoft.Extensions.Logging.LogLevel,System.Boolean})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerExtensions.Obsolete.cs#L112C13-L113C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerExtensions.Obsolete.cs#L112C13-L113C28" }, { "DocsId": "M:Microsoft.Extensions.Logging.ConsoleLoggerExtensions.AddConsole(Microsoft.Extensions.Logging.ILoggerFactory)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerExtensions.Obsolete.cs#L125C13-L125C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerExtensions.Obsolete.cs#L125C13-L125C61" } ], "DocsId": "T:Microsoft.Extensions.Logging.ConsoleLoggerExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.Console.ConfigurationConsoleLoggerSettings.#ctor(Microsoft.Extensions.Configuration.IConfiguration)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConfigurationConsoleLoggerSettings.cs#L24C9-L28C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConfigurationConsoleLoggerSettings.cs#L24C9-L28C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.Console.ConfigurationConsoleLoggerSettings.Reload", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConfigurationConsoleLoggerSettings.cs#L66C13-L67C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConfigurationConsoleLoggerSettings.cs#L66C13-L67C75" }, { "DocsId": "M:Microsoft.Extensions.Logging.Console.ConfigurationConsoleLoggerSettings.TryGetSwitch(System.String,Microsoft.Extensions.Logging.LogLevel@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConfigurationConsoleLoggerSettings.cs#L79C13-L99C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConfigurationConsoleLoggerSettings.cs#L79C13-L99C62" }, { "DocsId": "P:Microsoft.Extensions.Logging.Console.ConfigurationConsoleLoggerSettings.ChangeToken", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConfigurationConsoleLoggerSettings.cs#L33C44-L33C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConfigurationConsoleLoggerSettings.cs#L33C44-L33C48" }, { "DocsId": "P:Microsoft.Extensions.Logging.Console.ConfigurationConsoleLoggerSettings.IncludeScopes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConfigurationConsoleLoggerSettings.cs#L43C17-L55C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConfigurationConsoleLoggerSettings.cs#L43C17-L55C66" } ], "DocsId": "T:Microsoft.Extensions.Logging.Console.ConfigurationConsoleLoggerSettings", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConfigurationConsoleLoggerSettings.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConfigurationConsoleLoggerSettings.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.Console.ConsoleFormatter.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleFormatter.cs#L19C9-L24C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleFormatter.cs#L19C9-L24C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.Console.ConsoleFormatter.Write``1(Microsoft.Extensions.Logging.Abstractions.LogEntry{``0}@|System.Runtime.InteropServices.InAttribute,Microsoft.Extensions.Logging.IExternalScopeProvider,System.IO.TextWriter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleFormatter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleFormatter.cs" }, { "DocsId": "P:Microsoft.Extensions.Logging.Console.ConsoleFormatter.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleFormatter.cs#L29C30-L29C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleFormatter.cs#L29C30-L29C34" } ], "DocsId": "T:Microsoft.Extensions.Logging.Console.ConsoleFormatter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleFormatter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleFormatter.cs" }, { "Members": [ { "DocsId": "F:Microsoft.Extensions.Logging.Console.ConsoleFormatterNames.Simple", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleFormatterNames.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleFormatterNames.cs" }, { "DocsId": "F:Microsoft.Extensions.Logging.Console.ConsoleFormatterNames.Json", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleFormatterNames.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleFormatterNames.cs" }, { "DocsId": "F:Microsoft.Extensions.Logging.Console.ConsoleFormatterNames.Systemd", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleFormatterNames.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleFormatterNames.cs" } ], "DocsId": "T:Microsoft.Extensions.Logging.Console.ConsoleFormatterNames", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleFormatterNames.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleFormatterNames.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.Console.ConsoleFormatterOptions.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleFormatterOptions.cs#L17C9-L17C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleFormatterOptions.cs#L17C9-L17C45" }, { "DocsId": "P:Microsoft.Extensions.Logging.Console.ConsoleFormatterOptions.IncludeScopes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleFormatterOptions.cs#L22C37-L22C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleFormatterOptions.cs#L22C37-L22C41" }, { "DocsId": "P:Microsoft.Extensions.Logging.Console.ConsoleFormatterOptions.TimestampFormat", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleFormatterOptions.cs#L28C42-L28C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleFormatterOptions.cs#L28C42-L28C46" }, { "DocsId": "P:Microsoft.Extensions.Logging.Console.ConsoleFormatterOptions.UseUtcTimestamp", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleFormatterOptions.cs#L33C39-L33C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleFormatterOptions.cs#L33C39-L33C43" } ], "DocsId": "T:Microsoft.Extensions.Logging.Console.ConsoleFormatterOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleFormatterOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleFormatterOptions.cs" }, { "Members": [ { "DocsId": "F:Microsoft.Extensions.Logging.Console.ConsoleLoggerFormat.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerFormat.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerFormat.cs" }, { "DocsId": "F:Microsoft.Extensions.Logging.Console.ConsoleLoggerFormat.Default", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerFormat.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerFormat.cs" }, { "DocsId": "F:Microsoft.Extensions.Logging.Console.ConsoleLoggerFormat.Systemd", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerFormat.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerFormat.cs" } ], "DocsId": "T:Microsoft.Extensions.Logging.Console.ConsoleLoggerFormat", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerFormat.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerFormat.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.Console.ConsoleLoggerOptions.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerOptions.cs#L53C69-L85C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerOptions.cs#L53C69-L85C69" }, { "DocsId": "P:Microsoft.Extensions.Logging.Console.ConsoleLoggerOptions.DisableColors", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerOptions.cs#L17C37-L17C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerOptions.cs#L17C37-L17C41" }, { "DocsId": "P:Microsoft.Extensions.Logging.Console.ConsoleLoggerOptions.Format", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerOptions.cs#L27C20-L27C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerOptions.cs#L27C20-L27C27" }, { "DocsId": "P:Microsoft.Extensions.Logging.Console.ConsoleLoggerOptions.FormatterName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerOptions.cs#L42C40-L42C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerOptions.cs#L42C40-L42C44" }, { "DocsId": "P:Microsoft.Extensions.Logging.Console.ConsoleLoggerOptions.IncludeScopes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerOptions.cs#L48C37-L48C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerOptions.cs#L48C37-L48C41" }, { "DocsId": "P:Microsoft.Extensions.Logging.Console.ConsoleLoggerOptions.LogToStandardErrorThreshold", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerOptions.cs#L53C55-L53C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerOptions.cs#L53C55-L53C59" }, { "DocsId": "P:Microsoft.Extensions.Logging.Console.ConsoleLoggerOptions.TimestampFormat", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerOptions.cs#L59C42-L59C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerOptions.cs#L59C42-L59C46" }, { "DocsId": "P:Microsoft.Extensions.Logging.Console.ConsoleLoggerOptions.UseUtcTimestamp", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerOptions.cs#L65C39-L65C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerOptions.cs#L65C39-L65C43" }, { "DocsId": "P:Microsoft.Extensions.Logging.Console.ConsoleLoggerOptions.QueueFullMode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerOptions.cs#L73C20-L73C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerOptions.cs#L73C20-L73C34" }, { "DocsId": "P:Microsoft.Extensions.Logging.Console.ConsoleLoggerOptions.MaxQueueLength", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerOptions.cs#L92C20-L92C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerOptions.cs#L92C20-L92C38" } ], "DocsId": "T:Microsoft.Extensions.Logging.Console.ConsoleLoggerOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.Console.ConsoleLoggerProvider.#ctor(Microsoft.Extensions.Options.IOptionsMonitor{Microsoft.Extensions.Logging.Console.ConsoleLoggerOptions})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerProvider.cs#L34C15-L34C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerProvider.cs#L34C15-L34C65" }, { "DocsId": "M:Microsoft.Extensions.Logging.Console.ConsoleLoggerProvider.#ctor(Microsoft.Extensions.Options.IOptionsMonitor{Microsoft.Extensions.Logging.Console.ConsoleLoggerOptions},System.Collections.Generic.IEnumerable{Microsoft.Extensions.Logging.Console.ConsoleFormatter})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerProvider.cs#L27C9-L66C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerProvider.cs#L27C9-L66C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.Console.ConsoleLoggerProvider.CreateLogger(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerProvider.cs#L155C13-L173C134" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerProvider.cs#L155C13-L173C134" }, { "DocsId": "M:Microsoft.Extensions.Logging.Console.ConsoleLoggerProvider.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerProvider.cs#L206C13-L208C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerProvider.cs#L206C13-L208C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.Console.ConsoleLoggerProvider.SetScopeProvider(Microsoft.Extensions.Logging.IExternalScopeProvider)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerProvider.cs#L213C13-L219C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerProvider.cs#L213C13-L219C10" } ], "DocsId": "T:Microsoft.Extensions.Logging.Console.ConsoleLoggerProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerProvider.cs" }, { "Members": [ { "DocsId": "F:Microsoft.Extensions.Logging.Console.ConsoleLoggerQueueFullMode.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerQueueFullMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerQueueFullMode.cs" }, { "DocsId": "F:Microsoft.Extensions.Logging.Console.ConsoleLoggerQueueFullMode.Wait", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerQueueFullMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerQueueFullMode.cs" }, { "DocsId": "F:Microsoft.Extensions.Logging.Console.ConsoleLoggerQueueFullMode.DropWrite", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerQueueFullMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerQueueFullMode.cs" } ], "DocsId": "T:Microsoft.Extensions.Logging.Console.ConsoleLoggerQueueFullMode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerQueueFullMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerQueueFullMode.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.Console.ConsoleLoggerSettings.Reload", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerSettings.cs#L37C13-L37C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerSettings.cs#L37C13-L37C25" }, { "DocsId": "M:Microsoft.Extensions.Logging.Console.ConsoleLoggerSettings.TryGetSwitch(System.String,Microsoft.Extensions.Logging.LogLevel@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerSettings.cs#L43C13-L43C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerSettings.cs#L43C13-L43C58" }, { "DocsId": "M:Microsoft.Extensions.Logging.Console.ConsoleLoggerSettings.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerSettings.cs#L32C71-L32C105" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerSettings.cs#L32C71-L32C105" }, { "DocsId": "P:Microsoft.Extensions.Logging.Console.ConsoleLoggerSettings.ChangeToken", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerSettings.cs#L19C44-L19C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerSettings.cs#L19C44-L19C48" }, { "DocsId": "P:Microsoft.Extensions.Logging.Console.ConsoleLoggerSettings.IncludeScopes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerSettings.cs#L22C37-L22C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerSettings.cs#L22C37-L22C41" }, { "DocsId": "P:Microsoft.Extensions.Logging.Console.ConsoleLoggerSettings.DisableColors", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerSettings.cs#L27C37-L27C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerSettings.cs#L27C37-L27C41" }, { "DocsId": "P:Microsoft.Extensions.Logging.Console.ConsoleLoggerSettings.Switches", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerSettings.cs#L32C57-L32C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerSettings.cs#L32C57-L32C61" } ], "DocsId": "T:Microsoft.Extensions.Logging.Console.ConsoleLoggerSettings", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerSettings.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerSettings.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.Console.IConsoleLoggerSettings.TryGetSwitch(System.String,Microsoft.Extensions.Logging.LogLevel@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/IConsoleLoggerSettings.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/IConsoleLoggerSettings.cs" }, { "DocsId": "M:Microsoft.Extensions.Logging.Console.IConsoleLoggerSettings.Reload", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/IConsoleLoggerSettings.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/IConsoleLoggerSettings.cs" }, { "DocsId": "P:Microsoft.Extensions.Logging.Console.IConsoleLoggerSettings.IncludeScopes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/IConsoleLoggerSettings.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/IConsoleLoggerSettings.cs" }, { "DocsId": "P:Microsoft.Extensions.Logging.Console.IConsoleLoggerSettings.ChangeToken", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/IConsoleLoggerSettings.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/IConsoleLoggerSettings.cs" } ], "DocsId": "T:Microsoft.Extensions.Logging.Console.IConsoleLoggerSettings", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/IConsoleLoggerSettings.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/IConsoleLoggerSettings.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.Console.JsonConsoleFormatterOptions.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/JsonConsoleFormatterOptions.cs#L17C9-L17C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/JsonConsoleFormatterOptions.cs#L17C9-L17C49" }, { "DocsId": "P:Microsoft.Extensions.Logging.Console.JsonConsoleFormatterOptions.JsonWriterOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/JsonConsoleFormatterOptions.cs#L22C54-L22C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/JsonConsoleFormatterOptions.cs#L22C54-L22C58" } ], "DocsId": "T:Microsoft.Extensions.Logging.Console.JsonConsoleFormatterOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/JsonConsoleFormatterOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/JsonConsoleFormatterOptions.cs" }, { "Members": [ { "DocsId": "F:Microsoft.Extensions.Logging.Console.LoggerColorBehavior.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/LoggerColorBehavior.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/LoggerColorBehavior.cs" }, { "DocsId": "F:Microsoft.Extensions.Logging.Console.LoggerColorBehavior.Default", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/LoggerColorBehavior.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/LoggerColorBehavior.cs" }, { "DocsId": "F:Microsoft.Extensions.Logging.Console.LoggerColorBehavior.Enabled", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/LoggerColorBehavior.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/LoggerColorBehavior.cs" }, { "DocsId": "F:Microsoft.Extensions.Logging.Console.LoggerColorBehavior.Disabled", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/LoggerColorBehavior.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/LoggerColorBehavior.cs" } ], "DocsId": "T:Microsoft.Extensions.Logging.Console.LoggerColorBehavior", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/LoggerColorBehavior.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/LoggerColorBehavior.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.Console.SimpleConsoleFormatterOptions.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/SimpleConsoleFormatterOptions.cs#L16C9-L16C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/SimpleConsoleFormatterOptions.cs#L16C9-L16C51" }, { "DocsId": "P:Microsoft.Extensions.Logging.Console.SimpleConsoleFormatterOptions.ColorBehavior", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/SimpleConsoleFormatterOptions.cs#L21C52-L21C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/SimpleConsoleFormatterOptions.cs#L21C52-L21C56" }, { "DocsId": "P:Microsoft.Extensions.Logging.Console.SimpleConsoleFormatterOptions.SingleLine", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/SimpleConsoleFormatterOptions.cs#L26C34-L26C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/SimpleConsoleFormatterOptions.cs#L26C34-L26C38" } ], "DocsId": "T:Microsoft.Extensions.Logging.Console.SimpleConsoleFormatterOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/SimpleConsoleFormatterOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/SimpleConsoleFormatterOptions.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Logging.Debug.json b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Logging.Debug.json index 8bab7ab376a..48446ec1d1e 100644 --- a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Logging.Debug.json +++ b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Logging.Debug.json @@ -1,47 +1,46 @@ { "Assembly": "Microsoft.Extensions.Logging.Debug", - "GUID": "564FC608B9EA48B6A4891FA868B6F14FFFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "78AC0DD29C744614BDB5F657066A5DC9FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.DebugLoggerFactoryExtensions.AddDebug(Microsoft.Extensions.Logging.ILoggerFactory,Microsoft.Extensions.Logging.LogLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Debug/src/DebugLoggerFactoryExtensions.cs#L24C98-L24C115" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Debug/src/DebugLoggerFactoryExtensions.cs#L24C98-L24C115" }, { "DocsId": "M:Microsoft.Extensions.Logging.DebugLoggerFactoryExtensions.AddDebug(Microsoft.Extensions.Logging.ILoggerFactory,System.Func{System.String,Microsoft.Extensions.Logging.LogLevel,System.Boolean})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Debug/src/DebugLoggerFactoryExtensions.cs#L33C116-L33C133" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Debug/src/DebugLoggerFactoryExtensions.cs#L33C116-L33C133" }, { "DocsId": "M:Microsoft.Extensions.Logging.DebugLoggerFactoryExtensions.AddDebug(Microsoft.Extensions.Logging.ILoggerFactory)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Debug/src/DebugLoggerFactoryExtensions.cs#L43C13-L44C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Debug/src/DebugLoggerFactoryExtensions.cs#L43C13-L44C28" }, { "DocsId": "M:Microsoft.Extensions.Logging.DebugLoggerFactoryExtensions.AddDebug(Microsoft.Extensions.Logging.ILoggingBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Debug/src/DebugLoggerFactoryExtensions.cs#L53C13-L55C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Debug/src/DebugLoggerFactoryExtensions.cs#L53C13-L55C28" } ], "DocsId": "T:Microsoft.Extensions.Logging.DebugLoggerFactoryExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Debug/src/DebugLoggerFactoryExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Debug/src/DebugLoggerFactoryExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.Debug.DebugLoggerProvider.CreateLogger(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Debug/src/DebugLoggerProvider.cs#L15C13-L15C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Debug/src/DebugLoggerProvider.cs#L15C13-L15C42" }, { "DocsId": "M:Microsoft.Extensions.Logging.Debug.DebugLoggerProvider.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Debug/src/DebugLoggerProvider.cs#L21C9-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Debug/src/DebugLoggerProvider.cs#L21C9-L21C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.Debug.DebugLoggerProvider.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Debug/src/DebugLoggerProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Debug/src/DebugLoggerProvider.cs" } ], "DocsId": "T:Microsoft.Extensions.Logging.Debug.DebugLoggerProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Debug/src/DebugLoggerProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Debug/src/DebugLoggerProvider.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Logging.EventLog.json b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Logging.EventLog.json index d03b83b16cf..255a48ab0b9 100644 --- a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Logging.EventLog.json +++ b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Logging.EventLog.json @@ -1,93 +1,92 @@ { "Assembly": "Microsoft.Extensions.Logging.EventLog", - "GUID": "B325BEA08E1F41F2BF1FB676F316A08FFFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "F68902174F8348EEAE89D2C93AE28297FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.EventLoggerFactoryExtensions.AddEventLog(Microsoft.Extensions.Logging.ILoggerFactory,Microsoft.Extensions.Logging.EventLog.EventLogSettings)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.EventLog/src/EventLoggerFactoryExtensions.cs#L26C13-L30C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.EventLog/src/EventLoggerFactoryExtensions.cs#L26C13-L30C28" }, { "DocsId": "M:Microsoft.Extensions.Logging.EventLoggerFactoryExtensions.AddEventLog(Microsoft.Extensions.Logging.ILoggerFactory,Microsoft.Extensions.Logging.LogLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.EventLog/src/EventLoggerFactoryExtensions.cs#L41C13-L41C108" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.EventLog/src/EventLoggerFactoryExtensions.cs#L16707566C0-L41C108" }, { "DocsId": "M:Microsoft.Extensions.Logging.EventLoggerFactoryExtensions.AddEventLog(Microsoft.Extensions.Logging.ILoggerFactory)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.EventLog/src/EventLoggerFactoryExtensions.cs#L49C82-L49C124" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.EventLog/src/EventLoggerFactoryExtensions.cs#L49C82-L49C124" }, { "DocsId": "M:Microsoft.Extensions.Logging.EventLoggerFactoryExtensions.AddEventLog(Microsoft.Extensions.Logging.ILoggingBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.EventLog/src/EventLoggerFactoryExtensions.cs#L58C13-L62C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.EventLog/src/EventLoggerFactoryExtensions.cs#L58C13-L62C28" }, { "DocsId": "M:Microsoft.Extensions.Logging.EventLoggerFactoryExtensions.AddEventLog(Microsoft.Extensions.Logging.ILoggingBuilder,Microsoft.Extensions.Logging.EventLog.EventLogSettings)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.EventLog/src/EventLoggerFactoryExtensions.cs#L73C13-L78C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.EventLog/src/EventLoggerFactoryExtensions.cs#L73C13-L78C28" }, { "DocsId": "M:Microsoft.Extensions.Logging.EventLoggerFactoryExtensions.AddEventLog(Microsoft.Extensions.Logging.ILoggingBuilder,System.Action{Microsoft.Extensions.Logging.EventLog.EventLogSettings})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.EventLog/src/EventLoggerFactoryExtensions.cs#L89C13-L94C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.EventLog/src/EventLoggerFactoryExtensions.cs#L89C13-L94C28" } ], "DocsId": "T:Microsoft.Extensions.Logging.EventLoggerFactoryExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.EventLog/src/EventLoggerFactoryExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.EventLog/src/EventLoggerFactoryExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.EventLog.EventLogLoggerProvider.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.EventLog/src/EventLogLoggerProvider.cs#L22C15-L24C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.EventLog/src/EventLogLoggerProvider.cs#L22C15-L24C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.EventLog.EventLogLoggerProvider.#ctor(Microsoft.Extensions.Logging.EventLog.EventLogSettings)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.EventLog/src/EventLogLoggerProvider.cs#L30C9-L33C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.EventLog/src/EventLogLoggerProvider.cs#L30C9-L33C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.EventLog.EventLogLoggerProvider.#ctor(Microsoft.Extensions.Options.IOptions{Microsoft.Extensions.Logging.EventLog.EventLogSettings})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.EventLog/src/EventLogLoggerProvider.cs#L40C15-L42C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.EventLog/src/EventLogLoggerProvider.cs#L40C15-L42C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.EventLog.EventLogLoggerProvider.CreateLogger(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.EventLog/src/EventLogLoggerProvider.cs#L47C13-L47C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.EventLog/src/EventLogLoggerProvider.cs#L47C13-L47C72" }, { "DocsId": "M:Microsoft.Extensions.Logging.EventLog.EventLogLoggerProvider.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.EventLog/src/EventLogLoggerProvider.cs#L53C13-L57C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.EventLog/src/EventLogLoggerProvider.cs#L53C13-L57C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.EventLog.EventLogLoggerProvider.SetScopeProvider(Microsoft.Extensions.Logging.IExternalScopeProvider)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.EventLog/src/EventLogLoggerProvider.cs#L62C13-L63C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.EventLog/src/EventLogLoggerProvider.cs#L62C13-L63C10" } ], "DocsId": "T:Microsoft.Extensions.Logging.EventLog.EventLogLoggerProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.EventLog/src/EventLogLoggerProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.EventLog/src/EventLogLoggerProvider.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.EventLog.EventLogSettings.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.EventLog/src/EventLogSettings.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.EventLog/src/EventLogSettings.cs" }, { "DocsId": "P:Microsoft.Extensions.Logging.EventLog.EventLogSettings.LogName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.EventLog/src/EventLogSettings.cs#L18C34-L18C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.EventLog/src/EventLogSettings.cs#L18C34-L18C38" }, { "DocsId": "P:Microsoft.Extensions.Logging.EventLog.EventLogSettings.SourceName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.EventLog/src/EventLogSettings.cs#L23C37-L23C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.EventLog/src/EventLogSettings.cs#L23C37-L23C41" }, { "DocsId": "P:Microsoft.Extensions.Logging.EventLog.EventLogSettings.MachineName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.EventLog/src/EventLogSettings.cs#L28C38-L28C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.EventLog/src/EventLogSettings.cs#L28C38-L28C42" }, { "DocsId": "P:Microsoft.Extensions.Logging.EventLog.EventLogSettings.Filter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.EventLog/src/EventLogSettings.cs#L33C55-L33C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.EventLog/src/EventLogSettings.cs#L33C55-L33C59" } ], "DocsId": "T:Microsoft.Extensions.Logging.EventLog.EventLogSettings", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.EventLog/src/EventLogSettings.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.EventLog/src/EventLogSettings.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Logging.EventSource.json b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Logging.EventSource.json index 45b5e9286b9..50bef971cb1 100644 --- a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Logging.EventSource.json +++ b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Logging.EventSource.json @@ -1,75 +1,74 @@ { "Assembly": "Microsoft.Extensions.Logging.EventSource", - "GUID": "F9C88E84A04945FAA8C049FD78BB33AAFFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "D424035C2ED94E0C81C72ACFA01239ADFFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.EventSourceLoggerFactoryExtensions.AddEventSourceLogger(Microsoft.Extensions.Logging.ILoggerFactory)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.EventSource/src/EventSourceLoggerFactoryExtensions.cs#L27C13-L31C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.EventSource/src/EventSourceLoggerFactoryExtensions.cs#L27C13-L31C28" }, { "DocsId": "M:Microsoft.Extensions.Logging.EventSourceLoggerFactoryExtensions.AddEventSourceLogger(Microsoft.Extensions.Logging.ILoggingBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.EventSource/src/EventSourceLoggerFactoryExtensions.cs#L41C13-L47C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.EventSource/src/EventSourceLoggerFactoryExtensions.cs#L41C13-L47C28" } ], "DocsId": "T:Microsoft.Extensions.Logging.EventSourceLoggerFactoryExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.EventSource/src/EventSourceLoggerFactoryExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.EventSource/src/EventSourceLoggerFactoryExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.EventSource.EventSourceLoggerProvider.#ctor(Microsoft.Extensions.Logging.EventSource.LoggingEventSource)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.EventSource/src/EventSourceLoggerProvider.cs#L27C9-L33C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.EventSource/src/EventSourceLoggerProvider.cs#L27C9-L33C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.EventSource.EventSourceLoggerProvider.CreateLogger(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.EventSource/src/EventSourceLoggerProvider.cs#L38C13-L38C103" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.EventSource/src/EventSourceLoggerProvider.cs#L38C13-L38C103" }, { "DocsId": "M:Microsoft.Extensions.Logging.EventSource.EventSourceLoggerProvider.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.EventSource/src/EventSourceLoggerProvider.cs#L45C18-L49C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.EventSource/src/EventSourceLoggerProvider.cs#L45C18-L49C10" } ], "DocsId": "T:Microsoft.Extensions.Logging.EventSource.EventSourceLoggerProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.EventSource/src/EventSourceLoggerProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.EventSource/src/EventSourceLoggerProvider.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.EventSource.LoggingEventSource.OnEventCommand(System.Diagnostics.Tracing.EventCommandEventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.EventSource/src/LoggingEventSource.cs#L303C13-L316C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.EventSource/src/LoggingEventSource.cs#L303C13-L316C10" }, { "DocsId": "T:Microsoft.Extensions.Logging.EventSource.LoggingEventSource.Keywords", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.EventSource/src/LoggingEventSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.EventSource/src/LoggingEventSource.cs" } ], "DocsId": "T:Microsoft.Extensions.Logging.EventSource.LoggingEventSource", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.EventSource/src/LoggingEventSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.EventSource/src/LoggingEventSource.cs" }, { "Members": [ { "DocsId": "F:Microsoft.Extensions.Logging.EventSource.LoggingEventSource.Keywords.Meta", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.EventSource/src/LoggingEventSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.EventSource/src/LoggingEventSource.cs" }, { "DocsId": "F:Microsoft.Extensions.Logging.EventSource.LoggingEventSource.Keywords.Message", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.EventSource/src/LoggingEventSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.EventSource/src/LoggingEventSource.cs" }, { "DocsId": "F:Microsoft.Extensions.Logging.EventSource.LoggingEventSource.Keywords.FormattedMessage", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.EventSource/src/LoggingEventSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.EventSource/src/LoggingEventSource.cs" }, { "DocsId": "F:Microsoft.Extensions.Logging.EventSource.LoggingEventSource.Keywords.JsonMessage", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.EventSource/src/LoggingEventSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.EventSource/src/LoggingEventSource.cs" } ], "DocsId": "T:Microsoft.Extensions.Logging.EventSource.LoggingEventSource.Keywords", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.EventSource/src/LoggingEventSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.EventSource/src/LoggingEventSource.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Logging.TraceSource.json b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Logging.TraceSource.json index e42c5deb45a..aab29d398b2 100644 --- a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Logging.TraceSource.json +++ b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Logging.TraceSource.json @@ -1,67 +1,66 @@ { "Assembly": "Microsoft.Extensions.Logging.TraceSource", - "GUID": "9B809322C0FF43399944505CB1769BBDFFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "F7107838590F46BFBD8B091114DD8D3AFFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.TraceSourceFactoryExtensions.AddTraceSource(Microsoft.Extensions.Logging.ILoggerFactory,System.Diagnostics.SourceSwitch,System.Diagnostics.TraceListener)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.TraceSource/src/TraceSourceFactoryExtensions.cs#L28C13-L34C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.TraceSource/src/TraceSourceFactoryExtensions.cs#L28C13-L34C28" }, { "DocsId": "M:Microsoft.Extensions.Logging.TraceSourceFactoryExtensions.AddTraceSource(Microsoft.Extensions.Logging.ILoggerFactory,System.Diagnostics.SourceSwitch)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.TraceSource/src/TraceSourceFactoryExtensions.cs#L47C13-L52C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.TraceSource/src/TraceSourceFactoryExtensions.cs#L47C13-L52C28" }, { "DocsId": "M:Microsoft.Extensions.Logging.TraceSourceFactoryExtensions.AddTraceSource(Microsoft.Extensions.Logging.ILoggerFactory,System.String,System.Diagnostics.TraceListener)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.TraceSource/src/TraceSourceFactoryExtensions.cs#L66C13-L72C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.TraceSource/src/TraceSourceFactoryExtensions.cs#L66C13-L72C28" }, { "DocsId": "M:Microsoft.Extensions.Logging.TraceSourceFactoryExtensions.AddTraceSource(Microsoft.Extensions.Logging.ILoggerFactory,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.TraceSource/src/TraceSourceFactoryExtensions.cs#L85C13-L90C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.TraceSource/src/TraceSourceFactoryExtensions.cs#L85C13-L90C28" }, { "DocsId": "M:Microsoft.Extensions.Logging.TraceSourceFactoryExtensions.AddTraceSource(Microsoft.Extensions.Logging.ILoggingBuilder,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.TraceSource/src/TraceSourceFactoryExtensions.cs#L103C13-L106C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.TraceSource/src/TraceSourceFactoryExtensions.cs#L103C13-L106C73" }, { "DocsId": "M:Microsoft.Extensions.Logging.TraceSourceFactoryExtensions.AddTraceSource(Microsoft.Extensions.Logging.ILoggingBuilder,System.String,System.Diagnostics.TraceListener)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.TraceSource/src/TraceSourceFactoryExtensions.cs#L121C13-L125C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.TraceSource/src/TraceSourceFactoryExtensions.cs#L121C13-L125C83" }, { "DocsId": "M:Microsoft.Extensions.Logging.TraceSourceFactoryExtensions.AddTraceSource(Microsoft.Extensions.Logging.ILoggingBuilder,System.Diagnostics.SourceSwitch)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.TraceSource/src/TraceSourceFactoryExtensions.cs#L138C13-L143C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.TraceSource/src/TraceSourceFactoryExtensions.cs#L16707566C0-L143C28" }, { "DocsId": "M:Microsoft.Extensions.Logging.TraceSourceFactoryExtensions.AddTraceSource(Microsoft.Extensions.Logging.ILoggingBuilder,System.Diagnostics.SourceSwitch,System.Diagnostics.TraceListener)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.TraceSource/src/TraceSourceFactoryExtensions.cs#L158C13-L164C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.TraceSource/src/TraceSourceFactoryExtensions.cs#L16707566C0-L164C28" } ], "DocsId": "T:Microsoft.Extensions.Logging.TraceSourceFactoryExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.TraceSource/src/TraceSourceFactoryExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.TraceSource/src/TraceSourceFactoryExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.TraceSource.TraceSourceLoggerProvider.#ctor(System.Diagnostics.SourceSwitch)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.TraceSource/src/TraceSourceLoggerProvider.cs#L29C15-L31C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.TraceSource/src/TraceSourceLoggerProvider.cs#L29C15-L31C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.TraceSource.TraceSourceLoggerProvider.#ctor(System.Diagnostics.SourceSwitch,System.Diagnostics.TraceListener)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.TraceSource/src/TraceSourceLoggerProvider.cs#L20C9-L44C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.TraceSource/src/TraceSourceLoggerProvider.cs#L20C9-L44C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.TraceSource.TraceSourceLoggerProvider.CreateLogger(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.TraceSource/src/TraceSourceLoggerProvider.cs#L53C13-L53C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.TraceSource/src/TraceSourceLoggerProvider.cs#L53C13-L53C69" }, { "DocsId": "M:Microsoft.Extensions.Logging.TraceSource.TraceSourceLoggerProvider.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.TraceSource/src/TraceSourceLoggerProvider.cs#L116C13-L125C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.TraceSource/src/TraceSourceLoggerProvider.cs#L116C13-L125C10" } ], "DocsId": "T:Microsoft.Extensions.Logging.TraceSource.TraceSourceLoggerProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.TraceSource/src/TraceSourceLoggerProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.TraceSource/src/TraceSourceLoggerProvider.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Logging.json b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Logging.json index 077ee88a5ea..1ee8cc5a040 100644 --- a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Logging.json +++ b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Logging.json @@ -1,293 +1,292 @@ { "Assembly": "Microsoft.Extensions.Logging", - "GUID": "8AA657FD2F12465F8AF7E21125FDD44EFFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "9EDD6117AE754257A16ABBFB6AC67ADAFFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.LoggingServiceCollectionExtensions.AddLogging(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/LoggingServiceCollectionExtensions.cs#L23C13-L23C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/LoggingServiceCollectionExtensions.cs#L23C13-L23C57" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.LoggingServiceCollectionExtensions.AddLogging(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{Microsoft.Extensions.Logging.ILoggingBuilder})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/LoggingServiceCollectionExtensions.cs#L34C13-L45C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/LoggingServiceCollectionExtensions.cs#L34C13-L45C29" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.LoggingServiceCollectionExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/LoggingServiceCollectionExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/LoggingServiceCollectionExtensions.cs" }, { "Members": [ { "DocsId": "F:Microsoft.Extensions.Logging.ActivityTrackingOptions.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/ActivityTrackingOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/ActivityTrackingOptions.cs" }, { "DocsId": "F:Microsoft.Extensions.Logging.ActivityTrackingOptions.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/ActivityTrackingOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/ActivityTrackingOptions.cs" }, { "DocsId": "F:Microsoft.Extensions.Logging.ActivityTrackingOptions.SpanId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/ActivityTrackingOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/ActivityTrackingOptions.cs" }, { "DocsId": "F:Microsoft.Extensions.Logging.ActivityTrackingOptions.TraceId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/ActivityTrackingOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/ActivityTrackingOptions.cs" }, { "DocsId": "F:Microsoft.Extensions.Logging.ActivityTrackingOptions.ParentId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/ActivityTrackingOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/ActivityTrackingOptions.cs" }, { "DocsId": "F:Microsoft.Extensions.Logging.ActivityTrackingOptions.TraceState", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/ActivityTrackingOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/ActivityTrackingOptions.cs" }, { "DocsId": "F:Microsoft.Extensions.Logging.ActivityTrackingOptions.TraceFlags", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/ActivityTrackingOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/ActivityTrackingOptions.cs" }, { "DocsId": "F:Microsoft.Extensions.Logging.ActivityTrackingOptions.Tags", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/ActivityTrackingOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/ActivityTrackingOptions.cs" }, { "DocsId": "F:Microsoft.Extensions.Logging.ActivityTrackingOptions.Baggage", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/ActivityTrackingOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/ActivityTrackingOptions.cs" } ], "DocsId": "T:Microsoft.Extensions.Logging.ActivityTrackingOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/ActivityTrackingOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/ActivityTrackingOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.FilterLoggingBuilderExtensions.AddFilter(Microsoft.Extensions.Logging.ILoggingBuilder,System.Func{System.String,System.String,Microsoft.Extensions.Logging.LogLevel,System.Boolean})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/FilterLoggingBuilderExtensions.cs#L21C13-L21C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/FilterLoggingBuilderExtensions.cs#L16707566C0-L21C74" }, { "DocsId": "M:Microsoft.Extensions.Logging.FilterLoggingBuilderExtensions.AddFilter(Microsoft.Extensions.Logging.ILoggingBuilder,System.Func{System.String,Microsoft.Extensions.Logging.LogLevel,System.Boolean})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/FilterLoggingBuilderExtensions.cs#L30C13-L30C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/FilterLoggingBuilderExtensions.cs#L16707566C0-L30C87" }, { "DocsId": "M:Microsoft.Extensions.Logging.FilterLoggingBuilderExtensions.AddFilter``1(Microsoft.Extensions.Logging.ILoggingBuilder,System.Func{System.String,Microsoft.Extensions.Logging.LogLevel,System.Boolean})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/FilterLoggingBuilderExtensions.cs#L40C13-L40C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/FilterLoggingBuilderExtensions.cs#L16707566C0-L40C90" }, { "DocsId": "M:Microsoft.Extensions.Logging.FilterLoggingBuilderExtensions.AddFilter(Microsoft.Extensions.Logging.ILoggingBuilder,System.Func{Microsoft.Extensions.Logging.LogLevel,System.Boolean})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/FilterLoggingBuilderExtensions.cs#L49C13-L49C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/FilterLoggingBuilderExtensions.cs#L16707566C0-L49C79" }, { "DocsId": "M:Microsoft.Extensions.Logging.FilterLoggingBuilderExtensions.AddFilter``1(Microsoft.Extensions.Logging.ILoggingBuilder,System.Func{Microsoft.Extensions.Logging.LogLevel,System.Boolean})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/FilterLoggingBuilderExtensions.cs#L59C13-L59C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/FilterLoggingBuilderExtensions.cs#L16707566C0-L59C82" }, { "DocsId": "M:Microsoft.Extensions.Logging.FilterLoggingBuilderExtensions.AddFilter(Microsoft.Extensions.Logging.ILoggingBuilder,System.String,Microsoft.Extensions.Logging.LogLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/FilterLoggingBuilderExtensions.cs#L69C13-L69C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/FilterLoggingBuilderExtensions.cs#L16707566C0-L69C83" }, { "DocsId": "M:Microsoft.Extensions.Logging.FilterLoggingBuilderExtensions.AddFilter``1(Microsoft.Extensions.Logging.ILoggingBuilder,System.String,Microsoft.Extensions.Logging.LogLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/FilterLoggingBuilderExtensions.cs#L80C13-L80C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/FilterLoggingBuilderExtensions.cs#L16707566C0-L80C86" }, { "DocsId": "M:Microsoft.Extensions.Logging.FilterLoggingBuilderExtensions.AddFilter(Microsoft.Extensions.Logging.ILoggingBuilder,System.String,System.Func{Microsoft.Extensions.Logging.LogLevel,System.Boolean})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/FilterLoggingBuilderExtensions.cs#L90C13-L90C89" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/FilterLoggingBuilderExtensions.cs#L16707566C0-L90C89" }, { "DocsId": "M:Microsoft.Extensions.Logging.FilterLoggingBuilderExtensions.AddFilter``1(Microsoft.Extensions.Logging.ILoggingBuilder,System.String,System.Func{Microsoft.Extensions.Logging.LogLevel,System.Boolean})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/FilterLoggingBuilderExtensions.cs#L101C13-L101C92" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/FilterLoggingBuilderExtensions.cs#L16707566C0-L101C92" }, { "DocsId": "M:Microsoft.Extensions.Logging.FilterLoggingBuilderExtensions.AddFilter(Microsoft.Extensions.Logging.LoggerFilterOptions,System.Func{System.String,System.String,Microsoft.Extensions.Logging.LogLevel,System.Boolean})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/FilterLoggingBuilderExtensions.cs#L110C13-L110C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/FilterLoggingBuilderExtensions.cs#L110C13-L110C45" }, { "DocsId": "M:Microsoft.Extensions.Logging.FilterLoggingBuilderExtensions.AddFilter(Microsoft.Extensions.Logging.LoggerFilterOptions,System.Func{System.String,Microsoft.Extensions.Logging.LogLevel,System.Boolean})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/FilterLoggingBuilderExtensions.cs#L119C13-L119C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/FilterLoggingBuilderExtensions.cs#L16707566C0-L119C94" }, { "DocsId": "M:Microsoft.Extensions.Logging.FilterLoggingBuilderExtensions.AddFilter``1(Microsoft.Extensions.Logging.LoggerFilterOptions,System.Func{System.String,Microsoft.Extensions.Logging.LogLevel,System.Boolean})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/FilterLoggingBuilderExtensions.cs#L129C13-L129C120" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/FilterLoggingBuilderExtensions.cs#L16707566C0-L129C120" }, { "DocsId": "M:Microsoft.Extensions.Logging.FilterLoggingBuilderExtensions.AddFilter(Microsoft.Extensions.Logging.LoggerFilterOptions,System.Func{Microsoft.Extensions.Logging.LogLevel,System.Boolean})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/FilterLoggingBuilderExtensions.cs#L138C13-L138C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/FilterLoggingBuilderExtensions.cs#L16707566C0-L138C80" }, { "DocsId": "M:Microsoft.Extensions.Logging.FilterLoggingBuilderExtensions.AddFilter``1(Microsoft.Extensions.Logging.LoggerFilterOptions,System.Func{Microsoft.Extensions.Logging.LogLevel,System.Boolean})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/FilterLoggingBuilderExtensions.cs#L148C13-L148C106" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/FilterLoggingBuilderExtensions.cs#L16707566C0-L148C106" }, { "DocsId": "M:Microsoft.Extensions.Logging.FilterLoggingBuilderExtensions.AddFilter(Microsoft.Extensions.Logging.LoggerFilterOptions,System.String,Microsoft.Extensions.Logging.LogLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/FilterLoggingBuilderExtensions.cs#L158C13-L158C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/FilterLoggingBuilderExtensions.cs#L158C13-L158C63" }, { "DocsId": "M:Microsoft.Extensions.Logging.FilterLoggingBuilderExtensions.AddFilter``1(Microsoft.Extensions.Logging.LoggerFilterOptions,System.String,Microsoft.Extensions.Logging.LogLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/FilterLoggingBuilderExtensions.cs#L169C13-L169C89" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/FilterLoggingBuilderExtensions.cs#L169C13-L169C89" }, { "DocsId": "M:Microsoft.Extensions.Logging.FilterLoggingBuilderExtensions.AddFilter(Microsoft.Extensions.Logging.LoggerFilterOptions,System.String,System.Func{Microsoft.Extensions.Logging.LogLevel,System.Boolean})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/FilterLoggingBuilderExtensions.cs#L179C13-L179C100" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/FilterLoggingBuilderExtensions.cs#L16707566C0-L179C100" }, { "DocsId": "M:Microsoft.Extensions.Logging.FilterLoggingBuilderExtensions.AddFilter``1(Microsoft.Extensions.Logging.LoggerFilterOptions,System.String,System.Func{Microsoft.Extensions.Logging.LogLevel,System.Boolean})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/FilterLoggingBuilderExtensions.cs#L190C13-L190C126" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/FilterLoggingBuilderExtensions.cs#L16707566C0-L190C126" } ], "DocsId": "T:Microsoft.Extensions.Logging.FilterLoggingBuilderExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/FilterLoggingBuilderExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/FilterLoggingBuilderExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.LoggerFactory.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/LoggerFactory.cs#L34C34-L36C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/LoggerFactory.cs#L34C34-L36C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerFactory.#ctor(System.Collections.Generic.IEnumerable{Microsoft.Extensions.Logging.ILoggerProvider})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/LoggerFactory.cs#L42C72-L44C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/LoggerFactory.cs#L42C72-L44C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerFactory.#ctor(System.Collections.Generic.IEnumerable{Microsoft.Extensions.Logging.ILoggerProvider},Microsoft.Extensions.Logging.LoggerFilterOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/LoggerFactory.cs#L51C107-L53C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/LoggerFactory.cs#L51C107-L53C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerFactory.#ctor(System.Collections.Generic.IEnumerable{Microsoft.Extensions.Logging.ILoggerProvider},Microsoft.Extensions.Options.IOptionsMonitor{Microsoft.Extensions.Logging.LoggerFilterOptions})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/LoggerFactory.cs#L60C123-L62C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/LoggerFactory.cs#L60C123-L62C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerFactory.#ctor(System.Collections.Generic.IEnumerable{Microsoft.Extensions.Logging.ILoggerProvider},Microsoft.Extensions.Options.IOptionsMonitor{Microsoft.Extensions.Logging.LoggerFilterOptions},Microsoft.Extensions.Options.IOptions{Microsoft.Extensions.Logging.LoggerFactoryOptions})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/LoggerFactory.cs#L70C164-L72C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/LoggerFactory.cs#L70C164-L72C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerFactory.#ctor(System.Collections.Generic.IEnumerable{Microsoft.Extensions.Logging.ILoggerProvider},Microsoft.Extensions.Options.IOptionsMonitor{Microsoft.Extensions.Logging.LoggerFilterOptions},Microsoft.Extensions.Options.IOptions{Microsoft.Extensions.Logging.LoggerFactoryOptions},Microsoft.Extensions.Logging.IExternalScopeProvider)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/LoggerFactory.cs#L22C9-L104C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/LoggerFactory.cs#L22C9-L104C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerFactory.Create(System.Action{Microsoft.Extensions.Logging.ILoggingBuilder})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/LoggerFactory.cs#L113C13-L117C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/LoggerFactory.cs#L113C13-L117C79" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerFactory.CreateLogger(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/LoggerFactory.cs#L141C13-L161C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/LoggerFactory.cs#L141C13-L161C27" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerFactory.AddProvider(Microsoft.Extensions.Logging.ILoggerProvider)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/LoggerFactory.cs#L170C13-L194C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/LoggerFactory.cs#L170C13-L194C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerFactory.CheckDisposed", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/LoggerFactory.cs#L260C51-L260C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/LoggerFactory.cs#L260C51-L260C60" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerFactory.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/LoggerFactory.cs#L265C13-L286C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/LoggerFactory.cs#L265C13-L286C10" } ], "DocsId": "T:Microsoft.Extensions.Logging.LoggerFactory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/LoggerFactory.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/LoggerFactory.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.LoggerFactoryOptions.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/LoggerFactoryOptions.cs#L17C9-L17C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/LoggerFactoryOptions.cs#L17C9-L17C42" }, { "DocsId": "P:Microsoft.Extensions.Logging.LoggerFactoryOptions.ActivityTrackingOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/LoggerFactoryOptions.cs#L22C66-L22C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/LoggerFactoryOptions.cs#L22C66-L22C70" } ], "DocsId": "T:Microsoft.Extensions.Logging.LoggerFactoryOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/LoggerFactoryOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/LoggerFactoryOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.LoggerFilterOptions.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/LoggerFilterOptions.cs#L23C51-L18C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/LoggerFilterOptions.cs#L23C51-L18C41" }, { "DocsId": "P:Microsoft.Extensions.Logging.LoggerFilterOptions.CaptureScopes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/LoggerFilterOptions.cs#L23C37-L23C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/LoggerFilterOptions.cs#L23C37-L23C41" }, { "DocsId": "P:Microsoft.Extensions.Logging.LoggerFilterOptions.MinLevel", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/LoggerFilterOptions.cs#L28C36-L28C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/LoggerFilterOptions.cs#L28C36-L28C40" }, { "DocsId": "P:Microsoft.Extensions.Logging.LoggerFilterOptions.Rules", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/LoggerFilterOptions.cs#L33C49-L33C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/LoggerFilterOptions.cs#L33C49-L33C62" } ], "DocsId": "T:Microsoft.Extensions.Logging.LoggerFilterOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/LoggerFilterOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/LoggerFilterOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.LoggerFilterRule.#ctor(System.String,System.String,System.Nullable{Microsoft.Extensions.Logging.LogLevel},System.Func{System.String,System.String,Microsoft.Extensions.Logging.LogLevel,System.Boolean})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/LoggerFilterRule.cs#L20C9-L26C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/LoggerFilterRule.cs#L20C9-L26C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerFilterRule.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/LoggerFilterRule.cs#L51C13-L51C170" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/LoggerFilterRule.cs#L51C13-L51C170" }, { "DocsId": "P:Microsoft.Extensions.Logging.LoggerFilterRule.ProviderName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/LoggerFilterRule.cs#L31C39-L31C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/LoggerFilterRule.cs#L31C39-L31C43" }, { "DocsId": "P:Microsoft.Extensions.Logging.LoggerFilterRule.CategoryName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/LoggerFilterRule.cs#L36C39-L36C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/LoggerFilterRule.cs#L36C39-L36C43" }, { "DocsId": "P:Microsoft.Extensions.Logging.LoggerFilterRule.LogLevel", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/LoggerFilterRule.cs#L41C37-L41C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/LoggerFilterRule.cs#L41C37-L41C41" }, { "DocsId": "P:Microsoft.Extensions.Logging.LoggerFilterRule.Filter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/LoggerFilterRule.cs#L46C65-L46C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/LoggerFilterRule.cs#L46C65-L46C69" } ], "DocsId": "T:Microsoft.Extensions.Logging.LoggerFilterRule", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/LoggerFilterRule.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/LoggerFilterRule.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.LoggingBuilderExtensions.SetMinimumLevel(Microsoft.Extensions.Logging.ILoggingBuilder,Microsoft.Extensions.Logging.LogLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/LoggingBuilderExtensions.cs#L24C13-L26C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/LoggingBuilderExtensions.cs#L24C13-L26C28" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggingBuilderExtensions.AddProvider(Microsoft.Extensions.Logging.ILoggingBuilder,Microsoft.Extensions.Logging.ILoggerProvider)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/LoggingBuilderExtensions.cs#L37C13-L38C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/LoggingBuilderExtensions.cs#L37C13-L38C28" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggingBuilderExtensions.ClearProviders(Microsoft.Extensions.Logging.ILoggingBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/LoggingBuilderExtensions.cs#L48C13-L49C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/LoggingBuilderExtensions.cs#L48C13-L49C28" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggingBuilderExtensions.Configure(Microsoft.Extensions.Logging.ILoggingBuilder,System.Action{Microsoft.Extensions.Logging.LoggerFactoryOptions})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/LoggingBuilderExtensions.cs#L60C13-L61C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/LoggingBuilderExtensions.cs#L60C13-L61C28" } ], "DocsId": "T:Microsoft.Extensions.Logging.LoggingBuilderExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/LoggingBuilderExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/LoggingBuilderExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.ProviderAliasAttribute.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/ProviderAliasAttribute.cs#L18C9-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/ProviderAliasAttribute.cs#L18C9-L21C10" }, { "DocsId": "P:Microsoft.Extensions.Logging.ProviderAliasAttribute.Alias", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/ProviderAliasAttribute.cs#L26C31-L26C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/ProviderAliasAttribute.cs#L26C31-L26C35" } ], "DocsId": "T:Microsoft.Extensions.Logging.ProviderAliasAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/ProviderAliasAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/ProviderAliasAttribute.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.ObjectPool.DependencyInjection.json b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.ObjectPool.DependencyInjection.json index b416d6f2bc8..7db8ace98c8 100644 --- a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.ObjectPool.DependencyInjection.json +++ b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.ObjectPool.DependencyInjection.json @@ -1,43 +1,42 @@ { "Assembly": "Microsoft.Extensions.ObjectPool.DependencyInjection", - "GUID": "3D407DEBCB9E4466A1F65155FF4C2F37FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "ECAA3D158C734D7EA2B4376280F61B00FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ObjectPoolServiceCollectionExtensions.AddPooled``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{Microsoft.Extensions.ObjectPool.DependencyInjectionPoolOptions})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.ObjectPool.DependencyInjection/ObjectPoolServiceCollectionExtensions.cs#L37C9-L37C74" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.ObjectPool.DependencyInjection/ObjectPoolServiceCollectionExtensions.cs#L37C9-L37C74" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ObjectPoolServiceCollectionExtensions.AddPooled``2(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{Microsoft.Extensions.ObjectPool.DependencyInjectionPoolOptions})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.ObjectPool.DependencyInjection/ObjectPoolServiceCollectionExtensions.cs#L59C9-L59C81" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.ObjectPool.DependencyInjection/ObjectPoolServiceCollectionExtensions.cs#L59C9-L59C81" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ObjectPoolServiceCollectionExtensions.ConfigurePool``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{Microsoft.Extensions.ObjectPool.DependencyInjectionPoolOptions})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.ObjectPool.DependencyInjection/ObjectPoolServiceCollectionExtensions.cs#L72C9-L72C105" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.ObjectPool.DependencyInjection/ObjectPoolServiceCollectionExtensions.cs#L72C9-L72C105" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ObjectPoolServiceCollectionExtensions.ConfigurePools(Microsoft.Extensions.DependencyInjection.IServiceCollection,Microsoft.Extensions.Configuration.IConfigurationSection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.ObjectPool.DependencyInjection/ObjectPoolServiceCollectionExtensions.cs#L83C31-L93C25" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.ObjectPool.DependencyInjection/ObjectPoolServiceCollectionExtensions.cs#L83C31-L93C25" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.ObjectPoolServiceCollectionExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.ObjectPool.DependencyInjection/ObjectPoolServiceCollectionExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.ObjectPool.DependencyInjection/ObjectPoolServiceCollectionExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.ObjectPool.DependencyInjectionPoolOptions.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.ObjectPool.DependencyInjection/DependencyInjectionPoolOptions.cs#L19C41-L19C56" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.ObjectPool.DependencyInjection/DependencyInjectionPoolOptions.cs#L19C41-L19C56" }, { "DocsId": "P:Microsoft.Extensions.ObjectPool.DependencyInjectionPoolOptions.Capacity", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.ObjectPool.DependencyInjection/DependencyInjectionPoolOptions.cs#L19C27-L19C31" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.ObjectPool.DependencyInjection/DependencyInjectionPoolOptions.cs#L19C27-L19C31" } ], "DocsId": "T:Microsoft.Extensions.ObjectPool.DependencyInjectionPoolOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.ObjectPool.DependencyInjection/DependencyInjectionPoolOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.ObjectPool.DependencyInjection/DependencyInjectionPoolOptions.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.ObjectPool.json b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.ObjectPool.json index 1f63260c610..b5378968d7f 100644 --- a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.ObjectPool.json +++ b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.ObjectPool.json @@ -1,225 +1,224 @@ { "Assembly": "Microsoft.Extensions.ObjectPool", - "GUID": "C8DEFC9806C049AA89B58D07DDD4AB9BFFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "001218542F804EB1A1E1C29F690CA162FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.ObjectPool.DefaultObjectPool`1.#ctor(Microsoft.Extensions.ObjectPool.IPooledObjectPolicy{`0})", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/ObjectPool/src/DefaultObjectPool.cs#L30C11-L32C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/ObjectPool/src/DefaultObjectPool.cs#L30C11-L32C6" }, { "DocsId": "M:Microsoft.Extensions.ObjectPool.DefaultObjectPool`1.#ctor(Microsoft.Extensions.ObjectPool.IPooledObjectPolicy{`0},System.Int32)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/ObjectPool/src/DefaultObjectPool.cs#L22C5-L45C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/ObjectPool/src/DefaultObjectPool.cs#L22C5-L45C6" }, { "DocsId": "M:Microsoft.Extensions.ObjectPool.DefaultObjectPool`1.Get", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/ObjectPool/src/DefaultObjectPool.cs#L50C9-L63C21" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/ObjectPool/src/DefaultObjectPool.cs#L50C9-L63C21" }, { "DocsId": "M:Microsoft.Extensions.ObjectPool.DefaultObjectPool`1.Return(`0)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/ObjectPool/src/DefaultObjectPool.cs#L69C9-L70C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/ObjectPool/src/DefaultObjectPool.cs#L69C9-L70C6" } ], "DocsId": "T:Microsoft.Extensions.ObjectPool.DefaultObjectPool`1", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/ObjectPool/src/DefaultObjectPool.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/ObjectPool/src/DefaultObjectPool.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.ObjectPool.DefaultObjectPoolProvider.Create``1(Microsoft.Extensions.ObjectPool.IPooledObjectPolicy{``0})", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/ObjectPool/src/DefaultObjectPoolProvider.cs#L22C9-L29C66" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/ObjectPool/src/DefaultObjectPoolProvider.cs#L22C9-L29C66" }, { "DocsId": "M:Microsoft.Extensions.ObjectPool.DefaultObjectPoolProvider.#ctor", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/ObjectPool/src/DefaultObjectPoolProvider.cs#L17C48-L17C78" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/ObjectPool/src/DefaultObjectPoolProvider.cs#L17C48-L17C78" }, { "DocsId": "P:Microsoft.Extensions.ObjectPool.DefaultObjectPoolProvider.MaximumRetained", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/ObjectPool/src/DefaultObjectPoolProvider.cs#L17C34-L17C38" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/ObjectPool/src/DefaultObjectPoolProvider.cs#L17C34-L17C38" } ], "DocsId": "T:Microsoft.Extensions.ObjectPool.DefaultObjectPoolProvider", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/ObjectPool/src/DefaultObjectPoolProvider.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/ObjectPool/src/DefaultObjectPoolProvider.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.ObjectPool.DefaultPooledObjectPolicy`1.Create", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/ObjectPool/src/DefaultPooledObjectPolicy.cs#L15C9-L15C24" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/ObjectPool/src/DefaultPooledObjectPolicy.cs#L15C9-L15C24" }, { "DocsId": "M:Microsoft.Extensions.ObjectPool.DefaultPooledObjectPolicy`1.Return(`0)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/ObjectPool/src/DefaultPooledObjectPolicy.cs#L21C9-L26C21" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/ObjectPool/src/DefaultPooledObjectPolicy.cs#L21C9-L26C21" }, { "DocsId": "M:Microsoft.Extensions.ObjectPool.DefaultPooledObjectPolicy`1.#ctor", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/ObjectPool/src/DefaultPooledObjectPolicy.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/ObjectPool/src/DefaultPooledObjectPolicy.cs" } ], "DocsId": "T:Microsoft.Extensions.ObjectPool.DefaultPooledObjectPolicy`1", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/ObjectPool/src/DefaultPooledObjectPolicy.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/ObjectPool/src/DefaultPooledObjectPolicy.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.ObjectPool.IPooledObjectPolicy`1.Create", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/ObjectPool/src/IPooledObjectPolicy.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/ObjectPool/src/IPooledObjectPolicy.cs" }, { "DocsId": "M:Microsoft.Extensions.ObjectPool.IPooledObjectPolicy`1.Return(`0)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/ObjectPool/src/IPooledObjectPolicy.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/ObjectPool/src/IPooledObjectPolicy.cs" } ], "DocsId": "T:Microsoft.Extensions.ObjectPool.IPooledObjectPolicy`1", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/ObjectPool/src/IPooledObjectPolicy.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/ObjectPool/src/IPooledObjectPolicy.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.ObjectPool.IResettable.TryReset", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/ObjectPool/src/IResettable.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/ObjectPool/src/IResettable.cs" } ], "DocsId": "T:Microsoft.Extensions.ObjectPool.IResettable", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/ObjectPool/src/IResettable.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/ObjectPool/src/IResettable.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.ObjectPool.LeakTrackingObjectPool`1.#ctor(Microsoft.Extensions.ObjectPool.ObjectPool{`0})", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/ObjectPool/src/LeakTrackingObjectPool.cs#L24C5-L36C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/ObjectPool/src/LeakTrackingObjectPool.cs#L24C5-L36C6" }, { "DocsId": "M:Microsoft.Extensions.ObjectPool.LeakTrackingObjectPool`1.Get", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/ObjectPool/src/LeakTrackingObjectPool.cs#L41C9-L43C22" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/ObjectPool/src/LeakTrackingObjectPool.cs#L41C9-L43C22" }, { "DocsId": "M:Microsoft.Extensions.ObjectPool.LeakTrackingObjectPool`1.Return(`0)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/ObjectPool/src/LeakTrackingObjectPool.cs#L49C9-L56C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/ObjectPool/src/LeakTrackingObjectPool.cs#L49C9-L56C6" } ], "DocsId": "T:Microsoft.Extensions.ObjectPool.LeakTrackingObjectPool`1", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/ObjectPool/src/LeakTrackingObjectPool.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/ObjectPool/src/LeakTrackingObjectPool.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.ObjectPool.LeakTrackingObjectPoolProvider.#ctor(Microsoft.Extensions.ObjectPool.ObjectPoolProvider)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/ObjectPool/src/LeakTrackingObjectPoolProvider.cs#L23C5-L28C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/ObjectPool/src/LeakTrackingObjectPoolProvider.cs#L23C5-L28C6" }, { "DocsId": "M:Microsoft.Extensions.ObjectPool.LeakTrackingObjectPoolProvider.Create``1(Microsoft.Extensions.ObjectPool.IPooledObjectPolicy{``0})", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/ObjectPool/src/LeakTrackingObjectPoolProvider.cs#L33C9-L34C53" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/ObjectPool/src/LeakTrackingObjectPoolProvider.cs#L33C9-L34C53" } ], "DocsId": "T:Microsoft.Extensions.ObjectPool.LeakTrackingObjectPoolProvider", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/ObjectPool/src/LeakTrackingObjectPoolProvider.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/ObjectPool/src/LeakTrackingObjectPoolProvider.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.ObjectPool.ObjectPool`1.Get", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/ObjectPool/src/ObjectPool.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/ObjectPool/src/ObjectPool.cs" }, { "DocsId": "M:Microsoft.Extensions.ObjectPool.ObjectPool`1.Return(`0)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/ObjectPool/src/ObjectPool.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/ObjectPool/src/ObjectPool.cs" }, { "DocsId": "M:Microsoft.Extensions.ObjectPool.ObjectPool`1.#ctor", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/ObjectPool/src/ObjectPool.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/ObjectPool/src/ObjectPool.cs" } ], "DocsId": "T:Microsoft.Extensions.ObjectPool.ObjectPool`1", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/ObjectPool/src/ObjectPool.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/ObjectPool/src/ObjectPool.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.ObjectPool.ObjectPool.Create``1(Microsoft.Extensions.ObjectPool.IPooledObjectPolicy{``0})", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/ObjectPool/src/ObjectPool.cs#L33C9-L34C78" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/ObjectPool/src/ObjectPool.cs#L33C9-L34C78" } ], "DocsId": "T:Microsoft.Extensions.ObjectPool.ObjectPool", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/ObjectPool/src/ObjectPool.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/ObjectPool/src/ObjectPool.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.ObjectPool.ObjectPoolProvider.Create``1", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/ObjectPool/src/ObjectPoolProvider.cs#L17C9-L17C62" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/ObjectPool/src/ObjectPoolProvider.cs#L17C9-L17C62" }, { "DocsId": "M:Microsoft.Extensions.ObjectPool.ObjectPoolProvider.Create``1(Microsoft.Extensions.ObjectPool.IPooledObjectPolicy{``0})", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/ObjectPool/src/ObjectPoolProvider.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/ObjectPool/src/ObjectPoolProvider.cs" }, { "DocsId": "M:Microsoft.Extensions.ObjectPool.ObjectPoolProvider.#ctor", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/ObjectPool/src/ObjectPoolProvider.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/ObjectPool/src/ObjectPoolProvider.cs" } ], "DocsId": "T:Microsoft.Extensions.ObjectPool.ObjectPoolProvider", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/ObjectPool/src/ObjectPoolProvider.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/ObjectPool/src/ObjectPoolProvider.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.ObjectPool.ObjectPoolProviderExtensions.CreateStringBuilderPool(Microsoft.Extensions.ObjectPool.ObjectPoolProvider)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/ObjectPool/src/ObjectPoolProviderExtensions.cs#L20C9-L20C86" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/ObjectPool/src/ObjectPoolProviderExtensions.cs#L20C9-L20C86" }, { "DocsId": "M:Microsoft.Extensions.ObjectPool.ObjectPoolProviderExtensions.CreateStringBuilderPool(Microsoft.Extensions.ObjectPool.ObjectPoolProvider,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/ObjectPool/src/ObjectPoolProviderExtensions.cs#L36C9-L42C55" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/ObjectPool/src/ObjectPoolProviderExtensions.cs#L36C9-L42C55" } ], "DocsId": "T:Microsoft.Extensions.ObjectPool.ObjectPoolProviderExtensions", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/ObjectPool/src/ObjectPoolProviderExtensions.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/ObjectPool/src/ObjectPoolProviderExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.ObjectPool.PooledObjectPolicy`1.Create", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/ObjectPool/src/PooledObjectPolicy.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/ObjectPool/src/PooledObjectPolicy.cs" }, { "DocsId": "M:Microsoft.Extensions.ObjectPool.PooledObjectPolicy`1.Return(`0)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/ObjectPool/src/PooledObjectPolicy.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/ObjectPool/src/PooledObjectPolicy.cs" }, { "DocsId": "M:Microsoft.Extensions.ObjectPool.PooledObjectPolicy`1.#ctor", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/ObjectPool/src/PooledObjectPolicy.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/ObjectPool/src/PooledObjectPolicy.cs" } ], "DocsId": "T:Microsoft.Extensions.ObjectPool.PooledObjectPolicy`1", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/ObjectPool/src/PooledObjectPolicy.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/ObjectPool/src/PooledObjectPolicy.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.ObjectPool.StringBuilderPooledObjectPolicy.Create", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/ObjectPool/src/StringBuilderPooledObjectPolicy.cs#L29C9-L29C51" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/ObjectPool/src/StringBuilderPooledObjectPolicy.cs#L29C9-L29C51" }, { "DocsId": "M:Microsoft.Extensions.ObjectPool.StringBuilderPooledObjectPolicy.Return(System.Text.StringBuilder)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/ObjectPool/src/StringBuilderPooledObjectPolicy.cs#L35C9-L42C21" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/ObjectPool/src/StringBuilderPooledObjectPolicy.cs#L35C9-L42C21" }, { "DocsId": "M:Microsoft.Extensions.ObjectPool.StringBuilderPooledObjectPolicy.#ctor", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/ObjectPool/src/StringBuilderPooledObjectPolicy.cs#L17C48-L24C64" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/ObjectPool/src/StringBuilderPooledObjectPolicy.cs#L17C48-L24C64" }, { "DocsId": "P:Microsoft.Extensions.ObjectPool.StringBuilderPooledObjectPolicy.InitialCapacity", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/ObjectPool/src/StringBuilderPooledObjectPolicy.cs#L17C34-L17C38" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/ObjectPool/src/StringBuilderPooledObjectPolicy.cs#L17C34-L17C38" }, { "DocsId": "P:Microsoft.Extensions.ObjectPool.StringBuilderPooledObjectPolicy.MaximumRetainedCapacity", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/ObjectPool/src/StringBuilderPooledObjectPolicy.cs#L24C42-L24C46" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/ObjectPool/src/StringBuilderPooledObjectPolicy.cs#L24C42-L24C46" } ], "DocsId": "T:Microsoft.Extensions.ObjectPool.StringBuilderPooledObjectPolicy", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/ObjectPool/src/StringBuilderPooledObjectPolicy.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/ObjectPool/src/StringBuilderPooledObjectPolicy.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Options.ConfigurationExtensions.json b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Options.ConfigurationExtensions.json index 3589ee603fc..c1998098836 100644 --- a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Options.ConfigurationExtensions.json +++ b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Options.ConfigurationExtensions.json @@ -1,93 +1,92 @@ { "Assembly": "Microsoft.Extensions.Options.ConfigurationExtensions", - "GUID": "DCDD7A90709C4185A3582FA44A2EF5D1FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "355DA37ACD8E4E4A86E5B3F2582FD29EFFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.OptionsBuilderConfigurationExtensions.Bind``1(Microsoft.Extensions.Options.OptionsBuilder{``0},Microsoft.Extensions.Configuration.IConfiguration)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options.ConfigurationExtensions/src/OptionsBuilderConfigurationExtensions.cs#L29C16-L29C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options.ConfigurationExtensions/src/OptionsBuilderConfigurationExtensions.cs#L29C16-L29C53" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.OptionsBuilderConfigurationExtensions.Bind``1(Microsoft.Extensions.Options.OptionsBuilder{``0},Microsoft.Extensions.Configuration.IConfiguration,System.Action{Microsoft.Extensions.Configuration.BinderOptions})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options.ConfigurationExtensions/src/OptionsBuilderConfigurationExtensions.cs#L43C13-L46C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options.ConfigurationExtensions/src/OptionsBuilderConfigurationExtensions.cs#L43C13-L46C35" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.OptionsBuilderConfigurationExtensions.BindConfiguration``1(Microsoft.Extensions.Options.OptionsBuilder{``0},System.String,System.Action{Microsoft.Extensions.Configuration.BinderOptions})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options.ConfigurationExtensions/src/OptionsBuilderConfigurationExtensions.cs#L70C13-L86C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options.ConfigurationExtensions/src/OptionsBuilderConfigurationExtensions.cs#L16707566C0-L86C35" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.OptionsBuilderConfigurationExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options.ConfigurationExtensions/src/OptionsBuilderConfigurationExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options.ConfigurationExtensions/src/OptionsBuilderConfigurationExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.OptionsConfigurationServiceCollectionExtensions.Configure``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,Microsoft.Extensions.Configuration.IConfiguration)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options.ConfigurationExtensions/src/OptionsConfigurationServiceCollectionExtensions.cs#L26C16-L26C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options.ConfigurationExtensions/src/OptionsConfigurationServiceCollectionExtensions.cs#L26C16-L26C81" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.OptionsConfigurationServiceCollectionExtensions.Configure``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.String,Microsoft.Extensions.Configuration.IConfiguration)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options.ConfigurationExtensions/src/OptionsConfigurationServiceCollectionExtensions.cs#L39C16-L39C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options.ConfigurationExtensions/src/OptionsConfigurationServiceCollectionExtensions.cs#L39C16-L39C68" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.OptionsConfigurationServiceCollectionExtensions.Configure``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,Microsoft.Extensions.Configuration.IConfiguration,System.Action{Microsoft.Extensions.Configuration.BinderOptions})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options.ConfigurationExtensions/src/OptionsConfigurationServiceCollectionExtensions.cs#L53C16-L53C98" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options.ConfigurationExtensions/src/OptionsConfigurationServiceCollectionExtensions.cs#L53C16-L53C98" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.OptionsConfigurationServiceCollectionExtensions.Configure``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.String,Microsoft.Extensions.Configuration.IConfiguration,System.Action{Microsoft.Extensions.Configuration.BinderOptions})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options.ConfigurationExtensions/src/OptionsConfigurationServiceCollectionExtensions.cs#L69C13-L74C156" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options.ConfigurationExtensions/src/OptionsConfigurationServiceCollectionExtensions.cs#L69C13-L74C156" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.OptionsConfigurationServiceCollectionExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options.ConfigurationExtensions/src/OptionsConfigurationServiceCollectionExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options.ConfigurationExtensions/src/OptionsConfigurationServiceCollectionExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.ConfigurationChangeTokenSource`1.#ctor(Microsoft.Extensions.Configuration.IConfiguration)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options.ConfigurationExtensions/src/ConfigurationChangeTokenSource.cs#L23C72-L25C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options.ConfigurationExtensions/src/ConfigurationChangeTokenSource.cs#L23C72-L25C10" }, { "DocsId": "M:Microsoft.Extensions.Options.ConfigurationChangeTokenSource`1.#ctor(System.String,Microsoft.Extensions.Configuration.IConfiguration)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options.ConfigurationExtensions/src/ConfigurationChangeTokenSource.cs#L32C9-L38C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options.ConfigurationExtensions/src/ConfigurationChangeTokenSource.cs#L32C9-L38C10" }, { "DocsId": "M:Microsoft.Extensions.Options.ConfigurationChangeTokenSource`1.GetChangeToken", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options.ConfigurationExtensions/src/ConfigurationChangeTokenSource.cs#L51C13-L51C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options.ConfigurationExtensions/src/ConfigurationChangeTokenSource.cs#L51C13-L51C45" }, { "DocsId": "P:Microsoft.Extensions.Options.ConfigurationChangeTokenSource`1.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options.ConfigurationExtensions/src/ConfigurationChangeTokenSource.cs#L43C30-L43C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options.ConfigurationExtensions/src/ConfigurationChangeTokenSource.cs#L43C30-L43C34" } ], "DocsId": "T:Microsoft.Extensions.Options.ConfigurationChangeTokenSource`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options.ConfigurationExtensions/src/ConfigurationChangeTokenSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options.ConfigurationExtensions/src/ConfigurationChangeTokenSource.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.ConfigureFromConfigurationOptions`1.#ctor(Microsoft.Extensions.Configuration.IConfiguration)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options.ConfigurationExtensions/src/ConfigureFromConfigurationOptions.cs#L28C15-L31C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options.ConfigurationExtensions/src/ConfigureFromConfigurationOptions.cs#L16707566C0-L31C10" } ], "DocsId": "T:Microsoft.Extensions.Options.ConfigureFromConfigurationOptions`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options.ConfigurationExtensions/src/ConfigureFromConfigurationOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options.ConfigurationExtensions/src/ConfigureFromConfigurationOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.NamedConfigureFromConfigurationOptions`1.#ctor(System.String,Microsoft.Extensions.Configuration.IConfiguration)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options.ConfigurationExtensions/src/NamedConfigureFromConfigurationOptions.cs#L26C15-L27C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options.ConfigurationExtensions/src/NamedConfigureFromConfigurationOptions.cs#L26C15-L27C12" }, { "DocsId": "M:Microsoft.Extensions.Options.NamedConfigureFromConfigurationOptions`1.#ctor(System.String,Microsoft.Extensions.Configuration.IConfiguration,System.Action{Microsoft.Extensions.Configuration.BinderOptions})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options.ConfigurationExtensions/src/NamedConfigureFromConfigurationOptions.cs#L38C15-L41C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options.ConfigurationExtensions/src/NamedConfigureFromConfigurationOptions.cs#L16707566C0-L41C10" } ], "DocsId": "T:Microsoft.Extensions.Options.NamedConfigureFromConfigurationOptions`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options.ConfigurationExtensions/src/NamedConfigureFromConfigurationOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options.ConfigurationExtensions/src/NamedConfigureFromConfigurationOptions.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Options.Contextual.json b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Options.Contextual.json index 530f101d016..c3e7e3cefce 100644 --- a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Options.Contextual.json +++ b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Options.Contextual.json @@ -1,121 +1,120 @@ { "Assembly": "Microsoft.Extensions.Options.Contextual", - "GUID": "A3164448E68544E299EB56A44709DB27FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "D862CDCCC2CC41E18AA1AA955A0BAECBFFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.Contextual.IContextualOptions`2.GetAsync(`1@|System.Runtime.InteropServices.InAttribute,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Options.Contextual/IContextualOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Options.Contextual/IContextualOptions.cs" } ], "DocsId": "T:Microsoft.Extensions.Options.Contextual.IContextualOptions`2", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Options.Contextual/IContextualOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Options.Contextual/IContextualOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.Contextual.INamedContextualOptions`2.GetAsync(System.String,`1@|System.Runtime.InteropServices.InAttribute,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Options.Contextual/INamedContextualOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Options.Contextual/INamedContextualOptions.cs" } ], "DocsId": "T:Microsoft.Extensions.Options.Contextual.INamedContextualOptions`2", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Options.Contextual/INamedContextualOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Options.Contextual/INamedContextualOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.Contextual.IOptionsContext.PopulateReceiver``1(``0)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Options.Contextual/IOptionsContext.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Options.Contextual/IOptionsContext.cs" } ], "DocsId": "T:Microsoft.Extensions.Options.Contextual.IOptionsContext", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Options.Contextual/IOptionsContext.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Options.Contextual/IOptionsContext.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.Contextual.OptionsContextAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Options.Contextual/OptionsContextAttribute.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Options.Contextual/OptionsContextAttribute.cs" } ], "DocsId": "T:Microsoft.Extensions.Options.Contextual.OptionsContextAttribute", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Options.Contextual/OptionsContextAttribute.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Options.Contextual/OptionsContextAttribute.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.Contextual.Provider.IConfigureContextualOptions`1.Configure(`0)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Options.Contextual/Provider/IConfigureContextualOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Options.Contextual/Provider/IConfigureContextualOptions.cs" } ], "DocsId": "T:Microsoft.Extensions.Options.Contextual.Provider.IConfigureContextualOptions`1", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Options.Contextual/Provider/IConfigureContextualOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Options.Contextual/Provider/IConfigureContextualOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.Contextual.Provider.ILoadContextualOptions`1.LoadAsync``1(System.String,``0@|System.Runtime.InteropServices.InAttribute,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Options.Contextual/Provider/ILoadContextualOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Options.Contextual/Provider/ILoadContextualOptions.cs" } ], "DocsId": "T:Microsoft.Extensions.Options.Contextual.Provider.ILoadContextualOptions`1", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Options.Contextual/Provider/ILoadContextualOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Options.Contextual/Provider/ILoadContextualOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.Contextual.Provider.IOptionsContextReceiver.Receive``1(System.String,``0)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Options.Contextual/Provider/IOptionsContextReceiver.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Options.Contextual/Provider/IOptionsContextReceiver.cs" } ], "DocsId": "T:Microsoft.Extensions.Options.Contextual.Provider.IOptionsContextReceiver", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Options.Contextual/Provider/IOptionsContextReceiver.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Options.Contextual/Provider/IOptionsContextReceiver.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.Contextual.Provider.NullConfigureContextualOptions.GetInstance``1", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Options.Contextual/Provider/NullConfigureContextualOptions.cs#L19C12-L19C61" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Options.Contextual/Provider/NullConfigureContextualOptions.cs#L19C12-L19C61" } ], "DocsId": "T:Microsoft.Extensions.Options.Contextual.Provider.NullConfigureContextualOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Options.Contextual/Provider/NullConfigureContextualOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Options.Contextual/Provider/NullConfigureContextualOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ContextualOptionsServiceCollectionExtensions.AddContextualOptions(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Options.Contextual/ContextualOptionsServiceCollectionExtensions.cs#L27C9-L33C25" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Options.Contextual/ContextualOptionsServiceCollectionExtensions.cs#L27C9-L33C25" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ContextualOptionsServiceCollectionExtensions.Configure``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Func{Microsoft.Extensions.Options.Contextual.IOptionsContext,System.Threading.CancellationToken,System.Threading.Tasks.ValueTask{Microsoft.Extensions.Options.Contextual.Provider.IConfigureContextualOptions{``0}}})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Options.Contextual/ContextualOptionsServiceCollectionExtensions.cs#L47C12-L47C86" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Options.Contextual/ContextualOptionsServiceCollectionExtensions.cs#L47C12-L47C86" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ContextualOptionsServiceCollectionExtensions.Configure``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.String,System.Func{Microsoft.Extensions.Options.Contextual.IOptionsContext,System.Threading.CancellationToken,System.Threading.Tasks.ValueTask{Microsoft.Extensions.Options.Contextual.Provider.IConfigureContextualOptions{``0}}})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Options.Contextual/ContextualOptionsServiceCollectionExtensions.cs#L62C12-L67C48" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Options.Contextual/ContextualOptionsServiceCollectionExtensions.cs#L62C12-L67C48" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ContextualOptionsServiceCollectionExtensions.Configure``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{Microsoft.Extensions.Options.Contextual.IOptionsContext,``0})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Options.Contextual/ContextualOptionsServiceCollectionExtensions.cs#L80C12-L80C84" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Options.Contextual/ContextualOptionsServiceCollectionExtensions.cs#L80C12-L80C84" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ContextualOptionsServiceCollectionExtensions.Configure``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.String,System.Action{Microsoft.Extensions.Options.Contextual.IOptionsContext,``0})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Options.Contextual/ContextualOptionsServiceCollectionExtensions.cs#L95C9-L100C117" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Options.Contextual/ContextualOptionsServiceCollectionExtensions.cs#L16707566C0-L100C117" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ContextualOptionsServiceCollectionExtensions.ConfigureAll``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Func{Microsoft.Extensions.Options.Contextual.IOptionsContext,System.Threading.CancellationToken,System.Threading.Tasks.ValueTask{Microsoft.Extensions.Options.Contextual.Provider.IConfigureContextualOptions{``0}}})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Options.Contextual/ContextualOptionsServiceCollectionExtensions.cs#L114C12-L114C69" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Options.Contextual/ContextualOptionsServiceCollectionExtensions.cs#L114C12-L114C69" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ContextualOptionsServiceCollectionExtensions.ConfigureAll``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{Microsoft.Extensions.Options.Contextual.IOptionsContext,``0})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Options.Contextual/ContextualOptionsServiceCollectionExtensions.cs#L125C12-L125C67" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Options.Contextual/ContextualOptionsServiceCollectionExtensions.cs#L125C12-L125C67" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.ContextualOptionsServiceCollectionExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Options.Contextual/ContextualOptionsServiceCollectionExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Options.Contextual/ContextualOptionsServiceCollectionExtensions.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Options.DataAnnotations.json b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Options.DataAnnotations.json index 26d25b0d9de..04100ec2945 100644 --- a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Options.DataAnnotations.json +++ b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Options.DataAnnotations.json @@ -1,35 +1,34 @@ { "Assembly": "Microsoft.Extensions.Options.DataAnnotations", - "GUID": "A3E65D6E02AE4A35B8A7F62B69763286FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "94FB649D865643E8A6D65B5907038853FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.OptionsBuilderDataAnnotationsExtensions.ValidateDataAnnotations``1(Microsoft.Extensions.Options.OptionsBuilder{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options.DataAnnotations/src/OptionsBuilderDataAnnotationsExtensions.cs#L24C13-L25C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options.DataAnnotations/src/OptionsBuilderDataAnnotationsExtensions.cs#L24C13-L25C35" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.OptionsBuilderDataAnnotationsExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options.DataAnnotations/src/OptionsBuilderDataAnnotationsExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options.DataAnnotations/src/OptionsBuilderDataAnnotationsExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.DataAnnotationValidateOptions`1.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options.DataAnnotations/src/DataAnnotationValidateOptions.cs#L28C9-L31C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options.DataAnnotations/src/DataAnnotationValidateOptions.cs#L28C9-L31C10" }, { "DocsId": "M:Microsoft.Extensions.Options.DataAnnotationValidateOptions`1.Validate(System.String,`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options.DataAnnotations/src/DataAnnotationValidateOptions.cs#L49C13-L69C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options.DataAnnotations/src/DataAnnotationValidateOptions.cs#L49C13-L69C55" }, { "DocsId": "P:Microsoft.Extensions.Options.DataAnnotationValidateOptions`1.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options.DataAnnotations/src/DataAnnotationValidateOptions.cs#L36C31-L36C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options.DataAnnotations/src/DataAnnotationValidateOptions.cs#L36C31-L36C35" } ], "DocsId": "T:Microsoft.Extensions.Options.DataAnnotationValidateOptions`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options.DataAnnotations/src/DataAnnotationValidateOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options.DataAnnotations/src/DataAnnotationValidateOptions.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Options.json b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Options.json index 780a8b35f7e..f3eec563e48 100644 --- a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Options.json +++ b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Options.json @@ -1,1271 +1,1270 @@ { "Assembly": "Microsoft.Extensions.Options", - "GUID": "68594A2D67434F54BD43E64C4802B4FEFFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "2801B62209C74A1C8757A9BD4E4E82B2FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.OptionsBuilderExtensions.ValidateOnStart``1(Microsoft.Extensions.Options.OptionsBuilder{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilderExtensions.cs#L26C13-L37C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilderExtensions.cs#L16707566C0-L37C35" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.OptionsBuilderExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilderExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilderExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.OptionsServiceCollectionExtensions.AddOptions(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsServiceCollectionExtensions.cs#L24C13-L31C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsServiceCollectionExtensions.cs#L24C13-L31C29" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.OptionsServiceCollectionExtensions.AddOptionsWithValidateOnStart``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsServiceCollectionExtensions.cs#L50C13-L50C114" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsServiceCollectionExtensions.cs#L50C13-L50C114" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.OptionsServiceCollectionExtensions.AddOptionsWithValidateOnStart``2(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsServiceCollectionExtensions.cs#L72C13-L73C114" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsServiceCollectionExtensions.cs#L72C13-L73C114" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.OptionsServiceCollectionExtensions.Configure``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsServiceCollectionExtensions.cs#L84C16-L84C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsServiceCollectionExtensions.cs#L84C16-L84C81" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.OptionsServiceCollectionExtensions.Configure``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.String,System.Action{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsServiceCollectionExtensions.cs#L98C13-L103C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsServiceCollectionExtensions.cs#L98C13-L103C29" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.OptionsServiceCollectionExtensions.ConfigureAll``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsServiceCollectionExtensions.cs#L114C16-L114C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsServiceCollectionExtensions.cs#L114C16-L114C82" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.OptionsServiceCollectionExtensions.PostConfigure``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsServiceCollectionExtensions.cs#L125C16-L125C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsServiceCollectionExtensions.cs#L125C16-L125C85" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.OptionsServiceCollectionExtensions.PostConfigure``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.String,System.Action{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsServiceCollectionExtensions.cs#L139C13-L144C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsServiceCollectionExtensions.cs#L139C13-L144C29" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.OptionsServiceCollectionExtensions.PostConfigureAll``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsServiceCollectionExtensions.cs#L156C16-L156C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsServiceCollectionExtensions.cs#L156C16-L156C86" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.OptionsServiceCollectionExtensions.ConfigureOptions``1(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsServiceCollectionExtensions.cs#L169C20-L169C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsServiceCollectionExtensions.cs#L169C20-L169C72" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.OptionsServiceCollectionExtensions.ConfigureOptions(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsServiceCollectionExtensions.cs#L216C13-L230C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsServiceCollectionExtensions.cs#L216C13-L230C29" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.OptionsServiceCollectionExtensions.ConfigureOptions(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsServiceCollectionExtensions.cs#L243C13-L258C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsServiceCollectionExtensions.cs#L243C13-L258C29" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.OptionsServiceCollectionExtensions.AddOptions``1(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsServiceCollectionExtensions.cs#L268C16-L268C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsServiceCollectionExtensions.cs#L268C16-L268C74" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.OptionsServiceCollectionExtensions.AddOptions``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsServiceCollectionExtensions.cs#L280C13-L283C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsServiceCollectionExtensions.cs#L280C13-L283C65" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.OptionsServiceCollectionExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsServiceCollectionExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsServiceCollectionExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.ConfigureNamedOptions`1.#ctor(System.String,System.Action{`0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L19C9-L23C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L19C9-L23C10" }, { "DocsId": "M:Microsoft.Extensions.Options.ConfigureNamedOptions`1.Configure(System.String,`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L42C13-L49C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L42C13-L49C10" }, { "DocsId": "M:Microsoft.Extensions.Options.ConfigureNamedOptions`1.Configure(`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L55C52-L55C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L55C52-L55C91" }, { "DocsId": "P:Microsoft.Extensions.Options.ConfigureNamedOptions`1.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L28C31-L28C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L28C31-L28C35" }, { "DocsId": "P:Microsoft.Extensions.Options.ConfigureNamedOptions`1.Action", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L33C43-L33C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L33C43-L33C47" } ], "DocsId": "T:Microsoft.Extensions.Options.ConfigureNamedOptions`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.ConfigureNamedOptions`2.#ctor(System.String,`1,System.Action{`0,`1})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L73C9-L78C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L73C9-L78C10" }, { "DocsId": "M:Microsoft.Extensions.Options.ConfigureNamedOptions`2.Configure(System.String,`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L102C13-L109C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L102C13-L109C10" }, { "DocsId": "M:Microsoft.Extensions.Options.ConfigureNamedOptions`2.Configure(`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L115C52-L115C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L115C52-L115C91" }, { "DocsId": "P:Microsoft.Extensions.Options.ConfigureNamedOptions`2.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L83C31-L83C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L83C31-L83C35" }, { "DocsId": "P:Microsoft.Extensions.Options.ConfigureNamedOptions`2.Action", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L88C49-L88C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L88C49-L88C53" }, { "DocsId": "P:Microsoft.Extensions.Options.ConfigureNamedOptions`2.Dependency", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L93C34-L93C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L93C34-L93C38" } ], "DocsId": "T:Microsoft.Extensions.Options.ConfigureNamedOptions`2", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.ConfigureNamedOptions`3.#ctor(System.String,`1,`2,System.Action{`0,`1,`2})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L136C9-L142C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L136C9-L142C10" }, { "DocsId": "M:Microsoft.Extensions.Options.ConfigureNamedOptions`3.Configure(System.String,`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L171C13-L178C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L171C13-L178C10" }, { "DocsId": "M:Microsoft.Extensions.Options.ConfigureNamedOptions`3.Configure(`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L184C52-L184C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L184C52-L184C91" }, { "DocsId": "P:Microsoft.Extensions.Options.ConfigureNamedOptions`3.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L147C31-L147C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L147C31-L147C35" }, { "DocsId": "P:Microsoft.Extensions.Options.ConfigureNamedOptions`3.Action", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L152C57-L152C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L152C57-L152C61" }, { "DocsId": "P:Microsoft.Extensions.Options.ConfigureNamedOptions`3.Dependency1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L157C36-L157C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L157C36-L157C40" }, { "DocsId": "P:Microsoft.Extensions.Options.ConfigureNamedOptions`3.Dependency2", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L162C36-L162C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L162C36-L162C40" } ], "DocsId": "T:Microsoft.Extensions.Options.ConfigureNamedOptions`3", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.ConfigureNamedOptions`4.#ctor(System.String,`1,`2,`3,System.Action{`0,`1,`2,`3})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L208C9-L215C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L208C9-L215C10" }, { "DocsId": "M:Microsoft.Extensions.Options.ConfigureNamedOptions`4.Configure(System.String,`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L249C13-L256C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L249C13-L256C10" }, { "DocsId": "M:Microsoft.Extensions.Options.ConfigureNamedOptions`4.Configure(`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L262C52-L262C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L262C52-L262C91" }, { "DocsId": "P:Microsoft.Extensions.Options.ConfigureNamedOptions`4.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L220C31-L220C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L220C31-L220C35" }, { "DocsId": "P:Microsoft.Extensions.Options.ConfigureNamedOptions`4.Action", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L225C64-L225C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L225C64-L225C68" }, { "DocsId": "P:Microsoft.Extensions.Options.ConfigureNamedOptions`4.Dependency1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L230C36-L230C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L230C36-L230C40" }, { "DocsId": "P:Microsoft.Extensions.Options.ConfigureNamedOptions`4.Dependency2", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L235C36-L235C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L235C36-L235C40" }, { "DocsId": "P:Microsoft.Extensions.Options.ConfigureNamedOptions`4.Dependency3", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L240C36-L240C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L240C36-L240C40" } ], "DocsId": "T:Microsoft.Extensions.Options.ConfigureNamedOptions`4", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.ConfigureNamedOptions`5.#ctor(System.String,`1,`2,`3,`4,System.Action{`0,`1,`2,`3,`4})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L289C9-L297C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L289C9-L297C10" }, { "DocsId": "M:Microsoft.Extensions.Options.ConfigureNamedOptions`5.Configure(System.String,`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L336C13-L343C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L336C13-L343C10" }, { "DocsId": "M:Microsoft.Extensions.Options.ConfigureNamedOptions`5.Configure(`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L349C52-L349C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L349C52-L349C91" }, { "DocsId": "P:Microsoft.Extensions.Options.ConfigureNamedOptions`5.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L302C31-L302C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L302C31-L302C35" }, { "DocsId": "P:Microsoft.Extensions.Options.ConfigureNamedOptions`5.Action", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L307C71-L307C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L307C71-L307C75" }, { "DocsId": "P:Microsoft.Extensions.Options.ConfigureNamedOptions`5.Dependency1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L312C36-L312C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L312C36-L312C40" }, { "DocsId": "P:Microsoft.Extensions.Options.ConfigureNamedOptions`5.Dependency2", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L317C36-L317C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L317C36-L317C40" }, { "DocsId": "P:Microsoft.Extensions.Options.ConfigureNamedOptions`5.Dependency3", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L322C36-L322C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L322C36-L322C40" }, { "DocsId": "P:Microsoft.Extensions.Options.ConfigureNamedOptions`5.Dependency4", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L327C36-L327C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L327C36-L327C40" } ], "DocsId": "T:Microsoft.Extensions.Options.ConfigureNamedOptions`5", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.ConfigureNamedOptions`6.#ctor(System.String,`1,`2,`3,`4,`5,System.Action{`0,`1,`2,`3,`4,`5})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L379C9-L388C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L379C9-L388C10" }, { "DocsId": "M:Microsoft.Extensions.Options.ConfigureNamedOptions`6.Configure(System.String,`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L432C13-L439C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L432C13-L439C10" }, { "DocsId": "M:Microsoft.Extensions.Options.ConfigureNamedOptions`6.Configure(`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L445C52-L445C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L445C52-L445C91" }, { "DocsId": "P:Microsoft.Extensions.Options.ConfigureNamedOptions`6.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L393C31-L393C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L393C31-L393C35" }, { "DocsId": "P:Microsoft.Extensions.Options.ConfigureNamedOptions`6.Action", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L398C78-L398C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L398C78-L398C82" }, { "DocsId": "P:Microsoft.Extensions.Options.ConfigureNamedOptions`6.Dependency1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L403C36-L403C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L403C36-L403C40" }, { "DocsId": "P:Microsoft.Extensions.Options.ConfigureNamedOptions`6.Dependency2", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L408C36-L408C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L408C36-L408C40" }, { "DocsId": "P:Microsoft.Extensions.Options.ConfigureNamedOptions`6.Dependency3", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L413C36-L413C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L413C36-L413C40" }, { "DocsId": "P:Microsoft.Extensions.Options.ConfigureNamedOptions`6.Dependency4", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L418C36-L418C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L418C36-L418C40" }, { "DocsId": "P:Microsoft.Extensions.Options.ConfigureNamedOptions`6.Dependency5", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L423C36-L423C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L423C36-L423C40" } ], "DocsId": "T:Microsoft.Extensions.Options.ConfigureNamedOptions`6", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.ConfigureOptions`1.#ctor(System.Action{`0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureOptions.cs#L18C9-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureOptions.cs#L18C9-L21C10" }, { "DocsId": "M:Microsoft.Extensions.Options.ConfigureOptions`1.Configure(`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureOptions.cs#L34C13-L37C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureOptions.cs#L34C13-L37C10" }, { "DocsId": "P:Microsoft.Extensions.Options.ConfigureOptions`1.Action", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureOptions.cs#L26C43-L26C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureOptions.cs#L26C43-L26C47" } ], "DocsId": "T:Microsoft.Extensions.Options.ConfigureOptions`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.IConfigureNamedOptions`1.Configure(System.String,`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/IConfigureNamedOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/IConfigureNamedOptions.cs" } ], "DocsId": "T:Microsoft.Extensions.Options.IConfigureNamedOptions`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/IConfigureNamedOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/IConfigureNamedOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.IConfigureOptions`1.Configure(`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/IConfigureOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/IConfigureOptions.cs" } ], "DocsId": "T:Microsoft.Extensions.Options.IConfigureOptions`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/IConfigureOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/IConfigureOptions.cs" }, { "Members": [ { "DocsId": "P:Microsoft.Extensions.Options.IOptions`1.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/IOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/IOptions.cs" } ], "DocsId": "T:Microsoft.Extensions.Options.IOptions`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/IOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/IOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.IOptionsChangeTokenSource`1.GetChangeToken", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/IOptionsChangeTokenSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/IOptionsChangeTokenSource.cs" }, { "DocsId": "P:Microsoft.Extensions.Options.IOptionsChangeTokenSource`1.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/IOptionsChangeTokenSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/IOptionsChangeTokenSource.cs" } ], "DocsId": "T:Microsoft.Extensions.Options.IOptionsChangeTokenSource`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/IOptionsChangeTokenSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/IOptionsChangeTokenSource.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.IOptionsFactory`1.Create(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/IOptionsFactory.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/IOptionsFactory.cs" } ], "DocsId": "T:Microsoft.Extensions.Options.IOptionsFactory`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/IOptionsFactory.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/IOptionsFactory.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.IOptionsMonitor`1.Get(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/IOptionsMonitor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/IOptionsMonitor.cs" }, { "DocsId": "M:Microsoft.Extensions.Options.IOptionsMonitor`1.OnChange(System.Action{`0,System.String})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/IOptionsMonitor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/IOptionsMonitor.cs" }, { "DocsId": "P:Microsoft.Extensions.Options.IOptionsMonitor`1.CurrentValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/IOptionsMonitor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/IOptionsMonitor.cs" } ], "DocsId": "T:Microsoft.Extensions.Options.IOptionsMonitor`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/IOptionsMonitor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/IOptionsMonitor.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.IOptionsMonitorCache`1.GetOrAdd(System.String,System.Func{`0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/IOptionsMonitorCache.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/IOptionsMonitorCache.cs" }, { "DocsId": "M:Microsoft.Extensions.Options.IOptionsMonitorCache`1.TryAdd(System.String,`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/IOptionsMonitorCache.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/IOptionsMonitorCache.cs" }, { "DocsId": "M:Microsoft.Extensions.Options.IOptionsMonitorCache`1.TryRemove(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/IOptionsMonitorCache.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/IOptionsMonitorCache.cs" }, { "DocsId": "M:Microsoft.Extensions.Options.IOptionsMonitorCache`1.Clear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/IOptionsMonitorCache.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/IOptionsMonitorCache.cs" } ], "DocsId": "T:Microsoft.Extensions.Options.IOptionsMonitorCache`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/IOptionsMonitorCache.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/IOptionsMonitorCache.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.IOptionsSnapshot`1.Get(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/IOptionsSnapshot.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/IOptionsSnapshot.cs" } ], "DocsId": "T:Microsoft.Extensions.Options.IOptionsSnapshot`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/IOptionsSnapshot.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/IOptionsSnapshot.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.IPostConfigureOptions`1.PostConfigure(System.String,`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/IPostConfigureOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/IPostConfigureOptions.cs" } ], "DocsId": "T:Microsoft.Extensions.Options.IPostConfigureOptions`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/IPostConfigureOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/IPostConfigureOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.IStartupValidator.Validate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/IStartupValidator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/IStartupValidator.cs" } ], "DocsId": "T:Microsoft.Extensions.Options.IStartupValidator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/IStartupValidator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/IStartupValidator.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.IValidateOptions`1.Validate(System.String,`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/IValidateOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/IValidateOptions.cs" } ], "DocsId": "T:Microsoft.Extensions.Options.IValidateOptions`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/IValidateOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/IValidateOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.Options.Create``1(``0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/Options.cs#L30C13-L30C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/Options.cs#L30C13-L30C58" }, { "DocsId": "F:Microsoft.Extensions.Options.Options.DefaultName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/Options.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/Options.cs" } ], "DocsId": "T:Microsoft.Extensions.Options.Options", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/Options.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/Options.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.OptionsBuilder`1.#ctor(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L32C9-L38C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L32C9-L38C10" }, { "DocsId": "M:Microsoft.Extensions.Options.OptionsBuilder`1.Configure(System.Action{`0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L48C13-L51C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L48C13-L51C25" }, { "DocsId": "M:Microsoft.Extensions.Options.OptionsBuilder`1.Configure``1(System.Action{`0,``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L64C13-L68C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L16707566C0-L68C25" }, { "DocsId": "M:Microsoft.Extensions.Options.OptionsBuilder`1.Configure``2(System.Action{`0,``0,``1})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L83C13-L87C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L16707566C0-L87C25" }, { "DocsId": "M:Microsoft.Extensions.Options.OptionsBuilder`1.Configure``3(System.Action{`0,``0,``1,``2})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L104C13-L113C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L16707566C0-L113C25" }, { "DocsId": "M:Microsoft.Extensions.Options.OptionsBuilder`1.Configure``4(System.Action{`0,``0,``1,``2,``3})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L132C13-L142C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L16707566C0-L142C25" }, { "DocsId": "M:Microsoft.Extensions.Options.OptionsBuilder`1.Configure``5(System.Action{`0,``0,``1,``2,``3,``4})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L163C13-L174C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L16707566C0-L174C25" }, { "DocsId": "M:Microsoft.Extensions.Options.OptionsBuilder`1.PostConfigure(System.Action{`0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L185C13-L188C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L185C13-L188C25" }, { "DocsId": "M:Microsoft.Extensions.Options.OptionsBuilder`1.PostConfigure``1(System.Action{`0,``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L201C13-L205C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L16707566C0-L205C25" }, { "DocsId": "M:Microsoft.Extensions.Options.OptionsBuilder`1.PostConfigure``2(System.Action{`0,``0,``1})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L220C13-L224C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L16707566C0-L224C25" }, { "DocsId": "M:Microsoft.Extensions.Options.OptionsBuilder`1.PostConfigure``3(System.Action{`0,``0,``1,``2})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L241C13-L250C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L16707566C0-L250C25" }, { "DocsId": "M:Microsoft.Extensions.Options.OptionsBuilder`1.PostConfigure``4(System.Action{`0,``0,``1,``2,``3})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L269C13-L279C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L16707566C0-L279C25" }, { "DocsId": "M:Microsoft.Extensions.Options.OptionsBuilder`1.PostConfigure``5(System.Action{`0,``0,``1,``2,``3,``4})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L300C13-L311C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L16707566C0-L311C25" }, { "DocsId": "M:Microsoft.Extensions.Options.OptionsBuilder`1.Validate(System.Func{`0,System.Boolean})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L320C16-L320C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L320C16-L320C97" }, { "DocsId": "M:Microsoft.Extensions.Options.OptionsBuilder`1.Validate(System.Func{`0,System.Boolean},System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L330C13-L333C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L330C13-L333C25" }, { "DocsId": "M:Microsoft.Extensions.Options.OptionsBuilder`1.Validate``1(System.Func{`0,``0,System.Boolean})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L343C16-L343C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L343C16-L343C97" }, { "DocsId": "M:Microsoft.Extensions.Options.OptionsBuilder`1.Validate``1(System.Func{`0,``0,System.Boolean},System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L354C13-L358C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L16707566C0-L358C25" }, { "DocsId": "M:Microsoft.Extensions.Options.OptionsBuilder`1.Validate``2(System.Func{`0,``0,``1,System.Boolean})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L371C16-L371C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L371C16-L371C97" }, { "DocsId": "M:Microsoft.Extensions.Options.OptionsBuilder`1.Validate``2(System.Func{`0,``0,``1,System.Boolean},System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L385C13-L393C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L16707566C0-L393C25" }, { "DocsId": "M:Microsoft.Extensions.Options.OptionsBuilder`1.Validate``3(System.Func{`0,``0,``1,``2,System.Boolean})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L408C16-L408C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L408C16-L408C97" }, { "DocsId": "M:Microsoft.Extensions.Options.OptionsBuilder`1.Validate``3(System.Func{`0,``0,``1,``2,System.Boolean},System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L424C13-L433C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L16707566C0-L433C25" }, { "DocsId": "M:Microsoft.Extensions.Options.OptionsBuilder`1.Validate``4(System.Func{`0,``0,``1,``2,``3,System.Boolean})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L450C16-L450C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L450C16-L450C97" }, { "DocsId": "M:Microsoft.Extensions.Options.OptionsBuilder`1.Validate``4(System.Func{`0,``0,``1,``2,``3,System.Boolean},System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L468C13-L478C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L16707566C0-L478C25" }, { "DocsId": "M:Microsoft.Extensions.Options.OptionsBuilder`1.Validate``5(System.Func{`0,``0,``1,``2,``3,``4,System.Boolean})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L497C16-L497C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L497C16-L497C97" }, { "DocsId": "M:Microsoft.Extensions.Options.OptionsBuilder`1.Validate``5(System.Func{`0,``0,``1,``2,``3,``4,System.Boolean},System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L517C13-L528C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L16707566C0-L528C25" }, { "DocsId": "P:Microsoft.Extensions.Options.OptionsBuilder`1.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L20C30-L20C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L20C30-L20C34" }, { "DocsId": "P:Microsoft.Extensions.Options.OptionsBuilder`1.Services", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L25C46-L25C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L25C46-L25C50" } ], "DocsId": "T:Microsoft.Extensions.Options.OptionsBuilder`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.OptionsCache`1.Clear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsCache.cs#L23C32-L23C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsCache.cs#L23C32-L23C46" }, { "DocsId": "M:Microsoft.Extensions.Options.OptionsCache`1.GetOrAdd(System.String,System.Func{`0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsCache.cs#L33C13-L47C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsCache.cs#L33C13-L47C32" }, { "DocsId": "M:Microsoft.Extensions.Options.OptionsCache`1.TryAdd(System.String,`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsCache.cs#L98C13-L104C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsCache.cs#L98C13-L104C27" }, { "DocsId": "M:Microsoft.Extensions.Options.OptionsCache`1.TryRemove(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsCache.cs#L113C13-L113C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsCache.cs#L113C13-L113C65" }, { "DocsId": "M:Microsoft.Extensions.Options.OptionsCache`1.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsCache.cs#L18C9-L18C188" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsCache.cs#L18C9-L18C188" } ], "DocsId": "T:Microsoft.Extensions.Options.OptionsCache`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsCache.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsCache.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.OptionsFactory`1.#ctor(System.Collections.Generic.IEnumerable{Microsoft.Extensions.Options.IConfigureOptions{`0}},System.Collections.Generic.IEnumerable{Microsoft.Extensions.Options.IPostConfigureOptions{`0}})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsFactory.cs#L27C143-L28C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsFactory.cs#L27C143-L28C12" }, { "DocsId": "M:Microsoft.Extensions.Options.OptionsFactory`1.#ctor(System.Collections.Generic.IEnumerable{Microsoft.Extensions.Options.IConfigureOptions{`0}},System.Collections.Generic.IEnumerable{Microsoft.Extensions.Options.IPostConfigureOptions{`0}},System.Collections.Generic.IEnumerable{Microsoft.Extensions.Options.IValidateOptions{`0}})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsFactory.cs#L36C9-L46C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsFactory.cs#L36C9-L46C10" }, { "DocsId": "M:Microsoft.Extensions.Options.OptionsFactory`1.Create(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsFactory.cs#L57C13-L91C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsFactory.cs#L57C13-L91C28" }, { "DocsId": "M:Microsoft.Extensions.Options.OptionsFactory`1.CreateInstance(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsFactory.cs#L102C13-L102C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsFactory.cs#L102C13-L102C57" } ], "DocsId": "T:Microsoft.Extensions.Options.OptionsFactory`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsFactory.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsFactory.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.OptionsManager`1.#ctor(Microsoft.Extensions.Options.IOptionsFactory{`0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsManager.cs#L19C9-L28C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsManager.cs#L19C9-L28C10" }, { "DocsId": "M:Microsoft.Extensions.Options.OptionsManager`1.Get(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsManager.cs#L44C13-L54C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsManager.cs#L44C13-L54C28" }, { "DocsId": "P:Microsoft.Extensions.Options.OptionsManager`1.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsManager.cs#L33C34-L33C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsManager.cs#L33C34-L33C58" } ], "DocsId": "T:Microsoft.Extensions.Options.OptionsManager`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsManager.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsManager.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.OptionsMonitor`1.#ctor(Microsoft.Extensions.Options.IOptionsFactory{`0},System.Collections.Generic.IEnumerable{Microsoft.Extensions.Options.IOptionsChangeTokenSource{`0}},Microsoft.Extensions.Options.IOptionsMonitorCache{`0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsMonitor.cs#L22C9-L62C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsMonitor.cs#L22C9-L62C10" }, { "DocsId": "M:Microsoft.Extensions.Options.OptionsMonitor`1.Get(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsMonitor.cs#L91C13-L100C106" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsMonitor.cs#L91C13-L100C106" }, { "DocsId": "M:Microsoft.Extensions.Options.OptionsMonitor`1.OnChange(System.Action{`0,System.String})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsMonitor.cs#L111C13-L113C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsMonitor.cs#L111C13-L113C31" }, { "DocsId": "M:Microsoft.Extensions.Options.OptionsMonitor`1.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsMonitor.cs#L122C50-L128C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsMonitor.cs#L122C50-L128C10" }, { "DocsId": "P:Microsoft.Extensions.Options.OptionsMonitor`1.CurrentValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsMonitor.cs#L79C20-L79C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsMonitor.cs#L79C20-L79C44" } ], "DocsId": "T:Microsoft.Extensions.Options.OptionsMonitor`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsMonitor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsMonitor.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.OptionsMonitorExtensions.OnChange``1(Microsoft.Extensions.Options.IOptionsMonitor{``0},System.Action{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsMonitorExtensions.cs#L24C20-L24C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsMonitorExtensions.cs#L16707566C0-L24C59" } ], "DocsId": "T:Microsoft.Extensions.Options.OptionsMonitorExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsMonitorExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsMonitorExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.OptionsValidationException.#ctor(System.String,System.Type,System.Collections.Generic.IEnumerable{System.String})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsValidationException.cs#L20C9-L28C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsValidationException.cs#L20C9-L28C10" }, { "DocsId": "P:Microsoft.Extensions.Options.OptionsValidationException.OptionsName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsValidationException.cs#L33C37-L33C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsValidationException.cs#L33C37-L33C41" }, { "DocsId": "P:Microsoft.Extensions.Options.OptionsValidationException.OptionsType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsValidationException.cs#L38C35-L38C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsValidationException.cs#L38C35-L38C39" }, { "DocsId": "P:Microsoft.Extensions.Options.OptionsValidationException.Failures", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsValidationException.cs#L43C47-L43C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsValidationException.cs#L43C47-L43C51" }, { "DocsId": "P:Microsoft.Extensions.Options.OptionsValidationException.Message", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsValidationException.cs#L48C43-L48C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsValidationException.cs#L48C43-L48C70" } ], "DocsId": "T:Microsoft.Extensions.Options.OptionsValidationException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsValidationException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsValidationException.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.OptionsValidatorAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsValidatorAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsValidatorAttribute.cs" } ], "DocsId": "T:Microsoft.Extensions.Options.OptionsValidatorAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsValidatorAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsValidatorAttribute.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.OptionsWrapper`1.#ctor(`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsWrapper.cs#L20C9-L23C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsWrapper.cs#L20C9-L23C10" }, { "DocsId": "P:Microsoft.Extensions.Options.OptionsWrapper`1.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsWrapper.cs#L28C33-L28C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsWrapper.cs#L28C33-L28C37" } ], "DocsId": "T:Microsoft.Extensions.Options.OptionsWrapper`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsWrapper.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsWrapper.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.PostConfigureOptions`1.#ctor(System.String,System.Action{`0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L19C9-L23C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L19C9-L23C10" }, { "DocsId": "M:Microsoft.Extensions.Options.PostConfigureOptions`1.PostConfigure(System.String,`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L42C13-L49C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L42C13-L49C10" }, { "DocsId": "P:Microsoft.Extensions.Options.PostConfigureOptions`1.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L28C31-L28C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L28C31-L28C35" }, { "DocsId": "P:Microsoft.Extensions.Options.PostConfigureOptions`1.Action", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L33C43-L33C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L33C43-L33C47" } ], "DocsId": "T:Microsoft.Extensions.Options.PostConfigureOptions`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.PostConfigureOptions`2.#ctor(System.String,`1,System.Action{`0,`1})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L67C9-L72C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L67C9-L72C10" }, { "DocsId": "M:Microsoft.Extensions.Options.PostConfigureOptions`2.PostConfigure(System.String,`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L96C13-L103C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L96C13-L103C10" }, { "DocsId": "M:Microsoft.Extensions.Options.PostConfigureOptions`2.PostConfigure(`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L109C56-L109C99" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L109C56-L109C99" }, { "DocsId": "P:Microsoft.Extensions.Options.PostConfigureOptions`2.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L77C31-L77C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L77C31-L77C35" }, { "DocsId": "P:Microsoft.Extensions.Options.PostConfigureOptions`2.Action", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L82C49-L82C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L82C49-L82C53" }, { "DocsId": "P:Microsoft.Extensions.Options.PostConfigureOptions`2.Dependency", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L87C34-L87C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L87C34-L87C38" } ], "DocsId": "T:Microsoft.Extensions.Options.PostConfigureOptions`2", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.PostConfigureOptions`3.#ctor(System.String,`1,`2,System.Action{`0,`1,`2})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L130C9-L136C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L130C9-L136C10" }, { "DocsId": "M:Microsoft.Extensions.Options.PostConfigureOptions`3.PostConfigure(System.String,`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L165C13-L172C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L165C13-L172C10" }, { "DocsId": "M:Microsoft.Extensions.Options.PostConfigureOptions`3.PostConfigure(`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L178C56-L178C99" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L178C56-L178C99" }, { "DocsId": "P:Microsoft.Extensions.Options.PostConfigureOptions`3.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L141C31-L141C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L141C31-L141C35" }, { "DocsId": "P:Microsoft.Extensions.Options.PostConfigureOptions`3.Action", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L146C57-L146C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L146C57-L146C61" }, { "DocsId": "P:Microsoft.Extensions.Options.PostConfigureOptions`3.Dependency1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L151C36-L151C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L151C36-L151C40" }, { "DocsId": "P:Microsoft.Extensions.Options.PostConfigureOptions`3.Dependency2", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L156C36-L156C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L156C36-L156C40" } ], "DocsId": "T:Microsoft.Extensions.Options.PostConfigureOptions`3", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.PostConfigureOptions`4.#ctor(System.String,`1,`2,`3,System.Action{`0,`1,`2,`3})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L202C9-L209C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L202C9-L209C10" }, { "DocsId": "M:Microsoft.Extensions.Options.PostConfigureOptions`4.PostConfigure(System.String,`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L243C13-L250C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L243C13-L250C10" }, { "DocsId": "M:Microsoft.Extensions.Options.PostConfigureOptions`4.PostConfigure(`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L256C56-L256C99" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L256C56-L256C99" }, { "DocsId": "P:Microsoft.Extensions.Options.PostConfigureOptions`4.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L214C31-L214C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L214C31-L214C35" }, { "DocsId": "P:Microsoft.Extensions.Options.PostConfigureOptions`4.Action", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L219C64-L219C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L219C64-L219C68" }, { "DocsId": "P:Microsoft.Extensions.Options.PostConfigureOptions`4.Dependency1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L224C36-L224C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L224C36-L224C40" }, { "DocsId": "P:Microsoft.Extensions.Options.PostConfigureOptions`4.Dependency2", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L229C36-L229C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L229C36-L229C40" }, { "DocsId": "P:Microsoft.Extensions.Options.PostConfigureOptions`4.Dependency3", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L234C36-L234C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L234C36-L234C40" } ], "DocsId": "T:Microsoft.Extensions.Options.PostConfigureOptions`4", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.PostConfigureOptions`5.#ctor(System.String,`1,`2,`3,`4,System.Action{`0,`1,`2,`3,`4})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L283C9-L291C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L283C9-L291C10" }, { "DocsId": "M:Microsoft.Extensions.Options.PostConfigureOptions`5.PostConfigure(System.String,`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L330C13-L337C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L330C13-L337C10" }, { "DocsId": "M:Microsoft.Extensions.Options.PostConfigureOptions`5.PostConfigure(`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L343C56-L343C99" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L343C56-L343C99" }, { "DocsId": "P:Microsoft.Extensions.Options.PostConfigureOptions`5.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L296C31-L296C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L296C31-L296C35" }, { "DocsId": "P:Microsoft.Extensions.Options.PostConfigureOptions`5.Action", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L301C71-L301C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L301C71-L301C75" }, { "DocsId": "P:Microsoft.Extensions.Options.PostConfigureOptions`5.Dependency1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L306C36-L306C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L306C36-L306C40" }, { "DocsId": "P:Microsoft.Extensions.Options.PostConfigureOptions`5.Dependency2", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L311C36-L311C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L311C36-L311C40" }, { "DocsId": "P:Microsoft.Extensions.Options.PostConfigureOptions`5.Dependency3", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L316C36-L316C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L316C36-L316C40" }, { "DocsId": "P:Microsoft.Extensions.Options.PostConfigureOptions`5.Dependency4", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L321C36-L321C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L321C36-L321C40" } ], "DocsId": "T:Microsoft.Extensions.Options.PostConfigureOptions`5", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.PostConfigureOptions`6.#ctor(System.String,`1,`2,`3,`4,`5,System.Action{`0,`1,`2,`3,`4,`5})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L373C9-L382C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L373C9-L382C10" }, { "DocsId": "M:Microsoft.Extensions.Options.PostConfigureOptions`6.PostConfigure(System.String,`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L426C13-L433C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L426C13-L433C10" }, { "DocsId": "M:Microsoft.Extensions.Options.PostConfigureOptions`6.PostConfigure(`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L439C56-L439C99" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L439C56-L439C99" }, { "DocsId": "P:Microsoft.Extensions.Options.PostConfigureOptions`6.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L387C31-L387C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L387C31-L387C35" }, { "DocsId": "P:Microsoft.Extensions.Options.PostConfigureOptions`6.Action", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L392C78-L392C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L392C78-L392C82" }, { "DocsId": "P:Microsoft.Extensions.Options.PostConfigureOptions`6.Dependency1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L397C36-L397C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L397C36-L397C40" }, { "DocsId": "P:Microsoft.Extensions.Options.PostConfigureOptions`6.Dependency2", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L402C36-L402C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L402C36-L402C40" }, { "DocsId": "P:Microsoft.Extensions.Options.PostConfigureOptions`6.Dependency3", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L407C36-L407C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L407C36-L407C40" }, { "DocsId": "P:Microsoft.Extensions.Options.PostConfigureOptions`6.Dependency4", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L412C36-L412C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L412C36-L412C40" }, { "DocsId": "P:Microsoft.Extensions.Options.PostConfigureOptions`6.Dependency5", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L417C36-L417C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L417C36-L417C40" } ], "DocsId": "T:Microsoft.Extensions.Options.PostConfigureOptions`6", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.ValidateEnumeratedItemsAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateEnumeratedItemsAttribute.cs#L23C9-L25C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateEnumeratedItemsAttribute.cs#L23C9-L25C10" }, { "DocsId": "M:Microsoft.Extensions.Options.ValidateEnumeratedItemsAttribute.#ctor(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateEnumeratedItemsAttribute.cs#L35C9-L38C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateEnumeratedItemsAttribute.cs#L35C9-L38C10" }, { "DocsId": "P:Microsoft.Extensions.Options.ValidateEnumeratedItemsAttribute.Validator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateEnumeratedItemsAttribute.cs#L43C34-L43C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateEnumeratedItemsAttribute.cs#L43C34-L43C38" } ], "DocsId": "T:Microsoft.Extensions.Options.ValidateEnumeratedItemsAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateEnumeratedItemsAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateEnumeratedItemsAttribute.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.ValidateObjectMembersAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateObjectMembersAttribute.cs#L22C9-L24C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateObjectMembersAttribute.cs#L22C9-L24C10" }, { "DocsId": "M:Microsoft.Extensions.Options.ValidateObjectMembersAttribute.#ctor(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateObjectMembersAttribute.cs#L34C9-L37C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateObjectMembersAttribute.cs#L34C9-L37C10" }, { "DocsId": "P:Microsoft.Extensions.Options.ValidateObjectMembersAttribute.Validator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateObjectMembersAttribute.cs#L42C34-L42C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateObjectMembersAttribute.cs#L42C34-L42C38" } ], "DocsId": "T:Microsoft.Extensions.Options.ValidateObjectMembersAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateObjectMembersAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateObjectMembersAttribute.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.ValidateOptions`1.#ctor(System.String,System.Func{`0,System.Boolean},System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L20C9-L27C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L20C9-L27C10" }, { "DocsId": "M:Microsoft.Extensions.Options.ValidateOptions`1.Validate(System.String,`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L53C13-L63C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L53C13-L63C47" }, { "DocsId": "P:Microsoft.Extensions.Options.ValidateOptions`1.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L32C31-L32C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L32C31-L32C35" }, { "DocsId": "P:Microsoft.Extensions.Options.ValidateOptions`1.Validation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L37C50-L37C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L37C50-L37C54" }, { "DocsId": "P:Microsoft.Extensions.Options.ValidateOptions`1.FailureMessage", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L42C40-L42C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L42C40-L42C44" } ], "DocsId": "T:Microsoft.Extensions.Options.ValidateOptions`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.ValidateOptions`2.#ctor(System.String,`1,System.Func{`0,`1,System.Boolean},System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L81C9-L89C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L81C9-L89C10" }, { "DocsId": "M:Microsoft.Extensions.Options.ValidateOptions`2.Validate(System.String,`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L120C13-L130C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L120C13-L130C47" }, { "DocsId": "P:Microsoft.Extensions.Options.ValidateOptions`2.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L94C31-L94C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L94C31-L94C35" }, { "DocsId": "P:Microsoft.Extensions.Options.ValidateOptions`2.Validation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L99C56-L99C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L99C56-L99C60" }, { "DocsId": "P:Microsoft.Extensions.Options.ValidateOptions`2.FailureMessage", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L104C40-L104C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L104C40-L104C44" }, { "DocsId": "P:Microsoft.Extensions.Options.ValidateOptions`2.Dependency", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L109C34-L109C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L109C34-L109C38" } ], "DocsId": "T:Microsoft.Extensions.Options.ValidateOptions`2", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.ValidateOptions`3.#ctor(System.String,`1,`2,System.Func{`0,`1,`2,System.Boolean},System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L150C9-L159C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L150C9-L159C10" }, { "DocsId": "M:Microsoft.Extensions.Options.ValidateOptions`3.Validate(System.String,`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L195C13-L205C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L195C13-L205C47" }, { "DocsId": "P:Microsoft.Extensions.Options.ValidateOptions`3.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L164C31-L164C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L164C31-L164C35" }, { "DocsId": "P:Microsoft.Extensions.Options.ValidateOptions`3.Validation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L169C64-L169C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L169C64-L169C68" }, { "DocsId": "P:Microsoft.Extensions.Options.ValidateOptions`3.FailureMessage", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L174C40-L174C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L174C40-L174C44" }, { "DocsId": "P:Microsoft.Extensions.Options.ValidateOptions`3.Dependency1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L179C36-L179C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L179C36-L179C40" }, { "DocsId": "P:Microsoft.Extensions.Options.ValidateOptions`3.Dependency2", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L184C36-L184C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L184C36-L184C40" } ], "DocsId": "T:Microsoft.Extensions.Options.ValidateOptions`3", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.ValidateOptions`4.#ctor(System.String,`1,`2,`3,System.Func{`0,`1,`2,`3,System.Boolean},System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L227C9-L237C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L227C9-L237C10" }, { "DocsId": "M:Microsoft.Extensions.Options.ValidateOptions`4.Validate(System.String,`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L278C13-L288C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L278C13-L288C47" }, { "DocsId": "P:Microsoft.Extensions.Options.ValidateOptions`4.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L242C31-L242C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L242C31-L242C35" }, { "DocsId": "P:Microsoft.Extensions.Options.ValidateOptions`4.Validation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L247C71-L247C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L247C71-L247C75" }, { "DocsId": "P:Microsoft.Extensions.Options.ValidateOptions`4.FailureMessage", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L252C40-L252C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L252C40-L252C44" }, { "DocsId": "P:Microsoft.Extensions.Options.ValidateOptions`4.Dependency1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L257C36-L257C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L257C36-L257C40" }, { "DocsId": "P:Microsoft.Extensions.Options.ValidateOptions`4.Dependency2", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L262C36-L262C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L262C36-L262C40" }, { "DocsId": "P:Microsoft.Extensions.Options.ValidateOptions`4.Dependency3", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L267C36-L267C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L267C36-L267C40" } ], "DocsId": "T:Microsoft.Extensions.Options.ValidateOptions`4", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.ValidateOptions`5.#ctor(System.String,`1,`2,`3,`4,System.Func{`0,`1,`2,`3,`4,System.Boolean},System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L312C9-L323C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L312C9-L323C10" }, { "DocsId": "M:Microsoft.Extensions.Options.ValidateOptions`5.Validate(System.String,`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L369C13-L379C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L369C13-L379C47" }, { "DocsId": "P:Microsoft.Extensions.Options.ValidateOptions`5.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L328C31-L328C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L328C31-L328C35" }, { "DocsId": "P:Microsoft.Extensions.Options.ValidateOptions`5.Validation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L333C78-L333C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L333C78-L333C82" }, { "DocsId": "P:Microsoft.Extensions.Options.ValidateOptions`5.FailureMessage", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L338C40-L338C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L338C40-L338C44" }, { "DocsId": "P:Microsoft.Extensions.Options.ValidateOptions`5.Dependency1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L343C36-L343C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L343C36-L343C40" }, { "DocsId": "P:Microsoft.Extensions.Options.ValidateOptions`5.Dependency2", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L348C36-L348C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L348C36-L348C40" }, { "DocsId": "P:Microsoft.Extensions.Options.ValidateOptions`5.Dependency3", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L353C36-L353C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L353C36-L353C40" }, { "DocsId": "P:Microsoft.Extensions.Options.ValidateOptions`5.Dependency4", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L358C36-L358C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L358C36-L358C40" } ], "DocsId": "T:Microsoft.Extensions.Options.ValidateOptions`5", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.ValidateOptions`6.#ctor(System.String,`1,`2,`3,`4,`5,System.Func{`0,`1,`2,`3,`4,`5,System.Boolean},System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L405C9-L417C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L405C9-L417C10" }, { "DocsId": "M:Microsoft.Extensions.Options.ValidateOptions`6.Validate(System.String,`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L468C13-L478C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L468C13-L478C47" }, { "DocsId": "P:Microsoft.Extensions.Options.ValidateOptions`6.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L422C31-L422C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L422C31-L422C35" }, { "DocsId": "P:Microsoft.Extensions.Options.ValidateOptions`6.Validation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L427C85-L427C89" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L427C85-L427C89" }, { "DocsId": "P:Microsoft.Extensions.Options.ValidateOptions`6.FailureMessage", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L432C40-L432C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L432C40-L432C44" }, { "DocsId": "P:Microsoft.Extensions.Options.ValidateOptions`6.Dependency1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L437C36-L437C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L437C36-L437C40" }, { "DocsId": "P:Microsoft.Extensions.Options.ValidateOptions`6.Dependency2", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L442C36-L442C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L442C36-L442C40" }, { "DocsId": "P:Microsoft.Extensions.Options.ValidateOptions`6.Dependency3", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L447C36-L447C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L447C36-L447C40" }, { "DocsId": "P:Microsoft.Extensions.Options.ValidateOptions`6.Dependency4", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L452C36-L452C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L452C36-L452C40" }, { "DocsId": "P:Microsoft.Extensions.Options.ValidateOptions`6.Dependency5", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L457C36-L457C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L457C36-L457C40" } ], "DocsId": "T:Microsoft.Extensions.Options.ValidateOptions`6", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.ValidateOptionsResult.Fail(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptionsResult.cs#L58C16-L58C136" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptionsResult.cs#L58C16-L58C136" }, { "DocsId": "M:Microsoft.Extensions.Options.ValidateOptionsResult.Fail(System.Collections.Generic.IEnumerable{System.String})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptionsResult.cs#L66C16-L66C126" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptionsResult.cs#L66C16-L66C126" }, { "DocsId": "M:Microsoft.Extensions.Options.ValidateOptionsResult.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptionsResult.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptionsResult.cs" }, { "DocsId": "F:Microsoft.Extensions.Options.ValidateOptionsResult.Skip", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptionsResult.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptionsResult.cs" }, { "DocsId": "F:Microsoft.Extensions.Options.ValidateOptionsResult.Success", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptionsResult.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptionsResult.cs" }, { "DocsId": "P:Microsoft.Extensions.Options.ValidateOptionsResult.Succeeded", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptionsResult.cs#L28C33-L28C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptionsResult.cs#L28C33-L28C37" }, { "DocsId": "P:Microsoft.Extensions.Options.ValidateOptionsResult.Skipped", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptionsResult.cs#L33C31-L33C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptionsResult.cs#L33C31-L33C35" }, { "DocsId": "P:Microsoft.Extensions.Options.ValidateOptionsResult.Failed", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptionsResult.cs#L40C30-L40C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptionsResult.cs#L40C30-L40C34" }, { "DocsId": "P:Microsoft.Extensions.Options.ValidateOptionsResult.FailureMessage", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptionsResult.cs#L45C41-L45C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptionsResult.cs#L45C41-L45C45" }, { "DocsId": "P:Microsoft.Extensions.Options.ValidateOptionsResult.Failures", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptionsResult.cs#L50C48-L50C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptionsResult.cs#L50C48-L50C52" } ], "DocsId": "T:Microsoft.Extensions.Options.ValidateOptionsResult", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptionsResult.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptionsResult.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.ValidateOptionsResultBuilder.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptionsResultBuilder.cs#L25C9-L25C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptionsResultBuilder.cs#L25C9-L25C50" }, { "DocsId": "M:Microsoft.Extensions.Options.ValidateOptionsResultBuilder.AddError(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptionsResultBuilder.cs#L34C13-L36C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptionsResultBuilder.cs#L34C13-L36C10" }, { "DocsId": "M:Microsoft.Extensions.Options.ValidateOptionsResultBuilder.AddResult(System.ComponentModel.DataAnnotations.ValidationResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptionsResultBuilder.cs#L44C13-L51C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptionsResultBuilder.cs#L44C13-L51C10" }, { "DocsId": "M:Microsoft.Extensions.Options.ValidateOptionsResultBuilder.AddResults(System.Collections.Generic.IEnumerable{System.ComponentModel.DataAnnotations.ValidationResult})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptionsResultBuilder.cs#L59C13-L66C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptionsResultBuilder.cs#L59C13-L66C10" }, { "DocsId": "M:Microsoft.Extensions.Options.ValidateOptionsResultBuilder.AddResult(Microsoft.Extensions.Options.ValidateOptionsResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptionsResultBuilder.cs#L74C13-L95C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptionsResultBuilder.cs#L74C13-L95C10" }, { "DocsId": "M:Microsoft.Extensions.Options.ValidateOptionsResultBuilder.Build", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptionsResultBuilder.cs#L103C13-L108C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptionsResultBuilder.cs#L103C13-L108C50" }, { "DocsId": "M:Microsoft.Extensions.Options.ValidateOptionsResultBuilder.Clear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptionsResultBuilder.cs#L114C32-L114C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptionsResultBuilder.cs#L114C32-L114C48" } ], "DocsId": "T:Microsoft.Extensions.Options.ValidateOptionsResultBuilder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptionsResultBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptionsResultBuilder.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Primitives.json b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Primitives.json index c52b4bd50a8..8b22585ea1f 100644 --- a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Primitives.json +++ b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Primitives.json @@ -1,671 +1,670 @@ { "Assembly": "Microsoft.Extensions.Primitives", - "GUID": "E3B119D358EB41E5A5ED260C17986328FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "B50E9C400E7E4C0890813B5D244D5EF6FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.Primitives.CancellationChangeToken.#ctor(System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/CancellationChangeToken.cs#L27C67-L24C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/CancellationChangeToken.cs#L27C67-L24C10" }, { "DocsId": "M:Microsoft.Extensions.Primitives.CancellationChangeToken.RegisterChangeCallback(System.Action{System.Object},System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/CancellationChangeToken.cs#L37C13-L42C23" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/CancellationChangeToken.cs#L37C13-L42C23" }, { "DocsId": "P:Microsoft.Extensions.Primitives.CancellationChangeToken.ActiveChangeCallbacks", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/CancellationChangeToken.cs#L27C45-L27C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/CancellationChangeToken.cs#L27C45-L27C49" }, { "DocsId": "P:Microsoft.Extensions.Primitives.CancellationChangeToken.HasChanged", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/CancellationChangeToken.cs#L30C35-L30C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/CancellationChangeToken.cs#L30C35-L30C64" } ], "DocsId": "T:Microsoft.Extensions.Primitives.CancellationChangeToken", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/CancellationChangeToken.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/CancellationChangeToken.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Primitives.ChangeToken.OnChange(System.Func{Microsoft.Extensions.Primitives.IChangeToken},System.Action)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/ChangeToken.cs#L22C13-L31C122" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/ChangeToken.cs#L22C13-L31C122" }, { "DocsId": "M:Microsoft.Extensions.Primitives.ChangeToken.OnChange``1(System.Func{Microsoft.Extensions.Primitives.IChangeToken},System.Action{``0},``0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/ChangeToken.cs#L43C13-L52C105" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/ChangeToken.cs#L43C13-L52C105" } ], "DocsId": "T:Microsoft.Extensions.Primitives.ChangeToken", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/ChangeToken.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/ChangeToken.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Primitives.CompositeChangeToken.#ctor(System.Collections.Generic.IReadOnlyList{Microsoft.Extensions.Primitives.IChangeToken})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/CompositeChangeToken.cs#L19C9-L47C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/CompositeChangeToken.cs#L19C9-L47C10" }, { "DocsId": "M:Microsoft.Extensions.Primitives.CompositeChangeToken.RegisterChangeCallback(System.Action{System.Object},System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/CompositeChangeToken.cs#L57C13-L58C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/CompositeChangeToken.cs#L57C13-L58C77" }, { "DocsId": "P:Microsoft.Extensions.Primitives.CompositeChangeToken.ChangeTokens", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/CompositeChangeToken.cs#L52C59-L52C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/CompositeChangeToken.cs#L52C59-L52C63" }, { "DocsId": "P:Microsoft.Extensions.Primitives.CompositeChangeToken.HasChanged", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/CompositeChangeToken.cs#L66C17-L80C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/CompositeChangeToken.cs#L66C17-L80C30" }, { "DocsId": "P:Microsoft.Extensions.Primitives.CompositeChangeToken.ActiveChangeCallbacks", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/CompositeChangeToken.cs#L85C45-L85C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/CompositeChangeToken.cs#L85C45-L85C49" } ], "DocsId": "T:Microsoft.Extensions.Primitives.CompositeChangeToken", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/CompositeChangeToken.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/CompositeChangeToken.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Primitives.Extensions.Append(System.Text.StringBuilder,Microsoft.Extensions.Primitives.StringSegment)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/Extensions.cs#L21C13-L21C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/Extensions.cs#L21C13-L21C83" } ], "DocsId": "T:Microsoft.Extensions.Primitives.Extensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/Extensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/Extensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Primitives.IChangeToken.RegisterChangeCallback(System.Action{System.Object},System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/IChangeToken.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/IChangeToken.cs" }, { "DocsId": "P:Microsoft.Extensions.Primitives.IChangeToken.HasChanged", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/IChangeToken.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/IChangeToken.cs" }, { "DocsId": "P:Microsoft.Extensions.Primitives.IChangeToken.ActiveChangeCallbacks", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/IChangeToken.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/IChangeToken.cs" } ], "DocsId": "T:Microsoft.Extensions.Primitives.IChangeToken", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/IChangeToken.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/IChangeToken.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Primitives.InplaceStringBuilder.#ctor(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/InplaceStringBuilder.cs#L27C53-L35C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/InplaceStringBuilder.cs#L27C53-L35C10" }, { "DocsId": "M:Microsoft.Extensions.Primitives.InplaceStringBuilder.Append(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/InplaceStringBuilder.cs#L66C13-L72C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/InplaceStringBuilder.cs#L66C13-L72C10" }, { "DocsId": "M:Microsoft.Extensions.Primitives.InplaceStringBuilder.Append(Microsoft.Extensions.Primitives.StringSegment)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/InplaceStringBuilder.cs#L80C13-L81C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/InplaceStringBuilder.cs#L80C13-L81C10" }, { "DocsId": "M:Microsoft.Extensions.Primitives.InplaceStringBuilder.Append(System.String,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/InplaceStringBuilder.cs#L92C13-L108C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/InplaceStringBuilder.cs#L92C13-L108C10" }, { "DocsId": "M:Microsoft.Extensions.Primitives.InplaceStringBuilder.Append(System.Char)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/InplaceStringBuilder.cs#L117C13-L128C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/InplaceStringBuilder.cs#L117C13-L128C10" }, { "DocsId": "M:Microsoft.Extensions.Primitives.InplaceStringBuilder.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/InplaceStringBuilder.cs#L136C13-L141C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/InplaceStringBuilder.cs#L136C13-L141C27" }, { "DocsId": "P:Microsoft.Extensions.Primitives.InplaceStringBuilder.Capacity", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/InplaceStringBuilder.cs#L42C20-L42C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/InplaceStringBuilder.cs#L42C20-L42C29" } ], "DocsId": "T:Microsoft.Extensions.Primitives.InplaceStringBuilder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/InplaceStringBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/InplaceStringBuilder.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Primitives.StringSegment.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L30C13-L33C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L30C13-L33C10" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringSegment.#ctor(System.String,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L54C13-L62C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L54C13-L62C10" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringSegment.AsSpan", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L117C47-L117C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L117C47-L117C76" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringSegment.AsSpan(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L131C13-L136C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L131C13-L136C66" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringSegment.AsSpan(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L153C13-L158C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L153C13-L158C58" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringSegment.AsMemory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L165C51-L165C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L165C51-L165C82" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringSegment.Compare(Microsoft.Extensions.Primitives.StringSegment,Microsoft.Extensions.Primitives.StringSegment,System.StringComparison)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L181C13-L188C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L181C13-L188C64" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringSegment.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L199C13-L199C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L199C13-L199C68" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringSegment.Equals(Microsoft.Extensions.Primitives.StringSegment)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L207C52-L207C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L207C52-L207C91" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringSegment.Equals(Microsoft.Extensions.Primitives.StringSegment,System.StringComparison)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L217C13-L224C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L217C13-L224C53" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringSegment.Equals(Microsoft.Extensions.Primitives.StringSegment,Microsoft.Extensions.Primitives.StringSegment,System.StringComparison)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L238C105-L238C132" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L238C105-L238C132" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringSegment.Equals(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L245C45-L245C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L245C45-L245C83" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringSegment.Equals(System.String,System.StringComparison)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L256C13-L262C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L256C13-L262C67" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringSegment.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L275C13-L275C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L275C13-L275C49" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringSegment.op_Equality(Microsoft.Extensions.Primitives.StringSegment,Microsoft.Extensions.Primitives.StringSegment)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L292C84-L292C102" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L292C84-L292C102" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringSegment.op_Inequality(Microsoft.Extensions.Primitives.StringSegment,Microsoft.Extensions.Primitives.StringSegment)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L300C84-L300C103" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L300C84-L300C103" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringSegment.op_Implicit(System.String)~Microsoft.Extensions.Primitives.StringSegment", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L307C73-L307C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L307C73-L307C97" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringSegment.op_Implicit(Microsoft.Extensions.Primitives.StringSegment)~System.ReadOnlySpan{System.Char}", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L313C86-L313C102" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L313C86-L313C102" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringSegment.op_Implicit(Microsoft.Extensions.Primitives.StringSegment)~System.ReadOnlyMemory{System.Char}", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L319C88-L319C106" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L319C88-L319C106" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringSegment.StartsWith(System.String,System.StringComparison)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L333C13-L344C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L333C13-L344C71" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringSegment.EndsWith(System.String,System.StringComparison)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L359C13-L370C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L359C13-L370C69" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringSegment.Substring(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L383C48-L383C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L383C48-L383C82" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringSegment.Substring(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L400C13-L405C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L400C13-L405C62" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringSegment.Subsegment(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L418C56-L418C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L418C56-L418C91" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringSegment.Subsegment(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L433C13-L438C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L433C13-L438C71" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringSegment.IndexOf(System.Char,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L456C13-L477C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L456C13-L477C26" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringSegment.IndexOf(System.Char,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L490C50-L490C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L490C50-L490C83" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringSegment.IndexOf(System.Char)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L497C39-L497C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L497C39-L497C60" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringSegment.IndexOfAny(System.Char[],System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L519C13-L540C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L519C13-L540C26" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringSegment.IndexOfAny(System.Char[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L556C13-L556C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L556C13-L556C71" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringSegment.IndexOfAny(System.Char[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L568C13-L568C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L568C13-L568C49" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringSegment.LastIndexOf(System.Char)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L578C13-L578C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L578C13-L578C48" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringSegment.Trim", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L585C40-L585C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L585C40-L585C61" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringSegment.TrimStart", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L593C13-L604C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L593C13-L604C34" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringSegment.TrimEnd", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L613C13-L624C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L613C13-L624C41" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringSegment.Split(System.Char[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L636C13-L636C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L636C13-L636C53" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringSegment.IsNullOrEmpty(Microsoft.Extensions.Primitives.StringSegment)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L646C13-L653C24" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L646C13-L653C24" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringSegment.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L662C13-L662C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L662C13-L662C42" }, { "DocsId": "F:Microsoft.Extensions.Primitives.StringSegment.Empty", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs" }, { "DocsId": "P:Microsoft.Extensions.Primitives.StringSegment.Buffer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L67C33-L67C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L67C33-L67C37" }, { "DocsId": "P:Microsoft.Extensions.Primitives.StringSegment.Offset", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L72C29-L72C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L72C29-L72C33" }, { "DocsId": "P:Microsoft.Extensions.Primitives.StringSegment.Length", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L77C29-L77C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L77C29-L77C33" }, { "DocsId": "P:Microsoft.Extensions.Primitives.StringSegment.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L82C33-L82C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L82C33-L82C83" }, { "DocsId": "P:Microsoft.Extensions.Primitives.StringSegment.HasValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L89C33-L89C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L89C33-L89C47" }, { "DocsId": "P:Microsoft.Extensions.Primitives.StringSegment.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L103C17-L109C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L103C17-L109C47" } ], "DocsId": "T:Microsoft.Extensions.Primitives.StringSegment", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Primitives.StringSegmentComparer.Compare(Microsoft.Extensions.Primitives.StringSegment,Microsoft.Extensions.Primitives.StringSegment)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegmentComparer.cs#L43C13-L43C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegmentComparer.cs#L43C13-L43C60" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringSegmentComparer.Equals(Microsoft.Extensions.Primitives.StringSegment,Microsoft.Extensions.Primitives.StringSegment)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegmentComparer.cs#L54C13-L54C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegmentComparer.cs#L54C13-L54C59" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringSegmentComparer.GetHashCode(Microsoft.Extensions.Primitives.StringSegment)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegmentComparer.cs#L65C13-L65C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegmentComparer.cs#L65C13-L65C65" }, { "DocsId": "P:Microsoft.Extensions.Primitives.StringSegmentComparer.Ordinal", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegmentComparer.cs#L17C55-L17C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegmentComparer.cs#L17C55-L17C59" }, { "DocsId": "P:Microsoft.Extensions.Primitives.StringSegmentComparer.OrdinalIgnoreCase", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegmentComparer.cs#L23C65-L23C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegmentComparer.cs#L23C65-L23C69" } ], "DocsId": "T:Microsoft.Extensions.Primitives.StringSegmentComparer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegmentComparer.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegmentComparer.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Primitives.StringTokenizer.#ctor(System.String,System.Char[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringTokenizer.cs#L25C13-L37C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringTokenizer.cs#L25C13-L37C10" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringTokenizer.#ctor(Microsoft.Extensions.Primitives.StringSegment,System.Char[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringTokenizer.cs#L46C13-L58C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringTokenizer.cs#L46C13-L58C10" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringTokenizer.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringTokenizer.cs#L64C46-L64C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringTokenizer.cs#L64C46-L64C84" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringTokenizer.System#Collections#Generic#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringTokenizer.cs#L66C82-L66C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringTokenizer.cs#L66C82-L66C97" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringTokenizer.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringTokenizer.cs#L68C52-L68C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringTokenizer.cs#L68C52-L68C67" }, { "DocsId": "T:Microsoft.Extensions.Primitives.StringTokenizer.Enumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringTokenizer.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringTokenizer.cs" } ], "DocsId": "T:Microsoft.Extensions.Primitives.StringTokenizer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringTokenizer.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringTokenizer.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L37C13-L38C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L37C13-L38C10" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.#ctor(System.String[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L46C13-L47C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L46C13-L47C10" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.op_Implicit(System.String)~Microsoft.Extensions.Primitives.StringValues", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L55C13-L55C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L55C13-L55C44" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.op_Implicit(System.String[])~Microsoft.Extensions.Primitives.StringValues", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L64C13-L64C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L64C13-L64C45" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.op_Implicit(Microsoft.Extensions.Primitives.StringValues)~System.String", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L76C13-L76C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L76C13-L76C44" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.op_Implicit(Microsoft.Extensions.Primitives.StringValues)~System.String[]", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L85C13-L85C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L85C13-L85C42" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.System#Collections#Generic#ICollection#get_IsReadOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L114C49-L114C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L114C49-L114C53" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.System#Collections#Generic#IList#get_Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L124C20-L124C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L124C20-L124C31" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.System#Collections#Generic#IList#set_Item(System.Int32,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L125C20-L125C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L125C20-L125C53" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L169C13-L169C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L169C13-L169C53" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.ToArray", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L279C13-L279C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L279C13-L279C61" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.System#Collections#Generic#IList#IndexOf(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L308C13-L308C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L308C13-L308C34" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.System#Collections#Generic#ICollection#Contains(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L341C13-L341C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L341C13-L341C39" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.System#Collections#Generic#ICollection#CopyTo(System.String[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L354C13-L355C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L354C13-L355C10" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.System#Collections#Generic#ICollection#Add(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L388C56-L388C89" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L388C56-L388C89" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.System#Collections#Generic#IList#Insert(System.Int32,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L390C64-L390C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L390C64-L390C97" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.System#Collections#Generic#ICollection#Remove(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L392C59-L392C92" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L392C59-L392C92" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.System#Collections#Generic#IList#RemoveAt(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L394C52-L394C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L394C52-L394C85" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.System#Collections#Generic#ICollection#Clear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L396C46-L396C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L396C46-L396C79" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L402C13-L402C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L402C13-L402C44" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.System#Collections#Generic#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L408C13-L408C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L408C13-L408C36" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L414C13-L414C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L414C13-L414C36" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.IsNullOrEmpty(Microsoft.Extensions.Primitives.StringValues)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L424C13-L441C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L424C13-L441C70" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.Concat(Microsoft.Extensions.Primitives.StringValues,Microsoft.Extensions.Primitives.StringValues)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L453C13-L469C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L453C13-L469C47" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.Concat(Microsoft.Extensions.Primitives.StringValues@,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L480C13-L494C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L480C13-L494C47" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.Concat(System.String,Microsoft.Extensions.Primitives.StringValues@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L505C13-L519C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L505C13-L519C47" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.Equals(Microsoft.Extensions.Primitives.StringValues,Microsoft.Extensions.Primitives.StringValues)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L530C13-L545C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L530C13-L545C25" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.op_Equality(Microsoft.Extensions.Primitives.StringValues,Microsoft.Extensions.Primitives.StringValues)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L556C13-L556C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L556C13-L556C40" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.op_Inequality(Microsoft.Extensions.Primitives.StringValues,Microsoft.Extensions.Primitives.StringValues)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L567C13-L567C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L567C13-L567C41" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.Equals(Microsoft.Extensions.Primitives.StringValues)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L575C51-L575C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L575C51-L575C70" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.Equals(System.String,Microsoft.Extensions.Primitives.StringValues)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L583C72-L583C109" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L583C72-L583C109" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.Equals(Microsoft.Extensions.Primitives.StringValues,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L591C72-L591C109" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L591C72-L591C109" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.Equals(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L598C46-L598C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L598C46-L598C83" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.Equals(System.String[],Microsoft.Extensions.Primitives.StringValues)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L606C75-L606C112" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L606C75-L606C112" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.Equals(Microsoft.Extensions.Primitives.StringValues,System.String[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L614C75-L614C112" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L614C75-L614C112" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.Equals(System.String[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L621C49-L621C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L621C49-L621C86" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.op_Equality(Microsoft.Extensions.Primitives.StringValues,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L624C77-L624C114" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L624C77-L624C114" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.op_Inequality(Microsoft.Extensions.Primitives.StringValues,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L632C77-L632C115" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L632C77-L632C115" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.op_Equality(System.String,Microsoft.Extensions.Primitives.StringValues)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L635C77-L635C114" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L635C77-L635C114" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.op_Inequality(System.String,Microsoft.Extensions.Primitives.StringValues)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L643C77-L643C115" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L643C77-L643C115" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.op_Equality(Microsoft.Extensions.Primitives.StringValues,System.String[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L646C80-L646C117" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L646C80-L646C117" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.op_Inequality(Microsoft.Extensions.Primitives.StringValues,System.String[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L654C80-L654C118" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L654C80-L654C118" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.op_Equality(System.String[],Microsoft.Extensions.Primitives.StringValues)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L657C80-L657C117" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L657C80-L657C117" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.op_Inequality(System.String[],Microsoft.Extensions.Primitives.StringValues)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L665C80-L665C118" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L665C80-L665C118" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.op_Equality(Microsoft.Extensions.Primitives.StringValues,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L674C77-L674C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L674C77-L674C95" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.op_Inequality(Microsoft.Extensions.Primitives.StringValues,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L683C77-L683C96" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L683C77-L683C96" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.op_Equality(System.Object,Microsoft.Extensions.Primitives.StringValues)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L692C77-L692C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L692C77-L692C95" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.op_Inequality(System.Object,Microsoft.Extensions.Primitives.StringValues)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L700C77-L700C96" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L700C77-L700C96" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L709C13-L729C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L709C13-L729C26" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L740C13-L756C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L740C13-L756C87" }, { "DocsId": "F:Microsoft.Extensions.Primitives.StringValues.Empty", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs" }, { "DocsId": "P:Microsoft.Extensions.Primitives.StringValues.Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L97C17-L109C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L97C17-L109C63" }, { "DocsId": "P:Microsoft.Extensions.Primitives.StringValues.System#Collections#Generic#ICollection#IsReadOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L114C49-L114C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L114C49-L114C53" }, { "DocsId": "P:Microsoft.Extensions.Primitives.StringValues.System#Collections#Generic#IList#Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L124C20-L124C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L124C20-L124C31" }, { "DocsId": "P:Microsoft.Extensions.Primitives.StringValues.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L139C17-L153C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L139C17-L153C38" }, { "DocsId": "T:Microsoft.Extensions.Primitives.StringValues.Enumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs" } ], "DocsId": "T:Microsoft.Extensions.Primitives.StringValues", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Primitives.StringTokenizer.Enumerator.#ctor(Microsoft.Extensions.Primitives.StringTokenizer@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringTokenizer.cs#L93C17-L97C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringTokenizer.cs#L93C17-L97C14" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringTokenizer.Enumerator.System#Collections#IEnumerator#get_Current", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringTokenizer.cs#L104C43-L104C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringTokenizer.cs#L104C43-L104C50" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringTokenizer.Enumerator.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringTokenizer.cs#L111C13-L111C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringTokenizer.cs#L111C13-L111C14" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringTokenizer.Enumerator.MoveNext", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringTokenizer.cs#L119C17-L135C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringTokenizer.cs#L119C17-L135C29" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringTokenizer.Enumerator.Reset", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringTokenizer.cs#L143C17-L145C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringTokenizer.cs#L143C17-L145C14" }, { "DocsId": "P:Microsoft.Extensions.Primitives.StringTokenizer.Enumerator.Current", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringTokenizer.cs#L102C44-L102C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringTokenizer.cs#L102C44-L102C48" }, { "DocsId": "P:Microsoft.Extensions.Primitives.StringTokenizer.Enumerator.System#Collections#IEnumerator#Current", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringTokenizer.cs#L104C43-L104C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringTokenizer.cs#L104C43-L104C50" } ], "DocsId": "T:Microsoft.Extensions.Primitives.StringTokenizer.Enumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringTokenizer.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringTokenizer.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.Enumerator.#ctor(Microsoft.Extensions.Primitives.StringValues@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L788C58-L789C16" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L788C58-L789C16" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.Enumerator.MoveNext", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L797C17-L818C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L797C17-L818C41" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.Enumerator.System#Collections#IEnumerator#get_Current", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L826C44-L826C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L826C44-L826C52" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.Enumerator.System#Collections#IEnumerator#Reset", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L830C17-L830C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L830C17-L830C51" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.Enumerator.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L838C13-L838C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L838C13-L838C14" }, { "DocsId": "P:Microsoft.Extensions.Primitives.StringValues.Enumerator.Current", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L824C39-L824C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L824C39-L824C47" }, { "DocsId": "P:Microsoft.Extensions.Primitives.StringValues.Enumerator.System#Collections#IEnumerator#Current", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L826C44-L826C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L826C44-L826C52" } ], "DocsId": "T:Microsoft.Extensions.Primitives.StringValues.Enumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Resilience.json b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Resilience.json index c500283e26c..9ff0beb021e 100644 --- a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Resilience.json +++ b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Resilience.json @@ -1,31 +1,30 @@ { "Assembly": "Microsoft.Extensions.Resilience", - "GUID": "C71457098E1741FB86DFA4704D282107FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "07AD60CEA8C34C9CAA280CC3A7E44BE2FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Polly.ResilienceContextExtensions.SetRequestMetadata(Polly.ResilienceContext,Microsoft.Extensions.Http.Diagnostics.RequestMetadata)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Resilience/Resilience/ResilienceContextExtensions.cs#L25C9-L29C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Resilience/Resilience/ResilienceContextExtensions.cs#L25C9-L29C6" }, { "DocsId": "M:Polly.ResilienceContextExtensions.GetRequestMetadata(Polly.ResilienceContext)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Resilience/Resilience/ResilienceContextExtensions.cs#L39C9-L41C71" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Resilience/Resilience/ResilienceContextExtensions.cs#L39C9-L41C71" } ], "DocsId": "T:Polly.ResilienceContextExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Resilience/Resilience/ResilienceContextExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Resilience/Resilience/ResilienceContextExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ResilienceServiceCollectionExtensions.AddResilienceEnricher(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Resilience/Resilience/ResilienceServiceCollectionExtensions.cs#L40C9-L54C25" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Resilience/Resilience/ResilienceServiceCollectionExtensions.cs#L40C9-L54C25" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.ResilienceServiceCollectionExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Resilience/Resilience/ResilienceServiceCollectionExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Resilience/Resilience/ResilienceServiceCollectionExtensions.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Telemetry.Abstractions.json b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Telemetry.Abstractions.json index ca59aa46af8..e59d78a1057 100644 --- a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Telemetry.Abstractions.json +++ b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Telemetry.Abstractions.json @@ -1,829 +1,828 @@ { "Assembly": "Microsoft.Extensions.Telemetry.Abstractions", - "GUID": "54292C158F6442248D64D2EA13DF7887FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "3FBEC4D904704522AE951A151CBA0121FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.ITagCollector.Add(System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/ITagCollector.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/ITagCollector.cs" }, { "DocsId": "M:Microsoft.Extensions.Logging.ITagCollector.Add(System.String,System.Object,Microsoft.Extensions.Compliance.Classification.DataClassificationSet)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/ITagCollector.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/ITagCollector.cs" } ], "DocsId": "T:Microsoft.Extensions.Logging.ITagCollector", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/ITagCollector.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/ITagCollector.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessageHelper.Stringify(System.Collections.IEnumerable)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageHelper.cs#L48C9-L79C23" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageHelper.cs#L48C9-L79C23" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessageHelper.Stringify``2(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{``0,``1}})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageHelper.cs#L93C9-L133C23" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageHelper.cs#L93C9-L133C23" }, { "DocsId": "P:Microsoft.Extensions.Logging.LoggerMessageHelper.ThreadLocalState", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageHelper.cs#L28C13-L35C27" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageHelper.cs#L28C13-L35C27" } ], "DocsId": "T:Microsoft.Extensions.Logging.LoggerMessageHelper", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageHelper.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageHelper.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessageState.ReserveTagSpace(System.Int32)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.cs#L47C9-L56C22" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.cs#L47C9-L56C22" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessageState.ReserveClassifiedTagSpace(System.Int32)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.cs#L66C9-L76C22" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.cs#L66C9-L76C22" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessageState.AddTag(System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.cs#L86C9-L88C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.cs#L86C9-L88C6" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessageState.AddClassifiedTag(System.String,System.Object,Microsoft.Extensions.Compliance.Classification.DataClassificationSet)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.cs#L98C9-L100C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.cs#L98C9-L100C6" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessageState.Clear", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.cs#L107C9-L113C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.cs#L107C9-L113C6" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessageState.ToString", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.cs#L131C9-L162C23" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.cs#L131C9-L162C23" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessageState.Microsoft#Extensions#Diagnostics#Enrichment#IEnrichmentTagCollector#Add(System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.EnrichmentTagCollector.cs#L13C9-L14C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.EnrichmentTagCollector.cs#L13C9-L14C6" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessageState.System#Collections#Generic#IReadOnlyCollection>#get_Count", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.ReadOnlyList.cs#L16C69-L16C78" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.ReadOnlyList.cs#L16C69-L16C78" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessageState.System#Collections#Generic#IEnumerable>#GetEnumerator", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.cs" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessageState.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.cs" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessageState.Microsoft#Extensions#Logging#ITagCollector#Add(System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.TagCollector.cs#L15C9-L17C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.TagCollector.cs#L15C9-L17C6" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessageState.Microsoft#Extensions#Logging#ITagCollector#Add(System.String,System.Object,Microsoft.Extensions.Compliance.Classification.DataClassificationSet)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.TagCollector.cs#L22C9-L24C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.TagCollector.cs#L22C9-L24C6" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessageState.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.cs#L19C5-L31C61" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.cs#L19C5-L31C61" }, { "DocsId": "P:Microsoft.Extensions.Logging.LoggerMessageState.TagArray", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.cs#L27C56-L27C61" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.cs#L27C56-L27C61" }, { "DocsId": "P:Microsoft.Extensions.Logging.LoggerMessageState.RedactedTagArray", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.cs#L32C64-L32C77" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.cs#L32C64-L32C77" }, { "DocsId": "P:Microsoft.Extensions.Logging.LoggerMessageState.ClassifiedTagArray", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.cs#L37C50-L37C65" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.cs#L37C50-L37C65" }, { "DocsId": "P:Microsoft.Extensions.Logging.LoggerMessageState.TagsCount", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.cs#L118C28-L118C32" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.cs#L118C28-L118C32" }, { "DocsId": "P:Microsoft.Extensions.Logging.LoggerMessageState.ClassifiedTagsCount", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.cs#L123C38-L123C42" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.cs#L123C38-L123C42" }, { "DocsId": "P:Microsoft.Extensions.Logging.LoggerMessageState.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.ReadOnlyList.cs#L13C61-L13C107" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.ReadOnlyList.cs#L13C61-L13C107" }, { "DocsId": "P:Microsoft.Extensions.Logging.LoggerMessageState.System#Collections#Generic#IReadOnlyCollection>#Count", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.ReadOnlyList.cs#L16C69-L16C78" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.ReadOnlyList.cs#L16C69-L16C78" }, { "DocsId": "P:Microsoft.Extensions.Logging.LoggerMessageState.TagNamePrefix", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.TagCollector.cs#L31C35-L31C39" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.TagCollector.cs#L31C35-L31C39" }, { "DocsId": "T:Microsoft.Extensions.Logging.LoggerMessageState.ClassifiedTag", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.ClassifiedTag.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.ClassifiedTag.cs" } ], "DocsId": "T:Microsoft.Extensions.Logging.LoggerMessageState", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.LogPropertiesAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LogPropertiesAttribute.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LogPropertiesAttribute.cs" }, { "DocsId": "P:Microsoft.Extensions.Logging.LogPropertiesAttribute.SkipNullProperties", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LogPropertiesAttribute.cs#L26C38-L26C42" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LogPropertiesAttribute.cs#L26C38-L26C42" }, { "DocsId": "P:Microsoft.Extensions.Logging.LogPropertiesAttribute.OmitReferenceName", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LogPropertiesAttribute.cs#L34C37-L34C41" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LogPropertiesAttribute.cs#L34C37-L34C41" }, { "DocsId": "P:Microsoft.Extensions.Logging.LogPropertiesAttribute.Transitive", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LogPropertiesAttribute.cs#L49C30-L49C34" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LogPropertiesAttribute.cs#L49C30-L49C34" } ], "DocsId": "T:Microsoft.Extensions.Logging.LogPropertiesAttribute", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LogPropertiesAttribute.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LogPropertiesAttribute.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.LogPropertyIgnoreAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LogPropertyIgnoreAttribute.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LogPropertyIgnoreAttribute.cs" } ], "DocsId": "T:Microsoft.Extensions.Logging.LogPropertyIgnoreAttribute", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LogPropertyIgnoreAttribute.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LogPropertyIgnoreAttribute.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.TagNameAttribute.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/TagNameAttribute.cs#L25C5-L28C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/TagNameAttribute.cs#L25C5-L28C6" }, { "DocsId": "P:Microsoft.Extensions.Logging.TagNameAttribute.Name", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/TagNameAttribute.cs#L33C26-L33C30" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/TagNameAttribute.cs#L33C26-L33C30" } ], "DocsId": "T:Microsoft.Extensions.Logging.TagNameAttribute", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/TagNameAttribute.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/TagNameAttribute.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.TagProviderAttribute.#ctor(System.Type,System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/TagProviderAttribute.cs#L63C5-L67C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/TagProviderAttribute.cs#L63C5-L67C6" }, { "DocsId": "P:Microsoft.Extensions.Logging.TagProviderAttribute.ProviderType", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/TagProviderAttribute.cs#L72C32-L72C36" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/TagProviderAttribute.cs#L72C32-L72C36" }, { "DocsId": "P:Microsoft.Extensions.Logging.TagProviderAttribute.ProviderMethod", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/TagProviderAttribute.cs#L77C36-L77C40" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/TagProviderAttribute.cs#L77C36-L77C40" }, { "DocsId": "P:Microsoft.Extensions.Logging.TagProviderAttribute.OmitReferenceName", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/TagProviderAttribute.cs#L85C37-L85C41" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/TagProviderAttribute.cs#L85C37-L85C41" } ], "DocsId": "T:Microsoft.Extensions.Logging.TagProviderAttribute", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/TagProviderAttribute.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/TagProviderAttribute.cs" }, { "Members": [ { "DocsId": "F:Microsoft.Extensions.Http.Diagnostics.HttpRouteParameterRedactionMode.value__", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/HttpRouteParameterRedactionMode.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/HttpRouteParameterRedactionMode.cs" }, { "DocsId": "F:Microsoft.Extensions.Http.Diagnostics.HttpRouteParameterRedactionMode.Strict", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/HttpRouteParameterRedactionMode.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/HttpRouteParameterRedactionMode.cs" }, { "DocsId": "F:Microsoft.Extensions.Http.Diagnostics.HttpRouteParameterRedactionMode.Loose", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/HttpRouteParameterRedactionMode.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/HttpRouteParameterRedactionMode.cs" }, { "DocsId": "F:Microsoft.Extensions.Http.Diagnostics.HttpRouteParameterRedactionMode.None", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/HttpRouteParameterRedactionMode.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/HttpRouteParameterRedactionMode.cs" } ], "DocsId": "T:Microsoft.Extensions.Http.Diagnostics.HttpRouteParameterRedactionMode", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/HttpRouteParameterRedactionMode.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/HttpRouteParameterRedactionMode.cs" }, { "Members": [ { "DocsId": "P:Microsoft.Extensions.Http.Diagnostics.IDownstreamDependencyMetadata.DependencyName", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/IDownstreamDependencyMetadata.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/IDownstreamDependencyMetadata.cs" }, { "DocsId": "P:Microsoft.Extensions.Http.Diagnostics.IDownstreamDependencyMetadata.UniqueHostNameSuffixes", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/IDownstreamDependencyMetadata.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/IDownstreamDependencyMetadata.cs" }, { "DocsId": "P:Microsoft.Extensions.Http.Diagnostics.IDownstreamDependencyMetadata.RequestMetadata", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/IDownstreamDependencyMetadata.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/IDownstreamDependencyMetadata.cs" } ], "DocsId": "T:Microsoft.Extensions.Http.Diagnostics.IDownstreamDependencyMetadata", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/IDownstreamDependencyMetadata.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/IDownstreamDependencyMetadata.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Http.Diagnostics.IOutgoingRequestContext.SetRequestMetadata(Microsoft.Extensions.Http.Diagnostics.RequestMetadata)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/IOutgoingRequestContext.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/IOutgoingRequestContext.cs" }, { "DocsId": "P:Microsoft.Extensions.Http.Diagnostics.IOutgoingRequestContext.RequestMetadata", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/IOutgoingRequestContext.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/IOutgoingRequestContext.cs" } ], "DocsId": "T:Microsoft.Extensions.Http.Diagnostics.IOutgoingRequestContext", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/IOutgoingRequestContext.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/IOutgoingRequestContext.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Http.Diagnostics.RequestMetadata.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/RequestMetadata.cs#L58C48-L22C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/RequestMetadata.cs#L58C48-L22C6" }, { "DocsId": "M:Microsoft.Extensions.Http.Diagnostics.RequestMetadata.#ctor(System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/RequestMetadata.cs#L58C48-L39C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/RequestMetadata.cs#L58C48-L39C6" }, { "DocsId": "P:Microsoft.Extensions.Http.Diagnostics.RequestMetadata.RequestRoute", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/RequestMetadata.cs#L58C34-L58C38" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/RequestMetadata.cs#L58C34-L58C38" }, { "DocsId": "P:Microsoft.Extensions.Http.Diagnostics.RequestMetadata.RequestName", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/RequestMetadata.cs#L80C33-L80C37" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/RequestMetadata.cs#L80C33-L80C37" }, { "DocsId": "P:Microsoft.Extensions.Http.Diagnostics.RequestMetadata.DependencyName", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/RequestMetadata.cs#L96C36-L96C40" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/RequestMetadata.cs#L96C36-L96C40" }, { "DocsId": "P:Microsoft.Extensions.Http.Diagnostics.RequestMetadata.MethodType", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/RequestMetadata.cs#L104C32-L104C36" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/RequestMetadata.cs#L104C32-L104C36" } ], "DocsId": "T:Microsoft.Extensions.Http.Diagnostics.RequestMetadata", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/RequestMetadata.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/RequestMetadata.cs" }, { "Members": [ { "DocsId": "F:Microsoft.Extensions.Http.Diagnostics.TelemetryConstants.RequestMetadataKey", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/TelemetryConstants.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/TelemetryConstants.cs" }, { "DocsId": "F:Microsoft.Extensions.Http.Diagnostics.TelemetryConstants.Unknown", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/TelemetryConstants.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/TelemetryConstants.cs" }, { "DocsId": "F:Microsoft.Extensions.Http.Diagnostics.TelemetryConstants.Redacted", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/TelemetryConstants.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/TelemetryConstants.cs" }, { "DocsId": "F:Microsoft.Extensions.Http.Diagnostics.TelemetryConstants.ClientApplicationNameHeader", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/TelemetryConstants.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/TelemetryConstants.cs" }, { "DocsId": "F:Microsoft.Extensions.Http.Diagnostics.TelemetryConstants.ServerApplicationNameHeader", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/TelemetryConstants.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/TelemetryConstants.cs" } ], "DocsId": "T:Microsoft.Extensions.Http.Diagnostics.TelemetryConstants", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/TelemetryConstants.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/TelemetryConstants.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.CounterAttribute.#ctor(System.String[])", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/CounterAttribute.cs#L39C5-L42C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/CounterAttribute.cs#L39C5-L42C6" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.CounterAttribute.#ctor(System.Type)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/CounterAttribute.cs#L48C5-L51C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/CounterAttribute.cs#L48C5-L51C6" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.CounterAttribute.Name", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/CounterAttribute.cs#L68C27-L68C31" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/CounterAttribute.cs#L68C27-L68C31" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.CounterAttribute.TagNames", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/CounterAttribute.cs#L73C33-L73C37" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/CounterAttribute.cs#L73C33-L73C37" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.CounterAttribute.Type", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/CounterAttribute.cs#L78C25-L78C29" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/CounterAttribute.cs#L78C25-L78C29" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Metrics.CounterAttribute", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/CounterAttribute.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/CounterAttribute.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.CounterAttribute`1.#ctor(System.String[])", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/CounterAttributeT.cs#L46C5-L49C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/CounterAttributeT.cs#L46C5-L49C6" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.CounterAttribute`1.#ctor(System.Type)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/CounterAttributeT.cs#L55C5-L58C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/CounterAttributeT.cs#L55C5-L58C6" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.CounterAttribute`1.Name", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/CounterAttributeT.cs#L74C27-L74C31" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/CounterAttributeT.cs#L74C27-L74C31" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.CounterAttribute`1.TagNames", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/CounterAttributeT.cs#L79C33-L79C37" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/CounterAttributeT.cs#L79C33-L79C37" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.CounterAttribute`1.Type", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/CounterAttributeT.cs#L84C25-L84C29" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/CounterAttributeT.cs#L84C25-L84C29" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Metrics.CounterAttribute`1", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/CounterAttributeT.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/CounterAttributeT.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.GaugeAttribute.#ctor(System.String[])", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/GaugeAttribute.cs#L39C5-L42C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/GaugeAttribute.cs#L39C5-L42C6" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.GaugeAttribute.#ctor(System.Type)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/GaugeAttribute.cs#L48C5-L51C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/GaugeAttribute.cs#L48C5-L51C6" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.GaugeAttribute.Name", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/GaugeAttribute.cs#L67C27-L67C31" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/GaugeAttribute.cs#L67C27-L67C31" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.GaugeAttribute.TagNames", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/GaugeAttribute.cs#L72C33-L72C37" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/GaugeAttribute.cs#L72C33-L72C37" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.GaugeAttribute.Type", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/GaugeAttribute.cs#L77C25-L77C29" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/GaugeAttribute.cs#L77C25-L77C29" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Metrics.GaugeAttribute", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/GaugeAttribute.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/GaugeAttribute.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.HistogramAttribute.#ctor(System.String[])", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/HistogramAttribute.cs#L39C5-L42C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/HistogramAttribute.cs#L39C5-L42C6" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.HistogramAttribute.#ctor(System.Type)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/HistogramAttribute.cs#L48C5-L51C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/HistogramAttribute.cs#L48C5-L51C6" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.HistogramAttribute.Name", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/HistogramAttribute.cs#L67C27-L67C31" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/HistogramAttribute.cs#L67C27-L67C31" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.HistogramAttribute.TagNames", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/HistogramAttribute.cs#L72C33-L72C37" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/HistogramAttribute.cs#L72C33-L72C37" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.HistogramAttribute.Type", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/HistogramAttribute.cs#L77C25-L77C29" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/HistogramAttribute.cs#L77C25-L77C29" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Metrics.HistogramAttribute", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/HistogramAttribute.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/HistogramAttribute.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.HistogramAttribute`1.#ctor(System.String[])", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/HistogramAttributeT.cs#L46C5-L49C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/HistogramAttributeT.cs#L46C5-L49C6" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.HistogramAttribute`1.#ctor(System.Type)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/HistogramAttributeT.cs#L55C5-L58C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/HistogramAttributeT.cs#L55C5-L58C6" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.HistogramAttribute`1.Name", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/HistogramAttributeT.cs#L74C27-L74C31" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/HistogramAttributeT.cs#L74C27-L74C31" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.HistogramAttribute`1.TagNames", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/HistogramAttributeT.cs#L79C33-L79C37" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/HistogramAttributeT.cs#L79C33-L79C37" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.HistogramAttribute`1.Type", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/HistogramAttributeT.cs#L84C25-L84C29" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/HistogramAttributeT.cs#L84C25-L84C29" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Metrics.HistogramAttribute`1", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/HistogramAttributeT.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/HistogramAttributeT.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.TagNameAttribute.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/TagNameAttribute.cs#L35C5-L38C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/TagNameAttribute.cs#L35C5-L38C6" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.TagNameAttribute.Name", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/TagNameAttribute.cs#L43C26-L43C30" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/TagNameAttribute.cs#L43C26-L43C30" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Metrics.TagNameAttribute", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/TagNameAttribute.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/TagNameAttribute.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Latency.Checkpoint.#ctor(System.String,System.Int64,System.Int64)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Checkpoint.cs#L26C9-L29C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Checkpoint.cs#L26C9-L29C6" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Latency.Checkpoint.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Checkpoint.cs#L51C49-L51C81" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Checkpoint.cs#L51C49-L51C81" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Latency.Checkpoint.Equals(Microsoft.Extensions.Diagnostics.Latency.Checkpoint)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Checkpoint.cs#L59C12-L59C121" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Checkpoint.cs#L59C12-L59C121" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Latency.Checkpoint.GetHashCode", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Checkpoint.cs#L66C12-L66C54" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Checkpoint.cs#L66C12-L66C54" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Latency.Checkpoint.op_Equality(Microsoft.Extensions.Diagnostics.Latency.Checkpoint,Microsoft.Extensions.Diagnostics.Latency.Checkpoint)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Checkpoint.cs#L76C9-L76C35" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Checkpoint.cs#L76C9-L76C35" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Latency.Checkpoint.op_Inequality(Microsoft.Extensions.Diagnostics.Latency.Checkpoint,Microsoft.Extensions.Diagnostics.Latency.Checkpoint)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Checkpoint.cs#L87C9-L87C33" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Checkpoint.cs#L87C9-L87C33" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Latency.Checkpoint.Name", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Checkpoint.cs#L34C26-L34C30" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Checkpoint.cs#L34C26-L34C30" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Latency.Checkpoint.Elapsed", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Checkpoint.cs#L39C27-L39C31" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Checkpoint.cs#L39C27-L39C31" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Latency.Checkpoint.Frequency", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Checkpoint.cs#L44C29-L44C33" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Checkpoint.cs#L44C29-L44C33" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Latency.Checkpoint", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Checkpoint.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Checkpoint.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Latency.ILatencyContext.SetTag(Microsoft.Extensions.Diagnostics.Latency.TagToken,System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/ILatencyContext.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/ILatencyContext.cs" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Latency.ILatencyContext.AddCheckpoint(Microsoft.Extensions.Diagnostics.Latency.CheckpointToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/ILatencyContext.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/ILatencyContext.cs" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Latency.ILatencyContext.AddMeasure(Microsoft.Extensions.Diagnostics.Latency.MeasureToken,System.Int64)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/ILatencyContext.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/ILatencyContext.cs" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Latency.ILatencyContext.RecordMeasure(Microsoft.Extensions.Diagnostics.Latency.MeasureToken,System.Int64)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/ILatencyContext.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/ILatencyContext.cs" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Latency.ILatencyContext.Freeze", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/ILatencyContext.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/ILatencyContext.cs" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Latency.ILatencyContext.LatencyData", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/ILatencyContext.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/ILatencyContext.cs" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Latency.ILatencyContext", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/ILatencyContext.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/ILatencyContext.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Latency.ILatencyContextProvider.CreateContext", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/ILatencyContextProvider.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/ILatencyContextProvider.cs" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Latency.ILatencyContextProvider", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/ILatencyContextProvider.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/ILatencyContextProvider.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Latency.ILatencyDataExporter.ExportAsync(Microsoft.Extensions.Diagnostics.Latency.LatencyData,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/ILatencyDataExporter.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/ILatencyDataExporter.cs" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Latency.ILatencyDataExporter", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/ILatencyDataExporter.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/ILatencyDataExporter.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Latency.LatencyData.#ctor(System.ArraySegment{Microsoft.Extensions.Diagnostics.Latency.Tag},System.ArraySegment{Microsoft.Extensions.Diagnostics.Latency.Checkpoint},System.ArraySegment{Microsoft.Extensions.Diagnostics.Latency.Measure},System.Int64,System.Int64)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/LatencyData.cs#L29C9-L34C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/LatencyData.cs#L29C9-L34C6" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Latency.LatencyData.Checkpoints", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/LatencyData.cs#L39C52-L39C64" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/LatencyData.cs#L39C52-L39C64" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Latency.LatencyData.Tags", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/LatencyData.cs#L44C38-L44C43" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/LatencyData.cs#L44C38-L44C43" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Latency.LatencyData.Measures", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/LatencyData.cs#L49C46-L49C55" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/LatencyData.cs#L49C46-L49C55" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Latency.LatencyData.DurationTimestamp", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/LatencyData.cs#L54C37-L54C41" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/LatencyData.cs#L54C37-L54C41" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Latency.LatencyData.DurationTimestampFrequency", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/LatencyData.cs#L59C46-L59C50" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/LatencyData.cs#L59C46-L59C50" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Latency.LatencyData", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/LatencyData.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/LatencyData.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Latency.Measure.#ctor(System.String,System.Int64)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Measure.cs#L25C9-L27C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Measure.cs#L25C9-L27C6" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Latency.Measure.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Measure.cs#L44C49-L44C78" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Measure.cs#L44C49-L44C78" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Latency.Measure.Equals(Microsoft.Extensions.Diagnostics.Latency.Measure)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Measure.cs#L51C42-L51C115" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Measure.cs#L51C42-L51C115" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Latency.Measure.GetHashCode", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Measure.cs#L57C42-L57C71" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Measure.cs#L57C42-L57C71" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Latency.Measure.op_Equality(Microsoft.Extensions.Diagnostics.Latency.Measure,Microsoft.Extensions.Diagnostics.Latency.Measure)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Measure.cs#L67C9-L67C35" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Measure.cs#L67C9-L67C35" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Latency.Measure.op_Inequality(Microsoft.Extensions.Diagnostics.Latency.Measure,Microsoft.Extensions.Diagnostics.Latency.Measure)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Measure.cs#L78C9-L78C33" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Measure.cs#L78C9-L78C33" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Latency.Measure.Name", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Measure.cs#L32C26-L32C30" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Measure.cs#L32C26-L32C30" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Latency.Measure.Value", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Measure.cs#L37C25-L37C29" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Measure.cs#L37C25-L37C29" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Latency.Measure", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Measure.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Measure.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Latency.CheckpointToken.#ctor(System.String,System.Int32)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/CheckpointToken.cs#L34C9-L36C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/CheckpointToken.cs#L34C9-L36C6" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Latency.CheckpointToken.Name", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/CheckpointToken.cs#L19C26-L19C30" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/CheckpointToken.cs#L19C26-L19C30" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Latency.CheckpointToken.Position", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/CheckpointToken.cs#L24C27-L24C31" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/CheckpointToken.cs#L24C27-L24C31" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Latency.CheckpointToken", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/CheckpointToken.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/CheckpointToken.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Latency.ILatencyContextTokenIssuer.GetTagToken(System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/ILatencyContextTokenIssuer.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/ILatencyContextTokenIssuer.cs" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Latency.ILatencyContextTokenIssuer.GetCheckpointToken(System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/ILatencyContextTokenIssuer.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/ILatencyContextTokenIssuer.cs" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Latency.ILatencyContextTokenIssuer.GetMeasureToken(System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/ILatencyContextTokenIssuer.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/ILatencyContextTokenIssuer.cs" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Latency.ILatencyContextTokenIssuer", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/ILatencyContextTokenIssuer.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/ILatencyContextTokenIssuer.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Latency.LatencyContextRegistrationOptions.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/LatencyContextRegistrationOptions.cs#L18C66-L30C77" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/LatencyContextRegistrationOptions.cs#L18C66-L30C77" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Latency.LatencyContextRegistrationOptions.CheckpointNames", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/LatencyContextRegistrationOptions.cs#L18C52-L18C56" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/LatencyContextRegistrationOptions.cs#L18C52-L18C56" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Latency.LatencyContextRegistrationOptions.MeasureNames", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/LatencyContextRegistrationOptions.cs#L24C49-L24C53" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/LatencyContextRegistrationOptions.cs#L24C49-L24C53" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Latency.LatencyContextRegistrationOptions.TagNames", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/LatencyContextRegistrationOptions.cs#L30C45-L30C49" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/LatencyContextRegistrationOptions.cs#L30C45-L30C49" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Latency.LatencyContextRegistrationOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/LatencyContextRegistrationOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/LatencyContextRegistrationOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Latency.MeasureToken.#ctor(System.String,System.Int32)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/MeasureToken.cs#L34C9-L36C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/MeasureToken.cs#L34C9-L36C6" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Latency.MeasureToken.Name", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/MeasureToken.cs#L19C26-L19C30" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/MeasureToken.cs#L19C26-L19C30" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Latency.MeasureToken.Position", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/MeasureToken.cs#L24C27-L24C31" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/MeasureToken.cs#L24C27-L24C31" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Latency.MeasureToken", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/MeasureToken.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/MeasureToken.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Latency.TagToken.#ctor(System.String,System.Int32)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/TagToken.cs#L34C9-L36C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/TagToken.cs#L34C9-L36C6" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Latency.TagToken.Name", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/TagToken.cs#L19C26-L19C30" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/TagToken.cs#L19C26-L19C30" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Latency.TagToken.Position", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/TagToken.cs#L24C27-L24C31" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/TagToken.cs#L24C27-L24C31" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Latency.TagToken", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/TagToken.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/TagToken.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Latency.Tag.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Tag.cs#L21C9-L23C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Tag.cs#L21C9-L23C6" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Latency.Tag.Name", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Tag.cs#L28C26-L28C30" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Tag.cs#L28C26-L28C30" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Latency.Tag.Value", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Tag.cs#L33C27-L33C31" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Tag.cs#L33C27-L33C31" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Latency.Tag", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Tag.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Tag.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Enrichment.IEnrichmentTagCollector.Add(System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Enrichment/IEnrichmentTagCollector.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Enrichment/IEnrichmentTagCollector.cs" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Enrichment.IEnrichmentTagCollector", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Enrichment/IEnrichmentTagCollector.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Enrichment/IEnrichmentTagCollector.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Enrichment.ILogEnricher.Enrich(Microsoft.Extensions.Diagnostics.Enrichment.IEnrichmentTagCollector)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Enrichment/ILogEnricher.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Enrichment/ILogEnricher.cs" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Enrichment.ILogEnricher", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Enrichment/ILogEnricher.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Enrichment/ILogEnricher.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Enrichment.IStaticLogEnricher.Enrich(Microsoft.Extensions.Diagnostics.Enrichment.IEnrichmentTagCollector)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Enrichment/IStaticLogEnricher.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Enrichment/IStaticLogEnricher.cs" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Enrichment.IStaticLogEnricher", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Enrichment/IStaticLogEnricher.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Enrichment/IStaticLogEnricher.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.EnrichmentServiceCollectionExtensions.AddLogEnricher``1(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Enrichment/EnrichmentServiceCollectionExtensions.cs#L25C12-L25C66" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Enrichment/EnrichmentServiceCollectionExtensions.cs#L25C12-L25C66" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.EnrichmentServiceCollectionExtensions.AddLogEnricher(Microsoft.Extensions.DependencyInjection.IServiceCollection,Microsoft.Extensions.Diagnostics.Enrichment.ILogEnricher)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Enrichment/EnrichmentServiceCollectionExtensions.cs#L35C12-L35C71" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Enrichment/EnrichmentServiceCollectionExtensions.cs#L35C12-L35C71" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.EnrichmentServiceCollectionExtensions.AddStaticLogEnricher``1(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Enrichment/EnrichmentServiceCollectionExtensions.cs#L46C12-L46C72" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Enrichment/EnrichmentServiceCollectionExtensions.cs#L46C12-L46C72" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.EnrichmentServiceCollectionExtensions.AddStaticLogEnricher(Microsoft.Extensions.DependencyInjection.IServiceCollection,Microsoft.Extensions.Diagnostics.Enrichment.IStaticLogEnricher)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Enrichment/EnrichmentServiceCollectionExtensions.cs#L56C12-L56C71" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Enrichment/EnrichmentServiceCollectionExtensions.cs#L56C12-L56C71" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.EnrichmentServiceCollectionExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Enrichment/EnrichmentServiceCollectionExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Enrichment/EnrichmentServiceCollectionExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.NullLatencyContextServiceCollectionExtensions.AddNullLatencyContext(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/NullLatencyContextServiceCollectionExtensions.cs#L24C9-L29C25" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/NullLatencyContextServiceCollectionExtensions.cs#L24C9-L29C25" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.NullLatencyContextServiceCollectionExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/NullLatencyContextServiceCollectionExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/NullLatencyContextServiceCollectionExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.LatencyRegistryServiceCollectionExtensions.RegisterCheckpointNames(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.String[])", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/LatencyRegistryServiceCollectionExtensions.cs#L24C9-L30C25" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/LatencyRegistryServiceCollectionExtensions.cs#L16707566C0-L30C25" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.LatencyRegistryServiceCollectionExtensions.RegisterMeasureNames(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.String[])", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/LatencyRegistryServiceCollectionExtensions.cs#L42C9-L48C25" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/LatencyRegistryServiceCollectionExtensions.cs#L16707566C0-L48C25" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.LatencyRegistryServiceCollectionExtensions.RegisterTagNames(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.String[])", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/LatencyRegistryServiceCollectionExtensions.cs#L60C9-L66C25" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/LatencyRegistryServiceCollectionExtensions.cs#L16707566C0-L66C25" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.LatencyRegistryServiceCollectionExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/LatencyRegistryServiceCollectionExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/LatencyRegistryServiceCollectionExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessageState.ClassifiedTag.#ctor(System.String,System.Object,Microsoft.Extensions.Compliance.Classification.DataClassificationSet)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.ClassifiedTag.cs#L40C13-L43C10" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.ClassifiedTag.cs#L40C13-L43C10" }, { "DocsId": "P:Microsoft.Extensions.Logging.LoggerMessageState.ClassifiedTag.Name", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.ClassifiedTag.cs#L23C39-L23C43" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.ClassifiedTag.cs#L23C39-L23C43" }, { "DocsId": "P:Microsoft.Extensions.Logging.LoggerMessageState.ClassifiedTag.Value", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.ClassifiedTag.cs#L28C41-L28C45" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.ClassifiedTag.cs#L28C41-L28C45" }, { "DocsId": "P:Microsoft.Extensions.Logging.LoggerMessageState.ClassifiedTag.Classifications", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.ClassifiedTag.cs#L33C65-L33C69" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.ClassifiedTag.cs#L33C65-L33C69" } ], "DocsId": "T:Microsoft.Extensions.Logging.LoggerMessageState.ClassifiedTag", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.ClassifiedTag.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.ClassifiedTag.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Telemetry.json b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Telemetry.json index b4162e216c4..e0142218975 100644 --- a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Telemetry.json +++ b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.Telemetry.json @@ -1,279 +1,278 @@ { "Assembly": "Microsoft.Extensions.Telemetry", - "GUID": "881A7633685E4D63A33743E0839DCD4FFFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "5318454EBC4E4655B2B1FD5E1A90C48EFFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.LoggerEnrichmentOptions.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggerEnrichmentOptions.cs#L71C52-L71C75" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggerEnrichmentOptions.cs#L71C52-L71C75" }, { "DocsId": "P:Microsoft.Extensions.Logging.LoggerEnrichmentOptions.CaptureStackTraces", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggerEnrichmentOptions.cs#L29C38-L29C42" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggerEnrichmentOptions.cs#L29C38-L29C42" }, { "DocsId": "P:Microsoft.Extensions.Logging.LoggerEnrichmentOptions.UseFileInfoForStackTraces", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggerEnrichmentOptions.cs#L45C45-L45C49" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggerEnrichmentOptions.cs#L45C45-L45C49" }, { "DocsId": "P:Microsoft.Extensions.Logging.LoggerEnrichmentOptions.IncludeExceptionMessage", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggerEnrichmentOptions.cs#L57C43-L57C47" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggerEnrichmentOptions.cs#L57C43-L57C47" }, { "DocsId": "P:Microsoft.Extensions.Logging.LoggerEnrichmentOptions.MaxStackTraceLength", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggerEnrichmentOptions.cs#L71C38-L71C42" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggerEnrichmentOptions.cs#L71C38-L71C42" } ], "DocsId": "T:Microsoft.Extensions.Logging.LoggerEnrichmentOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggerEnrichmentOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggerEnrichmentOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.LoggerRedactionOptions.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggerRedactionOptions.cs#L22C52-L22C56" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggerRedactionOptions.cs#L22C52-L22C56" }, { "DocsId": "P:Microsoft.Extensions.Logging.LoggerRedactionOptions.ApplyDiscriminator", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggerRedactionOptions.cs#L22C38-L22C42" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggerRedactionOptions.cs#L22C38-L22C42" } ], "DocsId": "T:Microsoft.Extensions.Logging.LoggerRedactionOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggerRedactionOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggerRedactionOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.LoggingEnrichmentExtensions.EnableEnrichment(Microsoft.Extensions.Logging.ILoggingBuilder)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggingEnrichmentExtensions.cs#L24C12-L24C47" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggingEnrichmentExtensions.cs#L24C12-L24C47" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggingEnrichmentExtensions.EnableEnrichment(Microsoft.Extensions.Logging.ILoggingBuilder,System.Action{Microsoft.Extensions.Logging.LoggerEnrichmentOptions})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggingEnrichmentExtensions.cs#L34C9-L41C24" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggingEnrichmentExtensions.cs#L34C9-L41C24" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggingEnrichmentExtensions.EnableEnrichment(Microsoft.Extensions.Logging.ILoggingBuilder,Microsoft.Extensions.Configuration.IConfigurationSection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggingEnrichmentExtensions.cs#L52C9-L58C24" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggingEnrichmentExtensions.cs#L52C9-L58C24" } ], "DocsId": "T:Microsoft.Extensions.Logging.LoggingEnrichmentExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggingEnrichmentExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggingEnrichmentExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.LoggingRedactionExtensions.EnableRedaction(Microsoft.Extensions.Logging.ILoggingBuilder)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggingRedactionExtensions.cs#L24C12-L24C46" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggingRedactionExtensions.cs#L24C12-L24C46" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggingRedactionExtensions.EnableRedaction(Microsoft.Extensions.Logging.ILoggingBuilder,System.Action{Microsoft.Extensions.Logging.LoggerRedactionOptions})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggingRedactionExtensions.cs#L34C9-L40C24" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggingRedactionExtensions.cs#L34C9-L40C24" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggingRedactionExtensions.EnableRedaction(Microsoft.Extensions.Logging.ILoggingBuilder,Microsoft.Extensions.Configuration.IConfigurationSection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggingRedactionExtensions.cs#L51C9-L57C24" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggingRedactionExtensions.cs#L51C9-L57C24" } ], "DocsId": "T:Microsoft.Extensions.Logging.LoggingRedactionExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggingRedactionExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggingRedactionExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Latency.LatencyConsoleOptions.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyConsoleOptions.cs#L17C51-L33C52" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyConsoleOptions.cs#L17C51-L33C52" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Latency.LatencyConsoleOptions.OutputCheckpoints", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyConsoleOptions.cs#L17C37-L17C41" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyConsoleOptions.cs#L17C37-L17C41" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Latency.LatencyConsoleOptions.OutputTags", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyConsoleOptions.cs#L25C30-L25C34" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyConsoleOptions.cs#L25C30-L25C34" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Latency.LatencyConsoleOptions.OutputMeasures", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyConsoleOptions.cs#L33C34-L33C38" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyConsoleOptions.cs#L33C34-L33C38" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Latency.LatencyConsoleOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyConsoleOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyConsoleOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Latency.LatencyContextOptions.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyContextOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyContextOptions.cs" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Latency.LatencyContextOptions.ThrowOnUnregisteredNames", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyContextOptions.cs#L17C44-L17C48" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyContextOptions.cs#L17C44-L17C48" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Latency.LatencyContextOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyContextOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyContextOptions.cs" }, { "Members": [ { "DocsId": "F:Microsoft.Extensions.Diagnostics.Enrichment.ApplicationEnricherTags.ApplicationName", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationEnricherTags.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationEnricherTags.cs" }, { "DocsId": "F:Microsoft.Extensions.Diagnostics.Enrichment.ApplicationEnricherTags.EnvironmentName", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationEnricherTags.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationEnricherTags.cs" }, { "DocsId": "F:Microsoft.Extensions.Diagnostics.Enrichment.ApplicationEnricherTags.DeploymentRing", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationEnricherTags.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationEnricherTags.cs" }, { "DocsId": "F:Microsoft.Extensions.Diagnostics.Enrichment.ApplicationEnricherTags.BuildVersion", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationEnricherTags.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationEnricherTags.cs" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Enrichment.ApplicationEnricherTags.DimensionNames", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationEnricherTags.cs#L38C58-L38C62" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationEnricherTags.cs#L38C58-L38C62" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Enrichment.ApplicationEnricherTags", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationEnricherTags.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationEnricherTags.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Enrichment.ApplicationLogEnricherOptions.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationLogEnricherOptions.cs#L19C49-L27C53" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationLogEnricherOptions.cs#L19C49-L27C53" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Enrichment.ApplicationLogEnricherOptions.EnvironmentName", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationLogEnricherOptions.cs#L19C35-L19C39" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationLogEnricherOptions.cs#L19C35-L19C39" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Enrichment.ApplicationLogEnricherOptions.ApplicationName", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationLogEnricherOptions.cs#L27C35-L27C39" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationLogEnricherOptions.cs#L27C35-L27C39" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Enrichment.ApplicationLogEnricherOptions.DeploymentRing", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationLogEnricherOptions.cs#L35C34-L35C38" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationLogEnricherOptions.cs#L35C34-L35C38" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Enrichment.ApplicationLogEnricherOptions.BuildVersion", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationLogEnricherOptions.cs#L43C32-L43C36" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationLogEnricherOptions.cs#L43C32-L43C36" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Enrichment.ApplicationLogEnricherOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationLogEnricherOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationLogEnricherOptions.cs" }, { "Members": [ { "DocsId": "F:Microsoft.Extensions.Diagnostics.Enrichment.ProcessEnricherTagNames.ProcessId", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ProcessEnricherTagNames.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ProcessEnricherTagNames.cs" }, { "DocsId": "F:Microsoft.Extensions.Diagnostics.Enrichment.ProcessEnricherTagNames.ThreadId", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ProcessEnricherTagNames.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ProcessEnricherTagNames.cs" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Enrichment.ProcessEnricherTagNames.DimensionNames", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ProcessEnricherTagNames.cs#L28C58-L28C62" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ProcessEnricherTagNames.cs#L28C58-L28C62" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Enrichment.ProcessEnricherTagNames", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ProcessEnricherTagNames.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ProcessEnricherTagNames.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Enrichment.ProcessLogEnricherOptions.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ProcessLogEnricherOptions.cs#L17C43-L17C47" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ProcessLogEnricherOptions.cs#L17C43-L17C47" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Enrichment.ProcessLogEnricherOptions.ProcessId", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ProcessLogEnricherOptions.cs#L17C29-L17C33" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ProcessLogEnricherOptions.cs#L17C29-L17C33" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Enrichment.ProcessLogEnricherOptions.ThreadId", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ProcessLogEnricherOptions.cs#L25C28-L25C32" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ProcessLogEnricherOptions.cs#L25C28-L25C32" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Enrichment.ProcessLogEnricherOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ProcessLogEnricherOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ProcessLogEnricherOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ApplicationEnricherServiceCollectionExtensions.AddServiceLogEnricher(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationEnricherServiceCollectionExtensions.cs#L24C9-L27C46" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationEnricherServiceCollectionExtensions.cs#L24C9-L27C46" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ApplicationEnricherServiceCollectionExtensions.AddServiceLogEnricher(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{Microsoft.Extensions.Diagnostics.Enrichment.ApplicationLogEnricherOptions})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationEnricherServiceCollectionExtensions.cs#L39C9-L44C47" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationEnricherServiceCollectionExtensions.cs#L39C9-L44C47" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ApplicationEnricherServiceCollectionExtensions.AddServiceLogEnricher(Microsoft.Extensions.DependencyInjection.IServiceCollection,Microsoft.Extensions.Configuration.IConfigurationSection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationEnricherServiceCollectionExtensions.cs#L56C9-L61C55" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationEnricherServiceCollectionExtensions.cs#L56C9-L61C55" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.ApplicationEnricherServiceCollectionExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationEnricherServiceCollectionExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationEnricherServiceCollectionExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ProcessEnricherServiceCollectionExtensions.AddProcessLogEnricher(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ProcessEnricherServiceCollectionExtensions.cs#L24C9-L27C46" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ProcessEnricherServiceCollectionExtensions.cs#L24C9-L27C46" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ProcessEnricherServiceCollectionExtensions.AddProcessLogEnricher(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{Microsoft.Extensions.Diagnostics.Enrichment.ProcessLogEnricherOptions})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ProcessEnricherServiceCollectionExtensions.cs#L39C9-L45C47" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ProcessEnricherServiceCollectionExtensions.cs#L39C9-L45C47" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ProcessEnricherServiceCollectionExtensions.AddProcessLogEnricher(Microsoft.Extensions.DependencyInjection.IServiceCollection,Microsoft.Extensions.Configuration.IConfigurationSection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ProcessEnricherServiceCollectionExtensions.cs#L57C9-L63C55" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ProcessEnricherServiceCollectionExtensions.cs#L57C9-L63C55" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.ProcessEnricherServiceCollectionExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ProcessEnricherServiceCollectionExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ProcessEnricherServiceCollectionExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.LatencyConsoleExtensions.AddConsoleLatencyDataExporter(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyConsoleExtensions.cs#L26C9-L31C25" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyConsoleExtensions.cs#L26C9-L31C25" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.LatencyConsoleExtensions.AddConsoleLatencyDataExporter(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{Microsoft.Extensions.Diagnostics.Latency.LatencyConsoleOptions})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyConsoleExtensions.cs#L43C9-L48C57" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyConsoleExtensions.cs#L43C9-L48C57" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.LatencyConsoleExtensions.AddConsoleLatencyDataExporter(Microsoft.Extensions.DependencyInjection.IServiceCollection,Microsoft.Extensions.Configuration.IConfigurationSection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyConsoleExtensions.cs#L60C9-L65C57" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyConsoleExtensions.cs#L60C9-L65C57" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.LatencyConsoleExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyConsoleExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyConsoleExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.LatencyContextExtensions.AddLatencyContext(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyContextExtensions.cs#L25C9-L31C25" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyContextExtensions.cs#L25C9-L31C25" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.LatencyContextExtensions.AddLatencyContext(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{Microsoft.Extensions.Diagnostics.Latency.LatencyContextOptions})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyContextExtensions.cs#L42C9-L47C45" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyContextExtensions.cs#L42C9-L47C45" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.LatencyContextExtensions.AddLatencyContext(Microsoft.Extensions.DependencyInjection.IServiceCollection,Microsoft.Extensions.Configuration.IConfigurationSection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyContextExtensions.cs#L58C9-L63C45" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyContextExtensions.cs#L58C9-L63C45" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.LatencyContextExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyContextExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyContextExtensions.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.TimeProvider.Testing.json b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.TimeProvider.Testing.json index eca14230209..94fa2471b9c 100644 --- a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.TimeProvider.Testing.json +++ b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.TimeProvider.Testing.json @@ -1,65 +1,64 @@ { "Assembly": "Microsoft.Extensions.TimeProvider.Testing", - "GUID": "08E6BBC8EB52445AA28918EA5EBF25C2FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "F53901F1F6C146F589A16C519D8286A5FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.Time.Testing.FakeTimeProvider.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.TimeProvider.Testing/FakeTimeProvider.cs#L18C5-L34C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.TimeProvider.Testing/FakeTimeProvider.cs#L18C5-L34C6" }, { "DocsId": "M:Microsoft.Extensions.Time.Testing.FakeTimeProvider.#ctor(System.DateTimeOffset)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.TimeProvider.Testing/FakeTimeProvider.cs#L18C5-L49C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.TimeProvider.Testing/FakeTimeProvider.cs#L18C5-L49C6" }, { "DocsId": "M:Microsoft.Extensions.Time.Testing.FakeTimeProvider.GetUtcNow", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.TimeProvider.Testing/FakeTimeProvider.cs#L78C9-L85C23" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.TimeProvider.Testing/FakeTimeProvider.cs#L78C9-L85C23" }, { "DocsId": "M:Microsoft.Extensions.Time.Testing.FakeTimeProvider.SetUtcNow(System.DateTimeOffset)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.TimeProvider.Testing/FakeTimeProvider.cs#L95C9-L106C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.TimeProvider.Testing/FakeTimeProvider.cs#L95C9-L106C6" }, { "DocsId": "M:Microsoft.Extensions.Time.Testing.FakeTimeProvider.Advance(System.TimeSpan)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.TimeProvider.Testing/FakeTimeProvider.cs#L121C9-L129C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.TimeProvider.Testing/FakeTimeProvider.cs#L121C9-L129C6" }, { "DocsId": "M:Microsoft.Extensions.Time.Testing.FakeTimeProvider.GetTimestamp", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.TimeProvider.Testing/FakeTimeProvider.cs#L143C9-L143C27" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.TimeProvider.Testing/FakeTimeProvider.cs#L143C9-L143C27" }, { "DocsId": "M:Microsoft.Extensions.Time.Testing.FakeTimeProvider.SetLocalTimeZone(System.TimeZoneInfo)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.TimeProvider.Testing/FakeTimeProvider.cs#L153C65-L153C109" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.TimeProvider.Testing/FakeTimeProvider.cs#L153C65-L153C109" }, { "DocsId": "M:Microsoft.Extensions.Time.Testing.FakeTimeProvider.ToString", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.TimeProvider.Testing/FakeTimeProvider.cs#L167C42-L167C112" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.TimeProvider.Testing/FakeTimeProvider.cs#L167C42-L167C112" }, { "DocsId": "M:Microsoft.Extensions.Time.Testing.FakeTimeProvider.CreateTimer(System.Threading.TimerCallback,System.Object,System.TimeSpan,System.TimeSpan)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.TimeProvider.Testing/FakeTimeProvider.cs#L172C9-L174C22" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.TimeProvider.Testing/FakeTimeProvider.cs#L172C9-L174C22" }, { "DocsId": "P:Microsoft.Extensions.Time.Testing.FakeTimeProvider.Start", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.TimeProvider.Testing/FakeTimeProvider.cs#L54C35-L54C39" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.TimeProvider.Testing/FakeTimeProvider.cs#L54C35-L54C39" }, { "DocsId": "P:Microsoft.Extensions.Time.Testing.FakeTimeProvider.AutoAdvanceAmount", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.TimeProvider.Testing/FakeTimeProvider.cs#L65C16-L65C34" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.TimeProvider.Testing/FakeTimeProvider.cs#L65C16-L65C34" }, { "DocsId": "P:Microsoft.Extensions.Time.Testing.FakeTimeProvider.LocalTimeZone", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.TimeProvider.Testing/FakeTimeProvider.cs#L147C51-L147C65" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.TimeProvider.Testing/FakeTimeProvider.cs#L147C51-L147C65" }, { "DocsId": "P:Microsoft.Extensions.Time.Testing.FakeTimeProvider.TimestampFrequency", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.TimeProvider.Testing/FakeTimeProvider.cs#L161C48-L161C71" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.TimeProvider.Testing/FakeTimeProvider.cs#L161C48-L161C71" } ], "DocsId": "T:Microsoft.Extensions.Time.Testing.FakeTimeProvider", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.TimeProvider.Testing/FakeTimeProvider.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.TimeProvider.Testing/FakeTimeProvider.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.WebEncoders.json b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.WebEncoders.json index 3de6a03566c..26fe897ef53 100644 --- a/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.WebEncoders.json +++ b/xml/SourceLinkInformation/net-8.0/Microsoft.Extensions.WebEncoders.json @@ -1,149 +1,148 @@ { "Assembly": "Microsoft.Extensions.WebEncoders", - "GUID": "682DD4BE461D426CA6223886A762C9AEFFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "7128B351C3AF4129BD202B7037482F99FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.WebEncoders.WebEncoderOptions.#ctor", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/WebEncoders/src/WebEncoderOptions.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/WebEncoders/src/WebEncoderOptions.cs" }, { "DocsId": "P:Microsoft.Extensions.WebEncoders.WebEncoderOptions.TextEncoderSettings", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/WebEncoders/src/WebEncoderOptions.cs#L19C55-L19C59" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/WebEncoders/src/WebEncoderOptions.cs#L19C55-L19C59" } ], "DocsId": "T:Microsoft.Extensions.WebEncoders.WebEncoderOptions", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/WebEncoders/src/WebEncoderOptions.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/WebEncoders/src/WebEncoderOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.WebEncoders.Testing.HtmlTestEncoder.Encode(System.String)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/WebEncoders/src/Testing/HtmlTestEncoder.cs#L25C9-L32C41" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/WebEncoders/src/Testing/HtmlTestEncoder.cs#L25C9-L32C41" }, { "DocsId": "M:Microsoft.Extensions.WebEncoders.Testing.HtmlTestEncoder.Encode(System.IO.TextWriter,System.Char[],System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/WebEncoders/src/Testing/HtmlTestEncoder.cs#L38C9-L49C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/WebEncoders/src/Testing/HtmlTestEncoder.cs#L38C9-L49C6" }, { "DocsId": "M:Microsoft.Extensions.WebEncoders.Testing.HtmlTestEncoder.Encode(System.IO.TextWriter,System.String,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/WebEncoders/src/Testing/HtmlTestEncoder.cs#L54C9-L69C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/WebEncoders/src/Testing/HtmlTestEncoder.cs#L54C9-L69C6" }, { "DocsId": "M:Microsoft.Extensions.WebEncoders.Testing.HtmlTestEncoder.WillEncode(System.Int32)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/WebEncoders/src/Testing/HtmlTestEncoder.cs#L74C9-L74C22" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/WebEncoders/src/Testing/HtmlTestEncoder.cs#L74C9-L74C22" }, { "DocsId": "M:Microsoft.Extensions.WebEncoders.Testing.HtmlTestEncoder.FindFirstCharacterToEncode(System.Char*,System.Int32)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/WebEncoders/src/Testing/HtmlTestEncoder.cs#L80C9-L80C19" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/WebEncoders/src/Testing/HtmlTestEncoder.cs#L80C9-L80C19" }, { "DocsId": "M:Microsoft.Extensions.WebEncoders.Testing.HtmlTestEncoder.TryEncodeUnicodeScalar(System.Int32,System.Char*,System.Int32,System.Int32@)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/WebEncoders/src/Testing/HtmlTestEncoder.cs#L90C9-L96C22" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/WebEncoders/src/Testing/HtmlTestEncoder.cs#L90C9-L96C22" }, { "DocsId": "M:Microsoft.Extensions.WebEncoders.Testing.HtmlTestEncoder.#ctor", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/WebEncoders/src/Testing/HtmlTestEncoder.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/WebEncoders/src/Testing/HtmlTestEncoder.cs" }, { "DocsId": "P:Microsoft.Extensions.WebEncoders.Testing.HtmlTestEncoder.MaxOutputCharactersPerInputCharacter", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/WebEncoders/src/Testing/HtmlTestEncoder.cs#L19C15-L19C24" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/WebEncoders/src/Testing/HtmlTestEncoder.cs#L19C15-L19C24" } ], "DocsId": "T:Microsoft.Extensions.WebEncoders.Testing.HtmlTestEncoder", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/WebEncoders/src/Testing/HtmlTestEncoder.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/WebEncoders/src/Testing/HtmlTestEncoder.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.WebEncoders.Testing.JavaScriptTestEncoder.Encode(System.String)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/WebEncoders/src/Testing/JavaScriptTestEncoder.cs#L25C9-L32C47" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/WebEncoders/src/Testing/JavaScriptTestEncoder.cs#L25C9-L32C47" }, { "DocsId": "M:Microsoft.Extensions.WebEncoders.Testing.JavaScriptTestEncoder.Encode(System.IO.TextWriter,System.Char[],System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/WebEncoders/src/Testing/JavaScriptTestEncoder.cs#L38C9-L49C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/WebEncoders/src/Testing/JavaScriptTestEncoder.cs#L38C9-L49C6" }, { "DocsId": "M:Microsoft.Extensions.WebEncoders.Testing.JavaScriptTestEncoder.Encode(System.IO.TextWriter,System.String,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/WebEncoders/src/Testing/JavaScriptTestEncoder.cs#L54C9-L69C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/WebEncoders/src/Testing/JavaScriptTestEncoder.cs#L54C9-L69C6" }, { "DocsId": "M:Microsoft.Extensions.WebEncoders.Testing.JavaScriptTestEncoder.WillEncode(System.Int32)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/WebEncoders/src/Testing/JavaScriptTestEncoder.cs#L74C9-L74C22" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/WebEncoders/src/Testing/JavaScriptTestEncoder.cs#L74C9-L74C22" }, { "DocsId": "M:Microsoft.Extensions.WebEncoders.Testing.JavaScriptTestEncoder.FindFirstCharacterToEncode(System.Char*,System.Int32)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/WebEncoders/src/Testing/JavaScriptTestEncoder.cs#L80C9-L80C19" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/WebEncoders/src/Testing/JavaScriptTestEncoder.cs#L80C9-L80C19" }, { "DocsId": "M:Microsoft.Extensions.WebEncoders.Testing.JavaScriptTestEncoder.TryEncodeUnicodeScalar(System.Int32,System.Char*,System.Int32,System.Int32@)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/WebEncoders/src/Testing/JavaScriptTestEncoder.cs#L90C9-L96C22" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/WebEncoders/src/Testing/JavaScriptTestEncoder.cs#L90C9-L96C22" }, { "DocsId": "M:Microsoft.Extensions.WebEncoders.Testing.JavaScriptTestEncoder.#ctor", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/WebEncoders/src/Testing/JavaScriptTestEncoder.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/WebEncoders/src/Testing/JavaScriptTestEncoder.cs" }, { "DocsId": "P:Microsoft.Extensions.WebEncoders.Testing.JavaScriptTestEncoder.MaxOutputCharactersPerInputCharacter", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/WebEncoders/src/Testing/JavaScriptTestEncoder.cs#L19C15-L19C24" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/WebEncoders/src/Testing/JavaScriptTestEncoder.cs#L19C15-L19C24" } ], "DocsId": "T:Microsoft.Extensions.WebEncoders.Testing.JavaScriptTestEncoder", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/WebEncoders/src/Testing/JavaScriptTestEncoder.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/WebEncoders/src/Testing/JavaScriptTestEncoder.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.WebEncoders.Testing.UrlTestEncoder.Encode(System.String)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/WebEncoders/src/Testing/UrlTestEncoder.cs#L25C9-L32C40" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/WebEncoders/src/Testing/UrlTestEncoder.cs#L25C9-L32C40" }, { "DocsId": "M:Microsoft.Extensions.WebEncoders.Testing.UrlTestEncoder.Encode(System.IO.TextWriter,System.Char[],System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/WebEncoders/src/Testing/UrlTestEncoder.cs#L38C9-L49C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/WebEncoders/src/Testing/UrlTestEncoder.cs#L38C9-L49C6" }, { "DocsId": "M:Microsoft.Extensions.WebEncoders.Testing.UrlTestEncoder.Encode(System.IO.TextWriter,System.String,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/WebEncoders/src/Testing/UrlTestEncoder.cs#L54C9-L69C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/WebEncoders/src/Testing/UrlTestEncoder.cs#L54C9-L69C6" }, { "DocsId": "M:Microsoft.Extensions.WebEncoders.Testing.UrlTestEncoder.WillEncode(System.Int32)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/WebEncoders/src/Testing/UrlTestEncoder.cs#L74C9-L74C22" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/WebEncoders/src/Testing/UrlTestEncoder.cs#L74C9-L74C22" }, { "DocsId": "M:Microsoft.Extensions.WebEncoders.Testing.UrlTestEncoder.FindFirstCharacterToEncode(System.Char*,System.Int32)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/WebEncoders/src/Testing/UrlTestEncoder.cs#L80C9-L80C19" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/WebEncoders/src/Testing/UrlTestEncoder.cs#L80C9-L80C19" }, { "DocsId": "M:Microsoft.Extensions.WebEncoders.Testing.UrlTestEncoder.TryEncodeUnicodeScalar(System.Int32,System.Char*,System.Int32,System.Int32@)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/WebEncoders/src/Testing/UrlTestEncoder.cs#L90C9-L96C22" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/WebEncoders/src/Testing/UrlTestEncoder.cs#L90C9-L96C22" }, { "DocsId": "M:Microsoft.Extensions.WebEncoders.Testing.UrlTestEncoder.#ctor", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/WebEncoders/src/Testing/UrlTestEncoder.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/WebEncoders/src/Testing/UrlTestEncoder.cs" }, { "DocsId": "P:Microsoft.Extensions.WebEncoders.Testing.UrlTestEncoder.MaxOutputCharactersPerInputCharacter", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/WebEncoders/src/Testing/UrlTestEncoder.cs#L19C15-L19C24" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/WebEncoders/src/Testing/UrlTestEncoder.cs#L19C15-L19C24" } ], "DocsId": "T:Microsoft.Extensions.WebEncoders.Testing.UrlTestEncoder", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/WebEncoders/src/Testing/UrlTestEncoder.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/WebEncoders/src/Testing/UrlTestEncoder.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.EncoderServiceCollectionExtensions.AddWebEncoders(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/WebEncoders/src/EncoderServiceCollectionExtensions.cs#L26C9-L39C25" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/WebEncoders/src/EncoderServiceCollectionExtensions.cs#L26C9-L39C25" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.EncoderServiceCollectionExtensions.AddWebEncoders(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{Microsoft.Extensions.WebEncoders.WebEncoderOptions})", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/WebEncoders/src/EncoderServiceCollectionExtensions.cs#L51C9-L57C25" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/WebEncoders/src/EncoderServiceCollectionExtensions.cs#L51C9-L57C25" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.EncoderServiceCollectionExtensions", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/8486d31e24f30e3fa1809a95699a0adc16f448d7/src/WebEncoders/src/EncoderServiceCollectionExtensions.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63/src/WebEncoders/src/EncoderServiceCollectionExtensions.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/Microsoft.Win32.Registry.AccessControl.json b/xml/SourceLinkInformation/net-8.0/Microsoft.Win32.Registry.AccessControl.json index 49c8c7e3ff0..f5d0e743853 100644 --- a/xml/SourceLinkInformation/net-8.0/Microsoft.Win32.Registry.AccessControl.json +++ b/xml/SourceLinkInformation/net-8.0/Microsoft.Win32.Registry.AccessControl.json @@ -1,25 +1,24 @@ { "Assembly": "Microsoft.Win32.Registry.AccessControl", - "GUID": "0A3A5F7A2A3F43B096D5139E5D1D3063FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "48BBF957BEA84240822C6E8A0A7D80ABFFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Win32.RegistryAclExtensions.GetAccessControl(Microsoft.Win32.RegistryKey)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.Registry.AccessControl/src/Microsoft/Win32/RegistryAclExtensions.cs#L13C13-L18C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.Registry.AccessControl/src/Microsoft/Win32/RegistryAclExtensions.cs#L13C13-L18C43" }, { "DocsId": "M:Microsoft.Win32.RegistryAclExtensions.GetAccessControl(Microsoft.Win32.RegistryKey,System.Security.AccessControl.AccessControlSections)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.Registry.AccessControl/src/Microsoft/Win32/RegistryAclExtensions.cs#L23C13-L28C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.Registry.AccessControl/src/Microsoft/Win32/RegistryAclExtensions.cs#L23C13-L28C58" }, { "DocsId": "M:Microsoft.Win32.RegistryAclExtensions.SetAccessControl(Microsoft.Win32.RegistryKey,System.Security.AccessControl.RegistrySecurity)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.Registry.AccessControl/src/Microsoft/Win32/RegistryAclExtensions.cs#L33C13-L39C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.Registry.AccessControl/src/Microsoft/Win32/RegistryAclExtensions.cs#L33C13-L39C10" } ], "DocsId": "T:Microsoft.Win32.RegistryAclExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.Registry.AccessControl/src/Microsoft/Win32/RegistryAclExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.Registry.AccessControl/src/Microsoft/Win32/RegistryAclExtensions.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/Microsoft.Win32.SystemEvents.json b/xml/SourceLinkInformation/net-8.0/Microsoft.Win32.SystemEvents.json index c5e737d45bc..471988abe5f 100644 --- a/xml/SourceLinkInformation/net-8.0/Microsoft.Win32.SystemEvents.json +++ b/xml/SourceLinkInformation/net-8.0/Microsoft.Win32.SystemEvents.json @@ -1,489 +1,488 @@ { "Assembly": "Microsoft.Win32.SystemEvents", - "GUID": "2540C879A596468488ABB39C260AF140FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "EFE937B2159740089D8D102A4C48FE1EFFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Win32.PowerModeChangedEventArgs.#ctor(Microsoft.Win32.PowerModes)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/PowerModeChangedEventArgs.cs#L18C9-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/PowerModeChangedEventArgs.cs#L18C9-L21C10" }, { "DocsId": "P:Microsoft.Win32.PowerModeChangedEventArgs.Mode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/PowerModeChangedEventArgs.cs#L30C17-L30C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/PowerModeChangedEventArgs.cs#L30C17-L30C30" } ], "DocsId": "T:Microsoft.Win32.PowerModeChangedEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/PowerModeChangedEventArgs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/PowerModeChangedEventArgs.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Win32.PowerModeChangedEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/PowerModeChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/PowerModeChangedEventHandler.cs" }, { "DocsId": "M:Microsoft.Win32.PowerModeChangedEventHandler.Invoke(System.Object,Microsoft.Win32.PowerModeChangedEventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/PowerModeChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/PowerModeChangedEventHandler.cs" }, { "DocsId": "M:Microsoft.Win32.PowerModeChangedEventHandler.BeginInvoke(System.Object,Microsoft.Win32.PowerModeChangedEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/PowerModeChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/PowerModeChangedEventHandler.cs" }, { "DocsId": "M:Microsoft.Win32.PowerModeChangedEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/PowerModeChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/PowerModeChangedEventHandler.cs" } ], "DocsId": "T:Microsoft.Win32.PowerModeChangedEventHandler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/PowerModeChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/PowerModeChangedEventHandler.cs" }, { "Members": [ { "DocsId": "F:Microsoft.Win32.PowerModes.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/PowerModes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/PowerModes.cs" }, { "DocsId": "F:Microsoft.Win32.PowerModes.Resume", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/PowerModes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/PowerModes.cs" }, { "DocsId": "F:Microsoft.Win32.PowerModes.StatusChange", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/PowerModes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/PowerModes.cs" }, { "DocsId": "F:Microsoft.Win32.PowerModes.Suspend", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/PowerModes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/PowerModes.cs" } ], "DocsId": "T:Microsoft.Win32.PowerModes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/PowerModes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/PowerModes.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Win32.SessionEndedEventArgs.#ctor(Microsoft.Win32.SessionEndReasons)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndedEventArgs.cs#L18C9-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndedEventArgs.cs#L18C9-L21C10" }, { "DocsId": "P:Microsoft.Win32.SessionEndedEventArgs.Reason", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndedEventArgs.cs#L30C17-L30C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndedEventArgs.cs#L30C17-L30C32" } ], "DocsId": "T:Microsoft.Win32.SessionEndedEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndedEventArgs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndedEventArgs.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Win32.SessionEndedEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndedEventHandler.cs" }, { "DocsId": "M:Microsoft.Win32.SessionEndedEventHandler.Invoke(System.Object,Microsoft.Win32.SessionEndedEventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndedEventHandler.cs" }, { "DocsId": "M:Microsoft.Win32.SessionEndedEventHandler.BeginInvoke(System.Object,Microsoft.Win32.SessionEndedEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndedEventHandler.cs" }, { "DocsId": "M:Microsoft.Win32.SessionEndedEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndedEventHandler.cs" } ], "DocsId": "T:Microsoft.Win32.SessionEndedEventHandler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndedEventHandler.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Win32.SessionEndingEventArgs.#ctor(Microsoft.Win32.SessionEndReasons)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndingEventArgs.cs#L19C9-L22C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndingEventArgs.cs#L19C9-L22C10" }, { "DocsId": "P:Microsoft.Win32.SessionEndingEventArgs.Cancel", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndingEventArgs.cs#L31C17-L31C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndingEventArgs.cs#L31C17-L31C32" }, { "DocsId": "P:Microsoft.Win32.SessionEndingEventArgs.Reason", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndingEventArgs.cs#L46C17-L46C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndingEventArgs.cs#L46C17-L46C32" } ], "DocsId": "T:Microsoft.Win32.SessionEndingEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndingEventArgs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndingEventArgs.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Win32.SessionEndingEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndingEventHandler.cs" }, { "DocsId": "M:Microsoft.Win32.SessionEndingEventHandler.Invoke(System.Object,Microsoft.Win32.SessionEndingEventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndingEventHandler.cs" }, { "DocsId": "M:Microsoft.Win32.SessionEndingEventHandler.BeginInvoke(System.Object,Microsoft.Win32.SessionEndingEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndingEventHandler.cs" }, { "DocsId": "M:Microsoft.Win32.SessionEndingEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndingEventHandler.cs" } ], "DocsId": "T:Microsoft.Win32.SessionEndingEventHandler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndingEventHandler.cs" }, { "Members": [ { "DocsId": "F:Microsoft.Win32.SessionEndReasons.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndReasons.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndReasons.cs" }, { "DocsId": "F:Microsoft.Win32.SessionEndReasons.Logoff", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndReasons.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndReasons.cs" }, { "DocsId": "F:Microsoft.Win32.SessionEndReasons.SystemShutdown", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndReasons.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndReasons.cs" } ], "DocsId": "T:Microsoft.Win32.SessionEndReasons", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndReasons.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndReasons.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Win32.SessionSwitchEventArgs.#ctor(Microsoft.Win32.SessionSwitchReason)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchEventArgs.cs#L18C9-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchEventArgs.cs#L18C9-L21C10" }, { "DocsId": "P:Microsoft.Win32.SessionSwitchEventArgs.Reason", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchEventArgs.cs#L30C17-L30C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchEventArgs.cs#L30C17-L30C32" } ], "DocsId": "T:Microsoft.Win32.SessionSwitchEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchEventArgs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchEventArgs.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Win32.SessionSwitchEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchEventHandler.cs" }, { "DocsId": "M:Microsoft.Win32.SessionSwitchEventHandler.Invoke(System.Object,Microsoft.Win32.SessionSwitchEventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchEventHandler.cs" }, { "DocsId": "M:Microsoft.Win32.SessionSwitchEventHandler.BeginInvoke(System.Object,Microsoft.Win32.SessionSwitchEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchEventHandler.cs" }, { "DocsId": "M:Microsoft.Win32.SessionSwitchEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchEventHandler.cs" } ], "DocsId": "T:Microsoft.Win32.SessionSwitchEventHandler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchEventHandler.cs" }, { "Members": [ { "DocsId": "F:Microsoft.Win32.SessionSwitchReason.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchReason.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchReason.cs" }, { "DocsId": "F:Microsoft.Win32.SessionSwitchReason.ConsoleConnect", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchReason.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchReason.cs" }, { "DocsId": "F:Microsoft.Win32.SessionSwitchReason.ConsoleDisconnect", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchReason.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchReason.cs" }, { "DocsId": "F:Microsoft.Win32.SessionSwitchReason.RemoteConnect", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchReason.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchReason.cs" }, { "DocsId": "F:Microsoft.Win32.SessionSwitchReason.RemoteDisconnect", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchReason.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchReason.cs" }, { "DocsId": "F:Microsoft.Win32.SessionSwitchReason.SessionLogon", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchReason.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchReason.cs" }, { "DocsId": "F:Microsoft.Win32.SessionSwitchReason.SessionLogoff", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchReason.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchReason.cs" }, { "DocsId": "F:Microsoft.Win32.SessionSwitchReason.SessionLock", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchReason.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchReason.cs" }, { "DocsId": "F:Microsoft.Win32.SessionSwitchReason.SessionUnlock", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchReason.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchReason.cs" }, { "DocsId": "F:Microsoft.Win32.SessionSwitchReason.SessionRemoteControl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchReason.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchReason.cs" } ], "DocsId": "T:Microsoft.Win32.SessionSwitchReason", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchReason.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchReason.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Win32.SystemEvents.CreateTimer(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L390C13-L404C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L390C13-L404C28" }, { "DocsId": "M:Microsoft.Win32.SystemEvents.InvokeOnEventsThread(System.Delegate)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L755C13-L788C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L755C13-L788C10" }, { "DocsId": "M:Microsoft.Win32.SystemEvents.KillTimer(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L795C13-L805C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L795C13-L805C10" }, { "DocsId": "E:Microsoft.Win32.SystemEvents.DisplaySettingsChanging", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L106C17-L107C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L106C17-L107C14" }, { "DocsId": "E:Microsoft.Win32.SystemEvents.DisplaySettingsChanged", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L121C17-L122C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L121C17-L122C14" }, { "DocsId": "E:Microsoft.Win32.SystemEvents.EventsThreadShutdown", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L138C17-L139C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L138C17-L139C14" }, { "DocsId": "E:Microsoft.Win32.SystemEvents.InstalledFontsChanged", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L153C17-L154C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L153C17-L154C14" }, { "DocsId": "E:Microsoft.Win32.SystemEvents.LowMemory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L170C17-L172C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L170C17-L172C14" }, { "DocsId": "E:Microsoft.Win32.SystemEvents.PaletteChanged", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L187C17-L188C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L187C17-L188C14" }, { "DocsId": "E:Microsoft.Win32.SystemEvents.PowerModeChanged", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L203C17-L205C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L203C17-L205C14" }, { "DocsId": "E:Microsoft.Win32.SystemEvents.SessionEnded", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L219C17-L221C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L219C17-L221C14" }, { "DocsId": "E:Microsoft.Win32.SystemEvents.SessionEnding", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L235C17-L237C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L235C17-L237C14" }, { "DocsId": "E:Microsoft.Win32.SystemEvents.SessionSwitch", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L251C17-L254C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L251C17-L254C14" }, { "DocsId": "E:Microsoft.Win32.SystemEvents.TimeChanged", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L268C17-L270C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L268C17-L270C14" }, { "DocsId": "E:Microsoft.Win32.SystemEvents.TimerElapsed", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L284C17-L286C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L284C17-L286C14" }, { "DocsId": "E:Microsoft.Win32.SystemEvents.UserPreferenceChanged", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L301C17-L302C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L301C17-L302C14" }, { "DocsId": "E:Microsoft.Win32.SystemEvents.UserPreferenceChanging", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L316C17-L317C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L316C17-L317C14" } ], "DocsId": "T:Microsoft.Win32.SystemEvents", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Win32.TimerElapsedEventArgs.#ctor(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/TimerElapsedEventArgs.cs#L18C9-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/TimerElapsedEventArgs.cs#L18C9-L21C10" }, { "DocsId": "P:Microsoft.Win32.TimerElapsedEventArgs.TimerId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/TimerElapsedEventArgs.cs#L30C17-L30C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/TimerElapsedEventArgs.cs#L30C17-L30C33" } ], "DocsId": "T:Microsoft.Win32.TimerElapsedEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/TimerElapsedEventArgs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/TimerElapsedEventArgs.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Win32.TimerElapsedEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/TimerElapsedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/TimerElapsedEventHandler.cs" }, { "DocsId": "M:Microsoft.Win32.TimerElapsedEventHandler.Invoke(System.Object,Microsoft.Win32.TimerElapsedEventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/TimerElapsedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/TimerElapsedEventHandler.cs" }, { "DocsId": "M:Microsoft.Win32.TimerElapsedEventHandler.BeginInvoke(System.Object,Microsoft.Win32.TimerElapsedEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/TimerElapsedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/TimerElapsedEventHandler.cs" }, { "DocsId": "M:Microsoft.Win32.TimerElapsedEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/TimerElapsedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/TimerElapsedEventHandler.cs" } ], "DocsId": "T:Microsoft.Win32.TimerElapsedEventHandler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/TimerElapsedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/TimerElapsedEventHandler.cs" }, { "Members": [ { "DocsId": "F:Microsoft.Win32.UserPreferenceCategory.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" }, { "DocsId": "F:Microsoft.Win32.UserPreferenceCategory.Accessibility", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" }, { "DocsId": "F:Microsoft.Win32.UserPreferenceCategory.Color", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" }, { "DocsId": "F:Microsoft.Win32.UserPreferenceCategory.Desktop", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" }, { "DocsId": "F:Microsoft.Win32.UserPreferenceCategory.General", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" }, { "DocsId": "F:Microsoft.Win32.UserPreferenceCategory.Icon", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" }, { "DocsId": "F:Microsoft.Win32.UserPreferenceCategory.Keyboard", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" }, { "DocsId": "F:Microsoft.Win32.UserPreferenceCategory.Menu", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" }, { "DocsId": "F:Microsoft.Win32.UserPreferenceCategory.Mouse", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" }, { "DocsId": "F:Microsoft.Win32.UserPreferenceCategory.Policy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" }, { "DocsId": "F:Microsoft.Win32.UserPreferenceCategory.Power", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" }, { "DocsId": "F:Microsoft.Win32.UserPreferenceCategory.Screensaver", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" }, { "DocsId": "F:Microsoft.Win32.UserPreferenceCategory.Window", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" }, { "DocsId": "F:Microsoft.Win32.UserPreferenceCategory.Locale", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" }, { "DocsId": "F:Microsoft.Win32.UserPreferenceCategory.VisualStyle", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" } ], "DocsId": "T:Microsoft.Win32.UserPreferenceCategory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Win32.UserPreferenceChangedEventArgs.#ctor(Microsoft.Win32.UserPreferenceCategory)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangedEventArgs.cs#L18C9-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangedEventArgs.cs#L18C9-L21C10" }, { "DocsId": "P:Microsoft.Win32.UserPreferenceChangedEventArgs.Category", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangedEventArgs.cs#L30C17-L30C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangedEventArgs.cs#L30C17-L30C34" } ], "DocsId": "T:Microsoft.Win32.UserPreferenceChangedEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangedEventArgs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangedEventArgs.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Win32.UserPreferenceChangedEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangedEventHandler.cs" }, { "DocsId": "M:Microsoft.Win32.UserPreferenceChangedEventHandler.Invoke(System.Object,Microsoft.Win32.UserPreferenceChangedEventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangedEventHandler.cs" }, { "DocsId": "M:Microsoft.Win32.UserPreferenceChangedEventHandler.BeginInvoke(System.Object,Microsoft.Win32.UserPreferenceChangedEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangedEventHandler.cs" }, { "DocsId": "M:Microsoft.Win32.UserPreferenceChangedEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangedEventHandler.cs" } ], "DocsId": "T:Microsoft.Win32.UserPreferenceChangedEventHandler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangedEventHandler.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Win32.UserPreferenceChangingEventArgs.#ctor(Microsoft.Win32.UserPreferenceCategory)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangingEventArgs.cs#L18C9-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangingEventArgs.cs#L18C9-L21C10" }, { "DocsId": "P:Microsoft.Win32.UserPreferenceChangingEventArgs.Category", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangingEventArgs.cs#L30C17-L30C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangingEventArgs.cs#L30C17-L30C34" } ], "DocsId": "T:Microsoft.Win32.UserPreferenceChangingEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangingEventArgs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangingEventArgs.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Win32.UserPreferenceChangingEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangingEventHandler.cs" }, { "DocsId": "M:Microsoft.Win32.UserPreferenceChangingEventHandler.Invoke(System.Object,Microsoft.Win32.UserPreferenceChangingEventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangingEventHandler.cs" }, { "DocsId": "M:Microsoft.Win32.UserPreferenceChangingEventHandler.BeginInvoke(System.Object,Microsoft.Win32.UserPreferenceChangingEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangingEventHandler.cs" }, { "DocsId": "M:Microsoft.Win32.UserPreferenceChangingEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangingEventHandler.cs" } ], "DocsId": "T:Microsoft.Win32.UserPreferenceChangingEventHandler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangingEventHandler.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/System.CodeDom.json b/xml/SourceLinkInformation/net-8.0/System.CodeDom.json index 695b65452e7..099b4352411 100644 --- a/xml/SourceLinkInformation/net-8.0/System.CodeDom.json +++ b/xml/SourceLinkInformation/net-8.0/System.CodeDom.json @@ -1,4229 +1,4228 @@ { "Assembly": "System.CodeDom", - "GUID": "0F24E02ED75641E4B2DC923B566A763EFFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "A288F5D810524C50A139F3A62F67C7C8FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:System.CodeDom.CodeArgumentReferenceExpression.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeArgumentReferenceExpression.cs#L10C9-L10C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeArgumentReferenceExpression.cs#L10C9-L10C53" }, { "DocsId": "M:System.CodeDom.CodeArgumentReferenceExpression.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeArgumentReferenceExpression.cs#L12C9-L15C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeArgumentReferenceExpression.cs#L12C9-L15C10" }, { "DocsId": "P:System.CodeDom.CodeArgumentReferenceExpression.ParameterName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeArgumentReferenceExpression.cs#L19C20-L19C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeArgumentReferenceExpression.cs#L19C20-L19C50" } ], "DocsId": "T:System.CodeDom.CodeArgumentReferenceExpression", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeArgumentReferenceExpression.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeArgumentReferenceExpression.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeArrayCreateExpression.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayCreateExpression.cs#L8C9-L13C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayCreateExpression.cs#L8C9-L13C10" }, { "DocsId": "M:System.CodeDom.CodeArrayCreateExpression.#ctor(System.CodeDom.CodeTypeReference,System.CodeDom.CodeExpression[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayCreateExpression.cs#L8C9-L19C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayCreateExpression.cs#L8C9-L19C10" }, { "DocsId": "M:System.CodeDom.CodeArrayCreateExpression.#ctor(System.String,System.CodeDom.CodeExpression[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayCreateExpression.cs#L8C9-L25C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayCreateExpression.cs#L8C9-L25C10" }, { "DocsId": "M:System.CodeDom.CodeArrayCreateExpression.#ctor(System.Type,System.CodeDom.CodeExpression[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayCreateExpression.cs#L8C9-L31C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayCreateExpression.cs#L8C9-L31C10" }, { "DocsId": "M:System.CodeDom.CodeArrayCreateExpression.#ctor(System.CodeDom.CodeTypeReference,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayCreateExpression.cs#L8C9-L37C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayCreateExpression.cs#L8C9-L37C10" }, { "DocsId": "M:System.CodeDom.CodeArrayCreateExpression.#ctor(System.String,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayCreateExpression.cs#L8C9-L43C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayCreateExpression.cs#L8C9-L43C10" }, { "DocsId": "M:System.CodeDom.CodeArrayCreateExpression.#ctor(System.Type,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayCreateExpression.cs#L8C9-L49C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayCreateExpression.cs#L8C9-L49C10" }, { "DocsId": "M:System.CodeDom.CodeArrayCreateExpression.#ctor(System.CodeDom.CodeTypeReference,System.CodeDom.CodeExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayCreateExpression.cs#L8C9-L55C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayCreateExpression.cs#L8C9-L55C10" }, { "DocsId": "M:System.CodeDom.CodeArrayCreateExpression.#ctor(System.String,System.CodeDom.CodeExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayCreateExpression.cs#L8C9-L61C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayCreateExpression.cs#L8C9-L61C10" }, { "DocsId": "M:System.CodeDom.CodeArrayCreateExpression.#ctor(System.Type,System.CodeDom.CodeExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayCreateExpression.cs#L8C9-L67C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayCreateExpression.cs#L8C9-L67C10" }, { "DocsId": "P:System.CodeDom.CodeArrayCreateExpression.CreateType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayCreateExpression.cs#L71C20-L71C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayCreateExpression.cs#L71C20-L71C61" }, { "DocsId": "P:System.CodeDom.CodeArrayCreateExpression.Initializers", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayCreateExpression.cs#L75C57-L75C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayCreateExpression.cs#L75C57-L75C70" }, { "DocsId": "P:System.CodeDom.CodeArrayCreateExpression.Size", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayCreateExpression.cs#L77C27-L77C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayCreateExpression.cs#L77C27-L77C31" }, { "DocsId": "P:System.CodeDom.CodeArrayCreateExpression.SizeExpression", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayCreateExpression.cs#L79C48-L79C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayCreateExpression.cs#L79C48-L79C52" } ], "DocsId": "T:System.CodeDom.CodeArrayCreateExpression", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayCreateExpression.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayCreateExpression.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeArrayIndexerExpression.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayIndexerExpression.cs#L10C9-L10C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayIndexerExpression.cs#L10C9-L10C48" }, { "DocsId": "M:System.CodeDom.CodeArrayIndexerExpression.#ctor(System.CodeDom.CodeExpression,System.CodeDom.CodeExpression[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayIndexerExpression.cs#L12C9-L16C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayIndexerExpression.cs#L12C9-L16C10" }, { "DocsId": "P:System.CodeDom.CodeArrayIndexerExpression.TargetObject", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayIndexerExpression.cs#L18C46-L18C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayIndexerExpression.cs#L18C46-L18C50" }, { "DocsId": "P:System.CodeDom.CodeArrayIndexerExpression.Indices", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayIndexerExpression.cs#L20C52-L20C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayIndexerExpression.cs#L20C52-L20C95" } ], "DocsId": "T:System.CodeDom.CodeArrayIndexerExpression", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayIndexerExpression.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayIndexerExpression.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeAssignStatement.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAssignStatement.cs#L8C9-L8C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAssignStatement.cs#L8C9-L8C41" }, { "DocsId": "M:System.CodeDom.CodeAssignStatement.#ctor(System.CodeDom.CodeExpression,System.CodeDom.CodeExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAssignStatement.cs#L10C9-L14C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAssignStatement.cs#L10C9-L14C10" }, { "DocsId": "P:System.CodeDom.CodeAssignStatement.Left", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAssignStatement.cs#L16C38-L16C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAssignStatement.cs#L16C38-L16C42" }, { "DocsId": "P:System.CodeDom.CodeAssignStatement.Right", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAssignStatement.cs#L18C39-L18C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAssignStatement.cs#L18C39-L18C43" } ], "DocsId": "T:System.CodeDom.CodeAssignStatement", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAssignStatement.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAssignStatement.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeAttachEventStatement.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttachEventStatement.cs#L10C9-L10C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttachEventStatement.cs#L10C9-L10C46" }, { "DocsId": "M:System.CodeDom.CodeAttachEventStatement.#ctor(System.CodeDom.CodeEventReferenceExpression,System.CodeDom.CodeExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttachEventStatement.cs#L12C9-L16C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttachEventStatement.cs#L12C9-L16C10" }, { "DocsId": "M:System.CodeDom.CodeAttachEventStatement.#ctor(System.CodeDom.CodeExpression,System.String,System.CodeDom.CodeExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttachEventStatement.cs#L19C13-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttachEventStatement.cs#L19C13-L21C10" }, { "DocsId": "P:System.CodeDom.CodeAttachEventStatement.Event", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttachEventStatement.cs#L25C20-L25C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttachEventStatement.cs#L25C20-L25C68" }, { "DocsId": "P:System.CodeDom.CodeAttachEventStatement.Listener", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttachEventStatement.cs#L29C42-L29C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttachEventStatement.cs#L29C42-L29C46" } ], "DocsId": "T:System.CodeDom.CodeAttachEventStatement", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttachEventStatement.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttachEventStatement.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeAttributeArgument.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgument.cs#L10C9-L10C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgument.cs#L10C9-L10C43" }, { "DocsId": "M:System.CodeDom.CodeAttributeArgument.#ctor(System.CodeDom.CodeExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgument.cs#L12C9-L15C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgument.cs#L12C9-L15C10" }, { "DocsId": "M:System.CodeDom.CodeAttributeArgument.#ctor(System.String,System.CodeDom.CodeExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgument.cs#L17C9-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgument.cs#L17C9-L21C10" }, { "DocsId": "P:System.CodeDom.CodeAttributeArgument.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgument.cs#L25C20-L25C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgument.cs#L25C20-L25C41" }, { "DocsId": "P:System.CodeDom.CodeAttributeArgument.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgument.cs#L29C39-L29C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgument.cs#L29C39-L29C43" } ], "DocsId": "T:System.CodeDom.CodeAttributeArgument", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgument.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgument.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeAttributeArgumentCollection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgumentCollection.cs#L10C9-L10C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgumentCollection.cs#L10C9-L10C53" }, { "DocsId": "M:System.CodeDom.CodeAttributeArgumentCollection.#ctor(System.CodeDom.CodeAttributeArgumentCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgumentCollection.cs#L12C9-L15C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgumentCollection.cs#L12C9-L15C10" }, { "DocsId": "M:System.CodeDom.CodeAttributeArgumentCollection.#ctor(System.CodeDom.CodeAttributeArgument[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgumentCollection.cs#L17C9-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgumentCollection.cs#L17C9-L20C10" }, { "DocsId": "M:System.CodeDom.CodeAttributeArgumentCollection.Add(System.CodeDom.CodeAttributeArgument)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgumentCollection.cs#L28C56-L28C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgumentCollection.cs#L28C56-L28C71" }, { "DocsId": "M:System.CodeDom.CodeAttributeArgumentCollection.AddRange(System.CodeDom.CodeAttributeArgument[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgumentCollection.cs#L32C13-L41C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgumentCollection.cs#L32C13-L41C10" }, { "DocsId": "M:System.CodeDom.CodeAttributeArgumentCollection.AddRange(System.CodeDom.CodeAttributeArgumentCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgumentCollection.cs#L45C13-L55C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgumentCollection.cs#L45C13-L55C10" }, { "DocsId": "M:System.CodeDom.CodeAttributeArgumentCollection.Contains(System.CodeDom.CodeAttributeArgument)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgumentCollection.cs#L57C62-L57C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgumentCollection.cs#L57C62-L57C82" }, { "DocsId": "M:System.CodeDom.CodeAttributeArgumentCollection.CopyTo(System.CodeDom.CodeAttributeArgument[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgumentCollection.cs#L59C73-L59C98" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgumentCollection.cs#L59C73-L59C98" }, { "DocsId": "M:System.CodeDom.CodeAttributeArgumentCollection.IndexOf(System.CodeDom.CodeAttributeArgument)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgumentCollection.cs#L61C60-L61C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgumentCollection.cs#L61C60-L61C79" }, { "DocsId": "M:System.CodeDom.CodeAttributeArgumentCollection.Insert(System.Int32,System.CodeDom.CodeAttributeArgument)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgumentCollection.cs#L63C71-L63C96" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgumentCollection.cs#L63C71-L63C96" }, { "DocsId": "M:System.CodeDom.CodeAttributeArgumentCollection.Remove(System.CodeDom.CodeAttributeArgument)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgumentCollection.cs#L65C60-L65C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgumentCollection.cs#L65C60-L65C78" }, { "DocsId": "P:System.CodeDom.CodeAttributeArgumentCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgumentCollection.cs#L24C20-L24C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgumentCollection.cs#L24C20-L24C54" } ], "DocsId": "T:System.CodeDom.CodeAttributeArgumentCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgumentCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgumentCollection.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeAttributeDeclaration.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclaration.cs#L9C9-L12C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclaration.cs#L9C9-L12C46" }, { "DocsId": "M:System.CodeDom.CodeAttributeDeclaration.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclaration.cs#L9C9-L17C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclaration.cs#L9C9-L17C10" }, { "DocsId": "M:System.CodeDom.CodeAttributeDeclaration.#ctor(System.String,System.CodeDom.CodeAttributeArgument[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclaration.cs#L9C9-L23C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclaration.cs#L9C9-L23C10" }, { "DocsId": "M:System.CodeDom.CodeAttributeDeclaration.#ctor(System.CodeDom.CodeTypeReference)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclaration.cs#L25C76-L25C105" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclaration.cs#L25C76-L25C105" }, { "DocsId": "M:System.CodeDom.CodeAttributeDeclaration.#ctor(System.CodeDom.CodeTypeReference,System.CodeDom.CodeAttributeArgument[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclaration.cs#L9C9-L39C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclaration.cs#L9C9-L39C10" }, { "DocsId": "P:System.CodeDom.CodeAttributeDeclaration.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclaration.cs#L43C20-L43C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclaration.cs#L43C20-L43C41" }, { "DocsId": "P:System.CodeDom.CodeAttributeDeclaration.Arguments", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclaration.cs#L51C61-L51C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclaration.cs#L51C61-L51C71" }, { "DocsId": "P:System.CodeDom.CodeAttributeDeclaration.AttributeType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclaration.cs#L53C51-L53C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclaration.cs#L53C51-L53C65" } ], "DocsId": "T:System.CodeDom.CodeAttributeDeclaration", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclaration.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclaration.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeAttributeDeclarationCollection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclarationCollection.cs#L10C9-L12C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclarationCollection.cs#L10C9-L12C10" }, { "DocsId": "M:System.CodeDom.CodeAttributeDeclarationCollection.#ctor(System.CodeDom.CodeAttributeDeclarationCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclarationCollection.cs#L14C9-L17C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclarationCollection.cs#L14C9-L17C10" }, { "DocsId": "M:System.CodeDom.CodeAttributeDeclarationCollection.#ctor(System.CodeDom.CodeAttributeDeclaration[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclarationCollection.cs#L19C9-L22C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclarationCollection.cs#L19C9-L22C10" }, { "DocsId": "M:System.CodeDom.CodeAttributeDeclarationCollection.Add(System.CodeDom.CodeAttributeDeclaration)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclarationCollection.cs#L30C59-L30C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclarationCollection.cs#L30C59-L30C74" }, { "DocsId": "M:System.CodeDom.CodeAttributeDeclarationCollection.AddRange(System.CodeDom.CodeAttributeDeclaration[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclarationCollection.cs#L34C13-L43C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclarationCollection.cs#L34C13-L43C10" }, { "DocsId": "M:System.CodeDom.CodeAttributeDeclarationCollection.AddRange(System.CodeDom.CodeAttributeDeclarationCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclarationCollection.cs#L47C13-L57C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclarationCollection.cs#L47C13-L57C10" }, { "DocsId": "M:System.CodeDom.CodeAttributeDeclarationCollection.Contains(System.CodeDom.CodeAttributeDeclaration)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclarationCollection.cs#L59C65-L59C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclarationCollection.cs#L59C65-L59C85" }, { "DocsId": "M:System.CodeDom.CodeAttributeDeclarationCollection.CopyTo(System.CodeDom.CodeAttributeDeclaration[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclarationCollection.cs#L61C76-L61C101" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclarationCollection.cs#L61C76-L61C101" }, { "DocsId": "M:System.CodeDom.CodeAttributeDeclarationCollection.IndexOf(System.CodeDom.CodeAttributeDeclaration)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclarationCollection.cs#L63C63-L63C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclarationCollection.cs#L63C63-L63C82" }, { "DocsId": "M:System.CodeDom.CodeAttributeDeclarationCollection.Insert(System.Int32,System.CodeDom.CodeAttributeDeclaration)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclarationCollection.cs#L65C74-L65C99" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclarationCollection.cs#L65C74-L65C99" }, { "DocsId": "M:System.CodeDom.CodeAttributeDeclarationCollection.Remove(System.CodeDom.CodeAttributeDeclaration)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclarationCollection.cs#L67C63-L67C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclarationCollection.cs#L67C63-L67C81" }, { "DocsId": "P:System.CodeDom.CodeAttributeDeclarationCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclarationCollection.cs#L26C20-L26C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclarationCollection.cs#L26C20-L26C61" } ], "DocsId": "T:System.CodeDom.CodeAttributeDeclarationCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclarationCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclarationCollection.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeBaseReferenceExpression.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeBaseReferenceExpression.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeBaseReferenceExpression.cs" } ], "DocsId": "T:System.CodeDom.CodeBaseReferenceExpression", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeBaseReferenceExpression.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeBaseReferenceExpression.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeBinaryOperatorExpression.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorExpression.cs#L8C9-L8C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorExpression.cs#L8C9-L8C50" }, { "DocsId": "M:System.CodeDom.CodeBinaryOperatorExpression.#ctor(System.CodeDom.CodeExpression,System.CodeDom.CodeBinaryOperatorType,System.CodeDom.CodeExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorExpression.cs#L10C9-L15C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorExpression.cs#L10C9-L15C10" }, { "DocsId": "P:System.CodeDom.CodeBinaryOperatorExpression.Right", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorExpression.cs#L17C39-L17C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorExpression.cs#L17C39-L17C43" }, { "DocsId": "P:System.CodeDom.CodeBinaryOperatorExpression.Left", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorExpression.cs#L19C38-L19C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorExpression.cs#L19C38-L19C42" }, { "DocsId": "P:System.CodeDom.CodeBinaryOperatorExpression.Operator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorExpression.cs#L21C50-L21C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorExpression.cs#L21C50-L21C54" } ], "DocsId": "T:System.CodeDom.CodeBinaryOperatorExpression", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorExpression.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorExpression.cs" }, { "Members": [ { "DocsId": "F:System.CodeDom.CodeBinaryOperatorType.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" }, { "DocsId": "F:System.CodeDom.CodeBinaryOperatorType.Add", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" }, { "DocsId": "F:System.CodeDom.CodeBinaryOperatorType.Subtract", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" }, { "DocsId": "F:System.CodeDom.CodeBinaryOperatorType.Multiply", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" }, { "DocsId": "F:System.CodeDom.CodeBinaryOperatorType.Divide", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" }, { "DocsId": "F:System.CodeDom.CodeBinaryOperatorType.Modulus", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" }, { "DocsId": "F:System.CodeDom.CodeBinaryOperatorType.Assign", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" }, { "DocsId": "F:System.CodeDom.CodeBinaryOperatorType.IdentityInequality", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" }, { "DocsId": "F:System.CodeDom.CodeBinaryOperatorType.IdentityEquality", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" }, { "DocsId": "F:System.CodeDom.CodeBinaryOperatorType.ValueEquality", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" }, { "DocsId": "F:System.CodeDom.CodeBinaryOperatorType.BitwiseOr", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" }, { "DocsId": "F:System.CodeDom.CodeBinaryOperatorType.BitwiseAnd", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" }, { "DocsId": "F:System.CodeDom.CodeBinaryOperatorType.BooleanOr", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" }, { "DocsId": "F:System.CodeDom.CodeBinaryOperatorType.BooleanAnd", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" }, { "DocsId": "F:System.CodeDom.CodeBinaryOperatorType.LessThan", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" }, { "DocsId": "F:System.CodeDom.CodeBinaryOperatorType.LessThanOrEqual", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" }, { "DocsId": "F:System.CodeDom.CodeBinaryOperatorType.GreaterThan", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" }, { "DocsId": "F:System.CodeDom.CodeBinaryOperatorType.GreaterThanOrEqual", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" } ], "DocsId": "T:System.CodeDom.CodeBinaryOperatorType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeCastExpression.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCastExpression.cs#L10C9-L10C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCastExpression.cs#L10C9-L10C40" }, { "DocsId": "M:System.CodeDom.CodeCastExpression.#ctor(System.CodeDom.CodeTypeReference,System.CodeDom.CodeExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCastExpression.cs#L12C9-L16C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCastExpression.cs#L12C9-L16C10" }, { "DocsId": "M:System.CodeDom.CodeCastExpression.#ctor(System.String,System.CodeDom.CodeExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCastExpression.cs#L18C9-L22C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCastExpression.cs#L18C9-L22C10" }, { "DocsId": "M:System.CodeDom.CodeCastExpression.#ctor(System.Type,System.CodeDom.CodeExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCastExpression.cs#L24C9-L28C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCastExpression.cs#L24C9-L28C10" }, { "DocsId": "P:System.CodeDom.CodeCastExpression.TargetType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCastExpression.cs#L32C20-L32C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCastExpression.cs#L32C20-L32C61" }, { "DocsId": "P:System.CodeDom.CodeCastExpression.Expression", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCastExpression.cs#L36C44-L36C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCastExpression.cs#L36C44-L36C48" } ], "DocsId": "T:System.CodeDom.CodeCastExpression", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCastExpression.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCastExpression.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeCatchClause.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClause.cs#L12C9-L12C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClause.cs#L12C9-L12C37" }, { "DocsId": "M:System.CodeDom.CodeCatchClause.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClause.cs#L14C9-L17C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClause.cs#L14C9-L17C10" }, { "DocsId": "M:System.CodeDom.CodeCatchClause.#ctor(System.String,System.CodeDom.CodeTypeReference)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClause.cs#L19C9-L23C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClause.cs#L19C9-L23C10" }, { "DocsId": "M:System.CodeDom.CodeCatchClause.#ctor(System.String,System.CodeDom.CodeTypeReference,System.CodeDom.CodeStatement[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClause.cs#L25C9-L30C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClause.cs#L25C9-L30C10" }, { "DocsId": "P:System.CodeDom.CodeCatchClause.LocalName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClause.cs#L34C20-L34C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClause.cs#L34C20-L34C46" }, { "DocsId": "P:System.CodeDom.CodeCatchClause.CatchExceptionType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClause.cs#L40C20-L40C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClause.cs#L40C20-L40C84" }, { "DocsId": "P:System.CodeDom.CodeCatchClause.Statements", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClause.cs#L44C54-L44C99" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClause.cs#L44C54-L44C99" } ], "DocsId": "T:System.CodeDom.CodeCatchClause", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClause.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClause.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeCatchClauseCollection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClauseCollection.cs#L10C9-L10C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClauseCollection.cs#L10C9-L10C47" }, { "DocsId": "M:System.CodeDom.CodeCatchClauseCollection.#ctor(System.CodeDom.CodeCatchClauseCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClauseCollection.cs#L12C9-L15C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClauseCollection.cs#L12C9-L15C10" }, { "DocsId": "M:System.CodeDom.CodeCatchClauseCollection.#ctor(System.CodeDom.CodeCatchClause[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClauseCollection.cs#L17C9-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClauseCollection.cs#L17C9-L20C10" }, { "DocsId": "M:System.CodeDom.CodeCatchClauseCollection.Add(System.CodeDom.CodeCatchClause)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClauseCollection.cs#L28C50-L28C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClauseCollection.cs#L28C50-L28C65" }, { "DocsId": "M:System.CodeDom.CodeCatchClauseCollection.AddRange(System.CodeDom.CodeCatchClause[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClauseCollection.cs#L32C13-L41C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClauseCollection.cs#L32C13-L41C10" }, { "DocsId": "M:System.CodeDom.CodeCatchClauseCollection.AddRange(System.CodeDom.CodeCatchClauseCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClauseCollection.cs#L45C13-L55C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClauseCollection.cs#L45C13-L55C10" }, { "DocsId": "M:System.CodeDom.CodeCatchClauseCollection.Contains(System.CodeDom.CodeCatchClause)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClauseCollection.cs#L57C56-L57C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClauseCollection.cs#L57C56-L57C76" }, { "DocsId": "M:System.CodeDom.CodeCatchClauseCollection.CopyTo(System.CodeDom.CodeCatchClause[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClauseCollection.cs#L59C67-L59C92" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClauseCollection.cs#L59C67-L59C92" }, { "DocsId": "M:System.CodeDom.CodeCatchClauseCollection.IndexOf(System.CodeDom.CodeCatchClause)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClauseCollection.cs#L61C54-L61C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClauseCollection.cs#L61C54-L61C73" }, { "DocsId": "M:System.CodeDom.CodeCatchClauseCollection.Insert(System.Int32,System.CodeDom.CodeCatchClause)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClauseCollection.cs#L63C65-L63C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClauseCollection.cs#L63C65-L63C90" }, { "DocsId": "M:System.CodeDom.CodeCatchClauseCollection.Remove(System.CodeDom.CodeCatchClause)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClauseCollection.cs#L65C54-L65C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClauseCollection.cs#L65C54-L65C72" }, { "DocsId": "P:System.CodeDom.CodeCatchClauseCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClauseCollection.cs#L24C20-L24C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClauseCollection.cs#L24C20-L24C52" } ], "DocsId": "T:System.CodeDom.CodeCatchClauseCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClauseCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClauseCollection.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeChecksumPragma.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeChecksumPragma.cs#L10C9-L12C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeChecksumPragma.cs#L10C9-L12C10" }, { "DocsId": "M:System.CodeDom.CodeChecksumPragma.#ctor(System.String,System.Guid,System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeChecksumPragma.cs#L14C9-L19C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeChecksumPragma.cs#L14C9-L19C10" }, { "DocsId": "P:System.CodeDom.CodeChecksumPragma.FileName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeChecksumPragma.cs#L23C20-L23C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeChecksumPragma.cs#L23C20-L23C45" }, { "DocsId": "P:System.CodeDom.CodeChecksumPragma.ChecksumAlgorithmId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeChecksumPragma.cs#L27C43-L27C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeChecksumPragma.cs#L27C43-L27C47" }, { "DocsId": "P:System.CodeDom.CodeChecksumPragma.ChecksumData", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeChecksumPragma.cs#L29C38-L29C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeChecksumPragma.cs#L29C38-L29C42" } ], "DocsId": "T:System.CodeDom.CodeChecksumPragma", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeChecksumPragma.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeChecksumPragma.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeComment.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeComment.cs#L10C9-L10C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeComment.cs#L10C9-L10C33" }, { "DocsId": "M:System.CodeDom.CodeComment.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeComment.cs#L12C9-L15C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeComment.cs#L12C9-L15C10" }, { "DocsId": "M:System.CodeDom.CodeComment.#ctor(System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeComment.cs#L17C9-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeComment.cs#L17C9-L21C10" }, { "DocsId": "P:System.CodeDom.CodeComment.DocComment", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeComment.cs#L23C34-L23C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeComment.cs#L23C34-L23C38" }, { "DocsId": "P:System.CodeDom.CodeComment.Text", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeComment.cs#L27C20-L27C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeComment.cs#L27C20-L27C41" } ], "DocsId": "T:System.CodeDom.CodeComment", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeComment.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeComment.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeCommentStatement.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatement.cs#L8C9-L8C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatement.cs#L8C9-L8C42" }, { "DocsId": "M:System.CodeDom.CodeCommentStatement.#ctor(System.CodeDom.CodeComment)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatement.cs#L10C9-L13C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatement.cs#L10C9-L13C10" }, { "DocsId": "M:System.CodeDom.CodeCommentStatement.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatement.cs#L15C9-L18C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatement.cs#L15C9-L18C10" }, { "DocsId": "M:System.CodeDom.CodeCommentStatement.#ctor(System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatement.cs#L20C9-L23C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatement.cs#L20C9-L23C10" }, { "DocsId": "P:System.CodeDom.CodeCommentStatement.Comment", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatement.cs#L25C38-L25C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatement.cs#L25C38-L25C42" } ], "DocsId": "T:System.CodeDom.CodeCommentStatement", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatement.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatement.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeCommentStatementCollection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatementCollection.cs#L10C9-L10C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatementCollection.cs#L10C9-L10C52" }, { "DocsId": "M:System.CodeDom.CodeCommentStatementCollection.#ctor(System.CodeDom.CodeCommentStatementCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatementCollection.cs#L12C9-L15C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatementCollection.cs#L12C9-L15C10" }, { "DocsId": "M:System.CodeDom.CodeCommentStatementCollection.#ctor(System.CodeDom.CodeCommentStatement[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatementCollection.cs#L17C9-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatementCollection.cs#L17C9-L20C10" }, { "DocsId": "M:System.CodeDom.CodeCommentStatementCollection.Add(System.CodeDom.CodeCommentStatement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatementCollection.cs#L28C55-L28C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatementCollection.cs#L28C55-L28C70" }, { "DocsId": "M:System.CodeDom.CodeCommentStatementCollection.AddRange(System.CodeDom.CodeCommentStatement[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatementCollection.cs#L32C13-L41C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatementCollection.cs#L32C13-L41C10" }, { "DocsId": "M:System.CodeDom.CodeCommentStatementCollection.AddRange(System.CodeDom.CodeCommentStatementCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatementCollection.cs#L45C13-L55C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatementCollection.cs#L45C13-L55C10" }, { "DocsId": "M:System.CodeDom.CodeCommentStatementCollection.Contains(System.CodeDom.CodeCommentStatement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatementCollection.cs#L57C61-L57C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatementCollection.cs#L57C61-L57C81" }, { "DocsId": "M:System.CodeDom.CodeCommentStatementCollection.CopyTo(System.CodeDom.CodeCommentStatement[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatementCollection.cs#L59C72-L59C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatementCollection.cs#L59C72-L59C97" }, { "DocsId": "M:System.CodeDom.CodeCommentStatementCollection.IndexOf(System.CodeDom.CodeCommentStatement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatementCollection.cs#L61C59-L61C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatementCollection.cs#L61C59-L61C78" }, { "DocsId": "M:System.CodeDom.CodeCommentStatementCollection.Insert(System.Int32,System.CodeDom.CodeCommentStatement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatementCollection.cs#L63C70-L63C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatementCollection.cs#L63C70-L63C95" }, { "DocsId": "M:System.CodeDom.CodeCommentStatementCollection.Remove(System.CodeDom.CodeCommentStatement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatementCollection.cs#L65C59-L65C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatementCollection.cs#L65C59-L65C77" }, { "DocsId": "P:System.CodeDom.CodeCommentStatementCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatementCollection.cs#L24C19-L24C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatementCollection.cs#L24C19-L24C60" } ], "DocsId": "T:System.CodeDom.CodeCommentStatementCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatementCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatementCollection.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeCompileUnit.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCompileUnit.cs#L18C62-L16C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCompileUnit.cs#L18C62-L16C37" }, { "DocsId": "P:System.CodeDom.CodeCompileUnit.Namespaces", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCompileUnit.cs#L18C53-L18C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCompileUnit.cs#L18C53-L18C57" }, { "DocsId": "P:System.CodeDom.CodeCompileUnit.ReferencedAssemblies", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCompileUnit.cs#L20C57-L20C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCompileUnit.cs#L20C57-L20C95" }, { "DocsId": "P:System.CodeDom.CodeCompileUnit.AssemblyCustomAttributes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCompileUnit.cs#L22C79-L22C135" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCompileUnit.cs#L22C79-L22C135" }, { "DocsId": "P:System.CodeDom.CodeCompileUnit.StartDirectives", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCompileUnit.cs#L24C59-L24C109" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCompileUnit.cs#L24C59-L24C109" }, { "DocsId": "P:System.CodeDom.CodeCompileUnit.EndDirectives", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCompileUnit.cs#L26C57-L26C105" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCompileUnit.cs#L26C57-L26C105" } ], "DocsId": "T:System.CodeDom.CodeCompileUnit", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCompileUnit.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCompileUnit.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeConditionStatement.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeConditionStatement.cs#L25C66-L8C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeConditionStatement.cs#L25C66-L8C44" }, { "DocsId": "M:System.CodeDom.CodeConditionStatement.#ctor(System.CodeDom.CodeExpression,System.CodeDom.CodeStatement[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeConditionStatement.cs#L25C66-L14C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeConditionStatement.cs#L25C66-L14C10" }, { "DocsId": "M:System.CodeDom.CodeConditionStatement.#ctor(System.CodeDom.CodeExpression,System.CodeDom.CodeStatement[],System.CodeDom.CodeStatement[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeConditionStatement.cs#L25C66-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeConditionStatement.cs#L25C66-L21C10" }, { "DocsId": "P:System.CodeDom.CodeConditionStatement.Condition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeConditionStatement.cs#L23C43-L23C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeConditionStatement.cs#L23C43-L23C47" }, { "DocsId": "P:System.CodeDom.CodeConditionStatement.TrueStatements", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeConditionStatement.cs#L25C57-L25C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeConditionStatement.cs#L25C57-L25C61" }, { "DocsId": "P:System.CodeDom.CodeConditionStatement.FalseStatements", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeConditionStatement.cs#L27C58-L27C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeConditionStatement.cs#L27C58-L27C62" } ], "DocsId": "T:System.CodeDom.CodeConditionStatement", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeConditionStatement.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeConditionStatement.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeConstructor.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeConstructor.cs#L13C72-L11C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeConstructor.cs#L13C72-L11C10" }, { "DocsId": "P:System.CodeDom.CodeConstructor.BaseConstructorArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeConstructor.cs#L13C63-L13C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeConstructor.cs#L13C63-L13C67" }, { "DocsId": "P:System.CodeDom.CodeConstructor.ChainedConstructorArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeConstructor.cs#L15C66-L15C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeConstructor.cs#L15C66-L15C70" } ], "DocsId": "T:System.CodeDom.CodeConstructor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeConstructor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeConstructor.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeDefaultValueExpression.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeDefaultValueExpression.cs#L10C9-L10C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeDefaultValueExpression.cs#L10C9-L10C48" }, { "DocsId": "M:System.CodeDom.CodeDefaultValueExpression.#ctor(System.CodeDom.CodeTypeReference)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeDefaultValueExpression.cs#L12C9-L15C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeDefaultValueExpression.cs#L12C9-L15C10" }, { "DocsId": "P:System.CodeDom.CodeDefaultValueExpression.Type", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeDefaultValueExpression.cs#L19C20-L19C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeDefaultValueExpression.cs#L19C20-L19C55" } ], "DocsId": "T:System.CodeDom.CodeDefaultValueExpression", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeDefaultValueExpression.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeDefaultValueExpression.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeDelegateCreateExpression.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeDelegateCreateExpression.cs#L11C9-L11C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeDelegateCreateExpression.cs#L11C9-L11C50" }, { "DocsId": "M:System.CodeDom.CodeDelegateCreateExpression.#ctor(System.CodeDom.CodeTypeReference,System.CodeDom.CodeExpression,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeDelegateCreateExpression.cs#L13C9-L18C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeDelegateCreateExpression.cs#L13C9-L18C10" }, { "DocsId": "P:System.CodeDom.CodeDelegateCreateExpression.DelegateType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeDelegateCreateExpression.cs#L22C20-L22C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeDelegateCreateExpression.cs#L22C20-L22C63" }, { "DocsId": "P:System.CodeDom.CodeDelegateCreateExpression.TargetObject", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeDelegateCreateExpression.cs#L26C46-L26C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeDelegateCreateExpression.cs#L26C46-L26C50" }, { "DocsId": "P:System.CodeDom.CodeDelegateCreateExpression.MethodName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeDelegateCreateExpression.cs#L30C20-L30C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeDelegateCreateExpression.cs#L30C20-L30C47" } ], "DocsId": "T:System.CodeDom.CodeDelegateCreateExpression", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeDelegateCreateExpression.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeDelegateCreateExpression.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeDelegateInvokeExpression.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeDelegateInvokeExpression.cs#L23C63-L8C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeDelegateInvokeExpression.cs#L23C63-L8C50" }, { "DocsId": "M:System.CodeDom.CodeDelegateInvokeExpression.#ctor(System.CodeDom.CodeExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeDelegateInvokeExpression.cs#L23C63-L13C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeDelegateInvokeExpression.cs#L23C63-L13C10" }, { "DocsId": "M:System.CodeDom.CodeDelegateInvokeExpression.#ctor(System.CodeDom.CodeExpression,System.CodeDom.CodeExpression[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeDelegateInvokeExpression.cs#L23C63-L19C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeDelegateInvokeExpression.cs#L23C63-L19C10" }, { "DocsId": "P:System.CodeDom.CodeDelegateInvokeExpression.TargetObject", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeDelegateInvokeExpression.cs#L21C46-L21C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeDelegateInvokeExpression.cs#L21C46-L21C50" }, { "DocsId": "P:System.CodeDom.CodeDelegateInvokeExpression.Parameters", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeDelegateInvokeExpression.cs#L23C54-L23C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeDelegateInvokeExpression.cs#L23C54-L23C58" } ], "DocsId": "T:System.CodeDom.CodeDelegateInvokeExpression", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeDelegateInvokeExpression.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeDelegateInvokeExpression.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeDirectionExpression.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectionExpression.cs#L8C9-L8C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectionExpression.cs#L8C9-L8C45" }, { "DocsId": "M:System.CodeDom.CodeDirectionExpression.#ctor(System.CodeDom.FieldDirection,System.CodeDom.CodeExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectionExpression.cs#L10C9-L14C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectionExpression.cs#L10C9-L14C10" }, { "DocsId": "P:System.CodeDom.CodeDirectionExpression.Expression", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectionExpression.cs#L16C44-L16C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectionExpression.cs#L16C44-L16C48" }, { "DocsId": "P:System.CodeDom.CodeDirectionExpression.Direction", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectionExpression.cs#L18C43-L18C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectionExpression.cs#L18C43-L18C47" } ], "DocsId": "T:System.CodeDom.CodeDirectionExpression", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectionExpression.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectionExpression.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeDirective.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirective.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirective.cs" } ], "DocsId": "T:System.CodeDom.CodeDirective", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirective.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirective.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeDirectiveCollection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectiveCollection.cs#L10C9-L10C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectiveCollection.cs#L10C9-L10C45" }, { "DocsId": "M:System.CodeDom.CodeDirectiveCollection.#ctor(System.CodeDom.CodeDirectiveCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectiveCollection.cs#L12C9-L15C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectiveCollection.cs#L12C9-L15C10" }, { "DocsId": "M:System.CodeDom.CodeDirectiveCollection.#ctor(System.CodeDom.CodeDirective[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectiveCollection.cs#L17C9-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectiveCollection.cs#L17C9-L20C10" }, { "DocsId": "M:System.CodeDom.CodeDirectiveCollection.Add(System.CodeDom.CodeDirective)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectiveCollection.cs#L28C48-L28C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectiveCollection.cs#L28C48-L28C63" }, { "DocsId": "M:System.CodeDom.CodeDirectiveCollection.AddRange(System.CodeDom.CodeDirective[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectiveCollection.cs#L32C13-L41C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectiveCollection.cs#L32C13-L41C10" }, { "DocsId": "M:System.CodeDom.CodeDirectiveCollection.AddRange(System.CodeDom.CodeDirectiveCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectiveCollection.cs#L45C13-L55C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectiveCollection.cs#L45C13-L55C10" }, { "DocsId": "M:System.CodeDom.CodeDirectiveCollection.Contains(System.CodeDom.CodeDirective)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectiveCollection.cs#L57C54-L57C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectiveCollection.cs#L57C54-L57C74" }, { "DocsId": "M:System.CodeDom.CodeDirectiveCollection.CopyTo(System.CodeDom.CodeDirective[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectiveCollection.cs#L59C65-L59C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectiveCollection.cs#L59C65-L59C90" }, { "DocsId": "M:System.CodeDom.CodeDirectiveCollection.IndexOf(System.CodeDom.CodeDirective)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectiveCollection.cs#L61C52-L61C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectiveCollection.cs#L61C52-L61C71" }, { "DocsId": "M:System.CodeDom.CodeDirectiveCollection.Insert(System.Int32,System.CodeDom.CodeDirective)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectiveCollection.cs#L63C63-L63C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectiveCollection.cs#L63C63-L63C88" }, { "DocsId": "M:System.CodeDom.CodeDirectiveCollection.Remove(System.CodeDom.CodeDirective)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectiveCollection.cs#L65C52-L65C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectiveCollection.cs#L65C52-L65C70" }, { "DocsId": "P:System.CodeDom.CodeDirectiveCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectiveCollection.cs#L24C20-L24C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectiveCollection.cs#L24C20-L24C46" } ], "DocsId": "T:System.CodeDom.CodeDirectiveCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectiveCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectiveCollection.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeEntryPointMethod.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeEntryPointMethod.cs#L8C9-L8C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeEntryPointMethod.cs#L8C9-L8C42" } ], "DocsId": "T:System.CodeDom.CodeEntryPointMethod", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeEntryPointMethod.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeEntryPointMethod.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeEventReferenceExpression.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeEventReferenceExpression.cs#L10C9-L10C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeEventReferenceExpression.cs#L10C9-L10C50" }, { "DocsId": "M:System.CodeDom.CodeEventReferenceExpression.#ctor(System.CodeDom.CodeExpression,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeEventReferenceExpression.cs#L12C9-L16C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeEventReferenceExpression.cs#L12C9-L16C10" }, { "DocsId": "P:System.CodeDom.CodeEventReferenceExpression.TargetObject", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeEventReferenceExpression.cs#L18C46-L18C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeEventReferenceExpression.cs#L18C46-L18C50" }, { "DocsId": "P:System.CodeDom.CodeEventReferenceExpression.EventName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeEventReferenceExpression.cs#L22C20-L22C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeEventReferenceExpression.cs#L22C20-L22C46" } ], "DocsId": "T:System.CodeDom.CodeEventReferenceExpression", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeEventReferenceExpression.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeEventReferenceExpression.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeExpression.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpression.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpression.cs" } ], "DocsId": "T:System.CodeDom.CodeExpression", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpression.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpression.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeExpressionCollection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionCollection.cs#L10C9-L10C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionCollection.cs#L10C9-L10C46" }, { "DocsId": "M:System.CodeDom.CodeExpressionCollection.#ctor(System.CodeDom.CodeExpressionCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionCollection.cs#L12C9-L15C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionCollection.cs#L12C9-L15C10" }, { "DocsId": "M:System.CodeDom.CodeExpressionCollection.#ctor(System.CodeDom.CodeExpression[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionCollection.cs#L17C9-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionCollection.cs#L17C9-L20C10" }, { "DocsId": "M:System.CodeDom.CodeExpressionCollection.Add(System.CodeDom.CodeExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionCollection.cs#L28C49-L28C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionCollection.cs#L28C49-L28C64" }, { "DocsId": "M:System.CodeDom.CodeExpressionCollection.AddRange(System.CodeDom.CodeExpression[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionCollection.cs#L32C13-L41C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionCollection.cs#L32C13-L41C10" }, { "DocsId": "M:System.CodeDom.CodeExpressionCollection.AddRange(System.CodeDom.CodeExpressionCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionCollection.cs#L45C13-L55C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionCollection.cs#L45C13-L55C10" }, { "DocsId": "M:System.CodeDom.CodeExpressionCollection.Contains(System.CodeDom.CodeExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionCollection.cs#L57C55-L57C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionCollection.cs#L57C55-L57C75" }, { "DocsId": "M:System.CodeDom.CodeExpressionCollection.CopyTo(System.CodeDom.CodeExpression[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionCollection.cs#L59C66-L59C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionCollection.cs#L59C66-L59C91" }, { "DocsId": "M:System.CodeDom.CodeExpressionCollection.IndexOf(System.CodeDom.CodeExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionCollection.cs#L61C53-L61C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionCollection.cs#L61C53-L61C72" }, { "DocsId": "M:System.CodeDom.CodeExpressionCollection.Insert(System.Int32,System.CodeDom.CodeExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionCollection.cs#L63C64-L63C89" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionCollection.cs#L63C64-L63C89" }, { "DocsId": "M:System.CodeDom.CodeExpressionCollection.Remove(System.CodeDom.CodeExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionCollection.cs#L65C53-L65C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionCollection.cs#L65C53-L65C71" }, { "DocsId": "P:System.CodeDom.CodeExpressionCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionCollection.cs#L24C20-L24C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionCollection.cs#L24C20-L24C47" } ], "DocsId": "T:System.CodeDom.CodeExpressionCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionCollection.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeExpressionStatement.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionStatement.cs#L8C9-L8C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionStatement.cs#L8C9-L8C45" }, { "DocsId": "M:System.CodeDom.CodeExpressionStatement.#ctor(System.CodeDom.CodeExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionStatement.cs#L10C9-L13C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionStatement.cs#L10C9-L13C10" }, { "DocsId": "P:System.CodeDom.CodeExpressionStatement.Expression", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionStatement.cs#L15C44-L15C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionStatement.cs#L15C44-L15C48" } ], "DocsId": "T:System.CodeDom.CodeExpressionStatement", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionStatement.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionStatement.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeFieldReferenceExpression.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeFieldReferenceExpression.cs#L10C9-L10C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeFieldReferenceExpression.cs#L10C9-L10C50" }, { "DocsId": "M:System.CodeDom.CodeFieldReferenceExpression.#ctor(System.CodeDom.CodeExpression,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeFieldReferenceExpression.cs#L12C9-L16C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeFieldReferenceExpression.cs#L12C9-L16C10" }, { "DocsId": "P:System.CodeDom.CodeFieldReferenceExpression.TargetObject", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeFieldReferenceExpression.cs#L18C46-L18C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeFieldReferenceExpression.cs#L18C46-L18C50" }, { "DocsId": "P:System.CodeDom.CodeFieldReferenceExpression.FieldName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeFieldReferenceExpression.cs#L22C20-L22C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeFieldReferenceExpression.cs#L22C20-L22C46" } ], "DocsId": "T:System.CodeDom.CodeFieldReferenceExpression", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeFieldReferenceExpression.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeFieldReferenceExpression.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeGotoStatement.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeGotoStatement.cs#L10C9-L10C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeGotoStatement.cs#L10C9-L10C39" }, { "DocsId": "M:System.CodeDom.CodeGotoStatement.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeGotoStatement.cs#L12C9-L15C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeGotoStatement.cs#L12C9-L15C10" }, { "DocsId": "P:System.CodeDom.CodeGotoStatement.Label", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeGotoStatement.cs#L19C20-L19C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeGotoStatement.cs#L19C20-L19C26" } ], "DocsId": "T:System.CodeDom.CodeGotoStatement", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeGotoStatement.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeGotoStatement.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeIndexerExpression.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeIndexerExpression.cs#L10C9-L10C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeIndexerExpression.cs#L10C9-L10C43" }, { "DocsId": "M:System.CodeDom.CodeIndexerExpression.#ctor(System.CodeDom.CodeExpression,System.CodeDom.CodeExpression[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeIndexerExpression.cs#L12C9-L16C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeIndexerExpression.cs#L12C9-L16C10" }, { "DocsId": "P:System.CodeDom.CodeIndexerExpression.TargetObject", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeIndexerExpression.cs#L18C46-L18C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeIndexerExpression.cs#L18C46-L18C50" }, { "DocsId": "P:System.CodeDom.CodeIndexerExpression.Indices", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeIndexerExpression.cs#L20C52-L20C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeIndexerExpression.cs#L20C52-L20C95" } ], "DocsId": "T:System.CodeDom.CodeIndexerExpression", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeIndexerExpression.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeIndexerExpression.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeIterationStatement.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeIterationStatement.cs#L24C62-L8C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeIterationStatement.cs#L24C62-L8C44" }, { "DocsId": "M:System.CodeDom.CodeIterationStatement.#ctor(System.CodeDom.CodeStatement,System.CodeDom.CodeExpression,System.CodeDom.CodeStatement,System.CodeDom.CodeStatement[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeIterationStatement.cs#L24C62-L16C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeIterationStatement.cs#L24C62-L16C10" }, { "DocsId": "P:System.CodeDom.CodeIterationStatement.InitStatement", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeIterationStatement.cs#L18C46-L18C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeIterationStatement.cs#L18C46-L18C50" }, { "DocsId": "P:System.CodeDom.CodeIterationStatement.TestExpression", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeIterationStatement.cs#L20C48-L20C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeIterationStatement.cs#L20C48-L20C52" }, { "DocsId": "P:System.CodeDom.CodeIterationStatement.IncrementStatement", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeIterationStatement.cs#L22C51-L22C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeIterationStatement.cs#L22C51-L22C55" }, { "DocsId": "P:System.CodeDom.CodeIterationStatement.Statements", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeIterationStatement.cs#L24C53-L24C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeIterationStatement.cs#L24C53-L24C57" } ], "DocsId": "T:System.CodeDom.CodeIterationStatement", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeIterationStatement.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeIterationStatement.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeLabeledStatement.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeLabeledStatement.cs#L10C9-L10C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeLabeledStatement.cs#L10C9-L10C42" }, { "DocsId": "M:System.CodeDom.CodeLabeledStatement.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeLabeledStatement.cs#L12C9-L15C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeLabeledStatement.cs#L12C9-L15C10" }, { "DocsId": "M:System.CodeDom.CodeLabeledStatement.#ctor(System.String,System.CodeDom.CodeStatement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeLabeledStatement.cs#L17C9-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeLabeledStatement.cs#L17C9-L21C10" }, { "DocsId": "P:System.CodeDom.CodeLabeledStatement.Label", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeLabeledStatement.cs#L25C20-L25C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeLabeledStatement.cs#L25C20-L25C42" }, { "DocsId": "P:System.CodeDom.CodeLabeledStatement.Statement", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeLabeledStatement.cs#L29C42-L29C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeLabeledStatement.cs#L29C42-L29C46" } ], "DocsId": "T:System.CodeDom.CodeLabeledStatement", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeLabeledStatement.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeLabeledStatement.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeLinePragma.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeLinePragma.cs#L10C9-L10C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeLinePragma.cs#L10C9-L10C36" }, { "DocsId": "M:System.CodeDom.CodeLinePragma.#ctor(System.String,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeLinePragma.cs#L12C9-L16C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeLinePragma.cs#L12C9-L16C10" }, { "DocsId": "P:System.CodeDom.CodeLinePragma.FileName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeLinePragma.cs#L20C20-L20C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeLinePragma.cs#L20C20-L20C45" }, { "DocsId": "P:System.CodeDom.CodeLinePragma.LineNumber", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeLinePragma.cs#L24C33-L24C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeLinePragma.cs#L24C33-L24C37" } ], "DocsId": "T:System.CodeDom.CodeLinePragma", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeLinePragma.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeLinePragma.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeMemberEvent.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberEvent.cs#L11C9-L11C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberEvent.cs#L11C9-L11C37" }, { "DocsId": "P:System.CodeDom.CodeMemberEvent.Type", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberEvent.cs#L15C20-L15C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberEvent.cs#L15C20-L15C55" }, { "DocsId": "P:System.CodeDom.CodeMemberEvent.PrivateImplementationType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberEvent.cs#L19C62-L19C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberEvent.cs#L19C62-L19C66" }, { "DocsId": "P:System.CodeDom.CodeMemberEvent.ImplementationTypes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberEvent.cs#L21C67-L21C125" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberEvent.cs#L21C67-L21C125" } ], "DocsId": "T:System.CodeDom.CodeMemberEvent", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberEvent.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberEvent.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeMemberField.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberField.cs#L10C9-L10C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberField.cs#L10C9-L10C37" }, { "DocsId": "M:System.CodeDom.CodeMemberField.#ctor(System.CodeDom.CodeTypeReference,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberField.cs#L12C9-L16C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberField.cs#L12C9-L16C10" }, { "DocsId": "M:System.CodeDom.CodeMemberField.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberField.cs#L18C9-L22C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberField.cs#L18C9-L22C10" }, { "DocsId": "M:System.CodeDom.CodeMemberField.#ctor(System.Type,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberField.cs#L24C9-L28C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberField.cs#L24C9-L28C10" }, { "DocsId": "P:System.CodeDom.CodeMemberField.Type", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberField.cs#L32C20-L32C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberField.cs#L32C20-L32C55" }, { "DocsId": "P:System.CodeDom.CodeMemberField.InitExpression", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberField.cs#L36C48-L36C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberField.cs#L36C48-L36C52" } ], "DocsId": "T:System.CodeDom.CodeMemberField", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberField.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberField.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeMemberMethod.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberMethod.cs#L8C9-L9C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberMethod.cs#L8C9-L9C94" }, { "DocsId": "E:System.CodeDom.CodeMemberMethod.PopulateParameters", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberMethod.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberMethod.cs" }, { "DocsId": "E:System.CodeDom.CodeMemberMethod.PopulateStatements", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberMethod.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberMethod.cs" }, { "DocsId": "E:System.CodeDom.CodeMemberMethod.PopulateImplementationTypes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberMethod.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberMethod.cs" }, { "DocsId": "P:System.CodeDom.CodeMemberMethod.ReturnType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberMethod.cs#L26C20-L26C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberMethod.cs#L26C20-L26C80" }, { "DocsId": "P:System.CodeDom.CodeMemberMethod.Statements", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberMethod.cs#L34C17-L40C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberMethod.cs#L34C17-L40C36" }, { "DocsId": "P:System.CodeDom.CodeMemberMethod.Parameters", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberMethod.cs#L48C17-L54C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberMethod.cs#L48C17-L54C36" }, { "DocsId": "P:System.CodeDom.CodeMemberMethod.PrivateImplementationType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberMethod.cs#L58C62-L58C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberMethod.cs#L58C62-L58C66" }, { "DocsId": "P:System.CodeDom.CodeMemberMethod.ImplementationTypes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberMethod.cs#L64C17-L72C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberMethod.cs#L64C17-L72C45" }, { "DocsId": "P:System.CodeDom.CodeMemberMethod.ReturnTypeCustomAttributes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberMethod.cs#L76C81-L76C143" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberMethod.cs#L76C81-L76C143" }, { "DocsId": "P:System.CodeDom.CodeMemberMethod.TypeParameters", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberMethod.cs#L78C62-L78C115" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberMethod.cs#L78C62-L78C115" } ], "DocsId": "T:System.CodeDom.CodeMemberMethod", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberMethod.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberMethod.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeMemberProperty.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberProperty.cs#L49C65-L53C133" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberProperty.cs#L49C65-L53C133" }, { "DocsId": "P:System.CodeDom.CodeMemberProperty.PrivateImplementationType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberProperty.cs#L13C62-L13C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberProperty.cs#L13C62-L13C66" }, { "DocsId": "P:System.CodeDom.CodeMemberProperty.ImplementationTypes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberProperty.cs#L15C67-L15C125" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberProperty.cs#L15C67-L15C125" }, { "DocsId": "P:System.CodeDom.CodeMemberProperty.Type", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberProperty.cs#L19C20-L19C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberProperty.cs#L19C20-L19C55" }, { "DocsId": "P:System.CodeDom.CodeMemberProperty.HasGet", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberProperty.cs#L25C20-L25C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberProperty.cs#L25C20-L25C54" }, { "DocsId": "P:System.CodeDom.CodeMemberProperty.HasSet", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberProperty.cs#L38C20-L38C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberProperty.cs#L38C20-L38C54" }, { "DocsId": "P:System.CodeDom.CodeMemberProperty.GetStatements", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberProperty.cs#L49C56-L49C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberProperty.cs#L49C56-L49C60" }, { "DocsId": "P:System.CodeDom.CodeMemberProperty.SetStatements", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberProperty.cs#L51C56-L51C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberProperty.cs#L51C56-L51C60" }, { "DocsId": "P:System.CodeDom.CodeMemberProperty.Parameters", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberProperty.cs#L53C74-L53C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberProperty.cs#L53C74-L53C78" } ], "DocsId": "T:System.CodeDom.CodeMemberProperty", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberProperty.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberProperty.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeMethodInvokeExpression.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeMethodInvokeExpression.cs#L30C63-L10C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeMethodInvokeExpression.cs#L30C63-L10C48" }, { "DocsId": "M:System.CodeDom.CodeMethodInvokeExpression.#ctor(System.CodeDom.CodeMethodReferenceExpression,System.CodeDom.CodeExpression[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeMethodInvokeExpression.cs#L30C63-L16C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeMethodInvokeExpression.cs#L30C63-L16C10" }, { "DocsId": "M:System.CodeDom.CodeMethodInvokeExpression.#ctor(System.CodeDom.CodeExpression,System.String,System.CodeDom.CodeExpression[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeMethodInvokeExpression.cs#L30C63-L22C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeMethodInvokeExpression.cs#L30C63-L22C10" }, { "DocsId": "P:System.CodeDom.CodeMethodInvokeExpression.Method", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeMethodInvokeExpression.cs#L26C20-L26C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeMethodInvokeExpression.cs#L26C20-L26C67" }, { "DocsId": "P:System.CodeDom.CodeMethodInvokeExpression.Parameters", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeMethodInvokeExpression.cs#L30C54-L30C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeMethodInvokeExpression.cs#L30C54-L30C58" } ], "DocsId": "T:System.CodeDom.CodeMethodInvokeExpression", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeMethodInvokeExpression.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeMethodInvokeExpression.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeMethodReferenceExpression.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/codemethodreferenceexpression.cs#L11C9-L11C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/codemethodreferenceexpression.cs#L11C9-L11C51" }, { "DocsId": "M:System.CodeDom.CodeMethodReferenceExpression.#ctor(System.CodeDom.CodeExpression,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/codemethodreferenceexpression.cs#L13C9-L17C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/codemethodreferenceexpression.cs#L13C9-L17C10" }, { "DocsId": "M:System.CodeDom.CodeMethodReferenceExpression.#ctor(System.CodeDom.CodeExpression,System.String,System.CodeDom.CodeTypeReference[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/codemethodreferenceexpression.cs#L19C9-L27C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/codemethodreferenceexpression.cs#L19C9-L27C10" }, { "DocsId": "P:System.CodeDom.CodeMethodReferenceExpression.TargetObject", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/codemethodreferenceexpression.cs#L29C46-L29C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/codemethodreferenceexpression.cs#L29C46-L29C50" }, { "DocsId": "P:System.CodeDom.CodeMethodReferenceExpression.MethodName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/codemethodreferenceexpression.cs#L33C20-L33C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/codemethodreferenceexpression.cs#L33C20-L33C47" }, { "DocsId": "P:System.CodeDom.CodeMethodReferenceExpression.TypeArguments", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/codemethodreferenceexpression.cs#L37C61-L37C113" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/codemethodreferenceexpression.cs#L37C61-L37C113" } ], "DocsId": "T:System.CodeDom.CodeMethodReferenceExpression", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/codemethodreferenceexpression.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/codemethodreferenceexpression.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeMethodReturnStatement.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeMethodReturnStatement.cs#L8C9-L8C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeMethodReturnStatement.cs#L8C9-L8C47" }, { "DocsId": "M:System.CodeDom.CodeMethodReturnStatement.#ctor(System.CodeDom.CodeExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeMethodReturnStatement.cs#L10C9-L13C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeMethodReturnStatement.cs#L10C9-L13C10" }, { "DocsId": "P:System.CodeDom.CodeMethodReturnStatement.Expression", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeMethodReturnStatement.cs#L15C44-L15C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeMethodReturnStatement.cs#L15C44-L15C48" } ], "DocsId": "T:System.CodeDom.CodeMethodReturnStatement", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeMethodReturnStatement.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeMethodReturnStatement.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeNamespace.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespace.cs#L10C9-L23C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespace.cs#L10C9-L23C35" }, { "DocsId": "M:System.CodeDom.CodeNamespace.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespace.cs#L10C9-L28C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespace.cs#L10C9-L28C10" }, { "DocsId": "E:System.CodeDom.CodeNamespace.PopulateComments", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespace.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespace.cs" }, { "DocsId": "E:System.CodeDom.CodeNamespace.PopulateImports", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespace.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespace.cs" }, { "DocsId": "E:System.CodeDom.CodeNamespace.PopulateTypes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespace.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespace.cs" }, { "DocsId": "P:System.CodeDom.CodeNamespace.Types", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespace.cs#L34C17-L40C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespace.cs#L34C17-L40C33" }, { "DocsId": "P:System.CodeDom.CodeNamespace.Imports", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespace.cs#L48C17-L54C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespace.cs#L48C17-L54C33" }, { "DocsId": "P:System.CodeDom.CodeNamespace.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespace.cs#L60C20-L60C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespace.cs#L60C20-L60C41" }, { "DocsId": "P:System.CodeDom.CodeNamespace.Comments", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespace.cs#L68C17-L74C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespace.cs#L68C17-L74C34" } ], "DocsId": "T:System.CodeDom.CodeNamespace", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespace.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespace.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeNamespaceCollection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceCollection.cs#L10C9-L10C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceCollection.cs#L10C9-L10C45" }, { "DocsId": "M:System.CodeDom.CodeNamespaceCollection.#ctor(System.CodeDom.CodeNamespaceCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceCollection.cs#L12C9-L15C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceCollection.cs#L12C9-L15C10" }, { "DocsId": "M:System.CodeDom.CodeNamespaceCollection.#ctor(System.CodeDom.CodeNamespace[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceCollection.cs#L17C9-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceCollection.cs#L17C9-L20C10" }, { "DocsId": "M:System.CodeDom.CodeNamespaceCollection.Add(System.CodeDom.CodeNamespace)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceCollection.cs#L28C48-L28C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceCollection.cs#L28C48-L28C63" }, { "DocsId": "M:System.CodeDom.CodeNamespaceCollection.AddRange(System.CodeDom.CodeNamespace[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceCollection.cs#L32C13-L41C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceCollection.cs#L32C13-L41C10" }, { "DocsId": "M:System.CodeDom.CodeNamespaceCollection.AddRange(System.CodeDom.CodeNamespaceCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceCollection.cs#L45C13-L55C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceCollection.cs#L45C13-L55C10" }, { "DocsId": "M:System.CodeDom.CodeNamespaceCollection.Contains(System.CodeDom.CodeNamespace)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceCollection.cs#L57C54-L57C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceCollection.cs#L57C54-L57C74" }, { "DocsId": "M:System.CodeDom.CodeNamespaceCollection.CopyTo(System.CodeDom.CodeNamespace[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceCollection.cs#L59C65-L59C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceCollection.cs#L59C65-L59C90" }, { "DocsId": "M:System.CodeDom.CodeNamespaceCollection.IndexOf(System.CodeDom.CodeNamespace)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceCollection.cs#L61C52-L61C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceCollection.cs#L61C52-L61C71" }, { "DocsId": "M:System.CodeDom.CodeNamespaceCollection.Insert(System.Int32,System.CodeDom.CodeNamespace)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceCollection.cs#L63C63-L63C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceCollection.cs#L63C63-L63C88" }, { "DocsId": "M:System.CodeDom.CodeNamespaceCollection.Remove(System.CodeDom.CodeNamespace)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceCollection.cs#L65C52-L65C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceCollection.cs#L65C52-L65C70" }, { "DocsId": "P:System.CodeDom.CodeNamespaceCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceCollection.cs#L24C20-L24C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceCollection.cs#L24C20-L24C46" } ], "DocsId": "T:System.CodeDom.CodeNamespaceCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceCollection.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeNamespaceImport.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImport.cs#L10C9-L10C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImport.cs#L10C9-L10C41" }, { "DocsId": "M:System.CodeDom.CodeNamespaceImport.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImport.cs#L12C9-L15C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImport.cs#L12C9-L15C10" }, { "DocsId": "P:System.CodeDom.CodeNamespaceImport.LinePragma", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImport.cs#L17C44-L17C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImport.cs#L17C44-L17C48" }, { "DocsId": "P:System.CodeDom.CodeNamespaceImport.Namespace", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImport.cs#L21C20-L21C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImport.cs#L21C20-L21C46" } ], "DocsId": "T:System.CodeDom.CodeNamespaceImport", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImport.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImport.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeNamespaceImportCollection.System#Collections#IList#get_IsReadOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L26C34-L26C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L26C34-L26C39" }, { "DocsId": "M:System.CodeDom.CodeNamespaceImportCollection.System#Collections#IList#get_IsFixedSize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L28C35-L28C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L28C35-L28C40" }, { "DocsId": "M:System.CodeDom.CodeNamespaceImportCollection.Add(System.CodeDom.CodeNamespaceImport)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L32C13-L37C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L32C13-L37C10" }, { "DocsId": "M:System.CodeDom.CodeNamespaceImportCollection.AddRange(System.CodeDom.CodeNamespaceImport[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L41C13-L50C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L41C13-L50C10" }, { "DocsId": "M:System.CodeDom.CodeNamespaceImportCollection.Clear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L54C13-L56C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L54C13-L56C10" }, { "DocsId": "M:System.CodeDom.CodeNamespaceImportCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L67C47-L67C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L67C47-L67C68" }, { "DocsId": "M:System.CodeDom.CodeNamespaceImportCollection.System#Collections#IList#get_Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L71C20-L71C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L71C20-L71C31" }, { "DocsId": "M:System.CodeDom.CodeNamespaceImportCollection.System#Collections#IList#set_Item(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L74C17-L76C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L74C17-L76C14" }, { "DocsId": "M:System.CodeDom.CodeNamespaceImportCollection.System#Collections#ICollection#get_Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L79C34-L79C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L79C34-L79C39" }, { "DocsId": "M:System.CodeDom.CodeNamespaceImportCollection.System#Collections#ICollection#get_IsSynchronized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L81C44-L81C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L81C44-L81C49" }, { "DocsId": "M:System.CodeDom.CodeNamespaceImportCollection.System#Collections#ICollection#get_SyncRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L83C40-L83C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L83C40-L83C44" }, { "DocsId": "M:System.CodeDom.CodeNamespaceImportCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L85C60-L85C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L85C60-L85C86" }, { "DocsId": "M:System.CodeDom.CodeNamespaceImportCollection.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L87C52-L87C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L87C52-L87C67" }, { "DocsId": "M:System.CodeDom.CodeNamespaceImportCollection.System#Collections#IList#Add(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L89C40-L89C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L89C40-L89C77" }, { "DocsId": "M:System.CodeDom.CodeNamespaceImportCollection.System#Collections#IList#Clear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L91C31-L91C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L91C31-L91C38" }, { "DocsId": "M:System.CodeDom.CodeNamespaceImportCollection.System#Collections#IList#Contains(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L93C46-L93C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L93C46-L93C67" }, { "DocsId": "M:System.CodeDom.CodeNamespaceImportCollection.System#Collections#IList#IndexOf(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L95C44-L95C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L95C44-L95C85" }, { "DocsId": "M:System.CodeDom.CodeNamespaceImportCollection.System#Collections#IList#Insert(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L99C13-L101C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L99C13-L101C10" }, { "DocsId": "M:System.CodeDom.CodeNamespaceImportCollection.System#Collections#IList#Remove(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L105C13-L107C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L105C13-L107C10" }, { "DocsId": "M:System.CodeDom.CodeNamespaceImportCollection.System#Collections#IList#RemoveAt(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L111C13-L113C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L111C13-L113C10" }, { "DocsId": "M:System.CodeDom.CodeNamespaceImportCollection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L11C9-L12C152" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L11C9-L12C152" }, { "DocsId": "P:System.CodeDom.CodeNamespaceImportCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L16C20-L16C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L16C20-L16C53" }, { "DocsId": "P:System.CodeDom.CodeNamespaceImportCollection.Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L24C29-L24C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L24C29-L24C40" }, { "DocsId": "P:System.CodeDom.CodeNamespaceImportCollection.System#Collections#IList#IsReadOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L26C34-L26C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L26C34-L26C39" }, { "DocsId": "P:System.CodeDom.CodeNamespaceImportCollection.System#Collections#IList#IsFixedSize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L28C35-L28C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L28C35-L28C40" }, { "DocsId": "P:System.CodeDom.CodeNamespaceImportCollection.System#Collections#IList#Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L71C20-L71C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L71C20-L71C31" }, { "DocsId": "P:System.CodeDom.CodeNamespaceImportCollection.System#Collections#ICollection#Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L79C34-L79C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L79C34-L79C39" }, { "DocsId": "P:System.CodeDom.CodeNamespaceImportCollection.System#Collections#ICollection#IsSynchronized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L81C44-L81C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L81C44-L81C49" }, { "DocsId": "P:System.CodeDom.CodeNamespaceImportCollection.System#Collections#ICollection#SyncRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L83C40-L83C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L83C40-L83C44" } ], "DocsId": "T:System.CodeDom.CodeNamespaceImportCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeObject.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/CodeDom/CodeObject.cs#L21C9-L21C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/CodeDom/CodeObject.cs#L21C9-L21C32" }, { "DocsId": "P:System.CodeDom.CodeObject.UserData", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/CodeDom/CodeObject.cs#L23C40-L23C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/CodeDom/CodeObject.cs#L23C40-L23C74" } ], "DocsId": "T:System.CodeDom.CodeObject", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/CodeDom/CodeObject.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/CodeDom/CodeObject.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeObjectCreateExpression.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeObjectCreateExpression.cs#L36C63-L10C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeObjectCreateExpression.cs#L36C63-L10C48" }, { "DocsId": "M:System.CodeDom.CodeObjectCreateExpression.#ctor(System.CodeDom.CodeTypeReference,System.CodeDom.CodeExpression[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeObjectCreateExpression.cs#L36C63-L16C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeObjectCreateExpression.cs#L36C63-L16C10" }, { "DocsId": "M:System.CodeDom.CodeObjectCreateExpression.#ctor(System.String,System.CodeDom.CodeExpression[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeObjectCreateExpression.cs#L36C63-L22C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeObjectCreateExpression.cs#L36C63-L22C10" }, { "DocsId": "M:System.CodeDom.CodeObjectCreateExpression.#ctor(System.Type,System.CodeDom.CodeExpression[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeObjectCreateExpression.cs#L36C63-L28C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeObjectCreateExpression.cs#L36C63-L28C10" }, { "DocsId": "P:System.CodeDom.CodeObjectCreateExpression.CreateType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeObjectCreateExpression.cs#L32C20-L32C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeObjectCreateExpression.cs#L32C20-L32C61" }, { "DocsId": "P:System.CodeDom.CodeObjectCreateExpression.Parameters", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeObjectCreateExpression.cs#L36C54-L36C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeObjectCreateExpression.cs#L36C54-L36C58" } ], "DocsId": "T:System.CodeDom.CodeObjectCreateExpression", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeObjectCreateExpression.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeObjectCreateExpression.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeParameterDeclarationExpression.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpression.cs#L12C9-L12C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpression.cs#L12C9-L12C56" }, { "DocsId": "M:System.CodeDom.CodeParameterDeclarationExpression.#ctor(System.CodeDom.CodeTypeReference,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpression.cs#L14C9-L18C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpression.cs#L14C9-L18C10" }, { "DocsId": "M:System.CodeDom.CodeParameterDeclarationExpression.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpression.cs#L20C9-L24C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpression.cs#L20C9-L24C10" }, { "DocsId": "M:System.CodeDom.CodeParameterDeclarationExpression.#ctor(System.Type,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpression.cs#L26C9-L30C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpression.cs#L26C9-L30C10" }, { "DocsId": "P:System.CodeDom.CodeParameterDeclarationExpression.CustomAttributes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpression.cs#L34C20-L34C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpression.cs#L34C20-L34C82" }, { "DocsId": "P:System.CodeDom.CodeParameterDeclarationExpression.Direction", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpression.cs#L38C43-L38C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpression.cs#L38C43-L38C47" }, { "DocsId": "P:System.CodeDom.CodeParameterDeclarationExpression.Type", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpression.cs#L42C20-L42C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpression.cs#L42C20-L42C55" }, { "DocsId": "P:System.CodeDom.CodeParameterDeclarationExpression.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpression.cs#L48C20-L48C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpression.cs#L48C20-L48C41" } ], "DocsId": "T:System.CodeDom.CodeParameterDeclarationExpression", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpression.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpression.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeParameterDeclarationExpressionCollection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpressionCollection.cs#L10C9-L10C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpressionCollection.cs#L10C9-L10C66" }, { "DocsId": "M:System.CodeDom.CodeParameterDeclarationExpressionCollection.#ctor(System.CodeDom.CodeParameterDeclarationExpressionCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpressionCollection.cs#L12C9-L15C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpressionCollection.cs#L12C9-L15C10" }, { "DocsId": "M:System.CodeDom.CodeParameterDeclarationExpressionCollection.#ctor(System.CodeDom.CodeParameterDeclarationExpression[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpressionCollection.cs#L17C9-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpressionCollection.cs#L17C9-L20C10" }, { "DocsId": "M:System.CodeDom.CodeParameterDeclarationExpressionCollection.Add(System.CodeDom.CodeParameterDeclarationExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpressionCollection.cs#L28C69-L28C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpressionCollection.cs#L28C69-L28C84" }, { "DocsId": "M:System.CodeDom.CodeParameterDeclarationExpressionCollection.AddRange(System.CodeDom.CodeParameterDeclarationExpression[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpressionCollection.cs#L32C13-L41C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpressionCollection.cs#L32C13-L41C10" }, { "DocsId": "M:System.CodeDom.CodeParameterDeclarationExpressionCollection.AddRange(System.CodeDom.CodeParameterDeclarationExpressionCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpressionCollection.cs#L45C13-L55C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpressionCollection.cs#L45C13-L55C10" }, { "DocsId": "M:System.CodeDom.CodeParameterDeclarationExpressionCollection.Contains(System.CodeDom.CodeParameterDeclarationExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpressionCollection.cs#L57C75-L57C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpressionCollection.cs#L57C75-L57C95" }, { "DocsId": "M:System.CodeDom.CodeParameterDeclarationExpressionCollection.CopyTo(System.CodeDom.CodeParameterDeclarationExpression[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpressionCollection.cs#L59C86-L59C111" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpressionCollection.cs#L59C86-L59C111" }, { "DocsId": "M:System.CodeDom.CodeParameterDeclarationExpressionCollection.IndexOf(System.CodeDom.CodeParameterDeclarationExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpressionCollection.cs#L61C73-L61C92" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpressionCollection.cs#L61C73-L61C92" }, { "DocsId": "M:System.CodeDom.CodeParameterDeclarationExpressionCollection.Insert(System.Int32,System.CodeDom.CodeParameterDeclarationExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpressionCollection.cs#L63C84-L63C109" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpressionCollection.cs#L63C84-L63C109" }, { "DocsId": "M:System.CodeDom.CodeParameterDeclarationExpressionCollection.Remove(System.CodeDom.CodeParameterDeclarationExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpressionCollection.cs#L65C73-L65C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpressionCollection.cs#L65C73-L65C91" }, { "DocsId": "P:System.CodeDom.CodeParameterDeclarationExpressionCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpressionCollection.cs#L24C20-L24C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpressionCollection.cs#L24C20-L24C67" } ], "DocsId": "T:System.CodeDom.CodeParameterDeclarationExpressionCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpressionCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpressionCollection.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodePrimitiveExpression.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodePrimitiveExpression.cs#L8C9-L8C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodePrimitiveExpression.cs#L8C9-L8C45" }, { "DocsId": "M:System.CodeDom.CodePrimitiveExpression.#ctor(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodePrimitiveExpression.cs#L10C9-L13C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodePrimitiveExpression.cs#L10C9-L13C10" }, { "DocsId": "P:System.CodeDom.CodePrimitiveExpression.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodePrimitiveExpression.cs#L15C31-L15C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodePrimitiveExpression.cs#L15C31-L15C35" } ], "DocsId": "T:System.CodeDom.CodePrimitiveExpression", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodePrimitiveExpression.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodePrimitiveExpression.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodePropertyReferenceExpression.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodePropertyReferenceExpression.cs#L10C9-L10C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodePropertyReferenceExpression.cs#L10C9-L10C53" }, { "DocsId": "M:System.CodeDom.CodePropertyReferenceExpression.#ctor(System.CodeDom.CodeExpression,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodePropertyReferenceExpression.cs#L12C9-L16C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodePropertyReferenceExpression.cs#L12C9-L16C10" }, { "DocsId": "P:System.CodeDom.CodePropertyReferenceExpression.TargetObject", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodePropertyReferenceExpression.cs#L18C46-L18C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodePropertyReferenceExpression.cs#L18C46-L18C50" }, { "DocsId": "P:System.CodeDom.CodePropertyReferenceExpression.PropertyName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodePropertyReferenceExpression.cs#L22C20-L22C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodePropertyReferenceExpression.cs#L22C20-L22C49" } ], "DocsId": "T:System.CodeDom.CodePropertyReferenceExpression", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodePropertyReferenceExpression.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodePropertyReferenceExpression.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodePropertySetValueReferenceExpression.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodePropertySetValueReferenceExpression.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodePropertySetValueReferenceExpression.cs" } ], "DocsId": "T:System.CodeDom.CodePropertySetValueReferenceExpression", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodePropertySetValueReferenceExpression.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodePropertySetValueReferenceExpression.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeRegionDirective.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeRegionDirective.cs#L10C9-L10C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeRegionDirective.cs#L10C9-L10C41" }, { "DocsId": "M:System.CodeDom.CodeRegionDirective.#ctor(System.CodeDom.CodeRegionMode,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeRegionDirective.cs#L12C9-L16C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeRegionDirective.cs#L12C9-L16C10" }, { "DocsId": "P:System.CodeDom.CodeRegionDirective.RegionText", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeRegionDirective.cs#L20C20-L20C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeRegionDirective.cs#L20C20-L20C47" }, { "DocsId": "P:System.CodeDom.CodeRegionDirective.RegionMode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeRegionDirective.cs#L24C44-L24C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeRegionDirective.cs#L24C44-L24C48" } ], "DocsId": "T:System.CodeDom.CodeRegionDirective", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeRegionDirective.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeRegionDirective.cs" }, { "Members": [ { "DocsId": "F:System.CodeDom.CodeRegionMode.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeRegionMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeRegionMode.cs" }, { "DocsId": "F:System.CodeDom.CodeRegionMode.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeRegionMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeRegionMode.cs" }, { "DocsId": "F:System.CodeDom.CodeRegionMode.Start", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeRegionMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeRegionMode.cs" }, { "DocsId": "F:System.CodeDom.CodeRegionMode.End", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeRegionMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeRegionMode.cs" } ], "DocsId": "T:System.CodeDom.CodeRegionMode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeRegionMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeRegionMode.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeRemoveEventStatement.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeRemoveEventStatement.cs#L10C9-L10C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeRemoveEventStatement.cs#L10C9-L10C46" }, { "DocsId": "M:System.CodeDom.CodeRemoveEventStatement.#ctor(System.CodeDom.CodeEventReferenceExpression,System.CodeDom.CodeExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeRemoveEventStatement.cs#L12C9-L16C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeRemoveEventStatement.cs#L12C9-L16C10" }, { "DocsId": "M:System.CodeDom.CodeRemoveEventStatement.#ctor(System.CodeDom.CodeExpression,System.String,System.CodeDom.CodeExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeRemoveEventStatement.cs#L18C9-L22C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeRemoveEventStatement.cs#L18C9-L22C10" }, { "DocsId": "P:System.CodeDom.CodeRemoveEventStatement.Event", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeRemoveEventStatement.cs#L26C20-L26C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeRemoveEventStatement.cs#L26C20-L26C68" }, { "DocsId": "P:System.CodeDom.CodeRemoveEventStatement.Listener", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeRemoveEventStatement.cs#L30C42-L30C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeRemoveEventStatement.cs#L30C42-L30C46" } ], "DocsId": "T:System.CodeDom.CodeRemoveEventStatement", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeRemoveEventStatement.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeRemoveEventStatement.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeSnippetCompileUnit.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetCompileUnit.cs#L10C9-L10C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetCompileUnit.cs#L10C9-L10C44" }, { "DocsId": "M:System.CodeDom.CodeSnippetCompileUnit.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetCompileUnit.cs#L12C9-L15C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetCompileUnit.cs#L12C9-L15C10" }, { "DocsId": "P:System.CodeDom.CodeSnippetCompileUnit.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetCompileUnit.cs#L19C20-L19C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetCompileUnit.cs#L19C20-L19C42" }, { "DocsId": "P:System.CodeDom.CodeSnippetCompileUnit.LinePragma", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetCompileUnit.cs#L23C44-L23C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetCompileUnit.cs#L23C44-L23C48" } ], "DocsId": "T:System.CodeDom.CodeSnippetCompileUnit", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetCompileUnit.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetCompileUnit.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeSnippetExpression.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetExpression.cs#L10C9-L10C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetExpression.cs#L10C9-L10C43" }, { "DocsId": "M:System.CodeDom.CodeSnippetExpression.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetExpression.cs#L12C9-L15C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetExpression.cs#L12C9-L15C10" }, { "DocsId": "P:System.CodeDom.CodeSnippetExpression.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetExpression.cs#L19C20-L19C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetExpression.cs#L19C20-L19C42" } ], "DocsId": "T:System.CodeDom.CodeSnippetExpression", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetExpression.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetExpression.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeSnippetStatement.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetStatement.cs#L10C9-L10C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetStatement.cs#L10C9-L10C42" }, { "DocsId": "M:System.CodeDom.CodeSnippetStatement.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetStatement.cs#L12C9-L15C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetStatement.cs#L12C9-L15C10" }, { "DocsId": "P:System.CodeDom.CodeSnippetStatement.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetStatement.cs#L19C20-L19C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetStatement.cs#L19C20-L19C42" } ], "DocsId": "T:System.CodeDom.CodeSnippetStatement", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetStatement.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetStatement.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeSnippetTypeMember.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetTypeMember.cs#L10C9-L10C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetTypeMember.cs#L10C9-L10C43" }, { "DocsId": "M:System.CodeDom.CodeSnippetTypeMember.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetTypeMember.cs#L12C9-L15C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetTypeMember.cs#L12C9-L15C10" }, { "DocsId": "P:System.CodeDom.CodeSnippetTypeMember.Text", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetTypeMember.cs#L19C20-L19C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetTypeMember.cs#L19C20-L19C41" } ], "DocsId": "T:System.CodeDom.CodeSnippetTypeMember", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetTypeMember.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetTypeMember.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeStatement.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatement.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatement.cs" }, { "DocsId": "P:System.CodeDom.CodeStatement.LinePragma", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatement.cs#L11C44-L11C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatement.cs#L11C44-L11C48" }, { "DocsId": "P:System.CodeDom.CodeStatement.StartDirectives", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatement.cs#L13C59-L13C109" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatement.cs#L13C59-L13C109" }, { "DocsId": "P:System.CodeDom.CodeStatement.EndDirectives", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatement.cs#L15C57-L15C105" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatement.cs#L15C57-L15C105" } ], "DocsId": "T:System.CodeDom.CodeStatement", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatement.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatement.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeStatementCollection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatementCollection.cs#L10C9-L10C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatementCollection.cs#L10C9-L10C45" }, { "DocsId": "M:System.CodeDom.CodeStatementCollection.#ctor(System.CodeDom.CodeStatementCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatementCollection.cs#L12C9-L15C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatementCollection.cs#L12C9-L15C10" }, { "DocsId": "M:System.CodeDom.CodeStatementCollection.#ctor(System.CodeDom.CodeStatement[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatementCollection.cs#L17C9-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatementCollection.cs#L17C9-L20C10" }, { "DocsId": "M:System.CodeDom.CodeStatementCollection.Add(System.CodeDom.CodeStatement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatementCollection.cs#L28C48-L28C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatementCollection.cs#L28C48-L28C63" }, { "DocsId": "M:System.CodeDom.CodeStatementCollection.Add(System.CodeDom.CodeExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatementCollection.cs#L30C49-L30C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatementCollection.cs#L30C49-L30C88" }, { "DocsId": "M:System.CodeDom.CodeStatementCollection.AddRange(System.CodeDom.CodeStatement[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatementCollection.cs#L34C13-L43C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatementCollection.cs#L34C13-L43C10" }, { "DocsId": "M:System.CodeDom.CodeStatementCollection.AddRange(System.CodeDom.CodeStatementCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatementCollection.cs#L47C13-L57C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatementCollection.cs#L47C13-L57C10" }, { "DocsId": "M:System.CodeDom.CodeStatementCollection.Contains(System.CodeDom.CodeStatement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatementCollection.cs#L59C54-L59C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatementCollection.cs#L59C54-L59C74" }, { "DocsId": "M:System.CodeDom.CodeStatementCollection.CopyTo(System.CodeDom.CodeStatement[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatementCollection.cs#L61C65-L61C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatementCollection.cs#L61C65-L61C90" }, { "DocsId": "M:System.CodeDom.CodeStatementCollection.IndexOf(System.CodeDom.CodeStatement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatementCollection.cs#L63C52-L63C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatementCollection.cs#L63C52-L63C71" }, { "DocsId": "M:System.CodeDom.CodeStatementCollection.Insert(System.Int32,System.CodeDom.CodeStatement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatementCollection.cs#L65C63-L65C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatementCollection.cs#L65C63-L65C88" }, { "DocsId": "M:System.CodeDom.CodeStatementCollection.Remove(System.CodeDom.CodeStatement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatementCollection.cs#L67C52-L67C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatementCollection.cs#L67C52-L67C70" }, { "DocsId": "P:System.CodeDom.CodeStatementCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatementCollection.cs#L24C20-L24C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatementCollection.cs#L24C20-L24C46" } ], "DocsId": "T:System.CodeDom.CodeStatementCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatementCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatementCollection.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeThisReferenceExpression.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeThisReferenceExpression.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeThisReferenceExpression.cs" } ], "DocsId": "T:System.CodeDom.CodeThisReferenceExpression", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeThisReferenceExpression.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeThisReferenceExpression.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeThrowExceptionStatement.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeThrowExceptionStatement.cs#L8C9-L8C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeThrowExceptionStatement.cs#L8C9-L8C49" }, { "DocsId": "M:System.CodeDom.CodeThrowExceptionStatement.#ctor(System.CodeDom.CodeExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeThrowExceptionStatement.cs#L10C9-L13C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeThrowExceptionStatement.cs#L10C9-L13C10" }, { "DocsId": "P:System.CodeDom.CodeThrowExceptionStatement.ToThrow", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeThrowExceptionStatement.cs#L15C41-L15C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeThrowExceptionStatement.cs#L15C41-L15C45" } ], "DocsId": "T:System.CodeDom.CodeThrowExceptionStatement", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeThrowExceptionStatement.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeThrowExceptionStatement.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeTryCatchFinallyStatement.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTryCatchFinallyStatement.cs#L23C65-L8C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTryCatchFinallyStatement.cs#L23C65-L8C50" }, { "DocsId": "M:System.CodeDom.CodeTryCatchFinallyStatement.#ctor(System.CodeDom.CodeStatement[],System.CodeDom.CodeCatchClause[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTryCatchFinallyStatement.cs#L23C65-L14C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTryCatchFinallyStatement.cs#L23C65-L14C10" }, { "DocsId": "M:System.CodeDom.CodeTryCatchFinallyStatement.#ctor(System.CodeDom.CodeStatement[],System.CodeDom.CodeCatchClause[],System.CodeDom.CodeStatement[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTryCatchFinallyStatement.cs#L23C65-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTryCatchFinallyStatement.cs#L23C65-L21C10" }, { "DocsId": "P:System.CodeDom.CodeTryCatchFinallyStatement.TryStatements", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTryCatchFinallyStatement.cs#L23C56-L23C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTryCatchFinallyStatement.cs#L23C56-L23C60" }, { "DocsId": "P:System.CodeDom.CodeTryCatchFinallyStatement.CatchClauses", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTryCatchFinallyStatement.cs#L25C57-L25C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTryCatchFinallyStatement.cs#L25C57-L25C61" }, { "DocsId": "P:System.CodeDom.CodeTryCatchFinallyStatement.FinallyStatements", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTryCatchFinallyStatement.cs#L27C60-L27C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTryCatchFinallyStatement.cs#L27C60-L27C64" } ], "DocsId": "T:System.CodeDom.CodeTryCatchFinallyStatement", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTryCatchFinallyStatement.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTryCatchFinallyStatement.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeTypeConstructor.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeConstructor.cs#L8C9-L11C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeConstructor.cs#L8C9-L11C10" } ], "DocsId": "T:System.CodeDom.CodeTypeConstructor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeConstructor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeConstructor.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeTypeDeclaration.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclaration.cs#L10C9-L22C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclaration.cs#L10C9-L22C41" }, { "DocsId": "M:System.CodeDom.CodeTypeDeclaration.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclaration.cs#L10C9-L27C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclaration.cs#L10C9-L27C10" }, { "DocsId": "E:System.CodeDom.CodeTypeDeclaration.PopulateBaseTypes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclaration.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclaration.cs" }, { "DocsId": "E:System.CodeDom.CodeTypeDeclaration.PopulateMembers", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclaration.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclaration.cs" }, { "DocsId": "P:System.CodeDom.CodeTypeDeclaration.TypeAttributes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclaration.cs#L29C48-L29C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclaration.cs#L29C48-L29C52" }, { "DocsId": "P:System.CodeDom.CodeTypeDeclaration.BaseTypes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclaration.cs#L35C17-L41C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclaration.cs#L35C17-L41C35" }, { "DocsId": "P:System.CodeDom.CodeTypeDeclaration.IsClass", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclaration.cs#L47C20-L47C122" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclaration.cs#L47C20-L47C122" }, { "DocsId": "P:System.CodeDom.CodeTypeDeclaration.IsStruct", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclaration.cs#L62C20-L62C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclaration.cs#L62C20-L62C29" }, { "DocsId": "P:System.CodeDom.CodeTypeDeclaration.IsEnum", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclaration.cs#L77C20-L77C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclaration.cs#L77C20-L77C27" }, { "DocsId": "P:System.CodeDom.CodeTypeDeclaration.IsInterface", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclaration.cs#L92C20-L92C100" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclaration.cs#L92C20-L92C100" }, { "DocsId": "P:System.CodeDom.CodeTypeDeclaration.IsPartial", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclaration.cs#L109C33-L109C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclaration.cs#L109C33-L109C37" }, { "DocsId": "P:System.CodeDom.CodeTypeDeclaration.Members", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclaration.cs#L115C17-L121C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclaration.cs#L115C17-L121C33" }, { "DocsId": "P:System.CodeDom.CodeTypeDeclaration.TypeParameters", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclaration.cs#L125C62-L125C115" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclaration.cs#L125C62-L125C115" } ], "DocsId": "T:System.CodeDom.CodeTypeDeclaration", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclaration.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclaration.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeTypeDeclarationCollection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclarationCollection.cs#L10C9-L10C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclarationCollection.cs#L10C9-L10C51" }, { "DocsId": "M:System.CodeDom.CodeTypeDeclarationCollection.#ctor(System.CodeDom.CodeTypeDeclarationCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclarationCollection.cs#L12C9-L15C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclarationCollection.cs#L12C9-L15C10" }, { "DocsId": "M:System.CodeDom.CodeTypeDeclarationCollection.#ctor(System.CodeDom.CodeTypeDeclaration[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclarationCollection.cs#L17C9-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclarationCollection.cs#L17C9-L20C10" }, { "DocsId": "M:System.CodeDom.CodeTypeDeclarationCollection.Add(System.CodeDom.CodeTypeDeclaration)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclarationCollection.cs#L28C54-L28C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclarationCollection.cs#L28C54-L28C69" }, { "DocsId": "M:System.CodeDom.CodeTypeDeclarationCollection.AddRange(System.CodeDom.CodeTypeDeclaration[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclarationCollection.cs#L32C13-L41C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclarationCollection.cs#L32C13-L41C10" }, { "DocsId": "M:System.CodeDom.CodeTypeDeclarationCollection.AddRange(System.CodeDom.CodeTypeDeclarationCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclarationCollection.cs#L45C13-L55C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclarationCollection.cs#L45C13-L55C10" }, { "DocsId": "M:System.CodeDom.CodeTypeDeclarationCollection.Contains(System.CodeDom.CodeTypeDeclaration)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclarationCollection.cs#L57C60-L57C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclarationCollection.cs#L57C60-L57C80" }, { "DocsId": "M:System.CodeDom.CodeTypeDeclarationCollection.CopyTo(System.CodeDom.CodeTypeDeclaration[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclarationCollection.cs#L59C71-L59C96" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclarationCollection.cs#L59C71-L59C96" }, { "DocsId": "M:System.CodeDom.CodeTypeDeclarationCollection.IndexOf(System.CodeDom.CodeTypeDeclaration)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclarationCollection.cs#L61C58-L61C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclarationCollection.cs#L61C58-L61C77" }, { "DocsId": "M:System.CodeDom.CodeTypeDeclarationCollection.Insert(System.Int32,System.CodeDom.CodeTypeDeclaration)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclarationCollection.cs#L63C69-L63C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclarationCollection.cs#L63C69-L63C94" }, { "DocsId": "M:System.CodeDom.CodeTypeDeclarationCollection.Remove(System.CodeDom.CodeTypeDeclaration)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclarationCollection.cs#L65C58-L65C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclarationCollection.cs#L65C58-L65C76" }, { "DocsId": "P:System.CodeDom.CodeTypeDeclarationCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclarationCollection.cs#L24C20-L24C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclarationCollection.cs#L24C20-L24C52" } ], "DocsId": "T:System.CodeDom.CodeTypeDeclarationCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclarationCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclarationCollection.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeTypeDelegate.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDelegate.cs#L31C83-L18C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDelegate.cs#L31C83-L18C10" }, { "DocsId": "M:System.CodeDom.CodeTypeDelegate.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDelegate.cs#L20C48-L23C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDelegate.cs#L20C48-L23C10" }, { "DocsId": "P:System.CodeDom.CodeTypeDelegate.ReturnType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDelegate.cs#L27C20-L27C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDelegate.cs#L27C20-L27C61" }, { "DocsId": "P:System.CodeDom.CodeTypeDelegate.Parameters", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDelegate.cs#L31C74-L31C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDelegate.cs#L31C74-L31C78" } ], "DocsId": "T:System.CodeDom.CodeTypeDelegate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDelegate.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDelegate.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeTypeMember.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMember.cs#L19C60-L29C103" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMember.cs#L19C60-L29C103" }, { "DocsId": "P:System.CodeDom.CodeTypeMember.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMember.cs#L15C20-L15C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMember.cs#L15C20-L15C41" }, { "DocsId": "P:System.CodeDom.CodeTypeMember.Attributes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMember.cs#L19C46-L19C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMember.cs#L19C46-L19C50" }, { "DocsId": "P:System.CodeDom.CodeTypeMember.CustomAttributes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMember.cs#L23C20-L23C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMember.cs#L23C20-L23C82" }, { "DocsId": "P:System.CodeDom.CodeTypeMember.LinePragma", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMember.cs#L27C44-L27C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMember.cs#L27C44-L27C48" }, { "DocsId": "P:System.CodeDom.CodeTypeMember.Comments", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMember.cs#L29C58-L29C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMember.cs#L29C58-L29C62" }, { "DocsId": "P:System.CodeDom.CodeTypeMember.StartDirectives", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMember.cs#L31C59-L31C109" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMember.cs#L31C59-L31C109" }, { "DocsId": "P:System.CodeDom.CodeTypeMember.EndDirectives", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMember.cs#L33C57-L33C105" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMember.cs#L33C57-L33C105" } ], "DocsId": "T:System.CodeDom.CodeTypeMember", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMember.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMember.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeTypeMemberCollection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMemberCollection.cs#L10C9-L10C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMemberCollection.cs#L10C9-L10C46" }, { "DocsId": "M:System.CodeDom.CodeTypeMemberCollection.#ctor(System.CodeDom.CodeTypeMemberCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMemberCollection.cs#L12C9-L15C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMemberCollection.cs#L12C9-L15C10" }, { "DocsId": "M:System.CodeDom.CodeTypeMemberCollection.#ctor(System.CodeDom.CodeTypeMember[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMemberCollection.cs#L17C9-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMemberCollection.cs#L17C9-L20C10" }, { "DocsId": "M:System.CodeDom.CodeTypeMemberCollection.Add(System.CodeDom.CodeTypeMember)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMemberCollection.cs#L28C49-L28C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMemberCollection.cs#L28C49-L28C64" }, { "DocsId": "M:System.CodeDom.CodeTypeMemberCollection.AddRange(System.CodeDom.CodeTypeMember[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMemberCollection.cs#L32C13-L41C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMemberCollection.cs#L32C13-L41C10" }, { "DocsId": "M:System.CodeDom.CodeTypeMemberCollection.AddRange(System.CodeDom.CodeTypeMemberCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMemberCollection.cs#L45C13-L55C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMemberCollection.cs#L45C13-L55C10" }, { "DocsId": "M:System.CodeDom.CodeTypeMemberCollection.Contains(System.CodeDom.CodeTypeMember)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMemberCollection.cs#L57C55-L57C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMemberCollection.cs#L57C55-L57C75" }, { "DocsId": "M:System.CodeDom.CodeTypeMemberCollection.CopyTo(System.CodeDom.CodeTypeMember[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMemberCollection.cs#L59C66-L59C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMemberCollection.cs#L59C66-L59C91" }, { "DocsId": "M:System.CodeDom.CodeTypeMemberCollection.IndexOf(System.CodeDom.CodeTypeMember)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMemberCollection.cs#L61C53-L61C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMemberCollection.cs#L61C53-L61C72" }, { "DocsId": "M:System.CodeDom.CodeTypeMemberCollection.Insert(System.Int32,System.CodeDom.CodeTypeMember)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMemberCollection.cs#L63C64-L63C89" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMemberCollection.cs#L63C64-L63C89" }, { "DocsId": "M:System.CodeDom.CodeTypeMemberCollection.Remove(System.CodeDom.CodeTypeMember)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMemberCollection.cs#L65C53-L65C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMemberCollection.cs#L65C53-L65C71" }, { "DocsId": "P:System.CodeDom.CodeTypeMemberCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMemberCollection.cs#L24C20-L24C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMemberCollection.cs#L24C20-L24C47" } ], "DocsId": "T:System.CodeDom.CodeTypeMemberCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMemberCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMemberCollection.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeTypeOfExpression.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeOfExpression.cs#L10C9-L10C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeOfExpression.cs#L10C9-L10C42" }, { "DocsId": "M:System.CodeDom.CodeTypeOfExpression.#ctor(System.CodeDom.CodeTypeReference)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeOfExpression.cs#L12C9-L15C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeOfExpression.cs#L12C9-L15C10" }, { "DocsId": "M:System.CodeDom.CodeTypeOfExpression.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeOfExpression.cs#L17C9-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeOfExpression.cs#L17C9-L20C10" }, { "DocsId": "M:System.CodeDom.CodeTypeOfExpression.#ctor(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeOfExpression.cs#L22C9-L25C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeOfExpression.cs#L22C9-L25C10" }, { "DocsId": "P:System.CodeDom.CodeTypeOfExpression.Type", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeOfExpression.cs#L29C20-L29C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeOfExpression.cs#L29C20-L29C55" } ], "DocsId": "T:System.CodeDom.CodeTypeOfExpression", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeOfExpression.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeOfExpression.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeTypeParameter.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameter.cs#L12C9-L12C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameter.cs#L12C9-L12C39" }, { "DocsId": "M:System.CodeDom.CodeTypeParameter.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameter.cs#L14C9-L17C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameter.cs#L14C9-L17C10" }, { "DocsId": "P:System.CodeDom.CodeTypeParameter.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameter.cs#L21C20-L21C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameter.cs#L21C20-L21C41" }, { "DocsId": "P:System.CodeDom.CodeTypeParameter.Constraints", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameter.cs#L25C59-L25C109" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameter.cs#L25C59-L25C109" }, { "DocsId": "P:System.CodeDom.CodeTypeParameter.CustomAttributes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameter.cs#L27C71-L27C133" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameter.cs#L27C71-L27C133" }, { "DocsId": "P:System.CodeDom.CodeTypeParameter.HasConstructorConstraint", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameter.cs#L29C48-L29C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameter.cs#L29C48-L29C52" } ], "DocsId": "T:System.CodeDom.CodeTypeParameter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameter.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeTypeParameterCollection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameterCollection.cs#L10C9-L10C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameterCollection.cs#L10C9-L10C49" }, { "DocsId": "M:System.CodeDom.CodeTypeParameterCollection.#ctor(System.CodeDom.CodeTypeParameterCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameterCollection.cs#L12C9-L15C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameterCollection.cs#L12C9-L15C10" }, { "DocsId": "M:System.CodeDom.CodeTypeParameterCollection.#ctor(System.CodeDom.CodeTypeParameter[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameterCollection.cs#L17C9-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameterCollection.cs#L17C9-L20C10" }, { "DocsId": "M:System.CodeDom.CodeTypeParameterCollection.Add(System.CodeDom.CodeTypeParameter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameterCollection.cs#L28C52-L28C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameterCollection.cs#L28C52-L28C67" }, { "DocsId": "M:System.CodeDom.CodeTypeParameterCollection.Add(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameterCollection.cs#L30C42-L30C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameterCollection.cs#L30C42-L30C75" }, { "DocsId": "M:System.CodeDom.CodeTypeParameterCollection.AddRange(System.CodeDom.CodeTypeParameter[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameterCollection.cs#L34C13-L43C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameterCollection.cs#L34C13-L43C10" }, { "DocsId": "M:System.CodeDom.CodeTypeParameterCollection.AddRange(System.CodeDom.CodeTypeParameterCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameterCollection.cs#L47C13-L57C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameterCollection.cs#L47C13-L57C10" }, { "DocsId": "M:System.CodeDom.CodeTypeParameterCollection.Contains(System.CodeDom.CodeTypeParameter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameterCollection.cs#L59C58-L59C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameterCollection.cs#L59C58-L59C78" }, { "DocsId": "M:System.CodeDom.CodeTypeParameterCollection.CopyTo(System.CodeDom.CodeTypeParameter[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameterCollection.cs#L61C69-L61C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameterCollection.cs#L61C69-L61C94" }, { "DocsId": "M:System.CodeDom.CodeTypeParameterCollection.IndexOf(System.CodeDom.CodeTypeParameter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameterCollection.cs#L63C56-L63C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameterCollection.cs#L63C56-L63C75" }, { "DocsId": "M:System.CodeDom.CodeTypeParameterCollection.Insert(System.Int32,System.CodeDom.CodeTypeParameter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameterCollection.cs#L65C67-L65C92" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameterCollection.cs#L65C67-L65C92" }, { "DocsId": "M:System.CodeDom.CodeTypeParameterCollection.Remove(System.CodeDom.CodeTypeParameter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameterCollection.cs#L67C56-L67C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameterCollection.cs#L67C56-L67C74" }, { "DocsId": "P:System.CodeDom.CodeTypeParameterCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameterCollection.cs#L24C20-L24C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameterCollection.cs#L24C20-L24C50" } ], "DocsId": "T:System.CodeDom.CodeTypeParameterCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameterCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameterCollection.cs" }, { "Members": [ { "DocsId": "F:System.CodeDom.CodeTypeReferenceOptions.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs" }, { "DocsId": "F:System.CodeDom.CodeTypeReferenceOptions.GlobalReference", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs" }, { "DocsId": "F:System.CodeDom.CodeTypeReferenceOptions.GenericTypeParameter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs" } ], "DocsId": "T:System.CodeDom.CodeTypeReferenceOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeTypeReference.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs#L36C9-L41C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs#L36C9-L41C10" }, { "DocsId": "M:System.CodeDom.CodeTypeReference.#ctor(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs#L43C9-L68C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs#L43C9-L68C10" }, { "DocsId": "M:System.CodeDom.CodeTypeReference.#ctor(System.Type,System.CodeDom.CodeTypeReferenceOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs#L70C97-L73C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs#L70C97-L73C10" }, { "DocsId": "M:System.CodeDom.CodeTypeReference.#ctor(System.String,System.CodeDom.CodeTypeReferenceOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs#L75C9-L78C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs#L75C9-L78C10" }, { "DocsId": "M:System.CodeDom.CodeTypeReference.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs#L80C9-L83C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs#L80C9-L83C10" }, { "DocsId": "M:System.CodeDom.CodeTypeReference.#ctor(System.String,System.CodeDom.CodeTypeReference[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs#L284C95-L290C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs#L284C95-L290C10" }, { "DocsId": "M:System.CodeDom.CodeTypeReference.#ctor(System.CodeDom.CodeTypeParameter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs#L294C13-L297C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs#L294C13-L297C10" }, { "DocsId": "M:System.CodeDom.CodeTypeReference.#ctor(System.String,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs#L300C9-L305C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs#L300C9-L305C10" }, { "DocsId": "M:System.CodeDom.CodeTypeReference.#ctor(System.CodeDom.CodeTypeReference,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs#L307C9-L312C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs#L307C9-L312C10" }, { "DocsId": "P:System.CodeDom.CodeTypeReference.ArrayElementType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs#L314C54-L314C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs#L314C54-L314C58" }, { "DocsId": "P:System.CodeDom.CodeTypeReference.ArrayRank", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs#L316C32-L316C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs#L316C32-L316C36" }, { "DocsId": "P:System.CodeDom.CodeTypeReference.BaseType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs#L324C17-L337C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs#L324C17-L337C32" }, { "DocsId": "P:System.CodeDom.CodeTypeReference.Options", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs#L346C51-L346C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs#L346C51-L346C55" }, { "DocsId": "P:System.CodeDom.CodeTypeReference.TypeArguments", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs#L352C17-L357C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs#L352C17-L357C77" } ], "DocsId": "T:System.CodeDom.CodeTypeReference", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeTypeReferenceCollection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/CodeDom/CodeTypeReferenceCollection.cs#L18C9-L18C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/CodeDom/CodeTypeReferenceCollection.cs#L18C9-L18C49" }, { "DocsId": "M:System.CodeDom.CodeTypeReferenceCollection.#ctor(System.CodeDom.CodeTypeReferenceCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/CodeDom/CodeTypeReferenceCollection.cs#L20C9-L23C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/CodeDom/CodeTypeReferenceCollection.cs#L20C9-L23C10" }, { "DocsId": "M:System.CodeDom.CodeTypeReferenceCollection.#ctor(System.CodeDom.CodeTypeReference[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/CodeDom/CodeTypeReferenceCollection.cs#L25C9-L28C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/CodeDom/CodeTypeReferenceCollection.cs#L25C9-L28C10" }, { "DocsId": "M:System.CodeDom.CodeTypeReferenceCollection.Add(System.CodeDom.CodeTypeReference)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/CodeDom/CodeTypeReferenceCollection.cs#L36C52-L36C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/CodeDom/CodeTypeReferenceCollection.cs#L36C52-L36C67" }, { "DocsId": "M:System.CodeDom.CodeTypeReferenceCollection.Add(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/CodeDom/CodeTypeReferenceCollection.cs#L38C42-L38C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/CodeDom/CodeTypeReferenceCollection.cs#L38C42-L38C75" }, { "DocsId": "M:System.CodeDom.CodeTypeReferenceCollection.Add(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/CodeDom/CodeTypeReferenceCollection.cs#L40C40-L40C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/CodeDom/CodeTypeReferenceCollection.cs#L40C40-L40C73" }, { "DocsId": "M:System.CodeDom.CodeTypeReferenceCollection.AddRange(System.CodeDom.CodeTypeReference[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/CodeDom/CodeTypeReferenceCollection.cs#L45C13-L57C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/CodeDom/CodeTypeReferenceCollection.cs#L45C13-L57C10" }, { "DocsId": "M:System.CodeDom.CodeTypeReferenceCollection.AddRange(System.CodeDom.CodeTypeReferenceCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/CodeDom/CodeTypeReferenceCollection.cs#L62C13-L75C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/CodeDom/CodeTypeReferenceCollection.cs#L62C13-L75C10" }, { "DocsId": "M:System.CodeDom.CodeTypeReferenceCollection.Contains(System.CodeDom.CodeTypeReference)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/CodeDom/CodeTypeReferenceCollection.cs#L77C58-L77C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/CodeDom/CodeTypeReferenceCollection.cs#L77C58-L77C78" }, { "DocsId": "M:System.CodeDom.CodeTypeReferenceCollection.CopyTo(System.CodeDom.CodeTypeReference[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/CodeDom/CodeTypeReferenceCollection.cs#L79C69-L79C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/CodeDom/CodeTypeReferenceCollection.cs#L79C69-L79C94" }, { "DocsId": "M:System.CodeDom.CodeTypeReferenceCollection.IndexOf(System.CodeDom.CodeTypeReference)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/CodeDom/CodeTypeReferenceCollection.cs#L81C56-L81C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/CodeDom/CodeTypeReferenceCollection.cs#L81C56-L81C75" }, { "DocsId": "M:System.CodeDom.CodeTypeReferenceCollection.Insert(System.Int32,System.CodeDom.CodeTypeReference)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/CodeDom/CodeTypeReferenceCollection.cs#L83C67-L83C92" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/CodeDom/CodeTypeReferenceCollection.cs#L83C67-L83C92" }, { "DocsId": "M:System.CodeDom.CodeTypeReferenceCollection.Remove(System.CodeDom.CodeTypeReference)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/CodeDom/CodeTypeReferenceCollection.cs#L85C56-L85C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/CodeDom/CodeTypeReferenceCollection.cs#L85C56-L85C74" }, { "DocsId": "P:System.CodeDom.CodeTypeReferenceCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/CodeDom/CodeTypeReferenceCollection.cs#L32C19-L32C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/CodeDom/CodeTypeReferenceCollection.cs#L32C19-L32C62" } ], "DocsId": "T:System.CodeDom.CodeTypeReferenceCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/CodeDom/CodeTypeReferenceCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/CodeDom/CodeTypeReferenceCollection.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeTypeReferenceExpression.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeReferenceExpression.cs#L10C9-L10C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeReferenceExpression.cs#L10C9-L10C49" }, { "DocsId": "M:System.CodeDom.CodeTypeReferenceExpression.#ctor(System.CodeDom.CodeTypeReference)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeReferenceExpression.cs#L12C9-L15C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeReferenceExpression.cs#L12C9-L15C10" }, { "DocsId": "M:System.CodeDom.CodeTypeReferenceExpression.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeReferenceExpression.cs#L17C9-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeReferenceExpression.cs#L17C9-L20C10" }, { "DocsId": "M:System.CodeDom.CodeTypeReferenceExpression.#ctor(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeReferenceExpression.cs#L22C9-L25C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeReferenceExpression.cs#L22C9-L25C10" }, { "DocsId": "P:System.CodeDom.CodeTypeReferenceExpression.Type", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeReferenceExpression.cs#L29C20-L29C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeReferenceExpression.cs#L29C20-L29C55" } ], "DocsId": "T:System.CodeDom.CodeTypeReferenceExpression", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeReferenceExpression.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeReferenceExpression.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeVariableDeclarationStatement.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeVariableDeclarationStatement.cs#L11C9-L11C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeVariableDeclarationStatement.cs#L11C9-L11C54" }, { "DocsId": "M:System.CodeDom.CodeVariableDeclarationStatement.#ctor(System.CodeDom.CodeTypeReference,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeVariableDeclarationStatement.cs#L13C9-L17C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeVariableDeclarationStatement.cs#L13C9-L17C10" }, { "DocsId": "M:System.CodeDom.CodeVariableDeclarationStatement.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeVariableDeclarationStatement.cs#L19C9-L23C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeVariableDeclarationStatement.cs#L19C9-L23C10" }, { "DocsId": "M:System.CodeDom.CodeVariableDeclarationStatement.#ctor(System.Type,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeVariableDeclarationStatement.cs#L25C9-L29C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeVariableDeclarationStatement.cs#L25C9-L29C10" }, { "DocsId": "M:System.CodeDom.CodeVariableDeclarationStatement.#ctor(System.CodeDom.CodeTypeReference,System.String,System.CodeDom.CodeExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeVariableDeclarationStatement.cs#L31C9-L36C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeVariableDeclarationStatement.cs#L31C9-L36C10" }, { "DocsId": "M:System.CodeDom.CodeVariableDeclarationStatement.#ctor(System.String,System.String,System.CodeDom.CodeExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeVariableDeclarationStatement.cs#L38C9-L43C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeVariableDeclarationStatement.cs#L38C9-L43C10" }, { "DocsId": "M:System.CodeDom.CodeVariableDeclarationStatement.#ctor(System.Type,System.String,System.CodeDom.CodeExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeVariableDeclarationStatement.cs#L45C9-L50C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeVariableDeclarationStatement.cs#L45C9-L50C10" }, { "DocsId": "P:System.CodeDom.CodeVariableDeclarationStatement.InitExpression", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeVariableDeclarationStatement.cs#L52C48-L52C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeVariableDeclarationStatement.cs#L52C48-L52C52" }, { "DocsId": "P:System.CodeDom.CodeVariableDeclarationStatement.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeVariableDeclarationStatement.cs#L56C20-L56C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeVariableDeclarationStatement.cs#L56C20-L56C41" }, { "DocsId": "P:System.CodeDom.CodeVariableDeclarationStatement.Type", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeVariableDeclarationStatement.cs#L62C20-L62C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeVariableDeclarationStatement.cs#L62C20-L62C55" } ], "DocsId": "T:System.CodeDom.CodeVariableDeclarationStatement", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeVariableDeclarationStatement.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeVariableDeclarationStatement.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeVariableReferenceExpression.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeVariableReferenceExpression.cs#L10C9-L10C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeVariableReferenceExpression.cs#L10C9-L10C53" }, { "DocsId": "M:System.CodeDom.CodeVariableReferenceExpression.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeVariableReferenceExpression.cs#L12C9-L15C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeVariableReferenceExpression.cs#L12C9-L15C10" }, { "DocsId": "P:System.CodeDom.CodeVariableReferenceExpression.VariableName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeVariableReferenceExpression.cs#L19C20-L19C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeVariableReferenceExpression.cs#L19C20-L19C49" } ], "DocsId": "T:System.CodeDom.CodeVariableReferenceExpression", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeVariableReferenceExpression.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeVariableReferenceExpression.cs" }, { "Members": [ { "DocsId": "F:System.CodeDom.FieldDirection.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/FieldDirection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/FieldDirection.cs" }, { "DocsId": "F:System.CodeDom.FieldDirection.In", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/FieldDirection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/FieldDirection.cs" }, { "DocsId": "F:System.CodeDom.FieldDirection.Out", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/FieldDirection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/FieldDirection.cs" }, { "DocsId": "F:System.CodeDom.FieldDirection.Ref", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/FieldDirection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/FieldDirection.cs" } ], "DocsId": "T:System.CodeDom.FieldDirection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/FieldDirection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/FieldDirection.cs" }, { "Members": [ { "DocsId": "F:System.CodeDom.MemberAttributes.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" }, { "DocsId": "F:System.CodeDom.MemberAttributes.Abstract", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" }, { "DocsId": "F:System.CodeDom.MemberAttributes.Final", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" }, { "DocsId": "F:System.CodeDom.MemberAttributes.Static", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" }, { "DocsId": "F:System.CodeDom.MemberAttributes.Override", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" }, { "DocsId": "F:System.CodeDom.MemberAttributes.Const", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" }, { "DocsId": "F:System.CodeDom.MemberAttributes.New", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" }, { "DocsId": "F:System.CodeDom.MemberAttributes.Overloaded", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" }, { "DocsId": "F:System.CodeDom.MemberAttributes.Assembly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" }, { "DocsId": "F:System.CodeDom.MemberAttributes.FamilyAndAssembly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" }, { "DocsId": "F:System.CodeDom.MemberAttributes.Family", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" }, { "DocsId": "F:System.CodeDom.MemberAttributes.FamilyOrAssembly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" }, { "DocsId": "F:System.CodeDom.MemberAttributes.Private", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" }, { "DocsId": "F:System.CodeDom.MemberAttributes.Public", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" }, { "DocsId": "F:System.CodeDom.MemberAttributes.AccessMask", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" }, { "DocsId": "F:System.CodeDom.MemberAttributes.ScopeMask", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" }, { "DocsId": "F:System.CodeDom.MemberAttributes.VTableMask", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" } ], "DocsId": "T:System.CodeDom.MemberAttributes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.Compiler.CodeCompiler.System#CodeDom#Compiler#ICodeCompiler#CompileAssemblyFromDom(System.CodeDom.Compiler.CompilerParameters,System.CodeDom.CodeCompileUnit)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs#L13C13-L26C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs#L13C13-L26C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeCompiler.System#CodeDom#Compiler#ICodeCompiler#CompileAssemblyFromFile(System.CodeDom.Compiler.CompilerParameters,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs#L30C13-L43C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs#L30C13-L43C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeCompiler.System#CodeDom#Compiler#ICodeCompiler#CompileAssemblyFromSource(System.CodeDom.Compiler.CompilerParameters,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs#L47C13-L60C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs#L47C13-L60C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeCompiler.System#CodeDom#Compiler#ICodeCompiler#CompileAssemblyFromSourceBatch(System.CodeDom.Compiler.CompilerParameters,System.String[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs#L64C13-L77C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs#L64C13-L77C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeCompiler.System#CodeDom#Compiler#ICodeCompiler#CompileAssemblyFromFileBatch(System.CodeDom.Compiler.CompilerParameters,System.String[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs#L81C13-L104C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs#L81C13-L104C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeCompiler.System#CodeDom#Compiler#ICodeCompiler#CompileAssemblyFromDomBatch(System.CodeDom.Compiler.CompilerParameters,System.CodeDom.CodeCompileUnit[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs#L108C13-L121C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs#L108C13-L121C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeCompiler.FromDom(System.CodeDom.Compiler.CompilerParameters,System.CodeDom.CodeCompileUnit)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs#L129C13-L134C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs#L129C13-L134C72" }, { "DocsId": "M:System.CodeDom.Compiler.CodeCompiler.FromFile(System.CodeDom.Compiler.CompilerParameters,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs#L139C13-L151C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs#L139C13-L151C71" }, { "DocsId": "M:System.CodeDom.Compiler.CodeCompiler.FromSource(System.CodeDom.Compiler.CompilerParameters,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs#L156C13-L161C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs#L156C13-L161C71" }, { "DocsId": "M:System.CodeDom.Compiler.CodeCompiler.FromDomBatch(System.CodeDom.Compiler.CompilerParameters,System.CodeDom.CodeCompileUnit[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs#L166C13-L194C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs#L166C13-L194C54" }, { "DocsId": "M:System.CodeDom.Compiler.CodeCompiler.FromFileBatch(System.CodeDom.Compiler.CompilerParameters,System.String[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs#L213C13-L222C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs#L213C13-L222C55" }, { "DocsId": "M:System.CodeDom.Compiler.CodeCompiler.ProcessCompilerOutputLine(System.CodeDom.Compiler.CompilerResults,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeCompiler.CmdArgsFromParameters(System.CodeDom.Compiler.CompilerParameters)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeCompiler.GetResponseFileCmdArgs(System.CodeDom.Compiler.CompilerParameters,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs#L231C13-L240C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs#L231C13-L240C52" }, { "DocsId": "M:System.CodeDom.Compiler.CodeCompiler.FromSourceBatch(System.CodeDom.Compiler.CompilerParameters,System.String[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs#L245C13-L267C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs#L245C13-L267C54" }, { "DocsId": "M:System.CodeDom.Compiler.CodeCompiler.JoinStringArray(System.String[],System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs#L272C13-L294C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs#L272C13-L294C34" }, { "DocsId": "M:System.CodeDom.Compiler.CodeCompiler.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs" }, { "DocsId": "P:System.CodeDom.Compiler.CodeCompiler.FileExtension", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs" }, { "DocsId": "P:System.CodeDom.Compiler.CodeCompiler.CompilerName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs" } ], "DocsId": "T:System.CodeDom.Compiler.CodeCompiler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.Compiler.CodeDomProvider.CreateProvider(System.String,System.Collections.Generic.IDictionary{System.String,System.String})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L55C13-L56C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L55C13-L56C65" }, { "DocsId": "M:System.CodeDom.Compiler.CodeDomProvider.CreateProvider(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L61C13-L62C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L61C13-L62C50" }, { "DocsId": "M:System.CodeDom.Compiler.CodeDomProvider.GetLanguageFromExtension(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L67C13-L72C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L67C13-L72C55" }, { "DocsId": "M:System.CodeDom.Compiler.CodeDomProvider.IsDefinedLanguage(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L75C66-L75C117" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L75C66-L75C117" }, { "DocsId": "M:System.CodeDom.Compiler.CodeDomProvider.IsDefinedExtension(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L77C68-L77C121" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L77C68-L77C121" }, { "DocsId": "M:System.CodeDom.Compiler.CodeDomProvider.GetCompilerInfo(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L81C13-L86C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L81C13-L86C33" }, { "DocsId": "M:System.CodeDom.Compiler.CodeDomProvider.GetAllCompilerInfo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L113C62-L113C89" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L113C62-L113C89" }, { "DocsId": "M:System.CodeDom.Compiler.CodeDomProvider.CreateGenerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeDomProvider.CreateGenerator(System.IO.TextWriter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L123C77-L123C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L123C77-L123C94" }, { "DocsId": "M:System.CodeDom.Compiler.CodeDomProvider.CreateGenerator(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L125C75-L125C92" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L125C75-L125C92" }, { "DocsId": "M:System.CodeDom.Compiler.CodeDomProvider.CreateCompiler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeDomProvider.CreateParser", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L132C54-L132C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L132C54-L132C58" }, { "DocsId": "M:System.CodeDom.Compiler.CodeDomProvider.GetConverter(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L134C65-L134C98" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L134C65-L134C98" }, { "DocsId": "M:System.CodeDom.Compiler.CodeDomProvider.CompileAssemblyFromDom(System.CodeDom.Compiler.CompilerParameters,System.CodeDom.CodeCompileUnit[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L137C13-L137C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L137C13-L137C90" }, { "DocsId": "M:System.CodeDom.Compiler.CodeDomProvider.CompileAssemblyFromFile(System.CodeDom.Compiler.CompilerParameters,System.String[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L140C13-L140C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L140C13-L140C84" }, { "DocsId": "M:System.CodeDom.Compiler.CodeDomProvider.CompileAssemblyFromSource(System.CodeDom.Compiler.CompilerParameters,System.String[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L143C13-L143C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L143C13-L143C84" }, { "DocsId": "M:System.CodeDom.Compiler.CodeDomProvider.IsValidIdentifier(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L146C13-L146C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L146C13-L146C61" }, { "DocsId": "M:System.CodeDom.Compiler.CodeDomProvider.CreateEscapedIdentifier(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L149C13-L149C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L149C13-L149C67" }, { "DocsId": "M:System.CodeDom.Compiler.CodeDomProvider.CreateValidIdentifier(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L152C13-L152C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L152C13-L152C65" }, { "DocsId": "M:System.CodeDom.Compiler.CodeDomProvider.GetTypeOutput(System.CodeDom.CodeTypeReference)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L155C13-L155C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L155C13-L155C56" }, { "DocsId": "M:System.CodeDom.Compiler.CodeDomProvider.Supports(System.CodeDom.Compiler.GeneratorSupport)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L158C13-L158C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L158C13-L158C63" }, { "DocsId": "M:System.CodeDom.Compiler.CodeDomProvider.GenerateCodeFromExpression(System.CodeDom.CodeExpression,System.IO.TextWriter,System.CodeDom.Compiler.CodeGeneratorOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L161C13-L161C92" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L161C13-L161C92" }, { "DocsId": "M:System.CodeDom.Compiler.CodeDomProvider.GenerateCodeFromStatement(System.CodeDom.CodeStatement,System.IO.TextWriter,System.CodeDom.Compiler.CodeGeneratorOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L164C13-L164C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L164C13-L164C90" }, { "DocsId": "M:System.CodeDom.Compiler.CodeDomProvider.GenerateCodeFromNamespace(System.CodeDom.CodeNamespace,System.IO.TextWriter,System.CodeDom.Compiler.CodeGeneratorOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L167C13-L167C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L167C13-L167C94" }, { "DocsId": "M:System.CodeDom.Compiler.CodeDomProvider.GenerateCodeFromCompileUnit(System.CodeDom.CodeCompileUnit,System.IO.TextWriter,System.CodeDom.Compiler.CodeGeneratorOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L170C13-L170C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L170C13-L170C94" }, { "DocsId": "M:System.CodeDom.Compiler.CodeDomProvider.GenerateCodeFromType(System.CodeDom.CodeTypeDeclaration,System.IO.TextWriter,System.CodeDom.Compiler.CodeGeneratorOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L173C13-L173C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L173C13-L173C84" }, { "DocsId": "M:System.CodeDom.Compiler.CodeDomProvider.GenerateCodeFromMember(System.CodeDom.CodeTypeMember,System.IO.TextWriter,System.CodeDom.Compiler.CodeGeneratorOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L177C13-L177C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L177C13-L177C75" }, { "DocsId": "M:System.CodeDom.Compiler.CodeDomProvider.Parse(System.IO.TextReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L181C13-L181C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L181C13-L181C51" }, { "DocsId": "M:System.CodeDom.Compiler.CodeDomProvider.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs" }, { "DocsId": "P:System.CodeDom.Compiler.CodeDomProvider.FileExtension", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L115C48-L115C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L115C48-L115C60" }, { "DocsId": "P:System.CodeDom.Compiler.CodeDomProvider.LanguageOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L117C59-L117C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L117C59-L117C79" } ], "DocsId": "T:System.CodeDom.Compiler.CodeDomProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateDirectives(System.CodeDom.CodeDirectiveCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L105C9-L105C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L105C9-L105C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateNamespaces(System.CodeDom.CodeCompileUnit)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L229C41-L233C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L229C41-L233C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateTypes(System.CodeDom.CodeNamespace)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L237C13-L250C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L237C13-L250C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.System#CodeDom#Compiler#ICodeGenerator#Supports(System.CodeDom.Compiler.GeneratorSupport)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L252C67-L252C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L252C67-L252C84" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.System#CodeDom#Compiler#ICodeGenerator#GenerateCodeFromType(System.CodeDom.CodeTypeDeclaration,System.IO.TextWriter,System.CodeDom.Compiler.CodeGeneratorOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L256C13-L280C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L256C13-L280C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.System#CodeDom#Compiler#ICodeGenerator#GenerateCodeFromExpression(System.CodeDom.CodeExpression,System.IO.TextWriter,System.CodeDom.Compiler.CodeGeneratorOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L284C13-L308C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L284C13-L308C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.System#CodeDom#Compiler#ICodeGenerator#GenerateCodeFromCompileUnit(System.CodeDom.CodeCompileUnit,System.IO.TextWriter,System.CodeDom.Compiler.CodeGeneratorOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L312C13-L343C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L312C13-L343C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.System#CodeDom#Compiler#ICodeGenerator#GenerateCodeFromNamespace(System.CodeDom.CodeNamespace,System.IO.TextWriter,System.CodeDom.Compiler.CodeGeneratorOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L347C13-L371C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L347C13-L371C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.System#CodeDom#Compiler#ICodeGenerator#GenerateCodeFromStatement(System.CodeDom.CodeStatement,System.IO.TextWriter,System.CodeDom.Compiler.CodeGeneratorOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L375C13-L399C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L375C13-L399C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateCodeFromMember(System.CodeDom.CodeTypeMember,System.IO.TextWriter,System.CodeDom.Compiler.CodeGeneratorOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L403C13-L427C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L403C13-L427C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.System#CodeDom#Compiler#ICodeGenerator#IsValidIdentifier(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L429C64-L429C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L429C64-L429C88" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.System#CodeDom#Compiler#ICodeGenerator#ValidateIdentifier(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L431C65-L431C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L431C65-L431C90" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.System#CodeDom#Compiler#ICodeGenerator#CreateEscapedIdentifier(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L433C72-L433C102" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L433C72-L433C102" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.System#CodeDom#Compiler#ICodeGenerator#CreateValidIdentifier(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L435C70-L435C98" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L435C70-L435C98" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.System#CodeDom#Compiler#ICodeGenerator#GetTypeOutput(System.CodeDom.CodeTypeReference)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L437C72-L437C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L437C72-L437C91" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateExpression(System.CodeDom.CodeExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L511C13-L619C116" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L511C13-L619C116" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateSnippetCompileUnit(System.CodeDom.CodeSnippetCompileUnit)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L716C13-L737C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L716C13-L737C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateCompileUnit(System.CodeDom.CodeCompileUnit)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L799C13-L802C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L799C13-L802C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateNamespace(System.CodeDom.CodeNamespace)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L806C13-L819C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L806C13-L819C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateNamespaceImports(System.CodeDom.CodeNamespace)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L823C13-L841C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L823C13-L841C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateStatement(System.CodeDom.CodeStatement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L880C13-L973C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L880C13-L973C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateStatements(System.CodeDom.CodeStatementCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L977C13-L986C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L977C13-L986C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.OutputAttributeDeclarations(System.CodeDom.CodeAttributeDeclarationCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L990C13-L1034C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L990C13-L1034C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.OutputAttributeArgument(System.CodeDom.CodeAttributeArgument)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1038C13-L1049C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1038C13-L1049C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.OutputDirection(System.CodeDom.FieldDirection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1058C21-L1064C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L16707566C0-L1064C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.OutputFieldScopeModifier(System.CodeDom.MemberAttributes)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1068C13-L1088C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1068C13-L1088C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.OutputMemberAccessModifier(System.CodeDom.MemberAttributes)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1092C13-L1113C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1092C13-L1113C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.OutputMemberScopeModifier(System.CodeDom.MemberAttributes)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1117C13-L1151C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1117C13-L1151C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.OutputType(System.CodeDom.CodeTypeReference)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.OutputTypeAttributes(System.Reflection.TypeAttributes,System.Boolean,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1157C13-L1196C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1157C13-L1196C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.OutputTypeNamePair(System.CodeDom.CodeTypeReference,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1200C13-L1203C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1200C13-L1203C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.OutputIdentifier(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1205C66-L1205C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1205C66-L1205C85" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.OutputExpressionList(System.CodeDom.CodeExpressionCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1209C13-L1210C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1209C13-L1210C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.OutputExpressionList(System.CodeDom.CodeExpressionCollection,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1214C13-L1232C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1214C13-L1232C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.OutputOperator(System.CodeDom.CodeBinaryOperatorType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1239C21-L1290C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L16707566C0-L1290C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.OutputParameters(System.CodeDom.CodeParameterDeclarationExpressionCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1294C13-L1325C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1294C13-L1325C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateArrayCreateExpression(System.CodeDom.CodeArrayCreateExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateBaseReferenceExpression(System.CodeDom.CodeBaseReferenceExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateBinaryOperatorExpression(System.CodeDom.CodeBinaryOperatorExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1332C13-L1368C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1332C13-L1368C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.ContinueOnNewLine(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1370C64-L1370C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1370C64-L1370C84" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateCastExpression(System.CodeDom.CodeCastExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateDelegateCreateExpression(System.CodeDom.CodeDelegateCreateExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateFieldReferenceExpression(System.CodeDom.CodeFieldReferenceExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateArgumentReferenceExpression(System.CodeDom.CodeArgumentReferenceExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateVariableReferenceExpression(System.CodeDom.CodeVariableReferenceExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateIndexerExpression(System.CodeDom.CodeIndexerExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateArrayIndexerExpression(System.CodeDom.CodeArrayIndexerExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateSnippetExpression(System.CodeDom.CodeSnippetExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateMethodInvokeExpression(System.CodeDom.CodeMethodInvokeExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateMethodReferenceExpression(System.CodeDom.CodeMethodReferenceExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateEventReferenceExpression(System.CodeDom.CodeEventReferenceExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateDelegateInvokeExpression(System.CodeDom.CodeDelegateInvokeExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateObjectCreateExpression(System.CodeDom.CodeObjectCreateExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateParameterDeclarationExpression(System.CodeDom.CodeParameterDeclarationExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1388C13-L1401C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1388C13-L1401C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateDirectionExpression(System.CodeDom.CodeDirectionExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1405C13-L1412C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1405C13-L1412C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GeneratePrimitiveExpression(System.CodeDom.CodePrimitiveExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1416C13-L1474C111" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1416C13-L1474C111" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateSingleFloatValue(System.Single)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1478C69-L1478C128" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1478C69-L1478C128" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateDoubleValue(System.Double)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1480C65-L1480C124" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1480C65-L1480C124" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateDecimalValue(System.Decimal)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1482C67-L1482C121" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1482C67-L1482C121" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateDefaultValueExpression(System.CodeDom.CodeDefaultValueExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1486C9-L1486C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1486C9-L1486C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GeneratePropertyReferenceExpression(System.CodeDom.CodePropertyReferenceExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GeneratePropertySetValueReferenceExpression(System.CodeDom.CodePropertySetValueReferenceExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateThisReferenceExpression(System.CodeDom.CodeThisReferenceExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateTypeReferenceExpression(System.CodeDom.CodeTypeReferenceExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1496C13-L1502C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1496C13-L1502C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateTypeOfExpression(System.CodeDom.CodeTypeOfExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1506C13-L1514C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1506C13-L1514C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateExpressionStatement(System.CodeDom.CodeExpressionStatement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateIterationStatement(System.CodeDom.CodeIterationStatement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateThrowExceptionStatement(System.CodeDom.CodeThrowExceptionStatement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateCommentStatement(System.CodeDom.CodeCommentStatement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1521C13-L1531C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1521C13-L1531C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateCommentStatements(System.CodeDom.CodeCommentStatementCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1535C13-L1544C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1535C13-L1544C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateComment(System.CodeDom.CodeComment)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateMethodReturnStatement(System.CodeDom.CodeMethodReturnStatement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateConditionStatement(System.CodeDom.CodeConditionStatement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateTryCatchFinallyStatement(System.CodeDom.CodeTryCatchFinallyStatement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateAssignStatement(System.CodeDom.CodeAssignStatement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateAttachEventStatement(System.CodeDom.CodeAttachEventStatement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateRemoveEventStatement(System.CodeDom.CodeRemoveEventStatement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateGotoStatement(System.CodeDom.CodeGotoStatement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateLabeledStatement(System.CodeDom.CodeLabeledStatement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateSnippetStatement(System.CodeDom.CodeSnippetStatement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1558C13-L1564C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1558C13-L1564C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateVariableDeclarationStatement(System.CodeDom.CodeVariableDeclarationStatement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateLinePragmaStart(System.CodeDom.CodeLinePragma)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateLinePragmaEnd(System.CodeDom.CodeLinePragma)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateEvent(System.CodeDom.CodeMemberEvent,System.CodeDom.CodeTypeDeclaration)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateField(System.CodeDom.CodeMemberField)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateSnippetMember(System.CodeDom.CodeSnippetTypeMember)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateEntryPointMethod(System.CodeDom.CodeEntryPointMethod,System.CodeDom.CodeTypeDeclaration)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateMethod(System.CodeDom.CodeMemberMethod,System.CodeDom.CodeTypeDeclaration)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateProperty(System.CodeDom.CodeMemberProperty,System.CodeDom.CodeTypeDeclaration)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateConstructor(System.CodeDom.CodeConstructor,System.CodeDom.CodeTypeDeclaration)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateTypeConstructor(System.CodeDom.CodeTypeConstructor)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateTypeStart(System.CodeDom.CodeTypeDeclaration)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateTypeEnd(System.CodeDom.CodeTypeDeclaration)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateCompileUnitStart(System.CodeDom.CodeCompileUnit)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1582C13-L1591C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1582C13-L1591C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateCompileUnitEnd(System.CodeDom.CodeCompileUnit)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1595C13-L1604C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1595C13-L1604C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateNamespaceStart(System.CodeDom.CodeNamespace)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateNamespaceEnd(System.CodeDom.CodeNamespace)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateNamespaceImport(System.CodeDom.CodeNamespaceImport)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateAttributeDeclarationsStart(System.CodeDom.CodeAttributeDeclarationCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateAttributeDeclarationsEnd(System.CodeDom.CodeAttributeDeclarationCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.Supports(System.CodeDom.Compiler.GeneratorSupport)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.IsValidIdentifier(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.ValidateIdentifier(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1616C13-L1620C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1616C13-L1620C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.CreateEscapedIdentifier(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.CreateValidIdentifier(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GetTypeOutput(System.CodeDom.CodeTypeReference)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.QuoteSnippetString(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.IsValidLanguageIndependentIdentifier(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1627C82-L1627C137" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1627C82-L1627C137" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.ValidateIdentifiers(System.CodeDom.CodeObject)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1633C13-L1635C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1633C13-L1635C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "P:System.CodeDom.Compiler.CodeGenerator.CurrentClass", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L21C55-L21C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L21C55-L21C68" }, { "DocsId": "P:System.CodeDom.Compiler.CodeGenerator.CurrentTypeName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L23C45-L23C105" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L23C45-L23C105" }, { "DocsId": "P:System.CodeDom.Compiler.CodeGenerator.CurrentMember", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L25C51-L25C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L25C51-L25C65" }, { "DocsId": "P:System.CodeDom.Compiler.CodeGenerator.CurrentMemberName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L27C47-L27C109" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L27C47-L27C109" }, { "DocsId": "P:System.CodeDom.Compiler.CodeGenerator.IsCurrentInterface", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L29C46-L29C143" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L29C46-L29C143" }, { "DocsId": "P:System.CodeDom.Compiler.CodeGenerator.IsCurrentClass", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L31C42-L31C135" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L31C42-L31C135" }, { "DocsId": "P:System.CodeDom.Compiler.CodeGenerator.IsCurrentStruct", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L33C43-L33C137" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L33C43-L33C137" }, { "DocsId": "P:System.CodeDom.Compiler.CodeGenerator.IsCurrentEnum", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L35C41-L35C133" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L35C41-L35C133" }, { "DocsId": "P:System.CodeDom.Compiler.CodeGenerator.IsCurrentDelegate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L37C45-L37C103" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L37C45-L37C103" }, { "DocsId": "P:System.CodeDom.Compiler.CodeGenerator.Indent", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L41C20-L41C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L41C20-L41C34" }, { "DocsId": "P:System.CodeDom.Compiler.CodeGenerator.NullToken", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "P:System.CodeDom.Compiler.CodeGenerator.Output", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L47C40-L47C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L47C40-L47C47" }, { "DocsId": "P:System.CodeDom.Compiler.CodeGenerator.Options", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L49C51-L49C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L49C51-L49C59" } ], "DocsId": "T:System.CodeDom.Compiler.CodeGenerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.Compiler.CodeGeneratorOptions.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGeneratorOptions.cs#L11C9-L13C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGeneratorOptions.cs#L11C9-L13C42" }, { "DocsId": "P:System.CodeDom.Compiler.CodeGeneratorOptions.Item(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGeneratorOptions.cs#L17C20-L17C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGeneratorOptions.cs#L17C20-L17C35" }, { "DocsId": "P:System.CodeDom.Compiler.CodeGeneratorOptions.IndentString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGeneratorOptions.cs#L25C17-L26C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGeneratorOptions.cs#L25C17-L26C55" }, { "DocsId": "P:System.CodeDom.Compiler.CodeGeneratorOptions.BracingStyle", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGeneratorOptions.cs#L35C17-L36C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGeneratorOptions.cs#L35C17-L36C56" }, { "DocsId": "P:System.CodeDom.Compiler.CodeGeneratorOptions.ElseOnClosing", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGeneratorOptions.cs#L45C17-L46C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGeneratorOptions.cs#L45C17-L46C52" }, { "DocsId": "P:System.CodeDom.Compiler.CodeGeneratorOptions.BlankLinesBetweenMembers", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGeneratorOptions.cs#L55C17-L56C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGeneratorOptions.cs#L55C17-L56C51" }, { "DocsId": "P:System.CodeDom.Compiler.CodeGeneratorOptions.VerbatimOrder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGeneratorOptions.cs#L65C17-L66C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGeneratorOptions.cs#L65C17-L66C52" } ], "DocsId": "T:System.CodeDom.Compiler.CodeGeneratorOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGeneratorOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGeneratorOptions.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.Compiler.CodeParser.Parse(System.IO.TextReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeParser.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeParser.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeParser.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeParser.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeParser.cs" } ], "DocsId": "T:System.CodeDom.Compiler.CodeParser", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeParser.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeParser.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.Compiler.CompilerError.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerError.cs#L10C34-L10C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerError.cs#L10C34-L10C90" }, { "DocsId": "M:System.CodeDom.Compiler.CompilerError.#ctor(System.String,System.Int32,System.Int32,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerError.cs#L12C9-L19C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerError.cs#L12C9-L19C10" }, { "DocsId": "M:System.CodeDom.Compiler.CompilerError.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerError.cs#L33C46-L35C111" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerError.cs#L33C46-L35C111" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerError.Line", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerError.cs#L21C27-L21C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerError.cs#L21C27-L21C31" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerError.Column", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerError.cs#L23C29-L23C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerError.cs#L23C29-L23C33" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerError.ErrorNumber", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerError.cs#L25C37-L25C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerError.cs#L25C37-L25C41" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerError.ErrorText", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerError.cs#L27C35-L27C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerError.cs#L27C35-L27C39" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerError.IsWarning", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerError.cs#L29C33-L29C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerError.cs#L29C33-L29C37" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerError.FileName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerError.cs#L31C34-L31C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerError.cs#L31C34-L31C38" } ], "DocsId": "T:System.CodeDom.Compiler.CompilerError", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerError.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerError.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.Compiler.CompilerErrorCollection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerErrorCollection.cs#L10C9-L10C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerErrorCollection.cs#L10C9-L10C45" }, { "DocsId": "M:System.CodeDom.Compiler.CompilerErrorCollection.#ctor(System.CodeDom.Compiler.CompilerErrorCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerErrorCollection.cs#L12C9-L15C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerErrorCollection.cs#L12C9-L15C10" }, { "DocsId": "M:System.CodeDom.Compiler.CompilerErrorCollection.#ctor(System.CodeDom.Compiler.CompilerError[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerErrorCollection.cs#L17C9-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerErrorCollection.cs#L17C9-L20C10" }, { "DocsId": "M:System.CodeDom.Compiler.CompilerErrorCollection.Add(System.CodeDom.Compiler.CompilerError)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerErrorCollection.cs#L28C48-L28C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerErrorCollection.cs#L28C48-L28C63" }, { "DocsId": "M:System.CodeDom.Compiler.CompilerErrorCollection.AddRange(System.CodeDom.Compiler.CompilerError[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerErrorCollection.cs#L32C13-L41C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerErrorCollection.cs#L32C13-L41C10" }, { "DocsId": "M:System.CodeDom.Compiler.CompilerErrorCollection.AddRange(System.CodeDom.Compiler.CompilerErrorCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerErrorCollection.cs#L45C13-L55C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerErrorCollection.cs#L45C13-L55C10" }, { "DocsId": "M:System.CodeDom.Compiler.CompilerErrorCollection.Contains(System.CodeDom.Compiler.CompilerError)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerErrorCollection.cs#L57C54-L57C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerErrorCollection.cs#L57C54-L57C74" }, { "DocsId": "M:System.CodeDom.Compiler.CompilerErrorCollection.CopyTo(System.CodeDom.Compiler.CompilerError[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerErrorCollection.cs#L59C65-L59C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerErrorCollection.cs#L59C65-L59C90" }, { "DocsId": "M:System.CodeDom.Compiler.CompilerErrorCollection.IndexOf(System.CodeDom.Compiler.CompilerError)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerErrorCollection.cs#L97C52-L97C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerErrorCollection.cs#L97C52-L97C71" }, { "DocsId": "M:System.CodeDom.Compiler.CompilerErrorCollection.Insert(System.Int32,System.CodeDom.Compiler.CompilerError)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerErrorCollection.cs#L99C63-L99C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerErrorCollection.cs#L99C63-L99C88" }, { "DocsId": "M:System.CodeDom.Compiler.CompilerErrorCollection.Remove(System.CodeDom.Compiler.CompilerError)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerErrorCollection.cs#L101C52-L101C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerErrorCollection.cs#L101C52-L101C70" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerErrorCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerErrorCollection.cs#L24C20-L24C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerErrorCollection.cs#L24C20-L24C46" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerErrorCollection.HasErrors", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerErrorCollection.cs#L65C17-L76C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerErrorCollection.cs#L65C17-L76C14" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerErrorCollection.HasWarnings", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerErrorCollection.cs#L83C17-L94C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerErrorCollection.cs#L83C17-L94C14" } ], "DocsId": "T:System.CodeDom.Compiler.CompilerErrorCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerErrorCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerErrorCollection.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.Compiler.CompilerInfo.GetLanguages", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerInfo.cs#L21C43-L21C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerInfo.cs#L21C43-L21C79" }, { "DocsId": "M:System.CodeDom.Compiler.CompilerInfo.GetExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerInfo.cs#L23C44-L23C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerInfo.cs#L23C44-L23C81" }, { "DocsId": "M:System.CodeDom.Compiler.CompilerInfo.CreateProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerInfo.cs#L51C13-L60C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerInfo.cs#L51C13-L60C83" }, { "DocsId": "M:System.CodeDom.Compiler.CompilerInfo.CreateProvider(System.Collections.Generic.IDictionary{System.String,System.String})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerInfo.cs#L65C13-L77C123" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerInfo.cs#L65C13-L77C123" }, { "DocsId": "M:System.CodeDom.Compiler.CompilerInfo.CreateDefaultCompilerParameters", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerInfo.cs#L81C72-L81C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerInfo.cs#L81C72-L81C97" }, { "DocsId": "M:System.CodeDom.Compiler.CompilerInfo.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerInfo.cs#L89C46-L89C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerInfo.cs#L89C46-L89C84" }, { "DocsId": "M:System.CodeDom.Compiler.CompilerInfo.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerInfo.cs#L93C13-L98C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerInfo.cs#L93C13-L98C88" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerInfo.CodeDomProviderType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerInfo.cs#L29C17-L37C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerInfo.cs#L29C17-L37C30" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerInfo.IsCodeDomProviderTypeValid", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerInfo.cs#L41C51-L41C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerInfo.cs#L41C51-L41C97" } ], "DocsId": "T:System.CodeDom.Compiler.CompilerInfo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerInfo.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerInfo.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.Compiler.CompilerParameters.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L12C39-L14C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L12C39-L14C10" }, { "DocsId": "M:System.CodeDom.Compiler.CompilerParameters.#ctor(System.String[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L17C13-L19C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L17C13-L19C10" }, { "DocsId": "M:System.CodeDom.Compiler.CompilerParameters.#ctor(System.String[],System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L22C13-L24C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L22C13-L24C10" }, { "DocsId": "M:System.CodeDom.Compiler.CompilerParameters.#ctor(System.String[],System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L50C60-L34C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L50C60-L34C10" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerParameters.CoreAssemblyFileName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L50C46-L50C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L50C46-L50C50" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerParameters.GenerateExecutable", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L52C42-L52C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L52C42-L52C46" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerParameters.GenerateInMemory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L54C40-L54C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L54C40-L54C44" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerParameters.ReferencedAssemblies", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L56C56-L56C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L56C56-L56C60" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerParameters.MainClass", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L57C35-L57C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L57C35-L57C39" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerParameters.OutputAssembly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L59C40-L59C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L59C40-L59C44" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerParameters.TempFiles", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L63C20-L63C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L63C20-L63C59" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerParameters.IncludeDebugInformation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L67C47-L67C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L67C47-L67C51" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerParameters.TreatWarningsAsErrors", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L69C45-L69C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L69C45-L69C49" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerParameters.WarningLevel", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L71C35-L71C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L71C35-L71C39" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerParameters.CompilerOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L73C41-L73C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L73C41-L73C45" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerParameters.Win32Resource", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L75C39-L75C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L75C39-L75C43" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerParameters.EmbeddedResources", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L77C53-L77C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L77C53-L77C57" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerParameters.LinkedResources", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L79C51-L79C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L79C51-L79C55" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerParameters.UserToken", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L81C35-L81C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L81C35-L81C39" } ], "DocsId": "T:System.CodeDom.Compiler.CompilerParameters", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.Compiler.CompilerResults.#ctor(System.CodeDom.Compiler.TempFileCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerResults.cs#L32C58-L16C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerResults.cs#L32C58-L16C10" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerResults.TempFiles", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerResults.cs#L18C47-L18C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerResults.cs#L18C47-L18C51" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerResults.CompiledAssembly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerResults.cs#L24C17-L28C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerResults.cs#L24C17-L28C42" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerResults.Errors", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerResults.cs#L32C49-L32C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerResults.cs#L32C49-L32C53" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerResults.Output", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerResults.cs#L34C42-L34C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerResults.cs#L34C42-L34C46" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerResults.PathToAssembly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerResults.cs#L36C40-L36C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerResults.cs#L36C40-L36C44" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerResults.NativeCompilerReturnValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerResults.cs#L38C48-L38C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerResults.cs#L38C48-L38C52" } ], "DocsId": "T:System.CodeDom.Compiler.CompilerResults", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerResults.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerResults.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.Compiler.Executor.ExecWait(System.String,System.CodeDom.Compiler.TempFileCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/Executor.cs#L20C13-L22C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/Executor.cs#L20C13-L22C10" }, { "DocsId": "M:System.CodeDom.Compiler.Executor.ExecWaitWithCapture(System.IntPtr,System.String,System.CodeDom.Compiler.TempFileCollection,System.String@,System.String@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/Executor.cs#L25C13-L25C120" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/Executor.cs#L25C13-L25C120" }, { "DocsId": "M:System.CodeDom.Compiler.Executor.ExecWaitWithCapture(System.String,System.String,System.CodeDom.Compiler.TempFileCollection,System.String@,System.String@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/Executor.cs#L28C13-L28C104" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/Executor.cs#L28C13-L28C104" }, { "DocsId": "M:System.CodeDom.Compiler.Executor.ExecWaitWithCapture(System.String,System.CodeDom.Compiler.TempFileCollection,System.String@,System.String@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/Executor.cs#L31C13-L31C122" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/Executor.cs#L31C13-L31C122" }, { "DocsId": "M:System.CodeDom.Compiler.Executor.ExecWaitWithCapture(System.IntPtr,System.String,System.String,System.CodeDom.Compiler.TempFileCollection,System.String@,System.String@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/Executor.cs#L35C13-L98C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/Executor.cs#L35C13-L98C10" } ], "DocsId": "T:System.CodeDom.Compiler.Executor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/Executor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/Executor.cs" }, { "Members": [ { "DocsId": "F:System.CodeDom.Compiler.GeneratorSupport.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" }, { "DocsId": "F:System.CodeDom.Compiler.GeneratorSupport.ArraysOfArrays", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" }, { "DocsId": "F:System.CodeDom.Compiler.GeneratorSupport.EntryPointMethod", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" }, { "DocsId": "F:System.CodeDom.Compiler.GeneratorSupport.GotoStatements", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" }, { "DocsId": "F:System.CodeDom.Compiler.GeneratorSupport.MultidimensionalArrays", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" }, { "DocsId": "F:System.CodeDom.Compiler.GeneratorSupport.StaticConstructors", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" }, { "DocsId": "F:System.CodeDom.Compiler.GeneratorSupport.TryCatchStatements", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" }, { "DocsId": "F:System.CodeDom.Compiler.GeneratorSupport.ReturnTypeAttributes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" }, { "DocsId": "F:System.CodeDom.Compiler.GeneratorSupport.DeclareValueTypes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" }, { "DocsId": "F:System.CodeDom.Compiler.GeneratorSupport.DeclareEnums", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" }, { "DocsId": "F:System.CodeDom.Compiler.GeneratorSupport.DeclareDelegates", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" }, { "DocsId": "F:System.CodeDom.Compiler.GeneratorSupport.DeclareInterfaces", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" }, { "DocsId": "F:System.CodeDom.Compiler.GeneratorSupport.DeclareEvents", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" }, { "DocsId": "F:System.CodeDom.Compiler.GeneratorSupport.AssemblyAttributes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" }, { "DocsId": "F:System.CodeDom.Compiler.GeneratorSupport.ParameterAttributes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" }, { "DocsId": "F:System.CodeDom.Compiler.GeneratorSupport.ReferenceParameters", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" }, { "DocsId": "F:System.CodeDom.Compiler.GeneratorSupport.ChainedConstructorArguments", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" }, { "DocsId": "F:System.CodeDom.Compiler.GeneratorSupport.NestedTypes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" }, { "DocsId": "F:System.CodeDom.Compiler.GeneratorSupport.MultipleInterfaceMembers", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" }, { "DocsId": "F:System.CodeDom.Compiler.GeneratorSupport.PublicStaticMembers", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" }, { "DocsId": "F:System.CodeDom.Compiler.GeneratorSupport.ComplexExpressions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" }, { "DocsId": "F:System.CodeDom.Compiler.GeneratorSupport.Win32Resources", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" }, { "DocsId": "F:System.CodeDom.Compiler.GeneratorSupport.Resources", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" }, { "DocsId": "F:System.CodeDom.Compiler.GeneratorSupport.PartialTypes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" }, { "DocsId": "F:System.CodeDom.Compiler.GeneratorSupport.GenericTypeReference", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" }, { "DocsId": "F:System.CodeDom.Compiler.GeneratorSupport.GenericTypeDeclaration", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" }, { "DocsId": "F:System.CodeDom.Compiler.GeneratorSupport.DeclareIndexerProperties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" } ], "DocsId": "T:System.CodeDom.Compiler.GeneratorSupport", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.Compiler.ICodeCompiler.CompileAssemblyFromDom(System.CodeDom.Compiler.CompilerParameters,System.CodeDom.CodeCompileUnit)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeCompiler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeCompiler.cs" }, { "DocsId": "M:System.CodeDom.Compiler.ICodeCompiler.CompileAssemblyFromFile(System.CodeDom.Compiler.CompilerParameters,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeCompiler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeCompiler.cs" }, { "DocsId": "M:System.CodeDom.Compiler.ICodeCompiler.CompileAssemblyFromSource(System.CodeDom.Compiler.CompilerParameters,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeCompiler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeCompiler.cs" }, { "DocsId": "M:System.CodeDom.Compiler.ICodeCompiler.CompileAssemblyFromDomBatch(System.CodeDom.Compiler.CompilerParameters,System.CodeDom.CodeCompileUnit[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeCompiler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeCompiler.cs" }, { "DocsId": "M:System.CodeDom.Compiler.ICodeCompiler.CompileAssemblyFromFileBatch(System.CodeDom.Compiler.CompilerParameters,System.String[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeCompiler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeCompiler.cs" }, { "DocsId": "M:System.CodeDom.Compiler.ICodeCompiler.CompileAssemblyFromSourceBatch(System.CodeDom.Compiler.CompilerParameters,System.String[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeCompiler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeCompiler.cs" } ], "DocsId": "T:System.CodeDom.Compiler.ICodeCompiler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeCompiler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeCompiler.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.Compiler.ICodeGenerator.IsValidIdentifier(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.ICodeGenerator.ValidateIdentifier(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.ICodeGenerator.CreateEscapedIdentifier(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.ICodeGenerator.CreateValidIdentifier(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.ICodeGenerator.GetTypeOutput(System.CodeDom.CodeTypeReference)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.ICodeGenerator.Supports(System.CodeDom.Compiler.GeneratorSupport)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.ICodeGenerator.GenerateCodeFromExpression(System.CodeDom.CodeExpression,System.IO.TextWriter,System.CodeDom.Compiler.CodeGeneratorOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.ICodeGenerator.GenerateCodeFromStatement(System.CodeDom.CodeStatement,System.IO.TextWriter,System.CodeDom.Compiler.CodeGeneratorOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.ICodeGenerator.GenerateCodeFromNamespace(System.CodeDom.CodeNamespace,System.IO.TextWriter,System.CodeDom.Compiler.CodeGeneratorOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.ICodeGenerator.GenerateCodeFromCompileUnit(System.CodeDom.CodeCompileUnit,System.IO.TextWriter,System.CodeDom.Compiler.CodeGeneratorOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.ICodeGenerator.GenerateCodeFromType(System.CodeDom.CodeTypeDeclaration,System.IO.TextWriter,System.CodeDom.Compiler.CodeGeneratorOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeGenerator.cs" } ], "DocsId": "T:System.CodeDom.Compiler.ICodeGenerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeGenerator.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.Compiler.ICodeParser.Parse(System.IO.TextReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeParser.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeParser.cs" } ], "DocsId": "T:System.CodeDom.Compiler.ICodeParser", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeParser.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeParser.cs" }, { "Members": [ { "DocsId": "F:System.CodeDom.Compiler.LanguageOptions.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/LanguageOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/LanguageOptions.cs" }, { "DocsId": "F:System.CodeDom.Compiler.LanguageOptions.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/LanguageOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/LanguageOptions.cs" }, { "DocsId": "F:System.CodeDom.Compiler.LanguageOptions.CaseInsensitive", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/LanguageOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/LanguageOptions.cs" } ], "DocsId": "T:System.CodeDom.Compiler.LanguageOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/LanguageOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/LanguageOptions.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.Compiler.TempFileCollection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/IO/TempFileCollection.cs#L29C39-L31C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/IO/TempFileCollection.cs#L29C39-L31C10" }, { "DocsId": "M:System.CodeDom.Compiler.TempFileCollection.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/IO/TempFileCollection.cs#L33C53-L35C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/IO/TempFileCollection.cs#L33C53-L35C10" }, { "DocsId": "M:System.CodeDom.Compiler.TempFileCollection.#ctor(System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/IO/TempFileCollection.cs#L37C9-L42C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/IO/TempFileCollection.cs#L37C9-L42C10" }, { "DocsId": "M:System.CodeDom.Compiler.TempFileCollection.System#IDisposable#Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/IO/TempFileCollection.cs#L46C13-L48C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/IO/TempFileCollection.cs#L46C13-L48C10" }, { "DocsId": "M:System.CodeDom.Compiler.TempFileCollection.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/IO/TempFileCollection.cs#L58C13-L59C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/IO/TempFileCollection.cs#L58C13-L59C10" }, { "DocsId": "M:System.CodeDom.Compiler.TempFileCollection.Finalize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/IO/TempFileCollection.cs#L64C13-L65C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/IO/TempFileCollection.cs#L64C13-L65C10" }, { "DocsId": "M:System.CodeDom.Compiler.TempFileCollection.AddExtension(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/IO/TempFileCollection.cs#L67C61-L67C99" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/IO/TempFileCollection.cs#L67C61-L67C99" }, { "DocsId": "M:System.CodeDom.Compiler.TempFileCollection.AddExtension(System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/IO/TempFileCollection.cs#L71C13-L78C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/IO/TempFileCollection.cs#L71C13-L78C29" }, { "DocsId": "M:System.CodeDom.Compiler.TempFileCollection.AddFile(System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/IO/TempFileCollection.cs#L83C13-L94C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/IO/TempFileCollection.cs#L83C13-L94C10" }, { "DocsId": "M:System.CodeDom.Compiler.TempFileCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/IO/TempFileCollection.cs#L96C47-L96C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/IO/TempFileCollection.cs#L96C47-L96C74" }, { "DocsId": "M:System.CodeDom.Compiler.TempFileCollection.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/IO/TempFileCollection.cs#L98C52-L98C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/IO/TempFileCollection.cs#L98C52-L98C79" }, { "DocsId": "M:System.CodeDom.Compiler.TempFileCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/IO/TempFileCollection.cs#L100C60-L100C92" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/IO/TempFileCollection.cs#L100C60-L100C92" }, { "DocsId": "M:System.CodeDom.Compiler.TempFileCollection.CopyTo(System.String[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/IO/TempFileCollection.cs#L102C62-L102C98" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/IO/TempFileCollection.cs#L102C62-L102C98" }, { "DocsId": "M:System.CodeDom.Compiler.TempFileCollection.System#Collections#ICollection#get_Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/IO/TempFileCollection.cs#L106C34-L106C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/IO/TempFileCollection.cs#L106C34-L106C46" }, { "DocsId": "M:System.CodeDom.Compiler.TempFileCollection.System#Collections#ICollection#get_SyncRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/IO/TempFileCollection.cs#L108C40-L108C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/IO/TempFileCollection.cs#L108C40-L108C44" }, { "DocsId": "M:System.CodeDom.Compiler.TempFileCollection.System#Collections#ICollection#get_IsSynchronized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/IO/TempFileCollection.cs#L110C44-L110C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/IO/TempFileCollection.cs#L110C44-L110C49" }, { "DocsId": "M:System.CodeDom.Compiler.TempFileCollection.Delete", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/IO/TempFileCollection.cs#L179C13-L180C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/IO/TempFileCollection.cs#L179C13-L180C10" }, { "DocsId": "P:System.CodeDom.Compiler.TempFileCollection.Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/IO/TempFileCollection.cs#L104C29-L104C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/IO/TempFileCollection.cs#L104C29-L104C41" }, { "DocsId": "P:System.CodeDom.Compiler.TempFileCollection.System#Collections#ICollection#Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/IO/TempFileCollection.cs#L106C34-L106C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/IO/TempFileCollection.cs#L106C34-L106C46" }, { "DocsId": "P:System.CodeDom.Compiler.TempFileCollection.System#Collections#ICollection#SyncRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/IO/TempFileCollection.cs#L108C40-L108C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/IO/TempFileCollection.cs#L108C40-L108C44" }, { "DocsId": "P:System.CodeDom.Compiler.TempFileCollection.System#Collections#ICollection#IsSynchronized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/IO/TempFileCollection.cs#L110C44-L110C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/IO/TempFileCollection.cs#L110C44-L110C49" }, { "DocsId": "P:System.CodeDom.Compiler.TempFileCollection.TempDir", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/IO/TempFileCollection.cs#L112C34-L112C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/IO/TempFileCollection.cs#L112C34-L112C58" }, { "DocsId": "P:System.CodeDom.Compiler.TempFileCollection.BasePath", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/IO/TempFileCollection.cs#L118C17-L119C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/IO/TempFileCollection.cs#L118C17-L119C34" }, { "DocsId": "P:System.CodeDom.Compiler.TempFileCollection.KeepFiles", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/IO/TempFileCollection.cs#L169C33-L169C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/IO/TempFileCollection.cs#L169C33-L169C37" } ], "DocsId": "T:System.CodeDom.Compiler.TempFileCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/IO/TempFileCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/IO/TempFileCollection.cs" }, { "Members": [ { "DocsId": "M:Microsoft.VisualBasic.VBCodeProvider.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/Microsoft/VisualBasic/VBCodeProvider.cs#L18C9-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/Microsoft/VisualBasic/VBCodeProvider.cs#L18C9-L21C10" }, { "DocsId": "M:Microsoft.VisualBasic.VBCodeProvider.#ctor(System.Collections.Generic.IDictionary{System.String,System.String})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/Microsoft/VisualBasic/VBCodeProvider.cs#L23C9-L31C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/Microsoft/VisualBasic/VBCodeProvider.cs#L23C9-L31C10" }, { "DocsId": "M:Microsoft.VisualBasic.VBCodeProvider.CreateGenerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/Microsoft/VisualBasic/VBCodeProvider.cs#L38C61-L38C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/Microsoft/VisualBasic/VBCodeProvider.cs#L38C61-L38C71" }, { "DocsId": "M:Microsoft.VisualBasic.VBCodeProvider.CreateCompiler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/Microsoft/VisualBasic/VBCodeProvider.cs#L41C59-L41C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/Microsoft/VisualBasic/VBCodeProvider.cs#L41C59-L41C69" }, { "DocsId": "M:Microsoft.VisualBasic.VBCodeProvider.GetConverter(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/Microsoft/VisualBasic/VBCodeProvider.cs#L44C13-L46C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/Microsoft/VisualBasic/VBCodeProvider.cs#L44C13-L46C36" }, { "DocsId": "M:Microsoft.VisualBasic.VBCodeProvider.GenerateCodeFromMember(System.CodeDom.CodeTypeMember,System.IO.TextWriter,System.CodeDom.Compiler.CodeGeneratorOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/Microsoft/VisualBasic/VBCodeProvider.cs#L49C13-L49C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/Microsoft/VisualBasic/VBCodeProvider.cs#L49C13-L49C71" }, { "DocsId": "P:Microsoft.VisualBasic.VBCodeProvider.FileExtension", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/Microsoft/VisualBasic/VBCodeProvider.cs#L33C49-L33C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/Microsoft/VisualBasic/VBCodeProvider.cs#L33C49-L33C53" }, { "DocsId": "P:Microsoft.VisualBasic.VBCodeProvider.LanguageOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/Microsoft/VisualBasic/VBCodeProvider.cs#L35C60-L35C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/Microsoft/VisualBasic/VBCodeProvider.cs#L35C60-L35C91" } ], "DocsId": "T:Microsoft.VisualBasic.VBCodeProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/Microsoft/VisualBasic/VBCodeProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/Microsoft/VisualBasic/VBCodeProvider.cs" }, { "Members": [ { "DocsId": "M:Microsoft.CSharp.CSharpCodeProvider.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/Microsoft/CSharp/CSharpCodeProvider.cs#L18C9-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/Microsoft/CSharp/CSharpCodeProvider.cs#L18C9-L21C10" }, { "DocsId": "M:Microsoft.CSharp.CSharpCodeProvider.#ctor(System.Collections.Generic.IDictionary{System.String,System.String})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/Microsoft/CSharp/CSharpCodeProvider.cs#L23C9-L31C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/Microsoft/CSharp/CSharpCodeProvider.cs#L23C9-L31C10" }, { "DocsId": "M:Microsoft.CSharp.CSharpCodeProvider.CreateGenerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/Microsoft/CSharp/CSharpCodeProvider.cs#L36C61-L36C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/Microsoft/CSharp/CSharpCodeProvider.cs#L36C61-L36C71" }, { "DocsId": "M:Microsoft.CSharp.CSharpCodeProvider.CreateCompiler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/Microsoft/CSharp/CSharpCodeProvider.cs#L39C59-L39C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/Microsoft/CSharp/CSharpCodeProvider.cs#L39C59-L39C69" }, { "DocsId": "M:Microsoft.CSharp.CSharpCodeProvider.GetConverter(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/Microsoft/CSharp/CSharpCodeProvider.cs#L42C13-L44C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/Microsoft/CSharp/CSharpCodeProvider.cs#L42C13-L44C36" }, { "DocsId": "M:Microsoft.CSharp.CSharpCodeProvider.GenerateCodeFromMember(System.CodeDom.CodeTypeMember,System.IO.TextWriter,System.CodeDom.Compiler.CodeGeneratorOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/Microsoft/CSharp/CSharpCodeProvider.cs#L47C13-L47C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/Microsoft/CSharp/CSharpCodeProvider.cs#L47C13-L47C71" }, { "DocsId": "P:Microsoft.CSharp.CSharpCodeProvider.FileExtension", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/Microsoft/CSharp/CSharpCodeProvider.cs#L33C49-L33C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/Microsoft/CSharp/CSharpCodeProvider.cs#L33C49-L33C53" } ], "DocsId": "T:Microsoft.CSharp.CSharpCodeProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/Microsoft/CSharp/CSharpCodeProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/Microsoft/CSharp/CSharpCodeProvider.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/System.ComponentModel.Composition.Registration.json b/xml/SourceLinkInformation/net-8.0/System.ComponentModel.Composition.Registration.json index 081e6944da7..17045dd7af4 100644 --- a/xml/SourceLinkInformation/net-8.0/System.ComponentModel.Composition.Registration.json +++ b/xml/SourceLinkInformation/net-8.0/System.ComponentModel.Composition.Registration.json @@ -1,271 +1,270 @@ { "Assembly": "System.ComponentModel.Composition.Registration", - "GUID": "D167C408229D4831A2D0E9F0026C70E7FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "E3E0BDB90F4E422B88AD2F39778D731FFFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.Registration.ExportBuilder.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/ExportBuilder.cs#L16C9-L16C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/ExportBuilder.cs#L16C9-L16C35" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.ExportBuilder.AsContractType``1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/ExportBuilder.cs#L20C13-L20C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/ExportBuilder.cs#L20C13-L20C46" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.ExportBuilder.AsContractType(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/ExportBuilder.cs#L25C13-L26C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/ExportBuilder.cs#L25C13-L26C25" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.ExportBuilder.AsContractName(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/ExportBuilder.cs#L31C13-L32C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/ExportBuilder.cs#L31C13-L32C25" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.ExportBuilder.Inherited", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/ExportBuilder.cs#L37C13-L38C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/ExportBuilder.cs#L37C13-L38C25" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.ExportBuilder.AddMetadata(System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/ExportBuilder.cs#L43C13-L46C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/ExportBuilder.cs#L43C13-L46C25" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.ExportBuilder.AddMetadata(System.String,System.Func{System.Type,System.Object})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/ExportBuilder.cs#L51C13-L54C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/ExportBuilder.cs#L51C13-L54C25" } ], "DocsId": "T:System.ComponentModel.Composition.Registration.ExportBuilder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/ExportBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/ExportBuilder.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.Registration.ImportBuilder.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/ImportBuilder.cs#L21C9-L21C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/ImportBuilder.cs#L21C9-L21C35" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.ImportBuilder.AsContractType``1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/ImportBuilder.cs#L25C13-L25C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/ImportBuilder.cs#L25C13-L25C46" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.ImportBuilder.AsContractType(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/ImportBuilder.cs#L30C13-L31C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/ImportBuilder.cs#L30C13-L31C25" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.ImportBuilder.AsContractName(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/ImportBuilder.cs#L36C13-L37C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/ImportBuilder.cs#L36C13-L37C25" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.ImportBuilder.AsMany(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/ImportBuilder.cs#L42C13-L44C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/ImportBuilder.cs#L42C13-L44C25" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.ImportBuilder.AllowDefault", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/ImportBuilder.cs#L49C13-L50C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/ImportBuilder.cs#L49C13-L50C25" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.ImportBuilder.AllowRecomposition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/ImportBuilder.cs#L55C13-L56C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/ImportBuilder.cs#L55C13-L56C25" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.ImportBuilder.RequiredCreationPolicy(System.ComponentModel.Composition.CreationPolicy)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/ImportBuilder.cs#L61C13-L62C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/ImportBuilder.cs#L61C13-L62C25" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.ImportBuilder.Source(System.ComponentModel.Composition.ImportSource)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/ImportBuilder.cs#L67C13-L68C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/ImportBuilder.cs#L67C13-L68C25" } ], "DocsId": "T:System.ComponentModel.Composition.Registration.ImportBuilder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/ImportBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/ImportBuilder.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.Registration.ParameterImportBuilder.Import``1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/ParameterImportBuilder.cs#L11C13-L11C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/ParameterImportBuilder.cs#L11C13-L11C28" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.ParameterImportBuilder.Import``1(System.Action{System.ComponentModel.Composition.Registration.ImportBuilder})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/ParameterImportBuilder.cs#L16C13-L16C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/ParameterImportBuilder.cs#L16C13-L16C28" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.ParameterImportBuilder.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/ParameterImportBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/ParameterImportBuilder.cs" } ], "DocsId": "T:System.ComponentModel.Composition.Registration.ParameterImportBuilder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/ParameterImportBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/ParameterImportBuilder.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.Registration.PartBuilder.Export", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilder.cs#L47C13-L47C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilder.cs#L47C13-L47C33" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.PartBuilder.Export(System.Action{System.ComponentModel.Composition.Registration.ExportBuilder})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilder.cs#L52C13-L56C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilder.cs#L52C13-L56C25" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.PartBuilder.Export``1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilder.cs#L61C13-L61C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilder.cs#L61C13-L61C36" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.PartBuilder.Export``1(System.Action{System.ComponentModel.Composition.Registration.ExportBuilder})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilder.cs#L66C13-L70C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilder.cs#L66C13-L70C25" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.PartBuilder.SelectConstructor(System.Func{System.Reflection.ConstructorInfo[],System.Reflection.ConstructorInfo})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilder.cs#L76C13-L76C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilder.cs#L76C13-L76C63" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.PartBuilder.SelectConstructor(System.Func{System.Reflection.ConstructorInfo[],System.Reflection.ConstructorInfo},System.Action{System.Reflection.ParameterInfo,System.ComponentModel.Composition.Registration.ImportBuilder})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilder.cs#L82C13-L85C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilder.cs#L82C13-L85C25" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.PartBuilder.ExportInterfaces(System.Predicate{System.Type})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilder.cs#L91C13-L91C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilder.cs#L91C13-L91C60" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.PartBuilder.ExportInterfaces", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilder.cs#L96C13-L96C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilder.cs#L96C13-L96C54" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.PartBuilder.ExportInterfaces(System.Predicate{System.Type},System.Action{System.Type,System.ComponentModel.Composition.Registration.ExportBuilder})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilder.cs#L102C13-L109C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilder.cs#L102C13-L109C25" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.PartBuilder.ExportProperties(System.Predicate{System.Reflection.PropertyInfo})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilder.cs#L115C13-L120C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilder.cs#L115C13-L120C59" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.PartBuilder.ExportProperties(System.Predicate{System.Reflection.PropertyInfo},System.Action{System.Reflection.PropertyInfo,System.ComponentModel.Composition.Registration.ExportBuilder})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilder.cs#L126C13-L133C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilder.cs#L126C13-L133C25" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.PartBuilder.ExportProperties``1(System.Predicate{System.Reflection.PropertyInfo})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilder.cs#L139C13-L144C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilder.cs#L139C13-L144C62" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.PartBuilder.ExportProperties``1(System.Predicate{System.Reflection.PropertyInfo},System.Action{System.Reflection.PropertyInfo,System.ComponentModel.Composition.Registration.ExportBuilder})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilder.cs#L150C13-L157C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilder.cs#L150C13-L157C25" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.PartBuilder.ImportProperties(System.Predicate{System.Reflection.PropertyInfo})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilder.cs#L163C13-L168C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilder.cs#L163C13-L168C59" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.PartBuilder.ImportProperties(System.Predicate{System.Reflection.PropertyInfo},System.Action{System.Reflection.PropertyInfo,System.ComponentModel.Composition.Registration.ImportBuilder})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilder.cs#L174C13-L180C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilder.cs#L174C13-L180C25" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.PartBuilder.ImportProperties``1(System.Predicate{System.Reflection.PropertyInfo})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilder.cs#L186C13-L191C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilder.cs#L186C13-L191C62" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.PartBuilder.ImportProperties``1(System.Predicate{System.Reflection.PropertyInfo},System.Action{System.Reflection.PropertyInfo,System.ComponentModel.Composition.Registration.ImportBuilder})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilder.cs#L197C13-L203C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilder.cs#L197C13-L203C25" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.PartBuilder.SetCreationPolicy(System.ComponentModel.Composition.CreationPolicy)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilder.cs#L208C13-L210C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilder.cs#L208C13-L210C25" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.PartBuilder.AddMetadata(System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilder.cs#L215C13-L218C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilder.cs#L215C13-L218C25" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.PartBuilder.AddMetadata(System.String,System.Func{System.Type,System.Object})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilder.cs#L223C13-L226C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilder.cs#L223C13-L226C25" } ], "DocsId": "T:System.ComponentModel.Composition.Registration.PartBuilder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilder.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.Registration.PartBuilder`1.SelectConstructor(System.Linq.Expressions.Expression{System.Func{System.ComponentModel.Composition.Registration.ParameterImportBuilder,`0}})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilderOfT.cs#L156C13-L164C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilderOfT.cs#L156C13-L164C25" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.PartBuilder`1.ExportProperty(System.Linq.Expressions.Expression{System.Func{`0,System.Object}})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilderOfT.cs#L170C13-L170C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilderOfT.cs#L170C13-L170C57" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.PartBuilder`1.ExportProperty(System.Linq.Expressions.Expression{System.Func{`0,System.Object}},System.Action{System.ComponentModel.Composition.Registration.ExportBuilder})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilderOfT.cs#L177C13-L185C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilderOfT.cs#L177C13-L185C25" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.PartBuilder`1.ExportProperty``1(System.Linq.Expressions.Expression{System.Func{`0,System.Object}})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilderOfT.cs#L190C13-L190C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilderOfT.cs#L190C13-L190C68" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.PartBuilder`1.ExportProperty``1(System.Linq.Expressions.Expression{System.Func{`0,System.Object}},System.Action{System.ComponentModel.Composition.Registration.ExportBuilder})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilderOfT.cs#L196C13-L204C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilderOfT.cs#L196C13-L204C25" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.PartBuilder`1.ImportProperty(System.Linq.Expressions.Expression{System.Func{`0,System.Object}})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilderOfT.cs#L209C13-L209C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilderOfT.cs#L209C13-L209C57" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.PartBuilder`1.ImportProperty(System.Linq.Expressions.Expression{System.Func{`0,System.Object}},System.Action{System.ComponentModel.Composition.Registration.ImportBuilder})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilderOfT.cs#L215C13-L223C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilderOfT.cs#L215C13-L223C25" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.PartBuilder`1.ImportProperty``1(System.Linq.Expressions.Expression{System.Func{`0,System.Object}})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilderOfT.cs#L228C13-L228C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilderOfT.cs#L228C13-L228C68" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.PartBuilder`1.ImportProperty``1(System.Linq.Expressions.Expression{System.Func{`0,System.Object}},System.Action{System.ComponentModel.Composition.Registration.ImportBuilder})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilderOfT.cs#L234C13-L242C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilderOfT.cs#L234C13-L242C25" } ], "DocsId": "T:System.ComponentModel.Composition.Registration.PartBuilder`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilderOfT.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilderOfT.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.Registration.RegistrationBuilder.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/RegistrationBuilder.cs#L23C9-L31C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/RegistrationBuilder.cs#L23C9-L31C10" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.RegistrationBuilder.ForTypesDerivedFrom``1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/RegistrationBuilder.cs#L35C13-L38C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/RegistrationBuilder.cs#L35C13-L38C32" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.RegistrationBuilder.ForTypesDerivedFrom(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/RegistrationBuilder.cs#L43C13-L51C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/RegistrationBuilder.cs#L16707566C0-L51C32" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.RegistrationBuilder.ForType``1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/RegistrationBuilder.cs#L56C13-L59C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/RegistrationBuilder.cs#L56C13-L59C32" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.RegistrationBuilder.ForType(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/RegistrationBuilder.cs#L64C13-L72C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/RegistrationBuilder.cs#L16707566C0-L72C32" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.RegistrationBuilder.ForTypesMatching``1(System.Predicate{System.Type})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/RegistrationBuilder.cs#L77C13-L85C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/RegistrationBuilder.cs#L77C13-L85C32" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.RegistrationBuilder.ForTypesMatching(System.Predicate{System.Type})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/RegistrationBuilder.cs#L90C13-L98C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/RegistrationBuilder.cs#L90C13-L98C32" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.RegistrationBuilder.GetCustomAttributes(System.Reflection.MemberInfo,System.Collections.Generic.IEnumerable{System.Object})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/RegistrationBuilder.cs#L132C13-L217C96" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/RegistrationBuilder.cs#L132C13-L217C96" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.RegistrationBuilder.GetCustomAttributes(System.Reflection.ParameterInfo,System.Collections.Generic.IEnumerable{System.Object})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/RegistrationBuilder.cs#L223C13-L226C96" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/RegistrationBuilder.cs#L223C13-L226C96" } ], "DocsId": "T:System.ComponentModel.Composition.Registration.RegistrationBuilder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/RegistrationBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/RegistrationBuilder.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/System.ComponentModel.Composition.json b/xml/SourceLinkInformation/net-8.0/System.ComponentModel.Composition.json index 6f16203b636..0f8f4a2e8e5 100644 --- a/xml/SourceLinkInformation/net-8.0/System.ComponentModel.Composition.json +++ b/xml/SourceLinkInformation/net-8.0/System.ComponentModel.Composition.json @@ -1,2131 +1,2130 @@ { "Assembly": "System.ComponentModel.Composition", - "GUID": "CC9729A239E5452CBF73A7A41A6E6B06FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "17EC7EB5F207494680017107D3216B68FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.AttributedModelServices.GetMetadataView``1(System.Collections.Generic.IDictionary{System.String,System.Object})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs#L21C13-L23C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs#L21C13-L23C82" }, { "DocsId": "M:System.ComponentModel.Composition.AttributedModelServices.CreatePart(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs#L28C13-L30C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs#L28C13-L30C72" }, { "DocsId": "M:System.ComponentModel.Composition.AttributedModelServices.CreatePart(System.Object,System.Reflection.ReflectionContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs#L35C13-L38C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs#L35C13-L38C91" }, { "DocsId": "M:System.ComponentModel.Composition.AttributedModelServices.CreatePart(System.ComponentModel.Composition.Primitives.ComposablePartDefinition,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs#L43C13-L52C108" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs#L43C13-L52C108" }, { "DocsId": "M:System.ComponentModel.Composition.AttributedModelServices.CreatePartDefinition(System.Type,System.ComponentModel.Composition.Primitives.ICompositionElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs#L57C13-L59C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs#L57C13-L59C86" }, { "DocsId": "M:System.ComponentModel.Composition.AttributedModelServices.CreatePartDefinition(System.Type,System.ComponentModel.Composition.Primitives.ICompositionElement,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs#L64C13-L71C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs#L64C13-L71C97" }, { "DocsId": "M:System.ComponentModel.Composition.AttributedModelServices.GetTypeIdentity(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs#L77C13-L79C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs#L77C13-L79C63" }, { "DocsId": "M:System.ComponentModel.Composition.AttributedModelServices.GetTypeIdentity(System.Reflection.MethodInfo)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs#L84C13-L86C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs#L84C13-L86C75" }, { "DocsId": "M:System.ComponentModel.Composition.AttributedModelServices.GetContractName(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs#L91C13-L93C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs#L91C13-L93C66" }, { "DocsId": "M:System.ComponentModel.Composition.AttributedModelServices.AddExportedValue``1(System.ComponentModel.Composition.Hosting.CompositionBatch,``0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs#L98C13-L102C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs#L98C13-L102C75" }, { "DocsId": "M:System.ComponentModel.Composition.AttributedModelServices.ComposeExportedValue``1(System.ComponentModel.Composition.Hosting.CompositionContainer,``0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs#L107C13-L112C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs#L107C13-L112C10" }, { "DocsId": "M:System.ComponentModel.Composition.AttributedModelServices.AddExportedValue``1(System.ComponentModel.Composition.Hosting.CompositionBatch,System.String,``0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs#L116C13-L123C93" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs#L16707566C0-L123C93" }, { "DocsId": "M:System.ComponentModel.Composition.AttributedModelServices.ComposeExportedValue``1(System.ComponentModel.Composition.Hosting.CompositionContainer,System.String,``0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs#L128C13-L133C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs#L128C13-L133C10" }, { "DocsId": "M:System.ComponentModel.Composition.AttributedModelServices.AddPart(System.ComponentModel.Composition.Hosting.CompositionBatch,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs#L137C13-L145C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs#L137C13-L145C25" }, { "DocsId": "M:System.ComponentModel.Composition.AttributedModelServices.ComposeParts(System.ComponentModel.Composition.Hosting.CompositionContainer,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs#L150C13-L158C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs#L150C13-L158C10" }, { "DocsId": "M:System.ComponentModel.Composition.AttributedModelServices.SatisfyImportsOnce(System.ComponentModel.Composition.ICompositionService,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs#L180C13-L187C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs#L180C13-L187C25" }, { "DocsId": "M:System.ComponentModel.Composition.AttributedModelServices.SatisfyImportsOnce(System.ComponentModel.Composition.ICompositionService,System.Object,System.Reflection.ReflectionContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs#L211C13-L219C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs#L211C13-L219C25" }, { "DocsId": "M:System.ComponentModel.Composition.AttributedModelServices.Exports(System.ComponentModel.Composition.Primitives.ComposablePartDefinition,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs#L232C13-L235C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs#L232C13-L235C88" }, { "DocsId": "M:System.ComponentModel.Composition.AttributedModelServices.Exports``1(System.ComponentModel.Composition.Primitives.ComposablePartDefinition)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs#L248C13-L250C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs#L248C13-L250C44" }, { "DocsId": "M:System.ComponentModel.Composition.AttributedModelServices.Imports(System.ComponentModel.Composition.Primitives.ComposablePartDefinition,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs#L263C13-L266C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs#L263C13-L266C88" }, { "DocsId": "M:System.ComponentModel.Composition.AttributedModelServices.Imports``1(System.ComponentModel.Composition.Primitives.ComposablePartDefinition)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs#L279C13-L281C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs#L279C13-L281C44" }, { "DocsId": "M:System.ComponentModel.Composition.AttributedModelServices.Imports(System.ComponentModel.Composition.Primitives.ComposablePartDefinition,System.Type,System.ComponentModel.Composition.Primitives.ImportCardinality)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs#L295C13-L298C107" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs#L295C13-L298C107" }, { "DocsId": "M:System.ComponentModel.Composition.AttributedModelServices.Imports``1(System.ComponentModel.Composition.Primitives.ComposablePartDefinition,System.ComponentModel.Composition.Primitives.ImportCardinality)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs#L312C13-L314C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs#L312C13-L314C63" } ], "DocsId": "T:System.ComponentModel.Composition.AttributedModelServices", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.CatalogReflectionContextAttribute.#ctor(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CatalogReflectionContextAttribute.cs#L18C9-L23C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CatalogReflectionContextAttribute.cs#L18C9-L23C10" }, { "DocsId": "M:System.ComponentModel.Composition.CatalogReflectionContextAttribute.CreateReflectionContext", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CatalogReflectionContextAttribute.cs#L27C13-L46C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CatalogReflectionContextAttribute.cs#L27C13-L46C38" } ], "DocsId": "T:System.ComponentModel.Composition.CatalogReflectionContextAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CatalogReflectionContextAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CatalogReflectionContextAttribute.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.ChangeRejectedException.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ChangeRejectedException.cs#L19C15-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ChangeRejectedException.cs#L19C15-L21C10" }, { "DocsId": "M:System.ComponentModel.Composition.ChangeRejectedException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ChangeRejectedException.cs#L27C15-L29C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ChangeRejectedException.cs#L27C15-L29C10" }, { "DocsId": "M:System.ComponentModel.Composition.ChangeRejectedException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ChangeRejectedException.cs#L35C15-L37C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ChangeRejectedException.cs#L35C15-L37C10" }, { "DocsId": "M:System.ComponentModel.Composition.ChangeRejectedException.#ctor(System.Collections.Generic.IEnumerable{System.ComponentModel.Composition.CompositionError})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ChangeRejectedException.cs#L44C15-L46C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ChangeRejectedException.cs#L44C15-L46C10" }, { "DocsId": "P:System.ComponentModel.Composition.ChangeRejectedException.Message", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ChangeRejectedException.cs#L59C17-L61C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ChangeRejectedException.cs#L59C17-L61C35" } ], "DocsId": "T:System.ComponentModel.Composition.ChangeRejectedException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ChangeRejectedException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ChangeRejectedException.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.CompositionContractMismatchException.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CompositionContractMismatchException.cs#L21C15-L23C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CompositionContractMismatchException.cs#L21C15-L23C10" }, { "DocsId": "M:System.ComponentModel.Composition.CompositionContractMismatchException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CompositionContractMismatchException.cs#L35C15-L37C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CompositionContractMismatchException.cs#L35C15-L37C10" }, { "DocsId": "M:System.ComponentModel.Composition.CompositionContractMismatchException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CompositionContractMismatchException.cs#L55C15-L57C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CompositionContractMismatchException.cs#L55C15-L57C10" }, { "DocsId": "M:System.ComponentModel.Composition.CompositionContractMismatchException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CompositionContractMismatchException.cs#L85C15-L87C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CompositionContractMismatchException.cs#L85C15-L87C10" } ], "DocsId": "T:System.ComponentModel.Composition.CompositionContractMismatchException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CompositionContractMismatchException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CompositionContractMismatchException.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.CompositionError.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CompositionError.cs#L32C15-L34C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CompositionError.cs#L32C15-L34C10" }, { "DocsId": "M:System.ComponentModel.Composition.CompositionError.#ctor(System.String,System.ComponentModel.Composition.Primitives.ICompositionElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CompositionError.cs#L53C15-L55C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CompositionError.cs#L53C15-L55C10" }, { "DocsId": "M:System.ComponentModel.Composition.CompositionError.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CompositionError.cs#L73C15-L75C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CompositionError.cs#L73C15-L75C10" }, { "DocsId": "M:System.ComponentModel.Composition.CompositionError.#ctor(System.String,System.ComponentModel.Composition.Primitives.ICompositionElement,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CompositionError.cs#L99C15-L101C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CompositionError.cs#L99C15-L101C10" }, { "DocsId": "M:System.ComponentModel.Composition.CompositionError.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CompositionError.cs#L165C13-L165C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CompositionError.cs#L165C13-L165C32" }, { "DocsId": "P:System.ComponentModel.Composition.CompositionError.Element", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CompositionError.cs#L120C19-L120C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CompositionError.cs#L120C19-L120C35" }, { "DocsId": "P:System.ComponentModel.Composition.CompositionError.Description", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CompositionError.cs#L132C19-L132C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CompositionError.cs#L132C19-L132C39" }, { "DocsId": "P:System.ComponentModel.Composition.CompositionError.Exception", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CompositionError.cs#L144C19-L144C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CompositionError.cs#L144C19-L144C37" } ], "DocsId": "T:System.ComponentModel.Composition.CompositionError", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CompositionError.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CompositionError.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.CompositionException.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CompositionException.cs#L30C19-L32C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CompositionException.cs#L30C19-L32C10" }, { "DocsId": "M:System.ComponentModel.Composition.CompositionException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CompositionException.cs#L44C15-L46C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CompositionException.cs#L44C15-L46C10" }, { "DocsId": "M:System.ComponentModel.Composition.CompositionException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CompositionException.cs#L64C15-L66C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CompositionException.cs#L64C15-L66C10" }, { "DocsId": "M:System.ComponentModel.Composition.CompositionException.#ctor(System.Collections.Generic.IEnumerable{System.ComponentModel.Composition.CompositionError})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CompositionException.cs#L87C15-L89C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CompositionException.cs#L87C15-L89C10" }, { "DocsId": "P:System.ComponentModel.Composition.CompositionException.Errors", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CompositionException.cs#L108C19-L108C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CompositionException.cs#L108C19-L108C34" }, { "DocsId": "P:System.ComponentModel.Composition.CompositionException.Message", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CompositionException.cs#L122C17-L130C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CompositionException.cs#L122C17-L130C46" }, { "DocsId": "P:System.ComponentModel.Composition.CompositionException.RootCauses", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CompositionException.cs#L138C17-L156C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CompositionException.cs#L138C17-L156C65" } ], "DocsId": "T:System.ComponentModel.Composition.CompositionException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CompositionException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CompositionException.cs" }, { "Members": [ { "DocsId": "F:System.ComponentModel.Composition.CreationPolicy.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CreationPolicy.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CreationPolicy.cs" }, { "DocsId": "F:System.ComponentModel.Composition.CreationPolicy.Any", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CreationPolicy.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CreationPolicy.cs" }, { "DocsId": "F:System.ComponentModel.Composition.CreationPolicy.Shared", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CreationPolicy.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CreationPolicy.cs" }, { "DocsId": "F:System.ComponentModel.Composition.CreationPolicy.NonShared", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CreationPolicy.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CreationPolicy.cs" } ], "DocsId": "T:System.ComponentModel.Composition.CreationPolicy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CreationPolicy.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CreationPolicy.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.ExportAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ExportAttribute.cs#L31C15-L33C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ExportAttribute.cs#L31C15-L33C10" }, { "DocsId": "M:System.ComponentModel.Composition.ExportAttribute.#ctor(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ExportAttribute.cs#L62C15-L64C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ExportAttribute.cs#L62C15-L64C10" }, { "DocsId": "M:System.ComponentModel.Composition.ExportAttribute.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ExportAttribute.cs#L87C15-L89C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ExportAttribute.cs#L87C15-L89C10" }, { "DocsId": "M:System.ComponentModel.Composition.ExportAttribute.#ctor(System.String,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ExportAttribute.cs#L116C9-L120C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ExportAttribute.cs#L116C9-L120C10" }, { "DocsId": "P:System.ComponentModel.Composition.ExportAttribute.ContractName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ExportAttribute.cs#L129C39-L129C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ExportAttribute.cs#L129C39-L129C43" }, { "DocsId": "P:System.ComponentModel.Composition.ExportAttribute.ContractType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ExportAttribute.cs#L139C37-L139C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ExportAttribute.cs#L139C37-L139C41" } ], "DocsId": "T:System.ComponentModel.Composition.ExportAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ExportAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ExportAttribute.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.ExportFactory`1.#ctor(System.Func{System.Tuple{`0,System.Action}})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ExportFactoryOfT.cs#L10C9-L15C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ExportFactoryOfT.cs#L10C9-L15C10" }, { "DocsId": "M:System.ComponentModel.Composition.ExportFactory`1.CreateExport", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ExportFactoryOfT.cs#L19C13-L20C109" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ExportFactoryOfT.cs#L19C13-L20C109" } ], "DocsId": "T:System.ComponentModel.Composition.ExportFactory`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ExportFactoryOfT.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ExportFactoryOfT.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.ExportFactory`2.#ctor(System.Func{System.Tuple{`0,System.Action}},`1)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ExportFactoryOfTTMetadata.cs#L11C15-L14C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ExportFactoryOfTTMetadata.cs#L11C15-L14C10" }, { "DocsId": "P:System.ComponentModel.Composition.ExportFactory`2.Metadata", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ExportFactoryOfTTMetadata.cs#L18C19-L18C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ExportFactoryOfTTMetadata.cs#L18C19-L18C36" } ], "DocsId": "T:System.ComponentModel.Composition.ExportFactory`2", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ExportFactoryOfTTMetadata.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ExportFactoryOfTTMetadata.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.ExportLifetimeContext`1.#ctor(`0,System.Action)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ExportLifetimeContextOfT.cs#L11C9-L15C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ExportLifetimeContextOfT.cs#L11C9-L15C10" }, { "DocsId": "M:System.ComponentModel.Composition.ExportLifetimeContext`1.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ExportLifetimeContextOfT.cs#L27C13-L28C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ExportLifetimeContextOfT.cs#L27C13-L28C10" }, { "DocsId": "P:System.ComponentModel.Composition.ExportLifetimeContext`1.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ExportLifetimeContextOfT.cs#L21C17-L21C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ExportLifetimeContextOfT.cs#L21C17-L21C31" } ], "DocsId": "T:System.ComponentModel.Composition.ExportLifetimeContext`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ExportLifetimeContextOfT.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ExportLifetimeContextOfT.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.ExportMetadataAttribute.#ctor(System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ExportMetadataAttribute.cs#L27C9-L31C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ExportMetadataAttribute.cs#L27C9-L31C10" }, { "DocsId": "P:System.ComponentModel.Composition.ExportMetadataAttribute.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ExportMetadataAttribute.cs#L41C13-L41C17" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ExportMetadataAttribute.cs#L41C13-L41C17" }, { "DocsId": "P:System.ComponentModel.Composition.ExportMetadataAttribute.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ExportMetadataAttribute.cs#L53C13-L53C17" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ExportMetadataAttribute.cs#L53C13-L53C17" }, { "DocsId": "P:System.ComponentModel.Composition.ExportMetadataAttribute.IsMultiple", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ExportMetadataAttribute.cs#L59C13-L59C17" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ExportMetadataAttribute.cs#L59C13-L59C17" } ], "DocsId": "T:System.ComponentModel.Composition.ExportMetadataAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ExportMetadataAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ExportMetadataAttribute.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.ICompositionService.SatisfyImportsOnce(System.ComponentModel.Composition.Primitives.ComposablePart)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ICompositionService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ICompositionService.cs" } ], "DocsId": "T:System.ComponentModel.Composition.ICompositionService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ICompositionService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ICompositionService.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.ImportAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportAttribute.cs#L32C15-L34C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportAttribute.cs#L32C15-L34C10" }, { "DocsId": "M:System.ComponentModel.Composition.ImportAttribute.#ctor(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportAttribute.cs#L61C15-L63C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportAttribute.cs#L61C15-L63C10" }, { "DocsId": "M:System.ComponentModel.Composition.ImportAttribute.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportAttribute.cs#L85C15-L87C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportAttribute.cs#L85C15-L87C10" }, { "DocsId": "M:System.ComponentModel.Composition.ImportAttribute.#ctor(System.String,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportAttribute.cs#L89C9-L93C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportAttribute.cs#L89C9-L93C10" }, { "DocsId": "M:System.ComponentModel.Composition.ImportAttribute.System#ComponentModel#Composition#IAttributedImport#get_Cardinality", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportAttribute.cs#L186C17-L190C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportAttribute.cs#L186C17-L190C53" }, { "DocsId": "P:System.ComponentModel.Composition.ImportAttribute.ContractName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportAttribute.cs#L102C39-L102C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportAttribute.cs#L102C39-L102C43" }, { "DocsId": "P:System.ComponentModel.Composition.ImportAttribute.ContractType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportAttribute.cs#L113C37-L113C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportAttribute.cs#L113C37-L113C41" }, { "DocsId": "P:System.ComponentModel.Composition.ImportAttribute.AllowDefault", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportAttribute.cs#L135C36-L135C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportAttribute.cs#L135C36-L135C40" }, { "DocsId": "P:System.ComponentModel.Composition.ImportAttribute.AllowRecomposition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportAttribute.cs#L148C42-L148C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportAttribute.cs#L148C42-L148C46" }, { "DocsId": "P:System.ComponentModel.Composition.ImportAttribute.RequiredCreationPolicy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportAttribute.cs#L164C56-L164C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportAttribute.cs#L164C56-L164C60" }, { "DocsId": "P:System.ComponentModel.Composition.ImportAttribute.Source", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportAttribute.cs#L180C38-L180C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportAttribute.cs#L180C38-L180C42" }, { "DocsId": "P:System.ComponentModel.Composition.ImportAttribute.System#ComponentModel#Composition#IAttributedImport#Cardinality", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportAttribute.cs#L186C17-L190C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportAttribute.cs#L186C17-L190C53" } ], "DocsId": "T:System.ComponentModel.Composition.ImportAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportAttribute.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.ImportCardinalityMismatchException.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportCardinalityMismatchException.cs#L24C15-L26C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportCardinalityMismatchException.cs#L24C15-L26C10" }, { "DocsId": "M:System.ComponentModel.Composition.ImportCardinalityMismatchException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportCardinalityMismatchException.cs#L38C15-L40C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportCardinalityMismatchException.cs#L38C15-L40C10" }, { "DocsId": "M:System.ComponentModel.Composition.ImportCardinalityMismatchException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportCardinalityMismatchException.cs#L58C15-L60C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportCardinalityMismatchException.cs#L58C15-L60C10" }, { "DocsId": "M:System.ComponentModel.Composition.ImportCardinalityMismatchException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportCardinalityMismatchException.cs#L88C15-L90C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportCardinalityMismatchException.cs#L88C15-L90C10" } ], "DocsId": "T:System.ComponentModel.Composition.ImportCardinalityMismatchException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportCardinalityMismatchException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportCardinalityMismatchException.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.ImportingConstructorAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportingConstructorAttribute.cs#L22C9-L24C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportingConstructorAttribute.cs#L22C9-L24C10" } ], "DocsId": "T:System.ComponentModel.Composition.ImportingConstructorAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportingConstructorAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportingConstructorAttribute.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.ImportManyAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportManyAttribute.cs#L32C15-L34C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportManyAttribute.cs#L32C15-L34C10" }, { "DocsId": "M:System.ComponentModel.Composition.ImportManyAttribute.#ctor(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportManyAttribute.cs#L61C15-L63C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportManyAttribute.cs#L61C15-L63C10" }, { "DocsId": "M:System.ComponentModel.Composition.ImportManyAttribute.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportManyAttribute.cs#L85C15-L87C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportManyAttribute.cs#L85C15-L87C10" }, { "DocsId": "M:System.ComponentModel.Composition.ImportManyAttribute.#ctor(System.String,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportManyAttribute.cs#L89C9-L93C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportManyAttribute.cs#L89C9-L93C10" }, { "DocsId": "M:System.ComponentModel.Composition.ImportManyAttribute.System#ComponentModel#Composition#IAttributedImport#get_Cardinality", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportManyAttribute.cs#L162C19-L162C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportManyAttribute.cs#L162C19-L162C55" }, { "DocsId": "P:System.ComponentModel.Composition.ImportManyAttribute.ContractName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportManyAttribute.cs#L102C39-L102C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportManyAttribute.cs#L102C39-L102C43" }, { "DocsId": "P:System.ComponentModel.Composition.ImportManyAttribute.ContractType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportManyAttribute.cs#L113C37-L113C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportManyAttribute.cs#L113C37-L113C41" }, { "DocsId": "P:System.ComponentModel.Composition.ImportManyAttribute.AllowRecomposition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportManyAttribute.cs#L126C42-L126C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportManyAttribute.cs#L126C42-L126C46" }, { "DocsId": "P:System.ComponentModel.Composition.ImportManyAttribute.RequiredCreationPolicy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportManyAttribute.cs#L142C56-L142C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportManyAttribute.cs#L142C56-L142C60" }, { "DocsId": "P:System.ComponentModel.Composition.ImportManyAttribute.Source", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportManyAttribute.cs#L158C38-L158C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportManyAttribute.cs#L158C38-L158C42" }, { "DocsId": "P:System.ComponentModel.Composition.ImportManyAttribute.System#ComponentModel#Composition#IAttributedImport#Cardinality", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportManyAttribute.cs#L162C19-L162C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportManyAttribute.cs#L162C19-L162C55" } ], "DocsId": "T:System.ComponentModel.Composition.ImportManyAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportManyAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportManyAttribute.cs" }, { "Members": [ { "DocsId": "F:System.ComponentModel.Composition.ImportSource.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportSource.cs" }, { "DocsId": "F:System.ComponentModel.Composition.ImportSource.Any", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportSource.cs" }, { "DocsId": "F:System.ComponentModel.Composition.ImportSource.Local", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportSource.cs" }, { "DocsId": "F:System.ComponentModel.Composition.ImportSource.NonLocal", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportSource.cs" } ], "DocsId": "T:System.ComponentModel.Composition.ImportSource", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportSource.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.InheritedExportAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/InheritedExportAttribute.cs#L30C15-L32C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/InheritedExportAttribute.cs#L30C15-L32C10" }, { "DocsId": "M:System.ComponentModel.Composition.InheritedExportAttribute.#ctor(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/InheritedExportAttribute.cs#L60C15-L62C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/InheritedExportAttribute.cs#L60C15-L62C10" }, { "DocsId": "M:System.ComponentModel.Composition.InheritedExportAttribute.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/InheritedExportAttribute.cs#L85C15-L87C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/InheritedExportAttribute.cs#L85C15-L87C10" }, { "DocsId": "M:System.ComponentModel.Composition.InheritedExportAttribute.#ctor(System.String,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/InheritedExportAttribute.cs#L115C15-L117C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/InheritedExportAttribute.cs#L115C15-L117C10" } ], "DocsId": "T:System.ComponentModel.Composition.InheritedExportAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/InheritedExportAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/InheritedExportAttribute.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.IPartImportsSatisfiedNotification.OnImportsSatisfied", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/IPartImportsSatisfiedNotification.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/IPartImportsSatisfiedNotification.cs" } ], "DocsId": "T:System.ComponentModel.Composition.IPartImportsSatisfiedNotification", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/IPartImportsSatisfiedNotification.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/IPartImportsSatisfiedNotification.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.MetadataAttributeAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/MetadataAttributeAttribute.cs#L16C9-L18C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/MetadataAttributeAttribute.cs#L16C9-L18C10" } ], "DocsId": "T:System.ComponentModel.Composition.MetadataAttributeAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/MetadataAttributeAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/MetadataAttributeAttribute.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.MetadataViewImplementationAttribute.#ctor(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/MetadataViewImplementationAttribute.cs#L26C9-L29C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/MetadataViewImplementationAttribute.cs#L26C9-L29C10" }, { "DocsId": "P:System.ComponentModel.Composition.MetadataViewImplementationAttribute.ImplementationType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/MetadataViewImplementationAttribute.cs#L39C43-L39C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/MetadataViewImplementationAttribute.cs#L39C43-L39C47" } ], "DocsId": "T:System.ComponentModel.Composition.MetadataViewImplementationAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/MetadataViewImplementationAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/MetadataViewImplementationAttribute.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.PartCreationPolicyAttribute.#ctor(System.ComponentModel.Composition.CreationPolicy)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/PartCreationPolicyAttribute.cs#L18C9-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/PartCreationPolicyAttribute.cs#L18C9-L21C10" }, { "DocsId": "P:System.ComponentModel.Composition.PartCreationPolicyAttribute.CreationPolicy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/PartCreationPolicyAttribute.cs#L31C48-L31C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/PartCreationPolicyAttribute.cs#L31C48-L31C52" } ], "DocsId": "T:System.ComponentModel.Composition.PartCreationPolicyAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/PartCreationPolicyAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/PartCreationPolicyAttribute.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.PartMetadataAttribute.#ctor(System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/PartMetadataAttribute.cs#L25C9-L29C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/PartMetadataAttribute.cs#L25C9-L29C10" }, { "DocsId": "P:System.ComponentModel.Composition.PartMetadataAttribute.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/PartMetadataAttribute.cs#L39C13-L39C17" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/PartMetadataAttribute.cs#L39C13-L39C17" }, { "DocsId": "P:System.ComponentModel.Composition.PartMetadataAttribute.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/PartMetadataAttribute.cs#L51C13-L51C17" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/PartMetadataAttribute.cs#L51C13-L51C17" } ], "DocsId": "T:System.ComponentModel.Composition.PartMetadataAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/PartMetadataAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/PartMetadataAttribute.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.PartNotDiscoverableAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/PartNotDiscoverableAttribute.cs#L16C9-L18C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/PartNotDiscoverableAttribute.cs#L16C9-L18C10" } ], "DocsId": "T:System.ComponentModel.Composition.PartNotDiscoverableAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/PartNotDiscoverableAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/PartNotDiscoverableAttribute.cs" }, { "Members": [ { "DocsId": "F:System.ComponentModel.Composition.AdaptationConstants.AdapterContractName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AdaptationConstants.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AdaptationConstants.cs" }, { "DocsId": "F:System.ComponentModel.Composition.AdaptationConstants.AdapterFromContractMetadataName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AdaptationConstants.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AdaptationConstants.cs" }, { "DocsId": "F:System.ComponentModel.Composition.AdaptationConstants.AdapterToContractMetadataName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AdaptationConstants.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AdaptationConstants.cs" } ], "DocsId": "T:System.ComponentModel.Composition.AdaptationConstants", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AdaptationConstants.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AdaptationConstants.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.ReflectionModel.LazyMemberInfo.#ctor(System.Reflection.MemberInfo)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/LazyMemberInfo.cs#L19C13-L43C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/LazyMemberInfo.cs#L19C13-L43C10" }, { "DocsId": "M:System.ComponentModel.Composition.ReflectionModel.LazyMemberInfo.#ctor(System.Reflection.MemberTypes,System.Reflection.MemberInfo[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/LazyMemberInfo.cs#L47C13-L59C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/LazyMemberInfo.cs#L47C13-L59C10" }, { "DocsId": "M:System.ComponentModel.Composition.ReflectionModel.LazyMemberInfo.#ctor(System.Reflection.MemberTypes,System.Func{System.Reflection.MemberInfo[]})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/LazyMemberInfo.cs#L63C13-L69C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/LazyMemberInfo.cs#L63C13-L69C10" }, { "DocsId": "M:System.ComponentModel.Composition.ReflectionModel.LazyMemberInfo.GetAccessors", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/LazyMemberInfo.cs#L78C13-L91C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/LazyMemberInfo.cs#L78C13-L91C32" }, { "DocsId": "M:System.ComponentModel.Composition.ReflectionModel.LazyMemberInfo.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/LazyMemberInfo.cs#L96C13-L106C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/LazyMemberInfo.cs#L96C13-L106C73" }, { "DocsId": "M:System.ComponentModel.Composition.ReflectionModel.LazyMemberInfo.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/LazyMemberInfo.cs#L110C13-L110C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/LazyMemberInfo.cs#L110C13-L110C57" }, { "DocsId": "M:System.ComponentModel.Composition.ReflectionModel.LazyMemberInfo.Equals(System.ComponentModel.Composition.ReflectionModel.LazyMemberInfo)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/LazyMemberInfo.cs#L118C13-L134C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/LazyMemberInfo.cs#L118C13-L134C63" }, { "DocsId": "M:System.ComponentModel.Composition.ReflectionModel.LazyMemberInfo.op_Equality(System.ComponentModel.Composition.ReflectionModel.LazyMemberInfo,System.ComponentModel.Composition.ReflectionModel.LazyMemberInfo)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/LazyMemberInfo.cs#L139C13-L139C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/LazyMemberInfo.cs#L139C13-L139C39" }, { "DocsId": "M:System.ComponentModel.Composition.ReflectionModel.LazyMemberInfo.op_Inequality(System.ComponentModel.Composition.ReflectionModel.LazyMemberInfo,System.ComponentModel.Composition.ReflectionModel.LazyMemberInfo)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/LazyMemberInfo.cs#L144C13-L144C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/LazyMemberInfo.cs#L144C13-L144C40" }, { "DocsId": "P:System.ComponentModel.Composition.ReflectionModel.LazyMemberInfo.MemberType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/LazyMemberInfo.cs#L73C19-L73C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/LazyMemberInfo.cs#L73C19-L73C38" } ], "DocsId": "T:System.ComponentModel.Composition.ReflectionModel.LazyMemberInfo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/LazyMemberInfo.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/LazyMemberInfo.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.ReflectionModel.ReflectionModelServices.GetPartType(System.ComponentModel.Composition.Primitives.ComposablePartDefinition)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/ReflectionModelServices.cs#L19C13-L27C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/ReflectionModelServices.cs#L19C13-L27C63" }, { "DocsId": "M:System.ComponentModel.Composition.ReflectionModel.ReflectionModelServices.IsDisposalRequired(System.ComponentModel.Composition.Primitives.ComposablePartDefinition)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/ReflectionModelServices.cs#L32C13-L40C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/ReflectionModelServices.cs#L32C13-L40C64" }, { "DocsId": "M:System.ComponentModel.Composition.ReflectionModel.ReflectionModelServices.GetExportingMember(System.ComponentModel.Composition.Primitives.ExportDefinition)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/ReflectionModelServices.cs#L45C13-L55C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/ReflectionModelServices.cs#L45C13-L55C67" }, { "DocsId": "M:System.ComponentModel.Composition.ReflectionModel.ReflectionModelServices.GetImportingMember(System.ComponentModel.Composition.Primitives.ImportDefinition)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/ReflectionModelServices.cs#L60C13-L70C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/ReflectionModelServices.cs#L60C13-L70C73" }, { "DocsId": "M:System.ComponentModel.Composition.ReflectionModel.ReflectionModelServices.GetImportingParameter(System.ComponentModel.Composition.Primitives.ImportDefinition)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/ReflectionModelServices.cs#L75C13-L86C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/ReflectionModelServices.cs#L75C13-L86C79" }, { "DocsId": "M:System.ComponentModel.Composition.ReflectionModel.ReflectionModelServices.IsImportingParameter(System.ComponentModel.Composition.Primitives.ImportDefinition)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/ReflectionModelServices.cs#L91C13-L101C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/ReflectionModelServices.cs#L91C13-L101C78" }, { "DocsId": "M:System.ComponentModel.Composition.ReflectionModel.ReflectionModelServices.IsExportFactoryImportDefinition(System.ComponentModel.Composition.Primitives.ImportDefinition)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/ReflectionModelServices.cs#L106C13-L108C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/ReflectionModelServices.cs#L106C13-L108C71" }, { "DocsId": "M:System.ComponentModel.Composition.ReflectionModel.ReflectionModelServices.GetExportFactoryProductImportDefinition(System.ComponentModel.Composition.Primitives.ImportDefinition)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/ReflectionModelServices.cs#L113C13-L123C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/ReflectionModelServices.cs#L113C13-L123C72" }, { "DocsId": "M:System.ComponentModel.Composition.ReflectionModel.ReflectionModelServices.CreatePartDefinition(System.Lazy{System.Type},System.Boolean,System.Lazy{System.Collections.Generic.IEnumerable{System.ComponentModel.Composition.Primitives.ImportDefinition}},System.Lazy{System.Collections.Generic.IEnumerable{System.ComponentModel.Composition.Primitives.ExportDefinition}},System.Lazy{System.Collections.Generic.IDictionary{System.String,System.Object}},System.ComponentModel.Composition.Primitives.ICompositionElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/ReflectionModelServices.cs#L134C13-L143C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/ReflectionModelServices.cs#L134C13-L143C30" }, { "DocsId": "M:System.ComponentModel.Composition.ReflectionModel.ReflectionModelServices.CreateExportDefinition(System.ComponentModel.Composition.ReflectionModel.LazyMemberInfo,System.String,System.Lazy{System.Collections.Generic.IDictionary{System.String,System.Object}},System.ComponentModel.Composition.Primitives.ICompositionElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/ReflectionModelServices.cs#L152C13-L158C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/ReflectionModelServices.cs#L152C13-L158C25" }, { "DocsId": "M:System.ComponentModel.Composition.ReflectionModel.ReflectionModelServices.CreateImportDefinition(System.ComponentModel.Composition.ReflectionModel.LazyMemberInfo,System.String,System.String,System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{System.String,System.Type}},System.ComponentModel.Composition.Primitives.ImportCardinality,System.Boolean,System.ComponentModel.Composition.CreationPolicy,System.ComponentModel.Composition.Primitives.ICompositionElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/ReflectionModelServices.cs#L171C13-L171C214" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/ReflectionModelServices.cs#L171C13-L171C214" }, { "DocsId": "M:System.ComponentModel.Composition.ReflectionModel.ReflectionModelServices.CreateImportDefinition(System.ComponentModel.Composition.ReflectionModel.LazyMemberInfo,System.String,System.String,System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{System.String,System.Type}},System.ComponentModel.Composition.Primitives.ImportCardinality,System.Boolean,System.ComponentModel.Composition.CreationPolicy,System.Collections.Generic.IDictionary{System.String,System.Object},System.Boolean,System.ComponentModel.Composition.Primitives.ICompositionElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/ReflectionModelServices.cs#L186C13-L197C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/ReflectionModelServices.cs#L186C13-L197C25" }, { "DocsId": "M:System.ComponentModel.Composition.ReflectionModel.ReflectionModelServices.CreateImportDefinition(System.ComponentModel.Composition.ReflectionModel.LazyMemberInfo,System.String,System.String,System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{System.String,System.Type}},System.ComponentModel.Composition.Primitives.ImportCardinality,System.Boolean,System.Boolean,System.ComponentModel.Composition.CreationPolicy,System.Collections.Generic.IDictionary{System.String,System.Object},System.Boolean,System.ComponentModel.Composition.Primitives.ICompositionElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/ReflectionModelServices.cs#L213C13-L243C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/ReflectionModelServices.cs#L213C13-L243C29" }, { "DocsId": "M:System.ComponentModel.Composition.ReflectionModel.ReflectionModelServices.CreateImportDefinition(System.Lazy{System.Reflection.ParameterInfo},System.String,System.String,System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{System.String,System.Type}},System.ComponentModel.Composition.Primitives.ImportCardinality,System.ComponentModel.Composition.CreationPolicy,System.ComponentModel.Composition.Primitives.ICompositionElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/ReflectionModelServices.cs#L256C13-L256C192" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/ReflectionModelServices.cs#L256C13-L256C192" }, { "DocsId": "M:System.ComponentModel.Composition.ReflectionModel.ReflectionModelServices.CreateImportDefinition(System.Lazy{System.Reflection.ParameterInfo},System.String,System.String,System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{System.String,System.Type}},System.ComponentModel.Composition.Primitives.ImportCardinality,System.ComponentModel.Composition.CreationPolicy,System.Collections.Generic.IDictionary{System.String,System.Object},System.Boolean,System.ComponentModel.Composition.Primitives.ICompositionElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/ReflectionModelServices.cs#L270C13-L298C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/ReflectionModelServices.cs#L270C13-L298C29" }, { "DocsId": "M:System.ComponentModel.Composition.ReflectionModel.ReflectionModelServices.TryMakeGenericPartDefinition(System.ComponentModel.Composition.Primitives.ComposablePartDefinition,System.Collections.Generic.IEnumerable{System.Type},System.ComponentModel.Composition.Primitives.ComposablePartDefinition@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/ReflectionModelServices.cs#L304C13-L313C123" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/ReflectionModelServices.cs#L304C13-L313C123" } ], "DocsId": "T:System.ComponentModel.Composition.ReflectionModel.ReflectionModelServices", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/ReflectionModelServices.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/ReflectionModelServices.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.Primitives.ComposablePart.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePart.cs#L17C9-L19C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePart.cs#L17C9-L19C10" }, { "DocsId": "M:System.ComponentModel.Composition.Primitives.ComposablePart.Activate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePart.cs#L127C9-L127C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePart.cs#L127C9-L127C10" }, { "DocsId": "M:System.ComponentModel.Composition.Primitives.ComposablePart.GetExportedValue(System.ComponentModel.Composition.Primitives.ExportDefinition)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePart.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePart.cs" }, { "DocsId": "M:System.ComponentModel.Composition.Primitives.ComposablePart.SetImport(System.ComponentModel.Composition.Primitives.ImportDefinition,System.Collections.Generic.IEnumerable{System.ComponentModel.Composition.Primitives.Export})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePart.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePart.cs" }, { "DocsId": "P:System.ComponentModel.Composition.Primitives.ComposablePart.ExportDefinitions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePart.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePart.cs" }, { "DocsId": "P:System.ComponentModel.Composition.Primitives.ComposablePart.ImportDefinitions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePart.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePart.cs" }, { "DocsId": "P:System.ComponentModel.Composition.Primitives.ComposablePart.Metadata", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePart.cs#L111C17-L111C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePart.cs#L111C17-L111C55" } ], "DocsId": "T:System.ComponentModel.Composition.Primitives.ComposablePart", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePart.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePart.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.Primitives.ComposablePartCatalog.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePartCatalog.cs#L32C9-L34C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePartCatalog.cs#L32C9-L34C10" }, { "DocsId": "M:System.ComponentModel.Composition.Primitives.ComposablePartCatalog.GetExports(System.ComponentModel.Composition.Primitives.ImportDefinition)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePartCatalog.cs#L99C13-L117C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePartCatalog.cs#L99C13-L117C49" }, { "DocsId": "M:System.ComponentModel.Composition.Primitives.ComposablePartCatalog.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePartCatalog.cs#L130C13-L132C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePartCatalog.cs#L130C13-L132C10" }, { "DocsId": "M:System.ComponentModel.Composition.Primitives.ComposablePartCatalog.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePartCatalog.cs#L136C13-L137C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePartCatalog.cs#L136C13-L137C10" }, { "DocsId": "M:System.ComponentModel.Composition.Primitives.ComposablePartCatalog.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePartCatalog.cs#L160C13-L165C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePartCatalog.cs#L160C13-L165C42" }, { "DocsId": "M:System.ComponentModel.Composition.Primitives.ComposablePartCatalog.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePartCatalog.cs#L170C13-L170C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePartCatalog.cs#L170C13-L170C36" }, { "DocsId": "P:System.ComponentModel.Composition.Primitives.ComposablePartCatalog.Parts", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePartCatalog.cs#L56C17-L67C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePartCatalog.cs#L56C17-L67C40" } ], "DocsId": "T:System.ComponentModel.Composition.Primitives.ComposablePartCatalog", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePartCatalog.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePartCatalog.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.Primitives.ComposablePartDefinition.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePartDefinition.cs#L21C9-L23C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePartDefinition.cs#L21C9-L23C10" }, { "DocsId": "M:System.ComponentModel.Composition.Primitives.ComposablePartDefinition.CreatePart", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePartDefinition.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePartDefinition.cs" }, { "DocsId": "P:System.ComponentModel.Composition.Primitives.ComposablePartDefinition.ExportDefinitions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePartDefinition.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePartDefinition.cs" }, { "DocsId": "P:System.ComponentModel.Composition.Primitives.ComposablePartDefinition.ImportDefinitions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePartDefinition.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePartDefinition.cs" }, { "DocsId": "P:System.ComponentModel.Composition.Primitives.ComposablePartDefinition.Metadata", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePartDefinition.cs#L85C19-L85C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePartDefinition.cs#L85C19-L85C57" } ], "DocsId": "T:System.ComponentModel.Composition.Primitives.ComposablePartDefinition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePartDefinition.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePartDefinition.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.Primitives.ComposablePartException.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePartException.cs#L25C15-L27C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePartException.cs#L25C15-L27C10" }, { "DocsId": "M:System.ComponentModel.Composition.Primitives.ComposablePartException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePartException.cs#L54C95-L57C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePartException.cs#L54C95-L57C10" }, { "DocsId": "M:System.ComponentModel.Composition.Primitives.ComposablePartException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePartException.cs#L69C15-L71C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePartException.cs#L69C15-L71C10" }, { "DocsId": "M:System.ComponentModel.Composition.Primitives.ComposablePartException.#ctor(System.String,System.ComponentModel.Composition.Primitives.ICompositionElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePartException.cs#L90C15-L92C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePartException.cs#L90C15-L92C10" }, { "DocsId": "M:System.ComponentModel.Composition.Primitives.ComposablePartException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePartException.cs#L110C15-L112C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePartException.cs#L110C15-L112C10" }, { "DocsId": "M:System.ComponentModel.Composition.Primitives.ComposablePartException.#ctor(System.String,System.ComponentModel.Composition.Primitives.ICompositionElement,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePartException.cs#L136C15-L139C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePartException.cs#L136C15-L139C10" }, { "DocsId": "M:System.ComponentModel.Composition.Primitives.ComposablePartException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePartException.cs#L173C13-L175C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePartException.cs#L173C13-L175C10" }, { "DocsId": "P:System.ComponentModel.Composition.Primitives.ComposablePartException.Element", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePartException.cs#L150C19-L150C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePartException.cs#L150C19-L150C35" } ], "DocsId": "T:System.ComponentModel.Composition.Primitives.ComposablePartException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePartException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePartException.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.Primitives.ContractBasedImportDefinition.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ContractBasedImportDefinition.cs#L24C9-L44C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ContractBasedImportDefinition.cs#L24C9-L44C10" }, { "DocsId": "M:System.ComponentModel.Composition.Primitives.ContractBasedImportDefinition.#ctor(System.String,System.String,System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{System.String,System.Type}},System.ComponentModel.Composition.Primitives.ImportCardinality,System.Boolean,System.Boolean,System.ComponentModel.Composition.CreationPolicy)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ContractBasedImportDefinition.cs#L103C15-L105C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ContractBasedImportDefinition.cs#L103C15-L105C10" }, { "DocsId": "M:System.ComponentModel.Composition.Primitives.ContractBasedImportDefinition.#ctor(System.String,System.String,System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{System.String,System.Type}},System.ComponentModel.Composition.Primitives.ImportCardinality,System.Boolean,System.Boolean,System.ComponentModel.Composition.CreationPolicy,System.Collections.Generic.IDictionary{System.String,System.Object})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ContractBasedImportDefinition.cs#L24C9-L177C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ContractBasedImportDefinition.cs#L24C9-L177C10" }, { "DocsId": "M:System.ComponentModel.Composition.Primitives.ContractBasedImportDefinition.IsConstraintSatisfiedBy(System.ComponentModel.Composition.Primitives.ExportDefinition)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ContractBasedImportDefinition.cs#L297C13-L304C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ContractBasedImportDefinition.cs#L297C13-L304C60" }, { "DocsId": "M:System.ComponentModel.Composition.Primitives.ContractBasedImportDefinition.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ContractBasedImportDefinition.cs#L362C13-L379C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ContractBasedImportDefinition.cs#L362C13-L379C34" }, { "DocsId": "P:System.ComponentModel.Composition.Primitives.ContractBasedImportDefinition.RequiredTypeIdentity", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ContractBasedImportDefinition.cs#L189C19-L189C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ContractBasedImportDefinition.cs#L189C19-L189C48" }, { "DocsId": "P:System.ComponentModel.Composition.Primitives.ContractBasedImportDefinition.RequiredMetadata", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ContractBasedImportDefinition.cs#L213C17-L216C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ContractBasedImportDefinition.cs#L213C17-L216C42" }, { "DocsId": "P:System.ComponentModel.Composition.Primitives.ContractBasedImportDefinition.RequiredCreationPolicy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ContractBasedImportDefinition.cs#L252C19-L252C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ContractBasedImportDefinition.cs#L252C19-L252C50" }, { "DocsId": "P:System.ComponentModel.Composition.Primitives.ContractBasedImportDefinition.Constraint", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ContractBasedImportDefinition.cs#L273C13-L273C142" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ContractBasedImportDefinition.cs#L273C13-L273C142" } ], "DocsId": "T:System.ComponentModel.Composition.Primitives.ContractBasedImportDefinition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ContractBasedImportDefinition.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ContractBasedImportDefinition.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.Primitives.Export.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/Export.cs#L21C9-L34C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/Export.cs#L21C9-L34C10" }, { "DocsId": "M:System.ComponentModel.Composition.Primitives.Export.#ctor(System.String,System.Func{System.Object})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/Export.cs#L59C15-L61C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/Export.cs#L59C15-L61C10" }, { "DocsId": "M:System.ComponentModel.Composition.Primitives.Export.#ctor(System.String,System.Collections.Generic.IDictionary{System.String,System.Object},System.Func{System.Object})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/Export.cs#L92C15-L94C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/Export.cs#L92C15-L94C10" }, { "DocsId": "M:System.ComponentModel.Composition.Primitives.Export.#ctor(System.ComponentModel.Composition.Primitives.ExportDefinition,System.Func{System.Object})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/Export.cs#L21C9-L122C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/Export.cs#L21C9-L122C10" }, { "DocsId": "M:System.ComponentModel.Composition.Primitives.Export.GetExportedValueCore", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/Export.cs#L237C13-L242C89" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/Export.cs#L237C13-L242C89" }, { "DocsId": "P:System.ComponentModel.Composition.Primitives.Export.Definition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/Export.cs#L144C17-L149C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/Export.cs#L144C17-L149C83" }, { "DocsId": "P:System.ComponentModel.Composition.Primitives.Export.Metadata", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/Export.cs#L175C17-L175C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/Export.cs#L175C17-L175C44" }, { "DocsId": "P:System.ComponentModel.Composition.Primitives.Export.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/Export.cs#L202C17-L208C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/Export.cs#L202C17-L208C39" } ], "DocsId": "T:System.ComponentModel.Composition.Primitives.Export", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/Export.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/Export.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.Primitives.ExportDefinition.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ExportDefinition.cs#L17C9-L32C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ExportDefinition.cs#L17C9-L32C10" }, { "DocsId": "M:System.ComponentModel.Composition.Primitives.ExportDefinition.#ctor(System.String,System.Collections.Generic.IDictionary{System.String,System.Object})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ExportDefinition.cs#L17C9-L64C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ExportDefinition.cs#L17C9-L64C10" }, { "DocsId": "M:System.ComponentModel.Composition.Primitives.ExportDefinition.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ExportDefinition.cs#L133C13-L133C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ExportDefinition.cs#L133C13-L133C33" }, { "DocsId": "P:System.ComponentModel.Composition.Primitives.ExportDefinition.ContractName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ExportDefinition.cs#L86C17-L91C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ExportDefinition.cs#L86C17-L91C85" }, { "DocsId": "P:System.ComponentModel.Composition.Primitives.ExportDefinition.Metadata", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ExportDefinition.cs#L121C17-L121C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ExportDefinition.cs#L121C17-L121C34" } ], "DocsId": "T:System.ComponentModel.Composition.Primitives.ExportDefinition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ExportDefinition.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ExportDefinition.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.Primitives.ExportedDelegate.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ExportedDelegate.cs#L16C9-L16C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ExportedDelegate.cs#L16C9-L16C41" }, { "DocsId": "M:System.ComponentModel.Composition.Primitives.ExportedDelegate.#ctor(System.Object,System.Reflection.MethodInfo)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ExportedDelegate.cs#L18C9-L24C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ExportedDelegate.cs#L18C9-L24C10" }, { "DocsId": "M:System.ComponentModel.Composition.Primitives.ExportedDelegate.CreateDelegate(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ExportedDelegate.cs#L28C13-L43C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ExportedDelegate.cs#L28C13-L43C10" } ], "DocsId": "T:System.ComponentModel.Composition.Primitives.ExportedDelegate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ExportedDelegate.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ExportedDelegate.cs" }, { "Members": [ { "DocsId": "P:System.ComponentModel.Composition.Primitives.ICompositionElement.DisplayName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ICompositionElement.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ICompositionElement.cs" }, { "DocsId": "P:System.ComponentModel.Composition.Primitives.ICompositionElement.Origin", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ICompositionElement.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ICompositionElement.cs" } ], "DocsId": "T:System.ComponentModel.Composition.Primitives.ICompositionElement", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ICompositionElement.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ICompositionElement.cs" }, { "Members": [ { "DocsId": "F:System.ComponentModel.Composition.Primitives.ImportCardinality.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ImportCardinality.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ImportCardinality.cs" }, { "DocsId": "F:System.ComponentModel.Composition.Primitives.ImportCardinality.ZeroOrOne", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ImportCardinality.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ImportCardinality.cs" }, { "DocsId": "F:System.ComponentModel.Composition.Primitives.ImportCardinality.ExactlyOne", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ImportCardinality.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ImportCardinality.cs" }, { "DocsId": "F:System.ComponentModel.Composition.Primitives.ImportCardinality.ZeroOrMore", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ImportCardinality.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ImportCardinality.cs" } ], "DocsId": "T:System.ComponentModel.Composition.Primitives.ImportCardinality", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ImportCardinality.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ImportCardinality.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.Primitives.ImportDefinition.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ImportDefinition.cs#L20C9-L40C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ImportDefinition.cs#L20C9-L40C10" }, { "DocsId": "M:System.ComponentModel.Composition.Primitives.ImportDefinition.#ctor(System.Linq.Expressions.Expression{System.Func{System.ComponentModel.Composition.Primitives.ExportDefinition,System.Boolean}},System.String,System.ComponentModel.Composition.Primitives.ImportCardinality,System.Boolean,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ImportDefinition.cs#L82C15-L87C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ImportDefinition.cs#L82C15-L87C10" }, { "DocsId": "M:System.ComponentModel.Composition.Primitives.ImportDefinition.#ctor(System.Linq.Expressions.Expression{System.Func{System.ComponentModel.Composition.Primitives.ExportDefinition,System.Boolean}},System.String,System.ComponentModel.Composition.Primitives.ImportCardinality,System.Boolean,System.Boolean,System.Collections.Generic.IDictionary{System.String,System.Object})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ImportDefinition.cs#L90C15-L95C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ImportDefinition.cs#L90C15-L95C10" }, { "DocsId": "M:System.ComponentModel.Composition.Primitives.ImportDefinition.IsConstraintSatisfiedBy(System.ComponentModel.Composition.Primitives.ExportDefinition)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ImportDefinition.cs#L264C13-L268C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ImportDefinition.cs#L264C13-L268C65" }, { "DocsId": "M:System.ComponentModel.Composition.Primitives.ImportDefinition.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ImportDefinition.cs#L279C13-L279C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ImportDefinition.cs#L279C13-L279C47" }, { "DocsId": "P:System.ComponentModel.Composition.Primitives.ImportDefinition.ContractName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ImportDefinition.cs#L135C17-L135C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ImportDefinition.cs#L135C17-L135C38" }, { "DocsId": "P:System.ComponentModel.Composition.Primitives.ImportDefinition.Metadata", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ImportDefinition.cs#L165C17-L165C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ImportDefinition.cs#L165C17-L165C34" }, { "DocsId": "P:System.ComponentModel.Composition.Primitives.ImportDefinition.Cardinality", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ImportDefinition.cs#L180C19-L180C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ImportDefinition.cs#L180C19-L180C39" }, { "DocsId": "P:System.ComponentModel.Composition.Primitives.ImportDefinition.Constraint", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ImportDefinition.cs#L204C17-L209C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ImportDefinition.cs#L204C17-L209C83" }, { "DocsId": "P:System.ComponentModel.Composition.Primitives.ImportDefinition.IsPrerequisite", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ImportDefinition.cs#L224C19-L224C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ImportDefinition.cs#L224C19-L224C42" }, { "DocsId": "P:System.ComponentModel.Composition.Primitives.ImportDefinition.IsRecomposable", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ImportDefinition.cs#L237C19-L237C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ImportDefinition.cs#L237C19-L237C42" } ], "DocsId": "T:System.ComponentModel.Composition.Primitives.ImportDefinition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ImportDefinition.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ImportDefinition.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.Hosting.AggregateCatalog.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AggregateCatalog.cs#L28C15-L30C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AggregateCatalog.cs#L28C15-L30C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.AggregateCatalog.#ctor(System.ComponentModel.Composition.Primitives.ComposablePartCatalog[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AggregateCatalog.cs#L47C15-L49C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AggregateCatalog.cs#L47C15-L49C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.AggregateCatalog.#ctor(System.Collections.Generic.IEnumerable{System.ComponentModel.Composition.Primitives.ComposablePartCatalog})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AggregateCatalog.cs#L63C9-L68C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AggregateCatalog.cs#L63C9-L68C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.AggregateCatalog.GetExports(System.ComponentModel.Composition.Primitives.ImportDefinition)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AggregateCatalog.cs#L121C13-L152C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AggregateCatalog.cs#L121C13-L152C70" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.AggregateCatalog.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AggregateCatalog.cs#L180C17-L192C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AggregateCatalog.cs#L180C17-L192C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.AggregateCatalog.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AggregateCatalog.cs#L196C13-L196C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AggregateCatalog.cs#L196C13-L196C77" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.AggregateCatalog.OnChanged(System.ComponentModel.Composition.Hosting.ComposablePartCatalogChangeEventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AggregateCatalog.cs#L207C13-L208C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AggregateCatalog.cs#L207C13-L208C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.AggregateCatalog.OnChanging(System.ComponentModel.Composition.Hosting.ComposablePartCatalogChangeEventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AggregateCatalog.cs#L218C13-L219C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AggregateCatalog.cs#L218C13-L219C10" }, { "DocsId": "E:System.ComponentModel.Composition.Hosting.AggregateCatalog.Changed", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AggregateCatalog.cs#L77C17-L78C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AggregateCatalog.cs#L77C17-L78C14" }, { "DocsId": "E:System.ComponentModel.Composition.Hosting.AggregateCatalog.Changing", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AggregateCatalog.cs#L92C17-L93C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AggregateCatalog.cs#L92C17-L93C14" }, { "DocsId": "P:System.ComponentModel.Composition.Hosting.AggregateCatalog.Catalogs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AggregateCatalog.cs#L169C17-L172C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AggregateCatalog.cs#L169C17-L172C34" } ], "DocsId": "T:System.ComponentModel.Composition.Hosting.AggregateCatalog", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AggregateCatalog.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AggregateCatalog.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.Hosting.AggregateExportProvider.#ctor(System.ComponentModel.Composition.Hosting.ExportProvider[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AggregateExportProvider.cs#L37C9-L66C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AggregateExportProvider.cs#L37C9-L66C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.AggregateExportProvider.#ctor(System.Collections.Generic.IEnumerable{System.ComponentModel.Composition.Hosting.ExportProvider})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AggregateExportProvider.cs#L83C15-L85C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AggregateExportProvider.cs#L83C15-L85C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.AggregateExportProvider.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AggregateExportProvider.cs#L92C13-L94C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AggregateExportProvider.cs#L92C13-L94C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.AggregateExportProvider.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AggregateExportProvider.cs#L102C13-L113C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AggregateExportProvider.cs#L102C13-L113C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.AggregateExportProvider.GetExportsCore(System.ComponentModel.Composition.Primitives.ImportDefinition,System.ComponentModel.Composition.Hosting.AtomicComposition)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AggregateExportProvider.cs#L158C13-L203C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AggregateExportProvider.cs#L158C13-L203C36" }, { "DocsId": "P:System.ComponentModel.Composition.Hosting.AggregateExportProvider.Providers", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AggregateExportProvider.cs#L129C17-L132C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AggregateExportProvider.cs#L129C17-L132C43" } ], "DocsId": "T:System.ComponentModel.Composition.Hosting.AggregateExportProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AggregateExportProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AggregateExportProvider.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.Hosting.ApplicationCatalog.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ApplicationCatalog.cs#L19C9-L23C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ApplicationCatalog.cs#L19C9-L23C40" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ApplicationCatalog.#ctor(System.ComponentModel.Composition.Primitives.ICompositionElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ApplicationCatalog.cs#L19C9-L30C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ApplicationCatalog.cs#L19C9-L30C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ApplicationCatalog.#ctor(System.Reflection.ReflectionContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ApplicationCatalog.cs#L19C9-L37C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ApplicationCatalog.cs#L19C9-L37C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ApplicationCatalog.#ctor(System.Reflection.ReflectionContext,System.ComponentModel.Composition.Primitives.ICompositionElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ApplicationCatalog.cs#L19C9-L46C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ApplicationCatalog.cs#L19C9-L46C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ApplicationCatalog.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ApplicationCatalog.cs#L111C17-L127C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ApplicationCatalog.cs#L111C17-L127C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ApplicationCatalog.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ApplicationCatalog.cs#L131C13-L133C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ApplicationCatalog.cs#L131C13-L133C49" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ApplicationCatalog.GetExports(System.ComponentModel.Composition.Primitives.ImportDefinition)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ApplicationCatalog.cs#L157C13-L161C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ApplicationCatalog.cs#L157C13-L161C56" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ApplicationCatalog.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ApplicationCatalog.cs#L184C13-L184C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ApplicationCatalog.cs#L184C13-L184C37" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ApplicationCatalog.System#ComponentModel#Composition#Primitives#ICompositionElement#get_DisplayName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ApplicationCatalog.cs#L195C19-L195C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ApplicationCatalog.cs#L195C19-L195C43" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ApplicationCatalog.System#ComponentModel#Composition#Primitives#ICompositionElement#get_Origin", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ApplicationCatalog.cs#L206C19-L206C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ApplicationCatalog.cs#L206C19-L206C31" }, { "DocsId": "P:System.ComponentModel.Composition.Hosting.ApplicationCatalog.System#ComponentModel#Composition#Primitives#ICompositionElement#DisplayName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ApplicationCatalog.cs#L195C19-L195C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ApplicationCatalog.cs#L195C19-L195C43" }, { "DocsId": "P:System.ComponentModel.Composition.Hosting.ApplicationCatalog.System#ComponentModel#Composition#Primitives#ICompositionElement#Origin", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ApplicationCatalog.cs#L206C19-L206C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ApplicationCatalog.cs#L206C19-L206C31" } ], "DocsId": "T:System.ComponentModel.Composition.Hosting.ApplicationCatalog", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ApplicationCatalog.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ApplicationCatalog.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.Hosting.AssemblyCatalog.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AssemblyCatalog.cs#L25C9-L79C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AssemblyCatalog.cs#L25C9-L79C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.AssemblyCatalog.#ctor(System.String,System.Reflection.ReflectionContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AssemblyCatalog.cs#L25C9-L137C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AssemblyCatalog.cs#L25C9-L137C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.AssemblyCatalog.#ctor(System.String,System.ComponentModel.Composition.Primitives.ICompositionElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AssemblyCatalog.cs#L25C9-L193C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AssemblyCatalog.cs#L25C9-L193C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.AssemblyCatalog.#ctor(System.String,System.Reflection.ReflectionContext,System.ComponentModel.Composition.Primitives.ICompositionElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AssemblyCatalog.cs#L25C9-L259C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AssemblyCatalog.cs#L25C9-L259C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.AssemblyCatalog.#ctor(System.Reflection.Assembly,System.Reflection.ReflectionContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AssemblyCatalog.cs#L25C9-L292C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AssemblyCatalog.cs#L25C9-L292C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.AssemblyCatalog.#ctor(System.Reflection.Assembly,System.Reflection.ReflectionContext,System.ComponentModel.Composition.Primitives.ICompositionElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AssemblyCatalog.cs#L25C9-L333C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AssemblyCatalog.cs#L25C9-L333C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.AssemblyCatalog.#ctor(System.Reflection.Assembly)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AssemblyCatalog.cs#L25C9-L356C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AssemblyCatalog.cs#L25C9-L356C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.AssemblyCatalog.#ctor(System.Reflection.Assembly,System.ComponentModel.Composition.Primitives.ICompositionElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AssemblyCatalog.cs#L25C9-L387C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AssemblyCatalog.cs#L25C9-L387C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.AssemblyCatalog.GetExports(System.ComponentModel.Composition.Primitives.ImportDefinition)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AssemblyCatalog.cs#L427C13-L427C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AssemblyCatalog.cs#L427C13-L427C56" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.AssemblyCatalog.System#ComponentModel#Composition#Primitives#ICompositionElement#get_DisplayName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AssemblyCatalog.cs#L484C19-L484C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AssemblyCatalog.cs#L484C19-L484C43" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.AssemblyCatalog.System#ComponentModel#Composition#Primitives#ICompositionElement#get_Origin", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AssemblyCatalog.cs#L495C19-L495C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AssemblyCatalog.cs#L495C19-L495C31" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.AssemblyCatalog.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AssemblyCatalog.cs#L506C13-L506C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AssemblyCatalog.cs#L506C13-L506C37" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.AssemblyCatalog.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AssemblyCatalog.cs#L513C17-L525C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AssemblyCatalog.cs#L513C17-L525C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.AssemblyCatalog.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AssemblyCatalog.cs#L529C13-L529C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AssemblyCatalog.cs#L529C13-L529C49" }, { "DocsId": "P:System.ComponentModel.Composition.Hosting.AssemblyCatalog.Assembly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AssemblyCatalog.cs#L472C17-L472C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AssemblyCatalog.cs#L472C17-L472C34" }, { "DocsId": "P:System.ComponentModel.Composition.Hosting.AssemblyCatalog.System#ComponentModel#Composition#Primitives#ICompositionElement#DisplayName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AssemblyCatalog.cs#L484C19-L484C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AssemblyCatalog.cs#L484C19-L484C43" }, { "DocsId": "P:System.ComponentModel.Composition.Hosting.AssemblyCatalog.System#ComponentModel#Composition#Primitives#ICompositionElement#Origin", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AssemblyCatalog.cs#L495C19-L495C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AssemblyCatalog.cs#L495C19-L495C31" } ], "DocsId": "T:System.ComponentModel.Composition.Hosting.AssemblyCatalog", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AssemblyCatalog.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AssemblyCatalog.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.Hosting.AtomicComposition.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AtomicComposition.cs#L47C15-L49C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AtomicComposition.cs#L47C15-L49C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.AtomicComposition.#ctor(System.ComponentModel.Composition.Hosting.AtomicComposition)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AtomicComposition.cs#L51C9-L60C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AtomicComposition.cs#L51C9-L60C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.AtomicComposition.SetValue(System.Object,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AtomicComposition.cs#L64C13-L71C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AtomicComposition.cs#L64C13-L71C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.AtomicComposition.TryGetValue``1(System.Object,``0@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AtomicComposition.cs#L75C13-L75C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AtomicComposition.cs#L75C13-L75C55" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.AtomicComposition.TryGetValue``1(System.Object,System.Boolean,``0@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AtomicComposition.cs#L80C13-L85C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AtomicComposition.cs#L80C13-L85C84" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.AtomicComposition.AddCompleteAction(System.Action)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AtomicComposition.cs#L90C13-L98C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AtomicComposition.cs#L90C13-L98C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.AtomicComposition.AddRevertAction(System.Action)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AtomicComposition.cs#L102C13-L110C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AtomicComposition.cs#L102C13-L110C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.AtomicComposition.Complete", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AtomicComposition.cs#L114C13-L127C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AtomicComposition.cs#L114C13-L127C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.AtomicComposition.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AtomicComposition.cs#L131C13-L133C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AtomicComposition.cs#L131C13-L133C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.AtomicComposition.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AtomicComposition.cs#L137C13-L183C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AtomicComposition.cs#L137C13-L183C10" } ], "DocsId": "T:System.ComponentModel.Composition.Hosting.AtomicComposition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AtomicComposition.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AtomicComposition.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.Hosting.CatalogExportProvider.#ctor(System.ComponentModel.Composition.Primitives.ComposablePartCatalog)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CatalogExportProvider.cs#L63C15-L65C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CatalogExportProvider.cs#L63C15-L65C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.CatalogExportProvider.#ctor(System.ComponentModel.Composition.Primitives.ComposablePartCatalog,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CatalogExportProvider.cs#L68C15-L70C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CatalogExportProvider.cs#L68C15-L70C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.CatalogExportProvider.#ctor(System.ComponentModel.Composition.Primitives.ComposablePartCatalog,System.ComponentModel.Composition.Hosting.CompositionOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CatalogExportProvider.cs#L39C9-L97C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CatalogExportProvider.cs#L39C9-L97C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.CatalogExportProvider.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CatalogExportProvider.cs#L204C13-L206C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CatalogExportProvider.cs#L204C13-L206C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.CatalogExportProvider.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CatalogExportProvider.cs#L214C13-L275C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CatalogExportProvider.cs#L214C13-L275C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.CatalogExportProvider.GetExportsCore(System.ComponentModel.Composition.Primitives.ImportDefinition,System.ComponentModel.Composition.Hosting.AtomicComposition)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CatalogExportProvider.cs#L299C13-L308C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CatalogExportProvider.cs#L299C13-L308C29" }, { "DocsId": "P:System.ComponentModel.Composition.Hosting.CatalogExportProvider.Catalog", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CatalogExportProvider.cs#L115C17-L118C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CatalogExportProvider.cs#L115C17-L118C33" }, { "DocsId": "P:System.ComponentModel.Composition.Hosting.CatalogExportProvider.SourceProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CatalogExportProvider.cs#L154C17-L159C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CatalogExportProvider.cs#L154C17-L159C14" } ], "DocsId": "T:System.ComponentModel.Composition.Hosting.CatalogExportProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CatalogExportProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CatalogExportProvider.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.Hosting.CatalogExtensions.CreateCompositionService(System.ComponentModel.Composition.Primitives.ComposablePartCatalog)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CatalogExtensions.cs#L18C13-L20C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CatalogExtensions.cs#L18C13-L20C66" } ], "DocsId": "T:System.ComponentModel.Composition.Hosting.CatalogExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CatalogExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CatalogExtensions.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.Hosting.ComposablePartCatalogChangeEventArgs.#ctor(System.Collections.Generic.IEnumerable{System.ComponentModel.Composition.Primitives.ComposablePartDefinition},System.Collections.Generic.IEnumerable{System.ComponentModel.Composition.Primitives.ComposablePartDefinition},System.ComponentModel.Composition.Hosting.AtomicComposition)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ComposablePartCatalogChangeEventArgs.cs#L41C9-L50C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ComposablePartCatalogChangeEventArgs.cs#L41C9-L50C10" }, { "DocsId": "P:System.ComponentModel.Composition.Hosting.ComposablePartCatalogChangeEventArgs.AddedDefinitions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ComposablePartCatalogChangeEventArgs.cs#L65C17-L65C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ComposablePartCatalogChangeEventArgs.cs#L65C17-L65C42" }, { "DocsId": "P:System.ComponentModel.Composition.Hosting.ComposablePartCatalogChangeEventArgs.RemovedDefinitions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ComposablePartCatalogChangeEventArgs.cs#L82C17-L82C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ComposablePartCatalogChangeEventArgs.cs#L82C17-L82C44" }, { "DocsId": "P:System.ComponentModel.Composition.Hosting.ComposablePartCatalogChangeEventArgs.AtomicComposition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ComposablePartCatalogChangeEventArgs.cs#L98C55-L98C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ComposablePartCatalogChangeEventArgs.cs#L98C55-L98C59" } ], "DocsId": "T:System.ComponentModel.Composition.Hosting.ComposablePartCatalogChangeEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ComposablePartCatalogChangeEventArgs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ComposablePartCatalogChangeEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.Hosting.ComposablePartExportProvider.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ComposablePartExportProvider.cs#L30C13-L32C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ComposablePartExportProvider.cs#L30C13-L32C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ComposablePartExportProvider.#ctor(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ComposablePartExportProvider.cs#L35C15-L37C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ComposablePartExportProvider.cs#L35C15-L37C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ComposablePartExportProvider.#ctor(System.ComponentModel.Composition.Hosting.CompositionOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ComposablePartExportProvider.cs#L17C9-L48C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ComposablePartExportProvider.cs#L17C9-L48C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ComposablePartExportProvider.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ComposablePartExportProvider.cs#L55C13-L57C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ComposablePartExportProvider.cs#L55C13-L57C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ComposablePartExportProvider.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ComposablePartExportProvider.cs#L65C13-L97C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ComposablePartExportProvider.cs#L65C13-L97C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ComposablePartExportProvider.GetExportsCore(System.ComponentModel.Composition.Primitives.ImportDefinition,System.ComponentModel.Composition.Hosting.AtomicComposition)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ComposablePartExportProvider.cs#L199C13-L228C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ComposablePartExportProvider.cs#L199C13-L228C28" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ComposablePartExportProvider.Compose(System.ComponentModel.Composition.Hosting.CompositionBatch)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ComposablePartExportProvider.cs#L233C13-L313C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ComposablePartExportProvider.cs#L233C13-L313C10" }, { "DocsId": "P:System.ComponentModel.Composition.Hosting.ComposablePartExportProvider.SourceProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ComposablePartExportProvider.cs#L131C17-L133C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ComposablePartExportProvider.cs#L131C17-L133C40" } ], "DocsId": "T:System.ComponentModel.Composition.Hosting.ComposablePartExportProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ComposablePartExportProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ComposablePartExportProvider.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.Hosting.CompositionBatch.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionBatch.cs#L26C13-L28C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionBatch.cs#L26C13-L28C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.CompositionBatch.#ctor(System.Collections.Generic.IEnumerable{System.ComponentModel.Composition.Primitives.ComposablePart},System.Collections.Generic.IEnumerable{System.ComponentModel.Composition.Primitives.ComposablePart})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionBatch.cs#L14C9-L64C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionBatch.cs#L14C9-L64C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.CompositionBatch.AddPart(System.ComponentModel.Composition.Primitives.ComposablePart)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionBatch.cs#L111C13-L122C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionBatch.cs#L111C13-L122C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.CompositionBatch.RemovePart(System.ComponentModel.Composition.Primitives.ComposablePart)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionBatch.cs#L135C13-L146C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionBatch.cs#L135C13-L146C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.CompositionBatch.AddExport(System.ComponentModel.Composition.Primitives.Export)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionBatch.cs#L165C13-L171C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionBatch.cs#L165C13-L171C25" }, { "DocsId": "P:System.ComponentModel.Composition.Hosting.CompositionBatch.PartsToAdd", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionBatch.cs#L74C17-L80C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionBatch.cs#L74C17-L80C14" }, { "DocsId": "P:System.ComponentModel.Composition.Hosting.CompositionBatch.PartsToRemove", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionBatch.cs#L91C17-L97C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionBatch.cs#L91C17-L97C14" } ], "DocsId": "T:System.ComponentModel.Composition.Hosting.CompositionBatch", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionBatch.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionBatch.cs" }, { "Members": [ { "DocsId": "F:System.ComponentModel.Composition.Hosting.CompositionConstants.PartCreationPolicyMetadataName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionConstants.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionConstants.cs" }, { "DocsId": "F:System.ComponentModel.Composition.Hosting.CompositionConstants.ImportSourceMetadataName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionConstants.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionConstants.cs" }, { "DocsId": "F:System.ComponentModel.Composition.Hosting.CompositionConstants.IsGenericPartMetadataName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionConstants.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionConstants.cs" }, { "DocsId": "F:System.ComponentModel.Composition.Hosting.CompositionConstants.GenericContractMetadataName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionConstants.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionConstants.cs" }, { "DocsId": "F:System.ComponentModel.Composition.Hosting.CompositionConstants.GenericParametersMetadataName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionConstants.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionConstants.cs" }, { "DocsId": "F:System.ComponentModel.Composition.Hosting.CompositionConstants.ExportTypeIdentityMetadataName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionConstants.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionConstants.cs" } ], "DocsId": "T:System.ComponentModel.Composition.Hosting.CompositionConstants", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionConstants.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionConstants.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.Hosting.CompositionContainer.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionContainer.cs#L36C15-L38C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionContainer.cs#L36C15-L38C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.CompositionContainer.#ctor(System.ComponentModel.Composition.Hosting.ExportProvider[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionContainer.cs#L54C13-L56C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionContainer.cs#L54C13-L56C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.CompositionContainer.#ctor(System.ComponentModel.Composition.Hosting.CompositionOptions,System.ComponentModel.Composition.Hosting.ExportProvider[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionContainer.cs#L75C13-L77C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionContainer.cs#L75C13-L77C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.CompositionContainer.#ctor(System.ComponentModel.Composition.Primitives.ComposablePartCatalog,System.ComponentModel.Composition.Hosting.ExportProvider[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionContainer.cs#L94C13-L96C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionContainer.cs#L94C13-L96C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.CompositionContainer.#ctor(System.ComponentModel.Composition.Primitives.ComposablePartCatalog,System.Boolean,System.ComponentModel.Composition.Hosting.ExportProvider[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionContainer.cs#L116C15-L118C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionContainer.cs#L116C15-L118C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.CompositionContainer.#ctor(System.ComponentModel.Composition.Primitives.ComposablePartCatalog,System.ComponentModel.Composition.Hosting.CompositionOptions,System.ComponentModel.Composition.Hosting.ExportProvider[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionContainer.cs#L29C9-L227C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionContainer.cs#L29C9-L227C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.CompositionContainer.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionContainer.cs#L298C13-L300C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionContainer.cs#L298C13-L300C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.CompositionContainer.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionContainer.cs#L308C13-L366C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionContainer.cs#L308C13-L366C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.CompositionContainer.Compose(System.ComponentModel.Composition.Hosting.CompositionBatch)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionContainer.cs#L370C13-L374C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionContainer.cs#L370C13-L374C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.CompositionContainer.ReleaseExport(System.ComponentModel.Composition.Primitives.Export)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionContainer.cs#L397C13-L403C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionContainer.cs#L397C13-L403C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.CompositionContainer.ReleaseExport``1(System.Lazy{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionContainer.cs#L426C13-L432C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionContainer.cs#L426C13-L432C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.CompositionContainer.ReleaseExports(System.Collections.Generic.IEnumerable{System.ComponentModel.Composition.Primitives.Export})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionContainer.cs#L447C13-L453C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionContainer.cs#L447C13-L453C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.CompositionContainer.ReleaseExports``1(System.Collections.Generic.IEnumerable{System.Lazy{``0}})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionContainer.cs#L468C13-L474C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionContainer.cs#L468C13-L474C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.CompositionContainer.ReleaseExports``2(System.Collections.Generic.IEnumerable{System.Lazy{``0,``1}})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionContainer.cs#L489C13-L495C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionContainer.cs#L489C13-L495C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.CompositionContainer.SatisfyImportsOnce(System.ComponentModel.Composition.Primitives.ComposablePart)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionContainer.cs#L516C13-L534C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionContainer.cs#L516C13-L534C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.CompositionContainer.GetExportsCore(System.ComponentModel.Composition.Primitives.ImportDefinition,System.ComponentModel.Composition.Hosting.AtomicComposition)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionContainer.cs#L568C13-L598C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionContainer.cs#L568C13-L598C28" }, { "DocsId": "P:System.ComponentModel.Composition.Hosting.CompositionContainer.Catalog", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionContainer.cs#L254C17-L256C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionContainer.cs#L254C17-L256C56" }, { "DocsId": "P:System.ComponentModel.Composition.Hosting.CompositionContainer.Providers", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionContainer.cs#L286C17-L289C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionContainer.cs#L286C17-L289C35" } ], "DocsId": "T:System.ComponentModel.Composition.Hosting.CompositionContainer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionContainer.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionContainer.cs" }, { "Members": [ { "DocsId": "F:System.ComponentModel.Composition.Hosting.CompositionOptions.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionOptions.cs" }, { "DocsId": "F:System.ComponentModel.Composition.Hosting.CompositionOptions.Default", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionOptions.cs" }, { "DocsId": "F:System.ComponentModel.Composition.Hosting.CompositionOptions.DisableSilentRejection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionOptions.cs" }, { "DocsId": "F:System.ComponentModel.Composition.Hosting.CompositionOptions.IsThreadSafe", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionOptions.cs" }, { "DocsId": "F:System.ComponentModel.Composition.Hosting.CompositionOptions.ExportCompositionService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionOptions.cs" } ], "DocsId": "T:System.ComponentModel.Composition.Hosting.CompositionOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionOptions.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.Hosting.CompositionScopeDefinition.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionScopeDefinition.cs#L18C9-L24C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionScopeDefinition.cs#L18C9-L24C51" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.CompositionScopeDefinition.#ctor(System.ComponentModel.Composition.Primitives.ComposablePartCatalog,System.Collections.Generic.IEnumerable{System.ComponentModel.Composition.Hosting.CompositionScopeDefinition})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionScopeDefinition.cs#L18C9-L37C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionScopeDefinition.cs#L18C9-L37C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.CompositionScopeDefinition.#ctor(System.ComponentModel.Composition.Primitives.ComposablePartCatalog,System.Collections.Generic.IEnumerable{System.ComponentModel.Composition.Hosting.CompositionScopeDefinition},System.Collections.Generic.IEnumerable{System.ComponentModel.Composition.Primitives.ExportDefinition})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionScopeDefinition.cs#L18C9-L52C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionScopeDefinition.cs#L18C9-L52C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.CompositionScopeDefinition.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionScopeDefinition.cs#L87C17-L103C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionScopeDefinition.cs#L87C17-L103C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.CompositionScopeDefinition.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionScopeDefinition.cs#L152C13-L152C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionScopeDefinition.cs#L152C13-L152C45" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.CompositionScopeDefinition.GetExports(System.ComponentModel.Composition.Primitives.ImportDefinition)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionScopeDefinition.cs#L181C13-L184C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionScopeDefinition.cs#L181C13-L184C52" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.CompositionScopeDefinition.OnChanged(System.ComponentModel.Composition.Hosting.ComposablePartCatalogChangeEventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionScopeDefinition.cs#L226C13-L227C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionScopeDefinition.cs#L226C13-L227C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.CompositionScopeDefinition.OnChanging(System.ComponentModel.Composition.Hosting.ComposablePartCatalogChangeEventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionScopeDefinition.cs#L235C13-L236C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionScopeDefinition.cs#L235C13-L236C10" }, { "DocsId": "E:System.ComponentModel.Composition.Hosting.CompositionScopeDefinition.Changed", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionScopeDefinition.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionScopeDefinition.cs" }, { "DocsId": "E:System.ComponentModel.Composition.Hosting.CompositionScopeDefinition.Changing", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionScopeDefinition.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionScopeDefinition.cs" }, { "DocsId": "P:System.ComponentModel.Composition.Hosting.CompositionScopeDefinition.Children", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionScopeDefinition.cs#L113C17-L115C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionScopeDefinition.cs#L113C17-L115C34" }, { "DocsId": "P:System.ComponentModel.Composition.Hosting.CompositionScopeDefinition.PublicSurface", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionScopeDefinition.cs#L135C17-L141C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionScopeDefinition.cs#L135C17-L141C39" } ], "DocsId": "T:System.ComponentModel.Composition.Hosting.CompositionScopeDefinition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionScopeDefinition.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionScopeDefinition.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.Hosting.CompositionService.SatisfyImportsOnce(System.ComponentModel.Composition.Primitives.ComposablePart)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionService.cs#L49C13-L55C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionService.cs#L49C13-L55C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.CompositionService.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionService.cs#L59C13-L70C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionService.cs#L59C13-L70C10" } ], "DocsId": "T:System.ComponentModel.Composition.Hosting.CompositionService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionService.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.Hosting.DirectoryCatalog.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs#L73C15-L75C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs#L73C15-L75C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.DirectoryCatalog.#ctor(System.String,System.Reflection.ReflectionContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs#L112C15-L114C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs#L112C15-L114C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.DirectoryCatalog.#ctor(System.String,System.ComponentModel.Composition.Primitives.ICompositionElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs#L150C15-L152C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs#L150C15-L152C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.DirectoryCatalog.#ctor(System.String,System.Reflection.ReflectionContext,System.ComponentModel.Composition.Primitives.ICompositionElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs#L193C15-L195C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs#L193C15-L195C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.DirectoryCatalog.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs#L31C9-L237C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs#L31C9-L237C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.DirectoryCatalog.#ctor(System.String,System.String,System.ComponentModel.Composition.Primitives.ICompositionElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs#L31C9-L282C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs#L31C9-L282C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.DirectoryCatalog.#ctor(System.String,System.String,System.Reflection.ReflectionContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs#L31C9-L332C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs#L31C9-L332C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.DirectoryCatalog.#ctor(System.String,System.String,System.Reflection.ReflectionContext,System.ComponentModel.Composition.Primitives.ICompositionElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs#L31C9-L387C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs#L31C9-L387C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.DirectoryCatalog.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs#L459C17-L496C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs#L459C17-L496C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.DirectoryCatalog.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs#L500C13-L500C127" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs#L500C13-L500C127" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.DirectoryCatalog.GetExports(System.ComponentModel.Composition.Primitives.ImportDefinition)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs#L524C13-L528C93" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs#L16707566C0-L528C93" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.DirectoryCatalog.OnChanged(System.ComponentModel.Composition.Hosting.ComposablePartCatalogChangeEventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs#L539C13-L540C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs#L539C13-L540C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.DirectoryCatalog.OnChanging(System.ComponentModel.Composition.Hosting.ComposablePartCatalogChangeEventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs#L550C13-L551C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs#L550C13-L551C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.DirectoryCatalog.Refresh", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs#L568C13-L648C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs#L568C13-L648C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.DirectoryCatalog.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs#L658C13-L658C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs#L658C13-L658C37" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.DirectoryCatalog.System#ComponentModel#Composition#Primitives#ICompositionElement#get_DisplayName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs#L790C19-L790C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs#L790C19-L790C43" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.DirectoryCatalog.System#ComponentModel#Composition#Primitives#ICompositionElement#get_Origin", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs#L801C19-L801C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs#L801C19-L801C31" }, { "DocsId": "E:System.ComponentModel.Composition.Hosting.DirectoryCatalog.Changed", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs" }, { "DocsId": "E:System.ComponentModel.Composition.Hosting.DirectoryCatalog.Changing", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs" }, { "DocsId": "P:System.ComponentModel.Composition.Hosting.DirectoryCatalog.FullPath", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs#L398C17-L398C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs#L398C17-L398C34" }, { "DocsId": "P:System.ComponentModel.Composition.Hosting.DirectoryCatalog.LoadedFiles", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs#L409C17-L414C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs#L409C17-L414C14" }, { "DocsId": "P:System.ComponentModel.Composition.Hosting.DirectoryCatalog.Path", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs#L426C17-L426C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs#L426C17-L426C30" }, { "DocsId": "P:System.ComponentModel.Composition.Hosting.DirectoryCatalog.SearchPattern", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs#L437C17-L437C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs#L437C17-L437C39" }, { "DocsId": "P:System.ComponentModel.Composition.Hosting.DirectoryCatalog.System#ComponentModel#Composition#Primitives#ICompositionElement#DisplayName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs#L790C19-L790C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs#L790C19-L790C43" }, { "DocsId": "P:System.ComponentModel.Composition.Hosting.DirectoryCatalog.System#ComponentModel#Composition#Primitives#ICompositionElement#Origin", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs#L801C19-L801C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs#L801C19-L801C31" } ], "DocsId": "T:System.ComponentModel.Composition.Hosting.DirectoryCatalog", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.Hosting.ExportProvider.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.cs#L21C9-L23C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.cs#L21C9-L23C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ExportProvider.GetExports(System.ComponentModel.Composition.Primitives.ImportDefinition)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.cs#L65C13-L65C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.cs#L65C13-L65C49" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ExportProvider.GetExports(System.ComponentModel.Composition.Primitives.ImportDefinition,System.ComponentModel.Composition.Hosting.AtomicComposition)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.cs#L99C13-L114C139" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.cs#L99C13-L114C139" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ExportProvider.TryGetExports(System.ComponentModel.Composition.Primitives.ImportDefinition,System.ComponentModel.Composition.Hosting.AtomicComposition,System.Collections.Generic.IEnumerable{System.ComponentModel.Composition.Primitives.Export}@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.cs#L146C13-L149C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.cs#L146C13-L149C67" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ExportProvider.GetExportsCore(System.ComponentModel.Composition.Primitives.ImportDefinition,System.ComponentModel.Composition.Hosting.AtomicComposition)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.cs" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ExportProvider.OnExportsChanged(System.ComponentModel.Composition.Hosting.ExportsChangeEventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.cs#L184C13-L190C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.cs#L184C13-L190C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ExportProvider.OnExportsChanging(System.ComponentModel.Composition.Hosting.ExportsChangeEventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.cs#L200C13-L206C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.cs#L200C13-L206C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ExportProvider.GetExport``1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.GetExportOverrides.cs#L61C13-L61C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.GetExportOverrides.cs#L61C13-L61C48" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ExportProvider.GetExport``1(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.GetExportOverrides.cs#L112C13-L112C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.GetExportOverrides.cs#L112C13-L112C51" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ExportProvider.GetExport``2", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.GetExportOverrides.cs#L162C13-L162C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.GetExportOverrides.cs#L162C13-L162C63" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ExportProvider.GetExport``2(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.GetExportOverrides.cs#L213C13-L213C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.GetExportOverrides.cs#L213C13-L213C66" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ExportProvider.GetExports(System.Type,System.Type,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.GetExportOverrides.cs#L263C13-L272C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.GetExportOverrides.cs#L263C13-L272C27" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ExportProvider.GetExports``1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.GetExportOverrides.cs#L309C13-L309C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.GetExportOverrides.cs#L309C13-L309C49" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ExportProvider.GetExports``1(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.GetExportOverrides.cs#L350C13-L350C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.GetExportOverrides.cs#L350C13-L350C52" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ExportProvider.GetExports``2", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.GetExportOverrides.cs#L388C13-L388C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.GetExportOverrides.cs#L388C13-L388C64" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ExportProvider.GetExports``2(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.GetExportOverrides.cs#L430C13-L430C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.GetExportOverrides.cs#L430C13-L430C67" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ExportProvider.GetExportedValue``1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.GetExportOverrides.cs#L478C13-L478C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.GetExportOverrides.cs#L478C13-L478C55" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ExportProvider.GetExportedValue``1(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.GetExportOverrides.cs#L528C13-L528C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.GetExportOverrides.cs#L528C13-L528C88" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ExportProvider.GetExportedValueOrDefault``1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.GetExportOverrides.cs#L578C13-L578C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.GetExportOverrides.cs#L578C13-L578C64" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ExportProvider.GetExportedValueOrDefault``1(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.GetExportOverrides.cs#L628C13-L628C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.GetExportOverrides.cs#L628C13-L628C87" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ExportProvider.GetExportedValues``1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.GetExportOverrides.cs#L667C13-L667C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.GetExportOverrides.cs#L667C13-L667C56" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ExportProvider.GetExportedValues``1(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.GetExportOverrides.cs#L708C13-L708C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.GetExportOverrides.cs#L708C13-L708C59" }, { "DocsId": "E:System.ComponentModel.Composition.Hosting.ExportProvider.ExportsChanged", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.cs" }, { "DocsId": "E:System.ComponentModel.Composition.Hosting.ExportProvider.ExportsChanging", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.cs" } ], "DocsId": "T:System.ComponentModel.Composition.Hosting.ExportProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.Hosting.ExportsChangeEventArgs.#ctor(System.Collections.Generic.IEnumerable{System.ComponentModel.Composition.Primitives.ExportDefinition},System.Collections.Generic.IEnumerable{System.ComponentModel.Composition.Primitives.ExportDefinition},System.ComponentModel.Composition.Hosting.AtomicComposition)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportsChangeEventArgs.cs#L44C9-L53C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportsChangeEventArgs.cs#L44C9-L53C10" }, { "DocsId": "P:System.ComponentModel.Composition.Hosting.ExportsChangeEventArgs.AddedExports", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportsChangeEventArgs.cs#L68C17-L68C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportsChangeEventArgs.cs#L68C17-L68C38" }, { "DocsId": "P:System.ComponentModel.Composition.Hosting.ExportsChangeEventArgs.RemovedExports", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportsChangeEventArgs.cs#L85C17-L85C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportsChangeEventArgs.cs#L85C17-L85C40" }, { "DocsId": "P:System.ComponentModel.Composition.Hosting.ExportsChangeEventArgs.ChangedContractNames", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportsChangeEventArgs.cs#L97C13-L101C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportsChangeEventArgs.cs#L97C13-L101C49" }, { "DocsId": "P:System.ComponentModel.Composition.Hosting.ExportsChangeEventArgs.AtomicComposition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportsChangeEventArgs.cs#L116C55-L116C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportsChangeEventArgs.cs#L116C55-L116C59" } ], "DocsId": "T:System.ComponentModel.Composition.Hosting.ExportsChangeEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportsChangeEventArgs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportsChangeEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.Hosting.FilteredCatalog.#ctor(System.ComponentModel.Composition.Primitives.ComposablePartCatalog,System.Func{System.ComponentModel.Composition.Primitives.ComposablePartDefinition,System.Boolean})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/FilteredCatalog.cs#L28C13-L30C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/FilteredCatalog.cs#L28C13-L30C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.FilteredCatalog.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/FilteredCatalog.cs#L56C17-L88C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/FilteredCatalog.cs#L56C17-L88C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.FilteredCatalog.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/FilteredCatalog.cs#L92C13-L92C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/FilteredCatalog.cs#L92C13-L92C65" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.FilteredCatalog.GetExports(System.ComponentModel.Composition.Primitives.ImportDefinition)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/FilteredCatalog.cs#L151C13-L163C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/FilteredCatalog.cs#L151C13-L163C28" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.FilteredCatalog.OnChanged(System.ComponentModel.Composition.Hosting.ComposablePartCatalogChangeEventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/FilteredCatalog.cs#L182C13-L183C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/FilteredCatalog.cs#L182C13-L183C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.FilteredCatalog.OnChanging(System.ComponentModel.Composition.Hosting.ComposablePartCatalogChangeEventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/FilteredCatalog.cs#L191C13-L192C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/FilteredCatalog.cs#L191C13-L192C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.FilteredCatalog.IncludeDependencies", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/FilteredCatalog.Traversal.cs#L19C13-L19C92" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/FilteredCatalog.Traversal.cs#L19C13-L19C92" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.FilteredCatalog.IncludeDependencies(System.Func{System.ComponentModel.Composition.Primitives.ImportDefinition,System.Boolean})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/FilteredCatalog.Traversal.cs#L30C13-L33C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/FilteredCatalog.Traversal.cs#L30C13-L33C76" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.FilteredCatalog.IncludeDependents", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/FilteredCatalog.Traversal.cs#L42C13-L42C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/FilteredCatalog.Traversal.cs#L42C13-L42C90" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.FilteredCatalog.IncludeDependents(System.Func{System.ComponentModel.Composition.Primitives.ImportDefinition,System.Boolean})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/FilteredCatalog.Traversal.cs#L53C13-L56C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/FilteredCatalog.Traversal.cs#L53C13-L56C74" }, { "DocsId": "E:System.ComponentModel.Composition.Hosting.FilteredCatalog.Changed", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/FilteredCatalog.IComposablePartCatalogTraversal.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/FilteredCatalog.IComposablePartCatalogTraversal.cs" }, { "DocsId": "E:System.ComponentModel.Composition.Hosting.FilteredCatalog.Changing", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/FilteredCatalog.IComposablePartCatalogTraversal.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/FilteredCatalog.IComposablePartCatalogTraversal.cs" }, { "DocsId": "P:System.ComponentModel.Composition.Hosting.FilteredCatalog.Complement", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/FilteredCatalog.cs#L103C17-L121C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/FilteredCatalog.cs#L103C17-L121C36" } ], "DocsId": "T:System.ComponentModel.Composition.Hosting.FilteredCatalog", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/FilteredCatalog.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/FilteredCatalog.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.Hosting.ImportEngine.#ctor(System.ComponentModel.Composition.Hosting.ExportProvider)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ImportEngine.cs#L38C15-L40C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ImportEngine.cs#L38C15-L40C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ImportEngine.#ctor(System.ComponentModel.Composition.Hosting.ExportProvider,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ImportEngine.cs#L43C15-L45C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ImportEngine.cs#L43C15-L45C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ImportEngine.#ctor(System.ComponentModel.Composition.Hosting.ExportProvider,System.ComponentModel.Composition.Hosting.CompositionOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ImportEngine.cs#L24C9-L55C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ImportEngine.cs#L24C9-L55C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ImportEngine.PreviewImports(System.ComponentModel.Composition.Primitives.ComposablePart,System.ComponentModel.Composition.Hosting.AtomicComposition)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ImportEngine.cs#L85C13-L134C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ImportEngine.cs#L16707566C0-L134C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ImportEngine.SatisfyImports(System.ComponentModel.Composition.Primitives.ComposablePart)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ImportEngine.cs#L158C13-L174C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ImportEngine.cs#L158C13-L174C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ImportEngine.SatisfyImportsOnce(System.ComponentModel.Composition.Primitives.ComposablePart)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ImportEngine.cs#L195C13-L211C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ImportEngine.cs#L195C13-L211C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ImportEngine.ReleaseImports(System.ComponentModel.Composition.Primitives.ComposablePart,System.ComponentModel.Composition.Hosting.AtomicComposition)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ImportEngine.cs#L229C13-L241C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ImportEngine.cs#L229C13-L241C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ImportEngine.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ImportEngine.cs#L248C13-L250C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ImportEngine.cs#L248C13-L250C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ImportEngine.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ImportEngine.cs#L258C13-L288C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ImportEngine.cs#L258C13-L288C10" } ], "DocsId": "T:System.ComponentModel.Composition.Hosting.ImportEngine", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ImportEngine.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ImportEngine.cs" }, { "Members": [ { "DocsId": "E:System.ComponentModel.Composition.Hosting.INotifyComposablePartCatalogChanged.Changed", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/INotifyComposablePartCatalogChanged.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/INotifyComposablePartCatalogChanged.cs" }, { "DocsId": "E:System.ComponentModel.Composition.Hosting.INotifyComposablePartCatalogChanged.Changing", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/INotifyComposablePartCatalogChanged.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/INotifyComposablePartCatalogChanged.cs" } ], "DocsId": "T:System.ComponentModel.Composition.Hosting.INotifyComposablePartCatalogChanged", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/INotifyComposablePartCatalogChanged.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/INotifyComposablePartCatalogChanged.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.Hosting.ScopingExtensions.Exports(System.ComponentModel.Composition.Primitives.ComposablePartDefinition,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ScopingExtensions.cs#L21C13-L32C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ScopingExtensions.cs#L21C13-L32C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ScopingExtensions.Imports(System.ComponentModel.Composition.Primitives.ComposablePartDefinition,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ScopingExtensions.cs#L44C13-L56C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ScopingExtensions.cs#L44C13-L56C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ScopingExtensions.Imports(System.ComponentModel.Composition.Primitives.ComposablePartDefinition,System.String,System.ComponentModel.Composition.Primitives.ImportCardinality)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ScopingExtensions.cs#L69C13-L81C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ScopingExtensions.cs#L69C13-L81C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ScopingExtensions.ContainsPartMetadataWithKey(System.ComponentModel.Composition.Primitives.ComposablePartDefinition,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ScopingExtensions.cs#L93C13-L96C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ScopingExtensions.cs#L93C13-L96C51" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ScopingExtensions.ContainsPartMetadata``1(System.ComponentModel.Composition.Primitives.ComposablePartDefinition,System.String,``0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ScopingExtensions.cs#L111C13-L126C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ScopingExtensions.cs#L111C13-L126C26" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ScopingExtensions.Filter(System.ComponentModel.Composition.Primitives.ComposablePartCatalog,System.Func{System.ComponentModel.Composition.Primitives.ComposablePartDefinition,System.Boolean})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ScopingExtensions.cs#L137C13-L140C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ScopingExtensions.cs#L137C13-L140C57" } ], "DocsId": "T:System.ComponentModel.Composition.Hosting.ScopingExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ScopingExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ScopingExtensions.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.Hosting.TypeCatalog.#ctor(System.Type[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/TypeCatalog.cs#L52C51-L54C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/TypeCatalog.cs#L52C51-L54C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.TypeCatalog.#ctor(System.Collections.Generic.IEnumerable{System.Type})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/TypeCatalog.cs#L27C9-L82C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/TypeCatalog.cs#L27C9-L82C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.TypeCatalog.#ctor(System.Collections.Generic.IEnumerable{System.Type},System.ComponentModel.Composition.Primitives.ICompositionElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/TypeCatalog.cs#L27C9-L110C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/TypeCatalog.cs#L27C9-L110C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.TypeCatalog.#ctor(System.Collections.Generic.IEnumerable{System.Type},System.Reflection.ReflectionContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/TypeCatalog.cs#L27C9-L139C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/TypeCatalog.cs#L27C9-L139C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.TypeCatalog.#ctor(System.Collections.Generic.IEnumerable{System.Type},System.Reflection.ReflectionContext,System.ComponentModel.Composition.Primitives.ICompositionElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/TypeCatalog.cs#L27C9-L172C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/TypeCatalog.cs#L27C9-L172C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.TypeCatalog.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/TypeCatalog.cs#L225C13-L226C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/TypeCatalog.cs#L225C13-L226C50" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.TypeCatalog.System#ComponentModel#Composition#Primitives#ICompositionElement#get_DisplayName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/TypeCatalog.cs#L237C19-L237C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/TypeCatalog.cs#L237C19-L237C43" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.TypeCatalog.System#ComponentModel#Composition#Primitives#ICompositionElement#get_Origin", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/TypeCatalog.cs#L248C19-L248C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/TypeCatalog.cs#L248C19-L248C31" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.TypeCatalog.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/TypeCatalog.cs#L344C13-L344C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/TypeCatalog.cs#L344C13-L344C37" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.TypeCatalog.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/TypeCatalog.cs#L349C13-L355C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/TypeCatalog.cs#L349C13-L355C10" }, { "DocsId": "P:System.ComponentModel.Composition.Hosting.TypeCatalog.System#ComponentModel#Composition#Primitives#ICompositionElement#DisplayName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/TypeCatalog.cs#L237C19-L237C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/TypeCatalog.cs#L237C19-L237C43" }, { "DocsId": "P:System.ComponentModel.Composition.Hosting.TypeCatalog.System#ComponentModel#Composition#Primitives#ICompositionElement#Origin", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/TypeCatalog.cs#L248C19-L248C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/TypeCatalog.cs#L248C19-L248C31" } ], "DocsId": "T:System.ComponentModel.Composition.Hosting.TypeCatalog", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/TypeCatalog.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/TypeCatalog.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/System.Composition.AttributedModel.json b/xml/SourceLinkInformation/net-8.0/System.Composition.AttributedModel.json index e7ab924f87e..6a42ce67c68 100644 --- a/xml/SourceLinkInformation/net-8.0/System.Composition.AttributedModel.json +++ b/xml/SourceLinkInformation/net-8.0/System.Composition.AttributedModel.json @@ -1,221 +1,220 @@ { "Assembly": "System.Composition.AttributedModel", - "GUID": "9CBA1D9756DA4151B4C2D32E193E55DDFFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "9FDB99939C55436E80A28C13C5042941FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:System.Composition.ExportAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.AttributedModel/src/System/Composition/ExportAttribute.cs#L19C36-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.AttributedModel/src/System/Composition/ExportAttribute.cs#L19C36-L21C10" }, { "DocsId": "M:System.Composition.ExportAttribute.#ctor(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.AttributedModel/src/System/Composition/ExportAttribute.cs#L33C53-L35C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.AttributedModel/src/System/Composition/ExportAttribute.cs#L33C53-L35C10" }, { "DocsId": "M:System.Composition.ExportAttribute.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.AttributedModel/src/System/Composition/ExportAttribute.cs#L46C55-L48C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.AttributedModel/src/System/Composition/ExportAttribute.cs#L46C55-L48C10" }, { "DocsId": "M:System.Composition.ExportAttribute.#ctor(System.String,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.AttributedModel/src/System/Composition/ExportAttribute.cs#L64C9-L68C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.AttributedModel/src/System/Composition/ExportAttribute.cs#L64C9-L68C10" }, { "DocsId": "P:System.Composition.ExportAttribute.ContractName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.AttributedModel/src/System/Composition/ExportAttribute.cs#L77C38-L77C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.AttributedModel/src/System/Composition/ExportAttribute.cs#L77C38-L77C42" }, { "DocsId": "P:System.Composition.ExportAttribute.ContractType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.AttributedModel/src/System/Composition/ExportAttribute.cs#L87C36-L87C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.AttributedModel/src/System/Composition/ExportAttribute.cs#L87C36-L87C40" } ], "DocsId": "T:System.Composition.ExportAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.AttributedModel/src/System/Composition/ExportAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.AttributedModel/src/System/Composition/ExportAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Composition.ExportMetadataAttribute.#ctor(System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.AttributedModel/src/System/Composition/ExportMetadataAttribute.cs#L27C9-L31C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.AttributedModel/src/System/Composition/ExportMetadataAttribute.cs#L27C9-L31C10" }, { "DocsId": "P:System.Composition.ExportMetadataAttribute.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.AttributedModel/src/System/Composition/ExportMetadataAttribute.cs#L39C30-L39C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.AttributedModel/src/System/Composition/ExportMetadataAttribute.cs#L39C30-L39C34" }, { "DocsId": "P:System.Composition.ExportMetadataAttribute.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.AttributedModel/src/System/Composition/ExportMetadataAttribute.cs#L47C31-L47C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.AttributedModel/src/System/Composition/ExportMetadataAttribute.cs#L47C31-L47C35" } ], "DocsId": "T:System.Composition.ExportMetadataAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.AttributedModel/src/System/Composition/ExportMetadataAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.AttributedModel/src/System/Composition/ExportMetadataAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Composition.ImportAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.AttributedModel/src/System/Composition/ImportAttribute.cs#L19C36-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.AttributedModel/src/System/Composition/ImportAttribute.cs#L19C36-L21C10" }, { "DocsId": "M:System.Composition.ImportAttribute.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.AttributedModel/src/System/Composition/ImportAttribute.cs#L31C9-L34C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.AttributedModel/src/System/Composition/ImportAttribute.cs#L31C9-L34C10" }, { "DocsId": "P:System.Composition.ImportAttribute.ContractName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.AttributedModel/src/System/Composition/ImportAttribute.cs#L43C38-L43C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.AttributedModel/src/System/Composition/ImportAttribute.cs#L43C38-L43C42" }, { "DocsId": "P:System.Composition.ImportAttribute.AllowDefault", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.AttributedModel/src/System/Composition/ImportAttribute.cs#L50C36-L50C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.AttributedModel/src/System/Composition/ImportAttribute.cs#L50C36-L50C40" } ], "DocsId": "T:System.Composition.ImportAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.AttributedModel/src/System/Composition/ImportAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.AttributedModel/src/System/Composition/ImportAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Composition.ImportingConstructorAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.AttributedModel/src/System/Composition/ImportingConstructorAttribute.cs#L20C9-L22C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.AttributedModel/src/System/Composition/ImportingConstructorAttribute.cs#L20C9-L22C10" } ], "DocsId": "T:System.Composition.ImportingConstructorAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.AttributedModel/src/System/Composition/ImportingConstructorAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.AttributedModel/src/System/Composition/ImportingConstructorAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Composition.ImportManyAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.AttributedModel/src/System/Composition/ImportManyAttribute.cs#L19C40-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.AttributedModel/src/System/Composition/ImportManyAttribute.cs#L19C40-L21C10" }, { "DocsId": "M:System.Composition.ImportManyAttribute.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.AttributedModel/src/System/Composition/ImportManyAttribute.cs#L31C9-L34C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.AttributedModel/src/System/Composition/ImportManyAttribute.cs#L31C9-L34C10" }, { "DocsId": "P:System.Composition.ImportManyAttribute.ContractName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.AttributedModel/src/System/Composition/ImportManyAttribute.cs#L43C38-L43C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.AttributedModel/src/System/Composition/ImportManyAttribute.cs#L43C38-L43C42" } ], "DocsId": "T:System.Composition.ImportManyAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.AttributedModel/src/System/Composition/ImportManyAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.AttributedModel/src/System/Composition/ImportManyAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Composition.ImportMetadataConstraintAttribute.#ctor(System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.AttributedModel/src/System/Composition/ImportMetadataConstraintAttribute.cs#L17C9-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.AttributedModel/src/System/Composition/ImportMetadataConstraintAttribute.cs#L17C9-L21C10" }, { "DocsId": "P:System.Composition.ImportMetadataConstraintAttribute.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.AttributedModel/src/System/Composition/ImportMetadataConstraintAttribute.cs#L26C30-L26C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.AttributedModel/src/System/Composition/ImportMetadataConstraintAttribute.cs#L26C30-L26C34" }, { "DocsId": "P:System.Composition.ImportMetadataConstraintAttribute.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.AttributedModel/src/System/Composition/ImportMetadataConstraintAttribute.cs#L31C31-L31C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.AttributedModel/src/System/Composition/ImportMetadataConstraintAttribute.cs#L31C31-L31C35" } ], "DocsId": "T:System.Composition.ImportMetadataConstraintAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.AttributedModel/src/System/Composition/ImportMetadataConstraintAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.AttributedModel/src/System/Composition/ImportMetadataConstraintAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Composition.MetadataAttributeAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.AttributedModel/src/System/Composition/MetadataAttributeAttribute.cs#L17C9-L19C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.AttributedModel/src/System/Composition/MetadataAttributeAttribute.cs#L17C9-L19C10" } ], "DocsId": "T:System.Composition.MetadataAttributeAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.AttributedModel/src/System/Composition/MetadataAttributeAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.AttributedModel/src/System/Composition/MetadataAttributeAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Composition.OnImportsSatisfiedAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.AttributedModel/src/System/Composition/OnImportsSatisfiedAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.AttributedModel/src/System/Composition/OnImportsSatisfiedAttribute.cs" } ], "DocsId": "T:System.Composition.OnImportsSatisfiedAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.AttributedModel/src/System/Composition/OnImportsSatisfiedAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.AttributedModel/src/System/Composition/OnImportsSatisfiedAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Composition.PartMetadataAttribute.#ctor(System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.AttributedModel/src/System/Composition/PartMetadataAttribute.cs#L24C9-L28C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.AttributedModel/src/System/Composition/PartMetadataAttribute.cs#L24C9-L28C10" }, { "DocsId": "P:System.Composition.PartMetadataAttribute.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.AttributedModel/src/System/Composition/PartMetadataAttribute.cs#L36C30-L36C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.AttributedModel/src/System/Composition/PartMetadataAttribute.cs#L36C30-L36C34" }, { "DocsId": "P:System.Composition.PartMetadataAttribute.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.AttributedModel/src/System/Composition/PartMetadataAttribute.cs#L44C31-L44C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.AttributedModel/src/System/Composition/PartMetadataAttribute.cs#L44C31-L44C35" } ], "DocsId": "T:System.Composition.PartMetadataAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.AttributedModel/src/System/Composition/PartMetadataAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.AttributedModel/src/System/Composition/PartMetadataAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Composition.PartNotDiscoverableAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.AttributedModel/src/System/Composition/PartNotDiscoverableAttribute.cs#L15C9-L17C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.AttributedModel/src/System/Composition/PartNotDiscoverableAttribute.cs#L15C9-L17C10" } ], "DocsId": "T:System.Composition.PartNotDiscoverableAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.AttributedModel/src/System/Composition/PartNotDiscoverableAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.AttributedModel/src/System/Composition/PartNotDiscoverableAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Composition.SharedAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.AttributedModel/src/System/Composition/SharedAttribute.cs#L23C36-L25C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.AttributedModel/src/System/Composition/SharedAttribute.cs#L23C36-L25C10" }, { "DocsId": "M:System.Composition.SharedAttribute.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.AttributedModel/src/System/Composition/SharedAttribute.cs#L32C62-L34C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.AttributedModel/src/System/Composition/SharedAttribute.cs#L32C62-L34C10" }, { "DocsId": "P:System.Composition.SharedAttribute.SharingBoundary", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.AttributedModel/src/System/Composition/SharedAttribute.cs#L39C42-L39C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.AttributedModel/src/System/Composition/SharedAttribute.cs#L39C42-L39C60" } ], "DocsId": "T:System.Composition.SharedAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.AttributedModel/src/System/Composition/SharedAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.AttributedModel/src/System/Composition/SharedAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Composition.SharingBoundaryAttribute.#ctor(System.String[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.AttributedModel/src/System/Composition/SharingBoundaryAttribute.cs#L30C9-L33C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.AttributedModel/src/System/Composition/SharingBoundaryAttribute.cs#L30C9-L33C10" }, { "DocsId": "P:System.Composition.SharingBoundaryAttribute.SharingBoundaryNames", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.AttributedModel/src/System/Composition/SharingBoundaryAttribute.cs#L38C67-L38C106" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.AttributedModel/src/System/Composition/SharingBoundaryAttribute.cs#L38C67-L38C106" } ], "DocsId": "T:System.Composition.SharingBoundaryAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.AttributedModel/src/System/Composition/SharingBoundaryAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.AttributedModel/src/System/Composition/SharingBoundaryAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Composition.Convention.AttributedModelProvider.GetCustomAttributes(System.Type,System.Reflection.MemberInfo)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.AttributedModel/src/System/Composition/Convention/AttributedModelProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.AttributedModel/src/System/Composition/Convention/AttributedModelProvider.cs" }, { "DocsId": "M:System.Composition.Convention.AttributedModelProvider.GetCustomAttributes(System.Type,System.Reflection.ParameterInfo)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.AttributedModel/src/System/Composition/Convention/AttributedModelProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.AttributedModel/src/System/Composition/Convention/AttributedModelProvider.cs" }, { "DocsId": "M:System.Composition.Convention.AttributedModelProvider.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.AttributedModel/src/System/Composition/Convention/AttributedModelProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.AttributedModel/src/System/Composition/Convention/AttributedModelProvider.cs" } ], "DocsId": "T:System.Composition.Convention.AttributedModelProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.AttributedModel/src/System/Composition/Convention/AttributedModelProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.AttributedModel/src/System/Composition/Convention/AttributedModelProvider.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/System.Composition.Convention.json b/xml/SourceLinkInformation/net-8.0/System.Composition.Convention.json index 9c8e353a638..e92b8f6fe00 100644 --- a/xml/SourceLinkInformation/net-8.0/System.Composition.Convention.json +++ b/xml/SourceLinkInformation/net-8.0/System.Composition.Convention.json @@ -1,267 +1,266 @@ { "Assembly": "System.Composition.Convention", - "GUID": "09088C7979064381A731FFC8E99FFDA9FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "2F865CB9C1674D5C9B4C23A40535769AFFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:System.Composition.Convention.ConventionBuilder.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ConventionBuilder.cs#L16C9-L27C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ConventionBuilder.cs#L16C9-L27C10" }, { "DocsId": "M:System.Composition.Convention.ConventionBuilder.ForTypesDerivedFrom``1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ConventionBuilder.cs#L37C13-L39C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ConventionBuilder.cs#L37C13-L39C32" }, { "DocsId": "M:System.Composition.Convention.ConventionBuilder.ForTypesDerivedFrom(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ConventionBuilder.cs#L50C13-L57C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ConventionBuilder.cs#L16707566C0-L57C32" }, { "DocsId": "M:System.Composition.Convention.ConventionBuilder.ForType``1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ConventionBuilder.cs#L67C13-L69C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ConventionBuilder.cs#L67C13-L69C32" }, { "DocsId": "M:System.Composition.Convention.ConventionBuilder.ForType(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ConventionBuilder.cs#L79C13-L86C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ConventionBuilder.cs#L16707566C0-L86C32" }, { "DocsId": "M:System.Composition.Convention.ConventionBuilder.ForTypesMatching``1(System.Predicate{System.Type})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ConventionBuilder.cs#L98C13-L105C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ConventionBuilder.cs#L98C13-L105C32" }, { "DocsId": "M:System.Composition.Convention.ConventionBuilder.ForTypesMatching(System.Predicate{System.Type})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ConventionBuilder.cs#L116C13-L123C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ConventionBuilder.cs#L116C13-L123C32" }, { "DocsId": "M:System.Composition.Convention.ConventionBuilder.GetCustomAttributes(System.Type,System.Reflection.MemberInfo)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ConventionBuilder.cs#L161C13-L244C110" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ConventionBuilder.cs#L161C13-L244C110" }, { "DocsId": "M:System.Composition.Convention.ConventionBuilder.GetCustomAttributes(System.Type,System.Reflection.ParameterInfo)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ConventionBuilder.cs#L301C13-L308C96" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ConventionBuilder.cs#L301C13-L308C96" } ], "DocsId": "T:System.Composition.Convention.ConventionBuilder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ConventionBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ConventionBuilder.cs" }, { "Members": [ { "DocsId": "M:System.Composition.Convention.ExportConventionBuilder.AsContractType``1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ExportConventionBuilder.cs#L33C13-L33C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ExportConventionBuilder.cs#L33C13-L33C46" }, { "DocsId": "M:System.Composition.Convention.ExportConventionBuilder.AsContractType(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ExportConventionBuilder.cs#L43C13-L49C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ExportConventionBuilder.cs#L43C13-L49C25" }, { "DocsId": "M:System.Composition.Convention.ExportConventionBuilder.AsContractName(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ExportConventionBuilder.cs#L59C13-L69C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ExportConventionBuilder.cs#L59C13-L69C25" }, { "DocsId": "M:System.Composition.Convention.ExportConventionBuilder.AsContractName(System.Func{System.Type,System.String})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ExportConventionBuilder.cs#L79C13-L85C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ExportConventionBuilder.cs#L79C13-L85C25" }, { "DocsId": "M:System.Composition.Convention.ExportConventionBuilder.AddMetadata(System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ExportConventionBuilder.cs#L96C13-L108C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ExportConventionBuilder.cs#L96C13-L108C25" }, { "DocsId": "M:System.Composition.Convention.ExportConventionBuilder.AddMetadata(System.String,System.Func{System.Type,System.Object})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ExportConventionBuilder.cs#L119C13-L135C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ExportConventionBuilder.cs#L119C13-L135C25" } ], "DocsId": "T:System.Composition.Convention.ExportConventionBuilder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ExportConventionBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ExportConventionBuilder.cs" }, { "Members": [ { "DocsId": "M:System.Composition.Convention.ImportConventionBuilder.AsContractName(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ImportConventionBuilder.cs#L33C13-L43C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ImportConventionBuilder.cs#L33C13-L43C25" }, { "DocsId": "M:System.Composition.Convention.ImportConventionBuilder.AsContractName(System.Func{System.Type,System.String})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ImportConventionBuilder.cs#L53C13-L59C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ImportConventionBuilder.cs#L53C13-L59C25" }, { "DocsId": "M:System.Composition.Convention.ImportConventionBuilder.AsMany", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ImportConventionBuilder.cs#L68C13-L68C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ImportConventionBuilder.cs#L68C13-L68C33" }, { "DocsId": "M:System.Composition.Convention.ImportConventionBuilder.AsMany(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ImportConventionBuilder.cs#L78C13-L79C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ImportConventionBuilder.cs#L78C13-L79C25" }, { "DocsId": "M:System.Composition.Convention.ImportConventionBuilder.AllowDefault", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ImportConventionBuilder.cs#L89C13-L90C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ImportConventionBuilder.cs#L89C13-L90C25" }, { "DocsId": "M:System.Composition.Convention.ImportConventionBuilder.AddMetadataConstraint(System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ImportConventionBuilder.cs#L101C13-L113C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ImportConventionBuilder.cs#L101C13-L113C25" }, { "DocsId": "M:System.Composition.Convention.ImportConventionBuilder.AddMetadataConstraint(System.String,System.Func{System.Type,System.Object})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ImportConventionBuilder.cs#L124C13-L140C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ImportConventionBuilder.cs#L124C13-L140C25" } ], "DocsId": "T:System.Composition.Convention.ImportConventionBuilder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ImportConventionBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ImportConventionBuilder.cs" }, { "Members": [ { "DocsId": "M:System.Composition.Convention.ParameterImportConventionBuilder.Import``1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ParameterImportConventionBuilder.cs#L21C13-L21C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ParameterImportConventionBuilder.cs#L21C13-L21C28" }, { "DocsId": "M:System.Composition.Convention.ParameterImportConventionBuilder.Import``1(System.Action{System.Composition.Convention.ImportConventionBuilder})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ParameterImportConventionBuilder.cs#L32C13-L32C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ParameterImportConventionBuilder.cs#L32C13-L32C28" } ], "DocsId": "T:System.Composition.Convention.ParameterImportConventionBuilder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ParameterImportConventionBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ParameterImportConventionBuilder.cs" }, { "Members": [ { "DocsId": "M:System.Composition.Convention.PartConventionBuilder.Export", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilder.cs#L56C13-L58C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilder.cs#L56C13-L58C25" }, { "DocsId": "M:System.Composition.Convention.PartConventionBuilder.Export(System.Action{System.Composition.Convention.ExportConventionBuilder})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilder.cs#L68C13-L76C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilder.cs#L68C13-L76C25" }, { "DocsId": "M:System.Composition.Convention.PartConventionBuilder.Export``1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilder.cs#L85C13-L87C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilder.cs#L85C13-L87C25" }, { "DocsId": "M:System.Composition.Convention.PartConventionBuilder.Export``1(System.Action{System.Composition.Convention.ExportConventionBuilder})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilder.cs#L97C13-L105C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilder.cs#L97C13-L105C25" }, { "DocsId": "M:System.Composition.Convention.PartConventionBuilder.SelectConstructor(System.Func{System.Collections.Generic.IEnumerable{System.Reflection.ConstructorInfo},System.Reflection.ConstructorInfo})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilder.cs#L115C13-L121C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilder.cs#L115C13-L121C25" }, { "DocsId": "M:System.Composition.Convention.PartConventionBuilder.SelectConstructor(System.Func{System.Collections.Generic.IEnumerable{System.Reflection.ConstructorInfo},System.Reflection.ConstructorInfo},System.Action{System.Reflection.ParameterInfo,System.Composition.Convention.ImportConventionBuilder})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilder.cs#L133C13-L140C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilder.cs#L133C13-L140C25" }, { "DocsId": "M:System.Composition.Convention.PartConventionBuilder.ExportInterfaces(System.Predicate{System.Type})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilder.cs#L150C13-L155C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilder.cs#L150C13-L155C64" }, { "DocsId": "M:System.Composition.Convention.PartConventionBuilder.ExportInterfaces", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilder.cs#L164C13-L164C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilder.cs#L164C13-L164C48" }, { "DocsId": "M:System.Composition.Convention.PartConventionBuilder.ExportInterfaces(System.Predicate{System.Type},System.Action{System.Type,System.Composition.Convention.ExportConventionBuilder})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilder.cs#L176C13-L185C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilder.cs#L176C13-L185C79" }, { "DocsId": "M:System.Composition.Convention.PartConventionBuilder.ExportProperties(System.Predicate{System.Reflection.PropertyInfo})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilder.cs#L202C13-L207C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilder.cs#L202C13-L207C63" }, { "DocsId": "M:System.Composition.Convention.PartConventionBuilder.ExportProperties(System.Predicate{System.Reflection.PropertyInfo},System.Action{System.Reflection.PropertyInfo,System.Composition.Convention.ExportConventionBuilder})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilder.cs#L219C13-L228C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilder.cs#L219C13-L228C78" }, { "DocsId": "M:System.Composition.Convention.PartConventionBuilder.ExportProperties``1(System.Predicate{System.Reflection.PropertyInfo})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilder.cs#L246C13-L251C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilder.cs#L246C13-L251C66" }, { "DocsId": "M:System.Composition.Convention.PartConventionBuilder.ExportProperties``1(System.Predicate{System.Reflection.PropertyInfo},System.Action{System.Reflection.PropertyInfo,System.Composition.Convention.ExportConventionBuilder})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilder.cs#L264C13-L273C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilder.cs#L264C13-L273C81" }, { "DocsId": "M:System.Composition.Convention.PartConventionBuilder.ImportProperties(System.Predicate{System.Reflection.PropertyInfo})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilder.cs#L290C13-L295C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilder.cs#L290C13-L295C63" }, { "DocsId": "M:System.Composition.Convention.PartConventionBuilder.ImportProperties(System.Predicate{System.Reflection.PropertyInfo},System.Action{System.Reflection.PropertyInfo,System.Composition.Convention.ImportConventionBuilder})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilder.cs#L307C13-L316C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilder.cs#L307C13-L316C78" }, { "DocsId": "M:System.Composition.Convention.PartConventionBuilder.ImportProperties``1(System.Predicate{System.Reflection.PropertyInfo})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilder.cs#L334C13-L339C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilder.cs#L334C13-L339C66" }, { "DocsId": "M:System.Composition.Convention.PartConventionBuilder.ImportProperties``1(System.Predicate{System.Reflection.PropertyInfo},System.Action{System.Reflection.PropertyInfo,System.Composition.Convention.ImportConventionBuilder})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilder.cs#L352C13-L361C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilder.cs#L352C13-L361C81" }, { "DocsId": "M:System.Composition.Convention.PartConventionBuilder.NotifyImportsSatisfied(System.Predicate{System.Reflection.MethodInfo})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilder.cs#L378C13-L379C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilder.cs#L378C13-L379C25" }, { "DocsId": "M:System.Composition.Convention.PartConventionBuilder.Shared", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilder.cs#L388C13-L388C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilder.cs#L388C13-L388C37" }, { "DocsId": "M:System.Composition.Convention.PartConventionBuilder.Shared(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilder.cs#L398C13-L408C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilder.cs#L398C13-L408C48" }, { "DocsId": "M:System.Composition.Convention.PartConventionBuilder.AddPartMetadata(System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilder.cs#L426C13-L438C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilder.cs#L426C13-L438C25" }, { "DocsId": "M:System.Composition.Convention.PartConventionBuilder.AddPartMetadata(System.String,System.Func{System.Type,System.Object})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilder.cs#L449C13-L465C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilder.cs#L449C13-L465C25" } ], "DocsId": "T:System.Composition.Convention.PartConventionBuilder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilder.cs" }, { "Members": [ { "DocsId": "M:System.Composition.Convention.PartConventionBuilder`1.SelectConstructor(System.Linq.Expressions.Expression{System.Func{System.Composition.Convention.ParameterImportConventionBuilder,`0}})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilderOfT.cs#L220C13-L227C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilderOfT.cs#L220C13-L227C25" }, { "DocsId": "M:System.Composition.Convention.PartConventionBuilder`1.ExportProperty(System.Linq.Expressions.Expression{System.Func{`0,System.Object}})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilderOfT.cs#L237C13-L237C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilderOfT.cs#L237C13-L237C59" }, { "DocsId": "M:System.Composition.Convention.PartConventionBuilder`1.ExportProperty(System.Linq.Expressions.Expression{System.Func{`0,System.Object}},System.Action{System.Composition.Convention.ExportConventionBuilder})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilderOfT.cs#L250C13-L257C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilderOfT.cs#L250C13-L257C25" }, { "DocsId": "M:System.Composition.Convention.PartConventionBuilder`1.ExportProperty``1(System.Linq.Expressions.Expression{System.Func{`0,System.Object}})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilderOfT.cs#L269C13-L269C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilderOfT.cs#L269C13-L269C70" }, { "DocsId": "M:System.Composition.Convention.PartConventionBuilder`1.ExportProperty``1(System.Linq.Expressions.Expression{System.Func{`0,System.Object}},System.Action{System.Composition.Convention.ExportConventionBuilder})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilderOfT.cs#L283C13-L290C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilderOfT.cs#L283C13-L290C25" }, { "DocsId": "M:System.Composition.Convention.PartConventionBuilder`1.ImportProperty(System.Linq.Expressions.Expression{System.Func{`0,System.Object}})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilderOfT.cs#L300C13-L300C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilderOfT.cs#L300C13-L300C59" }, { "DocsId": "M:System.Composition.Convention.PartConventionBuilder`1.ImportProperty(System.Linq.Expressions.Expression{System.Func{`0,System.Object}},System.Action{System.Composition.Convention.ImportConventionBuilder})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilderOfT.cs#L313C13-L320C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilderOfT.cs#L313C13-L320C25" }, { "DocsId": "M:System.Composition.Convention.PartConventionBuilder`1.ImportProperty``1(System.Linq.Expressions.Expression{System.Func{`0,System.Object}})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilderOfT.cs#L331C13-L331C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilderOfT.cs#L331C13-L331C70" }, { "DocsId": "M:System.Composition.Convention.PartConventionBuilder`1.ImportProperty``1(System.Linq.Expressions.Expression{System.Func{`0,System.Object}},System.Action{System.Composition.Convention.ImportConventionBuilder})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilderOfT.cs#L345C13-L352C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilderOfT.cs#L345C13-L352C25" }, { "DocsId": "M:System.Composition.Convention.PartConventionBuilder`1.NotifyImportsSatisfied(System.Linq.Expressions.Expression{System.Action{`0}})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilderOfT.cs#L361C13-L368C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilderOfT.cs#L361C13-L368C25" } ], "DocsId": "T:System.Composition.Convention.PartConventionBuilder`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilderOfT.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilderOfT.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/System.Composition.Hosting.json b/xml/SourceLinkInformation/net-8.0/System.Composition.Hosting.json index c9a5d7e0e67..5c83bd7db7c 100644 --- a/xml/SourceLinkInformation/net-8.0/System.Composition.Hosting.json +++ b/xml/SourceLinkInformation/net-8.0/System.Composition.Hosting.json @@ -1,253 +1,252 @@ { "Assembly": "System.Composition.Hosting", - "GUID": "A11E0BE0D6B74185BE7226F932B746CDFFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "715D49DFDCFE4BE1BAEBF7763019CED9FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:System.Composition.Hosting.CompositionHost.CreateCompositionHost(System.Composition.Hosting.Core.ExportDescriptorProvider[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/CompositionHost.cs#L37C13-L37C92" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/CompositionHost.cs#L37C13-L37C92" }, { "DocsId": "M:System.Composition.Hosting.CompositionHost.CreateCompositionHost(System.Collections.Generic.IEnumerable{System.Composition.Hosting.Core.ExportDescriptorProvider})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/CompositionHost.cs#L46C13-L63C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/CompositionHost.cs#L46C13-L63C51" }, { "DocsId": "M:System.Composition.Hosting.CompositionHost.TryGetExport(System.Composition.Hosting.Core.CompositionContract,System.Object@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/CompositionHost.cs#L76C13-L76C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/CompositionHost.cs#L76C13-L76C76" }, { "DocsId": "M:System.Composition.Hosting.CompositionHost.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/CompositionHost.cs#L84C13-L85C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/CompositionHost.cs#L84C13-L85C10" } ], "DocsId": "T:System.Composition.Hosting.CompositionHost", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/CompositionHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/CompositionHost.cs" }, { "Members": [ { "DocsId": "M:System.Composition.Hosting.Core.CompositeActivator.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/CompositeActivator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/CompositeActivator.cs" }, { "DocsId": "M:System.Composition.Hosting.Core.CompositeActivator.Invoke(System.Composition.Hosting.Core.LifetimeContext,System.Composition.Hosting.Core.CompositionOperation)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/CompositeActivator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/CompositeActivator.cs" }, { "DocsId": "M:System.Composition.Hosting.Core.CompositeActivator.BeginInvoke(System.Composition.Hosting.Core.LifetimeContext,System.Composition.Hosting.Core.CompositionOperation,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/CompositeActivator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/CompositeActivator.cs" }, { "DocsId": "M:System.Composition.Hosting.Core.CompositeActivator.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/CompositeActivator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/CompositeActivator.cs" } ], "DocsId": "T:System.Composition.Hosting.Core.CompositeActivator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/CompositeActivator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/CompositeActivator.cs" }, { "Members": [ { "DocsId": "M:System.Composition.Hosting.Core.CompositionDependency.Satisfied(System.Composition.Hosting.Core.CompositionContract,System.Composition.Hosting.Core.ExportDescriptorPromise,System.Boolean,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/CompositionDependency.cs#L42C13-L55C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/CompositionDependency.cs#L42C13-L55C86" }, { "DocsId": "M:System.Composition.Hosting.Core.CompositionDependency.Missing(System.Composition.Hosting.Core.CompositionContract,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/CompositionDependency.cs#L67C13-L76C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/CompositionDependency.cs#L67C13-L76C62" }, { "DocsId": "M:System.Composition.Hosting.Core.CompositionDependency.Oversupplied(System.Composition.Hosting.Core.CompositionContract,System.Collections.Generic.IEnumerable{System.Composition.Hosting.Core.ExportDescriptorPromise},System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/CompositionDependency.cs#L89C13-L102C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/CompositionDependency.cs#L89C13-L102C71" }, { "DocsId": "M:System.Composition.Hosting.Core.CompositionDependency.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/CompositionDependency.cs#L156C13-L159C98" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/CompositionDependency.cs#L156C13-L159C98" }, { "DocsId": "P:System.Composition.Hosting.Core.CompositionDependency.Target", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/CompositionDependency.cs#L130C55-L130C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/CompositionDependency.cs#L130C55-L130C70" }, { "DocsId": "P:System.Composition.Hosting.Core.CompositionDependency.IsPrerequisite", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/CompositionDependency.cs#L137C44-L137C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/CompositionDependency.cs#L137C44-L137C67" }, { "DocsId": "P:System.Composition.Hosting.Core.CompositionDependency.Site", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/CompositionDependency.cs#L143C36-L143C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/CompositionDependency.cs#L143C36-L143C49" }, { "DocsId": "P:System.Composition.Hosting.Core.CompositionDependency.Contract", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/CompositionDependency.cs#L148C53-L148C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/CompositionDependency.cs#L148C53-L148C70" } ], "DocsId": "T:System.Composition.Hosting.Core.CompositionDependency", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/CompositionDependency.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/CompositionDependency.cs" }, { "Members": [ { "DocsId": "M:System.Composition.Hosting.Core.CompositionOperation.Run(System.Composition.Hosting.Core.LifetimeContext,System.Composition.Hosting.Core.CompositeActivator)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/CompositionOperation.cs#L33C13-L48C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/CompositionOperation.cs#L33C13-L48C10" }, { "DocsId": "M:System.Composition.Hosting.Core.CompositionOperation.AddNonPrerequisiteAction(System.Action)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/CompositionOperation.cs#L57C13-L65C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/CompositionOperation.cs#L57C13-L65C10" }, { "DocsId": "M:System.Composition.Hosting.Core.CompositionOperation.AddPostCompositionAction(System.Action)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/CompositionOperation.cs#L74C13-L82C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/CompositionOperation.cs#L74C13-L82C10" }, { "DocsId": "M:System.Composition.Hosting.Core.CompositionOperation.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/CompositionOperation.cs#L128C13-L130C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/CompositionOperation.cs#L128C13-L130C10" } ], "DocsId": "T:System.Composition.Hosting.Core.CompositionOperation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/CompositionOperation.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/CompositionOperation.cs" }, { "Members": [ { "DocsId": "M:System.Composition.Hosting.Core.DependencyAccessor.GetPromises(System.Composition.Hosting.Core.CompositionContract)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/DependencyAccessor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/DependencyAccessor.cs" }, { "DocsId": "M:System.Composition.Hosting.Core.DependencyAccessor.ResolveDependencies(System.Object,System.Composition.Hosting.Core.CompositionContract,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/DependencyAccessor.cs#L30C13-L34C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/DependencyAccessor.cs#L30C13-L34C27" }, { "DocsId": "M:System.Composition.Hosting.Core.DependencyAccessor.ResolveRequiredDependency(System.Object,System.Composition.Hosting.Core.CompositionContract,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/DependencyAccessor.cs#L47C13-L50C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/DependencyAccessor.cs#L47C13-L50C27" }, { "DocsId": "M:System.Composition.Hosting.Core.DependencyAccessor.TryResolveOptionalDependency(System.Object,System.Composition.Hosting.Core.CompositionContract,System.Boolean,System.Composition.Hosting.Core.CompositionDependency@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/DependencyAccessor.cs#L63C13-L77C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/DependencyAccessor.cs#L63C13-L77C25" }, { "DocsId": "M:System.Composition.Hosting.Core.DependencyAccessor.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/DependencyAccessor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/DependencyAccessor.cs" } ], "DocsId": "T:System.Composition.Hosting.Core.DependencyAccessor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/DependencyAccessor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/DependencyAccessor.cs" }, { "Members": [ { "DocsId": "M:System.Composition.Hosting.Core.ExportDescriptor.Create(System.Composition.Hosting.Core.CompositeActivator,System.Collections.Generic.IDictionary{System.String,System.Object})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/ExportDescriptor.cs#L33C13-L33C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/ExportDescriptor.cs#L33C13-L33C68" }, { "DocsId": "M:System.Composition.Hosting.Core.ExportDescriptor.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/ExportDescriptor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/ExportDescriptor.cs" }, { "DocsId": "P:System.Composition.Hosting.Core.ExportDescriptor.Activator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/ExportDescriptor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/ExportDescriptor.cs" }, { "DocsId": "P:System.Composition.Hosting.Core.ExportDescriptor.Metadata", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/ExportDescriptor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/ExportDescriptor.cs" } ], "DocsId": "T:System.Composition.Hosting.Core.ExportDescriptor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/ExportDescriptor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/ExportDescriptor.cs" }, { "Members": [ { "DocsId": "M:System.Composition.Hosting.Core.ExportDescriptorPromise.#ctor(System.Composition.Hosting.Core.CompositionContract,System.String,System.Boolean,System.Func{System.Collections.Generic.IEnumerable{System.Composition.Hosting.Core.CompositionDependency}},System.Func{System.Collections.Generic.IEnumerable{System.Composition.Hosting.Core.CompositionDependency},System.Composition.Hosting.Core.ExportDescriptor})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/ExportDescriptorPromise.cs#L36C9-L48C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/ExportDescriptorPromise.cs#L16707566C0-L48C10" }, { "DocsId": "M:System.Composition.Hosting.Core.ExportDescriptorPromise.GetDescriptor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/ExportDescriptorPromise.cs#L78C13-L95C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/ExportDescriptorPromise.cs#L78C13-L95C10" }, { "DocsId": "M:System.Composition.Hosting.Core.ExportDescriptorPromise.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/ExportDescriptorPromise.cs#L103C13-L103C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/ExportDescriptorPromise.cs#L103C13-L103C84" }, { "DocsId": "P:System.Composition.Hosting.Core.ExportDescriptorPromise.Origin", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/ExportDescriptorPromise.cs#L54C38-L54C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/ExportDescriptorPromise.cs#L54C38-L54C53" }, { "DocsId": "P:System.Composition.Hosting.Core.ExportDescriptorPromise.IsShared", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/ExportDescriptorPromise.cs#L60C38-L60C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/ExportDescriptorPromise.cs#L60C38-L60C55" }, { "DocsId": "P:System.Composition.Hosting.Core.ExportDescriptorPromise.Dependencies", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/ExportDescriptorPromise.cs#L65C79-L65C106" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/ExportDescriptorPromise.cs#L65C79-L65C106" }, { "DocsId": "P:System.Composition.Hosting.Core.ExportDescriptorPromise.Contract", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/ExportDescriptorPromise.cs#L70C53-L70C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/ExportDescriptorPromise.cs#L70C53-L70C70" } ], "DocsId": "T:System.Composition.Hosting.Core.ExportDescriptorPromise", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/ExportDescriptorPromise.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/ExportDescriptorPromise.cs" }, { "Members": [ { "DocsId": "M:System.Composition.Hosting.Core.ExportDescriptorProvider.GetExportDescriptors(System.Composition.Hosting.Core.CompositionContract,System.Composition.Hosting.Core.DependencyAccessor)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/ExportDescriptorProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/ExportDescriptorProvider.cs" }, { "DocsId": "M:System.Composition.Hosting.Core.ExportDescriptorProvider.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/ExportDescriptorProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/ExportDescriptorProvider.cs" }, { "DocsId": "F:System.Composition.Hosting.Core.ExportDescriptorProvider.NoExportDescriptors", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/ExportDescriptorProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/ExportDescriptorProvider.cs" }, { "DocsId": "F:System.Composition.Hosting.Core.ExportDescriptorProvider.NoMetadata", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/ExportDescriptorProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/ExportDescriptorProvider.cs" }, { "DocsId": "F:System.Composition.Hosting.Core.ExportDescriptorProvider.NoDependencies", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/ExportDescriptorProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/ExportDescriptorProvider.cs" } ], "DocsId": "T:System.Composition.Hosting.Core.ExportDescriptorProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/ExportDescriptorProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/ExportDescriptorProvider.cs" }, { "Members": [ { "DocsId": "M:System.Composition.Hosting.Core.LifetimeContext.AllocateSharingId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/LifetimeContext.cs#L51C13-L51C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/LifetimeContext.cs#L51C13-L51C63" }, { "DocsId": "M:System.Composition.Hosting.Core.LifetimeContext.FindContextWithin(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/LifetimeContext.cs#L77C13-L97C22" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/LifetimeContext.cs#L77C13-L97C22" }, { "DocsId": "M:System.Composition.Hosting.Core.LifetimeContext.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/LifetimeContext.cs#L106C13-L121C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/LifetimeContext.cs#L106C13-L121C10" }, { "DocsId": "M:System.Composition.Hosting.Core.LifetimeContext.AddBoundInstance(System.IDisposable)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/LifetimeContext.cs#L130C13-L137C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/LifetimeContext.cs#L130C13-L137C10" }, { "DocsId": "M:System.Composition.Hosting.Core.LifetimeContext.GetOrCreate(System.Int32,System.Composition.Hosting.Core.CompositionOperation,System.Composition.Hosting.Core.CompositeActivator)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/LifetimeContext.cs#L155C13-L184C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/LifetimeContext.cs#L16707566C0-L184C27" }, { "DocsId": "M:System.Composition.Hosting.Core.LifetimeContext.TryGetExport(System.Composition.Hosting.Core.CompositionContract,System.Object@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/LifetimeContext.cs#L198C13-L205C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/LifetimeContext.cs#L198C13-L205C25" }, { "DocsId": "M:System.Composition.Hosting.Core.LifetimeContext.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/LifetimeContext.cs#L214C13-L220C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/LifetimeContext.cs#L214C13-L220C76" } ], "DocsId": "T:System.Composition.Hosting.Core.LifetimeContext", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/LifetimeContext.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/LifetimeContext.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/System.Composition.Runtime.json b/xml/SourceLinkInformation/net-8.0/System.Composition.Runtime.json index a484cafb245..1dc8115eb9c 100644 --- a/xml/SourceLinkInformation/net-8.0/System.Composition.Runtime.json +++ b/xml/SourceLinkInformation/net-8.0/System.Composition.Runtime.json @@ -1,187 +1,186 @@ { "Assembly": "System.Composition.Runtime", - "GUID": "A32E74F10FEB49929DCC1CFC3A625E65FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "59434DA3F0F742D581C2D483D5812458FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:System.Composition.CompositionContext.TryGetExport(System.Composition.Hosting.Core.CompositionContract,System.Object@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Runtime/src/System/Composition/CompositionContext.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Runtime/src/System/Composition/CompositionContext.cs" }, { "DocsId": "M:System.Composition.CompositionContext.GetExport``1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Runtime/src/System/Composition/CompositionContext.cs#L36C13-L36C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Runtime/src/System/Composition/CompositionContext.cs#L36C13-L36C45" }, { "DocsId": "M:System.Composition.CompositionContext.GetExport``1(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Runtime/src/System/Composition/CompositionContext.cs#L49C13-L49C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Runtime/src/System/Composition/CompositionContext.cs#L49C13-L49C70" }, { "DocsId": "M:System.Composition.CompositionContext.TryGetExport(System.Type,System.Object@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Runtime/src/System/Composition/CompositionContext.cs#L62C13-L62C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Runtime/src/System/Composition/CompositionContext.cs#L62C13-L62C63" }, { "DocsId": "M:System.Composition.CompositionContext.TryGetExport(System.Type,System.String,System.Object@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Runtime/src/System/Composition/CompositionContext.cs#L76C13-L80C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Runtime/src/System/Composition/CompositionContext.cs#L76C13-L80C26" }, { "DocsId": "M:System.Composition.CompositionContext.TryGetExport``1(``0@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Runtime/src/System/Composition/CompositionContext.cs#L93C13-L93C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Runtime/src/System/Composition/CompositionContext.cs#L93C13-L93C51" }, { "DocsId": "M:System.Composition.CompositionContext.TryGetExport``1(System.String,``0@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Runtime/src/System/Composition/CompositionContext.cs#L107C13-L114C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Runtime/src/System/Composition/CompositionContext.cs#L107C13-L114C25" }, { "DocsId": "M:System.Composition.CompositionContext.GetExport(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Runtime/src/System/Composition/CompositionContext.cs#L126C13-L126C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Runtime/src/System/Composition/CompositionContext.cs#L126C13-L126C48" }, { "DocsId": "M:System.Composition.CompositionContext.GetExport(System.Type,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Runtime/src/System/Composition/CompositionContext.cs#L139C13-L139C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Runtime/src/System/Composition/CompositionContext.cs#L139C13-L139C81" }, { "DocsId": "M:System.Composition.CompositionContext.GetExport(System.Composition.Hosting.Core.CompositionContract)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Runtime/src/System/Composition/CompositionContext.cs#L151C13-L154C119" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Runtime/src/System/Composition/CompositionContext.cs#L151C13-L154C119" }, { "DocsId": "M:System.Composition.CompositionContext.GetExports(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Runtime/src/System/Composition/CompositionContext.cs#L165C13-L165C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Runtime/src/System/Composition/CompositionContext.cs#L165C13-L165C49" }, { "DocsId": "M:System.Composition.CompositionContext.GetExports(System.Type,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Runtime/src/System/Composition/CompositionContext.cs#L178C13-L183C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Runtime/src/System/Composition/CompositionContext.cs#L178C13-L183C65" }, { "DocsId": "M:System.Composition.CompositionContext.GetExports``1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Runtime/src/System/Composition/CompositionContext.cs#L195C13-L195C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Runtime/src/System/Composition/CompositionContext.cs#L195C13-L195C46" }, { "DocsId": "M:System.Composition.CompositionContext.GetExports``1(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Runtime/src/System/Composition/CompositionContext.cs#L208C13-L208C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Runtime/src/System/Composition/CompositionContext.cs#L208C13-L208C84" }, { "DocsId": "M:System.Composition.CompositionContext.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Runtime/src/System/Composition/CompositionContext.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Runtime/src/System/Composition/CompositionContext.cs" } ], "DocsId": "T:System.Composition.CompositionContext", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Runtime/src/System/Composition/CompositionContext.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Runtime/src/System/Composition/CompositionContext.cs" }, { "Members": [ { "DocsId": "M:System.Composition.ExportFactory`1.#ctor(System.Func{System.Tuple{`0,System.Action}})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Runtime/src/System/Composition/ExportFactoryOfT.cs#L18C9-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Runtime/src/System/Composition/ExportFactoryOfT.cs#L18C9-L21C10" }, { "DocsId": "M:System.Composition.ExportFactory`1.CreateExport", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Runtime/src/System/Composition/ExportFactoryOfT.cs#L29C13-L30C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Runtime/src/System/Composition/ExportFactoryOfT.cs#L29C13-L30C94" } ], "DocsId": "T:System.Composition.ExportFactory`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Runtime/src/System/Composition/ExportFactoryOfT.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Runtime/src/System/Composition/ExportFactoryOfT.cs" }, { "Members": [ { "DocsId": "M:System.Composition.ExportFactory`2.#ctor(System.Func{System.Tuple{`0,System.Action}},`1)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Runtime/src/System/Composition/ExportFactoryOfTTMetadata.cs#L19C15-L22C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Runtime/src/System/Composition/ExportFactoryOfTTMetadata.cs#L19C15-L22C10" }, { "DocsId": "P:System.Composition.ExportFactory`2.Metadata", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Runtime/src/System/Composition/ExportFactoryOfTTMetadata.cs#L27C37-L27C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Runtime/src/System/Composition/ExportFactoryOfTTMetadata.cs#L27C37-L27C41" } ], "DocsId": "T:System.Composition.ExportFactory`2", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Runtime/src/System/Composition/ExportFactoryOfTTMetadata.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Runtime/src/System/Composition/ExportFactoryOfTTMetadata.cs" }, { "Members": [ { "DocsId": "M:System.Composition.Export`1.#ctor(`0,System.Action)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Runtime/src/System/Composition/ExportOfT.cs#L20C9-L24C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Runtime/src/System/Composition/ExportOfT.cs#L20C9-L24C10" }, { "DocsId": "M:System.Composition.Export`1.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Runtime/src/System/Composition/ExportOfT.cs#L34C34-L34C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Runtime/src/System/Composition/ExportOfT.cs#L34C34-L34C58" }, { "DocsId": "P:System.Composition.Export`1.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Runtime/src/System/Composition/ExportOfT.cs#L29C26-L29C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Runtime/src/System/Composition/ExportOfT.cs#L29C26-L29C30" } ], "DocsId": "T:System.Composition.Export`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Runtime/src/System/Composition/ExportOfT.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Runtime/src/System/Composition/ExportOfT.cs" }, { "Members": [ { "DocsId": "M:System.Composition.Hosting.CompositionFailedException.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Runtime/src/System/Composition/Hosting/CompositionFailedException.cs#L17C15-L18C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Runtime/src/System/Composition/Hosting/CompositionFailedException.cs#L17C15-L18C12" }, { "DocsId": "M:System.Composition.Hosting.CompositionFailedException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Runtime/src/System/Composition/Hosting/CompositionFailedException.cs#L25C15-L26C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Runtime/src/System/Composition/Hosting/CompositionFailedException.cs#L25C15-L26C12" }, { "DocsId": "M:System.Composition.Hosting.CompositionFailedException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Runtime/src/System/Composition/Hosting/CompositionFailedException.cs#L34C15-L35C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Runtime/src/System/Composition/Hosting/CompositionFailedException.cs#L34C15-L35C12" } ], "DocsId": "T:System.Composition.Hosting.CompositionFailedException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Runtime/src/System/Composition/Hosting/CompositionFailedException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Runtime/src/System/Composition/Hosting/CompositionFailedException.cs" }, { "Members": [ { "DocsId": "M:System.Composition.Hosting.Core.CompositionContract.#ctor(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Runtime/src/System/Composition/Hosting/Core/CompositionContract.cs#L25C15-L27C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Runtime/src/System/Composition/Hosting/Core/CompositionContract.cs#L25C15-L27C10" }, { "DocsId": "M:System.Composition.Hosting.Core.CompositionContract.#ctor(System.Type,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Runtime/src/System/Composition/Hosting/Core/CompositionContract.cs#L35C15-L37C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Runtime/src/System/Composition/Hosting/Core/CompositionContract.cs#L35C15-L37C10" }, { "DocsId": "M:System.Composition.Hosting.Core.CompositionContract.#ctor(System.Type,System.String,System.Collections.Generic.IDictionary{System.String,System.Object})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Runtime/src/System/Composition/Hosting/Core/CompositionContract.cs#L45C9-L53C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Runtime/src/System/Composition/Hosting/Core/CompositionContract.cs#L45C9-L53C10" }, { "DocsId": "M:System.Composition.Hosting.Core.CompositionContract.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Runtime/src/System/Composition/Hosting/Core/CompositionContract.cs#L78C13-L82C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Runtime/src/System/Composition/Hosting/Core/CompositionContract.cs#L78C13-L82C86" }, { "DocsId": "M:System.Composition.Hosting.Core.CompositionContract.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Runtime/src/System/Composition/Hosting/Core/CompositionContract.cs#L91C13-L96C23" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Runtime/src/System/Composition/Hosting/Core/CompositionContract.cs#L91C13-L96C23" }, { "DocsId": "M:System.Composition.Hosting.Core.CompositionContract.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Runtime/src/System/Composition/Hosting/Core/CompositionContract.cs#L105C13-L115C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Runtime/src/System/Composition/Hosting/Core/CompositionContract.cs#L105C13-L115C27" }, { "DocsId": "M:System.Composition.Hosting.Core.CompositionContract.ChangeType(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Runtime/src/System/Composition/Hosting/Core/CompositionContract.cs#L127C13-L128C98" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Runtime/src/System/Composition/Hosting/Core/CompositionContract.cs#L127C13-L128C98" }, { "DocsId": "M:System.Composition.Hosting.Core.CompositionContract.TryUnwrapMetadataConstraint``1(System.String,``0@,System.Composition.Hosting.Core.CompositionContract@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Runtime/src/System/Composition/Hosting/Core/CompositionContract.cs#L143C13-L172C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Runtime/src/System/Composition/Hosting/Core/CompositionContract.cs#L143C13-L172C25" }, { "DocsId": "P:System.Composition.Hosting.Core.CompositionContract.ContractType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Runtime/src/System/Composition/Hosting/Core/CompositionContract.cs#L58C37-L58C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Runtime/src/System/Composition/Hosting/Core/CompositionContract.cs#L58C37-L58C50" }, { "DocsId": "P:System.Composition.Hosting.Core.CompositionContract.ContractName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Runtime/src/System/Composition/Hosting/Core/CompositionContract.cs#L63C39-L63C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Runtime/src/System/Composition/Hosting/Core/CompositionContract.cs#L63C39-L63C52" }, { "DocsId": "P:System.Composition.Hosting.Core.CompositionContract.MetadataConstraints", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Runtime/src/System/Composition/Hosting/Core/CompositionContract.cs#L69C81-L69C101" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Runtime/src/System/Composition/Hosting/Core/CompositionContract.cs#L69C81-L69C101" } ], "DocsId": "T:System.Composition.Hosting.Core.CompositionContract", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Runtime/src/System/Composition/Hosting/Core/CompositionContract.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Runtime/src/System/Composition/Hosting/Core/CompositionContract.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/System.Composition.TypedParts.json b/xml/SourceLinkInformation/net-8.0/System.Composition.TypedParts.json index 864dcc253c2..41d033a5dae 100644 --- a/xml/SourceLinkInformation/net-8.0/System.Composition.TypedParts.json +++ b/xml/SourceLinkInformation/net-8.0/System.Composition.TypedParts.json @@ -1,103 +1,102 @@ { "Assembly": "System.Composition.TypedParts", - "GUID": "D6DC7B82B29044F194475B5E9D5C4AD7FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "9941D5711236487ABCB86F585DCCF698FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:System.Composition.CompositionContextExtensions.SatisfyImports(System.Composition.CompositionContext,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.TypedParts/src/System/Composition/CompositionContextExtensions.cs#L30C13-L31C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.TypedParts/src/System/Composition/CompositionContextExtensions.cs#L30C13-L31C10" }, { "DocsId": "M:System.Composition.CompositionContextExtensions.SatisfyImports(System.Composition.CompositionContext,System.Object,System.Composition.Convention.AttributedModelProvider)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.TypedParts/src/System/Composition/CompositionContextExtensions.cs#L42C13-L43C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.TypedParts/src/System/Composition/CompositionContextExtensions.cs#L42C13-L43C10" } ], "DocsId": "T:System.Composition.CompositionContextExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.TypedParts/src/System/Composition/CompositionContextExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.TypedParts/src/System/Composition/CompositionContextExtensions.cs" }, { "Members": [ { "DocsId": "M:System.Composition.Hosting.ContainerConfiguration.CreateContainer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.TypedParts/src/System/Composition/Hosting/ContainerConfiguration.cs#L33C13-L42C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.TypedParts/src/System/Composition/Hosting/ContainerConfiguration.cs#L33C13-L42C79" }, { "DocsId": "M:System.Composition.Hosting.ContainerConfiguration.WithProvider(System.Composition.Hosting.Core.ExportDescriptorProvider)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.TypedParts/src/System/Composition/Hosting/ContainerConfiguration.cs#L52C13-L58C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.TypedParts/src/System/Composition/Hosting/ContainerConfiguration.cs#L52C13-L58C25" }, { "DocsId": "M:System.Composition.Hosting.ContainerConfiguration.WithDefaultConventions(System.Composition.Convention.AttributedModelProvider)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.TypedParts/src/System/Composition/Hosting/ContainerConfiguration.cs#L70C13-L79C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.TypedParts/src/System/Composition/Hosting/ContainerConfiguration.cs#L70C13-L79C25" }, { "DocsId": "M:System.Composition.Hosting.ContainerConfiguration.WithPart(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.TypedParts/src/System/Composition/Hosting/ContainerConfiguration.cs#L90C13-L90C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.TypedParts/src/System/Composition/Hosting/ContainerConfiguration.cs#L90C13-L90C45" }, { "DocsId": "M:System.Composition.Hosting.ContainerConfiguration.WithPart(System.Type,System.Composition.Convention.AttributedModelProvider)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.TypedParts/src/System/Composition/Hosting/ContainerConfiguration.cs#L102C13-L103C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.TypedParts/src/System/Composition/Hosting/ContainerConfiguration.cs#L102C13-L103C63" }, { "DocsId": "M:System.Composition.Hosting.ContainerConfiguration.WithPart``1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.TypedParts/src/System/Composition/Hosting/ContainerConfiguration.cs#L114C13-L114C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.TypedParts/src/System/Composition/Hosting/ContainerConfiguration.cs#L114C13-L114C42" }, { "DocsId": "M:System.Composition.Hosting.ContainerConfiguration.WithPart``1(System.Composition.Convention.AttributedModelProvider)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.TypedParts/src/System/Composition/Hosting/ContainerConfiguration.cs#L126C13-L126C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.TypedParts/src/System/Composition/Hosting/ContainerConfiguration.cs#L126C13-L126C57" }, { "DocsId": "M:System.Composition.Hosting.ContainerConfiguration.WithParts(System.Type[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.TypedParts/src/System/Composition/Hosting/ContainerConfiguration.cs#L137C13-L137C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.TypedParts/src/System/Composition/Hosting/ContainerConfiguration.cs#L137C13-L137C60" }, { "DocsId": "M:System.Composition.Hosting.ContainerConfiguration.WithParts(System.Collections.Generic.IEnumerable{System.Type})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.TypedParts/src/System/Composition/Hosting/ContainerConfiguration.cs#L148C13-L148C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.TypedParts/src/System/Composition/Hosting/ContainerConfiguration.cs#L148C13-L148C47" }, { "DocsId": "M:System.Composition.Hosting.ContainerConfiguration.WithParts(System.Collections.Generic.IEnumerable{System.Type},System.Composition.Convention.AttributedModelProvider)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.TypedParts/src/System/Composition/Hosting/ContainerConfiguration.cs#L160C13-L166C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.TypedParts/src/System/Composition/Hosting/ContainerConfiguration.cs#L160C13-L166C25" }, { "DocsId": "M:System.Composition.Hosting.ContainerConfiguration.WithAssembly(System.Reflection.Assembly)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.TypedParts/src/System/Composition/Hosting/ContainerConfiguration.cs#L177C13-L177C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.TypedParts/src/System/Composition/Hosting/ContainerConfiguration.cs#L177C13-L177C49" }, { "DocsId": "M:System.Composition.Hosting.ContainerConfiguration.WithAssembly(System.Reflection.Assembly,System.Composition.Convention.AttributedModelProvider)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.TypedParts/src/System/Composition/Hosting/ContainerConfiguration.cs#L189C13-L189C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.TypedParts/src/System/Composition/Hosting/ContainerConfiguration.cs#L189C13-L189C68" }, { "DocsId": "M:System.Composition.Hosting.ContainerConfiguration.WithAssemblies(System.Collections.Generic.IEnumerable{System.Reflection.Assembly})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.TypedParts/src/System/Composition/Hosting/ContainerConfiguration.cs#L200C13-L200C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.TypedParts/src/System/Composition/Hosting/ContainerConfiguration.cs#L200C13-L200C53" }, { "DocsId": "M:System.Composition.Hosting.ContainerConfiguration.WithAssemblies(System.Collections.Generic.IEnumerable{System.Reflection.Assembly},System.Composition.Convention.AttributedModelProvider)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.TypedParts/src/System/Composition/Hosting/ContainerConfiguration.cs#L212C13-L217C113" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.TypedParts/src/System/Composition/Hosting/ContainerConfiguration.cs#L212C13-L217C113" }, { "DocsId": "M:System.Composition.Hosting.ContainerConfiguration.WithExport``1(``0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.TypedParts/src/System/Composition/Hosting/ContainerConfiguration.cs#L228C13-L233C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.TypedParts/src/System/Composition/Hosting/ContainerConfiguration.cs#L228C13-L233C61" }, { "DocsId": "M:System.Composition.Hosting.ContainerConfiguration.WithExport``1(``0,System.String,System.Collections.Generic.IDictionary{System.String,System.Object})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.TypedParts/src/System/Composition/Hosting/ContainerConfiguration.cs#L246C13-L251C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.TypedParts/src/System/Composition/Hosting/ContainerConfiguration.cs#L246C13-L251C90" }, { "DocsId": "M:System.Composition.Hosting.ContainerConfiguration.WithExport(System.Type,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.TypedParts/src/System/Composition/Hosting/ContainerConfiguration.cs#L262C13-L271C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.TypedParts/src/System/Composition/Hosting/ContainerConfiguration.cs#L262C13-L271C75" }, { "DocsId": "M:System.Composition.Hosting.ContainerConfiguration.WithExport(System.Type,System.Object,System.String,System.Collections.Generic.IDictionary{System.String,System.Object})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.TypedParts/src/System/Composition/Hosting/ContainerConfiguration.cs#L284C13-L293C127" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.TypedParts/src/System/Composition/Hosting/ContainerConfiguration.cs#L284C13-L293C127" }, { "DocsId": "M:System.Composition.Hosting.ContainerConfiguration.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.TypedParts/src/System/Composition/Hosting/ContainerConfiguration.cs#L23C9-L24C153" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.TypedParts/src/System/Composition/Hosting/ContainerConfiguration.cs#L23C9-L24C153" } ], "DocsId": "T:System.Composition.Hosting.ContainerConfiguration", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.TypedParts/src/System/Composition/Hosting/ContainerConfiguration.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.TypedParts/src/System/Composition/Hosting/ContainerConfiguration.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/System.Configuration.ConfigurationManager.json b/xml/SourceLinkInformation/net-8.0/System.Configuration.ConfigurationManager.json index bcdecd712fe..aa43fac4186 100644 --- a/xml/SourceLinkInformation/net-8.0/System.Configuration.ConfigurationManager.json +++ b/xml/SourceLinkInformation/net-8.0/System.Configuration.ConfigurationManager.json @@ -1,5203 +1,5202 @@ { "Assembly": "System.Configuration.ConfigurationManager", - "GUID": "C2D32DA5CFBA4A9EBBE9977B23CDA3D4FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "8CAD0DD418774532A669E5C56C0BD616FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "F:System.UriIdnScope.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/UriIdnScope.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/UriIdnScope.cs" }, { "DocsId": "F:System.UriIdnScope.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/UriIdnScope.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/UriIdnScope.cs" }, { "DocsId": "F:System.UriIdnScope.AllExceptIntranet", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/UriIdnScope.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/UriIdnScope.cs" }, { "DocsId": "F:System.UriIdnScope.All", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/UriIdnScope.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/UriIdnScope.cs" } ], "DocsId": "T:System.UriIdnScope", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/UriIdnScope.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/UriIdnScope.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.TraceConfiguration.Register", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Diagnostics/TraceConfiguration.cs#L16C13-L27C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Diagnostics/TraceConfiguration.cs#L16C13-L27C10" } ], "DocsId": "T:System.Diagnostics.TraceConfiguration", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Diagnostics/TraceConfiguration.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Diagnostics/TraceConfiguration.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Configuration.SystemDrawingSection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Drawing/Configuration/SystemDrawingSection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Drawing/Configuration/SystemDrawingSection.cs" }, { "DocsId": "P:System.Drawing.Configuration.SystemDrawingSection.BitmapSuffix", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Drawing/Configuration/SystemDrawingSection.cs#L17C20-L17C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Drawing/Configuration/SystemDrawingSection.cs#L17C20-L17C48" }, { "DocsId": "P:System.Drawing.Configuration.SystemDrawingSection.Properties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Drawing/Configuration/SystemDrawingSection.cs#L21C83-L21C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Drawing/Configuration/SystemDrawingSection.cs#L21C83-L21C95" } ], "DocsId": "T:System.Drawing.Configuration.SystemDrawingSection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Drawing/Configuration/SystemDrawingSection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Drawing/Configuration/SystemDrawingSection.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.DictionarySectionHandler.Create(System.Object,System.Object,System.Xml.XmlNode)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DictionarySectionHandler.cs#L31C13-L79C24" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DictionarySectionHandler.cs#L31C13-L79C24" }, { "DocsId": "M:System.Configuration.DictionarySectionHandler.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DictionarySectionHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DictionarySectionHandler.cs" }, { "DocsId": "P:System.Configuration.DictionarySectionHandler.KeyAttributeName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DictionarySectionHandler.cs#L87C19-L87C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DictionarySectionHandler.cs#L87C19-L87C32" }, { "DocsId": "P:System.Configuration.DictionarySectionHandler.ValueAttributeName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DictionarySectionHandler.cs#L95C19-L95C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DictionarySectionHandler.cs#L95C19-L95C34" } ], "DocsId": "T:System.Configuration.DictionarySectionHandler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DictionarySectionHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DictionarySectionHandler.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.DpapiProtectedConfigurationProvider.Decrypt(System.Xml.XmlNode)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DpapiProtectedConfigurationProvider.cs#L20C13-L42C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DpapiProtectedConfigurationProvider.cs#L20C13-L42C48" }, { "DocsId": "M:System.Configuration.DpapiProtectedConfigurationProvider.Encrypt(System.Xml.XmlNode)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DpapiProtectedConfigurationProvider.cs#L47C13-L56C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DpapiProtectedConfigurationProvider.cs#L47C13-L56C48" }, { "DocsId": "M:System.Configuration.DpapiProtectedConfigurationProvider.Initialize(System.String,System.Collections.Specialized.NameValueCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DpapiProtectedConfigurationProvider.cs#L95C13-L101C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DpapiProtectedConfigurationProvider.cs#L95C13-L101C10" }, { "DocsId": "M:System.Configuration.DpapiProtectedConfigurationProvider.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DpapiProtectedConfigurationProvider.cs#L15C9-L15C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DpapiProtectedConfigurationProvider.cs#L15C9-L15C51" }, { "DocsId": "P:System.Configuration.DpapiProtectedConfigurationProvider.UseMachineProtection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DpapiProtectedConfigurationProvider.cs#L91C50-L91C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DpapiProtectedConfigurationProvider.cs#L91C50-L91C79" } ], "DocsId": "T:System.Configuration.DpapiProtectedConfigurationProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DpapiProtectedConfigurationProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DpapiProtectedConfigurationProvider.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.IConfigurationSystem.GetConfig(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IConfigurationSystem.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IConfigurationSystem.cs" }, { "DocsId": "M:System.Configuration.IConfigurationSystem.Init", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IConfigurationSystem.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IConfigurationSystem.cs" } ], "DocsId": "T:System.Configuration.IConfigurationSystem", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IConfigurationSystem.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IConfigurationSystem.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.IdnElement.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IdnElement.cs#L13C9-L22C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IdnElement.cs#L13C9-L22C10" }, { "DocsId": "P:System.Configuration.IdnElement.Properties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IdnElement.cs#L28C17-L28C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IdnElement.cs#L28C17-L28C36" }, { "DocsId": "P:System.Configuration.IdnElement.Enabled", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IdnElement.cs#L35C19-L35C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IdnElement.cs#L35C19-L35C54" } ], "DocsId": "T:System.Configuration.IdnElement", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IdnElement.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IdnElement.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.IPersistComponentSettings.LoadComponentSettings", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IPersistComponentSettings.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IPersistComponentSettings.cs" }, { "DocsId": "M:System.Configuration.IPersistComponentSettings.SaveComponentSettings", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IPersistComponentSettings.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IPersistComponentSettings.cs" }, { "DocsId": "M:System.Configuration.IPersistComponentSettings.ResetComponentSettings", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IPersistComponentSettings.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IPersistComponentSettings.cs" }, { "DocsId": "P:System.Configuration.IPersistComponentSettings.SaveSettings", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IPersistComponentSettings.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IPersistComponentSettings.cs" }, { "DocsId": "P:System.Configuration.IPersistComponentSettings.SettingsKey", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IPersistComponentSettings.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IPersistComponentSettings.cs" } ], "DocsId": "T:System.Configuration.IPersistComponentSettings", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IPersistComponentSettings.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IPersistComponentSettings.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ApplicationSettingsBase.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L27C9-L35C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L27C9-L35C10" }, { "DocsId": "M:System.Configuration.ApplicationSettingsBase.#ctor(System.ComponentModel.IComponent)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L42C63-L44C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L42C63-L44C10" }, { "DocsId": "M:System.Configuration.ApplicationSettingsBase.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L27C9-L52C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L27C9-L52C10" }, { "DocsId": "M:System.Configuration.ApplicationSettingsBase.#ctor(System.ComponentModel.IComponent,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L57C83-L85C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L57C83-L85C10" }, { "DocsId": "M:System.Configuration.ApplicationSettingsBase.GetPreviousVersion(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L283C13-L304C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L283C13-L304C25" }, { "DocsId": "M:System.Configuration.ApplicationSettingsBase.OnPropertyChanged(System.Object,System.ComponentModel.PropertyChangedEventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L312C13-L313C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L312C13-L313C10" }, { "DocsId": "M:System.Configuration.ApplicationSettingsBase.OnSettingChanging(System.Object,System.Configuration.SettingChangingEventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L320C13-L321C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L320C13-L321C10" }, { "DocsId": "M:System.Configuration.ApplicationSettingsBase.OnSettingsLoaded(System.Object,System.Configuration.SettingsLoadedEventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L328C13-L329C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L328C13-L329C10" }, { "DocsId": "M:System.Configuration.ApplicationSettingsBase.OnSettingsSaving(System.Object,System.ComponentModel.CancelEventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L336C13-L337C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L336C13-L337C10" }, { "DocsId": "M:System.Configuration.ApplicationSettingsBase.Reload", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L344C13-L351C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L344C13-L351C10" }, { "DocsId": "M:System.Configuration.ApplicationSettingsBase.Reset", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L359C13-L368C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L359C13-L368C10" }, { "DocsId": "M:System.Configuration.ApplicationSettingsBase.Save", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L375C13-L382C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L375C13-L382C10" }, { "DocsId": "M:System.Configuration.ApplicationSettingsBase.Upgrade", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L426C13-L435C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L426C13-L435C10" }, { "DocsId": "E:System.Configuration.ApplicationSettingsBase.PropertyChanged", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L223C17-L224C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L223C17-L224C14" }, { "DocsId": "E:System.Configuration.ApplicationSettingsBase.SettingChanging", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L239C17-L240C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L239C17-L240C14" }, { "DocsId": "E:System.Configuration.ApplicationSettingsBase.SettingsLoaded", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L254C17-L255C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L254C17-L255C14" }, { "DocsId": "E:System.Configuration.ApplicationSettingsBase.SettingsSaving", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L269C17-L270C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L269C17-L270C14" }, { "DocsId": "P:System.Configuration.ApplicationSettingsBase.Context", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L95C17-L116C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L95C17-L116C33" }, { "DocsId": "P:System.Configuration.ApplicationSettingsBase.Properties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L130C17-L151C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L130C17-L151C34" }, { "DocsId": "P:System.Configuration.ApplicationSettingsBase.PropertyValues", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L163C17-L163C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L163C17-L163C44" }, { "DocsId": "P:System.Configuration.ApplicationSettingsBase.Providers", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L175C17-L195C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L175C17-L195C35" }, { "DocsId": "P:System.Configuration.ApplicationSettingsBase.SettingsKey", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L207C17-L207C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L207C17-L207C37" }, { "DocsId": "P:System.Configuration.ApplicationSettingsBase.Item(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L391C17-L403C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L391C17-L403C14" } ], "DocsId": "T:System.Configuration.ApplicationSettingsBase", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ApplicationScopedSettingAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationScopedSettingAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationScopedSettingAttribute.cs" } ], "DocsId": "T:System.Configuration.ApplicationScopedSettingAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationScopedSettingAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationScopedSettingAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ApplicationSettingsGroup.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsGroup.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsGroup.cs" } ], "DocsId": "T:System.Configuration.ApplicationSettingsGroup", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsGroup.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsGroup.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.AppSettingsReader.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/AppSettingsReader.cs#L19C9-L22C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/AppSettingsReader.cs#L19C9-L22C10" }, { "DocsId": "M:System.Configuration.AppSettingsReader.GetValue(System.String,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/AppSettingsReader.cs#L33C13-L81C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/AppSettingsReader.cs#L33C13-L81C10" } ], "DocsId": "T:System.Configuration.AppSettingsReader", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/AppSettingsReader.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/AppSettingsReader.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.AppSettingsSection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/AppSettingsSection.cs#L18C9-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/AppSettingsSection.cs#L18C9-L21C10" }, { "DocsId": "M:System.Configuration.AppSettingsSection.GetRuntimeObject", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/AppSettingsSection.cs#L73C13-L74C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/AppSettingsSection.cs#L73C13-L74C37" }, { "DocsId": "M:System.Configuration.AppSettingsSection.Reset(System.Configuration.ConfigurationElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/AppSettingsSection.cs#L79C13-L86C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/AppSettingsSection.cs#L79C13-L86C10" }, { "DocsId": "M:System.Configuration.AppSettingsSection.DeserializeElement(System.Xml.XmlReader,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/AppSettingsSection.cs#L90C13-L141C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/AppSettingsSection.cs#L90C13-L141C10" }, { "DocsId": "P:System.Configuration.AppSettingsSection.Properties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/AppSettingsSection.cs#L23C83-L23C108" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/AppSettingsSection.cs#L23C83-L23C108" }, { "DocsId": "P:System.Configuration.AppSettingsSection.Settings", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/AppSettingsSection.cs#L29C60-L29C116" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/AppSettingsSection.cs#L29C60-L29C116" }, { "DocsId": "P:System.Configuration.AppSettingsSection.File", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/AppSettingsSection.cs#L36C17-L37C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/AppSettingsSection.cs#L36C17-L37C50" } ], "DocsId": "T:System.Configuration.AppSettingsSection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/AppSettingsSection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/AppSettingsSection.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.CallbackValidator.#ctor(System.Type,System.Configuration.ValidatorCallback)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/CallbackValidator.cs#L11C75-L15C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/CallbackValidator.cs#L11C75-L15C10" }, { "DocsId": "M:System.Configuration.CallbackValidator.CanValidate(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/CallbackValidator.cs#L31C13-L31C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/CallbackValidator.cs#L31C13-L31C55" }, { "DocsId": "M:System.Configuration.CallbackValidator.Validate(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/CallbackValidator.cs#L36C13-L37C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/CallbackValidator.cs#L36C13-L37C10" } ], "DocsId": "T:System.Configuration.CallbackValidator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/CallbackValidator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/CallbackValidator.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.CallbackValidatorAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/CallbackValidatorAttribute.cs#L12C9-L12C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/CallbackValidatorAttribute.cs#L12C9-L12C59" }, { "DocsId": "P:System.Configuration.CallbackValidatorAttribute.ValidatorInstance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/CallbackValidatorAttribute.cs#L19C17-L41C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/CallbackValidatorAttribute.cs#L19C17-L41C63" }, { "DocsId": "P:System.Configuration.CallbackValidatorAttribute.Type", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/CallbackValidatorAttribute.cs#L47C19-L47C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/CallbackValidatorAttribute.cs#L47C19-L47C32" }, { "DocsId": "P:System.Configuration.CallbackValidatorAttribute.CallbackMethodName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/CallbackValidatorAttribute.cs#L57C19-L57C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/CallbackValidatorAttribute.cs#L57C19-L57C46" } ], "DocsId": "T:System.Configuration.CallbackValidatorAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/CallbackValidatorAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/CallbackValidatorAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ClientSettingsSection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ClientSettingsSection.cs#L14C9-L16C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ClientSettingsSection.cs#L14C9-L16C10" }, { "DocsId": "P:System.Configuration.ClientSettingsSection.Properties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ClientSettingsSection.cs#L22C17-L22C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ClientSettingsSection.cs#L22C17-L22C37" }, { "DocsId": "P:System.Configuration.ClientSettingsSection.Settings", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ClientSettingsSection.cs#L31C17-L31C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ClientSettingsSection.cs#L31C17-L31C71" } ], "DocsId": "T:System.Configuration.ClientSettingsSection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ClientSettingsSection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ClientSettingsSection.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.CommaDelimitedStringCollectionConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/CommaDelimitedStringAttributeCollectionConverter.cs#L13C13-L15C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/CommaDelimitedStringAttributeCollectionConverter.cs#L13C13-L15C46" }, { "DocsId": "M:System.Configuration.CommaDelimitedStringCollectionConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/CommaDelimitedStringAttributeCollectionConverter.cs#L20C13-L22C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/CommaDelimitedStringAttributeCollectionConverter.cs#L20C13-L22C40" }, { "DocsId": "M:System.Configuration.CommaDelimitedStringCollectionConverter.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/CommaDelimitedStringAttributeCollectionConverter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/CommaDelimitedStringAttributeCollectionConverter.cs" } ], "DocsId": "T:System.Configuration.CommaDelimitedStringCollectionConverter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/CommaDelimitedStringAttributeCollectionConverter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/CommaDelimitedStringAttributeCollectionConverter.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.Configuration.GetSection(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L167C13-L169C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L167C13-L169C28" }, { "DocsId": "M:System.Configuration.Configuration.GetSectionGroup(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L174C13-L176C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L174C13-L176C33" }, { "DocsId": "M:System.Configuration.Configuration.Save", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L181C13-L182C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L181C13-L182C10" }, { "DocsId": "M:System.Configuration.Configuration.Save(System.Configuration.ConfigurationSaveMode)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L186C13-L187C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L186C13-L187C10" }, { "DocsId": "M:System.Configuration.Configuration.Save(System.Configuration.ConfigurationSaveMode,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L191C13-L192C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L191C13-L192C10" }, { "DocsId": "M:System.Configuration.Configuration.SaveAs(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L196C13-L197C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L196C13-L197C10" }, { "DocsId": "M:System.Configuration.Configuration.SaveAs(System.String,System.Configuration.ConfigurationSaveMode)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L201C13-L202C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L201C13-L202C10" }, { "DocsId": "M:System.Configuration.Configuration.SaveAs(System.String,System.Configuration.ConfigurationSaveMode,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L206C13-L209C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L206C13-L209C10" }, { "DocsId": "P:System.Configuration.Configuration.AppSettings", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L78C50-L78C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L78C50-L78C95" }, { "DocsId": "P:System.Configuration.Configuration.ConnectionStrings", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L80C62-L80C119" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L80C62-L80C119" }, { "DocsId": "P:System.Configuration.Configuration.FilePath", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L82C35-L82C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L82C35-L82C70" }, { "DocsId": "P:System.Configuration.Configuration.HasFile", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L84C32-L84C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L84C32-L84C55" }, { "DocsId": "P:System.Configuration.Configuration.Locations", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L87C16-L87C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L87C16-L87C72" }, { "DocsId": "P:System.Configuration.Configuration.EvaluationContext", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L90C16-L90C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L90C16-L90C70" }, { "DocsId": "P:System.Configuration.Configuration.RootSectionGroup", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L96C17-L102C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L96C17-L102C42" }, { "DocsId": "P:System.Configuration.Configuration.Sections", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L106C59-L106C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L106C59-L106C84" }, { "DocsId": "P:System.Configuration.Configuration.SectionGroups", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L108C69-L108C99" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L108C69-L108C99" }, { "DocsId": "P:System.Configuration.Configuration.NamespaceDeclared", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L116C19-L116C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L116C19-L116C57" }, { "DocsId": "P:System.Configuration.Configuration.TypeStringTransformer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L122C19-L122C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L122C19-L122C49" }, { "DocsId": "P:System.Configuration.Configuration.AssemblyStringTransformer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L135C19-L135C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L135C19-L135C53" }, { "DocsId": "P:System.Configuration.Configuration.TargetFramework", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L148C13-L148C17" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L148C13-L148C17" } ], "DocsId": "T:System.Configuration.Configuration", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs" }, { "Members": [ { "DocsId": "F:System.Configuration.ConfigurationAllowDefinition.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationAllowDefinition.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationAllowDefinition.cs" }, { "DocsId": "F:System.Configuration.ConfigurationAllowDefinition.MachineOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationAllowDefinition.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationAllowDefinition.cs" }, { "DocsId": "F:System.Configuration.ConfigurationAllowDefinition.MachineToWebRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationAllowDefinition.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationAllowDefinition.cs" }, { "DocsId": "F:System.Configuration.ConfigurationAllowDefinition.MachineToApplication", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationAllowDefinition.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationAllowDefinition.cs" }, { "DocsId": "F:System.Configuration.ConfigurationAllowDefinition.Everywhere", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationAllowDefinition.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationAllowDefinition.cs" } ], "DocsId": "T:System.Configuration.ConfigurationAllowDefinition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationAllowDefinition.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationAllowDefinition.cs" }, { "Members": [ { "DocsId": "F:System.Configuration.ConfigurationAllowExeDefinition.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationAllowExeDefinition.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationAllowExeDefinition.cs" }, { "DocsId": "F:System.Configuration.ConfigurationAllowExeDefinition.MachineOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationAllowExeDefinition.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationAllowExeDefinition.cs" }, { "DocsId": "F:System.Configuration.ConfigurationAllowExeDefinition.MachineToApplication", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationAllowExeDefinition.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationAllowExeDefinition.cs" }, { "DocsId": "F:System.Configuration.ConfigurationAllowExeDefinition.MachineToRoamingUser", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationAllowExeDefinition.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationAllowExeDefinition.cs" }, { "DocsId": "F:System.Configuration.ConfigurationAllowExeDefinition.MachineToLocalUser", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationAllowExeDefinition.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationAllowExeDefinition.cs" } ], "DocsId": "T:System.Configuration.ConfigurationAllowExeDefinition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationAllowExeDefinition.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationAllowExeDefinition.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ConfigurationCollectionAttribute.#ctor(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationCollectionAttribute.cs#L57C13-L22C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationCollectionAttribute.cs#L57C13-L22C10" }, { "DocsId": "P:System.Configuration.ConfigurationCollectionAttribute.ItemType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationCollectionAttribute.cs#L24C32-L24C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationCollectionAttribute.cs#L24C32-L24C36" }, { "DocsId": "P:System.Configuration.ConfigurationCollectionAttribute.AddItemName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationCollectionAttribute.cs#L28C19-L28C92" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationCollectionAttribute.cs#L28C19-L28C92" }, { "DocsId": "P:System.Configuration.ConfigurationCollectionAttribute.RemoveItemName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationCollectionAttribute.cs#L38C19-L38C98" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationCollectionAttribute.cs#L38C19-L38C98" }, { "DocsId": "P:System.Configuration.ConfigurationCollectionAttribute.ClearItemsName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationCollectionAttribute.cs#L48C19-L48C98" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationCollectionAttribute.cs#L48C19-L48C98" }, { "DocsId": "P:System.Configuration.ConfigurationCollectionAttribute.CollectionType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationCollectionAttribute.cs#L56C68-L56C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationCollectionAttribute.cs#L56C68-L56C72" } ], "DocsId": "T:System.Configuration.ConfigurationCollectionAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationCollectionAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationCollectionAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ConfigurationConverterBase.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationConverterBase.cs#L12C13-L12C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationConverterBase.cs#L12C13-L12C43" }, { "DocsId": "M:System.Configuration.ConfigurationConverterBase.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationConverterBase.cs#L17C13-L17C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationConverterBase.cs#L17C13-L17C43" }, { "DocsId": "M:System.Configuration.ConfigurationConverterBase.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationConverterBase.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationConverterBase.cs" } ], "DocsId": "T:System.Configuration.ConfigurationConverterBase", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationConverterBase.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationConverterBase.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ConfigurationElement.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L53C9-L70C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L53C9-L70C10" }, { "DocsId": "M:System.Configuration.ConfigurationElement.Init", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L241C13-L242C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L241C13-L242C10" }, { "DocsId": "M:System.Configuration.ConfigurationElement.IsModified", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L414C13-L426C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L414C13-L426C10" }, { "DocsId": "M:System.Configuration.ConfigurationElement.ResetModified", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L430C13-L437C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L430C13-L437C10" }, { "DocsId": "M:System.Configuration.ConfigurationElement.IsReadOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L441C13-L441C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L441C13-L441C30" }, { "DocsId": "M:System.Configuration.ConfigurationElement.SetReadOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L446C13-L448C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L446C13-L448C10" }, { "DocsId": "M:System.Configuration.ConfigurationElement.ListErrors(System.Collections.IList)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L496C55-L504C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L496C55-L504C10" }, { "DocsId": "M:System.Configuration.ConfigurationElement.InitializeDefault", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L506C63-L506C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L506C63-L506C64" }, { "DocsId": "M:System.Configuration.ConfigurationElement.Reset(System.Configuration.ConfigurationElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L606C13-L670C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L606C13-L670C10" }, { "DocsId": "M:System.Configuration.ConfigurationElement.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L674C13-L696C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L674C13-L696C10" }, { "DocsId": "M:System.Configuration.ConfigurationElement.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L700C13-L706C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L700C13-L706C30" }, { "DocsId": "M:System.Configuration.ConfigurationElement.SetPropertyValue(System.Configuration.ConfigurationProperty,System.Object,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L829C13-L846C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L829C13-L846C10" }, { "DocsId": "M:System.Configuration.ConfigurationElement.Unmerge(System.Configuration.ConfigurationElement,System.Configuration.ConfigurationElement,System.Configuration.ConfigurationSaveMode)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L878C13-L1007C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L878C13-L1007C10" }, { "DocsId": "M:System.Configuration.ConfigurationElement.SerializeToXmlElement(System.Xml.XmlWriter,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L1011C13-L1035C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L1011C13-L1035C32" }, { "DocsId": "M:System.Configuration.ConfigurationElement.SerializeElement(System.Xml.XmlWriter,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L1040C13-L1177C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L1040C13-L1177C32" }, { "DocsId": "M:System.Configuration.ConfigurationElement.DeserializeElement(System.Xml.XmlReader,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L1385C13-L1706C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L1385C13-L1706C10" }, { "DocsId": "M:System.Configuration.ConfigurationElement.OnRequiredPropertyNotFound(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L1833C13-L1835C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L1833C13-L1835C43" }, { "DocsId": "M:System.Configuration.ConfigurationElement.PostDeserialize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L1841C9-L1841C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L1841C9-L1841C10" }, { "DocsId": "M:System.Configuration.ConfigurationElement.PreSerialize(System.Xml.XmlWriter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L1846C9-L1846C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L1846C9-L1846C10" }, { "DocsId": "M:System.Configuration.ConfigurationElement.OnDeserializeUnrecognizedAttribute(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L1850C13-L1850C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L1850C13-L1850C26" }, { "DocsId": "M:System.Configuration.ConfigurationElement.OnDeserializeUnrecognizedElement(System.String,System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L1855C13-L1855C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L1855C13-L1855C26" }, { "DocsId": "M:System.Configuration.ConfigurationElement.GetTransformedTypeString(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L1860C13-L1863C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L1860C13-L1863C66" }, { "DocsId": "M:System.Configuration.ConfigurationElement.GetTransformedAssemblyString(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L1868C13-L1871C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L1868C13-L1871C74" }, { "DocsId": "P:System.Configuration.ConfigurationElement.LockAttributes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L89C62-L89C175" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L89C62-L89C175" }, { "DocsId": "P:System.Configuration.ConfigurationElement.LockAllAttributesExcept", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L91C71-L91C212" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L91C71-L91C212" }, { "DocsId": "P:System.Configuration.ConfigurationElement.LockElements", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L93C60-L93C169" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L93C60-L93C169" }, { "DocsId": "P:System.Configuration.ConfigurationElement.LockAllElementsExcept", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L95C69-L95C216" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L95C69-L95C216" }, { "DocsId": "P:System.Configuration.ConfigurationElement.LockItem", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L99C19-L99C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L99C19-L99C82" }, { "DocsId": "P:System.Configuration.ConfigurationElement.Item(System.Configuration.ConfigurationProperty)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L118C17-L160C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L118C17-L160C26" }, { "DocsId": "P:System.Configuration.ConfigurationElement.Item(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L172C17-L178C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L172C17-L178C35" }, { "DocsId": "P:System.Configuration.ConfigurationElement.Properties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L193C17-L196C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L193C17-L196C31" }, { "DocsId": "P:System.Configuration.ConfigurationElement.ElementInformation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L202C57-L202C108" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L202C57-L202C108" }, { "DocsId": "P:System.Configuration.ConfigurationElement.EvaluationContext", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L208C17-L219C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L208C17-L219C37" }, { "DocsId": "P:System.Configuration.ConfigurationElement.ElementProperty", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L223C84-L223C100" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L223C84-L223C100" }, { "DocsId": "P:System.Configuration.ConfigurationElement.HasContext", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L225C38-L225C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L225C38-L225C59" }, { "DocsId": "P:System.Configuration.ConfigurationElement.CurrentConfiguration", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L227C54-L227C89" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L227C54-L227C89" } ], "DocsId": "T:System.Configuration.ConfigurationElement", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ConfigurationElementCollection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L17C9-L30C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L17C9-L30C55" }, { "DocsId": "M:System.Configuration.ConfigurationElementCollection.#ctor(System.Collections.IComparer)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L17C9-L40C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L17C9-L40C10" }, { "DocsId": "M:System.Configuration.ConfigurationElementCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L130C37-L132C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L130C37-L132C10" }, { "DocsId": "M:System.Configuration.ConfigurationElementCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L136C13-L136C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L136C13-L136C40" }, { "DocsId": "M:System.Configuration.ConfigurationElementCollection.IsModified", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L149C13-L162C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L149C13-L162C10" }, { "DocsId": "M:System.Configuration.ConfigurationElementCollection.ResetModified", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L166C13-L176C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L166C13-L176C10" }, { "DocsId": "M:System.Configuration.ConfigurationElementCollection.IsReadOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L180C13-L180C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L180C13-L180C30" }, { "DocsId": "M:System.Configuration.ConfigurationElementCollection.SetReadOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L185C13-L193C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L185C13-L193C10" }, { "DocsId": "M:System.Configuration.ConfigurationElementCollection.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L211C13-L235C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L211C13-L235C10" }, { "DocsId": "M:System.Configuration.ConfigurationElementCollection.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L239C13-L245C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L239C13-L245C30" }, { "DocsId": "M:System.Configuration.ConfigurationElementCollection.Unmerge(System.Configuration.ConfigurationElement,System.Configuration.ConfigurationElement,System.Configuration.ConfigurationSaveMode)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L253C13-L454C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L253C13-L454C10" }, { "DocsId": "M:System.Configuration.ConfigurationElementCollection.Reset(System.Configuration.ConfigurationElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L458C13-L485C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L458C13-L485C10" }, { "DocsId": "M:System.Configuration.ConfigurationElementCollection.CopyTo(System.Configuration.ConfigurationElement[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L489C13-L490C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L489C13-L490C10" }, { "DocsId": "M:System.Configuration.ConfigurationElementCollection.BaseAdd(System.Configuration.ConfigurationElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L494C13-L495C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L494C13-L495C10" }, { "DocsId": "M:System.Configuration.ConfigurationElementCollection.BaseAdd(System.Configuration.ConfigurationElement,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L499C13-L500C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L499C13-L500C10" }, { "DocsId": "M:System.Configuration.ConfigurationElementCollection.BaseIndexOf(System.Configuration.ConfigurationElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L587C13-L596C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L587C13-L596C10" }, { "DocsId": "M:System.Configuration.ConfigurationElementCollection.BaseAdd(System.Int32,System.Configuration.ConfigurationElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L677C13-L678C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L677C13-L678C10" }, { "DocsId": "M:System.Configuration.ConfigurationElementCollection.BaseRemove(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L727C13-L728C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L727C13-L728C10" }, { "DocsId": "M:System.Configuration.ConfigurationElementCollection.BaseGet(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L835C37-L839C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L835C37-L839C10" }, { "DocsId": "M:System.Configuration.ConfigurationElementCollection.BaseIsRemoved(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L843C37-L847C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L843C37-L847C10" }, { "DocsId": "M:System.Configuration.ConfigurationElementCollection.BaseGet(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L851C13-L869C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L851C13-L869C90" }, { "DocsId": "M:System.Configuration.ConfigurationElementCollection.BaseGetAllKeys", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L874C13-L882C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L874C13-L882C25" }, { "DocsId": "M:System.Configuration.ConfigurationElementCollection.BaseGetKey(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L887C13-L905C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L887C13-L905C39" }, { "DocsId": "M:System.Configuration.ConfigurationElementCollection.BaseClear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L910C13-L959C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L910C13-L959C10" }, { "DocsId": "M:System.Configuration.ConfigurationElementCollection.BaseRemoveAt(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L963C13-L1028C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L963C13-L1028C10" }, { "DocsId": "M:System.Configuration.ConfigurationElementCollection.SerializeElement(System.Xml.XmlWriter,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L1032C13-L1091C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L1032C13-L1091C32" }, { "DocsId": "M:System.Configuration.ConfigurationElementCollection.OnDeserializeUnrecognizedElement(System.String,System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L1096C13-L1162C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L1096C13-L1162C25" }, { "DocsId": "M:System.Configuration.ConfigurationElementCollection.CreateNewElement(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L1183C13-L1183C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L1183C13-L1183C39" }, { "DocsId": "M:System.Configuration.ConfigurationElementCollection.CreateNewElement", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs" }, { "DocsId": "M:System.Configuration.ConfigurationElementCollection.GetElementKey(System.Configuration.ConfigurationElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs" }, { "DocsId": "M:System.Configuration.ConfigurationElementCollection.IsElementRemovable(System.Configuration.ConfigurationElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L1199C13-L1199C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L1199C13-L1199C25" }, { "DocsId": "M:System.Configuration.ConfigurationElementCollection.IsElementName(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L1210C13-L1210C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L1210C13-L1210C26" }, { "DocsId": "P:System.Configuration.ConfigurationElementCollection.AddElementName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L46C19-L46C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L46C19-L46C38" }, { "DocsId": "P:System.Configuration.ConfigurationElementCollection.RemoveElementName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L57C19-L57C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L57C19-L57C41" }, { "DocsId": "P:System.Configuration.ConfigurationElementCollection.ClearElementName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L68C19-L68C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L68C19-L68C40" }, { "DocsId": "P:System.Configuration.ConfigurationElementCollection.EmitClear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L79C19-L79C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L79C19-L79C40" }, { "DocsId": "P:System.Configuration.ConfigurationElementCollection.ElementName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L93C49-L93C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L93C49-L93C51" }, { "DocsId": "P:System.Configuration.ConfigurationElementCollection.ThrowOnDuplicate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L116C16-L117C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L116C16-L117C94" }, { "DocsId": "P:System.Configuration.ConfigurationElementCollection.CollectionType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L120C16-L120C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L120C16-L120C68" }, { "DocsId": "P:System.Configuration.ConfigurationElementCollection.Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L122C29-L122C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L122C29-L122C60" }, { "DocsId": "P:System.Configuration.ConfigurationElementCollection.IsSynchronized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L124C39-L124C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L124C39-L124C44" }, { "DocsId": "P:System.Configuration.ConfigurationElementCollection.SyncRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L126C35-L126C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L126C35-L126C39" } ], "DocsId": "T:System.Configuration.ConfigurationElementCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs" }, { "Members": [ { "DocsId": "F:System.Configuration.ConfigurationElementCollectionType.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollectionType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollectionType.cs" }, { "DocsId": "F:System.Configuration.ConfigurationElementCollectionType.BasicMap", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollectionType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollectionType.cs" }, { "DocsId": "F:System.Configuration.ConfigurationElementCollectionType.AddRemoveClearMap", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollectionType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollectionType.cs" }, { "DocsId": "F:System.Configuration.ConfigurationElementCollectionType.BasicMapAlternate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollectionType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollectionType.cs" }, { "DocsId": "F:System.Configuration.ConfigurationElementCollectionType.AddRemoveClearMapAlternate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollectionType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollectionType.cs" } ], "DocsId": "T:System.Configuration.ConfigurationElementCollectionType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollectionType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollectionType.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ConfigurationElementProperty.#ctor(System.Configuration.ConfigurationValidatorBase)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementProperty.cs#L12C9-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementProperty.cs#L12C9-L20C10" }, { "DocsId": "P:System.Configuration.ConfigurationElementProperty.Validator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementProperty.cs#L22C55-L22C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementProperty.cs#L22C55-L22C59" } ], "DocsId": "T:System.Configuration.ConfigurationElementProperty", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementProperty.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementProperty.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ConfigurationErrorsException.#ctor(System.String,System.Exception,System.String,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L36C15-L40C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L36C15-L40C10" }, { "DocsId": "M:System.Configuration.ConfigurationErrorsException.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L43C13-L44C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L43C13-L44C12" }, { "DocsId": "M:System.Configuration.ConfigurationErrorsException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L47C13-L48C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L47C13-L48C12" }, { "DocsId": "M:System.Configuration.ConfigurationErrorsException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L51C13-L52C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L51C13-L52C12" }, { "DocsId": "M:System.Configuration.ConfigurationErrorsException.#ctor(System.String,System.String,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L55C13-L56C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L55C13-L56C12" }, { "DocsId": "M:System.Configuration.ConfigurationErrorsException.#ctor(System.String,System.Xml.XmlNode)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L59C13-L60C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L59C13-L60C12" }, { "DocsId": "M:System.Configuration.ConfigurationErrorsException.#ctor(System.String,System.Exception,System.Xml.XmlNode)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L63C13-L64C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L63C13-L64C12" }, { "DocsId": "M:System.Configuration.ConfigurationErrorsException.#ctor(System.String,System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L67C13-L68C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L67C13-L68C12" }, { "DocsId": "M:System.Configuration.ConfigurationErrorsException.#ctor(System.String,System.Exception,System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L71C13-L72C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L71C13-L72C12" }, { "DocsId": "M:System.Configuration.ConfigurationErrorsException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L109C13-L139C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L109C13-L139C10" }, { "DocsId": "M:System.Configuration.ConfigurationErrorsException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L205C13-L228C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L205C13-L228C10" }, { "DocsId": "M:System.Configuration.ConfigurationErrorsException.GetLineNumber(System.Xml.XmlNode)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L233C13-L233C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L233C13-L233C75" }, { "DocsId": "M:System.Configuration.ConfigurationErrorsException.GetFilename(System.Xml.XmlNode)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L238C13-L238C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L238C13-L238C73" }, { "DocsId": "M:System.Configuration.ConfigurationErrorsException.GetLineNumber(System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L244C13-L244C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L244C13-L244C77" }, { "DocsId": "M:System.Configuration.ConfigurationErrorsException.GetFilename(System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L249C13-L249C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L249C13-L249C75" }, { "DocsId": "P:System.Configuration.ConfigurationErrorsException.Message", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L147C17-L157C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L147C17-L157C35" }, { "DocsId": "P:System.Configuration.ConfigurationErrorsException.Filename", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L161C44-L161C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L161C44-L161C58" }, { "DocsId": "P:System.Configuration.ConfigurationErrorsException.Line", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L163C37-L163C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L163C37-L163C47" }, { "DocsId": "P:System.Configuration.ConfigurationErrorsException.Errors", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L169C17-L175C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L169C17-L175C26" } ], "DocsId": "T:System.Configuration.ConfigurationErrorsException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ConfigurationException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs#L32C15-L35C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs#L32C15-L35C10" }, { "DocsId": "M:System.Configuration.ConfigurationException.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs#L38C43-L38C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs#L38C43-L38C72" }, { "DocsId": "M:System.Configuration.ConfigurationException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs#L41C57-L41C89" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs#L41C57-L41C89" }, { "DocsId": "M:System.Configuration.ConfigurationException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs#L44C74-L44C107" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs#L44C74-L44C107" }, { "DocsId": "M:System.Configuration.ConfigurationException.#ctor(System.String,System.Xml.XmlNode)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs#L48C15-L49C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs#L48C15-L49C12" }, { "DocsId": "M:System.Configuration.ConfigurationException.#ctor(System.String,System.Exception,System.Xml.XmlNode)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs#L53C15-L54C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs#L53C15-L54C12" }, { "DocsId": "M:System.Configuration.ConfigurationException.#ctor(System.String,System.String,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs#L57C84-L57C123" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs#L57C84-L57C123" }, { "DocsId": "M:System.Configuration.ConfigurationException.#ctor(System.String,System.Exception,System.String,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs#L60C101-L63C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs#L60C101-L63C10" }, { "DocsId": "M:System.Configuration.ConfigurationException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs#L104C13-L107C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs#L104C13-L107C10" }, { "DocsId": "M:System.Configuration.ConfigurationException.GetXmlNodeFilename(System.Xml.XmlNode)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs#L110C66-L110C118" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs#L110C66-L110C118" }, { "DocsId": "M:System.Configuration.ConfigurationException.GetXmlNodeLineNumber(System.Xml.XmlNode)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs#L113C65-L113C108" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs#L113C65-L113C108" }, { "DocsId": "P:System.Configuration.ConfigurationException.Message", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs#L71C17-L81C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs#L71C17-L81C35" }, { "DocsId": "P:System.Configuration.ConfigurationException.BareMessage", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs#L85C46-L85C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs#L85C46-L85C58" }, { "DocsId": "P:System.Configuration.ConfigurationException.Filename", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs#L87C43-L87C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs#L87C43-L87C52" }, { "DocsId": "P:System.Configuration.ConfigurationException.Line", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs#L89C36-L89C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs#L89C36-L89C41" } ], "DocsId": "T:System.Configuration.ConfigurationException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ConfigurationFileMap.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationFileMap.cs#L20C9-L23C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationFileMap.cs#L20C9-L23C10" }, { "DocsId": "M:System.Configuration.ConfigurationFileMap.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationFileMap.cs#L25C9-L35C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationFileMap.cs#L25C9-L35C10" }, { "DocsId": "M:System.Configuration.ConfigurationFileMap.Clone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationFileMap.cs#L51C13-L51C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationFileMap.cs#L51C13-L51C51" }, { "DocsId": "P:System.Configuration.ConfigurationFileMap.MachineConfigFilename", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationFileMap.cs#L45C19-L45C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationFileMap.cs#L45C19-L45C46" } ], "DocsId": "T:System.Configuration.ConfigurationFileMap", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationFileMap.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationFileMap.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ConfigurationLocation.OpenConfiguration", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLocation.cs#L20C13-L20C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLocation.cs#L20C13-L20C60" }, { "DocsId": "P:System.Configuration.ConfigurationLocation.Path", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLocation.cs#L16C30-L16C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLocation.cs#L16C30-L16C34" } ], "DocsId": "T:System.Configuration.ConfigurationLocation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLocation.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLocation.cs" }, { "Members": [ { "DocsId": "P:System.Configuration.ConfigurationLocationCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLocationCollection.cs#L15C57-L15C96" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLocationCollection.cs#L15C57-L15C96" } ], "DocsId": "T:System.Configuration.ConfigurationLocationCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLocationCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLocationCollection.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ConfigurationLockCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs#L112C13-L113C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs#L112C13-L113C10" }, { "DocsId": "M:System.Configuration.ConfigurationLockCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs#L117C13-L117C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs#L117C13-L117C55" }, { "DocsId": "M:System.Configuration.ConfigurationLockCollection.Add(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs#L127C13-L193C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs#L127C13-L193C10" }, { "DocsId": "M:System.Configuration.ConfigurationLockCollection.Remove(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs#L252C13-L275C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs#L252C13-L275C10" }, { "DocsId": "M:System.Configuration.ConfigurationLockCollection.Clear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs#L302C13-L303C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs#L302C13-L303C10" }, { "DocsId": "M:System.Configuration.ConfigurationLockCollection.Contains(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs#L307C13-L308C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs#L307C13-L308C55" }, { "DocsId": "M:System.Configuration.ConfigurationLockCollection.CopyTo(System.String[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs#L313C13-L314C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs#L313C13-L314C10" }, { "DocsId": "M:System.Configuration.ConfigurationLockCollection.IsReadOnly(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs#L323C13-L326C111" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs#L323C13-L326C111" }, { "DocsId": "M:System.Configuration.ConfigurationLockCollection.SetFromList(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs#L331C13-L338C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs#L331C13-L338C10" }, { "DocsId": "P:System.Configuration.ConfigurationLockCollection.IsModified", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs#L60C34-L60C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs#L60C34-L60C38" }, { "DocsId": "P:System.Configuration.ConfigurationLockCollection.AttributeList", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs#L68C17-L75C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs#L68C17-L75C38" }, { "DocsId": "P:System.Configuration.ConfigurationLockCollection.HasParentElements", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs#L84C17-L100C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs#L84C17-L100C31" }, { "DocsId": "P:System.Configuration.ConfigurationLockCollection.Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs#L104C29-L104C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs#L104C29-L104C54" }, { "DocsId": "P:System.Configuration.ConfigurationLockCollection.IsSynchronized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs#L106C39-L106C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs#L106C39-L106C44" }, { "DocsId": "P:System.Configuration.ConfigurationLockCollection.SyncRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs#L108C35-L108C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs#L108C35-L108C39" } ], "DocsId": "T:System.Configuration.ConfigurationLockCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ConfigurationManager.GetSection(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationManager.cs#L150C13-L155C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationManager.cs#L150C13-L155C28" }, { "DocsId": "M:System.Configuration.ConfigurationManager.RefreshSection(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationManager.cs#L162C13-L167C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationManager.cs#L162C13-L167C10" }, { "DocsId": "M:System.Configuration.ConfigurationManager.OpenMachineConfiguration", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationManager.cs#L171C13-L171C92" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationManager.cs#L171C13-L171C92" }, { "DocsId": "M:System.Configuration.ConfigurationManager.OpenMappedMachineConfiguration(System.Configuration.ConfigurationFileMap)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationManager.cs#L176C13-L176C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationManager.cs#L176C13-L176C95" }, { "DocsId": "M:System.Configuration.ConfigurationManager.OpenExeConfiguration(System.Configuration.ConfigurationUserLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationManager.cs#L181C13-L181C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationManager.cs#L181C13-L181C75" }, { "DocsId": "M:System.Configuration.ConfigurationManager.OpenExeConfiguration(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationManager.cs#L186C13-L186C96" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationManager.cs#L186C13-L186C96" }, { "DocsId": "M:System.Configuration.ConfigurationManager.OpenMappedExeConfiguration(System.Configuration.ExeConfigurationFileMap,System.Configuration.ConfigurationUserLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationManager.cs#L192C13-L192C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationManager.cs#L192C13-L192C78" }, { "DocsId": "M:System.Configuration.ConfigurationManager.OpenMappedExeConfiguration(System.Configuration.ExeConfigurationFileMap,System.Configuration.ConfigurationUserLevel,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationManager.cs#L198C13-L198C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationManager.cs#L198C13-L198C87" }, { "DocsId": "P:System.Configuration.ConfigurationManager.AppSettings", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationManager.cs#L37C17-L45C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationManager.cs#L37C17-L45C53" }, { "DocsId": "P:System.Configuration.ConfigurationManager.ConnectionStrings", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationManager.cs#L53C17-L64C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationManager.cs#L53C17-L64C67" } ], "DocsId": "T:System.Configuration.ConfigurationManager", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationManager.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationManager.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ConfigurationProperty.#ctor(System.String,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L20C9-L36C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L20C9-L36C10" }, { "DocsId": "M:System.Configuration.ConfigurationProperty.#ctor(System.String,System.Type,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L39C15-L40C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L39C15-L40C12" }, { "DocsId": "M:System.Configuration.ConfigurationProperty.#ctor(System.String,System.Type,System.Object,System.Configuration.ConfigurationPropertyOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L43C15-L44C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L43C15-L44C12" }, { "DocsId": "M:System.Configuration.ConfigurationProperty.#ctor(System.String,System.Type,System.Object,System.ComponentModel.TypeConverter,System.Configuration.ConfigurationValidatorBase,System.Configuration.ConfigurationPropertyOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L52C15-L53C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L52C15-L53C12" }, { "DocsId": "M:System.Configuration.ConfigurationProperty.#ctor(System.String,System.Type,System.Object,System.ComponentModel.TypeConverter,System.Configuration.ConfigurationValidatorBase,System.Configuration.ConfigurationPropertyOptions,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L55C9-L66C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L55C9-L66C10" }, { "DocsId": "P:System.Configuration.ConfigurationProperty.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L163C30-L163C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L163C30-L163C34" }, { "DocsId": "P:System.Configuration.ConfigurationProperty.Description", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L165C37-L165C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L165C37-L165C41" }, { "DocsId": "P:System.Configuration.ConfigurationProperty.Type", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L182C28-L182C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L182C28-L182C32" }, { "DocsId": "P:System.Configuration.ConfigurationProperty.DefaultValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L184C38-L184C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L184C38-L184C42" }, { "DocsId": "P:System.Configuration.ConfigurationProperty.IsRequired", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L186C35-L186C92" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L186C35-L186C92" }, { "DocsId": "P:System.Configuration.ConfigurationProperty.IsKey", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L188C30-L188C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L188C30-L188C82" }, { "DocsId": "P:System.Configuration.ConfigurationProperty.IsDefaultCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L190C44-L190C110" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L190C44-L190C110" }, { "DocsId": "P:System.Configuration.ConfigurationProperty.IsTypeStringTransformationRequired", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L193C16-L193C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L193C16-L193C97" }, { "DocsId": "P:System.Configuration.ConfigurationProperty.IsAssemblyStringTransformationRequired", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L196C16-L196C101" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L196C16-L196C101" }, { "DocsId": "P:System.Configuration.ConfigurationProperty.IsVersionCheckRequired", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L198C47-L198C116" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L198C47-L198C116" }, { "DocsId": "P:System.Configuration.ConfigurationProperty.Converter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L204C17-L205C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L204C17-L205C35" }, { "DocsId": "P:System.Configuration.ConfigurationProperty.Validator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L209C55-L209C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L209C55-L209C59" } ], "DocsId": "T:System.Configuration.ConfigurationProperty", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ConfigurationPropertyAttribute.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyAttribute.cs#L18C52-L14C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyAttribute.cs#L18C52-L14C10" }, { "DocsId": "P:System.Configuration.ConfigurationPropertyAttribute.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyAttribute.cs#L16C30-L16C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyAttribute.cs#L16C30-L16C34" }, { "DocsId": "P:System.Configuration.ConfigurationPropertyAttribute.DefaultValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyAttribute.cs#L18C38-L18C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyAttribute.cs#L18C38-L18C42" }, { "DocsId": "P:System.Configuration.ConfigurationPropertyAttribute.Options", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyAttribute.cs#L20C55-L20C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyAttribute.cs#L20C55-L20C59" }, { "DocsId": "P:System.Configuration.ConfigurationPropertyAttribute.IsDefaultCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyAttribute.cs#L24C19-L24C92" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyAttribute.cs#L24C19-L24C92" }, { "DocsId": "P:System.Configuration.ConfigurationPropertyAttribute.IsRequired", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyAttribute.cs#L35C19-L35C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyAttribute.cs#L35C19-L35C83" }, { "DocsId": "P:System.Configuration.ConfigurationPropertyAttribute.IsKey", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyAttribute.cs#L45C19-L45C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyAttribute.cs#L45C19-L45C78" } ], "DocsId": "T:System.Configuration.ConfigurationPropertyAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ConfigurationPropertyCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyCollection.cs#L36C13-L37C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyCollection.cs#L36C13-L37C10" }, { "DocsId": "M:System.Configuration.ConfigurationPropertyCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyCollection.cs#L41C13-L41C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyCollection.cs#L41C13-L41C43" }, { "DocsId": "M:System.Configuration.ConfigurationPropertyCollection.CopyTo(System.Configuration.ConfigurationProperty[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyCollection.cs#L46C13-L47C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyCollection.cs#L46C13-L47C10" }, { "DocsId": "M:System.Configuration.ConfigurationPropertyCollection.Contains(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyCollection.cs#L51C18-L56C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyCollection.cs#L51C18-L56C26" }, { "DocsId": "M:System.Configuration.ConfigurationPropertyCollection.Add(System.Configuration.ConfigurationProperty)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyCollection.cs#L61C13-L62C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyCollection.cs#L61C13-L62C10" }, { "DocsId": "M:System.Configuration.ConfigurationPropertyCollection.Remove(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyCollection.cs#L66C18-L74C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyCollection.cs#L66C18-L74C26" }, { "DocsId": "M:System.Configuration.ConfigurationPropertyCollection.Clear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyCollection.cs#L79C13-L80C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyCollection.cs#L79C13-L80C10" }, { "DocsId": "M:System.Configuration.ConfigurationPropertyCollection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyCollection.cs#L10C9-L10C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyCollection.cs#L10C9-L10C61" }, { "DocsId": "P:System.Configuration.ConfigurationPropertyCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyCollection.cs#L19C22-L24C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyCollection.cs#L19C22-L24C29" }, { "DocsId": "P:System.Configuration.ConfigurationPropertyCollection.Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyCollection.cs#L28C29-L28C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyCollection.cs#L28C29-L28C41" }, { "DocsId": "P:System.Configuration.ConfigurationPropertyCollection.IsSynchronized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyCollection.cs#L30C39-L30C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyCollection.cs#L30C39-L30C44" }, { "DocsId": "P:System.Configuration.ConfigurationPropertyCollection.SyncRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyCollection.cs#L32C35-L32C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyCollection.cs#L32C35-L32C41" } ], "DocsId": "T:System.Configuration.ConfigurationPropertyCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyCollection.cs" }, { "Members": [ { "DocsId": "F:System.Configuration.ConfigurationPropertyOptions.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyOptions.cs" }, { "DocsId": "F:System.Configuration.ConfigurationPropertyOptions.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyOptions.cs" }, { "DocsId": "F:System.Configuration.ConfigurationPropertyOptions.IsDefaultCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyOptions.cs" }, { "DocsId": "F:System.Configuration.ConfigurationPropertyOptions.IsRequired", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyOptions.cs" }, { "DocsId": "F:System.Configuration.ConfigurationPropertyOptions.IsKey", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyOptions.cs" }, { "DocsId": "F:System.Configuration.ConfigurationPropertyOptions.IsTypeStringTransformationRequired", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyOptions.cs" }, { "DocsId": "F:System.Configuration.ConfigurationPropertyOptions.IsAssemblyStringTransformationRequired", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyOptions.cs" }, { "DocsId": "F:System.Configuration.ConfigurationPropertyOptions.IsVersionCheckRequired", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyOptions.cs" } ], "DocsId": "T:System.Configuration.ConfigurationPropertyOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyOptions.cs" }, { "Members": [ { "DocsId": "F:System.Configuration.ConfigurationSaveMode.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSaveMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSaveMode.cs" }, { "DocsId": "F:System.Configuration.ConfigurationSaveMode.Modified", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSaveMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSaveMode.cs" }, { "DocsId": "F:System.Configuration.ConfigurationSaveMode.Minimal", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSaveMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSaveMode.cs" }, { "DocsId": "F:System.Configuration.ConfigurationSaveMode.Full", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSaveMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSaveMode.cs" } ], "DocsId": "T:System.Configuration.ConfigurationSaveMode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSaveMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSaveMode.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ConfigurationSection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSection.cs#L13C9-L16C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSection.cs#L13C9-L16C10" }, { "DocsId": "M:System.Configuration.ConfigurationSection.GetRuntimeObject", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSection.cs#L22C13-L22C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSection.cs#L22C13-L22C25" }, { "DocsId": "M:System.Configuration.ConfigurationSection.IsModified", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSection.cs#L27C13-L28C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSection.cs#L27C13-L28C35" }, { "DocsId": "M:System.Configuration.ConfigurationSection.ResetModified", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSection.cs#L33C13-L35C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSection.cs#L33C13-L35C10" }, { "DocsId": "M:System.Configuration.ConfigurationSection.DeserializeSection(System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSection.cs#L39C13-L43C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSection.cs#L39C13-L43C10" }, { "DocsId": "M:System.Configuration.ConfigurationSection.SerializeSection(System.Configuration.ConfigurationElement,System.String,System.Configuration.ConfigurationSaveMode)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSection.cs#L48C13-L77C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSection.cs#L48C13-L77C41" }, { "DocsId": "M:System.Configuration.ConfigurationSection.ShouldSerializePropertyInTargetVersion(System.Configuration.ConfigurationProperty,System.String,System.Runtime.Versioning.FrameworkName,System.Configuration.ConfigurationElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSection.cs#L83C13-L83C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSection.cs#L83C13-L83C25" }, { "DocsId": "M:System.Configuration.ConfigurationSection.ShouldSerializeElementInTargetVersion(System.Configuration.ConfigurationElement,System.String,System.Runtime.Versioning.FrameworkName)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSection.cs#L89C13-L89C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSection.cs#L89C13-L89C25" }, { "DocsId": "M:System.Configuration.ConfigurationSection.ShouldSerializeSectionInTargetVersion(System.Runtime.Versioning.FrameworkName)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSection.cs#L94C13-L94C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSection.cs#L94C13-L94C25" }, { "DocsId": "P:System.Configuration.ConfigurationSection.SectionInformation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSection.cs#L18C56-L18C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSection.cs#L18C56-L18C60" } ], "DocsId": "T:System.Configuration.ConfigurationSection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSection.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ConfigurationSectionCollection.Add(System.String,System.Configuration.ConfigurationSection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionCollection.cs#L50C13-L54C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionCollection.cs#L50C13-L54C10" }, { "DocsId": "M:System.Configuration.ConfigurationSectionCollection.Clear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionCollection.cs#L58C13-L62C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionCollection.cs#L58C13-L62C10" }, { "DocsId": "M:System.Configuration.ConfigurationSectionCollection.CopyTo(System.Configuration.ConfigurationSection[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionCollection.cs#L66C13-L75C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionCollection.cs#L66C13-L75C10" }, { "DocsId": "M:System.Configuration.ConfigurationSectionCollection.Get(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionCollection.cs#L79C13-L79C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionCollection.cs#L79C13-L79C39" }, { "DocsId": "M:System.Configuration.ConfigurationSectionCollection.Get(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionCollection.cs#L84C13-L100C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionCollection.cs#L84C13-L100C78" }, { "DocsId": "M:System.Configuration.ConfigurationSectionCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionCollection.cs" }, { "DocsId": "M:System.Configuration.ConfigurationSectionCollection.GetKey(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionCollection.cs#L113C13-L113C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionCollection.cs#L113C13-L113C38" }, { "DocsId": "M:System.Configuration.ConfigurationSectionCollection.Remove(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionCollection.cs#L125C13-L134C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionCollection.cs#L125C13-L134C10" }, { "DocsId": "M:System.Configuration.ConfigurationSectionCollection.RemoveAt(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionCollection.cs#L138C13-L141C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionCollection.cs#L138C13-L141C10" }, { "DocsId": "P:System.Configuration.ConfigurationSectionCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionCollection.cs#L28C58-L28C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionCollection.cs#L28C58-L28C67" }, { "DocsId": "P:System.Configuration.ConfigurationSectionCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionCollection.cs#L30C56-L30C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionCollection.cs#L30C56-L30C66" } ], "DocsId": "T:System.Configuration.ConfigurationSectionCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionCollection.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ConfigurationSectionGroup.ForceDeclaration", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroup.cs#L145C13-L146C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroup.cs#L145C13-L146C10" }, { "DocsId": "M:System.Configuration.ConfigurationSectionGroup.ForceDeclaration(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroup.cs#L152C13-L163C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroup.cs#L152C13-L163C10" }, { "DocsId": "M:System.Configuration.ConfigurationSectionGroup.ShouldSerializeSectionGroupInTargetVersion(System.Runtime.Versioning.FrameworkName)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroup.cs#L167C13-L167C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroup.cs#L167C13-L167C25" }, { "DocsId": "M:System.Configuration.ConfigurationSectionGroup.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroup.cs#L23C64-L25C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroup.cs#L23C64-L25C64" }, { "DocsId": "P:System.Configuration.ConfigurationSectionGroup.IsDeclared", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroup.cs#L17C34-L17C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroup.cs#L17C34-L17C38" }, { "DocsId": "P:System.Configuration.ConfigurationSectionGroup.IsDeclarationRequired", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroup.cs#L21C45-L21C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroup.cs#L21C45-L21C49" }, { "DocsId": "P:System.Configuration.ConfigurationSectionGroup.SectionGroupName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroup.cs#L23C42-L23C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroup.cs#L23C42-L23C46" }, { "DocsId": "P:System.Configuration.ConfigurationSectionGroup.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroup.cs#L25C30-L25C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroup.cs#L25C30-L25C34" }, { "DocsId": "P:System.Configuration.ConfigurationSectionGroup.Type", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroup.cs#L29C19-L29C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroup.cs#L29C19-L29C36" }, { "DocsId": "P:System.Configuration.ConfigurationSectionGroup.Sections", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroup.cs#L69C17-L75C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroup.cs#L69C17-L75C40" }, { "DocsId": "P:System.Configuration.ConfigurationSectionGroup.SectionGroups", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroup.cs#L83C17-L89C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroup.cs#L83C17-L89C45" } ], "DocsId": "T:System.Configuration.ConfigurationSectionGroup", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroup.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroup.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ConfigurationSectionGroupCollection.Add(System.String,System.Configuration.ConfigurationSectionGroup)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroupCollection.cs#L51C13-L54C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroupCollection.cs#L51C13-L54C10" }, { "DocsId": "M:System.Configuration.ConfigurationSectionGroupCollection.Clear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroupCollection.cs#L58C13-L66C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroupCollection.cs#L58C13-L66C10" }, { "DocsId": "M:System.Configuration.ConfigurationSectionGroupCollection.CopyTo(System.Configuration.ConfigurationSectionGroup[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroupCollection.cs#L70C13-L79C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroupCollection.cs#L70C13-L79C10" }, { "DocsId": "M:System.Configuration.ConfigurationSectionGroupCollection.Get(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroupCollection.cs#L83C13-L83C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroupCollection.cs#L83C13-L83C39" }, { "DocsId": "M:System.Configuration.ConfigurationSectionGroupCollection.Get(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroupCollection.cs#L88C13-L104C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroupCollection.cs#L88C13-L104C61" }, { "DocsId": "M:System.Configuration.ConfigurationSectionGroupCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroupCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroupCollection.cs" }, { "DocsId": "M:System.Configuration.ConfigurationSectionGroupCollection.GetKey(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroupCollection.cs#L115C13-L115C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroupCollection.cs#L115C13-L115C38" }, { "DocsId": "M:System.Configuration.ConfigurationSectionGroupCollection.Remove(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroupCollection.cs#L128C13-L135C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroupCollection.cs#L128C13-L135C10" }, { "DocsId": "M:System.Configuration.ConfigurationSectionGroupCollection.RemoveAt(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroupCollection.cs#L139C13-L142C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroupCollection.cs#L139C13-L142C10" }, { "DocsId": "P:System.Configuration.ConfigurationSectionGroupCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroupCollection.cs#L30C63-L30C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroupCollection.cs#L30C63-L30C72" }, { "DocsId": "P:System.Configuration.ConfigurationSectionGroupCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroupCollection.cs#L33C61-L33C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroupCollection.cs#L33C61-L33C71" } ], "DocsId": "T:System.Configuration.ConfigurationSectionGroupCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroupCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroupCollection.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ConfigurationSettings.GetConfig(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSettings.cs#L24C13-L24C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSettings.cs#L24C13-L24C65" }, { "DocsId": "P:System.Configuration.ConfigurationSettings.AppSettings", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSettings.cs#L17C17-L17C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSettings.cs#L17C17-L17C57" } ], "DocsId": "T:System.Configuration.ConfigurationSettings", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSettings.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSettings.cs" }, { "Members": [ { "DocsId": "F:System.Configuration.ConfigurationUserLevel.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationUserLevel.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationUserLevel.cs" }, { "DocsId": "F:System.Configuration.ConfigurationUserLevel.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationUserLevel.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationUserLevel.cs" }, { "DocsId": "F:System.Configuration.ConfigurationUserLevel.PerUserRoaming", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationUserLevel.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationUserLevel.cs" }, { "DocsId": "F:System.Configuration.ConfigurationUserLevel.PerUserRoamingAndLocal", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationUserLevel.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationUserLevel.cs" } ], "DocsId": "T:System.Configuration.ConfigurationUserLevel", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationUserLevel.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationUserLevel.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ConfigurationValidatorAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationValidatorAttribute.cs#L13C9-L13C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationValidatorAttribute.cs#L13C9-L13C56" }, { "DocsId": "M:System.Configuration.ConfigurationValidatorAttribute.#ctor(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationValidatorAttribute.cs#L15C9-L26C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationValidatorAttribute.cs#L15C9-L26C10" }, { "DocsId": "P:System.Configuration.ConfigurationValidatorAttribute.ValidatorInstance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationValidatorAttribute.cs#L29C16-L29C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationValidatorAttribute.cs#L29C16-L29C82" }, { "DocsId": "P:System.Configuration.ConfigurationValidatorAttribute.ValidatorType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationValidatorAttribute.cs#L31C37-L31C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationValidatorAttribute.cs#L31C37-L31C41" } ], "DocsId": "T:System.Configuration.ConfigurationValidatorAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationValidatorAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationValidatorAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ConfigurationValidatorBase.CanValidate(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationValidatorBase.cs#L10C13-L10C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationValidatorBase.cs#L10C13-L10C26" }, { "DocsId": "M:System.Configuration.ConfigurationValidatorBase.Validate(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationValidatorBase.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationValidatorBase.cs" }, { "DocsId": "M:System.Configuration.ConfigurationValidatorBase.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationValidatorBase.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationValidatorBase.cs" } ], "DocsId": "T:System.Configuration.ConfigurationValidatorBase", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationValidatorBase.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationValidatorBase.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ConfigXmlDocument.System#Configuration#Internal#IConfigErrorInfo#get_LineNumber", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs#L27C17-L37C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs#L27C17-L37C43" }, { "DocsId": "M:System.Configuration.ConfigXmlDocument.System#Configuration#Internal#IConfigErrorInfo#get_Filename", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs#L50C19-L50C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs#L50C19-L50C36" }, { "DocsId": "M:System.Configuration.ConfigXmlDocument.Load(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs#L55C13-L70C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs#L55C13-L70C10" }, { "DocsId": "M:System.Configuration.ConfigXmlDocument.LoadSingleElement(System.String,System.Xml.XmlTextReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs#L74C13-L91C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs#L74C13-L91C10" }, { "DocsId": "M:System.Configuration.ConfigXmlDocument.CreateAttribute(System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs#L95C13-L95C105" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs#L95C13-L95C105" }, { "DocsId": "M:System.Configuration.ConfigXmlDocument.CreateElement(System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs#L100C13-L100C103" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs#L100C13-L100C103" }, { "DocsId": "M:System.Configuration.ConfigXmlDocument.CreateTextNode(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs#L105C13-L105C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs#L105C13-L105C73" }, { "DocsId": "M:System.Configuration.ConfigXmlDocument.CreateCDataSection(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs#L110C13-L110C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs#L110C13-L110C81" }, { "DocsId": "M:System.Configuration.ConfigXmlDocument.CreateComment(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs#L115C13-L115C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs#L115C13-L115C76" }, { "DocsId": "M:System.Configuration.ConfigXmlDocument.CreateSignificantWhitespace(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs#L120C13-L120C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs#L120C13-L120C90" }, { "DocsId": "M:System.Configuration.ConfigXmlDocument.CreateWhitespace(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs#L125C13-L125C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs#L125C13-L125C79" }, { "DocsId": "M:System.Configuration.ConfigXmlDocument.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs" }, { "DocsId": "P:System.Configuration.ConfigXmlDocument.System#Configuration#Internal#IConfigErrorInfo#LineNumber", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs#L27C17-L37C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs#L27C17-L37C43" }, { "DocsId": "P:System.Configuration.ConfigXmlDocument.LineNumber", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs#L41C39-L41C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs#L41C39-L41C82" }, { "DocsId": "P:System.Configuration.ConfigXmlDocument.Filename", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs#L45C19-L45C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs#L45C19-L45C36" }, { "DocsId": "P:System.Configuration.ConfigXmlDocument.System#Configuration#Internal#IConfigErrorInfo#Filename", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs#L50C19-L50C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs#L50C19-L50C36" } ], "DocsId": "T:System.Configuration.ConfigXmlDocument", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ConnectionStringSettings.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettings.cs#L21C9-L21C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettings.cs#L21C9-L21C46" }, { "DocsId": "M:System.Configuration.ConnectionStringSettings.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettings.cs#L24C15-L28C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettings.cs#L24C15-L28C10" }, { "DocsId": "M:System.Configuration.ConnectionStringSettings.#ctor(System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettings.cs#L31C15-L36C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettings.cs#L31C15-L36C10" }, { "DocsId": "M:System.Configuration.ConnectionStringSettings.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettings.cs#L66C13-L66C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettings.cs#L66C13-L66C37" }, { "DocsId": "P:System.Configuration.ConnectionStringSettings.Properties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettings.cs#L40C83-L40C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettings.cs#L40C83-L40C95" }, { "DocsId": "P:System.Configuration.ConnectionStringSettings.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettings.cs#L46C19-L46C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettings.cs#L46C19-L46C51" }, { "DocsId": "P:System.Configuration.ConnectionStringSettings.ConnectionString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettings.cs#L53C19-L53C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettings.cs#L53C19-L53C63" }, { "DocsId": "P:System.Configuration.ConnectionStringSettings.ProviderName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettings.cs#L60C19-L60C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettings.cs#L60C19-L60C59" } ], "DocsId": "T:System.Configuration.ConnectionStringSettings", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettings.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettings.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ConnectionStringSettingsCollection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettingsCollection.cs#L12C15-L13C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettingsCollection.cs#L12C15-L13C12" }, { "DocsId": "M:System.Configuration.ConnectionStringSettingsCollection.IndexOf(System.Configuration.ConnectionStringSettings)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettingsCollection.cs#L31C13-L31C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettingsCollection.cs#L31C13-L31C42" }, { "DocsId": "M:System.Configuration.ConnectionStringSettingsCollection.BaseAdd(System.Int32,System.Configuration.ConfigurationElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettingsCollection.cs#L40C13-L42C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettingsCollection.cs#L40C13-L42C10" }, { "DocsId": "M:System.Configuration.ConnectionStringSettingsCollection.Add(System.Configuration.ConnectionStringSettings)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettingsCollection.cs#L46C13-L47C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettingsCollection.cs#L46C13-L47C10" }, { "DocsId": "M:System.Configuration.ConnectionStringSettingsCollection.Remove(System.Configuration.ConnectionStringSettings)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettingsCollection.cs#L51C13-L52C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettingsCollection.cs#L51C13-L52C10" }, { "DocsId": "M:System.Configuration.ConnectionStringSettingsCollection.RemoveAt(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettingsCollection.cs#L56C13-L57C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettingsCollection.cs#L56C13-L57C10" }, { "DocsId": "M:System.Configuration.ConnectionStringSettingsCollection.Remove(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettingsCollection.cs#L61C13-L62C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettingsCollection.cs#L61C13-L62C10" }, { "DocsId": "M:System.Configuration.ConnectionStringSettingsCollection.CreateNewElement", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettingsCollection.cs#L66C13-L66C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettingsCollection.cs#L66C13-L66C51" }, { "DocsId": "M:System.Configuration.ConnectionStringSettingsCollection.GetElementKey(System.Configuration.ConfigurationElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettingsCollection.cs#L71C13-L71C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettingsCollection.cs#L71C13-L71C60" }, { "DocsId": "M:System.Configuration.ConnectionStringSettingsCollection.Clear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettingsCollection.cs#L76C13-L77C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettingsCollection.cs#L76C13-L77C10" }, { "DocsId": "P:System.Configuration.ConnectionStringSettingsCollection.Properties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettingsCollection.cs#L15C83-L15C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettingsCollection.cs#L15C83-L15C95" }, { "DocsId": "P:System.Configuration.ConnectionStringSettingsCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettingsCollection.cs#L19C19-L19C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettingsCollection.cs#L19C19-L19C67" }, { "DocsId": "P:System.Configuration.ConnectionStringSettingsCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettingsCollection.cs#L27C66-L27C105" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettingsCollection.cs#L27C66-L27C105" } ], "DocsId": "T:System.Configuration.ConnectionStringSettingsCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettingsCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettingsCollection.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ConnectionStringsSection.GetRuntimeObject", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringsSection.cs#L22C13-L23C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringsSection.cs#L22C13-L23C25" }, { "DocsId": "M:System.Configuration.ConnectionStringsSection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringsSection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringsSection.cs" }, { "DocsId": "P:System.Configuration.ConnectionStringsSection.Properties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringsSection.cs#L14C83-L14C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringsSection.cs#L14C83-L14C95" }, { "DocsId": "P:System.Configuration.ConnectionStringsSection.ConnectionStrings", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringsSection.cs#L18C16-L18C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringsSection.cs#L18C16-L18C81" } ], "DocsId": "T:System.Configuration.ConnectionStringsSection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringsSection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringsSection.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ContextInformation.GetSection(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ContextInformation.cs#L52C13-L52C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ContextInformation.cs#L52C13-L52C58" }, { "DocsId": "P:System.Configuration.ContextInformation.HostingContext", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ContextInformation.cs#L27C17-L35C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ContextInformation.cs#L27C17-L35C40" }, { "DocsId": "P:System.Configuration.ContextInformation.IsMachineLevel", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ContextInformation.cs#L42C39-L42C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ContextInformation.cs#L42C39-L42C68" } ], "DocsId": "T:System.Configuration.ContextInformation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ContextInformation.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ContextInformation.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.DefaultSection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DefaultSection.cs#L13C9-L18C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DefaultSection.cs#L13C9-L18C10" }, { "DocsId": "M:System.Configuration.DefaultSection.IsModified", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DefaultSection.cs#L35C13-L35C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DefaultSection.cs#L35C13-L35C32" }, { "DocsId": "M:System.Configuration.DefaultSection.ResetModified", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DefaultSection.cs#L40C13-L41C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DefaultSection.cs#L40C13-L41C10" }, { "DocsId": "M:System.Configuration.DefaultSection.Reset(System.Configuration.ConfigurationElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DefaultSection.cs#L45C13-L47C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DefaultSection.cs#L45C13-L47C10" }, { "DocsId": "M:System.Configuration.DefaultSection.DeserializeSection(System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DefaultSection.cs#L51C13-L55C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DefaultSection.cs#L51C13-L55C10" }, { "DocsId": "M:System.Configuration.DefaultSection.SerializeSection(System.Configuration.ConfigurationElement,System.String,System.Configuration.ConfigurationSaveMode)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DefaultSection.cs#L60C13-L60C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DefaultSection.cs#L60C13-L60C28" }, { "DocsId": "P:System.Configuration.DefaultSection.Properties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DefaultSection.cs#L20C83-L20C108" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DefaultSection.cs#L20C83-L20C108" } ], "DocsId": "T:System.Configuration.DefaultSection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DefaultSection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DefaultSection.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.DefaultSettingValueAttribute.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DefaultSettingValueAttribute.cs#L20C9-L23C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DefaultSettingValueAttribute.cs#L20C9-L23C10" }, { "DocsId": "P:System.Configuration.DefaultSettingValueAttribute.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DefaultSettingValueAttribute.cs#L32C17-L32C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DefaultSettingValueAttribute.cs#L32C17-L32C31" } ], "DocsId": "T:System.Configuration.DefaultSettingValueAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DefaultSettingValueAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DefaultSettingValueAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.DefaultValidator.CanValidate(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DefaultValidator.cs#L12C13-L12C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DefaultValidator.cs#L12C13-L12C25" }, { "DocsId": "M:System.Configuration.DefaultValidator.Validate(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DefaultValidator.cs#L18C9-L18C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DefaultValidator.cs#L18C9-L18C10" }, { "DocsId": "M:System.Configuration.DefaultValidator.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DefaultValidator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DefaultValidator.cs" } ], "DocsId": "T:System.Configuration.DefaultValidator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DefaultValidator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DefaultValidator.cs" }, { "Members": [ { "DocsId": "P:System.Configuration.ElementInformation.Properties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ElementInformation.cs#L20C16-L20C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ElementInformation.cs#L20C16-L20C87" }, { "DocsId": "P:System.Configuration.ElementInformation.IsPresent", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ElementInformation.cs#L22C34-L22C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ElementInformation.cs#L22C34-L22C61" }, { "DocsId": "P:System.Configuration.ElementInformation.IsLocked", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ElementInformation.cs#L24C33-L25C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ElementInformation.cs#L24C33-L25C81" }, { "DocsId": "P:System.Configuration.ElementInformation.IsCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ElementInformation.cs#L31C17-L40C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ElementInformation.cs#L31C17-L40C43" }, { "DocsId": "P:System.Configuration.ElementInformation.Source", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ElementInformation.cs#L44C33-L44C105" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ElementInformation.cs#L44C33-L44C105" }, { "DocsId": "P:System.Configuration.ElementInformation.LineNumber", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ElementInformation.cs#L49C34-L49C113" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ElementInformation.cs#L49C34-L49C113" }, { "DocsId": "P:System.Configuration.ElementInformation.Type", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ElementInformation.cs#L51C29-L51C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ElementInformation.cs#L51C29-L51C51" }, { "DocsId": "P:System.Configuration.ElementInformation.Validator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ElementInformation.cs#L53C56-L53C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ElementInformation.cs#L53C56-L53C94" }, { "DocsId": "P:System.Configuration.ElementInformation.Errors", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ElementInformation.cs#L55C38-L55C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ElementInformation.cs#L55C38-L55C73" } ], "DocsId": "T:System.Configuration.ElementInformation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ElementInformation.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ElementInformation.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ExeConfigurationFileMap.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ExeConfigurationFileMap.cs#L8C9-L13C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ExeConfigurationFileMap.cs#L8C9-L13C10" }, { "DocsId": "M:System.Configuration.ExeConfigurationFileMap.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ExeConfigurationFileMap.cs#L16C15-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ExeConfigurationFileMap.cs#L16C15-L21C10" }, { "DocsId": "M:System.Configuration.ExeConfigurationFileMap.Clone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ExeConfigurationFileMap.cs#L40C13-L41C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ExeConfigurationFileMap.cs#L40C13-L41C42" }, { "DocsId": "P:System.Configuration.ExeConfigurationFileMap.ExeConfigFilename", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ExeConfigurationFileMap.cs#L32C43-L32C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ExeConfigurationFileMap.cs#L32C43-L32C47" }, { "DocsId": "P:System.Configuration.ExeConfigurationFileMap.RoamingUserConfigFilename", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ExeConfigurationFileMap.cs#L34C51-L34C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ExeConfigurationFileMap.cs#L34C51-L34C55" }, { "DocsId": "P:System.Configuration.ExeConfigurationFileMap.LocalUserConfigFilename", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ExeConfigurationFileMap.cs#L36C49-L36C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ExeConfigurationFileMap.cs#L36C49-L36C53" } ], "DocsId": "T:System.Configuration.ExeConfigurationFileMap", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ExeConfigurationFileMap.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ExeConfigurationFileMap.cs" }, { "Members": [ { "DocsId": "P:System.Configuration.ExeContext.UserLevel", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ExeContext.cs#L20C51-L20C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ExeContext.cs#L20C51-L20C55" }, { "DocsId": "P:System.Configuration.ExeContext.ExePath", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ExeContext.cs#L22C33-L22C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ExeContext.cs#L22C33-L22C37" } ], "DocsId": "T:System.Configuration.ExeContext", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ExeContext.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ExeContext.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.GenericEnumConverter.#ctor(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/GenericEnumConverter.cs#L14C9-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/GenericEnumConverter.cs#L14C9-L20C10" }, { "DocsId": "M:System.Configuration.GenericEnumConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/GenericEnumConverter.cs#L24C13-L24C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/GenericEnumConverter.cs#L24C13-L24C37" }, { "DocsId": "M:System.Configuration.GenericEnumConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/GenericEnumConverter.cs#L30C13-L47C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/GenericEnumConverter.cs#L30C13-L47C10" } ], "DocsId": "T:System.Configuration.GenericEnumConverter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/GenericEnumConverter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/GenericEnumConverter.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.IApplicationSettingsProvider.GetPreviousVersion(System.Configuration.SettingsContext,System.Configuration.SettingsProperty)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IApplicationSettingsProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IApplicationSettingsProvider.cs" }, { "DocsId": "M:System.Configuration.IApplicationSettingsProvider.Reset(System.Configuration.SettingsContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IApplicationSettingsProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IApplicationSettingsProvider.cs" }, { "DocsId": "M:System.Configuration.IApplicationSettingsProvider.Upgrade(System.Configuration.SettingsContext,System.Configuration.SettingsPropertyCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IApplicationSettingsProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IApplicationSettingsProvider.cs" } ], "DocsId": "T:System.Configuration.IApplicationSettingsProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IApplicationSettingsProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IApplicationSettingsProvider.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.IConfigurationSectionHandler.Create(System.Object,System.Object,System.Xml.XmlNode)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IConfigurationSectionHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IConfigurationSectionHandler.cs" } ], "DocsId": "T:System.Configuration.IConfigurationSectionHandler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IConfigurationSectionHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IConfigurationSectionHandler.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.IgnoreSection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IgnoreSection.cs#L13C9-L18C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IgnoreSection.cs#L13C9-L18C10" }, { "DocsId": "M:System.Configuration.IgnoreSection.IsModified", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IgnoreSection.cs#L35C13-L35C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IgnoreSection.cs#L35C13-L35C32" }, { "DocsId": "M:System.Configuration.IgnoreSection.ResetModified", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IgnoreSection.cs#L40C13-L41C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IgnoreSection.cs#L40C13-L41C10" }, { "DocsId": "M:System.Configuration.IgnoreSection.Reset(System.Configuration.ConfigurationElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IgnoreSection.cs#L45C13-L47C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IgnoreSection.cs#L45C13-L47C10" }, { "DocsId": "M:System.Configuration.IgnoreSection.DeserializeSection(System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IgnoreSection.cs#L51C13-L55C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IgnoreSection.cs#L51C13-L55C10" }, { "DocsId": "M:System.Configuration.IgnoreSection.SerializeSection(System.Configuration.ConfigurationElement,System.String,System.Configuration.ConfigurationSaveMode)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IgnoreSection.cs#L60C13-L60C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IgnoreSection.cs#L60C13-L60C28" }, { "DocsId": "P:System.Configuration.IgnoreSection.Properties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IgnoreSection.cs#L20C83-L20C108" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IgnoreSection.cs#L20C83-L20C108" } ], "DocsId": "T:System.Configuration.IgnoreSection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IgnoreSection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IgnoreSection.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.IgnoreSectionHandler.Create(System.Object,System.Object,System.Xml.XmlNode)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IgnoreSectionHandler.cs#L16C13-L16C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IgnoreSectionHandler.cs#L16C13-L16C25" }, { "DocsId": "M:System.Configuration.IgnoreSectionHandler.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IgnoreSectionHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IgnoreSectionHandler.cs" } ], "DocsId": "T:System.Configuration.IgnoreSectionHandler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IgnoreSectionHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IgnoreSectionHandler.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.InfiniteIntConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/InfiniteIntConverter.cs#L14C13-L16C114" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/InfiniteIntConverter.cs#L14C13-L16C114" }, { "DocsId": "M:System.Configuration.InfiniteIntConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/InfiniteIntConverter.cs#L23C13-L23C98" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/InfiniteIntConverter.cs#L23C13-L23C98" }, { "DocsId": "M:System.Configuration.InfiniteIntConverter.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/InfiniteIntConverter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/InfiniteIntConverter.cs" } ], "DocsId": "T:System.Configuration.InfiniteIntConverter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/InfiniteIntConverter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/InfiniteIntConverter.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.InfiniteTimeSpanConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/InfiniteTimeSpanConverter.cs#L15C13-L19C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/InfiniteTimeSpanConverter.cs#L15C13-L19C71" }, { "DocsId": "M:System.Configuration.InfiniteTimeSpanConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/InfiniteTimeSpanConverter.cs#L24C13-L26C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/InfiniteTimeSpanConverter.cs#L24C13-L26C80" }, { "DocsId": "M:System.Configuration.InfiniteTimeSpanConverter.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/InfiniteTimeSpanConverter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/InfiniteTimeSpanConverter.cs" } ], "DocsId": "T:System.Configuration.InfiniteTimeSpanConverter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/InfiniteTimeSpanConverter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/InfiniteTimeSpanConverter.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.IntegerValidator.#ctor(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IntegerValidator.cs#L14C13-L15C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IntegerValidator.cs#L14C13-L15C12" }, { "DocsId": "M:System.Configuration.IntegerValidator.#ctor(System.Int32,System.Int32,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IntegerValidator.cs#L18C13-L19C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IntegerValidator.cs#L18C13-L19C12" }, { "DocsId": "M:System.Configuration.IntegerValidator.#ctor(System.Int32,System.Int32,System.Boolean,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IntegerValidator.cs#L21C9-L33C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IntegerValidator.cs#L21C9-L33C10" }, { "DocsId": "M:System.Configuration.IntegerValidator.CanValidate(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IntegerValidator.cs#L37C13-L37C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IntegerValidator.cs#L37C13-L37C40" }, { "DocsId": "M:System.Configuration.IntegerValidator.Validate(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IntegerValidator.cs#L42C13-L49C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IntegerValidator.cs#L42C13-L49C10" } ], "DocsId": "T:System.Configuration.IntegerValidator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IntegerValidator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IntegerValidator.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.IntegerValidatorAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IntegerValidatorAttribute.cs#L9C9-L10C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IntegerValidatorAttribute.cs#L9C9-L10C41" }, { "DocsId": "P:System.Configuration.IntegerValidatorAttribute.ValidatorInstance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IntegerValidatorAttribute.cs#L12C73-L12C119" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IntegerValidatorAttribute.cs#L12C73-L12C119" }, { "DocsId": "P:System.Configuration.IntegerValidatorAttribute.MinValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IntegerValidatorAttribute.cs#L16C19-L16C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IntegerValidatorAttribute.cs#L16C19-L16C31" }, { "DocsId": "P:System.Configuration.IntegerValidatorAttribute.MaxValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IntegerValidatorAttribute.cs#L28C19-L28C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IntegerValidatorAttribute.cs#L28C19-L28C31" }, { "DocsId": "P:System.Configuration.IntegerValidatorAttribute.ExcludeRange", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IntegerValidatorAttribute.cs#L38C36-L38C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IntegerValidatorAttribute.cs#L38C36-L38C40" } ], "DocsId": "T:System.Configuration.IntegerValidatorAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IntegerValidatorAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IntegerValidatorAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.IriParsingElement.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IriParsingElement.cs#L10C9-L19C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IriParsingElement.cs#L10C9-L19C10" }, { "DocsId": "P:System.Configuration.IriParsingElement.Properties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IriParsingElement.cs#L25C17-L25C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IriParsingElement.cs#L25C17-L25C36" }, { "DocsId": "P:System.Configuration.IriParsingElement.Enabled", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IriParsingElement.cs#L32C19-L32C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IriParsingElement.cs#L32C19-L32C47" } ], "DocsId": "T:System.Configuration.IriParsingElement", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IriParsingElement.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IriParsingElement.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ISettingsProviderService.GetSettingsProvider(System.Configuration.SettingsProperty)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ISettingsProviderService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ISettingsProviderService.cs" } ], "DocsId": "T:System.Configuration.ISettingsProviderService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ISettingsProviderService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ISettingsProviderService.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.KeyValueConfigurationCollection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationCollection.cs#L12C13-L15C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationCollection.cs#L12C13-L15C10" }, { "DocsId": "M:System.Configuration.KeyValueConfigurationCollection.Add(System.Configuration.KeyValueConfigurationElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationCollection.cs#L28C13-L44C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationCollection.cs#L28C13-L44C10" }, { "DocsId": "M:System.Configuration.KeyValueConfigurationCollection.Add(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationCollection.cs#L48C13-L50C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationCollection.cs#L48C13-L50C10" }, { "DocsId": "M:System.Configuration.KeyValueConfigurationCollection.Remove(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationCollection.cs#L54C13-L55C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationCollection.cs#L54C13-L55C10" }, { "DocsId": "M:System.Configuration.KeyValueConfigurationCollection.Clear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationCollection.cs#L59C13-L60C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationCollection.cs#L59C13-L60C10" }, { "DocsId": "M:System.Configuration.KeyValueConfigurationCollection.CreateNewElement", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationCollection.cs#L64C13-L64C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationCollection.cs#L64C13-L64C55" }, { "DocsId": "M:System.Configuration.KeyValueConfigurationCollection.GetElementKey(System.Configuration.ConfigurationElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationCollection.cs#L69C13-L69C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationCollection.cs#L69C13-L69C64" }, { "DocsId": "P:System.Configuration.KeyValueConfigurationCollection.Properties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationCollection.cs#L17C83-L17C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationCollection.cs#L17C83-L17C95" }, { "DocsId": "P:System.Configuration.KeyValueConfigurationCollection.ThrowOnDuplicate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationCollection.cs#L19C53-L19C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationCollection.cs#L19C53-L19C58" }, { "DocsId": "P:System.Configuration.KeyValueConfigurationCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationCollection.cs#L21C69-L21C111" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationCollection.cs#L21C69-L21C111" }, { "DocsId": "P:System.Configuration.KeyValueConfigurationCollection.AllKeys", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationCollection.cs#L23C36-L23C89" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationCollection.cs#L23C36-L23C89" } ], "DocsId": "T:System.Configuration.KeyValueConfigurationCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationCollection.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.KeyValueConfigurationElement.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationElement.cs#L24C9-L29C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationElement.cs#L24C9-L29C10" }, { "DocsId": "M:System.Configuration.KeyValueConfigurationElement.Init", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationElement.cs#L45C13-L56C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationElement.cs#L45C13-L56C10" }, { "DocsId": "P:System.Configuration.KeyValueConfigurationElement.Properties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationElement.cs#L31C83-L31C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationElement.cs#L31C83-L31C95" }, { "DocsId": "P:System.Configuration.KeyValueConfigurationElement.Key", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationElement.cs#L34C30-L34C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationElement.cs#L34C30-L34C53" }, { "DocsId": "P:System.Configuration.KeyValueConfigurationElement.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationElement.cs#L39C19-L39C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationElement.cs#L39C19-L39C52" } ], "DocsId": "T:System.Configuration.KeyValueConfigurationElement", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationElement.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationElement.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.LocalFileSettingsProvider.Initialize(System.String,System.Collections.Specialized.NameValueCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LocalFileSettingsProvider.cs#L51C13-L57C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LocalFileSettingsProvider.cs#L51C13-L57C10" }, { "DocsId": "M:System.Configuration.LocalFileSettingsProvider.GetPropertyValues(System.Configuration.SettingsContext,System.Configuration.SettingsPropertyCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LocalFileSettingsProvider.cs#L64C13-L143C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LocalFileSettingsProvider.cs#L64C13-L143C27" }, { "DocsId": "M:System.Configuration.LocalFileSettingsProvider.SetPropertyValues(System.Configuration.SettingsContext,System.Configuration.SettingsPropertyValueCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LocalFileSettingsProvider.cs#L151C13-L197C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LocalFileSettingsProvider.cs#L151C13-L197C10" }, { "DocsId": "M:System.Configuration.LocalFileSettingsProvider.Reset(System.Configuration.SettingsContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LocalFileSettingsProvider.cs#L205C13-L210C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LocalFileSettingsProvider.cs#L205C13-L210C10" }, { "DocsId": "M:System.Configuration.LocalFileSettingsProvider.Upgrade(System.Configuration.SettingsContext,System.Configuration.SettingsPropertyCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LocalFileSettingsProvider.cs#L221C13-L247C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LocalFileSettingsProvider.cs#L221C13-L247C10" }, { "DocsId": "M:System.Configuration.LocalFileSettingsProvider.GetPreviousVersion(System.Configuration.SettingsContext,System.Configuration.SettingsProperty)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LocalFileSettingsProvider.cs#L254C13-L268C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LocalFileSettingsProvider.cs#L254C13-L268C30" }, { "DocsId": "M:System.Configuration.LocalFileSettingsProvider.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LocalFileSettingsProvider.cs#L18C9-L18C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LocalFileSettingsProvider.cs#L18C9-L18C48" }, { "DocsId": "P:System.Configuration.LocalFileSettingsProvider.ApplicationName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LocalFileSettingsProvider.cs#L31C17-L31C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LocalFileSettingsProvider.cs#L31C17-L31C33" } ], "DocsId": "T:System.Configuration.LocalFileSettingsProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LocalFileSettingsProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LocalFileSettingsProvider.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.LongValidator.#ctor(System.Int64,System.Int64)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LongValidator.cs#L14C15-L15C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LongValidator.cs#L14C15-L15C12" }, { "DocsId": "M:System.Configuration.LongValidator.#ctor(System.Int64,System.Int64,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LongValidator.cs#L18C15-L19C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LongValidator.cs#L18C15-L19C12" }, { "DocsId": "M:System.Configuration.LongValidator.#ctor(System.Int64,System.Int64,System.Boolean,System.Int64)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LongValidator.cs#L21C9-L33C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LongValidator.cs#L21C9-L33C10" }, { "DocsId": "M:System.Configuration.LongValidator.CanValidate(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LongValidator.cs#L37C13-L37C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LongValidator.cs#L37C13-L37C41" }, { "DocsId": "M:System.Configuration.LongValidator.Validate(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LongValidator.cs#L42C13-L49C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LongValidator.cs#L42C13-L49C10" } ], "DocsId": "T:System.Configuration.LongValidator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LongValidator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LongValidator.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.LongValidatorAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LongValidatorAttribute.cs#L9C9-L10C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LongValidatorAttribute.cs#L9C9-L10C43" }, { "DocsId": "P:System.Configuration.LongValidatorAttribute.ValidatorInstance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LongValidatorAttribute.cs#L12C73-L12C116" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LongValidatorAttribute.cs#L12C73-L12C116" }, { "DocsId": "P:System.Configuration.LongValidatorAttribute.MinValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LongValidatorAttribute.cs#L16C19-L16C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LongValidatorAttribute.cs#L16C19-L16C31" }, { "DocsId": "P:System.Configuration.LongValidatorAttribute.MaxValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LongValidatorAttribute.cs#L27C19-L27C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LongValidatorAttribute.cs#L27C19-L27C31" }, { "DocsId": "P:System.Configuration.LongValidatorAttribute.ExcludeRange", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LongValidatorAttribute.cs#L36C36-L36C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LongValidatorAttribute.cs#L36C36-L36C40" } ], "DocsId": "T:System.Configuration.LongValidatorAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LongValidatorAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LongValidatorAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.NameValueConfigurationCollection.Add(System.Configuration.NameValueConfigurationElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationCollection.cs#L33C13-L34C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationCollection.cs#L33C13-L34C10" }, { "DocsId": "M:System.Configuration.NameValueConfigurationCollection.Remove(System.Configuration.NameValueConfigurationElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationCollection.cs#L38C13-L40C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationCollection.cs#L38C13-L40C10" }, { "DocsId": "M:System.Configuration.NameValueConfigurationCollection.Remove(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationCollection.cs#L44C13-L45C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationCollection.cs#L44C13-L45C10" }, { "DocsId": "M:System.Configuration.NameValueConfigurationCollection.Clear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationCollection.cs#L49C13-L50C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationCollection.cs#L49C13-L50C10" }, { "DocsId": "M:System.Configuration.NameValueConfigurationCollection.CreateNewElement", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationCollection.cs#L54C13-L54C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationCollection.cs#L54C13-L54C56" }, { "DocsId": "M:System.Configuration.NameValueConfigurationCollection.GetElementKey(System.Configuration.ConfigurationElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationCollection.cs#L59C13-L59C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationCollection.cs#L59C13-L59C66" }, { "DocsId": "M:System.Configuration.NameValueConfigurationCollection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationCollection.cs" }, { "DocsId": "P:System.Configuration.NameValueConfigurationCollection.Properties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationCollection.cs#L11C83-L11C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationCollection.cs#L11C83-L11C95" }, { "DocsId": "P:System.Configuration.NameValueConfigurationCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationCollection.cs#L15C19-L15C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationCollection.cs#L15C19-L15C71" }, { "DocsId": "P:System.Configuration.NameValueConfigurationCollection.AllKeys", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationCollection.cs#L29C36-L29C89" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationCollection.cs#L29C36-L29C89" } ], "DocsId": "T:System.Configuration.NameValueConfigurationCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationCollection.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.NameValueConfigurationElement.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationElement.cs#L18C9-L22C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationElement.cs#L18C9-L22C10" }, { "DocsId": "P:System.Configuration.NameValueConfigurationElement.Properties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationElement.cs#L24C83-L24C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationElement.cs#L24C83-L24C95" }, { "DocsId": "P:System.Configuration.NameValueConfigurationElement.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationElement.cs#L27C31-L27C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationElement.cs#L27C31-L27C55" }, { "DocsId": "P:System.Configuration.NameValueConfigurationElement.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationElement.cs#L32C19-L32C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationElement.cs#L32C19-L32C52" } ], "DocsId": "T:System.Configuration.NameValueConfigurationElement", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationElement.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationElement.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.NameValueFileSectionHandler.Create(System.Object,System.Object,System.Xml.XmlNode)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueFileSectionHandler.cs#L22C13-L67C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueFileSectionHandler.cs#L22C13-L67C27" }, { "DocsId": "M:System.Configuration.NameValueFileSectionHandler.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueFileSectionHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueFileSectionHandler.cs" } ], "DocsId": "T:System.Configuration.NameValueFileSectionHandler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueFileSectionHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueFileSectionHandler.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.NameValueSectionHandler.Create(System.Object,System.Object,System.Xml.XmlNode)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueSectionHandler.cs#L18C13-L18C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueSectionHandler.cs#L18C13-L18C88" }, { "DocsId": "M:System.Configuration.NameValueSectionHandler.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueSectionHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueSectionHandler.cs" }, { "DocsId": "P:System.Configuration.NameValueSectionHandler.KeyAttributeName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueSectionHandler.cs#L88C19-L88C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueSectionHandler.cs#L88C19-L88C46" }, { "DocsId": "P:System.Configuration.NameValueSectionHandler.ValueAttributeName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueSectionHandler.cs#L96C19-L96C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueSectionHandler.cs#L96C19-L96C48" } ], "DocsId": "T:System.Configuration.NameValueSectionHandler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueSectionHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueSectionHandler.cs" }, { "Members": [ { "DocsId": "F:System.Configuration.OverrideMode.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/OverrideMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/OverrideMode.cs" }, { "DocsId": "F:System.Configuration.OverrideMode.Inherit", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/OverrideMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/OverrideMode.cs" }, { "DocsId": "F:System.Configuration.OverrideMode.Allow", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/OverrideMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/OverrideMode.cs" }, { "DocsId": "F:System.Configuration.OverrideMode.Deny", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/OverrideMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/OverrideMode.cs" } ], "DocsId": "T:System.Configuration.OverrideMode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/OverrideMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/OverrideMode.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.PositiveTimeSpanValidator.CanValidate(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PositiveTimeSpanValidator.cs#L10C13-L10C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PositiveTimeSpanValidator.cs#L10C13-L10C45" }, { "DocsId": "M:System.Configuration.PositiveTimeSpanValidator.Validate(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PositiveTimeSpanValidator.cs#L15C13-L22C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PositiveTimeSpanValidator.cs#L15C13-L22C10" }, { "DocsId": "M:System.Configuration.PositiveTimeSpanValidator.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PositiveTimeSpanValidator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PositiveTimeSpanValidator.cs" } ], "DocsId": "T:System.Configuration.PositiveTimeSpanValidator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PositiveTimeSpanValidator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PositiveTimeSpanValidator.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.PositiveTimeSpanValidatorAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PositiveTimeSpanValidatorAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PositiveTimeSpanValidatorAttribute.cs" }, { "DocsId": "P:System.Configuration.PositiveTimeSpanValidatorAttribute.ValidatorInstance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PositiveTimeSpanValidatorAttribute.cs#L9C73-L9C104" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PositiveTimeSpanValidatorAttribute.cs#L9C73-L9C104" } ], "DocsId": "T:System.Configuration.PositiveTimeSpanValidatorAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PositiveTimeSpanValidatorAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PositiveTimeSpanValidatorAttribute.cs" }, { "Members": [ { "DocsId": "P:System.Configuration.PropertyInformation.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformation.cs#L24C30-L24C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformation.cs#L24C30-L24C34" }, { "DocsId": "P:System.Configuration.PropertyInformation.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformation.cs#L32C19-L32C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformation.cs#L32C19-L32C45" }, { "DocsId": "P:System.Configuration.PropertyInformation.DefaultValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformation.cs#L36C39-L36C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformation.cs#L36C39-L36C56" }, { "DocsId": "P:System.Configuration.PropertyInformation.ValueOrigin", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformation.cs#L42C17-L43C124" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformation.cs#L42C17-L43C124" }, { "DocsId": "P:System.Configuration.PropertyInformation.IsModified", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformation.cs#L47C35-L47C108" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformation.cs#L47C35-L47C108" }, { "DocsId": "P:System.Configuration.PropertyInformation.IsKey", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformation.cs#L49C30-L49C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformation.cs#L49C30-L49C40" }, { "DocsId": "P:System.Configuration.PropertyInformation.IsRequired", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformation.cs#L51C35-L51C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformation.cs#L51C35-L51C50" }, { "DocsId": "P:System.Configuration.PropertyInformation.IsLocked", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformation.cs#L54C13-L60C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformation.cs#L54C13-L60C82" }, { "DocsId": "P:System.Configuration.PropertyInformation.Source", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformation.cs#L67C17-L69C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformation.cs#L67C17-L69C66" }, { "DocsId": "P:System.Configuration.PropertyInformation.LineNumber", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformation.cs#L80C17-L82C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformation.cs#L80C17-L82C45" }, { "DocsId": "P:System.Configuration.PropertyInformation.Type", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformation.cs#L86C29-L86C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformation.cs#L86C29-L86C38" }, { "DocsId": "P:System.Configuration.PropertyInformation.Validator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformation.cs#L88C56-L88C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformation.cs#L88C56-L88C70" }, { "DocsId": "P:System.Configuration.PropertyInformation.Converter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformation.cs#L90C43-L90C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformation.cs#L90C43-L90C57" }, { "DocsId": "P:System.Configuration.PropertyInformation.Description", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformation.cs#L92C38-L92C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformation.cs#L92C38-L92C54" } ], "DocsId": "T:System.Configuration.PropertyInformation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformation.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformation.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.PropertyInformationCollection.CopyTo(System.Configuration.PropertyInformation[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformationCollection.cs#L44C13-L52C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformationCollection.cs#L44C13-L52C10" }, { "DocsId": "M:System.Configuration.PropertyInformationCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformationCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformationCollection.cs" }, { "DocsId": "P:System.Configuration.PropertyInformationCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformationCollection.cs#L25C17-L35C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformationCollection.cs#L25C17-L35C31" } ], "DocsId": "T:System.Configuration.PropertyInformationCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformationCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformationCollection.cs" }, { "Members": [ { "DocsId": "F:System.Configuration.PropertyValueOrigin.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyValueOrigin.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyValueOrigin.cs" }, { "DocsId": "F:System.Configuration.PropertyValueOrigin.Default", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyValueOrigin.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyValueOrigin.cs" }, { "DocsId": "F:System.Configuration.PropertyValueOrigin.Inherited", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyValueOrigin.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyValueOrigin.cs" }, { "DocsId": "F:System.Configuration.PropertyValueOrigin.SetHere", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyValueOrigin.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyValueOrigin.cs" } ], "DocsId": "T:System.Configuration.PropertyValueOrigin", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyValueOrigin.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyValueOrigin.cs" }, { "Members": [ { "DocsId": "F:System.Configuration.ProtectedConfiguration.RsaProviderName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfiguration.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfiguration.cs" }, { "DocsId": "F:System.Configuration.ProtectedConfiguration.DataProtectionProviderName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfiguration.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfiguration.cs" }, { "DocsId": "F:System.Configuration.ProtectedConfiguration.ProtectedDataSectionName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfiguration.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfiguration.cs" }, { "DocsId": "P:System.Configuration.ProtectedConfiguration.Providers", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfiguration.cs#L12C17-L16C115" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfiguration.cs#L12C17-L16C115" }, { "DocsId": "P:System.Configuration.ProtectedConfiguration.DefaultProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfiguration.cs#L28C17-L32C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfiguration.cs#L28C17-L32C69" } ], "DocsId": "T:System.Configuration.ProtectedConfiguration", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfiguration.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfiguration.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ProtectedConfigurationProvider.Encrypt(System.Xml.XmlNode)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfigurationProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfigurationProvider.cs" }, { "DocsId": "M:System.Configuration.ProtectedConfigurationProvider.Decrypt(System.Xml.XmlNode)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfigurationProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfigurationProvider.cs" }, { "DocsId": "M:System.Configuration.ProtectedConfigurationProvider.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfigurationProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfigurationProvider.cs" } ], "DocsId": "T:System.Configuration.ProtectedConfigurationProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfigurationProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfigurationProvider.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ProtectedConfigurationProviderCollection.Add(System.Configuration.Provider.ProviderBase)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfigurationProviderCollection.cs#L14C13-L27C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfigurationProviderCollection.cs#L14C13-L27C10" }, { "DocsId": "M:System.Configuration.ProtectedConfigurationProviderCollection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfigurationProviderCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfigurationProviderCollection.cs" }, { "DocsId": "P:System.Configuration.ProtectedConfigurationProviderCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfigurationProviderCollection.cs#L10C72-L10C114" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfigurationProviderCollection.cs#L10C72-L10C114" } ], "DocsId": "T:System.Configuration.ProtectedConfigurationProviderCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfigurationProviderCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfigurationProviderCollection.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ProtectedConfigurationSection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfigurationSection.cs#L30C9-L30C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfigurationSection.cs#L30C9-L30C51" }, { "DocsId": "P:System.Configuration.ProtectedConfigurationSection.Properties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfigurationSection.cs#L32C83-L32C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfigurationSection.cs#L32C83-L32C95" }, { "DocsId": "P:System.Configuration.ProtectedConfigurationSection.Providers", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfigurationSection.cs#L37C56-L37C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfigurationSection.cs#L37C56-L37C84" }, { "DocsId": "P:System.Configuration.ProtectedConfigurationSection.DefaultProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfigurationSection.cs#L42C19-L42C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfigurationSection.cs#L42C19-L42C62" } ], "DocsId": "T:System.Configuration.ProtectedConfigurationSection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfigurationSection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfigurationSection.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ProtectedProviderSettings.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedProviderSettings.cs#L8C9-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedProviderSettings.cs#L8C9-L21C10" }, { "DocsId": "P:System.Configuration.ProtectedProviderSettings.Properties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedProviderSettings.cs#L23C83-L23C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedProviderSettings.cs#L23C83-L23C94" }, { "DocsId": "P:System.Configuration.ProtectedProviderSettings.Providers", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedProviderSettings.cs#L26C56-L26C104" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedProviderSettings.cs#L26C56-L26C104" } ], "DocsId": "T:System.Configuration.ProtectedProviderSettings", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedProviderSettings.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedProviderSettings.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ProviderSettings.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettings.cs#L13C9-L30C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettings.cs#L13C9-L30C10" }, { "DocsId": "M:System.Configuration.ProviderSettings.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettings.cs#L32C61-L36C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettings.cs#L32C61-L36C10" }, { "DocsId": "M:System.Configuration.ProviderSettings.Unmerge(System.Configuration.ConfigurationElement,System.Configuration.ConfigurationElement,System.Configuration.ConfigurationSaveMode)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettings.cs#L86C13-L94C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettings.cs#L86C13-L94C10" }, { "DocsId": "M:System.Configuration.ProviderSettings.Reset(System.Configuration.ConfigurationElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettings.cs#L98C13-L102C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettings.cs#L98C13-L102C10" }, { "DocsId": "M:System.Configuration.ProviderSettings.IsModified", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettings.cs#L149C13-L149C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettings.cs#L149C13-L149C68" }, { "DocsId": "M:System.Configuration.ProviderSettings.OnDeserializeUnrecognizedAttribute(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettings.cs#L181C13-L185C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettings.cs#L181C13-L185C25" }, { "DocsId": "P:System.Configuration.ProviderSettings.Properties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettings.cs#L42C17-L43C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettings.cs#L42C17-L43C36" }, { "DocsId": "P:System.Configuration.ProviderSettings.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettings.cs#L50C19-L50C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettings.cs#L50C19-L50C50" }, { "DocsId": "P:System.Configuration.ProviderSettings.Type", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettings.cs#L57C19-L57C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettings.cs#L57C19-L57C50" }, { "DocsId": "P:System.Configuration.ProviderSettings.Parameters", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettings.cs#L65C17-L78C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettings.cs#L65C17-L78C48" } ], "DocsId": "T:System.Configuration.ProviderSettings", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettings.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettings.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ProviderSettingsCollection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettingsCollection.cs#L12C13-L13C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettingsCollection.cs#L12C13-L13C12" }, { "DocsId": "M:System.Configuration.ProviderSettingsCollection.Add(System.Configuration.ProviderSettings)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettingsCollection.cs#L33C13-L38C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettingsCollection.cs#L33C13-L38C10" }, { "DocsId": "M:System.Configuration.ProviderSettingsCollection.Remove(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettingsCollection.cs#L42C13-L43C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettingsCollection.cs#L42C13-L43C10" }, { "DocsId": "M:System.Configuration.ProviderSettingsCollection.Clear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettingsCollection.cs#L47C13-L48C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettingsCollection.cs#L47C13-L48C10" }, { "DocsId": "M:System.Configuration.ProviderSettingsCollection.CreateNewElement", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettingsCollection.cs#L52C13-L52C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettingsCollection.cs#L52C13-L52C43" }, { "DocsId": "M:System.Configuration.ProviderSettingsCollection.GetElementKey(System.Configuration.ConfigurationElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettingsCollection.cs#L57C13-L57C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettingsCollection.cs#L57C13-L57C53" }, { "DocsId": "P:System.Configuration.ProviderSettingsCollection.Properties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettingsCollection.cs#L15C83-L15C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettingsCollection.cs#L15C83-L15C95" }, { "DocsId": "P:System.Configuration.ProviderSettingsCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettingsCollection.cs#L17C57-L17C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettingsCollection.cs#L17C57-L17C87" }, { "DocsId": "P:System.Configuration.ProviderSettingsCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettingsCollection.cs#L21C19-L21C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettingsCollection.cs#L21C19-L21C59" } ], "DocsId": "T:System.Configuration.ProviderSettingsCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettingsCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettingsCollection.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.RegexStringValidator.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RegexStringValidator.cs#L13C9-L19C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RegexStringValidator.cs#L13C9-L19C10" }, { "DocsId": "M:System.Configuration.RegexStringValidator.CanValidate(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RegexStringValidator.cs#L23C13-L23C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RegexStringValidator.cs#L23C13-L23C43" }, { "DocsId": "M:System.Configuration.RegexStringValidator.Validate(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RegexStringValidator.cs#L28C13-L34C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RegexStringValidator.cs#L28C13-L34C10" } ], "DocsId": "T:System.Configuration.RegexStringValidator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RegexStringValidator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RegexStringValidator.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.RegexStringValidatorAttribute.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RegexStringValidatorAttribute.cs#L9C9-L12C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RegexStringValidatorAttribute.cs#L9C9-L12C10" }, { "DocsId": "P:System.Configuration.RegexStringValidatorAttribute.ValidatorInstance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RegexStringValidatorAttribute.cs#L14C73-L14C104" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RegexStringValidatorAttribute.cs#L14C73-L14C104" }, { "DocsId": "P:System.Configuration.RegexStringValidatorAttribute.Regex", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RegexStringValidatorAttribute.cs#L16C31-L16C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RegexStringValidatorAttribute.cs#L16C31-L16C35" } ], "DocsId": "T:System.Configuration.RegexStringValidatorAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RegexStringValidatorAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RegexStringValidatorAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.RsaProtectedConfigurationProvider.Decrypt(System.Xml.XmlNode)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RsaProtectedConfigurationProvider.cs#L20C13-L20C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RsaProtectedConfigurationProvider.cs#L20C13-L20C55" }, { "DocsId": "M:System.Configuration.RsaProtectedConfigurationProvider.Encrypt(System.Xml.XmlNode)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RsaProtectedConfigurationProvider.cs#L25C13-L25C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RsaProtectedConfigurationProvider.cs#L25C13-L25C55" }, { "DocsId": "M:System.Configuration.RsaProtectedConfigurationProvider.AddKey(System.Int32,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RsaProtectedConfigurationProvider.cs#L30C13-L30C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RsaProtectedConfigurationProvider.cs#L30C13-L30C55" }, { "DocsId": "M:System.Configuration.RsaProtectedConfigurationProvider.DeleteKey", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RsaProtectedConfigurationProvider.cs#L35C13-L35C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RsaProtectedConfigurationProvider.cs#L35C13-L35C55" }, { "DocsId": "M:System.Configuration.RsaProtectedConfigurationProvider.ImportKey(System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RsaProtectedConfigurationProvider.cs#L40C13-L40C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RsaProtectedConfigurationProvider.cs#L40C13-L40C55" }, { "DocsId": "M:System.Configuration.RsaProtectedConfigurationProvider.ExportKey(System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RsaProtectedConfigurationProvider.cs#L45C13-L45C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RsaProtectedConfigurationProvider.cs#L45C13-L45C55" }, { "DocsId": "M:System.Configuration.RsaProtectedConfigurationProvider.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RsaProtectedConfigurationProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RsaProtectedConfigurationProvider.cs" }, { "DocsId": "P:System.Configuration.RsaProtectedConfigurationProvider.KeyContainerName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RsaProtectedConfigurationProvider.cs#L48C48-L48C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RsaProtectedConfigurationProvider.cs#L48C48-L48C90" }, { "DocsId": "P:System.Configuration.RsaProtectedConfigurationProvider.CspProviderName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RsaProtectedConfigurationProvider.cs#L49C47-L49C89" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RsaProtectedConfigurationProvider.cs#L49C47-L49C89" }, { "DocsId": "P:System.Configuration.RsaProtectedConfigurationProvider.UseMachineContainer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RsaProtectedConfigurationProvider.cs#L50C49-L50C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RsaProtectedConfigurationProvider.cs#L50C49-L50C91" }, { "DocsId": "P:System.Configuration.RsaProtectedConfigurationProvider.UseOAEP", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RsaProtectedConfigurationProvider.cs#L51C37-L51C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RsaProtectedConfigurationProvider.cs#L51C37-L51C79" }, { "DocsId": "P:System.Configuration.RsaProtectedConfigurationProvider.UseFIPS", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RsaProtectedConfigurationProvider.cs#L52C37-L52C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RsaProtectedConfigurationProvider.cs#L52C37-L52C79" }, { "DocsId": "P:System.Configuration.RsaProtectedConfigurationProvider.RsaPublicKey", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RsaProtectedConfigurationProvider.cs#L53C51-L53C93" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RsaProtectedConfigurationProvider.cs#L53C51-L53C93" } ], "DocsId": "T:System.Configuration.RsaProtectedConfigurationProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RsaProtectedConfigurationProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RsaProtectedConfigurationProvider.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SchemeSettingElement.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SchemeSettingElement.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SchemeSettingElement.cs" }, { "DocsId": "P:System.Configuration.SchemeSettingElement.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SchemeSettingElement.cs#L19C19-L19C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SchemeSettingElement.cs#L19C19-L19C47" }, { "DocsId": "P:System.Configuration.SchemeSettingElement.GenericUriParserOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SchemeSettingElement.cs#L26C19-L26C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SchemeSettingElement.cs#L26C19-L26C83" }, { "DocsId": "P:System.Configuration.SchemeSettingElement.Properties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SchemeSettingElement.cs#L31C19-L31C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SchemeSettingElement.cs#L31C19-L31C39" } ], "DocsId": "T:System.Configuration.SchemeSettingElement", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SchemeSettingElement.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SchemeSettingElement.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SchemeSettingElementCollection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SchemeSettingElementCollection.cs#L17C9-L22C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SchemeSettingElementCollection.cs#L17C9-L22C10" }, { "DocsId": "M:System.Configuration.SchemeSettingElementCollection.IndexOf(System.Configuration.SchemeSettingElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SchemeSettingElementCollection.cs#L41C13-L41C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SchemeSettingElementCollection.cs#L41C13-L41C41" }, { "DocsId": "M:System.Configuration.SchemeSettingElementCollection.CreateNewElement", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SchemeSettingElementCollection.cs#L46C13-L46C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SchemeSettingElementCollection.cs#L46C13-L46C47" }, { "DocsId": "M:System.Configuration.SchemeSettingElementCollection.GetElementKey(System.Configuration.ConfigurationElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SchemeSettingElementCollection.cs#L51C13-L51C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SchemeSettingElementCollection.cs#L51C13-L51C57" }, { "DocsId": "P:System.Configuration.SchemeSettingElementCollection.CollectionType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SchemeSettingElementCollection.cs#L26C19-L26C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SchemeSettingElementCollection.cs#L26C19-L26C79" }, { "DocsId": "P:System.Configuration.SchemeSettingElementCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SchemeSettingElementCollection.cs#L31C19-L31C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SchemeSettingElementCollection.cs#L31C19-L31C63" }, { "DocsId": "P:System.Configuration.SchemeSettingElementCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SchemeSettingElementCollection.cs#L36C19-L36C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SchemeSettingElementCollection.cs#L36C19-L36C62" } ], "DocsId": "T:System.Configuration.SchemeSettingElementCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SchemeSettingElementCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SchemeSettingElementCollection.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SectionInformation.ForceDeclaration", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L565C13-L566C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L565C13-L566C10" }, { "DocsId": "M:System.Configuration.SectionInformation.ForceDeclaration(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L572C13-L596C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L572C13-L596C10" }, { "DocsId": "M:System.Configuration.SectionInformation.ProtectSection(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L603C13-L624C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L603C13-L624C10" }, { "DocsId": "M:System.Configuration.SectionInformation.UnprotectSection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L628C13-L634C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L628C13-L634C10" }, { "DocsId": "M:System.Configuration.SectionInformation.GetParentSection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L638C13-L656C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L638C13-L656C29" }, { "DocsId": "M:System.Configuration.SectionInformation.GetRawXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L661C13-L664C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L661C13-L664C66" }, { "DocsId": "M:System.Configuration.SectionInformation.SetRawXml(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L669C13-L673C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L669C13-L673C10" }, { "DocsId": "M:System.Configuration.SectionInformation.RevertToParent", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L677C13-L681C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L677C13-L681C10" }, { "DocsId": "P:System.Configuration.SectionInformation.SectionName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L80C38-L80C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L80C38-L80C47" }, { "DocsId": "P:System.Configuration.SectionInformation.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L82C30-L82C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L82C30-L82C34" }, { "DocsId": "P:System.Configuration.SectionInformation.AllowDefinition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L86C19-L86C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L86C19-L86C43" }, { "DocsId": "P:System.Configuration.SectionInformation.AllowExeDefinition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L107C19-L107C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L107C19-L107C46" }, { "DocsId": "P:System.Configuration.SectionInformation.OverrideModeDefault", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L128C19-L128C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L128C19-L128C60" }, { "DocsId": "P:System.Configuration.SectionInformation.AllowLocation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L154C19-L154C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L154C19-L154C52" }, { "DocsId": "P:System.Configuration.SectionInformation.AllowOverride", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L175C19-L175C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L175C19-L175C54" }, { "DocsId": "P:System.Configuration.SectionInformation.OverrideMode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L187C19-L187C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L187C19-L187C53" }, { "DocsId": "P:System.Configuration.SectionInformation.OverrideModeEffective", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L216C54-L216C121" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L216C54-L216C121" }, { "DocsId": "P:System.Configuration.SectionInformation.ConfigSource", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L231C19-L231C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L231C19-L231C56" }, { "DocsId": "P:System.Configuration.SectionInformation.InheritInChildApplications", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L257C19-L257C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L257C19-L257C57" }, { "DocsId": "P:System.Configuration.SectionInformation.IsDeclared", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L271C17-L273C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L271C17-L273C45" }, { "DocsId": "P:System.Configuration.SectionInformation.IsDeclarationRequired", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L283C17-L285C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L283C17-L285C56" }, { "DocsId": "P:System.Configuration.SectionInformation.IsLocked", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L295C33-L296C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L295C33-L296C62" }, { "DocsId": "P:System.Configuration.SectionInformation.IsProtected", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L298C36-L298C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L298C36-L298C62" }, { "DocsId": "P:System.Configuration.SectionInformation.ProtectionProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L304C17-L310C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L304C17-L310C44" }, { "DocsId": "P:System.Configuration.SectionInformation.RestartOnExternalChanges", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L318C19-L318C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L318C19-L318C63" }, { "DocsId": "P:System.Configuration.SectionInformation.RequirePermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L339C19-L339C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L339C19-L339C56" }, { "DocsId": "P:System.Configuration.SectionInformation.Type", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L361C19-L361C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L361C19-L361C36" }, { "DocsId": "P:System.Configuration.SectionInformation.ForceSave", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L394C19-L394C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L394C19-L394C48" } ], "DocsId": "T:System.Configuration.SectionInformation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SettingAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingAttribute.cs" } ], "DocsId": "T:System.Configuration.SettingAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SettingChangingEventArgs.#ctor(System.String,System.String,System.String,System.Object,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingChangingEventArgs.cs#L18C133-L24C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingChangingEventArgs.cs#L18C133-L24C10" }, { "DocsId": "P:System.Configuration.SettingChangingEventArgs.NewValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingChangingEventArgs.cs#L30C17-L30C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingChangingEventArgs.cs#L30C17-L30C34" }, { "DocsId": "P:System.Configuration.SettingChangingEventArgs.SettingClass", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingChangingEventArgs.cs#L38C17-L38C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingChangingEventArgs.cs#L38C17-L38C38" }, { "DocsId": "P:System.Configuration.SettingChangingEventArgs.SettingName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingChangingEventArgs.cs#L46C17-L46C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingChangingEventArgs.cs#L46C17-L46C37" }, { "DocsId": "P:System.Configuration.SettingChangingEventArgs.SettingKey", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingChangingEventArgs.cs#L54C17-L54C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingChangingEventArgs.cs#L54C17-L54C36" } ], "DocsId": "T:System.Configuration.SettingChangingEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingChangingEventArgs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingChangingEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SettingChangingEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingChangingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingChangingEventHandler.cs" }, { "DocsId": "M:System.Configuration.SettingChangingEventHandler.Invoke(System.Object,System.Configuration.SettingChangingEventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingChangingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingChangingEventHandler.cs" }, { "DocsId": "M:System.Configuration.SettingChangingEventHandler.BeginInvoke(System.Object,System.Configuration.SettingChangingEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingChangingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingChangingEventHandler.cs" }, { "DocsId": "M:System.Configuration.SettingChangingEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingChangingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingChangingEventHandler.cs" } ], "DocsId": "T:System.Configuration.SettingChangingEventHandler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingChangingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingChangingEventHandler.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SettingElement.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElement.cs#L27C9-L29C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElement.cs#L27C9-L29C10" }, { "DocsId": "M:System.Configuration.SettingElement.#ctor(System.String,System.Configuration.SettingsSerializeAs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElement.cs#L31C79-L35C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElement.cs#L31C79-L35C10" }, { "DocsId": "M:System.Configuration.SettingElement.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElement.cs#L47C13-L48C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElement.cs#L47C13-L48C95" }, { "DocsId": "M:System.Configuration.SettingElement.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElement.cs#L53C13-L53C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElement.cs#L53C13-L53C61" }, { "DocsId": "P:System.Configuration.SettingElement.Properties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElement.cs#L60C17-L60C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElement.cs#L60C17-L60C37" }, { "DocsId": "P:System.Configuration.SettingElement.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElement.cs#L69C17-L69C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElement.cs#L69C17-L69C49" }, { "DocsId": "P:System.Configuration.SettingElement.SerializeAs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElement.cs#L82C17-L82C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElement.cs#L82C17-L82C69" }, { "DocsId": "P:System.Configuration.SettingElement.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElement.cs#L95C17-L95C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElement.cs#L95C17-L95C63" } ], "DocsId": "T:System.Configuration.SettingElement", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElement.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElement.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SettingElementCollection.CreateNewElement", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElementCollection.cs#L26C13-L26C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElementCollection.cs#L26C13-L26C41" }, { "DocsId": "M:System.Configuration.SettingElementCollection.GetElementKey(System.Configuration.ConfigurationElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElementCollection.cs#L31C13-L31C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElementCollection.cs#L31C13-L31C50" }, { "DocsId": "M:System.Configuration.SettingElementCollection.Get(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElementCollection.cs#L36C13-L36C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElementCollection.cs#L36C13-L36C56" }, { "DocsId": "M:System.Configuration.SettingElementCollection.Add(System.Configuration.SettingElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElementCollection.cs#L41C13-L42C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElementCollection.cs#L41C13-L42C10" }, { "DocsId": "M:System.Configuration.SettingElementCollection.Remove(System.Configuration.SettingElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElementCollection.cs#L46C13-L47C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElementCollection.cs#L46C13-L47C10" }, { "DocsId": "M:System.Configuration.SettingElementCollection.Clear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElementCollection.cs#L51C13-L52C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElementCollection.cs#L51C13-L52C10" }, { "DocsId": "M:System.Configuration.SettingElementCollection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElementCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElementCollection.cs" }, { "DocsId": "P:System.Configuration.SettingElementCollection.CollectionType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElementCollection.cs#L12C17-L12C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElementCollection.cs#L12C17-L12C68" }, { "DocsId": "P:System.Configuration.SettingElementCollection.ElementName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElementCollection.cs#L20C17-L20C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElementCollection.cs#L20C17-L20C34" } ], "DocsId": "T:System.Configuration.SettingElementCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElementCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElementCollection.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SettingsAttributeDictionary.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsAttributeDictionary.cs#L11C48-L11C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsAttributeDictionary.cs#L11C48-L11C58" }, { "DocsId": "M:System.Configuration.SettingsAttributeDictionary.#ctor(System.Configuration.SettingsAttributeDictionary)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsAttributeDictionary.cs#L13C86-L13C106" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsAttributeDictionary.cs#L13C86-L13C106" }, { "DocsId": "M:System.Configuration.SettingsAttributeDictionary.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsAttributeDictionary.cs#L15C9-L17C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsAttributeDictionary.cs#L15C9-L17C55" } ], "DocsId": "T:System.Configuration.SettingsAttributeDictionary", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsAttributeDictionary.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsAttributeDictionary.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SettingsBase.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsBase.cs#L16C9-L19C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsBase.cs#L16C9-L19C10" }, { "DocsId": "M:System.Configuration.SettingsBase.Initialize(System.Configuration.SettingsContext,System.Configuration.SettingsPropertyCollection,System.Configuration.SettingsProviderCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsBase.cs#L103C13-L106C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsBase.cs#L103C13-L106C10" }, { "DocsId": "M:System.Configuration.SettingsBase.Save", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsBase.cs#L110C13-L121C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsBase.cs#L110C13-L121C10" }, { "DocsId": "M:System.Configuration.SettingsBase.Synchronized(System.Configuration.SettingsBase)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsBase.cs#L176C13-L177C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsBase.cs#L176C13-L177C33" }, { "DocsId": "P:System.Configuration.SettingsBase.Item(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsBase.cs#L25C17-L36C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsBase.cs#L25C17-L36C14" }, { "DocsId": "P:System.Configuration.SettingsBase.Properties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsBase.cs#L147C70-L147C89" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsBase.cs#L147C70-L147C89" }, { "DocsId": "P:System.Configuration.SettingsBase.Providers", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsBase.cs#L148C69-L148C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsBase.cs#L148C69-L148C87" }, { "DocsId": "P:System.Configuration.SettingsBase.PropertyValues", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsBase.cs#L149C79-L149C102" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsBase.cs#L149C79-L149C102" }, { "DocsId": "P:System.Configuration.SettingsBase.Context", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsBase.cs#L150C56-L150C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsBase.cs#L150C56-L150C72" }, { "DocsId": "P:System.Configuration.SettingsBase.IsSynchronized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsBase.cs#L181C44-L181C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsBase.cs#L181C44-L181C67" } ], "DocsId": "T:System.Configuration.SettingsBase", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsBase.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsBase.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SettingsContext.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsContext.cs#L11C36-L11C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsContext.cs#L11C36-L11C46" }, { "DocsId": "M:System.Configuration.SettingsContext.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsContext.cs#L13C9-L15C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsContext.cs#L13C9-L15C55" } ], "DocsId": "T:System.Configuration.SettingsContext", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsContext.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsContext.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SettingsDescriptionAttribute.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsDescriptionAttribute.cs#L17C9-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsDescriptionAttribute.cs#L17C9-L20C10" }, { "DocsId": "P:System.Configuration.SettingsDescriptionAttribute.Description", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsDescriptionAttribute.cs#L29C17-L29C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsDescriptionAttribute.cs#L29C17-L29C37" } ], "DocsId": "T:System.Configuration.SettingsDescriptionAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsDescriptionAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsDescriptionAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SettingsGroupDescriptionAttribute.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsGroupDescriptionAttribute.cs#L17C9-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsGroupDescriptionAttribute.cs#L17C9-L20C10" }, { "DocsId": "P:System.Configuration.SettingsGroupDescriptionAttribute.Description", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsGroupDescriptionAttribute.cs#L29C17-L29C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsGroupDescriptionAttribute.cs#L29C17-L29C37" } ], "DocsId": "T:System.Configuration.SettingsGroupDescriptionAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsGroupDescriptionAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsGroupDescriptionAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SettingsGroupNameAttribute.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsGroupNameAttribute.cs#L17C9-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsGroupNameAttribute.cs#L17C9-L20C10" }, { "DocsId": "P:System.Configuration.SettingsGroupNameAttribute.GroupName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsGroupNameAttribute.cs#L29C17-L29C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsGroupNameAttribute.cs#L29C17-L29C35" } ], "DocsId": "T:System.Configuration.SettingsGroupNameAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsGroupNameAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsGroupNameAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SettingsLoadedEventArgs.#ctor(System.Configuration.SettingsProvider)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsLoadedEventArgs.cs#L13C9-L16C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsLoadedEventArgs.cs#L13C9-L16C10" }, { "DocsId": "P:System.Configuration.SettingsLoadedEventArgs.Provider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsLoadedEventArgs.cs#L22C17-L22C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsLoadedEventArgs.cs#L22C17-L22C34" } ], "DocsId": "T:System.Configuration.SettingsLoadedEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsLoadedEventArgs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsLoadedEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SettingsLoadedEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsLoadedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsLoadedEventHandler.cs" }, { "DocsId": "M:System.Configuration.SettingsLoadedEventHandler.Invoke(System.Object,System.Configuration.SettingsLoadedEventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsLoadedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsLoadedEventHandler.cs" }, { "DocsId": "M:System.Configuration.SettingsLoadedEventHandler.BeginInvoke(System.Object,System.Configuration.SettingsLoadedEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsLoadedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsLoadedEventHandler.cs" }, { "DocsId": "M:System.Configuration.SettingsLoadedEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsLoadedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsLoadedEventHandler.cs" } ], "DocsId": "T:System.Configuration.SettingsLoadedEventHandler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsLoadedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsLoadedEventHandler.cs" }, { "Members": [ { "DocsId": "F:System.Configuration.SettingsManageability.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsManageability.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsManageability.cs" }, { "DocsId": "F:System.Configuration.SettingsManageability.Roaming", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsManageability.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsManageability.cs" } ], "DocsId": "T:System.Configuration.SettingsManageability", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsManageability.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsManageability.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SettingsManageabilityAttribute.#ctor(System.Configuration.SettingsManageability)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsManageabilityAttribute.cs#L17C9-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsManageabilityAttribute.cs#L17C9-L20C10" }, { "DocsId": "P:System.Configuration.SettingsManageabilityAttribute.Manageability", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsManageabilityAttribute.cs#L29C17-L29C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsManageabilityAttribute.cs#L29C17-L29C39" } ], "DocsId": "T:System.Configuration.SettingsManageabilityAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsManageabilityAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsManageabilityAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SettingsPropertyCollection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L13C9-L16C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L13C9-L16C10" }, { "DocsId": "M:System.Configuration.SettingsPropertyCollection.Add(System.Configuration.SettingsProperty)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L20C13-L34C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L20C13-L34C10" }, { "DocsId": "M:System.Configuration.SettingsPropertyCollection.Remove(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L38C13-L55C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L38C13-L55C10" }, { "DocsId": "M:System.Configuration.SettingsPropertyCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L67C13-L67C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L67C13-L67C54" }, { "DocsId": "M:System.Configuration.SettingsPropertyCollection.Clone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L72C13-L72C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L72C13-L72C63" }, { "DocsId": "M:System.Configuration.SettingsPropertyCollection.SetReadOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L77C13-L80C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L77C13-L80C10" }, { "DocsId": "M:System.Configuration.SettingsPropertyCollection.Clear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L84C13-L89C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L84C13-L89C10" }, { "DocsId": "M:System.Configuration.SettingsPropertyCollection.OnAdd(System.Configuration.SettingsProperty)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L96C67-L96C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L96C67-L96C68" }, { "DocsId": "M:System.Configuration.SettingsPropertyCollection.OnAddComplete(System.Configuration.SettingsProperty)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L98C75-L98C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L98C75-L98C76" }, { "DocsId": "M:System.Configuration.SettingsPropertyCollection.OnClear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L100C44-L100C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L100C44-L100C45" }, { "DocsId": "M:System.Configuration.SettingsPropertyCollection.OnClearComplete", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L102C52-L102C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L102C52-L102C53" }, { "DocsId": "M:System.Configuration.SettingsPropertyCollection.OnRemove(System.Configuration.SettingsProperty)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L104C70-L104C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L104C70-L104C71" }, { "DocsId": "M:System.Configuration.SettingsPropertyCollection.OnRemoveComplete(System.Configuration.SettingsProperty)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L106C78-L106C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L106C78-L106C79" }, { "DocsId": "M:System.Configuration.SettingsPropertyCollection.CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L115C13-L116C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L115C13-L116C10" }, { "DocsId": "P:System.Configuration.SettingsPropertyCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L61C17-L61C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L61C17-L61C61" }, { "DocsId": "P:System.Configuration.SettingsPropertyCollection.Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L109C34-L109C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L109C34-L109C58" }, { "DocsId": "P:System.Configuration.SettingsPropertyCollection.IsSynchronized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L110C44-L110C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L110C44-L110C57" }, { "DocsId": "P:System.Configuration.SettingsPropertyCollection.SyncRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L111C40-L111C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L111C40-L111C52" } ], "DocsId": "T:System.Configuration.SettingsPropertyCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SettingsPropertyIsReadOnlyException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyIsReadOnlyException.cs#L14C16-L16C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyIsReadOnlyException.cs#L14C16-L16C10" }, { "DocsId": "M:System.Configuration.SettingsPropertyIsReadOnlyException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyIsReadOnlyException.cs#L19C16-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyIsReadOnlyException.cs#L19C16-L21C10" }, { "DocsId": "M:System.Configuration.SettingsPropertyIsReadOnlyException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyIsReadOnlyException.cs#L28C16-L30C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyIsReadOnlyException.cs#L28C16-L30C10" }, { "DocsId": "M:System.Configuration.SettingsPropertyIsReadOnlyException.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyIsReadOnlyException.cs#L32C9-L34C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyIsReadOnlyException.cs#L32C9-L34C10" } ], "DocsId": "T:System.Configuration.SettingsPropertyIsReadOnlyException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyIsReadOnlyException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyIsReadOnlyException.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SettingsPropertyNotFoundException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyNotFoundException.cs#L14C15-L16C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyNotFoundException.cs#L14C15-L16C10" }, { "DocsId": "M:System.Configuration.SettingsPropertyNotFoundException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyNotFoundException.cs#L19C15-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyNotFoundException.cs#L19C15-L21C10" }, { "DocsId": "M:System.Configuration.SettingsPropertyNotFoundException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyNotFoundException.cs#L28C15-L30C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyNotFoundException.cs#L28C15-L30C10" }, { "DocsId": "M:System.Configuration.SettingsPropertyNotFoundException.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyNotFoundException.cs#L32C9-L34C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyNotFoundException.cs#L32C9-L34C10" } ], "DocsId": "T:System.Configuration.SettingsPropertyNotFoundException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyNotFoundException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyNotFoundException.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SettingsPropertyValueCollection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValueCollection.cs#L14C9-L18C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValueCollection.cs#L14C9-L18C10" }, { "DocsId": "M:System.Configuration.SettingsPropertyValueCollection.Add(System.Configuration.SettingsPropertyValue)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValueCollection.cs#L22C13-L36C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValueCollection.cs#L22C13-L36C10" }, { "DocsId": "M:System.Configuration.SettingsPropertyValueCollection.Remove(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValueCollection.cs#L40C13-L64C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValueCollection.cs#L40C13-L64C10" }, { "DocsId": "M:System.Configuration.SettingsPropertyValueCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValueCollection.cs#L86C13-L86C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValueCollection.cs#L86C13-L86C44" }, { "DocsId": "M:System.Configuration.SettingsPropertyValueCollection.Clone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValueCollection.cs#L91C13-L91C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValueCollection.cs#L91C13-L91C75" }, { "DocsId": "M:System.Configuration.SettingsPropertyValueCollection.SetReadOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValueCollection.cs#L96C13-L101C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValueCollection.cs#L96C13-L101C10" }, { "DocsId": "M:System.Configuration.SettingsPropertyValueCollection.Clear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValueCollection.cs#L105C13-L107C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValueCollection.cs#L105C13-L107C10" }, { "DocsId": "M:System.Configuration.SettingsPropertyValueCollection.CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValueCollection.cs#L117C13-L118C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValueCollection.cs#L117C13-L118C10" }, { "DocsId": "P:System.Configuration.SettingsPropertyValueCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValueCollection.cs#L70C17-L80C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValueCollection.cs#L70C17-L80C61" }, { "DocsId": "P:System.Configuration.SettingsPropertyValueCollection.Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValueCollection.cs#L109C34-L109C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValueCollection.cs#L109C34-L109C55" }, { "DocsId": "P:System.Configuration.SettingsPropertyValueCollection.IsSynchronized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValueCollection.cs#L111C44-L111C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValueCollection.cs#L111C44-L111C57" }, { "DocsId": "P:System.Configuration.SettingsPropertyValueCollection.SyncRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValueCollection.cs#L113C40-L113C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValueCollection.cs#L113C40-L113C52" } ], "DocsId": "T:System.Configuration.SettingsPropertyValueCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValueCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValueCollection.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SettingsPropertyWrongTypeException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyWrongTypeException.cs#L14C15-L16C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyWrongTypeException.cs#L14C15-L16C10" }, { "DocsId": "M:System.Configuration.SettingsPropertyWrongTypeException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyWrongTypeException.cs#L19C16-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyWrongTypeException.cs#L19C16-L21C10" }, { "DocsId": "M:System.Configuration.SettingsPropertyWrongTypeException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyWrongTypeException.cs#L28C16-L30C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyWrongTypeException.cs#L28C16-L30C10" }, { "DocsId": "M:System.Configuration.SettingsPropertyWrongTypeException.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyWrongTypeException.cs#L32C9-L34C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyWrongTypeException.cs#L32C9-L34C10" } ], "DocsId": "T:System.Configuration.SettingsPropertyWrongTypeException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyWrongTypeException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyWrongTypeException.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SettingsProvider.GetPropertyValues(System.Configuration.SettingsContext,System.Configuration.SettingsPropertyCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProvider.cs" }, { "DocsId": "M:System.Configuration.SettingsProvider.SetPropertyValues(System.Configuration.SettingsContext,System.Configuration.SettingsPropertyValueCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProvider.cs" }, { "DocsId": "M:System.Configuration.SettingsProvider.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProvider.cs" }, { "DocsId": "P:System.Configuration.SettingsProvider.ApplicationName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProvider.cs" } ], "DocsId": "T:System.Configuration.SettingsProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProvider.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SettingsProviderAttribute.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProviderAttribute.cs#L17C9-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProviderAttribute.cs#L17C9-L20C10" }, { "DocsId": "M:System.Configuration.SettingsProviderAttribute.#ctor(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProviderAttribute.cs#L25C9-L31C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProviderAttribute.cs#L25C9-L31C10" }, { "DocsId": "P:System.Configuration.SettingsProviderAttribute.ProviderTypeName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProviderAttribute.cs#L40C17-L40C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProviderAttribute.cs#L40C17-L40C42" } ], "DocsId": "T:System.Configuration.SettingsProviderAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProviderAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProviderAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SettingsProviderCollection.Add(System.Configuration.Provider.ProviderBase)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProviderCollection.cs#L12C13-L23C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProviderCollection.cs#L12C13-L23C10" }, { "DocsId": "M:System.Configuration.SettingsProviderCollection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProviderCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProviderCollection.cs" }, { "DocsId": "P:System.Configuration.SettingsProviderCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProviderCollection.cs#L29C17-L29C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProviderCollection.cs#L29C17-L29C53" } ], "DocsId": "T:System.Configuration.SettingsProviderCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProviderCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProviderCollection.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SettingsSavingEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsSavingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsSavingEventHandler.cs" }, { "DocsId": "M:System.Configuration.SettingsSavingEventHandler.Invoke(System.Object,System.ComponentModel.CancelEventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsSavingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsSavingEventHandler.cs" }, { "DocsId": "M:System.Configuration.SettingsSavingEventHandler.BeginInvoke(System.Object,System.ComponentModel.CancelEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsSavingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsSavingEventHandler.cs" }, { "DocsId": "M:System.Configuration.SettingsSavingEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsSavingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsSavingEventHandler.cs" } ], "DocsId": "T:System.Configuration.SettingsSavingEventHandler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsSavingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsSavingEventHandler.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SettingsSerializeAsAttribute.#ctor(System.Configuration.SettingsSerializeAs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsSerializeAsAttribute.cs#L17C9-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsSerializeAsAttribute.cs#L17C9-L20C10" }, { "DocsId": "P:System.Configuration.SettingsSerializeAsAttribute.SerializeAs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsSerializeAsAttribute.cs#L29C17-L29C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsSerializeAsAttribute.cs#L29C17-L29C37" } ], "DocsId": "T:System.Configuration.SettingsSerializeAsAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsSerializeAsAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsSerializeAsAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SettingValueElement.DeserializeElement(System.Xml.XmlReader,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingValueElement.cs#L34C13-L35C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingValueElement.cs#L34C13-L35C10" }, { "DocsId": "M:System.Configuration.SettingValueElement.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingValueElement.cs#L39C13-L40C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingValueElement.cs#L39C13-L40C64" }, { "DocsId": "M:System.Configuration.SettingValueElement.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingValueElement.cs#L45C13-L45C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingValueElement.cs#L45C13-L45C49" }, { "DocsId": "M:System.Configuration.SettingValueElement.IsModified", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingValueElement.cs#L50C13-L50C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingValueElement.cs#L50C13-L50C32" }, { "DocsId": "M:System.Configuration.SettingValueElement.ResetModified", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingValueElement.cs#L55C13-L56C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingValueElement.cs#L55C13-L56C10" }, { "DocsId": "M:System.Configuration.SettingValueElement.SerializeToXmlElement(System.Xml.XmlWriter,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingValueElement.cs#L60C13-L69C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingValueElement.cs#L60C13-L69C26" }, { "DocsId": "M:System.Configuration.SettingValueElement.Reset(System.Configuration.ConfigurationElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingValueElement.cs#L74C13-L76C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingValueElement.cs#L74C13-L76C10" }, { "DocsId": "M:System.Configuration.SettingValueElement.Unmerge(System.Configuration.ConfigurationElement,System.Configuration.ConfigurationElement,System.Configuration.ConfigurationSaveMode)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingValueElement.cs#L81C13-L83C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingValueElement.cs#L81C13-L83C10" }, { "DocsId": "M:System.Configuration.SettingValueElement.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingValueElement.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingValueElement.cs" }, { "DocsId": "P:System.Configuration.SettingValueElement.Properties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingValueElement.cs#L17C13-L17C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingValueElement.cs#L17C13-L17C66" }, { "DocsId": "P:System.Configuration.SettingValueElement.ValueXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingValueElement.cs#L23C17-L23C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingValueElement.cs#L23C17-L23C34" } ], "DocsId": "T:System.Configuration.SettingValueElement", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingValueElement.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingValueElement.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SingleTagSectionHandler.Create(System.Object,System.Object,System.Xml.XmlNode)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SingleTagSectionHandler.cs#L29C13-L46C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SingleTagSectionHandler.cs#L29C13-L46C27" }, { "DocsId": "M:System.Configuration.SingleTagSectionHandler.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SingleTagSectionHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SingleTagSectionHandler.cs" } ], "DocsId": "T:System.Configuration.SingleTagSectionHandler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SingleTagSectionHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SingleTagSectionHandler.cs" }, { "Members": [ { "DocsId": "F:System.Configuration.SpecialSetting.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SpecialSetting.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SpecialSetting.cs" }, { "DocsId": "F:System.Configuration.SpecialSetting.ConnectionString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SpecialSetting.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SpecialSetting.cs" }, { "DocsId": "F:System.Configuration.SpecialSetting.WebServiceUrl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SpecialSetting.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SpecialSetting.cs" } ], "DocsId": "T:System.Configuration.SpecialSetting", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SpecialSetting.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SpecialSetting.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SpecialSettingAttribute.#ctor(System.Configuration.SpecialSetting)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SpecialSettingAttribute.cs#L16C9-L19C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SpecialSettingAttribute.cs#L16C9-L19C10" }, { "DocsId": "P:System.Configuration.SpecialSettingAttribute.SpecialSetting", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SpecialSettingAttribute.cs#L28C17-L28C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SpecialSettingAttribute.cs#L28C17-L28C40" } ], "DocsId": "T:System.Configuration.SpecialSettingAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SpecialSettingAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SpecialSettingAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.CommaDelimitedStringCollection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringAttributeCollection.cs#L14C9-L19C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringAttributeCollection.cs#L14C9-L19C10" }, { "DocsId": "M:System.Configuration.CommaDelimitedStringCollection.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringAttributeCollection.cs#L56C13-L70C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringAttributeCollection.cs#L56C13-L70C58" }, { "DocsId": "M:System.Configuration.CommaDelimitedStringCollection.SetReadOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringAttributeCollection.cs#L86C13-L87C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringAttributeCollection.cs#L86C13-L87C10" }, { "DocsId": "M:System.Configuration.CommaDelimitedStringCollection.Add(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringAttributeCollection.cs#L91C13-L95C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringAttributeCollection.cs#L91C13-L95C10" }, { "DocsId": "M:System.Configuration.CommaDelimitedStringCollection.AddRange(System.String[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringAttributeCollection.cs#L99C13-L106C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringAttributeCollection.cs#L99C13-L106C10" }, { "DocsId": "M:System.Configuration.CommaDelimitedStringCollection.Clear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringAttributeCollection.cs#L110C13-L113C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringAttributeCollection.cs#L110C13-L113C10" }, { "DocsId": "M:System.Configuration.CommaDelimitedStringCollection.Insert(System.Int32,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringAttributeCollection.cs#L117C13-L121C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringAttributeCollection.cs#L117C13-L121C10" }, { "DocsId": "M:System.Configuration.CommaDelimitedStringCollection.Remove(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringAttributeCollection.cs#L125C13-L129C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringAttributeCollection.cs#L125C13-L129C10" }, { "DocsId": "M:System.Configuration.CommaDelimitedStringCollection.Clone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringAttributeCollection.cs#L133C13-L143C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringAttributeCollection.cs#L133C13-L143C25" }, { "DocsId": "P:System.Configuration.CommaDelimitedStringCollection.IsModified", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringAttributeCollection.cs#L21C35-L21C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringAttributeCollection.cs#L21C35-L21C79" }, { "DocsId": "P:System.Configuration.CommaDelimitedStringCollection.IsReadOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringAttributeCollection.cs#L23C38-L23C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringAttributeCollection.cs#L23C38-L23C42" }, { "DocsId": "P:System.Configuration.CommaDelimitedStringCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringAttributeCollection.cs#L27C19-L27C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringAttributeCollection.cs#L27C19-L27C38" } ], "DocsId": "T:System.Configuration.CommaDelimitedStringCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringAttributeCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringAttributeCollection.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.StringValidator.#ctor(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringValidator.cs#L13C15-L14C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringValidator.cs#L13C15-L14C12" }, { "DocsId": "M:System.Configuration.StringValidator.#ctor(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringValidator.cs#L17C15-L18C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringValidator.cs#L17C15-L18C12" }, { "DocsId": "M:System.Configuration.StringValidator.#ctor(System.Int32,System.Int32,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringValidator.cs#L20C9-L25C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringValidator.cs#L20C9-L25C10" }, { "DocsId": "M:System.Configuration.StringValidator.CanValidate(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringValidator.cs#L29C13-L29C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringValidator.cs#L29C13-L29C43" }, { "DocsId": "M:System.Configuration.StringValidator.Validate(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringValidator.cs#L34C13-L54C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringValidator.cs#L34C13-L54C10" } ], "DocsId": "T:System.Configuration.StringValidator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringValidator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringValidator.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.StringValidatorAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringValidatorAttribute.cs#L9C9-L9C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringValidatorAttribute.cs#L9C9-L9C47" }, { "DocsId": "P:System.Configuration.StringValidatorAttribute.ValidatorInstance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringValidatorAttribute.cs#L13C16-L13C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringValidatorAttribute.cs#L13C16-L13C78" }, { "DocsId": "P:System.Configuration.StringValidatorAttribute.MinLength", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringValidatorAttribute.cs#L17C19-L17C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringValidatorAttribute.cs#L17C19-L17C37" }, { "DocsId": "P:System.Configuration.StringValidatorAttribute.MaxLength", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringValidatorAttribute.cs#L29C19-L29C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringValidatorAttribute.cs#L29C19-L29C37" }, { "DocsId": "P:System.Configuration.StringValidatorAttribute.InvalidCharacters", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringValidatorAttribute.cs#L39C43-L39C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringValidatorAttribute.cs#L39C43-L39C47" } ], "DocsId": "T:System.Configuration.StringValidatorAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringValidatorAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringValidatorAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SubclassTypeValidator.#ctor(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SubclassTypeValidator.cs#L11C9-L17C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SubclassTypeValidator.cs#L11C9-L17C10" }, { "DocsId": "M:System.Configuration.SubclassTypeValidator.CanValidate(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SubclassTypeValidator.cs#L21C13-L21C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SubclassTypeValidator.cs#L21C13-L21C41" }, { "DocsId": "M:System.Configuration.SubclassTypeValidator.Validate(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SubclassTypeValidator.cs#L26C13-L36C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SubclassTypeValidator.cs#L26C13-L36C10" } ], "DocsId": "T:System.Configuration.SubclassTypeValidator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SubclassTypeValidator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SubclassTypeValidator.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SubclassTypeValidatorAttribute.#ctor(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SubclassTypeValidatorAttribute.cs#L9C9-L12C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SubclassTypeValidatorAttribute.cs#L9C9-L12C10" }, { "DocsId": "P:System.Configuration.SubclassTypeValidatorAttribute.ValidatorInstance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SubclassTypeValidatorAttribute.cs#L14C73-L14C109" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SubclassTypeValidatorAttribute.cs#L14C73-L14C109" }, { "DocsId": "P:System.Configuration.SubclassTypeValidatorAttribute.BaseClass", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SubclassTypeValidatorAttribute.cs#L16C33-L16C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SubclassTypeValidatorAttribute.cs#L16C33-L16C37" } ], "DocsId": "T:System.Configuration.SubclassTypeValidatorAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SubclassTypeValidatorAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SubclassTypeValidatorAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.TimeSpanMinutesConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanMinutesConverter.cs#L13C13-L16C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanMinutesConverter.cs#L13C13-L16C64" }, { "DocsId": "M:System.Configuration.TimeSpanMinutesConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanMinutesConverter.cs#L21C13-L22C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanMinutesConverter.cs#L21C13-L22C46" }, { "DocsId": "M:System.Configuration.TimeSpanMinutesConverter.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanMinutesConverter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanMinutesConverter.cs" } ], "DocsId": "T:System.Configuration.TimeSpanMinutesConverter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanMinutesConverter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanMinutesConverter.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.TimeSpanMinutesOrInfiniteConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanMinutesOrInfiniteConverter.cs#L13C13-L15C109" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanMinutesOrInfiniteConverter.cs#L13C13-L15C109" }, { "DocsId": "M:System.Configuration.TimeSpanMinutesOrInfiniteConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanMinutesOrInfiniteConverter.cs#L20C13-L20C101" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanMinutesOrInfiniteConverter.cs#L20C13-L20C101" }, { "DocsId": "M:System.Configuration.TimeSpanMinutesOrInfiniteConverter.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanMinutesOrInfiniteConverter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanMinutesOrInfiniteConverter.cs" } ], "DocsId": "T:System.Configuration.TimeSpanMinutesOrInfiniteConverter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanMinutesOrInfiniteConverter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanMinutesOrInfiniteConverter.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.TimeSpanSecondsConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanSecondsConverter.cs#L13C13-L17C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanSecondsConverter.cs#L13C13-L17C64" }, { "DocsId": "M:System.Configuration.TimeSpanSecondsConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanSecondsConverter.cs#L25C17-L31C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanSecondsConverter.cs#L25C17-L31C46" }, { "DocsId": "M:System.Configuration.TimeSpanSecondsConverter.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanSecondsConverter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanSecondsConverter.cs" } ], "DocsId": "T:System.Configuration.TimeSpanSecondsConverter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanSecondsConverter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanSecondsConverter.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.TimeSpanSecondsOrInfiniteConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanSecondsOrInfiniteConverter.cs#L13C13-L15C109" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanSecondsOrInfiniteConverter.cs#L13C13-L15C109" }, { "DocsId": "M:System.Configuration.TimeSpanSecondsOrInfiniteConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanSecondsOrInfiniteConverter.cs#L20C13-L20C101" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanSecondsOrInfiniteConverter.cs#L20C13-L20C101" }, { "DocsId": "M:System.Configuration.TimeSpanSecondsOrInfiniteConverter.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanSecondsOrInfiniteConverter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanSecondsOrInfiniteConverter.cs" } ], "DocsId": "T:System.Configuration.TimeSpanSecondsOrInfiniteConverter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanSecondsOrInfiniteConverter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanSecondsOrInfiniteConverter.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.TimeSpanValidator.#ctor(System.TimeSpan,System.TimeSpan)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidator.cs#L14C15-L15C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidator.cs#L14C15-L15C12" }, { "DocsId": "M:System.Configuration.TimeSpanValidator.#ctor(System.TimeSpan,System.TimeSpan,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidator.cs#L18C15-L19C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidator.cs#L18C15-L19C12" }, { "DocsId": "M:System.Configuration.TimeSpanValidator.#ctor(System.TimeSpan,System.TimeSpan,System.Boolean,System.Int64)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidator.cs#L21C9-L33C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidator.cs#L21C9-L33C10" }, { "DocsId": "M:System.Configuration.TimeSpanValidator.CanValidate(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidator.cs#L37C13-L37C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidator.cs#L37C13-L37C45" }, { "DocsId": "M:System.Configuration.TimeSpanValidator.Validate(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidator.cs#L42C13-L49C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidator.cs#L42C13-L49C10" } ], "DocsId": "T:System.Configuration.TimeSpanValidator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidator.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.TimeSpanValidatorAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidatorAttribute.cs#L17C58-L19C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidatorAttribute.cs#L17C58-L19C75" }, { "DocsId": "F:System.Configuration.TimeSpanValidatorAttribute.TimeSpanMinValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidatorAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidatorAttribute.cs" }, { "DocsId": "F:System.Configuration.TimeSpanValidatorAttribute.TimeSpanMaxValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidatorAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidatorAttribute.cs" }, { "DocsId": "P:System.Configuration.TimeSpanValidatorAttribute.ValidatorInstance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidatorAttribute.cs#L15C16-L15C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidatorAttribute.cs#L15C16-L15C71" }, { "DocsId": "P:System.Configuration.TimeSpanValidatorAttribute.MinValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidatorAttribute.cs#L17C36-L17C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidatorAttribute.cs#L17C36-L17C40" }, { "DocsId": "P:System.Configuration.TimeSpanValidatorAttribute.MaxValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidatorAttribute.cs#L19C36-L19C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidatorAttribute.cs#L19C36-L19C40" }, { "DocsId": "P:System.Configuration.TimeSpanValidatorAttribute.MinValueString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidatorAttribute.cs#L23C19-L23C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidatorAttribute.cs#L23C19-L23C46" }, { "DocsId": "P:System.Configuration.TimeSpanValidatorAttribute.MaxValueString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidatorAttribute.cs#L37C19-L37C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidatorAttribute.cs#L37C19-L37C46" }, { "DocsId": "P:System.Configuration.TimeSpanValidatorAttribute.ExcludeRange", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidatorAttribute.cs#L49C36-L49C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidatorAttribute.cs#L49C36-L49C40" } ], "DocsId": "T:System.Configuration.TimeSpanValidatorAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidatorAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidatorAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.TypeNameConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TypeNameConverter.cs#L14C13-L20C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TypeNameConverter.cs#L14C13-L20C27" }, { "DocsId": "M:System.Configuration.TypeNameConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TypeNameConverter.cs#L25C13-L29C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TypeNameConverter.cs#L25C13-L29C27" }, { "DocsId": "M:System.Configuration.TypeNameConverter.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TypeNameConverter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TypeNameConverter.cs" } ], "DocsId": "T:System.Configuration.TypeNameConverter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TypeNameConverter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TypeNameConverter.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.UriSection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/UriSection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/UriSection.cs" }, { "DocsId": "P:System.Configuration.UriSection.Idn", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/UriSection.cs#L28C34-L28C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/UriSection.cs#L28C34-L28C56" }, { "DocsId": "P:System.Configuration.UriSection.IriParsing", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/UriSection.cs#L31C48-L31C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/UriSection.cs#L31C48-L31C84" }, { "DocsId": "P:System.Configuration.UriSection.SchemeSettings", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/UriSection.cs#L34C65-L34C118" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/UriSection.cs#L34C65-L34C118" }, { "DocsId": "P:System.Configuration.UriSection.Properties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/UriSection.cs#L36C83-L36C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/UriSection.cs#L36C83-L36C94" } ], "DocsId": "T:System.Configuration.UriSection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/UriSection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/UriSection.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.UserScopedSettingAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/UserScopedSettingAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/UserScopedSettingAttribute.cs" } ], "DocsId": "T:System.Configuration.UserScopedSettingAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/UserScopedSettingAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/UserScopedSettingAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.UserSettingsGroup.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/UserSettingsGroup.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/UserSettingsGroup.cs" } ], "DocsId": "T:System.Configuration.UserSettingsGroup", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/UserSettingsGroup.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/UserSettingsGroup.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ValidatorCallback.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ValidatorCallback.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ValidatorCallback.cs" }, { "DocsId": "M:System.Configuration.ValidatorCallback.Invoke(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ValidatorCallback.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ValidatorCallback.cs" }, { "DocsId": "M:System.Configuration.ValidatorCallback.BeginInvoke(System.Object,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ValidatorCallback.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ValidatorCallback.cs" }, { "DocsId": "M:System.Configuration.ValidatorCallback.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ValidatorCallback.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ValidatorCallback.cs" } ], "DocsId": "T:System.Configuration.ValidatorCallback", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ValidatorCallback.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ValidatorCallback.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.WhiteSpaceTrimStringConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/WhiteSpaceTrimStringConverter.cs#L13C13-L15C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/WhiteSpaceTrimStringConverter.cs#L13C13-L15C74" }, { "DocsId": "M:System.Configuration.WhiteSpaceTrimStringConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/WhiteSpaceTrimStringConverter.cs#L20C13-L20C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/WhiteSpaceTrimStringConverter.cs#L20C13-L20C42" }, { "DocsId": "M:System.Configuration.WhiteSpaceTrimStringConverter.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/WhiteSpaceTrimStringConverter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/WhiteSpaceTrimStringConverter.cs" } ], "DocsId": "T:System.Configuration.WhiteSpaceTrimStringConverter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/WhiteSpaceTrimStringConverter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/WhiteSpaceTrimStringConverter.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SettingsProperty.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProperty.cs#L20C9-L24C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProperty.cs#L20C9-L24C10" }, { "DocsId": "M:System.Configuration.SettingsProperty.#ctor(System.String,System.Type,System.Configuration.SettingsProvider,System.Boolean,System.Object,System.Configuration.SettingsSerializeAs,System.Configuration.SettingsAttributeDictionary,System.Boolean,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProperty.cs#L26C9-L58C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProperty.cs#L26C9-L58C10" }, { "DocsId": "M:System.Configuration.SettingsProperty.#ctor(System.Configuration.SettingsProperty)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProperty.cs#L60C9-L71C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProperty.cs#L60C9-L71C10" }, { "DocsId": "P:System.Configuration.SettingsProperty.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProperty.cs#L10C38-L10C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProperty.cs#L10C38-L10C42" }, { "DocsId": "P:System.Configuration.SettingsProperty.IsReadOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProperty.cs#L11C42-L11C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProperty.cs#L11C42-L11C46" }, { "DocsId": "P:System.Configuration.SettingsProperty.DefaultValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProperty.cs#L12C46-L12C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProperty.cs#L12C46-L12C50" }, { "DocsId": "P:System.Configuration.SettingsProperty.PropertyType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProperty.cs#L13C44-L13C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProperty.cs#L13C44-L13C48" }, { "DocsId": "P:System.Configuration.SettingsProperty.SerializeAs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProperty.cs#L14C58-L14C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProperty.cs#L14C58-L14C62" }, { "DocsId": "P:System.Configuration.SettingsProperty.Provider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProperty.cs#L15C52-L15C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProperty.cs#L15C52-L15C56" }, { "DocsId": "P:System.Configuration.SettingsProperty.Attributes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProperty.cs#L16C65-L16C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProperty.cs#L16C65-L16C69" }, { "DocsId": "P:System.Configuration.SettingsProperty.ThrowOnErrorDeserializing", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProperty.cs#L17C49-L17C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProperty.cs#L17C49-L17C53" }, { "DocsId": "P:System.Configuration.SettingsProperty.ThrowOnErrorSerializing", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProperty.cs#L18C47-L18C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProperty.cs#L18C47-L18C51" } ], "DocsId": "T:System.Configuration.SettingsProperty", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProperty.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProperty.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SettingsPropertyValue.#ctor(System.Configuration.SettingsProperty)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValue.cs#L26C9-L29C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValue.cs#L26C9-L29C10" }, { "DocsId": "P:System.Configuration.SettingsPropertyValue.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValue.cs#L20C31-L20C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValue.cs#L20C31-L20C44" }, { "DocsId": "P:System.Configuration.SettingsPropertyValue.IsDirty", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValue.cs#L21C31-L21C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValue.cs#L21C31-L21C35" }, { "DocsId": "P:System.Configuration.SettingsPropertyValue.Property", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValue.cs#L22C44-L22C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValue.cs#L22C44-L22C48" }, { "DocsId": "P:System.Configuration.SettingsPropertyValue.UsingDefaultValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValue.cs#L23C41-L23C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValue.cs#L23C41-L23C45" }, { "DocsId": "P:System.Configuration.SettingsPropertyValue.Deserialized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValue.cs#L24C36-L24C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValue.cs#L24C36-L24C40" }, { "DocsId": "P:System.Configuration.SettingsPropertyValue.PropertyValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValue.cs#L35C17-L48C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValue.cs#L35C17-L48C31" }, { "DocsId": "P:System.Configuration.SettingsPropertyValue.SerializedValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValue.cs#L64C17-L69C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValue.cs#L64C17-L69C41" } ], "DocsId": "T:System.Configuration.SettingsPropertyValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValue.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValue.cs" }, { "Members": [ { "DocsId": "F:System.Configuration.SettingsSerializeAs.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsSerializeAs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsSerializeAs.cs" }, { "DocsId": "F:System.Configuration.SettingsSerializeAs.String", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsSerializeAs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsSerializeAs.cs" }, { "DocsId": "F:System.Configuration.SettingsSerializeAs.Xml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsSerializeAs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsSerializeAs.cs" }, { "DocsId": "F:System.Configuration.SettingsSerializeAs.Binary", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsSerializeAs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsSerializeAs.cs" }, { "DocsId": "F:System.Configuration.SettingsSerializeAs.ProviderSpecific", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsSerializeAs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsSerializeAs.cs" } ], "DocsId": "T:System.Configuration.SettingsSerializeAs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsSerializeAs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsSerializeAs.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.NoSettingsVersionUpgradeAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NoSettingsVersionUpgradeAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NoSettingsVersionUpgradeAttribute.cs" } ], "DocsId": "T:System.Configuration.NoSettingsVersionUpgradeAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NoSettingsVersionUpgradeAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NoSettingsVersionUpgradeAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.Provider.ProviderBase.Initialize(System.String,System.Collections.Specialized.NameValueCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderBase.cs#L21C13-L39C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderBase.cs#L21C13-L39C10" }, { "DocsId": "M:System.Configuration.Provider.ProviderBase.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderBase.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderBase.cs" }, { "DocsId": "P:System.Configuration.Provider.ProviderBase.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderBase.cs#L15C39-L15C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderBase.cs#L15C39-L15C44" }, { "DocsId": "P:System.Configuration.Provider.ProviderBase.Description", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderBase.cs#L17C46-L17C102" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderBase.cs#L17C46-L17C102" } ], "DocsId": "T:System.Configuration.Provider.ProviderBase", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderBase.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderBase.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.Provider.ProviderCollection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderCollection.cs#L13C9-L16C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderCollection.cs#L13C9-L16C10" }, { "DocsId": "M:System.Configuration.Provider.ProviderCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderCollection.cs#L22C13-L22C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderCollection.cs#L22C13-L22C54" }, { "DocsId": "M:System.Configuration.Provider.ProviderCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderCollection.cs#L33C13-L34C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderCollection.cs#L33C13-L34C10" }, { "DocsId": "M:System.Configuration.Provider.ProviderCollection.Add(System.Configuration.Provider.ProviderBase)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderCollection.cs#L38C13-L48C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderCollection.cs#L38C13-L48C10" }, { "DocsId": "M:System.Configuration.Provider.ProviderCollection.Remove(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderCollection.cs#L52C13-L55C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderCollection.cs#L52C13-L55C10" }, { "DocsId": "M:System.Configuration.Provider.ProviderCollection.SetReadOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderCollection.cs#L59C13-L62C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderCollection.cs#L59C13-L62C10" }, { "DocsId": "M:System.Configuration.Provider.ProviderCollection.Clear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderCollection.cs#L66C13-L69C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderCollection.cs#L66C13-L69C10" }, { "DocsId": "M:System.Configuration.Provider.ProviderCollection.CopyTo(System.Configuration.Provider.ProviderBase[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderCollection.cs#L73C13-L74C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderCollection.cs#L73C13-L74C10" }, { "DocsId": "P:System.Configuration.Provider.ProviderCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderCollection.cs#L18C50-L18C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderCollection.cs#L18C50-L18C82" }, { "DocsId": "P:System.Configuration.Provider.ProviderCollection.Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderCollection.cs#L25C29-L25C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderCollection.cs#L25C29-L25C45" }, { "DocsId": "P:System.Configuration.Provider.ProviderCollection.IsSynchronized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderCollection.cs#L27C39-L27C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderCollection.cs#L27C39-L27C44" }, { "DocsId": "P:System.Configuration.Provider.ProviderCollection.SyncRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderCollection.cs#L29C35-L29C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderCollection.cs#L29C35-L29C39" } ], "DocsId": "T:System.Configuration.Provider.ProviderCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderCollection.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.Provider.ProviderException.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderException.cs#L13C9-L13C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderException.cs#L13C9-L13C39" }, { "DocsId": "M:System.Configuration.Provider.ProviderException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderException.cs#L16C15-L17C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderException.cs#L16C15-L17C12" }, { "DocsId": "M:System.Configuration.Provider.ProviderException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderException.cs#L20C15-L21C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderException.cs#L20C15-L21C12" }, { "DocsId": "M:System.Configuration.Provider.ProviderException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderException.cs#L28C15-L30C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderException.cs#L28C15-L30C10" } ], "DocsId": "T:System.Configuration.Provider.ProviderException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderException.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L26C9-L26C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L26C9-L26C45" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.Init(System.Configuration.Internal.IInternalConfigRoot,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L33C13-L34C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L33C13-L34C10" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.InitForConfiguration(System.String@,System.String@,System.String@,System.Configuration.Internal.IInternalConfigRoot,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L40C13-L42C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L40C13-L42C10" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.IsConfigRecordRequired(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L46C13-L46C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L46C13-L46C60" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.IsInitDelayed(System.Configuration.Internal.IInternalConfigRecord)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L51C13-L51C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L51C13-L51C53" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.RequireCompleteInit(System.Configuration.Internal.IInternalConfigRecord)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L56C13-L57C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L56C13-L57C10" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.IsSecondaryRoot(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L65C13-L65C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L65C13-L65C53" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.GetStreamName(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L70C13-L70C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L70C13-L70C51" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.GetStreamNameForConfigSource(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L75C13-L75C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L75C13-L75C80" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.GetStreamVersion(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L80C13-L80C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L80C13-L80C54" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.OpenStreamForRead(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L85C13-L85C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L85C13-L85C55" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.OpenStreamForRead(System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L90C13-L90C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L90C13-L90C74" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.OpenStreamForWrite(System.String,System.String,System.Object@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L95C13-L95C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L95C13-L95C94" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.OpenStreamForWrite(System.String,System.String,System.Object@,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L101C13-L101C113" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L101C13-L101C113" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.WriteCompleted(System.String,System.Boolean,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L106C13-L107C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L106C13-L107C10" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.WriteCompleted(System.String,System.Boolean,System.Object,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L111C13-L112C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L111C13-L112C10" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.DeleteStream(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L116C13-L117C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L116C13-L117C10" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.IsFile(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L121C13-L121C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L121C13-L121C44" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.StartMonitoringStreamForChanges(System.String,System.Configuration.Internal.StreamChangeCallback)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L128C13-L128C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L128C13-L128C79" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.StopMonitoringStreamForChanges(System.String,System.Configuration.Internal.StreamChangeCallback)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L133C13-L134C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L133C13-L134C10" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.IsAboveApplication(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L144C13-L144C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L144C13-L144C56" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.IsDefinitionAllowed(System.String,System.Configuration.ConfigurationAllowDefinition,System.Configuration.ConfigurationAllowExeDefinition)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L150C13-L150C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L150C13-L150C94" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.VerifyDefinitionAllowed(System.String,System.Configuration.ConfigurationAllowDefinition,System.Configuration.ConfigurationAllowExeDefinition,System.Configuration.Internal.IConfigErrorInfo)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L156C13-L157C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L156C13-L157C10" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.GetConfigPathFromLocationSubPath(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L161C13-L161C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L161C13-L161C87" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.IsLocationApplicable(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L166C13-L166C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L166C13-L166C58" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.PrefetchAll(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L171C13-L171C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L171C13-L171C61" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.PrefetchSection(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L176C13-L176C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L176C13-L176C72" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.CreateDeprecatedConfigContext(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L181C13-L181C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L181C13-L181C67" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.CreateConfigurationContext(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L187C13-L187C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L187C13-L187C81" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.DecryptSection(System.String,System.Configuration.ProtectedConfigurationProvider,System.Configuration.ProtectedConfigurationSection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L193C13-L193C98" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L193C13-L193C98" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.EncryptSection(System.String,System.Configuration.ProtectedConfigurationProvider,System.Configuration.ProtectedConfigurationSection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L199C13-L199C98" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L199C13-L199C98" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.GetConfigType(System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L204C13-L204C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L204C13-L204C63" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.GetConfigTypeName(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L209C13-L209C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L209C13-L209C46" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.RefreshConfigPaths", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L219C13-L220C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L219C13-L220C10" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.IsTrustedConfigPath(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L228C71-L228C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L228C71-L228C75" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.IsFullTrustSectionWithoutAptcaAllowed(System.Configuration.Internal.IInternalConfigRecord)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L230C106-L230C110" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L230C106-L230C110" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.Impersonate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L232C53-L232C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L232C53-L232C74" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.GetRestrictedPermissions(System.Configuration.Internal.IInternalConfigRecord,System.Security.PermissionSet@,System.Boolean@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L237C13-L239C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L237C13-L239C10" }, { "DocsId": "P:System.Configuration.Internal.DelegatingConfigHost.Host", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L29C46-L29C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L29C46-L29C50" }, { "DocsId": "P:System.Configuration.Internal.DelegatingConfigHost.SupportsChangeNotifications", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L124C60-L124C92" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L124C60-L124C92" }, { "DocsId": "P:System.Configuration.Internal.DelegatingConfigHost.SupportsRefresh", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L136C48-L136C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L136C48-L136C68" }, { "DocsId": "P:System.Configuration.Internal.DelegatingConfigHost.SupportsPath", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L138C45-L138C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L138C45-L138C62" }, { "DocsId": "P:System.Configuration.Internal.DelegatingConfigHost.SupportsLocation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L140C49-L140C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L140C49-L140C70" }, { "DocsId": "P:System.Configuration.Internal.DelegatingConfigHost.IsRemote", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L212C41-L212C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L212C41-L212C54" }, { "DocsId": "P:System.Configuration.Internal.DelegatingConfigHost.HasLocalConfig", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L222C47-L222C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L222C47-L222C71" }, { "DocsId": "P:System.Configuration.Internal.DelegatingConfigHost.HasRoamingConfig", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L224C49-L224C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L224C49-L224C75" }, { "DocsId": "P:System.Configuration.Internal.DelegatingConfigHost.IsAppConfigHttp", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L226C48-L226C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L226C48-L226C73" } ], "DocsId": "T:System.Configuration.Internal.DelegatingConfigHost", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs" }, { "Members": [ { "DocsId": "P:System.Configuration.Internal.IConfigErrorInfo.Filename", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigErrorInfo.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigErrorInfo.cs" }, { "DocsId": "P:System.Configuration.Internal.IConfigErrorInfo.LineNumber", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigErrorInfo.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigErrorInfo.cs" } ], "DocsId": "T:System.Configuration.Internal.IConfigErrorInfo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigErrorInfo.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigErrorInfo.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.Internal.IConfigSystem.Init(System.Type,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigSystem.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigSystem.cs" }, { "DocsId": "P:System.Configuration.Internal.IConfigSystem.Host", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigSystem.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigSystem.cs" }, { "DocsId": "P:System.Configuration.Internal.IConfigSystem.Root", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigSystem.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigSystem.cs" } ], "DocsId": "T:System.Configuration.Internal.IConfigSystem", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigSystem.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigSystem.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.Internal.IConfigurationManagerHelper.EnsureNetConfigLoaded", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigurationManagerHelper.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigurationManagerHelper.cs" } ], "DocsId": "T:System.Configuration.Internal.IConfigurationManagerHelper", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigurationManagerHelper.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigurationManagerHelper.cs" }, { "Members": [ { "DocsId": "P:System.Configuration.Internal.IConfigurationManagerInternal.SupportsUserConfig", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigurationManagerInternal.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigurationManagerInternal.cs" }, { "DocsId": "P:System.Configuration.Internal.IConfigurationManagerInternal.SetConfigurationSystemInProgress", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigurationManagerInternal.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigurationManagerInternal.cs" }, { "DocsId": "P:System.Configuration.Internal.IConfigurationManagerInternal.MachineConfigPath", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigurationManagerInternal.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigurationManagerInternal.cs" }, { "DocsId": "P:System.Configuration.Internal.IConfigurationManagerInternal.ApplicationConfigUri", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigurationManagerInternal.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigurationManagerInternal.cs" }, { "DocsId": "P:System.Configuration.Internal.IConfigurationManagerInternal.ExeProductName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigurationManagerInternal.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigurationManagerInternal.cs" }, { "DocsId": "P:System.Configuration.Internal.IConfigurationManagerInternal.ExeProductVersion", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigurationManagerInternal.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigurationManagerInternal.cs" }, { "DocsId": "P:System.Configuration.Internal.IConfigurationManagerInternal.ExeRoamingConfigDirectory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigurationManagerInternal.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigurationManagerInternal.cs" }, { "DocsId": "P:System.Configuration.Internal.IConfigurationManagerInternal.ExeRoamingConfigPath", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigurationManagerInternal.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigurationManagerInternal.cs" }, { "DocsId": "P:System.Configuration.Internal.IConfigurationManagerInternal.ExeLocalConfigDirectory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigurationManagerInternal.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigurationManagerInternal.cs" }, { "DocsId": "P:System.Configuration.Internal.IConfigurationManagerInternal.ExeLocalConfigPath", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigurationManagerInternal.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigurationManagerInternal.cs" }, { "DocsId": "P:System.Configuration.Internal.IConfigurationManagerInternal.UserConfigFilename", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigurationManagerInternal.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigurationManagerInternal.cs" } ], "DocsId": "T:System.Configuration.Internal.IConfigurationManagerInternal", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigurationManagerInternal.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigurationManagerInternal.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.Internal.IInternalConfigClientHost.IsExeConfig(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigClientHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigClientHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigClientHost.IsRoamingUserConfig(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigClientHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigClientHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigClientHost.IsLocalUserConfig(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigClientHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigClientHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigClientHost.GetExeConfigPath", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigClientHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigClientHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigClientHost.GetRoamingUserConfigPath", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigClientHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigClientHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigClientHost.GetLocalUserConfigPath", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigClientHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigClientHost.cs" } ], "DocsId": "T:System.Configuration.Internal.IInternalConfigClientHost", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigClientHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigClientHost.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.Internal.IInternalConfigConfigurationFactory.Create(System.Type,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigConfigurationFactory.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigConfigurationFactory.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigConfigurationFactory.NormalizeLocationSubPath(System.String,System.Configuration.Internal.IConfigErrorInfo)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigConfigurationFactory.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigConfigurationFactory.cs" } ], "DocsId": "T:System.Configuration.Internal.IInternalConfigConfigurationFactory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigConfigurationFactory.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigConfigurationFactory.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.Init(System.Configuration.Internal.IInternalConfigRoot,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.InitForConfiguration(System.String@,System.String@,System.String@,System.Configuration.Internal.IInternalConfigRoot,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.IsConfigRecordRequired(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.IsInitDelayed(System.Configuration.Internal.IInternalConfigRecord)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.RequireCompleteInit(System.Configuration.Internal.IInternalConfigRecord)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.IsSecondaryRoot(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.GetStreamName(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.GetStreamNameForConfigSource(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.GetStreamVersion(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.OpenStreamForRead(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.OpenStreamForRead(System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.OpenStreamForWrite(System.String,System.String,System.Object@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.OpenStreamForWrite(System.String,System.String,System.Object@,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.WriteCompleted(System.String,System.Boolean,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.WriteCompleted(System.String,System.Boolean,System.Object,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.DeleteStream(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.IsFile(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.StartMonitoringStreamForChanges(System.String,System.Configuration.Internal.StreamChangeCallback)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.StopMonitoringStreamForChanges(System.String,System.Configuration.Internal.StreamChangeCallback)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.IsAboveApplication(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.GetConfigPathFromLocationSubPath(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.IsLocationApplicable(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.IsDefinitionAllowed(System.String,System.Configuration.ConfigurationAllowDefinition,System.Configuration.ConfigurationAllowExeDefinition)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.VerifyDefinitionAllowed(System.String,System.Configuration.ConfigurationAllowDefinition,System.Configuration.ConfigurationAllowExeDefinition,System.Configuration.Internal.IConfigErrorInfo)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.PrefetchAll(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.PrefetchSection(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.CreateDeprecatedConfigContext(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.CreateConfigurationContext(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.DecryptSection(System.String,System.Configuration.ProtectedConfigurationProvider,System.Configuration.ProtectedConfigurationSection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.EncryptSection(System.String,System.Configuration.ProtectedConfigurationProvider,System.Configuration.ProtectedConfigurationSection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.GetConfigType(System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.GetConfigTypeName(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.IsTrustedConfigPath(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.IsFullTrustSectionWithoutAptcaAllowed(System.Configuration.Internal.IInternalConfigRecord)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.Impersonate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.GetRestrictedPermissions(System.Configuration.Internal.IInternalConfigRecord,System.Security.PermissionSet@,System.Boolean@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "P:System.Configuration.Internal.IInternalConfigHost.SupportsChangeNotifications", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "P:System.Configuration.Internal.IInternalConfigHost.SupportsRefresh", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "P:System.Configuration.Internal.IInternalConfigHost.SupportsPath", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "P:System.Configuration.Internal.IInternalConfigHost.SupportsLocation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "P:System.Configuration.Internal.IInternalConfigHost.IsRemote", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" } ], "DocsId": "T:System.Configuration.Internal.IInternalConfigHost", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.Internal.IInternalConfigRecord.ThrowIfInitErrors", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRecord.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRecord.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigRecord.GetSection(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRecord.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRecord.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigRecord.GetLkgSection(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRecord.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRecord.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigRecord.RefreshSection(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRecord.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRecord.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigRecord.Remove", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRecord.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRecord.cs" }, { "DocsId": "P:System.Configuration.Internal.IInternalConfigRecord.ConfigPath", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRecord.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRecord.cs" }, { "DocsId": "P:System.Configuration.Internal.IInternalConfigRecord.StreamName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRecord.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRecord.cs" }, { "DocsId": "P:System.Configuration.Internal.IInternalConfigRecord.HasInitErrors", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRecord.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRecord.cs" } ], "DocsId": "T:System.Configuration.Internal.IInternalConfigRecord", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRecord.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRecord.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.Internal.IInternalConfigRoot.Init(System.Configuration.Internal.IInternalConfigHost,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRoot.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRoot.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigRoot.GetSection(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRoot.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRoot.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigRoot.GetUniqueConfigPath(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRoot.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRoot.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigRoot.GetUniqueConfigRecord(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRoot.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRoot.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigRoot.GetConfigRecord(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRoot.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRoot.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigRoot.RemoveConfig(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRoot.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRoot.cs" }, { "DocsId": "E:System.Configuration.Internal.IInternalConfigRoot.ConfigChanged", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRoot.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRoot.cs" }, { "DocsId": "E:System.Configuration.Internal.IInternalConfigRoot.ConfigRemoved", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRoot.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRoot.cs" }, { "DocsId": "P:System.Configuration.Internal.IInternalConfigRoot.IsDesignTime", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRoot.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRoot.cs" } ], "DocsId": "T:System.Configuration.Internal.IInternalConfigRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRoot.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRoot.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.Internal.IInternalConfigSettingsFactory.SetConfigurationSystem(System.Configuration.Internal.IInternalConfigSystem,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigSettingsFactory.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigSettingsFactory.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigSettingsFactory.CompleteInit", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigSettingsFactory.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigSettingsFactory.cs" } ], "DocsId": "T:System.Configuration.Internal.IInternalConfigSettingsFactory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigSettingsFactory.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigSettingsFactory.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.Internal.IInternalConfigSystem.GetSection(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigSystem.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigSystem.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigSystem.RefreshConfig(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigSystem.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigSystem.cs" }, { "DocsId": "P:System.Configuration.Internal.IInternalConfigSystem.SupportsUserConfig", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigSystem.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigSystem.cs" } ], "DocsId": "T:System.Configuration.Internal.IInternalConfigSystem", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigSystem.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigSystem.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.Internal.InternalConfigEventArgs.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/InternalConfigEventArgs.cs#L8C9-L11C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/InternalConfigEventArgs.cs#L8C9-L11C10" }, { "DocsId": "P:System.Configuration.Internal.InternalConfigEventArgs.ConfigPath", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/InternalConfigEventArgs.cs#L13C36-L13C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/InternalConfigEventArgs.cs#L13C36-L13C40" } ], "DocsId": "T:System.Configuration.Internal.InternalConfigEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/InternalConfigEventArgs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/InternalConfigEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.Internal.InternalConfigEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/InternalConfigEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/InternalConfigEventHandler.cs" }, { "DocsId": "M:System.Configuration.Internal.InternalConfigEventHandler.Invoke(System.Object,System.Configuration.Internal.InternalConfigEventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/InternalConfigEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/InternalConfigEventHandler.cs" }, { "DocsId": "M:System.Configuration.Internal.InternalConfigEventHandler.BeginInvoke(System.Object,System.Configuration.Internal.InternalConfigEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/InternalConfigEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/InternalConfigEventHandler.cs" }, { "DocsId": "M:System.Configuration.Internal.InternalConfigEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/InternalConfigEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/InternalConfigEventHandler.cs" } ], "DocsId": "T:System.Configuration.Internal.InternalConfigEventHandler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/InternalConfigEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/InternalConfigEventHandler.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.Internal.StreamChangeCallback.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/StreamChangeCallback.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/StreamChangeCallback.cs" }, { "DocsId": "M:System.Configuration.Internal.StreamChangeCallback.Invoke(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/StreamChangeCallback.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/StreamChangeCallback.cs" }, { "DocsId": "M:System.Configuration.Internal.StreamChangeCallback.BeginInvoke(System.String,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/StreamChangeCallback.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/StreamChangeCallback.cs" }, { "DocsId": "M:System.Configuration.Internal.StreamChangeCallback.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/StreamChangeCallback.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/StreamChangeCallback.cs" } ], "DocsId": "T:System.Configuration.Internal.StreamChangeCallback", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/StreamChangeCallback.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/StreamChangeCallback.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/System.Data.Odbc.json b/xml/SourceLinkInformation/net-8.0/System.Data.Odbc.json index a87f571e0a3..61926df35a2 100644 --- a/xml/SourceLinkInformation/net-8.0/System.Data.Odbc.json +++ b/xml/SourceLinkInformation/net-8.0/System.Data.Odbc.json @@ -1,1335 +1,1334 @@ { "Assembly": "System.Data.Odbc", - "GUID": "E128BFE6CD114077B1DBBB04222B56FDFFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "0C5BB00A50D9422A98AE5921FE2FB7A8FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "T:System.Data.Odbc.ODBC32.RETCODE", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/ODBC32.Common.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/ODBC32.Common.cs" } ], "DocsId": "T:System.Data.Odbc.ODBC32", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/Odbc32.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/Odbc32.cs" }, { "Members": [ { "DocsId": "M:System.Data.Odbc.OdbcCommand.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L24C9-L47C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L24C9-L47C10" }, { "DocsId": "M:System.Data.Odbc.OdbcCommand.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L49C47-L54C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L49C47-L54C10" }, { "DocsId": "M:System.Data.Odbc.OdbcCommand.#ctor(System.String,System.Data.Odbc.OdbcConnection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L56C75-L60C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L56C75-L60C10" }, { "DocsId": "M:System.Data.Odbc.OdbcCommand.#ctor(System.String,System.Data.Odbc.OdbcConnection,System.Data.Odbc.OdbcTransaction)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L62C105-L67C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L62C105-L67C10" }, { "DocsId": "M:System.Data.Odbc.OdbcCommand.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L137C13-L149C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L137C13-L149C10" }, { "DocsId": "M:System.Data.Odbc.OdbcCommand.ResetCommandTimeout", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L200C13-L205C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L200C13-L205C10" }, { "DocsId": "M:System.Data.Odbc.OdbcCommand.Cancel", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L438C13-L463C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L438C13-L463C10" }, { "DocsId": "M:System.Data.Odbc.OdbcCommand.System#ICloneable#Clone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L468C13-L484C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L468C13-L484C26" }, { "DocsId": "M:System.Data.Odbc.OdbcCommand.CreateParameter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L531C13-L531C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L531C13-L531C40" }, { "DocsId": "M:System.Data.Odbc.OdbcCommand.CreateDbParameter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L536C13-L536C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L536C13-L536C38" }, { "DocsId": "M:System.Data.Odbc.OdbcCommand.ExecuteDbDataReader(System.Data.CommandBehavior)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L541C13-L541C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L541C13-L541C44" }, { "DocsId": "M:System.Data.Odbc.OdbcCommand.ExecuteNonQuery", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L546C20-L551C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L546C20-L551C10" }, { "DocsId": "M:System.Data.Odbc.OdbcCommand.ExecuteReader", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L555C13-L555C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L555C13-L555C56" }, { "DocsId": "M:System.Data.Odbc.OdbcCommand.ExecuteReader(System.Data.CommandBehavior)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L561C13-L561C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L561C13-L561C75" }, { "DocsId": "M:System.Data.Odbc.OdbcCommand.ExecuteScalar", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L846C13-L855C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L846C13-L855C26" }, { "DocsId": "M:System.Data.Odbc.OdbcCommand.Prepare", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L882C13-L907C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L882C13-L907C10" }, { "DocsId": "P:System.Data.Odbc.OdbcCommand.CommandText", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L166C17-L166C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L166C17-L166C53" }, { "DocsId": "P:System.Data.Odbc.OdbcCommand.CommandTimeout", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L182C17-L182C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L182C17-L182C40" }, { "DocsId": "P:System.Data.Odbc.OdbcCommand.CommandType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L219C17-L220C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L219C17-L220C70" }, { "DocsId": "P:System.Data.Odbc.OdbcCommand.Connection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L245C17-L245C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L245C17-L245C36" }, { "DocsId": "P:System.Data.Odbc.OdbcCommand.DbConnection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L264C17-L264C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L264C17-L264C35" }, { "DocsId": "P:System.Data.Odbc.OdbcCommand.DbParameterCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L276C17-L276C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L276C17-L276C35" }, { "DocsId": "P:System.Data.Odbc.OdbcCommand.DbTransaction", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L284C17-L284C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L284C17-L284C36" }, { "DocsId": "P:System.Data.Odbc.OdbcCommand.DesignTimeVisible", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L306C17-L306C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L306C17-L306C46" }, { "DocsId": "P:System.Data.Odbc.OdbcCommand.Parameters", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L330C17-L334C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L330C17-L334C45" }, { "DocsId": "P:System.Data.Odbc.OdbcCommand.Transaction", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L346C17-L350C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L346C17-L350C37" }, { "DocsId": "P:System.Data.Odbc.OdbcCommand.UpdatedRowSource", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L369C17-L369C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L369C17-L369C42" } ], "DocsId": "T:System.Data.Odbc.OdbcCommand", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs" }, { "Members": [ { "DocsId": "M:System.Data.Odbc.OdbcCommandBuilder.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommandBuilder.cs#L12C39-L15C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommandBuilder.cs#L12C39-L15C10" }, { "DocsId": "M:System.Data.Odbc.OdbcCommandBuilder.#ctor(System.Data.Odbc.OdbcDataAdapter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommandBuilder.cs#L17C63-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommandBuilder.cs#L17C63-L20C10" }, { "DocsId": "M:System.Data.Odbc.OdbcCommandBuilder.GetInsertCommand", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommandBuilder.cs#L41C13-L41C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommandBuilder.cs#L41C13-L41C57" }, { "DocsId": "M:System.Data.Odbc.OdbcCommandBuilder.GetInsertCommand(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommandBuilder.cs#L45C13-L45C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommandBuilder.cs#L45C13-L45C84" }, { "DocsId": "M:System.Data.Odbc.OdbcCommandBuilder.GetUpdateCommand", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommandBuilder.cs#L50C13-L50C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommandBuilder.cs#L50C13-L50C57" }, { "DocsId": "M:System.Data.Odbc.OdbcCommandBuilder.GetUpdateCommand(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommandBuilder.cs#L54C13-L54C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommandBuilder.cs#L54C13-L54C84" }, { "DocsId": "M:System.Data.Odbc.OdbcCommandBuilder.GetDeleteCommand", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommandBuilder.cs#L59C13-L59C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommandBuilder.cs#L59C13-L59C57" }, { "DocsId": "M:System.Data.Odbc.OdbcCommandBuilder.GetDeleteCommand(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommandBuilder.cs#L63C13-L63C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommandBuilder.cs#L63C13-L63C84" }, { "DocsId": "M:System.Data.Odbc.OdbcCommandBuilder.GetParameterName(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommandBuilder.cs#L68C13-L68C103" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommandBuilder.cs#L68C13-L68C103" }, { "DocsId": "M:System.Data.Odbc.OdbcCommandBuilder.GetParameterName(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommandBuilder.cs#L72C13-L72C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommandBuilder.cs#L72C13-L72C34" }, { "DocsId": "M:System.Data.Odbc.OdbcCommandBuilder.GetParameterPlaceholder(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommandBuilder.cs#L77C13-L77C24" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommandBuilder.cs#L77C13-L77C24" }, { "DocsId": "M:System.Data.Odbc.OdbcCommandBuilder.ApplyParameterInfo(System.Data.Common.DbParameter,System.Data.DataRow,System.Data.StatementType,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommandBuilder.cs#L82C13-L99C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommandBuilder.cs#L82C13-L99C10" }, { "DocsId": "M:System.Data.Odbc.OdbcCommandBuilder.DeriveParameters(System.Data.Odbc.OdbcCommand)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommandBuilder.cs#L105C13-L153C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommandBuilder.cs#L105C13-L153C10" }, { "DocsId": "M:System.Data.Odbc.OdbcCommandBuilder.QuoteIdentifier(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommandBuilder.cs#L251C13-L251C122" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommandBuilder.cs#L251C13-L251C122" }, { "DocsId": "M:System.Data.Odbc.OdbcCommandBuilder.QuoteIdentifier(System.String,System.Data.Odbc.OdbcConnection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommandBuilder.cs#L256C13-L287C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommandBuilder.cs#L256C13-L287C43" }, { "DocsId": "M:System.Data.Odbc.OdbcCommandBuilder.SetRowUpdatingHandler(System.Data.Common.DbDataAdapter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommandBuilder.cs#L294C13-L302C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommandBuilder.cs#L294C13-L302C10" }, { "DocsId": "M:System.Data.Odbc.OdbcCommandBuilder.UnquoteIdentifier(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommandBuilder.cs#L306C13-L306C122" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommandBuilder.cs#L306C13-L306C122" }, { "DocsId": "M:System.Data.Odbc.OdbcCommandBuilder.UnquoteIdentifier(System.String,System.Data.Odbc.OdbcConnection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommandBuilder.cs#L311C13-L336C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommandBuilder.cs#L311C13-L336C40" }, { "DocsId": "P:System.Data.Odbc.OdbcCommandBuilder.DataAdapter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommandBuilder.cs#L26C17-L26C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommandBuilder.cs#L26C17-L26C62" } ], "DocsId": "T:System.Data.Odbc.OdbcCommandBuilder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommandBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommandBuilder.cs" }, { "Members": [ { "DocsId": "M:System.Data.Odbc.OdbcConnection.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnection.cs#L24C59-L27C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnection.cs#L24C59-L27C10" }, { "DocsId": "M:System.Data.Odbc.OdbcConnection.BeginTransaction", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnection.cs#L288C13-L288C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnection.cs#L288C13-L288C65" }, { "DocsId": "M:System.Data.Odbc.OdbcConnection.BeginTransaction(System.Data.IsolationLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnection.cs#L293C13-L293C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnection.cs#L293C13-L293C80" }, { "DocsId": "M:System.Data.Odbc.OdbcConnection.ChangeDatabase(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnection.cs#L308C13-L309C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnection.cs#L308C13-L309C10" }, { "DocsId": "M:System.Data.Odbc.OdbcConnection.System#ICloneable#Clone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnection.cs#L322C13-L323C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnection.cs#L322C13-L323C26" }, { "DocsId": "M:System.Data.Odbc.OdbcConnection.CreateCommand", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnection.cs#L347C13-L347C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnection.cs#L347C13-L347C56" }, { "DocsId": "M:System.Data.Odbc.OdbcConnection.Close", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnection.cs#L357C13-L379C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnection.cs#L357C13-L379C10" }, { "DocsId": "M:System.Data.Odbc.OdbcConnection.Open", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnection.cs#L564C17-L577C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnection.cs#L564C17-L577C10" }, { "DocsId": "M:System.Data.Odbc.OdbcConnection.ReleaseObjectPool", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnection.cs#L601C13-L602C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnection.cs#L601C13-L602C10" }, { "DocsId": "M:System.Data.Odbc.OdbcConnection.BeginDbTransaction(System.Data.IsolationLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnection.cs#L885C13-L893C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnection.cs#L885C13-L893C32" }, { "DocsId": "M:System.Data.Odbc.OdbcConnection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnection.cs#L17C9-L25C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnection.cs#L17C9-L25C10" }, { "DocsId": "M:System.Data.Odbc.OdbcConnection.CreateDbCommand", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnectionHelper.cs#L155C13-L158C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnectionHelper.cs#L155C13-L158C28" }, { "DocsId": "M:System.Data.Odbc.OdbcConnection.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnectionHelper.cs#L164C13-L171C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnectionHelper.cs#L164C13-L171C10" }, { "DocsId": "M:System.Data.Odbc.OdbcConnection.GetSchema", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnectionHelper.cs#L177C13-L177C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnectionHelper.cs#L177C13-L177C88" }, { "DocsId": "M:System.Data.Odbc.OdbcConnection.GetSchema(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnectionHelper.cs#L182C13-L182C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnectionHelper.cs#L182C13-L182C57" }, { "DocsId": "M:System.Data.Odbc.OdbcConnection.GetSchema(System.String,System.String[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnectionHelper.cs#L189C13-L189C118" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnectionHelper.cs#L189C13-L189C118" }, { "DocsId": "E:System.Data.Odbc.OdbcConnection.InfoMessage", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnection.cs#L252C17-L253C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnection.cs#L252C17-L253C14" }, { "DocsId": "P:System.Data.Odbc.OdbcConnection.ConnectionString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnection.cs#L55C17-L55C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnection.cs#L55C17-L55C47" }, { "DocsId": "P:System.Data.Odbc.OdbcConnection.ConnectionTimeout", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnection.cs#L71C17-L71C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnection.cs#L71C17-L71C43" }, { "DocsId": "P:System.Data.Odbc.OdbcConnection.Database", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnection.cs#L90C17-L99C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnection.cs#L90C17-L99C37" }, { "DocsId": "P:System.Data.Odbc.OdbcConnection.DataSource", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnection.cs#L111C17-L118C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnection.cs#L111C17-L118C37" }, { "DocsId": "P:System.Data.Odbc.OdbcConnection.ServerVersion", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnection.cs#L130C17-L130C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnection.cs#L130C17-L130C54" }, { "DocsId": "P:System.Data.Odbc.OdbcConnection.State", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnection.cs#L142C17-L142C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnection.cs#L142C17-L142C46" }, { "DocsId": "P:System.Data.Odbc.OdbcConnection.DbProviderFactory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnection.cs#L150C17-L150C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnection.cs#L150C17-L150C45" }, { "DocsId": "P:System.Data.Odbc.OdbcConnection.Driver", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnection.cs#L210C17-L215C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnection.cs#L210C17-L215C37" } ], "DocsId": "T:System.Data.Odbc.OdbcConnection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnection.cs" }, { "Members": [ { "DocsId": "M:System.Data.Odbc.OdbcConnectionStringBuilder.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnectionStringbuilder.cs#L39C48-L41C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnectionStringbuilder.cs#L39C48-L41C10" }, { "DocsId": "M:System.Data.Odbc.OdbcConnectionStringBuilder.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnectionStringbuilder.cs#L36C9-L49C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnectionStringbuilder.cs#L36C9-L49C10" }, { "DocsId": "M:System.Data.Odbc.OdbcConnectionStringBuilder.Clear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnectionStringbuilder.cs#L178C13-L184C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnectionStringbuilder.cs#L178C13-L184C10" }, { "DocsId": "M:System.Data.Odbc.OdbcConnectionStringBuilder.ContainsKey(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnectionStringbuilder.cs#L188C13-L189C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnectionStringbuilder.cs#L188C13-L189C81" }, { "DocsId": "M:System.Data.Odbc.OdbcConnectionStringBuilder.Remove(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnectionStringbuilder.cs#L211C13-L226C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnectionStringbuilder.cs#L211C13-L226C26" }, { "DocsId": "M:System.Data.Odbc.OdbcConnectionStringBuilder.TryGetValue(System.String,System.Object@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnectionStringbuilder.cs#L252C13-L259C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnectionStringbuilder.cs#L252C13-L259C57" }, { "DocsId": "P:System.Data.Odbc.OdbcConnectionStringBuilder.Item(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnectionStringbuilder.cs#L56C17-L64C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnectionStringbuilder.cs#L56C17-L64C42" }, { "DocsId": "P:System.Data.Odbc.OdbcConnectionStringBuilder.Driver", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnectionStringbuilder.cs#L101C19-L101C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnectionStringbuilder.cs#L101C19-L101C34" }, { "DocsId": "P:System.Data.Odbc.OdbcConnectionStringBuilder.Dsn", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnectionStringbuilder.cs#L112C19-L112C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnectionStringbuilder.cs#L112C19-L112C31" }, { "DocsId": "P:System.Data.Odbc.OdbcConnectionStringBuilder.Keys", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnectionStringbuilder.cs#L124C17-L172C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnectionStringbuilder.cs#L124C17-L172C70" } ], "DocsId": "T:System.Data.Odbc.OdbcConnectionStringBuilder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnectionStringbuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnectionStringbuilder.cs" }, { "Members": [ { "DocsId": "M:System.Data.Odbc.OdbcDataAdapter.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L18C36-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L18C36-L21C10" }, { "DocsId": "M:System.Data.Odbc.OdbcDataAdapter.#ctor(System.Data.Odbc.OdbcCommand)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L23C62-L26C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L23C62-L26C10" }, { "DocsId": "M:System.Data.Odbc.OdbcDataAdapter.#ctor(System.String,System.Data.Odbc.OdbcConnection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L28C95-L31C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L28C95-L31C10" }, { "DocsId": "M:System.Data.Odbc.OdbcDataAdapter.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L33C93-L37C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L33C93-L37C10" }, { "DocsId": "M:System.Data.Odbc.OdbcDataAdapter.System#Data#IDbDataAdapter#get_DeleteCommand", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L54C19-L54C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L54C19-L54C41" }, { "DocsId": "M:System.Data.Odbc.OdbcDataAdapter.System#Data#IDbDataAdapter#set_DeleteCommand(System.Data.IDbCommand)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L55C19-L55C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L55C19-L55C58" }, { "DocsId": "M:System.Data.Odbc.OdbcDataAdapter.System#Data#IDbDataAdapter#get_InsertCommand", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L68C19-L68C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L68C19-L68C41" }, { "DocsId": "M:System.Data.Odbc.OdbcDataAdapter.System#Data#IDbDataAdapter#set_InsertCommand(System.Data.IDbCommand)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L69C19-L69C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L69C19-L69C58" }, { "DocsId": "M:System.Data.Odbc.OdbcDataAdapter.System#Data#IDbDataAdapter#get_SelectCommand", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L82C19-L82C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L82C19-L82C41" }, { "DocsId": "M:System.Data.Odbc.OdbcDataAdapter.System#Data#IDbDataAdapter#set_SelectCommand(System.Data.IDbCommand)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L83C19-L83C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L83C19-L83C58" }, { "DocsId": "M:System.Data.Odbc.OdbcDataAdapter.System#Data#IDbDataAdapter#get_UpdateCommand", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L96C19-L96C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L96C19-L96C41" }, { "DocsId": "M:System.Data.Odbc.OdbcDataAdapter.System#Data#IDbDataAdapter#set_UpdateCommand(System.Data.IDbCommand)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L97C19-L97C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L97C19-L97C58" }, { "DocsId": "M:System.Data.Odbc.OdbcDataAdapter.System#ICloneable#Clone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L140C13-L140C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L140C13-L140C46" }, { "DocsId": "M:System.Data.Odbc.OdbcDataAdapter.CreateRowUpdatedEvent(System.Data.DataRow,System.Data.IDbCommand,System.Data.StatementType,System.Data.Common.DataTableMapping)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L145C13-L145C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L145C13-L145C95" }, { "DocsId": "M:System.Data.Odbc.OdbcDataAdapter.CreateRowUpdatingEvent(System.Data.DataRow,System.Data.IDbCommand,System.Data.StatementType,System.Data.Common.DataTableMapping)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L150C13-L150C96" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L150C13-L150C96" }, { "DocsId": "M:System.Data.Odbc.OdbcDataAdapter.OnRowUpdated(System.Data.Common.RowUpdatedEventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L155C13-L161C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L155C13-L161C10" }, { "DocsId": "M:System.Data.Odbc.OdbcDataAdapter.OnRowUpdating(System.Data.Common.RowUpdatingEventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L165C13-L171C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L165C13-L171C10" }, { "DocsId": "E:System.Data.Odbc.OdbcDataAdapter.RowUpdated", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L104C17-L105C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L104C17-L105C14" }, { "DocsId": "E:System.Data.Odbc.OdbcDataAdapter.RowUpdating", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L116C17-L130C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L116C17-L130C14" }, { "DocsId": "P:System.Data.Odbc.OdbcDataAdapter.DeleteCommand", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L48C19-L48C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L48C19-L48C41" }, { "DocsId": "P:System.Data.Odbc.OdbcDataAdapter.System#Data#IDbDataAdapter#DeleteCommand", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L54C19-L54C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L54C19-L54C41" }, { "DocsId": "P:System.Data.Odbc.OdbcDataAdapter.InsertCommand", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L62C19-L62C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L62C19-L62C41" }, { "DocsId": "P:System.Data.Odbc.OdbcDataAdapter.System#Data#IDbDataAdapter#InsertCommand", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L68C19-L68C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L68C19-L68C41" }, { "DocsId": "P:System.Data.Odbc.OdbcDataAdapter.SelectCommand", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L76C19-L76C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L76C19-L76C41" }, { "DocsId": "P:System.Data.Odbc.OdbcDataAdapter.System#Data#IDbDataAdapter#SelectCommand", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L82C19-L82C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L82C19-L82C41" }, { "DocsId": "P:System.Data.Odbc.OdbcDataAdapter.UpdateCommand", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L90C19-L90C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L90C19-L90C41" }, { "DocsId": "P:System.Data.Odbc.OdbcDataAdapter.System#Data#IDbDataAdapter#UpdateCommand", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L96C19-L96C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L96C19-L96C41" } ], "DocsId": "T:System.Data.Odbc.OdbcDataAdapter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs" }, { "Members": [ { "DocsId": "M:System.Data.Odbc.OdbcDataReader.Close", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L314C13-L315C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L314C13-L315C10" }, { "DocsId": "M:System.Data.Odbc.OdbcDataReader.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L392C13-L398C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L392C13-L398C10" }, { "DocsId": "M:System.Data.Odbc.OdbcDataReader.GetDataTypeName(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L402C13-L407C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L402C13-L407C42" }, { "DocsId": "M:System.Data.Odbc.OdbcDataReader.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L412C13-L412C108" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L412C13-L412C108" }, { "DocsId": "M:System.Data.Odbc.OdbcDataReader.GetFieldType(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L417C13-L422C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L417C13-L422C42" }, { "DocsId": "M:System.Data.Odbc.OdbcDataReader.GetName(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L427C13-L432C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L427C13-L432C42" }, { "DocsId": "M:System.Data.Odbc.OdbcDataReader.GetOrdinal(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L437C13-L445C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L437C13-L445C55" }, { "DocsId": "M:System.Data.Odbc.OdbcDataReader.GetValue(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L556C13-L564C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L556C13-L564C42" }, { "DocsId": "M:System.Data.Odbc.OdbcDataReader.GetValues(System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L569C13-L578C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L569C13-L578C42" }, { "DocsId": "M:System.Data.Odbc.OdbcDataReader.IsDBNull(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L628C13-L657C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L628C13-L657C66" }, { "DocsId": "M:System.Data.Odbc.OdbcDataReader.GetByte(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L663C13-L663C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L663C13-L663C45" }, { "DocsId": "M:System.Data.Odbc.OdbcDataReader.GetChar(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L684C13-L684C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L684C13-L684C45" }, { "DocsId": "M:System.Data.Odbc.OdbcDataReader.GetInt16(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L704C13-L704C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L704C13-L704C47" }, { "DocsId": "M:System.Data.Odbc.OdbcDataReader.GetInt32(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L724C13-L724C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L724C13-L724C45" }, { "DocsId": "M:System.Data.Odbc.OdbcDataReader.GetInt64(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L744C13-L744C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L744C13-L744C46" }, { "DocsId": "M:System.Data.Odbc.OdbcDataReader.GetBoolean(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L772C13-L772C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L772C13-L772C48" }, { "DocsId": "M:System.Data.Odbc.OdbcDataReader.GetFloat(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L792C13-L792C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L792C13-L792C47" }, { "DocsId": "M:System.Data.Odbc.OdbcDataReader.GetDate(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L812C13-L812C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L812C13-L812C49" }, { "DocsId": "M:System.Data.Odbc.OdbcDataReader.GetDateTime(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L833C13-L833C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L833C13-L833C53" }, { "DocsId": "M:System.Data.Odbc.OdbcDataReader.GetDecimal(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L854C13-L854C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L854C13-L854C51" }, { "DocsId": "M:System.Data.Odbc.OdbcDataReader.GetDouble(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L892C13-L892C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L892C13-L892C49" }, { "DocsId": "M:System.Data.Odbc.OdbcDataReader.GetGuid(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L912C13-L912C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L912C13-L912C45" }, { "DocsId": "M:System.Data.Odbc.OdbcDataReader.GetString(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L933C13-L933C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L933C13-L933C49" }, { "DocsId": "M:System.Data.Odbc.OdbcDataReader.GetTime(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L1040C13-L1040C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L1040C13-L1040C49" }, { "DocsId": "M:System.Data.Odbc.OdbcDataReader.GetBytes(System.Int32,System.Int64,System.Byte[],System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L1073C13-L1073C105" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L1073C13-L1073C105" }, { "DocsId": "M:System.Data.Odbc.OdbcDataReader.GetChars(System.Int32,System.Int64,System.Char[],System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L1077C13-L1077C104" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L1077C13-L1077C104" }, { "DocsId": "M:System.Data.Odbc.OdbcDataReader.Read", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L1806C13-L1878C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L1806C13-L1878C28" }, { "DocsId": "M:System.Data.Odbc.OdbcDataReader.NextResult", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L1903C13-L1903C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L1903C13-L1903C45" }, { "DocsId": "M:System.Data.Odbc.OdbcDataReader.GetSchemaTable", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L2224C13-L2303C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L2224C13-L2303C32" }, { "DocsId": "P:System.Data.Odbc.OdbcDataReader.Depth", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L155C17-L159C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L155C17-L159C26" }, { "DocsId": "P:System.Data.Odbc.OdbcDataReader.FieldCount", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L167C17-L183C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L167C17-L183C71" }, { "DocsId": "P:System.Data.Odbc.OdbcDataReader.HasRows", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L197C17-L206C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L197C17-L206C60" }, { "DocsId": "P:System.Data.Odbc.OdbcDataReader.IsClosed", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L253C17-L253C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L253C17-L253C34" }, { "DocsId": "P:System.Data.Odbc.OdbcDataReader.RecordsAffected", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L292C17-L292C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L292C17-L292C40" }, { "DocsId": "P:System.Data.Odbc.OdbcDataReader.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L300C17-L300C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L300C17-L300C36" }, { "DocsId": "P:System.Data.Odbc.OdbcDataReader.Item(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L308C17-L308C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L308C17-L308C52" } ], "DocsId": "T:System.Data.Odbc.OdbcDataReader", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs" }, { "Members": [ { "DocsId": "M:System.Data.Odbc.OdbcError.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcError.cs#L63C13-L63C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcError.cs#L63C13-L63C28" }, { "DocsId": "P:System.Data.Odbc.OdbcError.Message", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcError.cs#L28C17-L28C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcError.cs#L28C17-L28C49" }, { "DocsId": "P:System.Data.Odbc.OdbcError.SQLState", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcError.cs#L36C17-L36C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcError.cs#L36C17-L36C31" }, { "DocsId": "P:System.Data.Odbc.OdbcError.NativeError", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcError.cs#L44C17-L44C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcError.cs#L44C17-L44C37" }, { "DocsId": "P:System.Data.Odbc.OdbcError.Source", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcError.cs#L52C17-L52C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcError.cs#L52C17-L52C48" } ], "DocsId": "T:System.Data.Odbc.OdbcError", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcError.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcError.cs" }, { "Members": [ { "DocsId": "M:System.Data.Odbc.OdbcErrorCollection.System#Collections#ICollection#get_SyncRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcErrorCollection.cs#L20C19-L20C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcErrorCollection.cs#L20C19-L20C31" }, { "DocsId": "M:System.Data.Odbc.OdbcErrorCollection.System#Collections#ICollection#get_IsSynchronized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcErrorCollection.cs#L25C19-L25C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcErrorCollection.cs#L25C19-L25C32" }, { "DocsId": "M:System.Data.Odbc.OdbcErrorCollection.CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcErrorCollection.cs#L51C13-L52C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcErrorCollection.cs#L51C13-L52C10" }, { "DocsId": "M:System.Data.Odbc.OdbcErrorCollection.CopyTo(System.Data.Odbc.OdbcError[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcErrorCollection.cs#L56C13-L57C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcErrorCollection.cs#L56C13-L57C10" }, { "DocsId": "M:System.Data.Odbc.OdbcErrorCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcErrorCollection.cs#L61C13-L61C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcErrorCollection.cs#L61C13-L61C43" }, { "DocsId": "P:System.Data.Odbc.OdbcErrorCollection.System#Collections#ICollection#SyncRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcErrorCollection.cs#L20C19-L20C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcErrorCollection.cs#L20C19-L20C31" }, { "DocsId": "P:System.Data.Odbc.OdbcErrorCollection.System#Collections#ICollection#IsSynchronized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcErrorCollection.cs#L25C19-L25C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcErrorCollection.cs#L25C19-L25C32" }, { "DocsId": "P:System.Data.Odbc.OdbcErrorCollection.Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcErrorCollection.cs#L32C17-L32C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcErrorCollection.cs#L32C17-L32C37" }, { "DocsId": "P:System.Data.Odbc.OdbcErrorCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcErrorCollection.cs#L40C17-L40C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcErrorCollection.cs#L40C17-L40C46" } ], "DocsId": "T:System.Data.Odbc.OdbcErrorCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcErrorCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcErrorCollection.cs" }, { "Members": [ { "DocsId": "M:System.Data.Odbc.OdbcException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcException.cs#L62C13-L65C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcException.cs#L62C13-L65C10" }, { "DocsId": "P:System.Data.Odbc.OdbcException.Errors", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcException.cs#L52C17-L52C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcException.cs#L52C17-L52C36" }, { "DocsId": "P:System.Data.Odbc.OdbcException.Source", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcException.cs#L72C17-L77C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcException.cs#L72C17-L77C27" } ], "DocsId": "T:System.Data.Odbc.OdbcException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcException.cs" }, { "Members": [ { "DocsId": "M:System.Data.Odbc.OdbcFactory.CreateCommand", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcFactory.cs#L18C13-L18C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcFactory.cs#L18C13-L18C38" }, { "DocsId": "M:System.Data.Odbc.OdbcFactory.CreateCommandBuilder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcFactory.cs#L23C13-L23C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcFactory.cs#L23C13-L23C45" }, { "DocsId": "M:System.Data.Odbc.OdbcFactory.CreateConnection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcFactory.cs#L28C13-L28C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcFactory.cs#L28C13-L28C41" }, { "DocsId": "M:System.Data.Odbc.OdbcFactory.CreateConnectionStringBuilder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcFactory.cs#L33C13-L33C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcFactory.cs#L33C13-L33C54" }, { "DocsId": "M:System.Data.Odbc.OdbcFactory.CreateDataAdapter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcFactory.cs#L38C13-L38C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcFactory.cs#L38C13-L38C42" }, { "DocsId": "M:System.Data.Odbc.OdbcFactory.CreateParameter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcFactory.cs#L43C13-L43C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcFactory.cs#L43C13-L43C40" }, { "DocsId": "F:System.Data.Odbc.OdbcFactory.Instance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcFactory.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcFactory.cs" } ], "DocsId": "T:System.Data.Odbc.OdbcFactory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcFactory.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcFactory.cs" }, { "Members": [ { "DocsId": "M:System.Data.Odbc.OdbcInfoMessageEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcInfoMessageEvent.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcInfoMessageEvent.cs" }, { "DocsId": "M:System.Data.Odbc.OdbcInfoMessageEventHandler.Invoke(System.Object,System.Data.Odbc.OdbcInfoMessageEventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcInfoMessageEvent.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcInfoMessageEvent.cs" }, { "DocsId": "M:System.Data.Odbc.OdbcInfoMessageEventHandler.BeginInvoke(System.Object,System.Data.Odbc.OdbcInfoMessageEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcInfoMessageEvent.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcInfoMessageEvent.cs" }, { "DocsId": "M:System.Data.Odbc.OdbcInfoMessageEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcInfoMessageEvent.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcInfoMessageEvent.cs" } ], "DocsId": "T:System.Data.Odbc.OdbcInfoMessageEventHandler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcInfoMessageEvent.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcInfoMessageEvent.cs" }, { "Members": [ { "DocsId": "M:System.Data.Odbc.OdbcInfoMessageEventArgs.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcInfoMessageEvent.cs#L41C13-L41C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcInfoMessageEvent.cs#L41C13-L41C28" }, { "DocsId": "P:System.Data.Odbc.OdbcInfoMessageEventArgs.Errors", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcInfoMessageEvent.cs#L21C19-L21C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcInfoMessageEvent.cs#L21C19-L21C34" }, { "DocsId": "P:System.Data.Odbc.OdbcInfoMessageEventArgs.Message", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcInfoMessageEvent.cs#L28C17-L34C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcInfoMessageEvent.cs#L28C17-L34C43" } ], "DocsId": "T:System.Data.Odbc.OdbcInfoMessageEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcInfoMessageEvent.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcInfoMessageEvent.cs" }, { "Members": [ { "DocsId": "F:System.Data.Odbc.OdbcMetaDataCollectionNames.Columns", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcMetaDataCollectionNames.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcMetaDataCollectionNames.cs" }, { "DocsId": "F:System.Data.Odbc.OdbcMetaDataCollectionNames.Indexes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcMetaDataCollectionNames.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcMetaDataCollectionNames.cs" }, { "DocsId": "F:System.Data.Odbc.OdbcMetaDataCollectionNames.Procedures", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcMetaDataCollectionNames.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcMetaDataCollectionNames.cs" }, { "DocsId": "F:System.Data.Odbc.OdbcMetaDataCollectionNames.ProcedureColumns", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcMetaDataCollectionNames.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcMetaDataCollectionNames.cs" }, { "DocsId": "F:System.Data.Odbc.OdbcMetaDataCollectionNames.ProcedureParameters", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcMetaDataCollectionNames.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcMetaDataCollectionNames.cs" }, { "DocsId": "F:System.Data.Odbc.OdbcMetaDataCollectionNames.Tables", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcMetaDataCollectionNames.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcMetaDataCollectionNames.cs" }, { "DocsId": "F:System.Data.Odbc.OdbcMetaDataCollectionNames.Views", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcMetaDataCollectionNames.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcMetaDataCollectionNames.cs" } ], "DocsId": "T:System.Data.Odbc.OdbcMetaDataCollectionNames", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcMetaDataCollectionNames.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcMetaDataCollectionNames.cs" }, { "Members": [ { "DocsId": "F:System.Data.Odbc.OdbcMetaDataColumnNames.BooleanFalseLiteral", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcMetaDataColumnNames.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcMetaDataColumnNames.cs" }, { "DocsId": "F:System.Data.Odbc.OdbcMetaDataColumnNames.BooleanTrueLiteral", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcMetaDataColumnNames.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcMetaDataColumnNames.cs" }, { "DocsId": "F:System.Data.Odbc.OdbcMetaDataColumnNames.SQLType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcMetaDataColumnNames.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcMetaDataColumnNames.cs" } ], "DocsId": "T:System.Data.Odbc.OdbcMetaDataColumnNames", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcMetaDataColumnNames.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcMetaDataColumnNames.cs" }, { "Members": [ { "DocsId": "M:System.Data.Odbc.OdbcParameter.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameter.cs#L71C34-L74C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameter.cs#L71C34-L74C10" }, { "DocsId": "M:System.Data.Odbc.OdbcParameter.#ctor(System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameter.cs#L76C61-L80C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameter.cs#L76C61-L80C10" }, { "DocsId": "M:System.Data.Odbc.OdbcParameter.#ctor(System.String,System.Data.Odbc.OdbcType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameter.cs#L82C61-L86C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameter.cs#L82C61-L86C10" }, { "DocsId": "M:System.Data.Odbc.OdbcParameter.#ctor(System.String,System.Data.Odbc.OdbcType,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameter.cs#L88C71-L93C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameter.cs#L88C71-L93C10" }, { "DocsId": "M:System.Data.Odbc.OdbcParameter.#ctor(System.String,System.Data.Odbc.OdbcType,System.Int32,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameter.cs#L95C93-L101C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameter.cs#L95C93-L101C10" }, { "DocsId": "M:System.Data.Odbc.OdbcParameter.#ctor(System.String,System.Data.Odbc.OdbcType,System.Int32,System.Data.ParameterDirection,System.Boolean,System.Byte,System.Byte,System.String,System.Data.DataRowVersion,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameter.cs#L115C34-L127C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameter.cs#L115C34-L127C10" }, { "DocsId": "M:System.Data.Odbc.OdbcParameter.#ctor(System.String,System.Data.Odbc.OdbcType,System.Int32,System.Data.ParameterDirection,System.Byte,System.Byte,System.String,System.Data.DataRowVersion,System.Boolean,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameter.cs#L135C51-L147C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameter.cs#L135C51-L147C10" }, { "DocsId": "M:System.Data.Odbc.OdbcParameter.ResetDbType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameter.cs#L172C13-L173C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameter.cs#L172C13-L173C10" }, { "DocsId": "M:System.Data.Odbc.OdbcParameter.ResetOdbcType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameter.cs#L202C13-L205C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameter.cs#L202C13-L205C10" }, { "DocsId": "M:System.Data.Odbc.OdbcParameter.System#ICloneable#Clone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameter.cs#L584C13-L584C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameter.cs#L584C13-L584C44" }, { "DocsId": "M:System.Data.Odbc.OdbcParameter.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterHelper.cs#L215C13-L215C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterHelper.cs#L215C13-L215C34" }, { "DocsId": "P:System.Data.Odbc.OdbcParameter.DbType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameter.cs#L153C17-L157C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameter.cs#L153C17-L157C50" }, { "DocsId": "P:System.Data.Odbc.OdbcParameter.OdbcType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameter.cs#L183C17-L187C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameter.cs#L183C17-L187C52" }, { "DocsId": "P:System.Data.Odbc.OdbcParameter.ParameterName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameter.cs#L228C17-L228C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameter.cs#L228C17-L228C55" }, { "DocsId": "P:System.Data.Odbc.OdbcParameter.Precision", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameter.cs#L244C17-L244C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameter.cs#L244C17-L244C42" }, { "DocsId": "P:System.Data.Odbc.OdbcParameter.Scale", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameter.cs#L280C17-L280C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameter.cs#L280C17-L280C38" }, { "DocsId": "P:System.Data.Odbc.OdbcParameter.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameter.cs#L1117C17-L1117C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameter.cs#L1117C17-L1117C31" }, { "DocsId": "P:System.Data.Odbc.OdbcParameter.Direction", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterHelper.cs#L54C17-L55C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterHelper.cs#L54C17-L55C82" }, { "DocsId": "P:System.Data.Odbc.OdbcParameter.IsNullable", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterHelper.cs#L81C17-L81C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterHelper.cs#L81C17-L81C36" }, { "DocsId": "P:System.Data.Odbc.OdbcParameter.Offset", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterHelper.cs#L94C17-L94C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterHelper.cs#L94C17-L94C32" }, { "DocsId": "P:System.Data.Odbc.OdbcParameter.Size", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterHelper.cs#L110C17-L115C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterHelper.cs#L110C17-L115C29" }, { "DocsId": "P:System.Data.Odbc.OdbcParameter.SourceColumn", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterHelper.cs#L142C17-L142C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterHelper.cs#L142C17-L142C54" }, { "DocsId": "P:System.Data.Odbc.OdbcParameter.SourceColumnNullMapping", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterHelper.cs#L154C17-L154C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterHelper.cs#L154C17-L154C49" }, { "DocsId": "P:System.Data.Odbc.OdbcParameter.SourceVersion", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterHelper.cs#L166C17-L167C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterHelper.cs#L166C17-L167C88" } ], "DocsId": "T:System.Data.Odbc.OdbcParameter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameter.cs" }, { "Members": [ { "DocsId": "M:System.Data.Odbc.OdbcParameterCollection.Add(System.Data.Odbc.OdbcParameter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollection.cs#L62C13-L63C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollection.cs#L62C13-L63C26" }, { "DocsId": "M:System.Data.Odbc.OdbcParameterCollection.Add(System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollection.cs#L71C13-L71C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollection.cs#L71C13-L71C65" }, { "DocsId": "M:System.Data.Odbc.OdbcParameterCollection.AddWithValue(System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollection.cs#L77C13-L77C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollection.cs#L77C13-L77C65" }, { "DocsId": "M:System.Data.Odbc.OdbcParameterCollection.Add(System.String,System.Data.Odbc.OdbcType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollection.cs#L82C13-L82C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollection.cs#L82C13-L82C68" }, { "DocsId": "M:System.Data.Odbc.OdbcParameterCollection.Add(System.String,System.Data.Odbc.OdbcType,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollection.cs#L87C13-L87C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollection.cs#L87C13-L87C74" }, { "DocsId": "M:System.Data.Odbc.OdbcParameterCollection.Add(System.String,System.Data.Odbc.OdbcType,System.Int32,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollection.cs#L92C13-L92C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollection.cs#L92C13-L92C88" }, { "DocsId": "M:System.Data.Odbc.OdbcParameterCollection.AddRange(System.Data.Odbc.OdbcParameter[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollection.cs#L98C13-L99C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollection.cs#L98C13-L99C10" }, { "DocsId": "M:System.Data.Odbc.OdbcParameterCollection.Contains(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollection.cs#L142C13-L142C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollection.cs#L142C13-L142C43" }, { "DocsId": "M:System.Data.Odbc.OdbcParameterCollection.Contains(System.Data.Odbc.OdbcParameter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollection.cs#L147C13-L147C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollection.cs#L147C13-L147C43" }, { "DocsId": "M:System.Data.Odbc.OdbcParameterCollection.CopyTo(System.Data.Odbc.OdbcParameter[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollection.cs#L152C13-L153C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollection.cs#L152C13-L153C10" }, { "DocsId": "M:System.Data.Odbc.OdbcParameterCollection.IndexOf(System.Data.Odbc.OdbcParameter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollection.cs#L175C13-L175C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollection.cs#L175C13-L175C43" }, { "DocsId": "M:System.Data.Odbc.OdbcParameterCollection.Insert(System.Int32,System.Data.Odbc.OdbcParameter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollection.cs#L180C13-L181C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollection.cs#L180C13-L181C10" }, { "DocsId": "M:System.Data.Odbc.OdbcParameterCollection.Remove(System.Data.Odbc.OdbcParameter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollection.cs#L185C13-L186C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollection.cs#L185C13-L186C10" }, { "DocsId": "M:System.Data.Odbc.OdbcParameterCollection.Add(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollectionHelper.cs#L72C13-L76C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollectionHelper.cs#L72C13-L76C30" }, { "DocsId": "M:System.Data.Odbc.OdbcParameterCollection.AddRange(System.Array)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollectionHelper.cs#L81C13-L95C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollectionHelper.cs#L81C13-L95C10" }, { "DocsId": "M:System.Data.Odbc.OdbcParameterCollection.Clear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollectionHelper.cs#L109C13-L120C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollectionHelper.cs#L109C13-L120C10" }, { "DocsId": "M:System.Data.Odbc.OdbcParameterCollection.Contains(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollectionHelper.cs#L124C13-L124C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollectionHelper.cs#L124C13-L124C43" }, { "DocsId": "M:System.Data.Odbc.OdbcParameterCollection.CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollectionHelper.cs#L129C13-L130C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollectionHelper.cs#L129C13-L130C10" }, { "DocsId": "M:System.Data.Odbc.OdbcParameterCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollectionHelper.cs#L134C13-L134C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollectionHelper.cs#L134C13-L134C80" }, { "DocsId": "M:System.Data.Odbc.OdbcParameterCollection.GetParameter(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollectionHelper.cs#L139C13-L140C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollectionHelper.cs#L139C13-L140C37" }, { "DocsId": "M:System.Data.Odbc.OdbcParameterCollection.GetParameter(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollectionHelper.cs#L145C13-L150C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollectionHelper.cs#L145C13-L150C37" }, { "DocsId": "M:System.Data.Odbc.OdbcParameterCollection.IndexOf(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollectionHelper.cs#L183C13-L183C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollectionHelper.cs#L183C13-L183C54" }, { "DocsId": "M:System.Data.Odbc.OdbcParameterCollection.IndexOf(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollectionHelper.cs#L188C13-L207C23" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollectionHelper.cs#L188C13-L207C23" }, { "DocsId": "M:System.Data.Odbc.OdbcParameterCollection.Insert(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollectionHelper.cs#L212C13-L216C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollectionHelper.cs#L212C13-L216C10" }, { "DocsId": "M:System.Data.Odbc.OdbcParameterCollection.Remove(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollectionHelper.cs#L228C13-L239C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollectionHelper.cs#L228C13-L239C10" }, { "DocsId": "M:System.Data.Odbc.OdbcParameterCollection.RemoveAt(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollectionHelper.cs#L243C13-L246C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollectionHelper.cs#L243C13-L246C10" }, { "DocsId": "M:System.Data.Odbc.OdbcParameterCollection.RemoveAt(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollectionHelper.cs#L250C13-L253C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollectionHelper.cs#L250C13-L253C10" }, { "DocsId": "M:System.Data.Odbc.OdbcParameterCollection.SetParameter(System.Int32,System.Data.Common.DbParameter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollectionHelper.cs#L277C13-L280C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollectionHelper.cs#L277C13-L280C10" }, { "DocsId": "M:System.Data.Odbc.OdbcParameterCollection.SetParameter(System.String,System.Data.Common.DbParameter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollectionHelper.cs#L284C13-L291C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollectionHelper.cs#L284C13-L291C10" }, { "DocsId": "P:System.Data.Odbc.OdbcParameterCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollection.cs#L35C17-L35C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollection.cs#L35C17-L35C59" }, { "DocsId": "P:System.Data.Odbc.OdbcParameterCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollection.cs#L51C17-L51C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollection.cs#L51C17-L51C67" }, { "DocsId": "P:System.Data.Odbc.OdbcParameterCollection.Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollectionHelper.cs#L19C17-L19C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollectionHelper.cs#L19C17-L19C62" }, { "DocsId": "P:System.Data.Odbc.OdbcParameterCollection.IsFixedSize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollectionHelper.cs#L42C17-L42C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollectionHelper.cs#L42C17-L42C74" }, { "DocsId": "P:System.Data.Odbc.OdbcParameterCollection.IsReadOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollectionHelper.cs#L50C17-L50C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollectionHelper.cs#L50C17-L50C73" }, { "DocsId": "P:System.Data.Odbc.OdbcParameterCollection.IsSynchronized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollectionHelper.cs#L58C17-L58C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollectionHelper.cs#L58C17-L58C83" }, { "DocsId": "P:System.Data.Odbc.OdbcParameterCollection.SyncRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollectionHelper.cs#L66C17-L66C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollectionHelper.cs#L66C17-L66C77" } ], "DocsId": "T:System.Data.Odbc.OdbcParameterCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollection.cs" }, { "Members": [ { "DocsId": "M:System.Data.Odbc.OdbcRowUpdatingEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcRowUpdatingEvent.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcRowUpdatingEvent.cs" }, { "DocsId": "M:System.Data.Odbc.OdbcRowUpdatingEventHandler.Invoke(System.Object,System.Data.Odbc.OdbcRowUpdatingEventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcRowUpdatingEvent.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcRowUpdatingEvent.cs" }, { "DocsId": "M:System.Data.Odbc.OdbcRowUpdatingEventHandler.BeginInvoke(System.Object,System.Data.Odbc.OdbcRowUpdatingEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcRowUpdatingEvent.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcRowUpdatingEvent.cs" }, { "DocsId": "M:System.Data.Odbc.OdbcRowUpdatingEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcRowUpdatingEvent.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcRowUpdatingEvent.cs" } ], "DocsId": "T:System.Data.Odbc.OdbcRowUpdatingEventHandler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcRowUpdatingEvent.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcRowUpdatingEvent.cs" }, { "Members": [ { "DocsId": "M:System.Data.Odbc.OdbcRowUpdatedEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcRowUpdatingEvent.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcRowUpdatingEvent.cs" }, { "DocsId": "M:System.Data.Odbc.OdbcRowUpdatedEventHandler.Invoke(System.Object,System.Data.Odbc.OdbcRowUpdatedEventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcRowUpdatingEvent.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcRowUpdatingEvent.cs" }, { "DocsId": "M:System.Data.Odbc.OdbcRowUpdatedEventHandler.BeginInvoke(System.Object,System.Data.Odbc.OdbcRowUpdatedEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcRowUpdatingEvent.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcRowUpdatingEvent.cs" }, { "DocsId": "M:System.Data.Odbc.OdbcRowUpdatedEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcRowUpdatingEvent.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcRowUpdatingEvent.cs" } ], "DocsId": "T:System.Data.Odbc.OdbcRowUpdatedEventHandler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcRowUpdatingEvent.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcRowUpdatingEvent.cs" }, { "Members": [ { "DocsId": "M:System.Data.Odbc.OdbcRowUpdatingEventArgs.#ctor(System.Data.DataRow,System.Data.IDbCommand,System.Data.StatementType,System.Data.Common.DataTableMapping)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcRowUpdatingEvent.cs#L23C11-L25C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcRowUpdatingEvent.cs#L23C11-L25C10" }, { "DocsId": "P:System.Data.Odbc.OdbcRowUpdatingEventArgs.Command", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcRowUpdatingEvent.cs#L29C19-L29C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcRowUpdatingEvent.cs#L29C19-L29C56" }, { "DocsId": "P:System.Data.Odbc.OdbcRowUpdatingEventArgs.BaseCommand", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcRowUpdatingEvent.cs#L38C19-L38C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcRowUpdatingEvent.cs#L38C19-L38C43" } ], "DocsId": "T:System.Data.Odbc.OdbcRowUpdatingEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcRowUpdatingEvent.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcRowUpdatingEvent.cs" }, { "Members": [ { "DocsId": "M:System.Data.Odbc.OdbcRowUpdatedEventArgs.#ctor(System.Data.DataRow,System.Data.IDbCommand,System.Data.StatementType,System.Data.Common.DataTableMapping)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcRowUpdatingEvent.cs#L50C11-L52C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcRowUpdatingEvent.cs#L50C11-L52C10" }, { "DocsId": "P:System.Data.Odbc.OdbcRowUpdatedEventArgs.Command", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcRowUpdatingEvent.cs#L56C19-L56C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcRowUpdatingEvent.cs#L56C19-L56C53" } ], "DocsId": "T:System.Data.Odbc.OdbcRowUpdatedEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcRowUpdatingEvent.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcRowUpdatingEvent.cs" }, { "Members": [ { "DocsId": "M:System.Data.Odbc.OdbcTransaction.Commit", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcTransaction.cs#L70C13-L97C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcTransaction.cs#L70C13-L97C10" }, { "DocsId": "M:System.Data.Odbc.OdbcTransaction.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcTransaction.cs#L101C13-L140C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcTransaction.cs#L101C13-L140C10" }, { "DocsId": "M:System.Data.Odbc.OdbcTransaction.Rollback", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcTransaction.cs#L144C13-L168C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcTransaction.cs#L144C13-L168C10" }, { "DocsId": "P:System.Data.Odbc.OdbcTransaction.Connection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcTransaction.cs#L25C17-L25C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcTransaction.cs#L25C17-L25C36" }, { "DocsId": "P:System.Data.Odbc.OdbcTransaction.DbConnection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcTransaction.cs#L33C17-L33C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcTransaction.cs#L33C17-L33C35" }, { "DocsId": "P:System.Data.Odbc.OdbcTransaction.IsolationLevel", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcTransaction.cs#L41C17-L64C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcTransaction.cs#L41C17-L64C34" } ], "DocsId": "T:System.Data.Odbc.OdbcTransaction", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcTransaction.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcTransaction.cs" }, { "Members": [ { "DocsId": "F:System.Data.Odbc.OdbcType.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" }, { "DocsId": "F:System.Data.Odbc.OdbcType.BigInt", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" }, { "DocsId": "F:System.Data.Odbc.OdbcType.Binary", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" }, { "DocsId": "F:System.Data.Odbc.OdbcType.Bit", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" }, { "DocsId": "F:System.Data.Odbc.OdbcType.Char", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" }, { "DocsId": "F:System.Data.Odbc.OdbcType.DateTime", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" }, { "DocsId": "F:System.Data.Odbc.OdbcType.Decimal", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" }, { "DocsId": "F:System.Data.Odbc.OdbcType.Numeric", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" }, { "DocsId": "F:System.Data.Odbc.OdbcType.Double", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" }, { "DocsId": "F:System.Data.Odbc.OdbcType.Image", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" }, { "DocsId": "F:System.Data.Odbc.OdbcType.Int", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" }, { "DocsId": "F:System.Data.Odbc.OdbcType.NChar", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" }, { "DocsId": "F:System.Data.Odbc.OdbcType.NText", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" }, { "DocsId": "F:System.Data.Odbc.OdbcType.NVarChar", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" }, { "DocsId": "F:System.Data.Odbc.OdbcType.Real", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" }, { "DocsId": "F:System.Data.Odbc.OdbcType.UniqueIdentifier", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" }, { "DocsId": "F:System.Data.Odbc.OdbcType.SmallDateTime", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" }, { "DocsId": "F:System.Data.Odbc.OdbcType.SmallInt", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" }, { "DocsId": "F:System.Data.Odbc.OdbcType.Text", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" }, { "DocsId": "F:System.Data.Odbc.OdbcType.Timestamp", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" }, { "DocsId": "F:System.Data.Odbc.OdbcType.TinyInt", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" }, { "DocsId": "F:System.Data.Odbc.OdbcType.VarBinary", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" }, { "DocsId": "F:System.Data.Odbc.OdbcType.VarChar", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" }, { "DocsId": "F:System.Data.Odbc.OdbcType.Date", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" }, { "DocsId": "F:System.Data.Odbc.OdbcType.Time", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" } ], "DocsId": "T:System.Data.Odbc.OdbcType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" }, { "Members": [ { "DocsId": "F:System.Data.Odbc.ODBC32.RETCODE.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/ODBC32.Common.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/ODBC32.Common.cs" }, { "DocsId": "F:System.Data.Odbc.ODBC32.RETCODE.SUCCESS", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/ODBC32.Common.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/ODBC32.Common.cs" }, { "DocsId": "F:System.Data.Odbc.ODBC32.RETCODE.SUCCESS_WITH_INFO", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/ODBC32.Common.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/ODBC32.Common.cs" }, { "DocsId": "F:System.Data.Odbc.ODBC32.RETCODE.ERROR", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/ODBC32.Common.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/ODBC32.Common.cs" }, { "DocsId": "F:System.Data.Odbc.ODBC32.RETCODE.INVALID_HANDLE", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/ODBC32.Common.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/ODBC32.Common.cs" }, { "DocsId": "F:System.Data.Odbc.ODBC32.RETCODE.NO_DATA", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/ODBC32.Common.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/ODBC32.Common.cs" } ], "DocsId": "T:System.Data.Odbc.ODBC32.RETCODE", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/ODBC32.Common.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/ODBC32.Common.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/System.Data.OleDb.json b/xml/SourceLinkInformation/net-8.0/System.Data.OleDb.json index 63d6599abf8..3423c4fadaa 100644 --- a/xml/SourceLinkInformation/net-8.0/System.Data.OleDb.json +++ b/xml/SourceLinkInformation/net-8.0/System.Data.OleDb.json @@ -1,1733 +1,1732 @@ { "Assembly": "System.Data.OleDb", - "GUID": "7B5907CA80EC4B3C8F50A8CE0AE9693BFFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "D479F005AD6049BBB6DD11E0F5BF253AFFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:System.Data.OleDb.OleDbParameter.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/DbParameterHelper.cs#L219C13-L219C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/DbParameterHelper.cs#L219C13-L219C34" }, { "DocsId": "M:System.Data.OleDb.OleDbParameter.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameter.cs#L25C35-L27C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameter.cs#L25C35-L27C10" }, { "DocsId": "M:System.Data.OleDb.OleDbParameter.#ctor(System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameter.cs#L29C62-L36C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameter.cs#L29C62-L36C10" }, { "DocsId": "M:System.Data.OleDb.OleDbParameter.#ctor(System.String,System.Data.OleDb.OleDbType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameter.cs#L38C67-L42C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameter.cs#L38C67-L42C10" }, { "DocsId": "M:System.Data.OleDb.OleDbParameter.#ctor(System.String,System.Data.OleDb.OleDbType,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameter.cs#L44C77-L49C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameter.cs#L44C77-L49C10" }, { "DocsId": "M:System.Data.OleDb.OleDbParameter.#ctor(System.String,System.Data.OleDb.OleDbType,System.Int32,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameter.cs#L51C96-L57C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameter.cs#L51C96-L57C10" }, { "DocsId": "M:System.Data.OleDb.OleDbParameter.#ctor(System.String,System.Data.OleDb.OleDbType,System.Int32,System.Data.ParameterDirection,System.Boolean,System.Byte,System.Byte,System.String,System.Data.DataRowVersion,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameter.cs#L65C48-L77C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameter.cs#L65C48-L77C10" }, { "DocsId": "M:System.Data.OleDb.OleDbParameter.#ctor(System.String,System.Data.OleDb.OleDbType,System.Int32,System.Data.ParameterDirection,System.Byte,System.Byte,System.String,System.Data.DataRowVersion,System.Boolean,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameter.cs#L85C48-L97C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameter.cs#L85C48-L97C10" }, { "DocsId": "M:System.Data.OleDb.OleDbParameter.ResetDbType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameter.cs#L126C13-L127C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameter.cs#L126C13-L127C10" }, { "DocsId": "M:System.Data.OleDb.OleDbParameter.ResetOleDbType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameter.cs#L157C13-L162C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameter.cs#L157C13-L162C10" }, { "DocsId": "M:System.Data.OleDb.OleDbParameter.System#ICloneable#Clone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameter.cs#L263C13-L263C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameter.cs#L263C13-L263C45" }, { "DocsId": "P:System.Data.OleDb.OleDbParameter.Direction", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/DbParameterHelper.cs#L56C17-L57C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/DbParameterHelper.cs#L56C17-L57C82" }, { "DocsId": "P:System.Data.OleDb.OleDbParameter.IsNullable", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/DbParameterHelper.cs#L83C17-L83C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/DbParameterHelper.cs#L83C17-L83C36" }, { "DocsId": "P:System.Data.OleDb.OleDbParameter.Size", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/DbParameterHelper.cs#L97C17-L102C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/DbParameterHelper.cs#L97C17-L102C29" }, { "DocsId": "P:System.Data.OleDb.OleDbParameter.SourceColumn", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/DbParameterHelper.cs#L137C17-L137C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/DbParameterHelper.cs#L137C17-L137C54" }, { "DocsId": "P:System.Data.OleDb.OleDbParameter.SourceColumnNullMapping", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/DbParameterHelper.cs#L149C17-L149C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/DbParameterHelper.cs#L149C17-L149C49" }, { "DocsId": "P:System.Data.OleDb.OleDbParameter.SourceVersion", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/DbParameterHelper.cs#L161C17-L162C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/DbParameterHelper.cs#L161C17-L162C88" }, { "DocsId": "P:System.Data.OleDb.OleDbParameter.DbType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameter.cs#L111C17-L111C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameter.cs#L111C17-L111C54" }, { "DocsId": "P:System.Data.OleDb.OleDbParameter.OleDbType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameter.cs#L137C17-L137C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameter.cs#L137C17-L137C57" }, { "DocsId": "P:System.Data.OleDb.OleDbParameter.ParameterName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameter.cs#L169C17-L169C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameter.cs#L169C17-L169C55" }, { "DocsId": "P:System.Data.OleDb.OleDbParameter.Precision", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameter.cs#L186C17-L186C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameter.cs#L186C17-L186C42" }, { "DocsId": "P:System.Data.OleDb.OleDbParameter.Scale", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameter.cs#L223C17-L223C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameter.cs#L223C17-L223C38" }, { "DocsId": "P:System.Data.OleDb.OleDbParameter.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameter.cs#L568C17-L568C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameter.cs#L568C17-L568C31" } ], "DocsId": "T:System.Data.OleDb.OleDbParameter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameter.cs" }, { "Members": [ { "DocsId": "M:System.Data.OleDb.OleDbCommand.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L22C9-L52C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L22C9-L52C10" }, { "DocsId": "M:System.Data.OleDb.OleDbCommand.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L54C48-L57C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L54C48-L57C10" }, { "DocsId": "M:System.Data.OleDb.OleDbCommand.#ctor(System.String,System.Data.OleDb.OleDbConnection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L59C77-L63C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L59C77-L63C10" }, { "DocsId": "M:System.Data.OleDb.OleDbCommand.#ctor(System.String,System.Data.OleDb.OleDbConnection,System.Data.OleDb.OleDbTransaction)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L65C108-L70C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L65C108-L70C10" }, { "DocsId": "M:System.Data.OleDb.OleDbCommand.ResetCommandTimeout", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L149C13-L154C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L149C13-L154C10" }, { "DocsId": "M:System.Data.OleDb.OleDbCommand.Cancel", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L462C15-L493C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L462C15-L493C10" }, { "DocsId": "M:System.Data.OleDb.OleDbCommand.Clone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L497C13-L498C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L497C13-L498C26" }, { "DocsId": "M:System.Data.OleDb.OleDbCommand.System#ICloneable#Clone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L503C13-L503C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L503C13-L503C28" }, { "DocsId": "M:System.Data.OleDb.OleDbCommand.CreateParameter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L571C13-L571C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L571C13-L571C41" }, { "DocsId": "M:System.Data.OleDb.OleDbCommand.CreateDbParameter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L576C13-L576C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L576C13-L576C38" }, { "DocsId": "M:System.Data.OleDb.OleDbCommand.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L581C13-L598C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L581C13-L598C10" }, { "DocsId": "M:System.Data.OleDb.OleDbCommand.ExecuteReader", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L602C13-L602C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L602C13-L602C59" }, { "DocsId": "M:System.Data.OleDb.OleDbCommand.System#Data#IDbCommand#ExecuteReader", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L607C13-L607C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L607C13-L607C59" }, { "DocsId": "M:System.Data.OleDb.OleDbCommand.ExecuteReader(System.Data.CommandBehavior)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L612C13-L613C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L612C13-L613C72" }, { "DocsId": "M:System.Data.OleDb.OleDbCommand.System#Data#IDbCommand#ExecuteReader(System.Data.CommandBehavior)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L618C13-L618C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L618C13-L618C44" }, { "DocsId": "M:System.Data.OleDb.OleDbCommand.ExecuteDbDataReader(System.Data.CommandBehavior)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L623C13-L623C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L623C13-L623C44" }, { "DocsId": "M:System.Data.OleDb.OleDbCommand.ExecuteNonQuery", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L942C13-L944C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L942C13-L944C56" }, { "DocsId": "M:System.Data.OleDb.OleDbCommand.ExecuteScalar", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L949C13-L958C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L949C13-L958C26" }, { "DocsId": "M:System.Data.OleDb.OleDbCommand.Prepare", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L1187C13-L1198C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L1187C13-L1198C10" }, { "DocsId": "P:System.Data.OleDb.OleDbCommand.CommandText", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L115C17-L115C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L115C17-L115C53" }, { "DocsId": "P:System.Data.OleDb.OleDbCommand.CommandTimeout", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L131C17-L131C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L131C17-L131C40" }, { "DocsId": "P:System.Data.OleDb.OleDbCommand.CommandType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L162C17-L163C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L162C17-L163C70" }, { "DocsId": "P:System.Data.OleDb.OleDbCommand.Connection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L188C17-L188C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L188C17-L188C36" }, { "DocsId": "P:System.Data.OleDb.OleDbCommand.DbConnection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L228C17-L228C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L228C17-L228C35" }, { "DocsId": "P:System.Data.OleDb.OleDbCommand.DbParameterCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L240C17-L240C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L240C17-L240C35" }, { "DocsId": "P:System.Data.OleDb.OleDbCommand.DbTransaction", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L248C17-L248C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L248C17-L248C36" }, { "DocsId": "P:System.Data.OleDb.OleDbCommand.DesignTimeVisible", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L270C17-L270C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L270C17-L270C46" }, { "DocsId": "P:System.Data.OleDb.OleDbCommand.Parameters", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L286C17-L294C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L286C17-L294C30" }, { "DocsId": "P:System.Data.OleDb.OleDbCommand.Transaction", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L314C17-L320C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L314C17-L320C36" }, { "DocsId": "P:System.Data.OleDb.OleDbCommand.UpdatedRowSource", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L335C17-L335C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L335C17-L335C42" } ], "DocsId": "T:System.Data.OleDb.OleDbCommand", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommand.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommand.cs" }, { "Members": [ { "DocsId": "M:System.Data.OleDb.OleDbCommandBuilder.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommandBuilder.cs#L13C40-L16C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommandBuilder.cs#L13C40-L16C10" }, { "DocsId": "M:System.Data.OleDb.OleDbCommandBuilder.#ctor(System.Data.OleDb.OleDbDataAdapter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommandBuilder.cs#L18C65-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommandBuilder.cs#L18C65-L21C10" }, { "DocsId": "M:System.Data.OleDb.OleDbCommandBuilder.GetInsertCommand", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommandBuilder.cs#L45C13-L45C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommandBuilder.cs#L45C13-L45C58" }, { "DocsId": "M:System.Data.OleDb.OleDbCommandBuilder.GetInsertCommand(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommandBuilder.cs#L49C13-L49C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommandBuilder.cs#L49C13-L49C85" }, { "DocsId": "M:System.Data.OleDb.OleDbCommandBuilder.GetUpdateCommand", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommandBuilder.cs#L54C13-L54C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommandBuilder.cs#L54C13-L54C58" }, { "DocsId": "M:System.Data.OleDb.OleDbCommandBuilder.GetUpdateCommand(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommandBuilder.cs#L58C13-L58C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommandBuilder.cs#L58C13-L58C85" }, { "DocsId": "M:System.Data.OleDb.OleDbCommandBuilder.GetDeleteCommand", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommandBuilder.cs#L63C13-L63C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommandBuilder.cs#L63C13-L63C58" }, { "DocsId": "M:System.Data.OleDb.OleDbCommandBuilder.GetDeleteCommand(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommandBuilder.cs#L67C13-L67C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommandBuilder.cs#L67C13-L67C85" }, { "DocsId": "M:System.Data.OleDb.OleDbCommandBuilder.GetParameterName(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommandBuilder.cs#L72C13-L72C103" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommandBuilder.cs#L72C13-L72C103" }, { "DocsId": "M:System.Data.OleDb.OleDbCommandBuilder.GetParameterName(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommandBuilder.cs#L76C13-L76C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommandBuilder.cs#L76C13-L76C34" }, { "DocsId": "M:System.Data.OleDb.OleDbCommandBuilder.GetParameterPlaceholder(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommandBuilder.cs#L81C13-L81C24" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommandBuilder.cs#L81C13-L81C24" }, { "DocsId": "M:System.Data.OleDb.OleDbCommandBuilder.ApplyParameterInfo(System.Data.Common.DbParameter,System.Data.DataRow,System.Data.StatementType,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommandBuilder.cs#L86C13-L103C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommandBuilder.cs#L86C13-L103C10" }, { "DocsId": "M:System.Data.OleDb.OleDbCommandBuilder.DeriveParameters(System.Data.OleDb.OleDbCommand)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommandBuilder.cs#L107C13-L146C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommandBuilder.cs#L107C13-L146C10" }, { "DocsId": "M:System.Data.OleDb.OleDbCommandBuilder.QuoteIdentifier(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommandBuilder.cs#L359C13-L359C122" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommandBuilder.cs#L359C13-L359C122" }, { "DocsId": "M:System.Data.OleDb.OleDbCommandBuilder.QuoteIdentifier(System.String,System.Data.OleDb.OleDbConnection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommandBuilder.cs#L363C13-L387C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommandBuilder.cs#L363C13-L387C88" }, { "DocsId": "M:System.Data.OleDb.OleDbCommandBuilder.SetRowUpdatingHandler(System.Data.Common.DbDataAdapter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommandBuilder.cs#L393C13-L401C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommandBuilder.cs#L393C13-L401C10" }, { "DocsId": "M:System.Data.OleDb.OleDbCommandBuilder.UnquoteIdentifier(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommandBuilder.cs#L405C13-L405C122" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommandBuilder.cs#L405C13-L405C122" }, { "DocsId": "M:System.Data.OleDb.OleDbCommandBuilder.UnquoteIdentifier(System.String,System.Data.OleDb.OleDbConnection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommandBuilder.cs#L410C13-L438C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommandBuilder.cs#L410C13-L438C40" }, { "DocsId": "P:System.Data.OleDb.OleDbCommandBuilder.DataAdapter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommandBuilder.cs#L28C17-L28C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommandBuilder.cs#L28C17-L28C63" } ], "DocsId": "T:System.Data.OleDb.OleDbCommandBuilder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommandBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommandBuilder.cs" }, { "Members": [ { "DocsId": "M:System.Data.OleDb.OleDbConnection.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbConnection.cs#L26C60-L29C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbConnection.cs#L26C60-L29C10" }, { "DocsId": "M:System.Data.OleDb.OleDbConnection.ResetState", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbConnection.cs#L224C13-L247C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbConnection.cs#L224C13-L247C10" }, { "DocsId": "M:System.Data.OleDb.OleDbConnection.BeginTransaction", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbConnection.cs#L316C13-L316C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbConnection.cs#L316C13-L316C65" }, { "DocsId": "M:System.Data.OleDb.OleDbConnection.BeginTransaction(System.Data.IsolationLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbConnection.cs#L321C13-L321C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbConnection.cs#L321C13-L321C87" }, { "DocsId": "M:System.Data.OleDb.OleDbConnection.ChangeDatabase(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbConnection.cs#L326C13-L332C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbConnection.cs#L326C13-L332C10" }, { "DocsId": "M:System.Data.OleDb.OleDbConnection.System#ICloneable#Clone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbConnection.cs#L345C13-L346C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbConnection.cs#L345C13-L346C26" }, { "DocsId": "M:System.Data.OleDb.OleDbConnection.Close", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbConnection.cs#L351C13-L353C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbConnection.cs#L351C13-L353C10" }, { "DocsId": "M:System.Data.OleDb.OleDbConnection.CreateCommand", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbConnection.cs#L357C13-L357C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbConnection.cs#L357C13-L357C47" }, { "DocsId": "M:System.Data.OleDb.OleDbConnection.BeginDbTransaction(System.Data.IsolationLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbConnection.cs#L377C13-L385C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbConnection.cs#L377C13-L385C32" }, { "DocsId": "M:System.Data.OleDb.OleDbConnection.GetOleDbSchemaTable(System.Guid,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbConnection.cs#L430C13-L471C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbConnection.cs#L430C13-L471C65" }, { "DocsId": "M:System.Data.OleDb.OleDbConnection.Open", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbConnection.cs#L519C13-L528C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbConnection.cs#L519C13-L528C10" }, { "DocsId": "M:System.Data.OleDb.OleDbConnection.ReleaseObjectPool", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbConnection.cs#L641C13-L644C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbConnection.cs#L641C13-L644C10" }, { "DocsId": "M:System.Data.OleDb.OleDbConnection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/System/Data/ProviderBase/DbConnectionHelper.cs#L21C36-L25C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/System/Data/ProviderBase/DbConnectionHelper.cs#L21C36-L25C10" }, { "DocsId": "M:System.Data.OleDb.OleDbConnection.CreateDbCommand", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/System/Data/ProviderBase/DbConnectionHelper.cs#L146C13-L149C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/System/Data/ProviderBase/DbConnectionHelper.cs#L146C13-L149C28" }, { "DocsId": "M:System.Data.OleDb.OleDbConnection.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/System/Data/ProviderBase/DbConnectionHelper.cs#L154C13-L162C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/System/Data/ProviderBase/DbConnectionHelper.cs#L154C13-L162C10" }, { "DocsId": "M:System.Data.OleDb.OleDbConnection.EnlistTransaction(System.Transactions.Transaction)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/System/Data/ProviderBase/DbConnectionHelper.cs#L195C13-L223C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/System/Data/ProviderBase/DbConnectionHelper.cs#L195C13-L223C10" }, { "DocsId": "M:System.Data.OleDb.OleDbConnection.GetSchema", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/System/Data/ProviderBase/DbConnectionHelper.cs#L227C13-L227C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/System/Data/ProviderBase/DbConnectionHelper.cs#L227C13-L227C88" }, { "DocsId": "M:System.Data.OleDb.OleDbConnection.GetSchema(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/System/Data/ProviderBase/DbConnectionHelper.cs#L232C13-L232C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/System/Data/ProviderBase/DbConnectionHelper.cs#L232C13-L232C57" }, { "DocsId": "M:System.Data.OleDb.OleDbConnection.GetSchema(System.String,System.String[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/System/Data/ProviderBase/DbConnectionHelper.cs#L239C13-L239C118" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/System/Data/ProviderBase/DbConnectionHelper.cs#L239C13-L239C118" }, { "DocsId": "E:System.Data.OleDb.OleDbConnection.InfoMessage", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbConnection.cs#L253C17-L254C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbConnection.cs#L253C17-L254C14" }, { "DocsId": "P:System.Data.OleDb.OleDbConnection.ConnectionString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbConnection.cs#L51C17-L51C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbConnection.cs#L51C17-L51C47" }, { "DocsId": "P:System.Data.OleDb.OleDbConnection.ConnectionTimeout", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbConnection.cs#L72C17-L87C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbConnection.cs#L72C17-L87C57" }, { "DocsId": "P:System.Data.OleDb.OleDbConnection.Database", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbConnection.cs#L97C17-L119C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbConnection.cs#L97C17-L119C79" }, { "DocsId": "P:System.Data.OleDb.OleDbConnection.DataSource", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbConnection.cs#L130C17-L148C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbConnection.cs#L130C17-L148C79" }, { "DocsId": "P:System.Data.OleDb.OleDbConnection.Provider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbConnection.cs#L178C17-L179C89" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbConnection.cs#L178C17-L179C89" }, { "DocsId": "P:System.Data.OleDb.OleDbConnection.ServerVersion", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbConnection.cs#L196C17-L196C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbConnection.cs#L196C17-L196C54" }, { "DocsId": "P:System.Data.OleDb.OleDbConnection.State", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbConnection.cs#L209C17-L209C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbConnection.cs#L209C17-L209C46" }, { "DocsId": "P:System.Data.OleDb.OleDbConnection.DbProviderFactory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbConnection.cs#L217C17-L217C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbConnection.cs#L217C17-L217C46" } ], "DocsId": "T:System.Data.OleDb.OleDbConnection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbConnection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbConnection.cs" }, { "Members": [ { "DocsId": "M:System.Data.OleDb.OleDbConnectionStringBuilder.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbConnectionStringBuilder.cs#L57C49-L60C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbConnectionStringBuilder.cs#L57C49-L60C10" }, { "DocsId": "M:System.Data.OleDb.OleDbConnectionStringBuilder.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbConnectionStringBuilder.cs#L48C9-L68C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbConnectionStringBuilder.cs#L48C9-L68C10" }, { "DocsId": "M:System.Data.OleDb.OleDbConnectionStringBuilder.ContainsKey(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbConnectionStringBuilder.cs#L270C13-L271C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbConnectionStringBuilder.cs#L270C13-L271C81" }, { "DocsId": "M:System.Data.OleDb.OleDbConnectionStringBuilder.Clear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbConnectionStringBuilder.cs#L289C13-L296C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbConnectionStringBuilder.cs#L289C13-L296C10" }, { "DocsId": "M:System.Data.OleDb.OleDbConnectionStringBuilder.Remove(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbConnectionStringBuilder.cs#L320C13-L332C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbConnectionStringBuilder.cs#L320C13-L332C26" }, { "DocsId": "M:System.Data.OleDb.OleDbConnectionStringBuilder.TryGetValue(System.String,System.Object@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbConnectionStringBuilder.cs#L390C13-L408C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbConnectionStringBuilder.cs#L390C13-L408C25" }, { "DocsId": "P:System.Data.OleDb.OleDbConnectionStringBuilder.Item(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbConnectionStringBuilder.cs#L75C17-L88C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbConnectionStringBuilder.cs#L75C17-L88C30" }, { "DocsId": "P:System.Data.OleDb.OleDbConnectionStringBuilder.DataSource", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbConnectionStringBuilder.cs#L140C19-L140C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbConnectionStringBuilder.cs#L140C19-L140C38" }, { "DocsId": "P:System.Data.OleDb.OleDbConnectionStringBuilder.FileName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbConnectionStringBuilder.cs#L155C19-L155C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbConnectionStringBuilder.cs#L155C19-L155C36" }, { "DocsId": "P:System.Data.OleDb.OleDbConnectionStringBuilder.OleDbServices", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbConnectionStringBuilder.cs#L168C19-L168C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbConnectionStringBuilder.cs#L168C19-L168C41" }, { "DocsId": "P:System.Data.OleDb.OleDbConnectionStringBuilder.PersistSecurityInfo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbConnectionStringBuilder.cs#L180C19-L180C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbConnectionStringBuilder.cs#L180C19-L180C47" }, { "DocsId": "P:System.Data.OleDb.OleDbConnectionStringBuilder.Provider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbConnectionStringBuilder.cs#L193C19-L193C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbConnectionStringBuilder.cs#L193C19-L193C36" }, { "DocsId": "P:System.Data.OleDb.OleDbConnectionStringBuilder.Keys", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbConnectionStringBuilder.cs#L206C17-L264C89" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbConnectionStringBuilder.cs#L206C17-L264C89" } ], "DocsId": "T:System.Data.OleDb.OleDbConnectionStringBuilder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbConnectionStringBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbConnectionStringBuilder.cs" }, { "Members": [ { "DocsId": "M:System.Data.OleDb.OleDbDataAdapter.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L20C37-L23C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L20C37-L23C10" }, { "DocsId": "M:System.Data.OleDb.OleDbDataAdapter.#ctor(System.Data.OleDb.OleDbCommand)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L25C64-L28C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L25C64-L28C10" }, { "DocsId": "M:System.Data.OleDb.OleDbDataAdapter.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L30C94-L34C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L30C94-L34C10" }, { "DocsId": "M:System.Data.OleDb.OleDbDataAdapter.#ctor(System.String,System.Data.OleDb.OleDbConnection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L36C97-L39C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L36C97-L39C10" }, { "DocsId": "M:System.Data.OleDb.OleDbDataAdapter.System#Data#IDbDataAdapter#get_DeleteCommand", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L57C19-L57C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L57C19-L57C41" }, { "DocsId": "M:System.Data.OleDb.OleDbDataAdapter.System#Data#IDbDataAdapter#set_DeleteCommand(System.Data.IDbCommand)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L58C19-L58C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L58C19-L58C59" }, { "DocsId": "M:System.Data.OleDb.OleDbDataAdapter.System#Data#IDbDataAdapter#get_InsertCommand", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L72C19-L72C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L72C19-L72C41" }, { "DocsId": "M:System.Data.OleDb.OleDbDataAdapter.System#Data#IDbDataAdapter#set_InsertCommand(System.Data.IDbCommand)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L73C19-L73C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L73C19-L73C59" }, { "DocsId": "M:System.Data.OleDb.OleDbDataAdapter.System#Data#IDbDataAdapter#get_SelectCommand", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L87C19-L87C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L87C19-L87C41" }, { "DocsId": "M:System.Data.OleDb.OleDbDataAdapter.System#Data#IDbDataAdapter#set_SelectCommand(System.Data.IDbCommand)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L88C19-L88C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L88C19-L88C59" }, { "DocsId": "M:System.Data.OleDb.OleDbDataAdapter.System#Data#IDbDataAdapter#get_UpdateCommand", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L102C19-L102C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L102C19-L102C41" }, { "DocsId": "M:System.Data.OleDb.OleDbDataAdapter.System#Data#IDbDataAdapter#set_UpdateCommand(System.Data.IDbCommand)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L103C19-L103C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L103C19-L103C59" }, { "DocsId": "M:System.Data.OleDb.OleDbDataAdapter.System#ICloneable#Clone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L135C13-L135C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L135C13-L135C47" }, { "DocsId": "M:System.Data.OleDb.OleDbDataAdapter.CreateRowUpdatedEvent(System.Data.DataRow,System.Data.IDbCommand,System.Data.StatementType,System.Data.Common.DataTableMapping)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L140C13-L140C96" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L140C13-L140C96" }, { "DocsId": "M:System.Data.OleDb.OleDbDataAdapter.CreateRowUpdatingEvent(System.Data.DataRow,System.Data.IDbCommand,System.Data.StatementType,System.Data.Common.DataTableMapping)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L145C13-L145C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L145C13-L145C97" }, { "DocsId": "M:System.Data.OleDb.OleDbDataAdapter.Fill(System.Data.DataTable,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L156C13-L164C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L156C13-L164C82" }, { "DocsId": "M:System.Data.OleDb.OleDbDataAdapter.Fill(System.Data.DataSet,System.Object,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L169C13-L181C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L169C13-L181C83" }, { "DocsId": "M:System.Data.OleDb.OleDbDataAdapter.OnRowUpdated(System.Data.Common.RowUpdatedEventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L433C13-L439C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L433C13-L439C10" }, { "DocsId": "M:System.Data.OleDb.OleDbDataAdapter.OnRowUpdating(System.Data.Common.RowUpdatingEventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L443C13-L449C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L443C13-L449C10" }, { "DocsId": "E:System.Data.OleDb.OleDbDataAdapter.RowUpdated", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L108C19-L108C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L108C19-L108C63" }, { "DocsId": "E:System.Data.OleDb.OleDbDataAdapter.RowUpdating", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L116C17-L129C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L116C17-L129C14" }, { "DocsId": "P:System.Data.OleDb.OleDbDataAdapter.DeleteCommand", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L51C19-L51C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L51C19-L51C41" }, { "DocsId": "P:System.Data.OleDb.OleDbDataAdapter.System#Data#IDbDataAdapter#DeleteCommand", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L57C19-L57C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L57C19-L57C41" }, { "DocsId": "P:System.Data.OleDb.OleDbDataAdapter.InsertCommand", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L66C19-L66C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L66C19-L66C41" }, { "DocsId": "P:System.Data.OleDb.OleDbDataAdapter.System#Data#IDbDataAdapter#InsertCommand", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L72C19-L72C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L72C19-L72C41" }, { "DocsId": "P:System.Data.OleDb.OleDbDataAdapter.SelectCommand", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L81C19-L81C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L81C19-L81C41" }, { "DocsId": "P:System.Data.OleDb.OleDbDataAdapter.System#Data#IDbDataAdapter#SelectCommand", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L87C19-L87C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L87C19-L87C41" }, { "DocsId": "P:System.Data.OleDb.OleDbDataAdapter.UpdateCommand", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L96C19-L96C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L96C19-L96C41" }, { "DocsId": "P:System.Data.OleDb.OleDbDataAdapter.System#Data#IDbDataAdapter#UpdateCommand", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L102C19-L102C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L102C19-L102C41" } ], "DocsId": "T:System.Data.OleDb.OleDbDataAdapter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs" }, { "Members": [ { "DocsId": "M:System.Data.OleDb.OleDbDataReader.GetSchemaTable", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L258C13-L277C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L258C13-L277C32" }, { "DocsId": "M:System.Data.OleDb.OleDbDataReader.Close", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L640C13-L718C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L640C13-L718C10" }, { "DocsId": "M:System.Data.OleDb.OleDbDataReader.GetBoolean(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L822C13-L823C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L822C13-L823C43" }, { "DocsId": "M:System.Data.OleDb.OleDbDataReader.GetByte(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L828C13-L829C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L828C13-L829C40" }, { "DocsId": "M:System.Data.OleDb.OleDbDataReader.GetBytes(System.Int32,System.Int64,System.Byte[],System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L856C13-L887C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L856C13-L887C30" }, { "DocsId": "M:System.Data.OleDb.OleDbDataReader.GetChars(System.Int32,System.Int64,System.Char[],System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L892C13-L924C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L892C13-L924C30" }, { "DocsId": "M:System.Data.OleDb.OleDbDataReader.GetChar(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L930C13-L930C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L930C13-L930C38" }, { "DocsId": "M:System.Data.OleDb.OleDbDataReader.GetData(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L936C13-L937C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L936C13-L937C43" }, { "DocsId": "M:System.Data.OleDb.OleDbDataReader.GetDbDataReader(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L942C13-L942C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L942C13-L942C37" }, { "DocsId": "M:System.Data.OleDb.OleDbDataReader.GetDataTypeName(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L981C13-L985C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L981C13-L985C42" }, { "DocsId": "M:System.Data.OleDb.OleDbDataReader.GetDateTime(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L990C13-L991C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L990C13-L991C44" }, { "DocsId": "M:System.Data.OleDb.OleDbDataReader.GetDecimal(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L996C13-L997C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L996C13-L997C43" }, { "DocsId": "M:System.Data.OleDb.OleDbDataReader.GetDouble(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L1002C13-L1003C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L1002C13-L1003C42" }, { "DocsId": "M:System.Data.OleDb.OleDbDataReader.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L1008C13-L1008C108" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L1008C13-L1008C108" }, { "DocsId": "M:System.Data.OleDb.OleDbDataReader.GetFieldType(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L1013C13-L1019C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L1013C13-L1019C42" }, { "DocsId": "M:System.Data.OleDb.OleDbDataReader.GetFloat(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L1024C13-L1025C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L1024C13-L1025C42" }, { "DocsId": "M:System.Data.OleDb.OleDbDataReader.GetGuid(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L1030C13-L1031C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L1030C13-L1031C40" }, { "DocsId": "M:System.Data.OleDb.OleDbDataReader.GetInt16(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L1036C13-L1037C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L1036C13-L1037C41" }, { "DocsId": "M:System.Data.OleDb.OleDbDataReader.GetInt32(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L1042C13-L1043C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L1042C13-L1043C41" }, { "DocsId": "M:System.Data.OleDb.OleDbDataReader.GetInt64(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L1048C13-L1049C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L1048C13-L1049C41" }, { "DocsId": "M:System.Data.OleDb.OleDbDataReader.GetName(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L1054C13-L1059C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L1054C13-L1059C42" }, { "DocsId": "M:System.Data.OleDb.OleDbDataReader.GetOrdinal(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L1064C13-L1072C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L1064C13-L1072C54" }, { "DocsId": "M:System.Data.OleDb.OleDbDataReader.GetString(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L1077C13-L1078C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L1077C13-L1078C42" }, { "DocsId": "M:System.Data.OleDb.OleDbDataReader.GetTimeSpan(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L1083C13-L1083C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L1083C13-L1083C48" }, { "DocsId": "M:System.Data.OleDb.OleDbDataReader.GetValue(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L1149C13-L1151C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L1149C13-L1151C26" }, { "DocsId": "M:System.Data.OleDb.OleDbDataReader.GetValues(System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L1156C13-L1167C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L1156C13-L1167C26" }, { "DocsId": "M:System.Data.OleDb.OleDbDataReader.IsDBNull(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L1177C13-L1178C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L1177C13-L1178C42" }, { "DocsId": "M:System.Data.OleDb.OleDbDataReader.NextResult", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L1302C13-L1360C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L1302C13-L1360C28" }, { "DocsId": "M:System.Data.OleDb.OleDbDataReader.Read", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L1365C13-L1395C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L1365C13-L1395C28" }, { "DocsId": "P:System.Data.OleDb.OleDbDataReader.Depth", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L137C17-L141C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L137C17-L141C31" }, { "DocsId": "P:System.Data.OleDb.OleDbDataReader.FieldCount", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L149C17-L154C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L149C17-L154C67" }, { "DocsId": "P:System.Data.OleDb.OleDbDataReader.HasRows", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L162C17-L166C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L162C17-L166C33" }, { "DocsId": "P:System.Data.OleDb.OleDbDataReader.IsClosed", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L178C17-L178C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L178C17-L178C34" }, { "DocsId": "P:System.Data.OleDb.OleDbDataReader.RecordsAffected", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L191C17-L191C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L191C17-L191C60" }, { "DocsId": "P:System.Data.OleDb.OleDbDataReader.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L206C17-L206C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L206C17-L206C40" }, { "DocsId": "P:System.Data.OleDb.OleDbDataReader.Item(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L214C17-L215C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L214C17-L215C42" }, { "DocsId": "P:System.Data.OleDb.OleDbDataReader.VisibleFieldCount", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L1205C17-L1209C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L1205C17-L1209C43" } ], "DocsId": "T:System.Data.OleDb.OleDbDataReader", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs" }, { "Members": [ { "DocsId": "M:System.Data.OleDb.OleDbEnumerator.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbEnumerator.cs#L11C9-L13C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbEnumerator.cs#L11C9-L13C10" }, { "DocsId": "M:System.Data.OleDb.OleDbEnumerator.GetElements", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbEnumerator.cs#L17C13-L21C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbEnumerator.cs#L17C13-L21C30" }, { "DocsId": "M:System.Data.OleDb.OleDbEnumerator.GetEnumerator(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbEnumerator.cs#L26C13-L26C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbEnumerator.cs#L26C13-L26C48" }, { "DocsId": "M:System.Data.OleDb.OleDbEnumerator.GetRootEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbEnumerator.cs#L74C13-L75C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbEnumerator.cs#L74C13-L75C52" } ], "DocsId": "T:System.Data.OleDb.OleDbEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbEnumerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbEnumerator.cs" }, { "Members": [ { "DocsId": "M:System.Data.OleDb.OleDbError.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbError.cs#L107C13-L107C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbError.cs#L107C13-L107C28" }, { "DocsId": "P:System.Data.OleDb.OleDbError.Message", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbError.cs#L77C17-L77C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbError.cs#L77C17-L77C53" }, { "DocsId": "P:System.Data.OleDb.OleDbError.NativeError", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbError.cs#L85C17-L85C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbError.cs#L85C17-L85C41" }, { "DocsId": "P:System.Data.OleDb.OleDbError.Source", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbError.cs#L93C17-L93C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbError.cs#L93C17-L93C52" }, { "DocsId": "P:System.Data.OleDb.OleDbError.SQLState", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbError.cs#L101C17-L101C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbError.cs#L101C17-L101C54" } ], "DocsId": "T:System.Data.OleDb.OleDbError", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbError.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbError.cs" }, { "Members": [ { "DocsId": "M:System.Data.OleDb.OleDbErrorCollection.System#Collections#ICollection#get_IsSynchronized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbErrorCollection.cs#L34C19-L34C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbErrorCollection.cs#L34C19-L34C32" }, { "DocsId": "M:System.Data.OleDb.OleDbErrorCollection.System#Collections#ICollection#get_SyncRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbErrorCollection.cs#L39C19-L39C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbErrorCollection.cs#L39C19-L39C31" }, { "DocsId": "M:System.Data.OleDb.OleDbErrorCollection.CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbErrorCollection.cs#L66C13-L67C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbErrorCollection.cs#L66C13-L67C10" }, { "DocsId": "M:System.Data.OleDb.OleDbErrorCollection.CopyTo(System.Data.OleDb.OleDbError[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbErrorCollection.cs#L71C13-L72C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbErrorCollection.cs#L71C13-L72C10" }, { "DocsId": "M:System.Data.OleDb.OleDbErrorCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbErrorCollection.cs#L76C13-L76C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbErrorCollection.cs#L76C13-L76C47" }, { "DocsId": "P:System.Data.OleDb.OleDbErrorCollection.System#Collections#ICollection#IsSynchronized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbErrorCollection.cs#L34C19-L34C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbErrorCollection.cs#L34C19-L34C32" }, { "DocsId": "P:System.Data.OleDb.OleDbErrorCollection.System#Collections#ICollection#SyncRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbErrorCollection.cs#L39C19-L39C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbErrorCollection.cs#L39C19-L39C31" }, { "DocsId": "P:System.Data.OleDb.OleDbErrorCollection.Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbErrorCollection.cs#L46C17-L47C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbErrorCollection.cs#L46C17-L47C60" }, { "DocsId": "P:System.Data.OleDb.OleDbErrorCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbErrorCollection.cs#L55C17-L55C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbErrorCollection.cs#L55C17-L55C59" } ], "DocsId": "T:System.Data.OleDb.OleDbErrorCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbErrorCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbErrorCollection.cs" }, { "Members": [ { "DocsId": "M:System.Data.OleDb.OleDbException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbException.cs#L44C13-L48C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbException.cs#L44C13-L48C10" }, { "DocsId": "P:System.Data.OleDb.OleDbException.ErrorCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbException.cs#L55C17-L55C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbException.cs#L55C17-L55C39" }, { "DocsId": "P:System.Data.OleDb.OleDbException.Errors", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbException.cs#L64C17-L64C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbException.cs#L64C17-L64C75" } ], "DocsId": "T:System.Data.OleDb.OleDbException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbException.cs" }, { "Members": [ { "DocsId": "M:System.Data.OleDb.OleDbFactory.CreateCommand", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbFactory.cs#L18C13-L18C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbFactory.cs#L18C13-L18C39" }, { "DocsId": "M:System.Data.OleDb.OleDbFactory.CreateCommandBuilder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbFactory.cs#L23C13-L23C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbFactory.cs#L23C13-L23C46" }, { "DocsId": "M:System.Data.OleDb.OleDbFactory.CreateConnection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbFactory.cs#L28C13-L28C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbFactory.cs#L28C13-L28C42" }, { "DocsId": "M:System.Data.OleDb.OleDbFactory.CreateConnectionStringBuilder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbFactory.cs#L33C13-L33C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbFactory.cs#L33C13-L33C55" }, { "DocsId": "M:System.Data.OleDb.OleDbFactory.CreateDataAdapter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbFactory.cs#L38C13-L38C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbFactory.cs#L38C13-L38C43" }, { "DocsId": "M:System.Data.OleDb.OleDbFactory.CreateParameter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbFactory.cs#L43C13-L43C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbFactory.cs#L43C13-L43C41" }, { "DocsId": "F:System.Data.OleDb.OleDbFactory.Instance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbFactory.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbFactory.cs" } ], "DocsId": "T:System.Data.OleDb.OleDbFactory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbFactory.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbFactory.cs" }, { "Members": [ { "DocsId": "M:System.Data.OleDb.OleDbInfoMessageEventArgs.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbInfoMessageEvent.cs#L52C13-L52C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbInfoMessageEvent.cs#L52C13-L52C28" }, { "DocsId": "P:System.Data.OleDb.OleDbInfoMessageEventArgs.ErrorCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbInfoMessageEvent.cs#L22C17-L22C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbInfoMessageEvent.cs#L22C17-L22C49" }, { "DocsId": "P:System.Data.OleDb.OleDbInfoMessageEventArgs.Errors", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbInfoMessageEvent.cs#L30C17-L30C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbInfoMessageEvent.cs#L30C17-L30C46" }, { "DocsId": "P:System.Data.OleDb.OleDbInfoMessageEventArgs.Message", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbInfoMessageEvent.cs#L38C17-L38C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbInfoMessageEvent.cs#L38C17-L38C47" }, { "DocsId": "P:System.Data.OleDb.OleDbInfoMessageEventArgs.Source", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbInfoMessageEvent.cs#L46C17-L46C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbInfoMessageEvent.cs#L46C17-L46C46" } ], "DocsId": "T:System.Data.OleDb.OleDbInfoMessageEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbInfoMessageEvent.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbInfoMessageEvent.cs" }, { "Members": [ { "DocsId": "M:System.Data.OleDb.OleDbInfoMessageEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbInfoMessageEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbInfoMessageEventHandler.cs" }, { "DocsId": "M:System.Data.OleDb.OleDbInfoMessageEventHandler.Invoke(System.Object,System.Data.OleDb.OleDbInfoMessageEventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbInfoMessageEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbInfoMessageEventHandler.cs" }, { "DocsId": "M:System.Data.OleDb.OleDbInfoMessageEventHandler.BeginInvoke(System.Object,System.Data.OleDb.OleDbInfoMessageEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbInfoMessageEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbInfoMessageEventHandler.cs" }, { "DocsId": "M:System.Data.OleDb.OleDbInfoMessageEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbInfoMessageEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbInfoMessageEventHandler.cs" } ], "DocsId": "T:System.Data.OleDb.OleDbInfoMessageEventHandler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbInfoMessageEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbInfoMessageEventHandler.cs" }, { "Members": [ { "DocsId": "F:System.Data.OleDb.OleDbLiteral.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbLiteral.Invalid", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbLiteral.Binary_Literal", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbLiteral.Catalog_Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbLiteral.Catalog_Separator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbLiteral.Char_Literal", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbLiteral.Column_Alias", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbLiteral.Column_Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbLiteral.Correlation_Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbLiteral.Cursor_Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbLiteral.Escape_Percent_Prefix", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbLiteral.Escape_Underscore_Prefix", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbLiteral.Index_Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbLiteral.Like_Percent", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbLiteral.Like_Underscore", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbLiteral.Procedure_Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbLiteral.Quote_Prefix", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbLiteral.Schema_Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbLiteral.Table_Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbLiteral.Text_Command", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbLiteral.User_Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbLiteral.View_Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbLiteral.Cube_Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbLiteral.Dimension_Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbLiteral.Hierarchy_Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbLiteral.Level_Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbLiteral.Member_Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbLiteral.Property_Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbLiteral.Schema_Separator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbLiteral.Quote_Suffix", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbLiteral.Escape_Percent_Suffix", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbLiteral.Escape_Underscore_Suffix", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" } ], "DocsId": "T:System.Data.OleDb.OleDbLiteral", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" }, { "Members": [ { "DocsId": "F:System.Data.OleDb.OleDbMetaDataCollectionNames.Catalogs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbMetadataCollectionNames.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbMetadataCollectionNames.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbMetaDataCollectionNames.Collations", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbMetadataCollectionNames.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbMetadataCollectionNames.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbMetaDataCollectionNames.Columns", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbMetadataCollectionNames.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbMetadataCollectionNames.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbMetaDataCollectionNames.Indexes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbMetadataCollectionNames.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbMetadataCollectionNames.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbMetaDataCollectionNames.Procedures", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbMetadataCollectionNames.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbMetadataCollectionNames.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbMetaDataCollectionNames.ProcedureColumns", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbMetadataCollectionNames.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbMetadataCollectionNames.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbMetaDataCollectionNames.ProcedureParameters", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbMetadataCollectionNames.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbMetadataCollectionNames.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbMetaDataCollectionNames.Tables", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbMetadataCollectionNames.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbMetadataCollectionNames.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbMetaDataCollectionNames.Views", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbMetadataCollectionNames.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbMetadataCollectionNames.cs" } ], "DocsId": "T:System.Data.OleDb.OleDbMetaDataCollectionNames", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbMetadataCollectionNames.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbMetadataCollectionNames.cs" }, { "Members": [ { "DocsId": "F:System.Data.OleDb.OleDbMetaDataColumnNames.BooleanFalseLiteral", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbMetadataColumnNames.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbMetadataColumnNames.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbMetaDataColumnNames.BooleanTrueLiteral", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbMetadataColumnNames.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbMetadataColumnNames.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbMetaDataColumnNames.NativeDataType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbMetadataColumnNames.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbMetadataColumnNames.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbMetaDataColumnNames.DateTimeDigits", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbMetadataColumnNames.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbMetadataColumnNames.cs" } ], "DocsId": "T:System.Data.OleDb.OleDbMetaDataColumnNames", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbMetadataColumnNames.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbMetadataColumnNames.cs" }, { "Members": [ { "DocsId": "M:System.Data.OleDb.OleDbParameterCollection.Add(System.Data.OleDb.OleDbParameter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameterCollection.cs#L63C13-L64C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameterCollection.cs#L63C13-L64C26" }, { "DocsId": "M:System.Data.OleDb.OleDbParameterCollection.Add(System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameterCollection.cs#L71C13-L71C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameterCollection.cs#L71C13-L71C66" }, { "DocsId": "M:System.Data.OleDb.OleDbParameterCollection.AddWithValue(System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameterCollection.cs#L76C13-L76C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameterCollection.cs#L76C13-L76C66" }, { "DocsId": "M:System.Data.OleDb.OleDbParameterCollection.Add(System.String,System.Data.OleDb.OleDbType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameterCollection.cs#L81C13-L81C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameterCollection.cs#L81C13-L81C70" }, { "DocsId": "M:System.Data.OleDb.OleDbParameterCollection.Add(System.String,System.Data.OleDb.OleDbType,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameterCollection.cs#L86C13-L86C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameterCollection.cs#L86C13-L86C76" }, { "DocsId": "M:System.Data.OleDb.OleDbParameterCollection.Add(System.String,System.Data.OleDb.OleDbType,System.Int32,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameterCollection.cs#L91C13-L91C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameterCollection.cs#L91C13-L91C90" }, { "DocsId": "M:System.Data.OleDb.OleDbParameterCollection.AddRange(System.Data.OleDb.OleDbParameter[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameterCollection.cs#L96C13-L97C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameterCollection.cs#L96C13-L97C10" }, { "DocsId": "M:System.Data.OleDb.OleDbParameterCollection.Contains(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameterCollection.cs#L101C13-L101C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameterCollection.cs#L101C13-L101C43" }, { "DocsId": "M:System.Data.OleDb.OleDbParameterCollection.Contains(System.Data.OleDb.OleDbParameter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameterCollection.cs#L106C13-L106C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameterCollection.cs#L106C13-L106C43" }, { "DocsId": "M:System.Data.OleDb.OleDbParameterCollection.CopyTo(System.Data.OleDb.OleDbParameter[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameterCollection.cs#L111C13-L112C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameterCollection.cs#L111C13-L112C10" }, { "DocsId": "M:System.Data.OleDb.OleDbParameterCollection.IndexOf(System.Data.OleDb.OleDbParameter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameterCollection.cs#L116C13-L116C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameterCollection.cs#L116C13-L116C43" }, { "DocsId": "M:System.Data.OleDb.OleDbParameterCollection.Insert(System.Int32,System.Data.OleDb.OleDbParameter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameterCollection.cs#L121C13-L122C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameterCollection.cs#L121C13-L122C10" }, { "DocsId": "M:System.Data.OleDb.OleDbParameterCollection.Remove(System.Data.OleDb.OleDbParameter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameterCollection.cs#L132C13-L133C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameterCollection.cs#L132C13-L133C10" }, { "DocsId": "M:System.Data.OleDb.OleDbParameterCollection.Add(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameterCollectionHelper.cs#L73C13-L77C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameterCollectionHelper.cs#L73C13-L77C30" }, { "DocsId": "M:System.Data.OleDb.OleDbParameterCollection.AddRange(System.Array)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameterCollectionHelper.cs#L82C13-L96C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameterCollectionHelper.cs#L82C13-L96C10" }, { "DocsId": "M:System.Data.OleDb.OleDbParameterCollection.Clear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameterCollectionHelper.cs#L110C13-L121C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameterCollectionHelper.cs#L110C13-L121C10" }, { "DocsId": "M:System.Data.OleDb.OleDbParameterCollection.Contains(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameterCollectionHelper.cs#L125C13-L125C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameterCollectionHelper.cs#L125C13-L125C43" }, { "DocsId": "M:System.Data.OleDb.OleDbParameterCollection.CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameterCollectionHelper.cs#L130C13-L131C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameterCollectionHelper.cs#L130C13-L131C10" }, { "DocsId": "M:System.Data.OleDb.OleDbParameterCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameterCollectionHelper.cs#L135C13-L135C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameterCollectionHelper.cs#L135C13-L135C80" }, { "DocsId": "M:System.Data.OleDb.OleDbParameterCollection.GetParameter(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameterCollectionHelper.cs#L140C13-L141C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameterCollectionHelper.cs#L140C13-L141C37" }, { "DocsId": "M:System.Data.OleDb.OleDbParameterCollection.GetParameter(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameterCollectionHelper.cs#L146C13-L151C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameterCollectionHelper.cs#L146C13-L151C37" }, { "DocsId": "M:System.Data.OleDb.OleDbParameterCollection.IndexOf(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameterCollectionHelper.cs#L184C13-L184C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameterCollectionHelper.cs#L184C13-L184C54" }, { "DocsId": "M:System.Data.OleDb.OleDbParameterCollection.IndexOf(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameterCollectionHelper.cs#L189C13-L208C23" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameterCollectionHelper.cs#L189C13-L208C23" }, { "DocsId": "M:System.Data.OleDb.OleDbParameterCollection.Insert(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameterCollectionHelper.cs#L213C13-L217C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameterCollectionHelper.cs#L213C13-L217C10" }, { "DocsId": "M:System.Data.OleDb.OleDbParameterCollection.Remove(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameterCollectionHelper.cs#L229C13-L240C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameterCollectionHelper.cs#L229C13-L240C10" }, { "DocsId": "M:System.Data.OleDb.OleDbParameterCollection.RemoveAt(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameterCollectionHelper.cs#L244C13-L247C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameterCollectionHelper.cs#L244C13-L247C10" }, { "DocsId": "M:System.Data.OleDb.OleDbParameterCollection.RemoveAt(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameterCollectionHelper.cs#L251C13-L254C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameterCollectionHelper.cs#L251C13-L254C10" }, { "DocsId": "M:System.Data.OleDb.OleDbParameterCollection.SetParameter(System.Int32,System.Data.Common.DbParameter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameterCollectionHelper.cs#L278C13-L281C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameterCollectionHelper.cs#L278C13-L281C10" }, { "DocsId": "M:System.Data.OleDb.OleDbParameterCollection.SetParameter(System.String,System.Data.Common.DbParameter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameterCollectionHelper.cs#L285C13-L292C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameterCollectionHelper.cs#L285C13-L292C10" }, { "DocsId": "P:System.Data.OleDb.OleDbParameterCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameterCollection.cs#L37C17-L37C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameterCollection.cs#L37C17-L37C60" }, { "DocsId": "P:System.Data.OleDb.OleDbParameterCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameterCollection.cs#L53C17-L53C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameterCollection.cs#L53C17-L53C68" }, { "DocsId": "P:System.Data.OleDb.OleDbParameterCollection.Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameterCollectionHelper.cs#L20C17-L20C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameterCollectionHelper.cs#L20C17-L20C62" }, { "DocsId": "P:System.Data.OleDb.OleDbParameterCollection.IsFixedSize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameterCollectionHelper.cs#L43C17-L43C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameterCollectionHelper.cs#L43C17-L43C74" }, { "DocsId": "P:System.Data.OleDb.OleDbParameterCollection.IsReadOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameterCollectionHelper.cs#L51C17-L51C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameterCollectionHelper.cs#L51C17-L51C73" }, { "DocsId": "P:System.Data.OleDb.OleDbParameterCollection.IsSynchronized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameterCollectionHelper.cs#L59C17-L59C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameterCollectionHelper.cs#L59C17-L59C83" }, { "DocsId": "P:System.Data.OleDb.OleDbParameterCollection.SyncRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameterCollectionHelper.cs#L67C17-L67C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameterCollectionHelper.cs#L67C17-L67C77" } ], "DocsId": "T:System.Data.OleDb.OleDbParameterCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameterCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameterCollection.cs" }, { "Members": [ { "DocsId": "M:System.Data.OleDb.OleDbRowUpdatedEventArgs.#ctor(System.Data.DataRow,System.Data.IDbCommand,System.Data.StatementType,System.Data.Common.DataTableMapping)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbRowUpdatedEvent.cs#L11C11-L13C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbRowUpdatedEvent.cs#L11C11-L13C10" }, { "DocsId": "P:System.Data.OleDb.OleDbRowUpdatedEventArgs.Command", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbRowUpdatedEvent.cs#L19C17-L19C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbRowUpdatedEvent.cs#L19C17-L19C52" } ], "DocsId": "T:System.Data.OleDb.OleDbRowUpdatedEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbRowUpdatedEvent.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbRowUpdatedEvent.cs" }, { "Members": [ { "DocsId": "M:System.Data.OleDb.OleDbRowUpdatedEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbRowUpdatedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbRowUpdatedEventHandler.cs" }, { "DocsId": "M:System.Data.OleDb.OleDbRowUpdatedEventHandler.Invoke(System.Object,System.Data.OleDb.OleDbRowUpdatedEventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbRowUpdatedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbRowUpdatedEventHandler.cs" }, { "DocsId": "M:System.Data.OleDb.OleDbRowUpdatedEventHandler.BeginInvoke(System.Object,System.Data.OleDb.OleDbRowUpdatedEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbRowUpdatedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbRowUpdatedEventHandler.cs" }, { "DocsId": "M:System.Data.OleDb.OleDbRowUpdatedEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbRowUpdatedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbRowUpdatedEventHandler.cs" } ], "DocsId": "T:System.Data.OleDb.OleDbRowUpdatedEventHandler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbRowUpdatedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbRowUpdatedEventHandler.cs" }, { "Members": [ { "DocsId": "M:System.Data.OleDb.OleDbRowUpdatingEventArgs.#ctor(System.Data.DataRow,System.Data.IDbCommand,System.Data.StatementType,System.Data.Common.DataTableMapping)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbRowUpdatingEvent.cs#L11C11-L13C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbRowUpdatingEvent.cs#L11C11-L13C10" }, { "DocsId": "P:System.Data.OleDb.OleDbRowUpdatingEventArgs.Command", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbRowUpdatingEvent.cs#L17C19-L17C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbRowUpdatingEvent.cs#L17C19-L17C57" }, { "DocsId": "P:System.Data.OleDb.OleDbRowUpdatingEventArgs.BaseCommand", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbRowUpdatingEvent.cs#L23C19-L23C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbRowUpdatingEvent.cs#L23C19-L23C43" } ], "DocsId": "T:System.Data.OleDb.OleDbRowUpdatingEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbRowUpdatingEvent.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbRowUpdatingEvent.cs" }, { "Members": [ { "DocsId": "M:System.Data.OleDb.OleDbRowUpdatingEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbRowUpdatingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbRowUpdatingEventHandler.cs" }, { "DocsId": "M:System.Data.OleDb.OleDbRowUpdatingEventHandler.Invoke(System.Object,System.Data.OleDb.OleDbRowUpdatingEventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbRowUpdatingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbRowUpdatingEventHandler.cs" }, { "DocsId": "M:System.Data.OleDb.OleDbRowUpdatingEventHandler.BeginInvoke(System.Object,System.Data.OleDb.OleDbRowUpdatingEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbRowUpdatingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbRowUpdatingEventHandler.cs" }, { "DocsId": "M:System.Data.OleDb.OleDbRowUpdatingEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbRowUpdatingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbRowUpdatingEventHandler.cs" } ], "DocsId": "T:System.Data.OleDb.OleDbRowUpdatingEventHandler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbRowUpdatingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbRowUpdatingEventHandler.cs" }, { "Members": [ { "DocsId": "M:System.Data.OleDb.OleDbSchemaGuid.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs#L12C9-L12C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs#L12C9-L12C37" }, { "DocsId": "F:System.Data.OleDb.OleDbSchemaGuid.Tables_Info", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbSchemaGuid.Trustee", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbSchemaGuid.Assertions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbSchemaGuid.Catalogs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbSchemaGuid.Character_Sets", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbSchemaGuid.Collations", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbSchemaGuid.Columns", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbSchemaGuid.Check_Constraints", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbSchemaGuid.Constraint_Column_Usage", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbSchemaGuid.Constraint_Table_Usage", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbSchemaGuid.Key_Column_Usage", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbSchemaGuid.Referential_Constraints", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbSchemaGuid.Table_Constraints", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbSchemaGuid.Column_Domain_Usage", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbSchemaGuid.Indexes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbSchemaGuid.Column_Privileges", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbSchemaGuid.Table_Privileges", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbSchemaGuid.Usage_Privileges", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbSchemaGuid.Procedures", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbSchemaGuid.Schemata", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbSchemaGuid.Sql_Languages", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbSchemaGuid.Statistics", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbSchemaGuid.Tables", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbSchemaGuid.Translations", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbSchemaGuid.Provider_Types", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbSchemaGuid.Views", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbSchemaGuid.View_Column_Usage", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbSchemaGuid.View_Table_Usage", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbSchemaGuid.Procedure_Parameters", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbSchemaGuid.Foreign_Keys", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbSchemaGuid.Primary_Keys", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbSchemaGuid.Procedure_Columns", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbSchemaGuid.Table_Statistics", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbSchemaGuid.Check_Constraints_By_Table", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbSchemaGuid.SchemaGuids", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbSchemaGuid.DbInfoKeywords", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbSchemaGuid.DbInfoLiterals", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" } ], "DocsId": "T:System.Data.OleDb.OleDbSchemaGuid", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" }, { "Members": [ { "DocsId": "M:System.Data.OleDb.OleDbTransaction.Begin(System.Data.IsolationLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbTransaction.cs#L177C13-L203C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbTransaction.cs#L177C13-L203C32" }, { "DocsId": "M:System.Data.OleDb.OleDbTransaction.Begin", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbTransaction.cs#L208C13-L208C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbTransaction.cs#L208C13-L208C56" }, { "DocsId": "M:System.Data.OleDb.OleDbTransaction.Commit", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbTransaction.cs#L225C13-L230C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbTransaction.cs#L225C13-L230C10" }, { "DocsId": "M:System.Data.OleDb.OleDbTransaction.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbTransaction.cs#L274C13-L280C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbTransaction.cs#L274C13-L280C10" }, { "DocsId": "M:System.Data.OleDb.OleDbTransaction.Rollback", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbTransaction.cs#L305C13-L311C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbTransaction.cs#L305C13-L311C10" }, { "DocsId": "P:System.Data.OleDb.OleDbTransaction.Connection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbTransaction.cs#L143C17-L143C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbTransaction.cs#L143C17-L143C42" }, { "DocsId": "P:System.Data.OleDb.OleDbTransaction.DbConnection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbTransaction.cs#L151C17-L151C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbTransaction.cs#L151C17-L151C35" }, { "DocsId": "P:System.Data.OleDb.OleDbTransaction.IsolationLevel", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbTransaction.cs#L159C17-L163C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbTransaction.cs#L159C17-L163C40" } ], "DocsId": "T:System.Data.OleDb.OleDbTransaction", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbTransaction.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbTransaction.cs" }, { "Members": [ { "DocsId": "F:System.Data.OleDb.OleDbType.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbType.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbType.BigInt", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbType.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbType.Binary", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbType.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbType.Boolean", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbType.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbType.BSTR", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbType.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbType.Char", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbType.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbType.Currency", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbType.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbType.Date", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbType.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbType.DBDate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbType.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbType.DBTime", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbType.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbType.DBTimeStamp", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbType.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbType.Decimal", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbType.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbType.Double", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbType.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbType.Empty", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbType.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbType.Error", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbType.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbType.Filetime", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbType.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbType.Guid", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbType.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbType.IDispatch", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbType.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbType.Integer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbType.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbType.IUnknown", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbType.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbType.LongVarBinary", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbType.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbType.LongVarChar", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbType.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbType.LongVarWChar", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbType.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbType.Numeric", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbType.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbType.PropVariant", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbType.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbType.Single", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbType.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbType.SmallInt", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbType.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbType.TinyInt", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbType.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbType.UnsignedBigInt", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbType.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbType.UnsignedInt", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbType.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbType.UnsignedSmallInt", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbType.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbType.UnsignedTinyInt", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbType.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbType.VarBinary", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbType.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbType.VarChar", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbType.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbType.Variant", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbType.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbType.VarNumeric", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbType.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbType.VarWChar", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbType.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbType.WChar", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbType.cs" } ], "DocsId": "T:System.Data.OleDb.OleDbType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbType.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/System.Diagnostics.EventLog.json b/xml/SourceLinkInformation/net-8.0/System.Diagnostics.EventLog.json index 32c4aad9b15..9e531518d7f 100644 --- a/xml/SourceLinkInformation/net-8.0/System.Diagnostics.EventLog.json +++ b/xml/SourceLinkInformation/net-8.0/System.Diagnostics.EventLog.json @@ -1,1795 +1,1794 @@ { "Assembly": "System.Diagnostics.EventLog", - "GUID": "D0C666AC4A3D4AC3BFF609E21DE5B8AFFFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "BBC5C3D5400A49A7963E610787192B90FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:System.Diagnostics.EntryWrittenEventArgs.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EntryWrittenEventArgs.cs#L8C9-L10C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EntryWrittenEventArgs.cs#L8C9-L10C10" }, { "DocsId": "M:System.Diagnostics.EntryWrittenEventArgs.#ctor(System.Diagnostics.EventLogEntry)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EntryWrittenEventArgs.cs#L12C9-L15C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EntryWrittenEventArgs.cs#L12C9-L15C10" }, { "DocsId": "P:System.Diagnostics.EntryWrittenEventArgs.Entry", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EntryWrittenEventArgs.cs#L17C38-L17C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EntryWrittenEventArgs.cs#L17C38-L17C42" } ], "DocsId": "T:System.Diagnostics.EntryWrittenEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EntryWrittenEventArgs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EntryWrittenEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.EntryWrittenEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EntryWrittenEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EntryWrittenEventHandler.cs" }, { "DocsId": "M:System.Diagnostics.EntryWrittenEventHandler.Invoke(System.Object,System.Diagnostics.EntryWrittenEventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EntryWrittenEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EntryWrittenEventHandler.cs" }, { "DocsId": "M:System.Diagnostics.EntryWrittenEventHandler.BeginInvoke(System.Object,System.Diagnostics.EntryWrittenEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EntryWrittenEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EntryWrittenEventHandler.cs" }, { "DocsId": "M:System.Diagnostics.EntryWrittenEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EntryWrittenEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EntryWrittenEventHandler.cs" } ], "DocsId": "T:System.Diagnostics.EntryWrittenEventHandler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EntryWrittenEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EntryWrittenEventHandler.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.EventInstance.#ctor(System.Int64,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventData.cs#L11C9-L18C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventData.cs#L11C9-L18C10" }, { "DocsId": "M:System.Diagnostics.EventInstance.#ctor(System.Int64,System.Int32,System.Diagnostics.EventLogEntryType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventData.cs#L20C94-L23C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventData.cs#L20C94-L23C10" }, { "DocsId": "P:System.Diagnostics.EventInstance.CategoryId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventData.cs#L27C20-L27C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventData.cs#L27C20-L27C35" }, { "DocsId": "P:System.Diagnostics.EventInstance.EntryType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventData.cs#L39C20-L39C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventData.cs#L39C20-L39C30" }, { "DocsId": "P:System.Diagnostics.EventInstance.InstanceId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventData.cs#L51C20-L51C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventData.cs#L51C20-L51C31" } ], "DocsId": "T:System.Diagnostics.EventInstance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventData.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventData.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.EventLog.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L33C29-L35C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L33C29-L35C10" }, { "DocsId": "M:System.Diagnostics.EventLog.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L37C43-L39C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L37C43-L39C10" }, { "DocsId": "M:System.Diagnostics.EventLog.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L41C63-L43C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L41C63-L43C10" }, { "DocsId": "M:System.Diagnostics.EventLog.#ctor(System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L45C9-L48C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L45C9-L48C10" }, { "DocsId": "M:System.Diagnostics.EventLog.BeginInit", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L222C13-L223C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L222C13-L223C10" }, { "DocsId": "M:System.Diagnostics.EventLog.Clear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L227C13-L228C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L227C13-L228C10" }, { "DocsId": "M:System.Diagnostics.EventLog.Close", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L232C13-L233C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L232C13-L233C10" }, { "DocsId": "M:System.Diagnostics.EventLog.CreateEventSource(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L237C13-L238C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L237C13-L238C10" }, { "DocsId": "M:System.Diagnostics.EventLog.CreateEventSource(System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L243C13-L244C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L243C13-L244C10" }, { "DocsId": "M:System.Diagnostics.EventLog.CreateEventSource(System.Diagnostics.EventSourceCreationData)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L248C13-L355C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L248C13-L355C10" }, { "DocsId": "M:System.Diagnostics.EventLog.Delete(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L359C13-L360C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L359C13-L360C10" }, { "DocsId": "M:System.Diagnostics.EventLog.Delete(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L364C13-L429C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L364C13-L429C10" }, { "DocsId": "M:System.Diagnostics.EventLog.DeleteEventSource(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L433C13-L434C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L433C13-L434C10" }, { "DocsId": "M:System.Diagnostics.EventLog.DeleteEventSource(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L438C13-L481C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L438C13-L481C10" }, { "DocsId": "M:System.Diagnostics.EventLog.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L485C13-L487C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L485C13-L487C10" }, { "DocsId": "M:System.Diagnostics.EventLog.EndInit", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L491C13-L492C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L491C13-L492C10" }, { "DocsId": "M:System.Diagnostics.EventLog.Exists(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L496C13-L496C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L496C13-L496C41" }, { "DocsId": "M:System.Diagnostics.EventLog.Exists(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L501C13-L524C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L501C13-L524C10" }, { "DocsId": "M:System.Diagnostics.EventLog.GetEventLogs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L618C13-L618C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L618C13-L618C38" }, { "DocsId": "M:System.Diagnostics.EventLog.GetEventLogs(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L623C13-L667C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L623C13-L667C35" }, { "DocsId": "M:System.Diagnostics.EventLog.SourceExists(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L719C13-L719C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L719C13-L719C46" }, { "DocsId": "M:System.Diagnostics.EventLog.SourceExists(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L724C13-L724C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L724C13-L724C61" }, { "DocsId": "M:System.Diagnostics.EventLog.LogNameFromSourceName(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L742C13-L742C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L742C13-L742C72" }, { "DocsId": "M:System.Diagnostics.EventLog.ModifyOverflowPolicy(System.Diagnostics.OverflowAction,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L763C13-L764C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L763C13-L764C10" }, { "DocsId": "M:System.Diagnostics.EventLog.RegisterDisplayName(System.String,System.Int64)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L768C13-L769C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L768C13-L769C10" }, { "DocsId": "M:System.Diagnostics.EventLog.WriteEntry(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L976C13-L977C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L976C13-L977C10" }, { "DocsId": "M:System.Diagnostics.EventLog.WriteEntry(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L981C13-L982C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L981C13-L982C10" }, { "DocsId": "M:System.Diagnostics.EventLog.WriteEntry(System.String,System.Diagnostics.EventLogEntryType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L986C13-L987C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L986C13-L987C10" }, { "DocsId": "M:System.Diagnostics.EventLog.WriteEntry(System.String,System.String,System.Diagnostics.EventLogEntryType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L991C13-L992C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L991C13-L992C10" }, { "DocsId": "M:System.Diagnostics.EventLog.WriteEntry(System.String,System.Diagnostics.EventLogEntryType,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L996C13-L997C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L996C13-L997C10" }, { "DocsId": "M:System.Diagnostics.EventLog.WriteEntry(System.String,System.String,System.Diagnostics.EventLogEntryType,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L1001C13-L1002C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L1001C13-L1002C10" }, { "DocsId": "M:System.Diagnostics.EventLog.WriteEntry(System.String,System.Diagnostics.EventLogEntryType,System.Int32,System.Int16)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L1006C13-L1007C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L1006C13-L1007C10" }, { "DocsId": "M:System.Diagnostics.EventLog.WriteEntry(System.String,System.String,System.Diagnostics.EventLogEntryType,System.Int32,System.Int16)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L1011C13-L1012C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L1011C13-L1012C10" }, { "DocsId": "M:System.Diagnostics.EventLog.WriteEntry(System.String,System.String,System.Diagnostics.EventLogEntryType,System.Int32,System.Int16,System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L1016C20-L1020C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L1016C20-L1020C10" }, { "DocsId": "M:System.Diagnostics.EventLog.WriteEntry(System.String,System.Diagnostics.EventLogEntryType,System.Int32,System.Int16,System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L1024C13-L1025C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L1024C13-L1025C10" }, { "DocsId": "M:System.Diagnostics.EventLog.WriteEvent(System.Diagnostics.EventInstance,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L1029C13-L1030C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L1029C13-L1030C10" }, { "DocsId": "M:System.Diagnostics.EventLog.WriteEvent(System.Diagnostics.EventInstance,System.Byte[],System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L1034C13-L1035C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L1034C13-L1035C10" }, { "DocsId": "M:System.Diagnostics.EventLog.WriteEvent(System.String,System.Diagnostics.EventInstance,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L1039C20-L1043C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L1039C20-L1043C10" }, { "DocsId": "M:System.Diagnostics.EventLog.WriteEvent(System.String,System.Diagnostics.EventInstance,System.Byte[],System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L1047C20-L1051C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L1047C20-L1051C10" }, { "DocsId": "E:System.Diagnostics.EventLog.EntryWritten", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L212C17-L213C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L212C17-L213C14" }, { "DocsId": "P:System.Diagnostics.EventLog.Entries", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L59C17-L59C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L59C17-L59C52" }, { "DocsId": "P:System.Diagnostics.EventLog.LogDisplayName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L68C17-L68C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L68C17-L68C59" }, { "DocsId": "P:System.Diagnostics.EventLog.Log", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L82C17-L82C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L82C17-L82C48" }, { "DocsId": "P:System.Diagnostics.EventLog.MachineName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L110C17-L110C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L110C17-L110C56" }, { "DocsId": "P:System.Diagnostics.EventLog.MaximumKilobytes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L132C20-L132C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L132C20-L132C56" }, { "DocsId": "P:System.Diagnostics.EventLog.OverflowAction", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L139C20-L139C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L139C20-L139C54" }, { "DocsId": "P:System.Diagnostics.EventLog.MinimumRetentionDays", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L145C20-L145C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L145C20-L145C60" }, { "DocsId": "P:System.Diagnostics.EventLog.EnableRaisingEvents", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L165C20-L165C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L165C20-L165C59" }, { "DocsId": "P:System.Diagnostics.EventLog.SynchronizingObject", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L176C20-L176C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L176C20-L176C59" }, { "DocsId": "P:System.Diagnostics.EventLog.Source", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L188C20-L188C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L188C20-L188C46" } ], "DocsId": "T:System.Diagnostics.EventLog", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.EventLogEntry.Equals(System.Diagnostics.EventLogEntry)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L303C13-L320C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L303C13-L320C25" }, { "DocsId": "M:System.Diagnostics.EventLogEntry.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L453C13-L453C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L453C13-L453C55" }, { "DocsId": "P:System.Diagnostics.EventLogEntry.MachineName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L42C17-L55C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L42C17-L55C39" }, { "DocsId": "P:System.Diagnostics.EventLogEntry.Data", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L66C17-L70C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L66C17-L70C29" }, { "DocsId": "P:System.Diagnostics.EventLogEntry.Index", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L81C17-L81C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L81C17-L81C80" }, { "DocsId": "P:System.Diagnostics.EventLogEntry.Category", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L92C17-L102C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L92C17-L102C33" }, { "DocsId": "P:System.Diagnostics.EventLogEntry.CategoryNumber", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L113C17-L113C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L113C17-L113C83" }, { "DocsId": "P:System.Diagnostics.EventLogEntry.EventID", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L125C17-L125C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L125C17-L125C88" }, { "DocsId": "P:System.Diagnostics.EventLogEntry.EntryType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L136C17-L136C98" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L136C17-L136C98" }, { "DocsId": "P:System.Diagnostics.EventLogEntry.Message", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L149C17-L175C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L149C17-L175C32" }, { "DocsId": "P:System.Diagnostics.EventLogEntry.Source", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L186C17-L197C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L186C17-L197C39" }, { "DocsId": "P:System.Diagnostics.EventLogEntry.ReplacementStrings", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L208C17-L227C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L208C17-L227C32" }, { "DocsId": "P:System.Diagnostics.EventLogEntry.InstanceId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L238C17-L238C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L238C17-L238C81" }, { "DocsId": "P:System.Diagnostics.EventLogEntry.TimeGenerated", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L249C17-L249C123" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L249C17-L249C123" }, { "DocsId": "P:System.Diagnostics.EventLogEntry.TimeWritten", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L260C17-L260C121" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L260C17-L260C121" }, { "DocsId": "P:System.Diagnostics.EventLogEntry.UserName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L271C17-L292C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L271C17-L292C37" } ], "DocsId": "T:System.Diagnostics.EventLogEntry", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.EventLogEntryCollection.CopyTo(System.Diagnostics.EventLogEntry[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryCollection.cs#L35C13-L36C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryCollection.cs#L35C13-L36C10" }, { "DocsId": "M:System.Diagnostics.EventLogEntryCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryCollection.cs#L40C13-L40C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryCollection.cs#L40C13-L40C48" }, { "DocsId": "M:System.Diagnostics.EventLogEntryCollection.System#Collections#ICollection#get_IsSynchronized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryCollection.cs#L52C17-L52C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryCollection.cs#L52C17-L52C30" }, { "DocsId": "M:System.Diagnostics.EventLogEntryCollection.System#Collections#ICollection#get_SyncRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryCollection.cs#L60C17-L60C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryCollection.cs#L60C17-L60C29" }, { "DocsId": "M:System.Diagnostics.EventLogEntryCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryCollection.cs#L66C13-L68C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryCollection.cs#L66C13-L68C10" }, { "DocsId": "P:System.Diagnostics.EventLogEntryCollection.Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryCollection.cs#L21C17-L21C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryCollection.cs#L21C17-L21C40" }, { "DocsId": "P:System.Diagnostics.EventLogEntryCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryCollection.cs#L29C17-L29C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryCollection.cs#L29C17-L29C47" }, { "DocsId": "P:System.Diagnostics.EventLogEntryCollection.System#Collections#ICollection#IsSynchronized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryCollection.cs#L52C17-L52C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryCollection.cs#L52C17-L52C30" }, { "DocsId": "P:System.Diagnostics.EventLogEntryCollection.System#Collections#ICollection#SyncRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryCollection.cs#L60C17-L60C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryCollection.cs#L60C17-L60C29" } ], "DocsId": "T:System.Diagnostics.EventLogEntryCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryCollection.cs" }, { "Members": [ { "DocsId": "F:System.Diagnostics.EventLogEntryType.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryType.cs" }, { "DocsId": "F:System.Diagnostics.EventLogEntryType.Error", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryType.cs" }, { "DocsId": "F:System.Diagnostics.EventLogEntryType.Warning", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryType.cs" }, { "DocsId": "F:System.Diagnostics.EventLogEntryType.Information", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryType.cs" }, { "DocsId": "F:System.Diagnostics.EventLogEntryType.SuccessAudit", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryType.cs" }, { "DocsId": "F:System.Diagnostics.EventLogEntryType.FailureAudit", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryType.cs" } ], "DocsId": "T:System.Diagnostics.EventLogEntryType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryType.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.EventSourceCreationData.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventSourceCreationData.cs#L23C47-L16C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventSourceCreationData.cs#L23C47-L16C10" }, { "DocsId": "P:System.Diagnostics.EventSourceCreationData.LogName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventSourceCreationData.cs#L23C33-L23C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventSourceCreationData.cs#L23C33-L23C37" }, { "DocsId": "P:System.Diagnostics.EventSourceCreationData.MachineName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventSourceCreationData.cs#L25C37-L25C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventSourceCreationData.cs#L25C37-L25C41" }, { "DocsId": "P:System.Diagnostics.EventSourceCreationData.Source", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventSourceCreationData.cs#L27C32-L27C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventSourceCreationData.cs#L27C32-L27C36" }, { "DocsId": "P:System.Diagnostics.EventSourceCreationData.MessageResourceFile", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventSourceCreationData.cs#L29C45-L29C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventSourceCreationData.cs#L29C45-L29C49" }, { "DocsId": "P:System.Diagnostics.EventSourceCreationData.ParameterResourceFile", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventSourceCreationData.cs#L31C47-L31C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventSourceCreationData.cs#L31C47-L31C51" }, { "DocsId": "P:System.Diagnostics.EventSourceCreationData.CategoryResourceFile", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventSourceCreationData.cs#L33C46-L33C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventSourceCreationData.cs#L33C46-L33C50" }, { "DocsId": "P:System.Diagnostics.EventSourceCreationData.CategoryCount", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventSourceCreationData.cs#L37C19-L37C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventSourceCreationData.cs#L37C19-L37C41" } ], "DocsId": "T:System.Diagnostics.EventSourceCreationData", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventSourceCreationData.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventSourceCreationData.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.EventLogTraceListener.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogTraceListener.cs#L14C9-L16C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogTraceListener.cs#L14C9-L16C10" }, { "DocsId": "M:System.Diagnostics.EventLogTraceListener.#ctor(System.Diagnostics.EventLog)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogTraceListener.cs#L19C15-L22C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogTraceListener.cs#L19C15-L22C10" }, { "DocsId": "M:System.Diagnostics.EventLogTraceListener.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogTraceListener.cs#L24C9-L30C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogTraceListener.cs#L24C9-L30C10" }, { "DocsId": "M:System.Diagnostics.EventLogTraceListener.Close", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogTraceListener.cs#L58C41-L58C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogTraceListener.cs#L58C41-L58C58" }, { "DocsId": "M:System.Diagnostics.EventLogTraceListener.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogTraceListener.cs#L64C17-L74C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogTraceListener.cs#L64C17-L74C10" }, { "DocsId": "M:System.Diagnostics.EventLogTraceListener.Write(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogTraceListener.cs#L76C55-L76C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogTraceListener.cs#L76C55-L76C84" }, { "DocsId": "M:System.Diagnostics.EventLogTraceListener.WriteLine(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogTraceListener.cs#L78C59-L78C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogTraceListener.cs#L78C59-L78C73" }, { "DocsId": "M:System.Diagnostics.EventLogTraceListener.TraceEvent(System.Diagnostics.TraceEventCache,System.String,System.Diagnostics.TraceEventType,System.Int32,System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogTraceListener.cs#L83C13-L107C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogTraceListener.cs#L83C13-L107C10" }, { "DocsId": "M:System.Diagnostics.EventLogTraceListener.TraceEvent(System.Diagnostics.TraceEventCache,System.String,System.Diagnostics.TraceEventType,System.Int32,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogTraceListener.cs#L112C13-L116C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogTraceListener.cs#L112C13-L116C10" }, { "DocsId": "M:System.Diagnostics.EventLogTraceListener.TraceData(System.Diagnostics.TraceEventCache,System.String,System.Diagnostics.TraceEventType,System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogTraceListener.cs#L121C13-L125C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogTraceListener.cs#L121C13-L125C10" }, { "DocsId": "M:System.Diagnostics.EventLogTraceListener.TraceData(System.Diagnostics.TraceEventCache,System.String,System.Diagnostics.TraceEventType,System.Int32,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogTraceListener.cs#L130C13-L149C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogTraceListener.cs#L130C13-L149C10" }, { "DocsId": "P:System.Diagnostics.EventLogTraceListener.EventLog", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogTraceListener.cs#L34C13-L34C17" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogTraceListener.cs#L34C13-L34C17" }, { "DocsId": "P:System.Diagnostics.EventLogTraceListener.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogTraceListener.cs#L42C17-L48C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogTraceListener.cs#L42C17-L48C34" } ], "DocsId": "T:System.Diagnostics.EventLogTraceListener", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogTraceListener.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogTraceListener.cs" }, { "Members": [ { "DocsId": "F:System.Diagnostics.OverflowAction.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/OverflowAction.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/OverflowAction.cs" }, { "DocsId": "F:System.Diagnostics.OverflowAction.DoNotOverwrite", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/OverflowAction.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/OverflowAction.cs" }, { "DocsId": "F:System.Diagnostics.OverflowAction.OverwriteAsNeeded", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/OverflowAction.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/OverflowAction.cs" }, { "DocsId": "F:System.Diagnostics.OverflowAction.OverwriteOlder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/OverflowAction.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/OverflowAction.cs" } ], "DocsId": "T:System.Diagnostics.OverflowAction", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/OverflowAction.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/OverflowAction.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventBookmark.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventBookmark.cs#L24C9-L29C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventBookmark.cs#L24C9-L29C10" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventBookmark.BookmarkXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventBookmark.cs#L34C37-L34C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventBookmark.cs#L34C37-L34C41" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.EventBookmark", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventBookmark.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventBookmark.cs" }, { "Members": [ { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventKeyword.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventKeyword.cs#L68C17-L69C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventKeyword.cs#L68C17-L69C30" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventKeyword.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventKeyword.cs#L73C29-L73C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventKeyword.cs#L73C29-L73C33" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventKeyword.DisplayName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventKeyword.cs#L79C17-L80C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventKeyword.cs#L79C17-L80C37" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.EventKeyword", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventKeyword.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventKeyword.cs" }, { "Members": [ { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLevel.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLevel.cs#L66C17-L67C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLevel.cs#L66C17-L67C30" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLevel.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLevel.cs#L71C28-L71C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLevel.cs#L71C28-L71C32" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLevel.DisplayName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLevel.cs#L77C17-L78C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLevel.cs#L77C17-L78C37" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.EventLevel", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLevel.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLevel.cs" }, { "Members": [ { "DocsId": "F:System.Diagnostics.Eventing.Reader.EventLogType.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.EventLogType.Administrative", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.EventLogType.Operational", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.EventLogType.Analytical", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.EventLogType.Debug", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.EventLogType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" }, { "Members": [ { "DocsId": "F:System.Diagnostics.Eventing.Reader.EventLogIsolation.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.EventLogIsolation.Application", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.EventLogIsolation.System", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.EventLogIsolation.Custom", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.EventLogIsolation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" }, { "Members": [ { "DocsId": "F:System.Diagnostics.Eventing.Reader.EventLogMode.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.EventLogMode.Circular", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.EventLogMode.AutoBackup", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.EventLogMode.Retain", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.EventLogMode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogConfiguration.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L50C56-L50C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L50C56-L50C79" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogConfiguration.#ctor(System.String,System.Diagnostics.Eventing.Reader.EventLogSession)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L46C9-L60C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L46C9-L60C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogConfiguration.SaveChanges", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L256C13-L257C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L256C13-L257C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogConfiguration.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L261C13-L263C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L261C13-L263C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogConfiguration.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L267C13-L269C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L267C13-L269C10" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogConfiguration.LogName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L62C33-L62C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L62C33-L62C37" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogConfiguration.LogType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L68C17-L68C166" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L68C17-L68C166" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogConfiguration.LogIsolation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L76C17-L76C176" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L76C17-L76C176" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogConfiguration.IsEnabled", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L84C17-L84C153" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L84C17-L84C153" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogConfiguration.IsClassicLog", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L96C17-L96C161" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L96C17-L96C161" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogConfiguration.SecurityDescriptor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L104C17-L104C154" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L104C17-L104C154" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogConfiguration.LogFilePath", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L116C17-L116C166" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L116C17-L116C166" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogConfiguration.MaximumSizeInBytes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L128C17-L128C169" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L128C17-L128C169" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogConfiguration.LogMode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L140C17-L152C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L140C17-L152C46" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogConfiguration.OwningProviderName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L178C17-L178C163" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L178C17-L178C163" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogConfiguration.ProviderNames", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L186C17-L186C157" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L186C17-L186C157" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogConfiguration.ProviderLevel", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L194C17-L194C170" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L194C17-L194C170" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogConfiguration.ProviderKeywords", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L206C17-L206C175" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L206C17-L206C175" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogConfiguration.ProviderBufferSize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L218C17-L218C175" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L218C17-L218C175" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogConfiguration.ProviderMinimumNumberOfBuffers", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L226C17-L226C175" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L226C17-L226C175" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogConfiguration.ProviderMaximumNumberOfBuffers", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L234C17-L234C175" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L234C17-L234C175" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogConfiguration.ProviderLatency", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L242C17-L242C172" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L242C17-L242C172" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogConfiguration.ProviderControlGuid", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L250C17-L250C170" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L250C17-L250C170" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.EventLogConfiguration", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogException.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L51C9-L51C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L51C9-L51C39" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L52C52-L52C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L52C52-L52C69" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L53C78-L53C111" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L53C78-L53C111" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogException.#ctor(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L54C9-L58C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L54C9-L58C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L76C15-L79C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L76C15-L79C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L87C13-L89C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L87C13-L89C10" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogException.Message", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L64C17-L65C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L64C17-L65C47" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.EventLogException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogNotFoundException.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L98C9-L98C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L98C9-L98C47" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogNotFoundException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L99C60-L99C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L99C60-L99C77" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogNotFoundException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L100C86-L100C119" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L100C86-L100C119" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogNotFoundException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L106C119-L106C164" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L106C119-L106C164" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.EventLogNotFoundException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogReadingException.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L117C9-L117C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L117C9-L117C46" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogReadingException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L118C59-L118C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L118C59-L118C76" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogReadingException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L119C85-L119C118" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L119C85-L119C118" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogReadingException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L125C118-L125C163" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L125C118-L125C163" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.EventLogReadingException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogProviderDisabledException.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L136C9-L136C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L136C9-L136C55" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogProviderDisabledException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L137C68-L137C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L137C68-L137C85" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogProviderDisabledException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L138C94-L138C127" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L138C94-L138C127" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogProviderDisabledException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L144C127-L144C172" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L144C127-L144C172" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.EventLogProviderDisabledException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogInvalidDataException.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L153C9-L153C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L153C9-L153C50" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogInvalidDataException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L154C63-L154C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L154C63-L154C80" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogInvalidDataException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L155C89-L155C122" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L155C89-L155C122" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogInvalidDataException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L161C122-L161C167" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L161C122-L161C167" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.EventLogInvalidDataException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs" }, { "Members": [ { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogInformation.CreationTime", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogInformation.cs#L31C41-L31C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogInformation.cs#L31C41-L31C45" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogInformation.LastAccessTime", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogInformation.cs#L32C43-L32C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogInformation.cs#L32C43-L32C47" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogInformation.LastWriteTime", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogInformation.cs#L33C42-L33C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogInformation.cs#L33C42-L33C46" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogInformation.FileSize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogInformation.cs#L34C33-L34C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogInformation.cs#L34C33-L34C37" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogInformation.Attributes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogInformation.cs#L35C34-L35C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogInformation.cs#L35C34-L35C38" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogInformation.RecordCount", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogInformation.cs#L36C36-L36C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogInformation.cs#L36C36-L36C40" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogInformation.OldestRecordNumber", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogInformation.cs#L37C43-L37C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogInformation.cs#L37C43-L37C47" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogInformation.IsLogFull", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogInformation.cs#L38C34-L38C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogInformation.cs#L38C34-L38C38" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.EventLogInformation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogInformation.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogInformation.cs" }, { "Members": [ { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogLink.LogName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogLink.cs#L77C17-L78C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogLink.cs#L77C17-L78C37" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogLink.IsImported", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogLink.cs#L86C17-L87C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogLink.cs#L86C17-L87C36" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogLink.DisplayName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogLink.cs#L95C17-L96C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogLink.cs#L95C17-L96C37" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.EventLogLink", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogLink.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogLink.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogPropertySelector.#ctor(System.Collections.Generic.IEnumerable{System.String})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogPropertySelector.cs#L16C9-L36C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogPropertySelector.cs#L16C9-L36C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogPropertySelector.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogPropertySelector.cs#L42C13-L44C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogPropertySelector.cs#L42C13-L44C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogPropertySelector.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogPropertySelector.cs#L48C13-L50C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogPropertySelector.cs#L48C13-L50C10" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.EventLogPropertySelector", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogPropertySelector.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogPropertySelector.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogQuery.#ctor(System.String,System.Diagnostics.Eventing.Reader.PathType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogQuery.cs#L16C15-L18C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogQuery.cs#L16C15-L18C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogQuery.#ctor(System.String,System.Diagnostics.Eventing.Reader.PathType,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogQuery.cs#L20C9-L35C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogQuery.cs#L20C9-L35C10" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogQuery.Session", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogQuery.cs#L37C42-L37C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogQuery.cs#L37C42-L37C46" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogQuery.TolerateQueryErrors", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogQuery.cs#L39C43-L39C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogQuery.cs#L39C43-L39C47" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogQuery.ReverseDirection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogQuery.cs#L41C40-L41C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogQuery.cs#L41C40-L41C44" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.EventLogQuery", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogQuery.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogQuery.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogReader.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogReader.cs#L51C15-L53C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogReader.cs#L51C15-L53C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogReader.#ctor(System.String,System.Diagnostics.Eventing.Reader.PathType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogReader.cs#L56C15-L58C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogReader.cs#L56C15-L58C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogReader.#ctor(System.Diagnostics.Eventing.Reader.EventLogQuery)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogReader.cs#L61C15-L63C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogReader.cs#L61C15-L63C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogReader.#ctor(System.Diagnostics.Eventing.Reader.EventLogQuery,System.Diagnostics.Eventing.Reader.EventBookmark)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogReader.cs#L65C9-L111C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogReader.cs#L65C9-L111C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogReader.ReadEvent", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogReader.cs#L154C13-L154C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogReader.cs#L154C13-L154C49" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogReader.ReadEvent(System.TimeSpan)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogReader.cs#L159C13-L176C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogReader.cs#L159C13-L176C34" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogReader.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogReader.cs#L181C13-L183C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogReader.cs#L181C13-L183C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogReader.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogReader.cs#L189C17-L195C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogReader.cs#L16707566C0-L195C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogReader.Seek(System.Diagnostics.Eventing.Reader.EventBookmark)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogReader.cs#L230C13-L231C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogReader.cs#L230C13-L231C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogReader.Seek(System.Diagnostics.Eventing.Reader.EventBookmark,System.Int64)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogReader.cs#L235C13-L242C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogReader.cs#L235C13-L242C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogReader.Seek(System.IO.SeekOrigin,System.Int64)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogReader.cs#L250C21-L291C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogReader.cs#L16707566C0-L291C28" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogReader.CancelReading", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogReader.cs#L297C13-L298C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogReader.cs#L297C13-L298C10" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogReader.BatchSize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogReader.cs#L117C17-L117C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogReader.cs#L117C17-L117C35" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogReader.LogStatus", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogReader.cs#L304C17-L321C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogReader.cs#L304C17-L321C42" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.EventLogReader", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogReader.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogReader.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogRecord.FormatDescription", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L270C13-L270C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L270C13-L270C95" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogRecord.FormatDescription(System.Collections.Generic.IEnumerable{System.Object})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L275C13-L296C106" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L275C13-L296C106" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogRecord.GetPropertyValues(System.Diagnostics.Eventing.Reader.EventLogPropertySelector)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L381C13-L383C106" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L381C13-L383C106" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogRecord.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L388C13-L389C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L388C13-L389C90" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogRecord.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L396C17-L403C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L396C17-L403C10" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogRecord.Id", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L70C17-L73C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L70C17-L73C50" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogRecord.Version", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L81C17-L82C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L81C17-L82C50" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogRecord.Qualifiers", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L90C17-L91C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L90C17-L91C66" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogRecord.Level", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L99C17-L100C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L99C17-L100C48" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogRecord.Task", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L108C17-L109C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L108C17-L109C60" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogRecord.Opcode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L117C17-L118C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L117C17-L118C66" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogRecord.Keywords", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L126C17-L127C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L126C17-L127C58" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogRecord.RecordId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L135C17-L136C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L135C17-L136C58" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogRecord.ProviderName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L144C17-L145C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L144C17-L145C55" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogRecord.ProviderId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L153C17-L154C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L153C17-L154C53" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogRecord.LogName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L162C17-L163C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L162C17-L163C54" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogRecord.ProcessId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L171C17-L172C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L171C17-L172C58" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogRecord.ThreadId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L180C17-L181C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L180C17-L181C57" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogRecord.MachineName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L189C17-L190C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L189C17-L190C55" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogRecord.UserId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L198C17-L199C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L198C17-L199C49" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogRecord.TimeCreated", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L207C17-L208C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L207C17-L208C54" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogRecord.ActivityId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L216C17-L217C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L216C17-L217C53" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogRecord.RelatedActivityId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L225C17-L226C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L225C17-L226C60" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogRecord.ContainerLog", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L234C17-L240C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L234C17-L240C14" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogRecord.MatchedQueryIds", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L247C17-L253C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L247C17-L253C14" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogRecord.Bookmark", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L260C17-L264C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L260C17-L264C56" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogRecord.LevelDisplayName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L303C17-L314C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L303C17-L314C14" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogRecord.OpcodeDisplayName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L321C17-L330C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L321C17-L330C14" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogRecord.TaskDisplayName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L337C17-L348C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L337C17-L348C14" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogRecord.KeywordsDisplayNames", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L355C17-L361C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L355C17-L361C14" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogRecord.Properties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L368C17-L375C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L368C17-L375C29" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.EventLogRecord", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs" }, { "Members": [ { "DocsId": "F:System.Diagnostics.Eventing.Reader.SessionAuthentication.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.SessionAuthentication.Default", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.SessionAuthentication.Negotiate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.SessionAuthentication.Kerberos", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.SessionAuthentication.Ntlm", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.SessionAuthentication", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs" }, { "Members": [ { "DocsId": "F:System.Diagnostics.Eventing.Reader.PathType.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.PathType.LogName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.PathType.FilePath", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.PathType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogSession.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L44C9-L87C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L44C9-L87C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogSession.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L91C13-L93C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L91C13-L93C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogSession.#ctor(System.String,System.String,System.String,System.Security.SecureString,System.Diagnostics.Eventing.Reader.SessionAuthentication)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L44C9-L124C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L44C9-L124C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogSession.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L130C13-L132C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L130C13-L132C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogSession.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L136C13-L152C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L136C13-L152C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogSession.CancelCurrentOperations", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L156C13-L157C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L156C13-L157C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogSession.GetProviderNames", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L167C13-L183C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L167C13-L183C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogSession.GetLogNames", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L187C13-L203C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L187C13-L203C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogSession.GetLogInformation(System.String,System.Diagnostics.Eventing.Reader.PathType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L207C13-L209C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L207C13-L209C69" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogSession.ExportLog(System.String,System.Diagnostics.Eventing.Reader.PathType,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L214C13-L215C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L214C13-L215C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogSession.ExportLog(System.String,System.Diagnostics.Eventing.Reader.PathType,System.String,System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L219C13-L232C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L219C13-L232C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogSession.ExportLogAndMessages(System.String,System.Diagnostics.Eventing.Reader.PathType,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L236C13-L237C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L236C13-L237C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogSession.ExportLogAndMessages(System.String,System.Diagnostics.Eventing.Reader.PathType,System.String,System.String,System.Boolean,System.Globalization.CultureInfo)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L241C13-L244C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L241C13-L244C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogSession.ClearLog(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L248C13-L249C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L248C13-L249C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogSession.ClearLog(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L253C13-L256C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L253C13-L256C10" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogSession.GlobalSession", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L162C19-L162C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L162C19-L162C42" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.EventLogSession", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs" }, { "Members": [ { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogStatus.LogName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogStatus.cs#L22C33-L22C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogStatus.cs#L22C33-L22C37" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogStatus.StatusCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogStatus.cs#L24C33-L24C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogStatus.cs#L24C33-L24C37" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.EventLogStatus", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogStatus.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogStatus.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogWatcher.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogWatcher.cs#L38C15-L40C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogWatcher.cs#L38C15-L40C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogWatcher.#ctor(System.Diagnostics.Eventing.Reader.EventLogQuery)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogWatcher.cs#L43C15-L45C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogWatcher.cs#L43C15-L45C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogWatcher.#ctor(System.Diagnostics.Eventing.Reader.EventLogQuery,System.Diagnostics.Eventing.Reader.EventBookmark)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogWatcher.cs#L48C15-L50C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogWatcher.cs#L48C15-L50C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogWatcher.#ctor(System.Diagnostics.Eventing.Reader.EventLogQuery,System.Diagnostics.Eventing.Reader.EventBookmark,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogWatcher.cs#L52C9-L73C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogWatcher.cs#L52C9-L73C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogWatcher.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogWatcher.cs#L283C13-L285C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogWatcher.cs#L283C13-L285C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogWatcher.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogWatcher.cs#L289C13-L306C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogWatcher.cs#L289C13-L306C10" }, { "DocsId": "E:System.Diagnostics.Eventing.Reader.EventLogWatcher.EventRecordWritten", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogWatcher.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogWatcher.cs" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogWatcher.Enabled", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogWatcher.cs#L79C17-L79C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogWatcher.cs#L79C17-L79C39" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.EventLogWatcher", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogWatcher.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogWatcher.cs" }, { "Members": [ { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventMetadata.Id", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventMetadata.cs#L46C26-L46C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventMetadata.cs#L46C26-L46C30" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventMetadata.Version", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventMetadata.cs#L48C31-L48C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventMetadata.cs#L48C31-L48C35" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventMetadata.LogLink", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventMetadata.cs#L54C17-L54C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventMetadata.cs#L54C17-L54C73" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventMetadata.Level", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventMetadata.cs#L62C17-L62C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventMetadata.cs#L62C17-L62C61" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventMetadata.Opcode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventMetadata.cs#L70C17-L70C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventMetadata.cs#L70C17-L70C63" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventMetadata.Task", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventMetadata.cs#L78C17-L78C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventMetadata.cs#L78C17-L78C59" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventMetadata.Keywords", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventMetadata.cs#L86C17-L106C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventMetadata.cs#L86C17-L106C29" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventMetadata.Template", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventMetadata.cs#L110C34-L110C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventMetadata.cs#L110C34-L110C38" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventMetadata.Description", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventMetadata.cs#L112C37-L112C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventMetadata.cs#L112C37-L112C41" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.EventMetadata", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventMetadata.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventMetadata.cs" }, { "Members": [ { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventOpcode.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventOpcode.cs#L68C17-L69C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventOpcode.cs#L68C17-L69C30" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventOpcode.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventOpcode.cs#L77C17-L77C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventOpcode.cs#L77C17-L77C31" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventOpcode.DisplayName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventOpcode.cs#L85C17-L86C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventOpcode.cs#L85C17-L86C37" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.EventOpcode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventOpcode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventOpcode.cs" }, { "Members": [ { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventProperty.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventProperty.cs#L13C31-L13C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventProperty.cs#L13C31-L13C35" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.EventProperty", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventProperty.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventProperty.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventRecord.FormatDescription", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventRecord.FormatDescription(System.Collections.Generic.IEnumerable{System.Object})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventRecord.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventRecord.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs#L56C13-L58C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs#L56C13-L58C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventRecord.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs#L59C58-L59C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs#L59C58-L59C59" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventRecord.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventRecord.Id", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventRecord.Version", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventRecord.Level", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventRecord.Task", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventRecord.Opcode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventRecord.Keywords", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventRecord.RecordId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventRecord.ProviderName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventRecord.ProviderId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventRecord.LogName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventRecord.ProcessId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventRecord.ThreadId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventRecord.MachineName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventRecord.UserId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventRecord.TimeCreated", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventRecord.ActivityId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventRecord.RelatedActivityId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventRecord.Qualifiers", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventRecord.LevelDisplayName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventRecord.OpcodeDisplayName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventRecord.TaskDisplayName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventRecord.KeywordsDisplayNames", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventRecord.Bookmark", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventRecord.Properties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.EventRecord", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" }, { "Members": [ { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventRecordWrittenEventArgs.EventRecord", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecordWrittenEventArgs.cs#L18C42-L18C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecordWrittenEventArgs.cs#L18C42-L18C46" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventRecordWrittenEventArgs.EventException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecordWrittenEventArgs.cs#L25C43-L25C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecordWrittenEventArgs.cs#L25C43-L25C47" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.EventRecordWrittenEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecordWrittenEventArgs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecordWrittenEventArgs.cs" }, { "Members": [ { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventTask.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventTask.cs#L70C17-L71C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventTask.cs#L70C17-L71C30" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventTask.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventTask.cs#L75C28-L75C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventTask.cs#L75C28-L75C32" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventTask.DisplayName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventTask.cs#L81C17-L82C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventTask.cs#L81C17-L82C37" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventTask.EventGuid", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventTask.cs#L90C17-L91C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventTask.cs#L90C17-L91C30" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.EventTask", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventTask.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventTask.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.Eventing.Reader.ProviderMetadata.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L47C15-L49C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L47C15-L49C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.ProviderMetadata.#ctor(System.String,System.Diagnostics.Eventing.Reader.EventLogSession,System.Globalization.CultureInfo)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L52C15-L54C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L52C15-L54C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.ProviderMetadata.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L537C13-L539C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L537C13-L539C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.ProviderMetadata.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L543C13-L545C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L543C13-L545C10" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.ProviderMetadata.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L81C19-L81C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L81C19-L81C40" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.ProviderMetadata.Id", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L88C17-L88C171" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L88C17-L88C171" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.ProviderMetadata.MessageFilePath", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L96C17-L96C175" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L96C17-L96C175" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.ProviderMetadata.ResourceFilePath", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L104C17-L104C176" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L104C17-L104C176" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.ProviderMetadata.ParameterFilePath", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L112C17-L112C177" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L112C17-L112C177" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.ProviderMetadata.HelpLink", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L120C17-L123C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L120C17-L123C45" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.ProviderMetadata.DisplayName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L139C17-L144C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L139C17-L144C71" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.ProviderMetadata.LogLinks", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L152C17-L227C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L152C17-L227C14" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.ProviderMetadata.Levels", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L419C17-L428C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L419C17-L428C14" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.ProviderMetadata.Opcodes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L436C17-L445C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L436C17-L445C14" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.ProviderMetadata.Keywords", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L453C17-L462C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L453C17-L462C14" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.ProviderMetadata.Tasks", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L470C17-L479C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L470C17-L479C14" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.ProviderMetadata.Events", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L486C17-L523C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L486C17-L523C14" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.ProviderMetadata", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs" }, { "Members": [ { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventLevel.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventLevel.LogAlways", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventLevel.Critical", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventLevel.Error", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventLevel.Warning", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventLevel.Informational", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventLevel.Verbose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.StandardEventLevel", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" }, { "Members": [ { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventTask.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventTask.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.StandardEventTask", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" }, { "Members": [ { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventOpcode.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventOpcode.Info", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventOpcode.Start", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventOpcode.Stop", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventOpcode.DataCollectionStart", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventOpcode.DataCollectionStop", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventOpcode.Extension", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventOpcode.Reply", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventOpcode.Resume", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventOpcode.Suspend", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventOpcode.Send", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventOpcode.Receive", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.StandardEventOpcode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" }, { "Members": [ { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventKeywords.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventKeywords.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventKeywords.ResponseTime", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventKeywords.WdiContext", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventKeywords.WdiDiagnostic", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventKeywords.Sqm", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventKeywords.AuditFailure", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventKeywords.AuditSuccess", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventKeywords.CorrelationHint", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventKeywords.CorrelationHint2", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventKeywords.EventLogClassic", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.StandardEventKeywords", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/System.Diagnostics.PerformanceCounter.json b/xml/SourceLinkInformation/net-8.0/System.Diagnostics.PerformanceCounter.json index 33187854540..35cd6862ca3 100644 --- a/xml/SourceLinkInformation/net-8.0/System.Diagnostics.PerformanceCounter.json +++ b/xml/SourceLinkInformation/net-8.0/System.Diagnostics.PerformanceCounter.json @@ -1,975 +1,974 @@ { "Assembly": "System.Diagnostics.PerformanceCounter", - "GUID": "B5E97E14ED7443879FCCCC857ABABCF5FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "7EEF76CE5CD3426F85EFACC3AF8E9E4BFFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:System.Diagnostics.CounterCreationData.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationData.cs#L13C9-L19C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationData.cs#L13C9-L19C10" }, { "DocsId": "M:System.Diagnostics.CounterCreationData.#ctor(System.String,System.String,System.Diagnostics.PerformanceCounterType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationData.cs#L13C9-L26C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationData.cs#L13C9-L26C10" }, { "DocsId": "P:System.Diagnostics.CounterCreationData.CounterType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationData.cs#L32C17-L32C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationData.cs#L32C17-L32C37" }, { "DocsId": "P:System.Diagnostics.CounterCreationData.CounterName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationData.cs#L47C17-L47C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationData.cs#L47C17-L47C37" }, { "DocsId": "P:System.Diagnostics.CounterCreationData.CounterHelp", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationData.cs#L60C17-L60C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationData.cs#L60C17-L60C37" } ], "DocsId": "T:System.Diagnostics.CounterCreationData", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationData.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationData.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.CounterCreationDataCollection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationDataCollection.cs#L11C9-L13C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationDataCollection.cs#L11C9-L13C10" }, { "DocsId": "M:System.Diagnostics.CounterCreationDataCollection.#ctor(System.Diagnostics.CounterCreationDataCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationDataCollection.cs#L15C9-L18C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationDataCollection.cs#L15C9-L18C10" }, { "DocsId": "M:System.Diagnostics.CounterCreationDataCollection.#ctor(System.Diagnostics.CounterCreationData[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationDataCollection.cs#L20C9-L23C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationDataCollection.cs#L20C9-L23C10" }, { "DocsId": "M:System.Diagnostics.CounterCreationDataCollection.Add(System.Diagnostics.CounterCreationData)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationDataCollection.cs#L39C13-L39C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationDataCollection.cs#L39C13-L39C36" }, { "DocsId": "M:System.Diagnostics.CounterCreationDataCollection.AddRange(System.Diagnostics.CounterCreationData[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationDataCollection.cs#L44C13-L50C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationDataCollection.cs#L44C13-L50C10" }, { "DocsId": "M:System.Diagnostics.CounterCreationDataCollection.AddRange(System.Diagnostics.CounterCreationDataCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationDataCollection.cs#L54C13-L61C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationDataCollection.cs#L54C13-L61C10" }, { "DocsId": "M:System.Diagnostics.CounterCreationDataCollection.Contains(System.Diagnostics.CounterCreationData)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationDataCollection.cs#L65C13-L65C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationDataCollection.cs#L65C13-L65C41" }, { "DocsId": "M:System.Diagnostics.CounterCreationDataCollection.CopyTo(System.Diagnostics.CounterCreationData[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationDataCollection.cs#L70C13-L71C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationDataCollection.cs#L70C13-L71C10" }, { "DocsId": "M:System.Diagnostics.CounterCreationDataCollection.IndexOf(System.Diagnostics.CounterCreationData)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationDataCollection.cs#L75C13-L75C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationDataCollection.cs#L75C13-L75C40" }, { "DocsId": "M:System.Diagnostics.CounterCreationDataCollection.Insert(System.Int32,System.Diagnostics.CounterCreationData)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationDataCollection.cs#L80C13-L81C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationDataCollection.cs#L80C13-L81C10" }, { "DocsId": "M:System.Diagnostics.CounterCreationDataCollection.Remove(System.Diagnostics.CounterCreationData)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationDataCollection.cs#L85C13-L86C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationDataCollection.cs#L85C13-L86C10" }, { "DocsId": "M:System.Diagnostics.CounterCreationDataCollection.OnValidate(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationDataCollection.cs#L90C13-L94C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationDataCollection.cs#L90C13-L94C10" }, { "DocsId": "P:System.Diagnostics.CounterCreationDataCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationDataCollection.cs#L29C17-L29C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationDataCollection.cs#L29C17-L29C61" } ], "DocsId": "T:System.Diagnostics.CounterCreationDataCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationDataCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationDataCollection.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.CounterSample.#ctor(System.Int64,System.Int64,System.Int64,System.Int64,System.Int64,System.Int64,System.Diagnostics.PerformanceCounterType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L24C13-L32C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L24C13-L32C10" }, { "DocsId": "M:System.Diagnostics.CounterSample.#ctor(System.Int64,System.Int64,System.Int64,System.Int64,System.Int64,System.Int64,System.Diagnostics.PerformanceCounterType,System.Int64)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L36C13-L44C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L36C13-L44C10" }, { "DocsId": "M:System.Diagnostics.CounterSample.Calculate(System.Diagnostics.CounterSample)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L147C13-L147C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L147C13-L147C79" }, { "DocsId": "M:System.Diagnostics.CounterSample.Calculate(System.Diagnostics.CounterSample,System.Diagnostics.CounterSample)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L155C13-L155C98" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L155C13-L155C98" }, { "DocsId": "M:System.Diagnostics.CounterSample.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L160C13-L160C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L160C13-L160C69" }, { "DocsId": "M:System.Diagnostics.CounterSample.Equals(System.Diagnostics.CounterSample)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L165C13-L172C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L165C13-L172C72" }, { "DocsId": "M:System.Diagnostics.CounterSample.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L177C13-L177C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L177C13-L177C44" }, { "DocsId": "M:System.Diagnostics.CounterSample.op_Equality(System.Diagnostics.CounterSample,System.Diagnostics.CounterSample)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L182C13-L182C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L182C13-L182C32" }, { "DocsId": "M:System.Diagnostics.CounterSample.op_Inequality(System.Diagnostics.CounterSample,System.Diagnostics.CounterSample)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L187C13-L187C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L187C13-L187C35" }, { "DocsId": "F:System.Diagnostics.CounterSample.Empty", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs" }, { "DocsId": "P:System.Diagnostics.CounterSample.RawValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L53C17-L53C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L53C17-L53C34" }, { "DocsId": "P:System.Diagnostics.CounterSample.BaseValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L72C17-L72C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L72C17-L72C35" }, { "DocsId": "P:System.Diagnostics.CounterSample.SystemFrequency", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L83C17-L83C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L83C17-L83C41" }, { "DocsId": "P:System.Diagnostics.CounterSample.CounterFrequency", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L94C17-L94C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L94C17-L94C42" }, { "DocsId": "P:System.Diagnostics.CounterSample.CounterTimeStamp", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L105C17-L105C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L105C17-L105C42" }, { "DocsId": "P:System.Diagnostics.CounterSample.TimeStamp", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L116C17-L116C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L116C17-L116C35" }, { "DocsId": "P:System.Diagnostics.CounterSample.TimeStamp100nSec", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L127C17-L127C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L127C17-L127C42" }, { "DocsId": "P:System.Diagnostics.CounterSample.CounterType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L138C17-L138C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L138C17-L138C37" } ], "DocsId": "T:System.Diagnostics.CounterSample", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.CounterSampleCalculator.ComputeCounterValue(System.Diagnostics.CounterSample)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSampleCalculator.cs#L53C13-L53C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSampleCalculator.cs#L53C13-L53C72" }, { "DocsId": "M:System.Diagnostics.CounterSampleCalculator.ComputeCounterValue(System.Diagnostics.CounterSample,System.Diagnostics.CounterSample)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSampleCalculator.cs#L61C13-L104C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSampleCalculator.cs#L61C13-L104C50" } ], "DocsId": "T:System.Diagnostics.CounterSampleCalculator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSampleCalculator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSampleCalculator.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.ICollectData.CollectData(System.Int32,System.IntPtr,System.IntPtr,System.Int32,System.IntPtr@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/ICollectData.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/ICollectData.cs" }, { "DocsId": "M:System.Diagnostics.ICollectData.CloseData", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/ICollectData.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/ICollectData.cs" } ], "DocsId": "T:System.Diagnostics.ICollectData", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/ICollectData.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/ICollectData.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.InstanceData.#ctor(System.String,System.Diagnostics.CounterSample)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceData.cs#L11C9-L15C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceData.cs#L11C9-L15C10" }, { "DocsId": "P:System.Diagnostics.InstanceData.InstanceName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceData.cs#L17C38-L17C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceData.cs#L17C38-L17C42" }, { "DocsId": "P:System.Diagnostics.InstanceData.Sample", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceData.cs#L19C39-L19C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceData.cs#L19C39-L19C43" }, { "DocsId": "P:System.Diagnostics.InstanceData.RawValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceData.cs#L25C17-L25C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceData.cs#L25C17-L25C40" } ], "DocsId": "T:System.Diagnostics.InstanceData", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceData.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceData.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.InstanceDataCollection.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceDataCollection.cs#L18C9-L23C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceDataCollection.cs#L18C9-L23C10" }, { "DocsId": "M:System.Diagnostics.InstanceDataCollection.Contains(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceDataCollection.cs#L63C13-L66C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceDataCollection.cs#L63C13-L66C52" }, { "DocsId": "M:System.Diagnostics.InstanceDataCollection.CopyTo(System.Diagnostics.InstanceData[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceDataCollection.cs#L71C13-L72C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceDataCollection.cs#L71C13-L72C10" }, { "DocsId": "P:System.Diagnostics.InstanceDataCollection.CounterName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceDataCollection.cs#L25C37-L25C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceDataCollection.cs#L25C37-L25C41" }, { "DocsId": "P:System.Diagnostics.InstanceDataCollection.Keys", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceDataCollection.cs#L29C19-L29C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceDataCollection.cs#L29C19-L29C42" }, { "DocsId": "P:System.Diagnostics.InstanceDataCollection.Values", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceDataCollection.cs#L36C17-L36C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceDataCollection.cs#L36C17-L36C42" }, { "DocsId": "P:System.Diagnostics.InstanceDataCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceDataCollection.cs#L44C17-L51C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceDataCollection.cs#L44C17-L51C61" } ], "DocsId": "T:System.Diagnostics.InstanceDataCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceDataCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceDataCollection.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.InstanceDataCollectionCollection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceDataCollectionCollection.cs#L19C53-L19C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceDataCollectionCollection.cs#L19C53-L19C63" }, { "DocsId": "M:System.Diagnostics.InstanceDataCollectionCollection.Contains(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceDataCollectionCollection.cs#L54C13-L57C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceDataCollectionCollection.cs#L54C13-L57C52" }, { "DocsId": "M:System.Diagnostics.InstanceDataCollectionCollection.CopyTo(System.Diagnostics.InstanceDataCollection[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceDataCollectionCollection.cs#L62C13-L63C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceDataCollectionCollection.cs#L62C13-L63C10" }, { "DocsId": "P:System.Diagnostics.InstanceDataCollectionCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceDataCollectionCollection.cs#L25C17-L29C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceDataCollectionCollection.cs#L25C17-L29C71" }, { "DocsId": "P:System.Diagnostics.InstanceDataCollectionCollection.Keys", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceDataCollectionCollection.cs#L35C19-L35C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceDataCollectionCollection.cs#L35C19-L35C42" }, { "DocsId": "P:System.Diagnostics.InstanceDataCollectionCollection.Values", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceDataCollectionCollection.cs#L42C17-L42C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceDataCollectionCollection.cs#L42C17-L42C42" } ], "DocsId": "T:System.Diagnostics.InstanceDataCollectionCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceDataCollectionCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceDataCollectionCollection.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.PerformanceCounter.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L30C9-L66C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L30C9-L66C10" }, { "DocsId": "M:System.Diagnostics.PerformanceCounter.#ctor(System.String,System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L72C15-L74C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L72C15-L74C10" }, { "DocsId": "M:System.Diagnostics.PerformanceCounter.#ctor(System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L95C9-L97C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L95C9-L97C10" }, { "DocsId": "M:System.Diagnostics.PerformanceCounter.#ctor(System.String,System.String,System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L30C9-L115C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L30C9-L115C10" }, { "DocsId": "M:System.Diagnostics.PerformanceCounter.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L121C9-L123C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L121C9-L123C10" }, { "DocsId": "M:System.Diagnostics.PerformanceCounter.#ctor(System.String,System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L129C9-L131C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L129C9-L131C10" }, { "DocsId": "M:System.Diagnostics.PerformanceCounter.BeginInit", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L343C13-L344C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L343C13-L344C10" }, { "DocsId": "M:System.Diagnostics.PerformanceCounter.Close", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L351C13-L356C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L351C13-L356C10" }, { "DocsId": "M:System.Diagnostics.PerformanceCounter.CloseSharedResources", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L365C13-L366C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L365C13-L366C10" }, { "DocsId": "M:System.Diagnostics.PerformanceCounter.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L374C13-L381C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L374C13-L381C10" }, { "DocsId": "M:System.Diagnostics.PerformanceCounter.Decrement", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L388C13-L393C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L388C13-L393C47" }, { "DocsId": "M:System.Diagnostics.PerformanceCounter.EndInit", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L400C13-L401C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L400C13-L401C10" }, { "DocsId": "M:System.Diagnostics.PerformanceCounter.IncrementBy(System.Int64)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L411C13-L416C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L411C13-L416C54" }, { "DocsId": "M:System.Diagnostics.PerformanceCounter.Increment", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L424C13-L429C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L424C13-L429C47" }, { "DocsId": "M:System.Diagnostics.PerformanceCounter.NextSample", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L539C13-L564C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L539C13-L564C10" }, { "DocsId": "M:System.Diagnostics.PerformanceCounter.NextValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L574C13-L579C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L574C13-L579C27" }, { "DocsId": "M:System.Diagnostics.PerformanceCounter.RemoveInstance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L587C13-L592C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L587C13-L592C10" }, { "DocsId": "F:System.Diagnostics.PerformanceCounter.DefaultFileMappingSize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs" }, { "DocsId": "P:System.Diagnostics.PerformanceCounter.CategoryName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L140C17-L140C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L140C17-L140C38" }, { "DocsId": "P:System.Diagnostics.PerformanceCounter.CounterHelp", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L162C17-L169C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L162C17-L169C33" }, { "DocsId": "P:System.Diagnostics.PerformanceCounter.CounterName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L180C17-L180C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L180C17-L180C37" }, { "DocsId": "P:System.Diagnostics.PerformanceCounter.CounterType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L202C17-L217C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L202C17-L217C61" }, { "DocsId": "P:System.Diagnostics.PerformanceCounter.InstanceLifetime", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L223C19-L223C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L223C19-L223C44" }, { "DocsId": "P:System.Diagnostics.PerformanceCounter.InstanceName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L243C17-L243C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L243C17-L243C38" }, { "DocsId": "P:System.Diagnostics.PerformanceCounter.ReadOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L267C17-L267C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L267C17-L267C36" }, { "DocsId": "P:System.Diagnostics.PerformanceCounter.MachineName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L291C17-L291C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L291C17-L291C37" }, { "DocsId": "P:System.Diagnostics.PerformanceCounter.RawValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L316C17-L325C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L316C17-L325C49" } ], "DocsId": "T:System.Diagnostics.PerformanceCounter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.PerformanceCounterCategory.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L26C9-L29C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L26C9-L29C10" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterCategory.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L36C15-L38C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L36C15-L38C10" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterCategory.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L44C9-L56C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L44C9-L56C10" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterCategory.CounterExists(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L153C13-L158C98" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L153C13-L158C98" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterCategory.CounterExists(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L166C13-L166C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L166C13-L166C66" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterCategory.CounterExists(System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L174C13-L183C96" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L174C13-L183C96" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterCategory.Create(System.String,System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L192C13-L193C172" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L192C13-L193C172" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterCategory.Create(System.String,System.String,System.Diagnostics.PerformanceCounterCategoryType,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L201C13-L202C146" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L201C13-L202C146" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterCategory.Create(System.String,System.String,System.Diagnostics.CounterCreationDataCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L211C13-L211C108" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L211C13-L211C108" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterCategory.Create(System.String,System.String,System.Diagnostics.PerformanceCounterCategoryType,System.Diagnostics.CounterCreationDataCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L216C13-L248C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L216C13-L248C10" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterCategory.Delete(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L378C13-L403C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L378C13-L403C10" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterCategory.Exists(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L410C13-L410C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L410C13-L410C46" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterCategory.Exists(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L418C13-L429C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L418C13-L429C84" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterCategory.GetCounters", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L457C13-L459C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L457C13-L459C36" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterCategory.GetCounters(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L467C13-L480C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L467C13-L480C29" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterCategory.GetCategories", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L489C13-L489C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L489C13-L489C39" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterCategory.GetCategories(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L497C13-L505C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L497C13-L505C31" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterCategory.GetInstanceNames", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L513C13-L516C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L513C13-L516C69" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterCategory.InstanceExists(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L524C13-L533C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L524C13-L533C10" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterCategory.InstanceExists(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L540C13-L540C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L540C13-L540C68" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterCategory.InstanceExists(System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L548C13-L558C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L548C13-L558C58" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterCategory.ReadCategory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L567C13-L574C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L567C13-L574C10" }, { "DocsId": "P:System.Diagnostics.PerformanceCounterCategory.CategoryName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L65C17-L65C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L65C17-L65C38" }, { "DocsId": "P:System.Diagnostics.PerformanceCounterCategory.CategoryHelp", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L92C17-L97C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L92C17-L97C38" }, { "DocsId": "P:System.Diagnostics.PerformanceCounterCategory.CategoryType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L105C24-L121C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L105C24-L121C14" }, { "DocsId": "P:System.Diagnostics.PerformanceCounterCategory.MachineName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L132C17-L132C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L132C17-L132C37" } ], "DocsId": "T:System.Diagnostics.PerformanceCounterCategory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs" }, { "Members": [ { "DocsId": "F:System.Diagnostics.PerformanceCounterCategoryType.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategoryType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategoryType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterCategoryType.Unknown", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategoryType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategoryType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterCategoryType.SingleInstance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategoryType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategoryType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterCategoryType.MultiInstance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategoryType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategoryType.cs" } ], "DocsId": "T:System.Diagnostics.PerformanceCounterCategoryType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategoryType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategoryType.cs" }, { "Members": [ { "DocsId": "F:System.Diagnostics.PerformanceCounterInstanceLifetime.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterInstanceLifetime.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterInstanceLifetime.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterInstanceLifetime.Global", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterInstanceLifetime.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterInstanceLifetime.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterInstanceLifetime.Process", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterInstanceLifetime.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterInstanceLifetime.cs" } ], "DocsId": "T:System.Diagnostics.PerformanceCounterInstanceLifetime", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterInstanceLifetime.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterInstanceLifetime.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.PerformanceCounterManager.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterManager.cs#L11C9-L13C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterManager.cs#L11C9-L13C10" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterManager.System#Diagnostics#ICollectData#CollectData(System.Int32,System.IntPtr,System.IntPtr,System.Int32,System.IntPtr@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterManager.cs#L18C13-L19C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterManager.cs#L18C13-L19C10" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterManager.System#Diagnostics#ICollectData#CloseData", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterManager.cs#L24C9-L24C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterManager.cs#L24C9-L24C10" } ], "DocsId": "T:System.Diagnostics.PerformanceCounterManager", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterManager.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterManager.cs" }, { "Members": [ { "DocsId": "F:System.Diagnostics.PerformanceCounterType.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterType.NumberOfItems32", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterType.NumberOfItems64", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterType.NumberOfItemsHEX32", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterType.NumberOfItemsHEX64", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterType.RateOfCountsPerSecond32", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterType.RateOfCountsPerSecond64", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterType.CountPerTimeInterval32", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterType.CountPerTimeInterval64", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterType.RawFraction", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterType.RawBase", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterType.AverageTimer32", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterType.AverageBase", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterType.AverageCount64", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterType.SampleFraction", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterType.SampleCounter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterType.SampleBase", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterType.CounterTimer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterType.CounterTimerInverse", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterType.Timer100Ns", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterType.Timer100NsInverse", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterType.ElapsedTime", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterType.CounterMultiTimer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterType.CounterMultiTimerInverse", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterType.CounterMultiTimer100Ns", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterType.CounterMultiTimer100NsInverse", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterType.CounterMultiBase", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterType.CounterDelta32", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterType.CounterDelta64", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" } ], "DocsId": "T:System.Diagnostics.PerformanceCounterType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.PerformanceData.CounterSet.#ctor(System.Guid,System.Guid,System.Diagnostics.PerformanceData.CounterSetInstanceType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSet.cs#L34C9-L49C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSet.cs#L34C9-L49C10" }, { "DocsId": "M:System.Diagnostics.PerformanceData.CounterSet.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSet.cs#L53C13-L55C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSet.cs#L53C13-L55C10" }, { "DocsId": "M:System.Diagnostics.PerformanceData.CounterSet.Finalize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSet.cs#L59C13-L60C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSet.cs#L59C13-L60C10" }, { "DocsId": "M:System.Diagnostics.PerformanceData.CounterSet.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSet.cs#L64C13-L84C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSet.cs#L64C13-L84C10" }, { "DocsId": "M:System.Diagnostics.PerformanceData.CounterSet.AddCounter(System.Int32,System.Diagnostics.PerformanceData.CounterType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSet.cs#L93C13-L119C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSet.cs#L93C13-L119C10" }, { "DocsId": "M:System.Diagnostics.PerformanceData.CounterSet.AddCounter(System.Int32,System.Diagnostics.PerformanceData.CounterType,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSet.cs#L129C13-L166C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSet.cs#L129C13-L166C10" }, { "DocsId": "M:System.Diagnostics.PerformanceData.CounterSet.CreateCounterSetInstance(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSet.cs#L175C13-L269C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSet.cs#L175C13-L269C29" } ], "DocsId": "T:System.Diagnostics.PerformanceData.CounterSet", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSet.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSet.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.PerformanceData.CounterSetInstance.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstance.cs#L77C13-L79C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstance.cs#L77C13-L79C10" }, { "DocsId": "M:System.Diagnostics.PerformanceData.CounterSetInstance.Finalize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstance.cs#L83C13-L84C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstance.cs#L83C13-L84C10" }, { "DocsId": "P:System.Diagnostics.PerformanceData.CounterSetInstance.Counters", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstance.cs#L116C60-L116C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstance.cs#L116C60-L116C64" } ], "DocsId": "T:System.Diagnostics.PerformanceData.CounterSetInstance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstance.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstance.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.PerformanceData.CounterData.Increment", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceCounterDataSet.cs#L54C17-L56C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceCounterDataSet.cs#L54C17-L56C10" }, { "DocsId": "M:System.Diagnostics.PerformanceData.CounterData.Decrement", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceCounterDataSet.cs#L62C17-L64C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceCounterDataSet.cs#L62C17-L64C10" }, { "DocsId": "M:System.Diagnostics.PerformanceData.CounterData.IncrementBy(System.Int64)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceCounterDataSet.cs#L70C17-L72C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceCounterDataSet.cs#L70C17-L72C10" }, { "DocsId": "P:System.Diagnostics.PerformanceData.CounterData.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceCounterDataSet.cs#L38C21-L38C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceCounterDataSet.cs#L38C21-L38C61" }, { "DocsId": "P:System.Diagnostics.PerformanceData.CounterData.RawValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceCounterDataSet.cs#L85C21-L85C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceCounterDataSet.cs#L85C21-L85C39" } ], "DocsId": "T:System.Diagnostics.PerformanceData.CounterData", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceCounterDataSet.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceCounterDataSet.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.PerformanceData.CounterSetInstanceCounterDataSet.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceCounterDataSet.cs#L165C13-L167C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceCounterDataSet.cs#L165C13-L167C10" }, { "DocsId": "M:System.Diagnostics.PerformanceData.CounterSetInstanceCounterDataSet.Finalize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceCounterDataSet.cs#L171C13-L172C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceCounterDataSet.cs#L171C13-L172C10" }, { "DocsId": "P:System.Diagnostics.PerformanceData.CounterSetInstanceCounterDataSet.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceCounterDataSet.cs#L199C17-L216C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceCounterDataSet.cs#L199C17-L216C14" }, { "DocsId": "P:System.Diagnostics.PerformanceData.CounterSetInstanceCounterDataSet.Item(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceCounterDataSet.cs#L228C17-L267C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceCounterDataSet.cs#L228C17-L267C14" } ], "DocsId": "T:System.Diagnostics.PerformanceData.CounterSetInstanceCounterDataSet", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceCounterDataSet.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceCounterDataSet.cs" }, { "Members": [ { "DocsId": "F:System.Diagnostics.PerformanceData.CounterSetInstanceType.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterSetInstanceType.Single", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterSetInstanceType.Multiple", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterSetInstanceType.GlobalAggregate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterSetInstanceType.GlobalAggregateWithHistory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterSetInstanceType.MultipleAggregate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterSetInstanceType.InstanceAggregate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceType.cs" } ], "DocsId": "T:System.Diagnostics.PerformanceData.CounterSetInstanceType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceType.cs" }, { "Members": [ { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.QueueLength", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.LargeQueueLength", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.QueueLength100Ns", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.QueueLengthObjectTime", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.RawData32", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.RawData64", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.RawDataHex32", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.RawDataHex64", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.RateOfCountPerSecond32", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.RateOfCountPerSecond64", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.RawFraction32", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.RawFraction64", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.RawBase32", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.RawBase64", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.SampleFraction", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.SampleCounter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.SampleBase", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.AverageTimer32", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.AverageBase", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.AverageCount64", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.PercentageActive", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.PercentageNotActive", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.PercentageActive100Ns", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.PercentageNotActive100Ns", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.ElapsedTime", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.MultiTimerPercentageActive", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.MultiTimerPercentageNotActive", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.MultiTimerPercentageActive100Ns", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.MultiTimerPercentageNotActive100Ns", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.MultiTimerBase", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.Delta32", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.Delta64", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.ObjectSpecificTimer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.PrecisionSystemTimer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.PrecisionTimer100Ns", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.PrecisionObjectSpecificTimer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" } ], "DocsId": "T:System.Diagnostics.PerformanceData.CounterType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/System.DirectoryServices.AccountManagement.json b/xml/SourceLinkInformation/net-8.0/System.DirectoryServices.AccountManagement.json index b914851d902..ba1f92131fc 100644 --- a/xml/SourceLinkInformation/net-8.0/System.DirectoryServices.AccountManagement.json +++ b/xml/SourceLinkInformation/net-8.0/System.DirectoryServices.AccountManagement.json @@ -1,1295 +1,1294 @@ { "Assembly": "System.DirectoryServices.AccountManagement", - "GUID": "E1911613636D4322AEF63A73B56B04A2FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "0DD7A51FCB4A4248BE4B196793426A56FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalSearcher.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalSearcher.cs#L17C9-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalSearcher.cs#L17C9-L20C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalSearcher.#ctor(System.DirectoryServices.AccountManagement.Principal)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalSearcher.cs#L22C9-L31C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalSearcher.cs#L22C9-L31C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalSearcher.FindAll", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalSearcher.cs#L81C13-L83C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalSearcher.cs#L81C13-L83C35" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalSearcher.FindOne", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalSearcher.cs#L92C13-L110C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalSearcher.cs#L92C13-L110C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalSearcher.GetUnderlyingSearcher", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalSearcher.cs#L126C13-L153C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalSearcher.cs#L126C13-L153C40" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalSearcher.GetUnderlyingSearcherType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalSearcher.cs#L160C13-L173C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalSearcher.cs#L160C13-L173C50" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalSearcher.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalSearcher.cs#L178C13-L195C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalSearcher.cs#L178C13-L195C10" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.PrincipalSearcher.Context", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalSearcher.cs#L40C17-L42C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalSearcher.cs#L40C17-L42C29" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.PrincipalSearcher.QueryFilter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalSearcher.cs#L50C17-L52C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalSearcher.cs#L50C17-L52C35" } ], "DocsId": "T:System.DirectoryServices.AccountManagement.PrincipalSearcher", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalSearcher.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalSearcher.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalContext.#ctor(System.DirectoryServices.AccountManagement.ContextType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Context.cs#L358C13-L359C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Context.cs#L358C13-L359C12" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalContext.#ctor(System.DirectoryServices.AccountManagement.ContextType,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Context.cs#L362C13-L363C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Context.cs#L362C13-L363C12" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalContext.#ctor(System.DirectoryServices.AccountManagement.ContextType,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Context.cs#L366C13-L367C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Context.cs#L366C13-L367C12" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalContext.#ctor(System.DirectoryServices.AccountManagement.ContextType,System.String,System.String,System.DirectoryServices.AccountManagement.ContextOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Context.cs#L370C13-L371C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Context.cs#L370C13-L371C12" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalContext.#ctor(System.DirectoryServices.AccountManagement.ContextType,System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Context.cs#L374C13-L375C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Context.cs#L374C13-L375C12" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalContext.#ctor(System.DirectoryServices.AccountManagement.ContextType,System.String,System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Context.cs#L378C13-L379C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Context.cs#L378C13-L379C12" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalContext.#ctor(System.DirectoryServices.AccountManagement.ContextType,System.String,System.String,System.DirectoryServices.AccountManagement.ContextOptions,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Context.cs#L1011C9-L433C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Context.cs#L1011C9-L433C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalContext.ValidateCredentials(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Context.cs#L514C13-L527C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Context.cs#L514C13-L527C65" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalContext.ValidateCredentials(System.String,System.String,System.DirectoryServices.AccountManagement.ContextOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Context.cs#L537C13-L553C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Context.cs#L537C13-L553C74" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalContext.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Context.cs#L984C13-L1003C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Context.cs#L984C13-L1003C10" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.PrincipalContext.ContextType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Context.cs#L443C17-L445C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Context.cs#L443C17-L445C37" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.PrincipalContext.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Context.cs#L453C17-L455C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Context.cs#L453C17-L455C30" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.PrincipalContext.Container", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Context.cs#L463C17-L465C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Context.cs#L463C17-L465C35" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.PrincipalContext.UserName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Context.cs#L473C17-L475C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Context.cs#L473C17-L475C34" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.PrincipalContext.Options", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Context.cs#L483C17-L485C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Context.cs#L483C17-L485C33" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.PrincipalContext.ConnectedServer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Context.cs#L493C17-L503C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Context.cs#L493C17-L503C41" } ], "DocsId": "T:System.DirectoryServices.AccountManagement.PrincipalContext", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Context.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Context.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.AccountManagement.Principal.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L23C13-L23C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L23C13-L23C25" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.Principal.FindByIdentity(System.DirectoryServices.AccountManagement.PrincipalContext,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L284C13-L284C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L284C13-L284C86" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.Principal.FindByIdentity(System.DirectoryServices.AccountManagement.PrincipalContext,System.DirectoryServices.AccountManagement.IdentityType,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L289C13-L289C100" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L289C13-L289C100" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.Principal.Save", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L297C13-L327C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L297C13-L327C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.Principal.Save(System.DirectoryServices.AccountManagement.PrincipalContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L334C13-L442C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L334C13-L442C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.Principal.Delete", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L449C13-L464C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L449C13-L464C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.Principal.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L468C13-L479C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L468C13-L479C26" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.Principal.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L484C13-L484C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L484C13-L484C39" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.Principal.GetUnderlyingObject", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L490C13-L500C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L490C13-L500C42" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.Principal.GetUnderlyingObjectType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L506C13-L526C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L506C13-L526C55" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.Principal.GetGroups", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L532C13-L532C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L532C13-L532C76" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.Principal.GetGroups(System.DirectoryServices.AccountManagement.PrincipalContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L537C13-L540C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L537C13-L540C90" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.Principal.IsMemberOf(System.DirectoryServices.AccountManagement.GroupPrincipal)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L546C13-L551C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L546C13-L551C49" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.Principal.IsMemberOf(System.DirectoryServices.AccountManagement.PrincipalContext,System.DirectoryServices.AccountManagement.IdentityType,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L557C13-L574C89" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L557C13-L574C89" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.Principal.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L583C13-L602C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L583C13-L602C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.Principal.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L617C9-L610C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L617C9-L610C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.Principal.ExtensionGet(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L622C13-L652C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L622C13-L652C40" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.Principal.ExtensionSet(System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L695C13-L706C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L695C13-L706C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.Principal.CheckDisposedOrDeleted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L886C13-L897C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L886C13-L897C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.Principal.FindByIdentityWithType(System.DirectoryServices.AccountManagement.PrincipalContext,System.Type,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L902C13-L908C111" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L902C13-L908C111" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.Principal.FindByIdentityWithType(System.DirectoryServices.AccountManagement.PrincipalContext,System.Type,System.DirectoryServices.AccountManagement.IdentityType,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L914C13-L923C119" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L914C13-L923C119" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.Principal.Context", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L32C17-L37C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L32C17-L37C29" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.Principal.ContextType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L47C17-L55C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L47C17-L55C41" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.Principal.Description", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L70C17-L70C121" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L70C17-L70C121" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.Principal.DisplayName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L94C17-L94C121" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L94C17-L94C121" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.Principal.SamAccountName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L120C17-L120C116" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L120C17-L120C116" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.Principal.UserPrincipalName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L145C17-L145C139" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L145C17-L145C139" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.Principal.Sid", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L168C17-L168C109" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L168C17-L168C109" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.Principal.Guid", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L182C17-L182C108" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L182C17-L182C108" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.Principal.DistinguishedName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L196C17-L196C139" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L196C17-L196C139" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.Principal.StructuralObjectClass", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L211C17-L211C151" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L211C17-L211C151" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.Principal.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L232C17-L240C104" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L232C17-L240C104" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.Principal.ContextRaw", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L764C15-L764C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L764C15-L764C27" } ], "DocsId": "T:System.DirectoryServices.AccountManagement.Principal", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.AccountManagement.AuthenticablePrincipal.IsAccountLockedOut", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L152C13-L152C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L152C13-L152C58" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.AuthenticablePrincipal.UnlockAccount", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L157C13-L158C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L157C13-L158C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.AuthenticablePrincipal.SetPassword(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L229C13-L230C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L229C13-L230C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.AuthenticablePrincipal.ChangePassword(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L234C13-L235C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L234C13-L235C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.AuthenticablePrincipal.ExpirePasswordNow", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L239C13-L240C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L239C13-L240C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.AuthenticablePrincipal.RefreshExpiredPassword", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L244C13-L245C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L244C13-L245C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.AuthenticablePrincipal.FindByLockoutTime(System.DirectoryServices.AccountManagement.PrincipalContext,System.DateTime,System.DirectoryServices.AccountManagement.MatchType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L266C13-L266C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L266C13-L266C83" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.AuthenticablePrincipal.FindByLogonTime(System.DirectoryServices.AccountManagement.PrincipalContext,System.DateTime,System.DirectoryServices.AccountManagement.MatchType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L271C13-L271C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L271C13-L271C81" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.AuthenticablePrincipal.FindByExpirationTime(System.DirectoryServices.AccountManagement.PrincipalContext,System.DateTime,System.DirectoryServices.AccountManagement.MatchType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L276C13-L276C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L276C13-L276C86" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.AuthenticablePrincipal.FindByBadPasswordAttempt(System.DirectoryServices.AccountManagement.PrincipalContext,System.DateTime,System.DirectoryServices.AccountManagement.MatchType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L281C13-L281C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L281C13-L281C90" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.AuthenticablePrincipal.FindByPasswordSetTime(System.DirectoryServices.AccountManagement.PrincipalContext,System.DateTime,System.DirectoryServices.AccountManagement.MatchType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L286C13-L286C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L286C13-L286C87" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.AuthenticablePrincipal.FindByLockoutTime``1(System.DirectoryServices.AccountManagement.PrincipalContext,System.DateTime,System.DirectoryServices.AccountManagement.MatchType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L295C13-L297C108" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L295C13-L297C108" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.AuthenticablePrincipal.FindByLogonTime``1(System.DirectoryServices.AccountManagement.PrincipalContext,System.DateTime,System.DirectoryServices.AccountManagement.MatchType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L301C13-L303C106" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L301C13-L303C106" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.AuthenticablePrincipal.FindByExpirationTime``1(System.DirectoryServices.AccountManagement.PrincipalContext,System.DateTime,System.DirectoryServices.AccountManagement.MatchType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L307C13-L309C111" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L307C13-L309C111" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.AuthenticablePrincipal.FindByBadPasswordAttempt``1(System.DirectoryServices.AccountManagement.PrincipalContext,System.DateTime,System.DirectoryServices.AccountManagement.MatchType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L313C13-L315C115" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L313C13-L315C115" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.AuthenticablePrincipal.FindByPasswordSetTime``1(System.DirectoryServices.AccountManagement.PrincipalContext,System.DateTime,System.DirectoryServices.AccountManagement.MatchType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L319C13-L321C112" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L319C13-L321C112" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.AuthenticablePrincipal.#ctor(System.DirectoryServices.AccountManagement.PrincipalContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L248C9-L335C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L248C9-L335C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.AuthenticablePrincipal.#ctor(System.DirectoryServices.AccountManagement.PrincipalContext,System.String,System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L337C133-L350C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L337C133-L350C10" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.AuthenticablePrincipal.Enabled", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L28C17-L47C120" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L28C17-L47C120" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.AuthenticablePrincipal.AccountLockoutTime", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L90C19-L90C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L90C19-L90C62" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.AuthenticablePrincipal.LastLogon", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L95C19-L95C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L95C19-L95C53" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.AuthenticablePrincipal.PermittedWorkstations", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L100C19-L100C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L100C19-L100C65" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.AuthenticablePrincipal.PermittedLogonTimes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L105C19-L105C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L105C19-L105C63" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.AuthenticablePrincipal.AccountExpirationDate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L111C19-L111C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L111C19-L111C65" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.AuthenticablePrincipal.SmartcardLogonRequired", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L117C19-L117C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L117C19-L117C66" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.AuthenticablePrincipal.DelegationPermitted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L123C19-L123C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L123C19-L123C63" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.AuthenticablePrincipal.BadLogonCount", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L129C19-L129C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L129C19-L129C57" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.AuthenticablePrincipal.HomeDirectory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L134C19-L134C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L134C19-L134C57" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.AuthenticablePrincipal.HomeDrive", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L140C19-L140C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L140C19-L140C53" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.AuthenticablePrincipal.ScriptPath", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L146C19-L146C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L146C19-L146C54" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.AuthenticablePrincipal.LastPasswordSet", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L185C19-L185C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L185C19-L185C60" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.AuthenticablePrincipal.LastBadPasswordAttempt", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L190C19-L190C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L190C19-L190C67" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.AuthenticablePrincipal.PasswordNotRequired", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L195C19-L195C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L195C19-L195C64" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.AuthenticablePrincipal.PasswordNeverExpires", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L201C19-L201C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L201C19-L201C65" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.AuthenticablePrincipal.UserCannotChangePassword", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L207C19-L207C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L207C19-L207C69" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.AuthenticablePrincipal.AllowReversiblePasswordEncryption", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L213C19-L213C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L213C19-L213C78" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.AuthenticablePrincipal.AdvancedSearchFilter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L223C17-L223C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L223C17-L223C29" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.AuthenticablePrincipal.Certificates", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L256C17-L257C126" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L256C17-L257C126" } ], "DocsId": "T:System.DirectoryServices.AccountManagement.AuthenticablePrincipal", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.AccountManagement.UserPrincipal.#ctor(System.DirectoryServices.AccountManagement.PrincipalContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/User.cs#L17C58-L24C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/User.cs#L17C58-L24C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.UserPrincipal.#ctor(System.DirectoryServices.AccountManagement.PrincipalContext,System.String,System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/User.cs#L26C112-L37C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/User.cs#L26C112-L37C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.UserPrincipal.FindByLockoutTime(System.DirectoryServices.AccountManagement.PrincipalContext,System.DateTime,System.DirectoryServices.AccountManagement.MatchType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/User.cs#L231C13-L231C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/User.cs#L231C13-L231C74" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.UserPrincipal.FindByLogonTime(System.DirectoryServices.AccountManagement.PrincipalContext,System.DateTime,System.DirectoryServices.AccountManagement.MatchType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/User.cs#L236C13-L236C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/User.cs#L236C13-L236C72" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.UserPrincipal.FindByExpirationTime(System.DirectoryServices.AccountManagement.PrincipalContext,System.DateTime,System.DirectoryServices.AccountManagement.MatchType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/User.cs#L241C13-L241C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/User.cs#L241C13-L241C77" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.UserPrincipal.FindByBadPasswordAttempt(System.DirectoryServices.AccountManagement.PrincipalContext,System.DateTime,System.DirectoryServices.AccountManagement.MatchType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/User.cs#L246C13-L246C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/User.cs#L246C13-L246C81" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.UserPrincipal.FindByPasswordSetTime(System.DirectoryServices.AccountManagement.PrincipalContext,System.DateTime,System.DirectoryServices.AccountManagement.MatchType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/User.cs#L251C13-L251C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/User.cs#L251C13-L251C78" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.UserPrincipal.FindByIdentity(System.DirectoryServices.AccountManagement.PrincipalContext,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/User.cs#L256C13-L256C105" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/User.cs#L256C13-L256C105" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.UserPrincipal.FindByIdentity(System.DirectoryServices.AccountManagement.PrincipalContext,System.DirectoryServices.AccountManagement.IdentityType,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/User.cs#L261C13-L261C119" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/User.cs#L261C13-L261C119" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.UserPrincipal.GetAuthorizationGroups", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/User.cs#L266C13-L266C89" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/User.cs#L266C13-L266C89" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.UserPrincipal.GivenName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/User.cs#L51C17-L51C110" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/User.cs#L51C17-L51C110" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.UserPrincipal.MiddleName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/User.cs#L72C17-L72C113" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/User.cs#L72C17-L72C113" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.UserPrincipal.Surname", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/User.cs#L93C17-L93C104" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/User.cs#L93C17-L93C104" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.UserPrincipal.EmailAddress", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/User.cs#L114C17-L114C119" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/User.cs#L114C17-L114C119" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.UserPrincipal.VoiceTelephoneNumber", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/User.cs#L135C17-L135C143" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/User.cs#L135C17-L135C143" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.UserPrincipal.EmployeeId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/User.cs#L156C17-L156C113" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/User.cs#L156C17-L156C113" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.UserPrincipal.AdvancedSearchFilter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/User.cs#L169C70-L169C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/User.cs#L169C70-L169C82" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.UserPrincipal.Current", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/User.cs#L179C17-L221C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/User.cs#L179C17-L221C29" } ], "DocsId": "T:System.DirectoryServices.AccountManagement.UserPrincipal", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/User.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/User.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.AccountManagement.ComputerPrincipal.#ctor(System.DirectoryServices.AccountManagement.PrincipalContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Computer.cs#L46C9-L23C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Computer.cs#L46C9-L23C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.ComputerPrincipal.#ctor(System.DirectoryServices.AccountManagement.PrincipalContext,System.String,System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Computer.cs#L25C116-L39C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Computer.cs#L25C116-L39C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.ComputerPrincipal.FindByLockoutTime(System.DirectoryServices.AccountManagement.PrincipalContext,System.DateTime,System.DirectoryServices.AccountManagement.MatchType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Computer.cs#L62C13-L62C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Computer.cs#L62C13-L62C78" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.ComputerPrincipal.FindByLogonTime(System.DirectoryServices.AccountManagement.PrincipalContext,System.DateTime,System.DirectoryServices.AccountManagement.MatchType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Computer.cs#L67C13-L67C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Computer.cs#L67C13-L67C76" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.ComputerPrincipal.FindByExpirationTime(System.DirectoryServices.AccountManagement.PrincipalContext,System.DateTime,System.DirectoryServices.AccountManagement.MatchType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Computer.cs#L72C13-L72C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Computer.cs#L72C13-L72C81" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.ComputerPrincipal.FindByBadPasswordAttempt(System.DirectoryServices.AccountManagement.PrincipalContext,System.DateTime,System.DirectoryServices.AccountManagement.MatchType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Computer.cs#L77C13-L77C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Computer.cs#L77C13-L77C85" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.ComputerPrincipal.FindByPasswordSetTime(System.DirectoryServices.AccountManagement.PrincipalContext,System.DateTime,System.DirectoryServices.AccountManagement.MatchType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Computer.cs#L82C13-L82C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Computer.cs#L82C13-L82C82" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.ComputerPrincipal.FindByIdentity(System.DirectoryServices.AccountManagement.PrincipalContext,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Computer.cs#L87C13-L87C113" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Computer.cs#L87C13-L87C113" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.ComputerPrincipal.FindByIdentity(System.DirectoryServices.AccountManagement.PrincipalContext,System.DirectoryServices.AccountManagement.IdentityType,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Computer.cs#L92C13-L92C127" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Computer.cs#L92C13-L92C127" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.ComputerPrincipal.ServicePrincipalNames", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Computer.cs#L53C17-L53C175" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Computer.cs#L53C17-L53C175" } ], "DocsId": "T:System.DirectoryServices.AccountManagement.ComputerPrincipal", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Computer.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Computer.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.AccountManagement.GroupPrincipal.#ctor(System.DirectoryServices.AccountManagement.PrincipalContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Group.cs#L16C9-L23C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Group.cs#L16C9-L23C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.GroupPrincipal.#ctor(System.DirectoryServices.AccountManagement.PrincipalContext,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Group.cs#L25C82-L34C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Group.cs#L25C82-L34C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.GroupPrincipal.FindByIdentity(System.DirectoryServices.AccountManagement.PrincipalContext,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Group.cs#L178C13-L178C107" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Group.cs#L178C13-L178C107" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.GroupPrincipal.FindByIdentity(System.DirectoryServices.AccountManagement.PrincipalContext,System.DirectoryServices.AccountManagement.IdentityType,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Group.cs#L183C13-L183C121" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Group.cs#L183C13-L183C121" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.GroupPrincipal.GetMembers", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Group.cs#L188C13-L188C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Group.cs#L188C13-L188C38" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.GroupPrincipal.GetMembers(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Group.cs#L194C13-L210C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Group.cs#L194C13-L210C67" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.GroupPrincipal.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Group.cs#L220C17-L234C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Group.cs#L220C17-L234C10" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.GroupPrincipal.IsSecurityGroup", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Group.cs#L50C17-L68C127" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Group.cs#L50C17-L68C127" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.GroupPrincipal.GroupScope", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Group.cs#L95C17-L114C118" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Group.cs#L95C17-L114C118" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.GroupPrincipal.Members", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Group.cs#L142C17-L169C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Group.cs#L142C17-L169C33" } ], "DocsId": "T:System.DirectoryServices.AccountManagement.GroupPrincipal", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Group.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Group.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.AccountManagement.MatchType.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/MatchType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/MatchType.cs" }, { "DocsId": "F:System.DirectoryServices.AccountManagement.MatchType.Equals", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/MatchType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/MatchType.cs" }, { "DocsId": "F:System.DirectoryServices.AccountManagement.MatchType.NotEquals", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/MatchType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/MatchType.cs" }, { "DocsId": "F:System.DirectoryServices.AccountManagement.MatchType.GreaterThan", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/MatchType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/MatchType.cs" }, { "DocsId": "F:System.DirectoryServices.AccountManagement.MatchType.GreaterThanOrEquals", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/MatchType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/MatchType.cs" }, { "DocsId": "F:System.DirectoryServices.AccountManagement.MatchType.LessThan", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/MatchType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/MatchType.cs" }, { "DocsId": "F:System.DirectoryServices.AccountManagement.MatchType.LessThanOrEquals", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/MatchType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/MatchType.cs" } ], "DocsId": "T:System.DirectoryServices.AccountManagement.MatchType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/MatchType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/MatchType.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.AccountManagement.ContextType.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ContextType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ContextType.cs" }, { "DocsId": "F:System.DirectoryServices.AccountManagement.ContextType.Machine", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ContextType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ContextType.cs" }, { "DocsId": "F:System.DirectoryServices.AccountManagement.ContextType.Domain", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ContextType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ContextType.cs" }, { "DocsId": "F:System.DirectoryServices.AccountManagement.ContextType.ApplicationDirectory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ContextType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ContextType.cs" } ], "DocsId": "T:System.DirectoryServices.AccountManagement.ContextType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ContextType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ContextType.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.AccountManagement.ContextOptions.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ContextOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ContextOptions.cs" }, { "DocsId": "F:System.DirectoryServices.AccountManagement.ContextOptions.Negotiate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ContextOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ContextOptions.cs" }, { "DocsId": "F:System.DirectoryServices.AccountManagement.ContextOptions.SimpleBind", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ContextOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ContextOptions.cs" }, { "DocsId": "F:System.DirectoryServices.AccountManagement.ContextOptions.SecureSocketLayer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ContextOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ContextOptions.cs" }, { "DocsId": "F:System.DirectoryServices.AccountManagement.ContextOptions.Signing", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ContextOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ContextOptions.cs" }, { "DocsId": "F:System.DirectoryServices.AccountManagement.ContextOptions.Sealing", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ContextOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ContextOptions.cs" }, { "DocsId": "F:System.DirectoryServices.AccountManagement.ContextOptions.ServerBind", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ContextOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ContextOptions.cs" } ], "DocsId": "T:System.DirectoryServices.AccountManagement.ContextOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ContextOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ContextOptions.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L18C13-L92C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L18C13-L92C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalCollection.System#Collections#ICollection#get_Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L98C17-L98C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L98C17-L98C30" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalCollection.System#Collections#ICollection#get_IsSynchronized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L106C17-L106C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L106C17-L106C39" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalCollection.System#Collections#ICollection#get_SyncRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L114C17-L114C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L114C17-L114C33" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalCollection.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L139C13-L139C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L139C13-L139C49" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalCollection.CopyTo(System.DirectoryServices.AccountManagement.Principal[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L147C13-L148C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L147C13-L148C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L213C13-L221C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L213C13-L221C69" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalCollection.Add(System.DirectoryServices.AccountManagement.UserPrincipal)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L230C13-L231C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L230C13-L231C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalCollection.Add(System.DirectoryServices.AccountManagement.GroupPrincipal)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L235C13-L236C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L235C13-L236C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalCollection.Add(System.DirectoryServices.AccountManagement.ComputerPrincipal)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L240C13-L241C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L240C13-L241C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalCollection.Add(System.DirectoryServices.AccountManagement.Principal)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L245C13-L285C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L245C13-L285C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalCollection.Add(System.DirectoryServices.AccountManagement.PrincipalContext,System.DirectoryServices.AccountManagement.IdentityType,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L289C13-L307C93" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L289C13-L307C93" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalCollection.Clear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L318C13-L345C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L318C13-L345C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalCollection.Remove(System.DirectoryServices.AccountManagement.UserPrincipal)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L353C13-L353C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L353C13-L353C44" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalCollection.Remove(System.DirectoryServices.AccountManagement.GroupPrincipal)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L358C13-L358C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L358C13-L358C45" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalCollection.Remove(System.DirectoryServices.AccountManagement.ComputerPrincipal)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L363C13-L363C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L363C13-L363C48" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalCollection.Remove(System.DirectoryServices.AccountManagement.Principal)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L368C13-L431C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L368C13-L431C28" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalCollection.Remove(System.DirectoryServices.AccountManagement.PrincipalContext,System.DirectoryServices.AccountManagement.IdentityType,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L436C13-L452C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L436C13-L452C38" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalCollection.Contains(System.DirectoryServices.AccountManagement.UserPrincipal)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L548C13-L548C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L548C13-L548C46" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalCollection.Contains(System.DirectoryServices.AccountManagement.GroupPrincipal)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L553C13-L553C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L553C13-L553C47" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalCollection.Contains(System.DirectoryServices.AccountManagement.ComputerPrincipal)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L558C13-L558C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L558C13-L558C50" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalCollection.Contains(System.DirectoryServices.AccountManagement.Principal)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L563C13-L579C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L563C13-L579C52" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalCollection.Contains(System.DirectoryServices.AccountManagement.PrincipalContext,System.DirectoryServices.AccountManagement.IdentityType,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L585C13-L600C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L585C13-L600C26" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.PrincipalCollection.System#Collections#ICollection#Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L98C17-L98C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L98C17-L98C30" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.PrincipalCollection.System#Collections#ICollection#IsSynchronized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L106C17-L106C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L106C17-L106C39" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.PrincipalCollection.System#Collections#ICollection#SyncRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L114C17-L114C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L114C17-L114C33" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.PrincipalCollection.IsSynchronized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L122C17-L122C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L122C17-L122C30" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.PrincipalCollection.SyncRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L130C17-L130C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L130C17-L130C29" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.PrincipalCollection.IsReadOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L154C17-L154C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L154C17-L154C30" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.PrincipalCollection.Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L162C17-L205C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L162C17-L205C14" } ], "DocsId": "T:System.DirectoryServices.AccountManagement.PrincipalCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalValueCollection`1.System#Collections#IList#get_IsFixedSize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L21C17-L21C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L21C17-L21C36" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalValueCollection`1.System#Collections#IList#get_IsReadOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L29C17-L29C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L29C17-L29C35" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalValueCollection`1.System#Collections#IList#Add(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L35C13-L39C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L35C13-L39C26" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalValueCollection`1.System#Collections#IList#Clear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L44C13-L45C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L44C13-L45C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalValueCollection`1.System#Collections#IList#Contains(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L49C13-L52C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L49C13-L52C46" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalValueCollection`1.System#Collections#IList#IndexOf(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L57C13-L60C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L57C13-L60C38" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalValueCollection`1.System#Collections#IList#Insert(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L65C13-L69C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L65C13-L69C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalValueCollection`1.System#Collections#IList#Remove(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L73C13-L77C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L73C13-L77C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalValueCollection`1.System#Collections#IList#RemoveAt(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L81C13-L82C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L81C13-L82C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalValueCollection`1.System#Collections#IList#get_Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L88C17-L88C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L88C17-L88C36" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalValueCollection`1.System#Collections#IList#set_Item(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L93C17-L97C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L93C17-L97C14" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalValueCollection`1.System#Collections#ICollection#CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L105C13-L106C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L105C13-L106C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalValueCollection`1.System#Collections#ICollection#get_Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L112C17-L112C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L112C17-L112C37" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalValueCollection`1.System#Collections#ICollection#get_IsSynchronized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L120C17-L120C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L120C17-L120C39" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalValueCollection`1.System#Collections#ICollection#get_SyncRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L128C17-L128C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L128C17-L128C33" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalValueCollection`1.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L153C13-L153C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L153C13-L153C49" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalValueCollection`1.Add(`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L178C13-L182C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L178C13-L182C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalValueCollection`1.Clear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L186C13-L187C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L186C13-L187C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalValueCollection`1.Contains(`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L191C13-L194C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L191C13-L194C43" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalValueCollection`1.IndexOf(`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L199C13-L222C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L199C13-L222C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalValueCollection`1.Insert(System.Int32,`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L226C13-L242C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L226C13-L242C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalValueCollection`1.Remove(`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L246C13-L249C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L246C13-L249C41" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalValueCollection`1.RemoveAt(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L254C13-L278C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L254C13-L278C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalValueCollection`1.CopyTo(`0[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L337C13-L338C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L337C13-L338C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalValueCollection`1.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L353C13-L353C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L353C13-L353C84" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.PrincipalValueCollection`1.System#Collections#IList#IsFixedSize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L21C17-L21C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L21C17-L21C36" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.PrincipalValueCollection`1.System#Collections#IList#IsReadOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L29C17-L29C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L29C17-L29C35" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.PrincipalValueCollection`1.System#Collections#IList#Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L88C17-L88C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L88C17-L88C36" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.PrincipalValueCollection`1.System#Collections#ICollection#Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L112C17-L112C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L112C17-L112C37" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.PrincipalValueCollection`1.System#Collections#ICollection#IsSynchronized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L120C17-L120C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L120C17-L120C39" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.PrincipalValueCollection`1.System#Collections#ICollection#SyncRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L128C17-L128C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L128C17-L128C33" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.PrincipalValueCollection`1.IsSynchronized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L136C17-L136C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L136C17-L136C61" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.PrincipalValueCollection`1.SyncRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L144C17-L144C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L144C17-L144C29" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.PrincipalValueCollection`1.IsFixedSize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L163C17-L163C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L163C17-L163C30" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.PrincipalValueCollection`1.IsReadOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L171C17-L171C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L171C17-L171C30" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.PrincipalValueCollection`1.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L284C17-L300C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L284C17-L300C51" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.PrincipalValueCollection`1.Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L344C17-L344C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L344C17-L344C37" } ], "DocsId": "T:System.DirectoryServices.AccountManagement.PrincipalValueCollection`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalSearchResult`1.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/FindResult.cs#L21C13-L23C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/FindResult.cs#L21C13-L23C60" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalSearchResult`1.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/FindResult.cs#L28C13-L28C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/FindResult.cs#L28C13-L28C49" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalSearchResult`1.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/FindResult.cs#L33C13-L50C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/FindResult.cs#L33C13-L50C10" } ], "DocsId": "T:System.DirectoryServices.AccountManagement.PrincipalSearchResult`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/FindResult.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/FindResult.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L31C21-L33C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L31C21-L33C10" } ], "DocsId": "T:System.DirectoryServices.AccountManagement.PrincipalException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.AccountManagement.MultipleMatchesException.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L40C45-L40C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L40C45-L40C55" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.MultipleMatchesException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L42C59-L42C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L42C59-L42C76" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.MultipleMatchesException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L45C17-L46C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L45C17-L46C12" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.MultipleMatchesException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L53C21-L55C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L53C21-L55C10" } ], "DocsId": "T:System.DirectoryServices.AccountManagement.MultipleMatchesException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.AccountManagement.NoMatchingPrincipalException.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L62C49-L62C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L62C49-L62C59" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.NoMatchingPrincipalException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L64C63-L64C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L64C63-L64C80" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.NoMatchingPrincipalException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L67C17-L68C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L67C17-L68C12" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.NoMatchingPrincipalException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L74C9-L76C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L74C9-L76C55" } ], "DocsId": "T:System.DirectoryServices.AccountManagement.NoMatchingPrincipalException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.AccountManagement.PasswordException.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L84C38-L84C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L84C38-L84C48" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PasswordException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L86C52-L86C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L86C52-L86C69" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PasswordException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L89C13-L90C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L89C13-L90C12" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PasswordException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L97C21-L99C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L97C21-L99C10" } ], "DocsId": "T:System.DirectoryServices.AccountManagement.PasswordException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalExistsException.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L106C45-L106C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L106C45-L106C55" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalExistsException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L108C59-L108C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L108C59-L108C76" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalExistsException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L111C13-L112C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L111C13-L112C12" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalExistsException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L119C21-L121C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L119C21-L121C10" } ], "DocsId": "T:System.DirectoryServices.AccountManagement.PrincipalExistsException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalServerDownException.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L131C49-L131C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L131C49-L131C59" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalServerDownException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L133C63-L133C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L133C63-L133C80" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalServerDownException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L136C13-L137C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L136C13-L137C12" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalServerDownException.#ctor(System.String,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L139C78-L142C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L139C78-L142C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalServerDownException.#ctor(System.String,System.Exception,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L143C104-L146C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L143C104-L146C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalServerDownException.#ctor(System.String,System.Exception,System.Int32,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L147C123-L151C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L147C123-L151C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalServerDownException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L158C21-L162C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L158C21-L162C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalServerDownException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L170C13-L173C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L170C13-L173C10" } ], "DocsId": "T:System.DirectoryServices.AccountManagement.PrincipalServerDownException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalOperationException.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L182C48-L182C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L182C48-L182C58" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalOperationException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L184C62-L184C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L184C62-L184C79" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalOperationException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L187C13-L188C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L187C13-L188C12" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalOperationException.#ctor(System.String,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L190C77-L193C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L190C77-L193C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalOperationException.#ctor(System.String,System.Exception,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L194C103-L197C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L194C103-L197C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalOperationException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L204C21-L207C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L204C21-L207C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalOperationException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L215C13-L217C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L215C13-L217C10" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.PrincipalOperationException.ErrorCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L223C17-L223C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L223C17-L223C35" } ], "DocsId": "T:System.DirectoryServices.AccountManagement.PrincipalOperationException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.AccountManagement.IdentityType.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/IdentityType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/IdentityType.cs" }, { "DocsId": "F:System.DirectoryServices.AccountManagement.IdentityType.SamAccountName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/IdentityType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/IdentityType.cs" }, { "DocsId": "F:System.DirectoryServices.AccountManagement.IdentityType.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/IdentityType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/IdentityType.cs" }, { "DocsId": "F:System.DirectoryServices.AccountManagement.IdentityType.UserPrincipalName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/IdentityType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/IdentityType.cs" }, { "DocsId": "F:System.DirectoryServices.AccountManagement.IdentityType.DistinguishedName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/IdentityType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/IdentityType.cs" }, { "DocsId": "F:System.DirectoryServices.AccountManagement.IdentityType.Sid", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/IdentityType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/IdentityType.cs" }, { "DocsId": "F:System.DirectoryServices.AccountManagement.IdentityType.Guid", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/IdentityType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/IdentityType.cs" } ], "DocsId": "T:System.DirectoryServices.AccountManagement.IdentityType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/IdentityType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/IdentityType.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.AccountManagement.GroupScope.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/GroupType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/GroupType.cs" }, { "DocsId": "F:System.DirectoryServices.AccountManagement.GroupScope.Local", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/GroupType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/GroupType.cs" }, { "DocsId": "F:System.DirectoryServices.AccountManagement.GroupScope.Global", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/GroupType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/GroupType.cs" }, { "DocsId": "F:System.DirectoryServices.AccountManagement.GroupScope.Universal", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/GroupType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/GroupType.cs" } ], "DocsId": "T:System.DirectoryServices.AccountManagement.GroupScope", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/GroupType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/GroupType.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.AccountManagement.DirectoryPropertyAttribute.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ExtensionAttributes.cs#L15C9-L19C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ExtensionAttributes.cs#L15C9-L19C10" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.DirectoryPropertyAttribute.SchemaAttributeName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ExtensionAttributes.cs#L24C17-L24C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ExtensionAttributes.cs#L24C17-L24C45" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.DirectoryPropertyAttribute.Context", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ExtensionAttributes.cs#L31C17-L31C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ExtensionAttributes.cs#L31C17-L31C33" } ], "DocsId": "T:System.DirectoryServices.AccountManagement.DirectoryPropertyAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ExtensionAttributes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ExtensionAttributes.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.AccountManagement.DirectoryRdnPrefixAttribute.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ExtensionAttributes.cs#L46C9-L50C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ExtensionAttributes.cs#L46C9-L50C10" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.DirectoryRdnPrefixAttribute.RdnPrefix", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ExtensionAttributes.cs#L55C17-L55C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ExtensionAttributes.cs#L55C17-L55C35" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.DirectoryRdnPrefixAttribute.Context", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ExtensionAttributes.cs#L62C17-L62C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ExtensionAttributes.cs#L62C17-L62C33" } ], "DocsId": "T:System.DirectoryServices.AccountManagement.DirectoryRdnPrefixAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ExtensionAttributes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ExtensionAttributes.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.AccountManagement.DirectoryObjectClassAttribute.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ExtensionAttributes.cs#L73C9-L77C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ExtensionAttributes.cs#L73C9-L77C10" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.DirectoryObjectClassAttribute.ObjectClass", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ExtensionAttributes.cs#L82C17-L82C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ExtensionAttributes.cs#L82C17-L82C37" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.DirectoryObjectClassAttribute.Context", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ExtensionAttributes.cs#L89C17-L89C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ExtensionAttributes.cs#L89C17-L89C33" } ], "DocsId": "T:System.DirectoryServices.AccountManagement.DirectoryObjectClassAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ExtensionAttributes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ExtensionAttributes.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.AccountManagement.AdvancedFilters.#ctor(System.DirectoryServices.AccountManagement.Principal)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AdvancedFilters.cs#L16C9-L19C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AdvancedFilters.cs#L16C9-L19C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.AdvancedFilters.LastBadPasswordAttempt(System.DateTime,System.DirectoryServices.AccountManagement.MatchType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AdvancedFilters.cs#L27C13-L37C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AdvancedFilters.cs#L27C13-L37C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.AdvancedFilters.AccountExpirationDate(System.DateTime,System.DirectoryServices.AccountManagement.MatchType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AdvancedFilters.cs#L44C13-L54C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AdvancedFilters.cs#L44C13-L54C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.AdvancedFilters.AccountLockoutTime(System.DateTime,System.DirectoryServices.AccountManagement.MatchType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AdvancedFilters.cs#L61C13-L71C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AdvancedFilters.cs#L61C13-L71C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.AdvancedFilters.BadLogonCount(System.Int32,System.DirectoryServices.AccountManagement.MatchType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AdvancedFilters.cs#L78C13-L88C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AdvancedFilters.cs#L78C13-L88C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.AdvancedFilters.LastLogonTime(System.DateTime,System.DirectoryServices.AccountManagement.MatchType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AdvancedFilters.cs#L95C13-L105C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AdvancedFilters.cs#L95C13-L105C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.AdvancedFilters.LastPasswordSetTime(System.DateTime,System.DirectoryServices.AccountManagement.MatchType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AdvancedFilters.cs#L112C13-L122C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AdvancedFilters.cs#L112C13-L122C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.AdvancedFilters.AdvancedFilterSet(System.String,System.Object,System.Type,System.DirectoryServices.AccountManagement.MatchType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AdvancedFilters.cs#L126C13-L127C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AdvancedFilters.cs#L126C13-L127C10" } ], "DocsId": "T:System.DirectoryServices.AccountManagement.AdvancedFilters", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AdvancedFilters.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AdvancedFilters.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/System.DirectoryServices.Protocols.json b/xml/SourceLinkInformation/net-8.0/System.DirectoryServices.Protocols.json index b88557b8008..0c1070575ee 100644 --- a/xml/SourceLinkInformation/net-8.0/System.DirectoryServices.Protocols.json +++ b/xml/SourceLinkInformation/net-8.0/System.DirectoryServices.Protocols.json @@ -1,2410 +1,2409 @@ { "Assembly": "System.DirectoryServices.Protocols", - "GUID": "17FE7E276EBA48FF8A415B533BE7FA98FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "BF5087655D9441FBB661A166FF5E9798FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "F:System.DirectoryServices.Protocols.AuthType.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/AuthTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/AuthTypes.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.AuthType.Anonymous", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/AuthTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/AuthTypes.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.AuthType.Basic", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/AuthTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/AuthTypes.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.AuthType.Negotiate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/AuthTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/AuthTypes.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.AuthType.Ntlm", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/AuthTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/AuthTypes.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.AuthType.Digest", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/AuthTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/AuthTypes.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.AuthType.Sicily", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/AuthTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/AuthTypes.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.AuthType.Dpa", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/AuthTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/AuthTypes.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.AuthType.Msn", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/AuthTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/AuthTypes.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.AuthType.External", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/AuthTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/AuthTypes.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.AuthType.Kerberos", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/AuthTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/AuthTypes.cs" } ], "DocsId": "T:System.DirectoryServices.Protocols.AuthType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/AuthTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/AuthTypes.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.Protocols.PartialResultProcessing.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/AuthTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/AuthTypes.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.PartialResultProcessing.NoPartialResultSupport", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/AuthTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/AuthTypes.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.PartialResultProcessing.ReturnPartialResults", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/AuthTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/AuthTypes.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.PartialResultProcessing.ReturnPartialResultsAndNotifyCallback", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/AuthTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/AuthTypes.cs" } ], "DocsId": "T:System.DirectoryServices.Protocols.PartialResultProcessing", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/AuthTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/AuthTypes.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.BerConverter.Encode(System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/BerConverter.cs#L15C13-L289C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/BerConverter.cs#L15C13-L289C35" }, { "DocsId": "M:System.DirectoryServices.Protocols.BerConverter.Decode(System.String,System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/BerConverter.cs#L295C13-L299C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/BerConverter.cs#L295C13-L299C52" } ], "DocsId": "T:System.DirectoryServices.Protocols.BerConverter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/BerConverter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/BerConverter.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.Protocols.DereferenceAlias.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DereferenceAlias.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DereferenceAlias.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.DereferenceAlias.Never", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DereferenceAlias.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DereferenceAlias.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.DereferenceAlias.InSearching", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DereferenceAlias.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DereferenceAlias.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.DereferenceAlias.FindingBaseObject", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DereferenceAlias.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DereferenceAlias.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.DereferenceAlias.Always", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DereferenceAlias.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DereferenceAlias.cs" } ], "DocsId": "T:System.DirectoryServices.Protocols.DereferenceAlias", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DereferenceAlias.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DereferenceAlias.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L13C9-L22C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L13C9-L22C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryAttribute.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L24C64-L26C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L24C64-L26C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryAttribute.#ctor(System.String,System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L28C64-L30C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L28C64-L30C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryAttribute.#ctor(System.String,System.Uri)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L32C61-L34C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L32C61-L34C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryAttribute.#ctor(System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L45C74-L56C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L45C74-L56C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryAttribute.GetValues(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L67C13-L115C93" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L67C13-L115C93" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryAttribute.Add(System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L157C41-L157C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L157C41-L157C59" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryAttribute.Add(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L159C41-L159C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L159C41-L159C59" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryAttribute.Add(System.Uri)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L161C38-L161C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L161C38-L161C56" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryAttribute.AddRange(System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L177C13-L193C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L177C13-L193C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryAttribute.Contains(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L195C47-L195C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L195C47-L195C67" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryAttribute.CopyTo(System.Object[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L197C58-L197C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L197C58-L197C83" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryAttribute.IndexOf(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L199C45-L199C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L199C45-L199C64" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryAttribute.Insert(System.Int32,System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L201C56-L201C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L201C56-L201C84" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryAttribute.Insert(System.Int32,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L203C56-L203C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L203C56-L203C84" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryAttribute.Insert(System.Int32,System.Uri)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L205C53-L205C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L205C53-L205C81" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryAttribute.Remove(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L214C45-L214C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L214C45-L214C63" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryAttribute.OnValidate(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L218C13-L224C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L218C13-L224C10" }, { "DocsId": "P:System.DirectoryServices.Protocols.DirectoryAttribute.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L60C20-L60C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L60C20-L60C34" }, { "DocsId": "P:System.DirectoryServices.Protocols.DirectoryAttribute.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L122C17-L141C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L122C17-L141C14" } ], "DocsId": "T:System.DirectoryServices.Protocols.DirectoryAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryAttributeModification.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L229C9-L233C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L229C9-L233C10" }, { "DocsId": "P:System.DirectoryServices.Protocols.DirectoryAttributeModification.Operation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L237C20-L237C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L237C20-L237C39" } ], "DocsId": "T:System.DirectoryServices.Protocols.DirectoryAttributeModification", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.SearchResultAttributeCollection.Contains(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L279C13-L282C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L279C13-L282C52" }, { "DocsId": "M:System.DirectoryServices.Protocols.SearchResultAttributeCollection.CopyTo(System.DirectoryServices.Protocols.DirectoryAttribute[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L285C70-L285C108" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L285C70-L285C108" }, { "DocsId": "P:System.DirectoryServices.Protocols.SearchResultAttributeCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L258C17-L264C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L258C17-L264C71" }, { "DocsId": "P:System.DirectoryServices.Protocols.SearchResultAttributeCollection.AttributeNames", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L268C46-L268C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L268C46-L268C61" }, { "DocsId": "P:System.DirectoryServices.Protocols.SearchResultAttributeCollection.Values", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L270C38-L270C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L270C38-L270C55" } ], "DocsId": "T:System.DirectoryServices.Protocols.SearchResultAttributeCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryAttributeCollection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L290C9-L292C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L290C9-L292C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryAttributeCollection.Add(System.DirectoryServices.Protocols.DirectoryAttribute)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L302C13-L307C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L302C13-L307C40" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryAttributeCollection.AddRange(System.DirectoryServices.Protocols.DirectoryAttribute[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L312C13-L323C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L312C13-L323C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryAttributeCollection.AddRange(System.DirectoryServices.Protocols.DirectoryAttributeCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L327C13-L334C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L327C13-L334C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryAttributeCollection.Contains(System.DirectoryServices.Protocols.DirectoryAttribute)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L336C59-L336C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L336C59-L336C79" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryAttributeCollection.CopyTo(System.DirectoryServices.Protocols.DirectoryAttribute[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L338C70-L338C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L338C70-L338C95" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryAttributeCollection.IndexOf(System.DirectoryServices.Protocols.DirectoryAttribute)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L340C57-L340C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L340C57-L340C76" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryAttributeCollection.Insert(System.Int32,System.DirectoryServices.Protocols.DirectoryAttribute)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L344C13-L350C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L344C13-L350C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryAttributeCollection.Remove(System.DirectoryServices.Protocols.DirectoryAttribute)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L352C57-L352C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L352C57-L352C75" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryAttributeCollection.OnValidate(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L356C13-L364C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L356C13-L364C10" }, { "DocsId": "P:System.DirectoryServices.Protocols.DirectoryAttributeCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L296C20-L296C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L296C20-L296C51" } ], "DocsId": "T:System.DirectoryServices.Protocols.DirectoryAttributeCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryAttributeModificationCollection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L369C9-L371C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L369C9-L371C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryAttributeModificationCollection.Add(System.DirectoryServices.Protocols.DirectoryAttributeModification)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L381C13-L386C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L381C13-L386C40" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryAttributeModificationCollection.AddRange(System.DirectoryServices.Protocols.DirectoryAttributeModification[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L391C13-L402C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L391C13-L402C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryAttributeModificationCollection.AddRange(System.DirectoryServices.Protocols.DirectoryAttributeModificationCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L406C13-L413C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L406C13-L413C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryAttributeModificationCollection.Contains(System.DirectoryServices.Protocols.DirectoryAttributeModification)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L415C71-L415C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L415C71-L415C91" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryAttributeModificationCollection.CopyTo(System.DirectoryServices.Protocols.DirectoryAttributeModification[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L417C82-L417C107" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L417C82-L417C107" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryAttributeModificationCollection.IndexOf(System.DirectoryServices.Protocols.DirectoryAttributeModification)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L419C69-L419C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L419C69-L419C88" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryAttributeModificationCollection.Insert(System.Int32,System.DirectoryServices.Protocols.DirectoryAttributeModification)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L423C13-L429C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L423C13-L429C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryAttributeModificationCollection.Remove(System.DirectoryServices.Protocols.DirectoryAttributeModification)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L431C69-L431C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L431C69-L431C87" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryAttributeModificationCollection.OnValidate(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L435C13-L443C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L435C13-L443C10" }, { "DocsId": "P:System.DirectoryServices.Protocols.DirectoryAttributeModificationCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L375C20-L375C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L375C20-L375C63" } ], "DocsId": "T:System.DirectoryServices.Protocols.DirectoryAttributeModificationCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.Protocols.DirectoryAttributeOperation.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttributeOperation.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttributeOperation.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.DirectoryAttributeOperation.Add", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttributeOperation.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttributeOperation.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.DirectoryAttributeOperation.Delete", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttributeOperation.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttributeOperation.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.DirectoryAttributeOperation.Replace", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttributeOperation.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttributeOperation.cs" } ], "DocsId": "T:System.DirectoryServices.Protocols.DirectoryAttributeOperation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttributeOperation.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttributeOperation.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryConnection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryConnection.cs#L14C9-L17C101" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryConnection.cs#L14C9-L17C101" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryConnection.SendRequest(System.DirectoryServices.Protocols.DirectoryRequest)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryConnection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryConnection.cs" }, { "DocsId": "P:System.DirectoryServices.Protocols.DirectoryConnection.Directory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryConnection.cs#L19C57-L19C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryConnection.cs#L19C57-L19C77" }, { "DocsId": "P:System.DirectoryServices.Protocols.DirectoryConnection.ClientCertificates", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryConnection.cs#L21C64-L21C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryConnection.cs#L21C64-L21C87" }, { "DocsId": "P:System.DirectoryServices.Protocols.DirectoryConnection.Timeout", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryConnection.cs#L25C20-L25C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryConnection.cs#L25C20-L25C38" }, { "DocsId": "P:System.DirectoryServices.Protocols.DirectoryConnection.Credential", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryConnection.cs#L41C17-L42C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryConnection.cs#L41C17-L42C14" } ], "DocsId": "T:System.DirectoryServices.Protocols.DirectoryConnection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryConnection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryConnection.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.Protocols.ExtendedDNFlag.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ExtendedDNFlag.HexString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ExtendedDNFlag.StandardString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" } ], "DocsId": "T:System.DirectoryServices.Protocols.ExtendedDNFlag", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.Protocols.SecurityMasks.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.SecurityMasks.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.SecurityMasks.Owner", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.SecurityMasks.Group", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.SecurityMasks.Dacl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.SecurityMasks.Sacl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" } ], "DocsId": "T:System.DirectoryServices.Protocols.SecurityMasks", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.Protocols.DirectorySynchronizationOptions.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.DirectorySynchronizationOptions.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.DirectorySynchronizationOptions.ObjectSecurity", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.DirectorySynchronizationOptions.ParentsFirst", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.DirectorySynchronizationOptions.PublicDataOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.DirectorySynchronizationOptions.IncrementalValues", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" } ], "DocsId": "T:System.DirectoryServices.Protocols.DirectorySynchronizationOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.Protocols.SearchOption.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.SearchOption.DomainScope", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.SearchOption.PhantomRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" } ], "DocsId": "T:System.DirectoryServices.Protocols.SearchOption", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.SortKey.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L60C9-L62C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L60C9-L62C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.SortKey.#ctor(System.String,System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L64C9-L69C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L64C9-L69C10" }, { "DocsId": "P:System.DirectoryServices.Protocols.SortKey.AttributeName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L73C20-L73C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L73C20-L73C25" }, { "DocsId": "P:System.DirectoryServices.Protocols.SortKey.MatchingRule", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L79C20-L79C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L79C20-L79C25" }, { "DocsId": "P:System.DirectoryServices.Protocols.SortKey.ReverseOrder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L85C20-L85C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L85C20-L85C26" } ], "DocsId": "T:System.DirectoryServices.Protocols.SortKey", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryControl.#ctor(System.String,System.Byte[],System.Boolean,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L94C9-L110C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L94C9-L110C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryControl.GetValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L114C13-L124C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L114C13-L124C30" }, { "DocsId": "P:System.DirectoryServices.Protocols.DirectoryControl.Type", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L127C30-L127C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L127C30-L127C34" }, { "DocsId": "P:System.DirectoryServices.Protocols.DirectoryControl.IsCritical", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L129C34-L129C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L129C34-L129C38" }, { "DocsId": "P:System.DirectoryServices.Protocols.DirectoryControl.ServerSide", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L131C34-L131C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L131C34-L131C38" } ], "DocsId": "T:System.DirectoryServices.Protocols.DirectoryControl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.AsqRequestControl.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L236C38-L238C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L236C38-L238C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.AsqRequestControl.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L240C58-L243C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L240C58-L243C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.AsqRequestControl.GetValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L249C13-L250C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L249C13-L250C36" }, { "DocsId": "P:System.DirectoryServices.Protocols.AsqRequestControl.AttributeName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L245C39-L245C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L245C39-L245C43" } ], "DocsId": "T:System.DirectoryServices.Protocols.AsqRequestControl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" }, { "Members": [ { "DocsId": "P:System.DirectoryServices.Protocols.AsqResponseControl.Result", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L261C36-L261C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L261C36-L261C40" } ], "DocsId": "T:System.DirectoryServices.Protocols.AsqResponseControl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.CrossDomainMoveControl.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L266C43-L268C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L266C43-L268C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.CrossDomainMoveControl.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L270C72-L273C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L270C72-L273C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.CrossDomainMoveControl.GetValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L279C13-L291C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L279C13-L291C36" }, { "DocsId": "P:System.DirectoryServices.Protocols.CrossDomainMoveControl.TargetDomainController", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L275C48-L275C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L275C48-L275C52" } ], "DocsId": "T:System.DirectoryServices.Protocols.CrossDomainMoveControl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.DomainScopeControl.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L297C39-L299C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L297C39-L299C10" } ], "DocsId": "T:System.DirectoryServices.Protocols.DomainScopeControl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.ExtendedDNControl.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L306C38-L308C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L306C38-L308C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.ExtendedDNControl.#ctor(System.DirectoryServices.Protocols.ExtendedDNFlag)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L310C57-L313C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L310C57-L313C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.ExtendedDNControl.GetValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L328C13-L329C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L328C13-L329C36" }, { "DocsId": "P:System.DirectoryServices.Protocols.ExtendedDNControl.Flag", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L317C20-L317C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L317C20-L317C25" } ], "DocsId": "T:System.DirectoryServices.Protocols.ExtendedDNControl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.LazyCommitControl.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L335C38-L335C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L335C38-L335C90" } ], "DocsId": "T:System.DirectoryServices.Protocols.LazyCommitControl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryNotificationControl.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L340C49-L340C101" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L340C49-L340C101" } ], "DocsId": "T:System.DirectoryServices.Protocols.DirectoryNotificationControl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.PermissiveModifyControl.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L345C44-L345C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L345C44-L345C97" } ], "DocsId": "T:System.DirectoryServices.Protocols.PermissiveModifyControl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.SecurityDescriptorFlagControl.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L350C50-L350C102" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L350C50-L350C102" }, { "DocsId": "M:System.DirectoryServices.Protocols.SecurityDescriptorFlagControl.#ctor(System.DirectoryServices.Protocols.SecurityMasks)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L352C69-L355C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L352C69-L355C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.SecurityDescriptorFlagControl.GetValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L363C13-L364C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L363C13-L364C36" }, { "DocsId": "P:System.DirectoryServices.Protocols.SecurityDescriptorFlagControl.SecurityMasks", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L359C46-L359C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L359C46-L359C50" } ], "DocsId": "T:System.DirectoryServices.Protocols.SecurityDescriptorFlagControl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.SearchOptionsControl.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L370C9-L371C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L370C9-L371C94" }, { "DocsId": "M:System.DirectoryServices.Protocols.SearchOptionsControl.#ctor(System.DirectoryServices.Protocols.SearchOption)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L373C59-L376C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L373C59-L376C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.SearchOptionsControl.GetValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L392C13-L393C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L392C13-L393C36" }, { "DocsId": "P:System.DirectoryServices.Protocols.SearchOptionsControl.SearchOption", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L380C20-L380C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L380C20-L380C33" } ], "DocsId": "T:System.DirectoryServices.Protocols.SearchOptionsControl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.ShowDeletedControl.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L399C39-L399C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L399C39-L399C91" } ], "DocsId": "T:System.DirectoryServices.Protocols.ShowDeletedControl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.TreeDeleteControl.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L404C38-L404C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L404C38-L404C90" } ], "DocsId": "T:System.DirectoryServices.Protocols.TreeDeleteControl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.VerifyNameControl.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L411C38-L411C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L411C38-L411C91" }, { "DocsId": "M:System.DirectoryServices.Protocols.VerifyNameControl.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L413C55-L418C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L413C55-L418C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.VerifyNameControl.#ctor(System.String,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L420C65-L423C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L420C65-L423C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.VerifyNameControl.GetValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L435C13-L443C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L435C13-L443C36" }, { "DocsId": "P:System.DirectoryServices.Protocols.VerifyNameControl.ServerName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L427C20-L427C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L427C20-L427C31" }, { "DocsId": "P:System.DirectoryServices.Protocols.VerifyNameControl.Flag", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L431C27-L431C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L431C27-L431C31" } ], "DocsId": "T:System.DirectoryServices.Protocols.VerifyNameControl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.DirSyncRequestControl.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L450C9-L452C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L450C9-L452C94" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirSyncRequestControl.#ctor(System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L453C55-L456C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L453C55-L456C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirSyncRequestControl.#ctor(System.Byte[],System.DirectoryServices.Protocols.DirectorySynchronizationOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L458C95-L461C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L458C95-L461C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirSyncRequestControl.#ctor(System.Byte[],System.DirectoryServices.Protocols.DirectorySynchronizationOptions,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L463C115-L466C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L463C115-L466C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirSyncRequestControl.GetValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L508C13-L510C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L508C13-L510C36" }, { "DocsId": "P:System.DirectoryServices.Protocols.DirSyncRequestControl.Cookie", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L472C17-L483C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L472C17-L483C35" }, { "DocsId": "P:System.DirectoryServices.Protocols.DirSyncRequestControl.Option", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L490C57-L490C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L490C57-L490C61" }, { "DocsId": "P:System.DirectoryServices.Protocols.DirSyncRequestControl.AttributeCount", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L494C20-L494C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L494C20-L494C26" } ], "DocsId": "T:System.DirectoryServices.Protocols.DirSyncRequestControl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" }, { "Members": [ { "DocsId": "P:System.DirectoryServices.Protocols.DirSyncResponseControl.Cookie", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L529C17-L540C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L529C17-L540C35" }, { "DocsId": "P:System.DirectoryServices.Protocols.DirSyncResponseControl.MoreData", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L544C32-L544C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L544C32-L544C36" }, { "DocsId": "P:System.DirectoryServices.Protocols.DirSyncResponseControl.ResultSize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L546C33-L546C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L546C33-L546C37" } ], "DocsId": "T:System.DirectoryServices.Protocols.DirSyncResponseControl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.PageResultRequestControl.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L551C9-L554C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L551C9-L554C97" }, { "DocsId": "M:System.DirectoryServices.Protocols.PageResultRequestControl.#ctor(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L556C57-L559C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L556C57-L559C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.PageResultRequestControl.#ctor(System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L561C58-L564C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L561C58-L564C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.PageResultRequestControl.GetValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L602C13-L604C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L602C13-L604C36" }, { "DocsId": "P:System.DirectoryServices.Protocols.PageResultRequestControl.PageSize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L568C20-L568C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L568C20-L568C25" }, { "DocsId": "P:System.DirectoryServices.Protocols.PageResultRequestControl.Cookie", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L584C17-L595C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L584C17-L595C35" } ], "DocsId": "T:System.DirectoryServices.Protocols.PageResultRequestControl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" }, { "Members": [ { "DocsId": "P:System.DirectoryServices.Protocols.PageResultResponseControl.Cookie", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L622C17-L632C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L622C17-L632C35" }, { "DocsId": "P:System.DirectoryServices.Protocols.PageResultResponseControl.TotalCount", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L636C33-L636C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L636C33-L636C37" } ], "DocsId": "T:System.DirectoryServices.Protocols.PageResultResponseControl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.SortRequestControl.#ctor(System.DirectoryServices.Protocols.SortKey[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L641C9-L659C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L641C9-L659C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.SortRequestControl.#ctor(System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L661C78-L663C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L661C78-L663C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.SortRequestControl.#ctor(System.String,System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L641C9-L669C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L641C9-L669C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.SortRequestControl.GetValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L712C13-L798C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L712C13-L798C36" }, { "DocsId": "P:System.DirectoryServices.Protocols.SortRequestControl.SortKeys", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L675C17-L685C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L675C17-L685C33" } ], "DocsId": "T:System.DirectoryServices.Protocols.SortRequestControl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" }, { "Members": [ { "DocsId": "P:System.DirectoryServices.Protocols.SortResponseControl.Result", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L810C36-L810C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L810C36-L810C40" }, { "DocsId": "P:System.DirectoryServices.Protocols.SortResponseControl.AttributeName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L812C39-L812C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L812C39-L812C43" } ], "DocsId": "T:System.DirectoryServices.Protocols.SortResponseControl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.VlvRequestControl.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L824C38-L824C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L824C38-L824C91" }, { "DocsId": "M:System.DirectoryServices.Protocols.VlvRequestControl.#ctor(System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L826C81-L831C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L826C81-L831C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.VlvRequestControl.#ctor(System.Int32,System.Int32,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L833C84-L842C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L833C84-L842C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.VlvRequestControl.#ctor(System.Int32,System.Int32,System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L844C84-L849C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L844C84-L849C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.VlvRequestControl.GetValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L947C13-L988C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L947C13-L988C36" }, { "DocsId": "P:System.DirectoryServices.Protocols.VlvRequestControl.BeforeCount", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L853C20-L853C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L853C20-L853C27" }, { "DocsId": "P:System.DirectoryServices.Protocols.VlvRequestControl.AfterCount", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L867C20-L867C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L867C20-L867C26" }, { "DocsId": "P:System.DirectoryServices.Protocols.VlvRequestControl.Offset", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L881C20-L881C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L881C20-L881C27" }, { "DocsId": "P:System.DirectoryServices.Protocols.VlvRequestControl.EstimateCount", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L895C20-L895C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L895C20-L895C34" }, { "DocsId": "P:System.DirectoryServices.Protocols.VlvRequestControl.Target", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L911C17-L921C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L911C17-L921C36" }, { "DocsId": "P:System.DirectoryServices.Protocols.VlvRequestControl.ContextId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L930C17-L940C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L930C17-L940C36" } ], "DocsId": "T:System.DirectoryServices.Protocols.VlvRequestControl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" }, { "Members": [ { "DocsId": "P:System.DirectoryServices.Protocols.VlvResponseControl.TargetPosition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L1004C37-L1004C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L1004C37-L1004C41" }, { "DocsId": "P:System.DirectoryServices.Protocols.VlvResponseControl.ContentCount", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L1006C35-L1006C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L1006C35-L1006C39" }, { "DocsId": "P:System.DirectoryServices.Protocols.VlvResponseControl.ContextId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L1012C17-L1022C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L1012C17-L1022C36" }, { "DocsId": "P:System.DirectoryServices.Protocols.VlvResponseControl.Result", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L1026C36-L1026C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L1026C36-L1026C40" } ], "DocsId": "T:System.DirectoryServices.Protocols.VlvResponseControl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.QuotaControl.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L1034C33-L1034C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L1034C33-L1034C86" }, { "DocsId": "M:System.DirectoryServices.Protocols.QuotaControl.#ctor(System.Security.Principal.SecurityIdentifier)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L1036C60-L1039C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L1036C60-L1039C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.QuotaControl.GetValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L1043C13-L1044C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L1043C13-L1044C36" }, { "DocsId": "P:System.DirectoryServices.Protocols.QuotaControl.QuerySid", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/QuotaControl.Linux.cs#L12C20-L12C117" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/QuotaControl.Linux.cs#L12C20-L12C117" } ], "DocsId": "T:System.DirectoryServices.Protocols.QuotaControl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryControlCollection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L1050C9-L1052C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L1050C9-L1052C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryControlCollection.Add(System.DirectoryServices.Protocols.DirectoryControl)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L1062C13-L1064C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L1062C13-L1064C38" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryControlCollection.AddRange(System.DirectoryServices.Protocols.DirectoryControl[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L1069C13-L1080C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L1069C13-L1080C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryControlCollection.AddRange(System.DirectoryServices.Protocols.DirectoryControlCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L1084C13-L1091C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L1084C13-L1091C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryControlCollection.Contains(System.DirectoryServices.Protocols.DirectoryControl)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L1093C57-L1093C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L1093C57-L1093C77" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryControlCollection.CopyTo(System.DirectoryServices.Protocols.DirectoryControl[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L1095C68-L1095C93" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L1095C68-L1095C93" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryControlCollection.IndexOf(System.DirectoryServices.Protocols.DirectoryControl)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L1097C55-L1097C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L1097C55-L1097C74" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryControlCollection.Insert(System.Int32,System.DirectoryServices.Protocols.DirectoryControl)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L1101C13-L1104C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L1101C13-L1104C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryControlCollection.Remove(System.DirectoryServices.Protocols.DirectoryControl)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L1106C55-L1106C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L1106C55-L1106C73" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryControlCollection.OnValidate(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L1110C13-L1116C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L1110C13-L1116C10" }, { "DocsId": "P:System.DirectoryServices.Protocols.DirectoryControlCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L1056C20-L1056C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L1056C20-L1056C49" } ], "DocsId": "T:System.DirectoryServices.Protocols.DirectoryControlCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryException.cs#L18C90-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryException.cs#L18C90-L20C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryException.cs#L22C70-L24C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryException.cs#L22C70-L24C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryException.cs#L26C53-L28C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryException.cs#L26C53-L28C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryException.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryException.cs#L30C39-L32C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryException.cs#L30C39-L32C10" } ], "DocsId": "T:System.DirectoryServices.Protocols.DirectoryException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryException.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryOperationException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryException.cs#L43C99-L43C122" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryException.cs#L43C99-L43C122" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryOperationException.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryException.cs#L45C48-L45C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryException.cs#L45C48-L45C83" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryOperationException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryException.cs#L47C62-L47C108" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryException.cs#L47C62-L47C108" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryOperationException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryException.cs#L49C79-L49C132" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryException.cs#L49C79-L49C132" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryOperationException.#ctor(System.DirectoryServices.Protocols.DirectoryResponse)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryException.cs#L52C13-L55C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryException.cs#L52C13-L55C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryOperationException.#ctor(System.DirectoryServices.Protocols.DirectoryResponse,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryException.cs#L58C15-L61C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryException.cs#L58C15-L61C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryOperationException.#ctor(System.DirectoryServices.Protocols.DirectoryResponse,System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryException.cs#L64C15-L67C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryException.cs#L64C15-L67C10" }, { "DocsId": "P:System.DirectoryServices.Protocols.DirectoryOperationException.Response", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryException.cs#L69C45-L69C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryException.cs#L69C45-L69C49" } ], "DocsId": "T:System.DirectoryServices.Protocols.DirectoryOperationException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryException.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.BerConversionException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryException.cs#L90C94-L90C117" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryException.cs#L90C94-L90C117" }, { "DocsId": "M:System.DirectoryServices.Protocols.BerConversionException.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryException.cs#L92C43-L94C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryException.cs#L92C43-L94C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.BerConversionException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryException.cs#L96C57-L98C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryException.cs#L96C57-L98C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.BerConversionException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryException.cs#L100C74-L102C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryException.cs#L100C74-L102C10" } ], "DocsId": "T:System.DirectoryServices.Protocols.BerConversionException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryException.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryIdentifier.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryIdentifier.cs#L10C9-L12C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryIdentifier.cs#L10C9-L12C10" } ], "DocsId": "T:System.DirectoryServices.Protocols.DirectoryIdentifier", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryIdentifier.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryIdentifier.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryOperation.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryOperation.cs#L10C9-L10C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryOperation.cs#L10C9-L10C43" } ], "DocsId": "T:System.DirectoryServices.Protocols.DirectoryOperation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryOperation.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryOperation.cs" }, { "Members": [ { "DocsId": "P:System.DirectoryServices.Protocols.DirectoryRequest.RequestId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L17C20-L17C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L17C20-L17C39" }, { "DocsId": "P:System.DirectoryServices.Protocols.DirectoryRequest.Controls", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L21C54-L21C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L21C54-L21C58" } ], "DocsId": "T:System.DirectoryServices.Protocols.DirectoryRequest", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.DeleteRequest.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L26C9-L26C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L26C9-L26C35" }, { "DocsId": "M:System.DirectoryServices.Protocols.DeleteRequest.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L28C9-L31C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L28C9-L31C10" }, { "DocsId": "P:System.DirectoryServices.Protocols.DeleteRequest.DistinguishedName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L33C43-L33C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L33C43-L33C47" } ], "DocsId": "T:System.DirectoryServices.Protocols.DeleteRequest", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.AddRequest.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L69C67-L38C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L69C67-L38C32" }, { "DocsId": "M:System.DirectoryServices.Protocols.AddRequest.#ctor(System.String,System.DirectoryServices.Protocols.DirectoryAttribute[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L40C95-L51C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L40C95-L51C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.AddRequest.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L53C75-L65C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L53C75-L65C10" }, { "DocsId": "P:System.DirectoryServices.Protocols.AddRequest.DistinguishedName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L67C43-L67C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L67C43-L67C47" }, { "DocsId": "P:System.DirectoryServices.Protocols.AddRequest.Attributes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L69C58-L69C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L69C58-L69C62" } ], "DocsId": "T:System.DirectoryServices.Protocols.AddRequest", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.ModifyRequest.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L105C82-L74C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L105C82-L74C35" }, { "DocsId": "M:System.DirectoryServices.Protocols.ModifyRequest.#ctor(System.String,System.DirectoryServices.Protocols.DirectoryAttributeModification[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L76C113-L80C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L76C113-L80C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.ModifyRequest.#ctor(System.String,System.DirectoryServices.Protocols.DirectoryAttributeOperation,System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L82C143-L101C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L82C143-L101C10" }, { "DocsId": "P:System.DirectoryServices.Protocols.ModifyRequest.DistinguishedName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L103C43-L103C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L103C43-L103C47" }, { "DocsId": "P:System.DirectoryServices.Protocols.ModifyRequest.Modifications", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L105C73-L105C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L105C73-L105C77" } ], "DocsId": "T:System.DirectoryServices.Protocols.ModifyRequest", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.CompareRequest.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L151C56-L110C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L151C56-L110C36" }, { "DocsId": "M:System.DirectoryServices.Protocols.CompareRequest.#ctor(System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L151C56-L115C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L151C56-L115C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.CompareRequest.#ctor(System.String,System.String,System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L151C56-L120C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L151C56-L120C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.CompareRequest.#ctor(System.String,System.String,System.Uri)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L151C56-L125C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L151C56-L125C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.CompareRequest.#ctor(System.String,System.DirectoryServices.Protocols.DirectoryAttribute)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L151C56-L137C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L151C56-L137C10" }, { "DocsId": "P:System.DirectoryServices.Protocols.CompareRequest.DistinguishedName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L149C43-L149C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L149C43-L149C47" }, { "DocsId": "P:System.DirectoryServices.Protocols.CompareRequest.Assertion", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L151C47-L151C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L151C47-L151C51" } ], "DocsId": "T:System.DirectoryServices.Protocols.CompareRequest", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.ModifyDNRequest.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L171C50-L156C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L171C50-L156C37" }, { "DocsId": "M:System.DirectoryServices.Protocols.ModifyDNRequest.#ctor(System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L171C50-L163C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L171C50-L163C10" }, { "DocsId": "P:System.DirectoryServices.Protocols.ModifyDNRequest.DistinguishedName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L165C43-L165C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L165C43-L165C47" }, { "DocsId": "P:System.DirectoryServices.Protocols.ModifyDNRequest.NewParentDistinguishedName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L167C52-L167C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L167C52-L167C56" }, { "DocsId": "P:System.DirectoryServices.Protocols.ModifyDNRequest.NewName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L169C33-L169C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L169C33-L169C37" }, { "DocsId": "P:System.DirectoryServices.Protocols.ModifyDNRequest.DeleteOldRdn", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L171C36-L171C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L171C36-L171C40" } ], "DocsId": "T:System.DirectoryServices.Protocols.ModifyDNRequest", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.ExtendedRequest.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L178C9-L178C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L178C9-L178C37" }, { "DocsId": "M:System.DirectoryServices.Protocols.ExtendedRequest.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L180C9-L183C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L180C9-L183C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.ExtendedRequest.#ctor(System.String,System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L185C75-L188C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L185C75-L188C10" }, { "DocsId": "P:System.DirectoryServices.Protocols.ExtendedRequest.RequestName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L190C37-L190C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L190C37-L190C41" }, { "DocsId": "P:System.DirectoryServices.Protocols.ExtendedRequest.RequestValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L196C17-L206C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L196C17-L206C34" } ], "DocsId": "T:System.DirectoryServices.Protocols.ExtendedRequest", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.SearchRequest.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L234C55-L214C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L234C55-L214C35" }, { "DocsId": "M:System.DirectoryServices.Protocols.SearchRequest.#ctor(System.String,System.String,System.DirectoryServices.Protocols.SearchScope,System.String[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L216C133-L230C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L216C133-L230C10" }, { "DocsId": "P:System.DirectoryServices.Protocols.SearchRequest.DistinguishedName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L232C43-L232C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L232C43-L232C47" }, { "DocsId": "P:System.DirectoryServices.Protocols.SearchRequest.Attributes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L234C46-L234C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L234C46-L234C50" }, { "DocsId": "P:System.DirectoryServices.Protocols.SearchRequest.Filter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L238C20-L238C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L238C20-L238C36" }, { "DocsId": "P:System.DirectoryServices.Protocols.SearchRequest.Scope", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L252C20-L252C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L252C20-L252C35" }, { "DocsId": "P:System.DirectoryServices.Protocols.SearchRequest.Aliases", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L266C20-L266C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L266C20-L266C38" }, { "DocsId": "P:System.DirectoryServices.Protocols.SearchRequest.SizeLimit", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L280C20-L280C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L280C20-L280C39" }, { "DocsId": "P:System.DirectoryServices.Protocols.SearchRequest.TimeLimit", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L294C20-L294C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L294C20-L294C39" }, { "DocsId": "P:System.DirectoryServices.Protocols.SearchRequest.TypesOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L312C33-L312C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L312C33-L312C37" } ], "DocsId": "T:System.DirectoryServices.Protocols.SearchRequest", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.DsmlAuthRequest.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L326C9-L326C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L326C9-L326C61" }, { "DocsId": "M:System.DirectoryServices.Protocols.DsmlAuthRequest.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L328C9-L328C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L328C9-L328C74" }, { "DocsId": "P:System.DirectoryServices.Protocols.DsmlAuthRequest.Principal", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L330C35-L330C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L330C35-L330C39" } ], "DocsId": "T:System.DirectoryServices.Protocols.DsmlAuthRequest", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs" }, { "Members": [ { "DocsId": "P:System.DirectoryServices.Protocols.DirectoryResponse.RequestId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryResponse.cs#L20C35-L20C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryResponse.cs#L20C35-L20C39" }, { "DocsId": "P:System.DirectoryServices.Protocols.DirectoryResponse.MatchedDN", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryResponse.cs#L22C43-L22C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryResponse.cs#L22C43-L22C47" }, { "DocsId": "P:System.DirectoryServices.Protocols.DirectoryResponse.Controls", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryResponse.cs#L28C17-L39C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryResponse.cs#L28C17-L39C37" }, { "DocsId": "P:System.DirectoryServices.Protocols.DirectoryResponse.ResultCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryResponse.cs#L43C48-L43C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryResponse.cs#L43C48-L43C52" }, { "DocsId": "P:System.DirectoryServices.Protocols.DirectoryResponse.ErrorMessage", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryResponse.cs#L45C46-L45C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryResponse.cs#L45C46-L45C50" }, { "DocsId": "P:System.DirectoryServices.Protocols.DirectoryResponse.Referral", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryResponse.cs#L51C17-L61C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryResponse.cs#L51C17-L61C37" } ], "DocsId": "T:System.DirectoryServices.Protocols.DirectoryResponse", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryResponse.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryResponse.cs" }, { "Members": [], "DocsId": "T:System.DirectoryServices.Protocols.DeleteResponse", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryResponse.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryResponse.cs" }, { "Members": [], "DocsId": "T:System.DirectoryServices.Protocols.AddResponse", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryResponse.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryResponse.cs" }, { "Members": [], "DocsId": "T:System.DirectoryServices.Protocols.ModifyResponse", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryResponse.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryResponse.cs" }, { "Members": [], "DocsId": "T:System.DirectoryServices.Protocols.ModifyDNResponse", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryResponse.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryResponse.cs" }, { "Members": [], "DocsId": "T:System.DirectoryServices.Protocols.CompareResponse", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryResponse.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryResponse.cs" }, { "Members": [ { "DocsId": "P:System.DirectoryServices.Protocols.ExtendedResponse.ResponseName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryResponse.cs#L97C38-L97C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryResponse.cs#L97C38-L97C42" }, { "DocsId": "P:System.DirectoryServices.Protocols.ExtendedResponse.ResponseValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryResponse.cs#L103C17-L113C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryResponse.cs#L103C17-L113C33" } ], "DocsId": "T:System.DirectoryServices.Protocols.ExtendedResponse", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryResponse.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryResponse.cs" }, { "Members": [ { "DocsId": "P:System.DirectoryServices.Protocols.SearchResponse.References", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryResponse.cs#L128C20-L128C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryResponse.cs#L128C20-L128C40" }, { "DocsId": "P:System.DirectoryServices.Protocols.SearchResponse.Entries", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryResponse.cs#L134C20-L134C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryResponse.cs#L134C20-L134C36" } ], "DocsId": "T:System.DirectoryServices.Protocols.SearchResponse", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryResponse.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryResponse.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.PartialResultsCollection.Contains(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/PartialResultsCollection.cs#L16C47-L16C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/PartialResultsCollection.cs#L16C47-L16C72" }, { "DocsId": "M:System.DirectoryServices.Protocols.PartialResultsCollection.IndexOf(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/PartialResultsCollection.cs#L18C45-L18C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/PartialResultsCollection.cs#L18C45-L18C69" }, { "DocsId": "M:System.DirectoryServices.Protocols.PartialResultsCollection.CopyTo(System.Object[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/PartialResultsCollection.cs#L20C59-L20C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/PartialResultsCollection.cs#L20C59-L20C90" }, { "DocsId": "P:System.DirectoryServices.Protocols.PartialResultsCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/PartialResultsCollection.cs#L12C42-L12C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/PartialResultsCollection.cs#L12C42-L12C58" } ], "DocsId": "T:System.DirectoryServices.Protocols.PartialResultsCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/PartialResultsCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/PartialResultsCollection.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.Protocols.ReferralChasingOptions.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ReferralChasingOption.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ReferralChasingOption.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ReferralChasingOptions.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ReferralChasingOption.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ReferralChasingOption.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ReferralChasingOptions.Subordinate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ReferralChasingOption.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ReferralChasingOption.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ReferralChasingOptions.External", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ReferralChasingOption.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ReferralChasingOption.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ReferralChasingOptions.All", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ReferralChasingOption.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ReferralChasingOption.cs" } ], "DocsId": "T:System.DirectoryServices.Protocols.ReferralChasingOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ReferralChasingOption.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ReferralChasingOption.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.Protocols.ResultCode.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ResultCode.Success", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ResultCode.OperationsError", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ResultCode.ProtocolError", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ResultCode.TimeLimitExceeded", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ResultCode.SizeLimitExceeded", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ResultCode.CompareFalse", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ResultCode.CompareTrue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ResultCode.AuthMethodNotSupported", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ResultCode.StrongAuthRequired", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ResultCode.ReferralV2", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ResultCode.Referral", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ResultCode.AdminLimitExceeded", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ResultCode.UnavailableCriticalExtension", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ResultCode.ConfidentialityRequired", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ResultCode.SaslBindInProgress", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ResultCode.NoSuchAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ResultCode.UndefinedAttributeType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ResultCode.InappropriateMatching", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ResultCode.ConstraintViolation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ResultCode.AttributeOrValueExists", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ResultCode.InvalidAttributeSyntax", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ResultCode.NoSuchObject", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ResultCode.AliasProblem", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ResultCode.InvalidDNSyntax", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ResultCode.AliasDereferencingProblem", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ResultCode.InappropriateAuthentication", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ResultCode.InsufficientAccessRights", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ResultCode.Busy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ResultCode.Unavailable", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ResultCode.UnwillingToPerform", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ResultCode.LoopDetect", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ResultCode.SortControlMissing", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ResultCode.OffsetRangeError", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ResultCode.NamingViolation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ResultCode.ObjectClassViolation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ResultCode.NotAllowedOnNonLeaf", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ResultCode.NotAllowedOnRdn", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ResultCode.EntryAlreadyExists", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ResultCode.ObjectClassModificationsProhibited", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ResultCode.ResultsTooLarge", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ResultCode.AffectsMultipleDsas", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ResultCode.VirtualListViewError", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ResultCode.Other", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" } ], "DocsId": "T:System.DirectoryServices.Protocols.ResultCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" }, { "Members": [ { "DocsId": "P:System.DirectoryServices.Protocols.SearchResultReference.Reference", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/SearchResults.cs#L18C17-L28C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/SearchResults.cs#L18C17-L28C32" }, { "DocsId": "P:System.DirectoryServices.Protocols.SearchResultReference.Controls", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/SearchResults.cs#L32C47-L32C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/SearchResults.cs#L32C47-L32C78" } ], "DocsId": "T:System.DirectoryServices.Protocols.SearchResultReference", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/SearchResults.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/SearchResults.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.SearchResultReferenceCollection.Contains(System.DirectoryServices.Protocols.SearchResultReference)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/SearchResults.cs#L43C62-L43C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/SearchResults.cs#L43C62-L43C87" }, { "DocsId": "M:System.DirectoryServices.Protocols.SearchResultReferenceCollection.IndexOf(System.DirectoryServices.Protocols.SearchResultReference)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/SearchResults.cs#L45C60-L45C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/SearchResults.cs#L45C60-L45C84" }, { "DocsId": "M:System.DirectoryServices.Protocols.SearchResultReferenceCollection.CopyTo(System.DirectoryServices.Protocols.SearchResultReference[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/SearchResults.cs#L47C74-L47C105" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/SearchResults.cs#L47C74-L47C105" }, { "DocsId": "P:System.DirectoryServices.Protocols.SearchResultReferenceCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/SearchResults.cs#L39C57-L39C96" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/SearchResults.cs#L39C57-L39C96" } ], "DocsId": "T:System.DirectoryServices.Protocols.SearchResultReferenceCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/SearchResults.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/SearchResults.cs" }, { "Members": [ { "DocsId": "P:System.DirectoryServices.Protocols.SearchResultEntry.DistinguishedName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/SearchResults.cs#L62C43-L62C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/SearchResults.cs#L62C43-L62C47" }, { "DocsId": "P:System.DirectoryServices.Protocols.SearchResultEntry.Attributes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/SearchResults.cs#L64C61-L64C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/SearchResults.cs#L64C61-L64C65" }, { "DocsId": "P:System.DirectoryServices.Protocols.SearchResultEntry.Controls", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/SearchResults.cs#L66C47-L66C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/SearchResults.cs#L66C47-L66C78" } ], "DocsId": "T:System.DirectoryServices.Protocols.SearchResultEntry", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/SearchResults.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/SearchResults.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.SearchResultEntryCollection.Contains(System.DirectoryServices.Protocols.SearchResultEntry)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/SearchResults.cs#L77C58-L77C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/SearchResults.cs#L77C58-L77C83" }, { "DocsId": "M:System.DirectoryServices.Protocols.SearchResultEntryCollection.IndexOf(System.DirectoryServices.Protocols.SearchResultEntry)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/SearchResults.cs#L79C56-L79C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/SearchResults.cs#L79C56-L79C80" }, { "DocsId": "M:System.DirectoryServices.Protocols.SearchResultEntryCollection.CopyTo(System.DirectoryServices.Protocols.SearchResultEntry[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/SearchResults.cs#L81C70-L81C101" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/SearchResults.cs#L81C70-L81C101" }, { "DocsId": "P:System.DirectoryServices.Protocols.SearchResultEntryCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/SearchResults.cs#L73C53-L73C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/SearchResults.cs#L73C53-L73C88" } ], "DocsId": "T:System.DirectoryServices.Protocols.SearchResultEntryCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/SearchResults.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/SearchResults.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.Protocols.SearchScope.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/SearchScope.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/SearchScope.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.SearchScope.Base", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/SearchScope.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/SearchScope.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.SearchScope.OneLevel", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/SearchScope.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/SearchScope.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.SearchScope.Subtree", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/SearchScope.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/SearchScope.cs" } ], "DocsId": "T:System.DirectoryServices.Protocols.SearchScope", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/SearchScope.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/SearchScope.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.LdapConnection.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapConnection.cs#L54C48-L56C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapConnection.cs#L54C48-L56C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.LdapConnection.#ctor(System.DirectoryServices.Protocols.LdapDirectoryIdentifier)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapConnection.cs#L58C69-L60C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapConnection.cs#L58C69-L60C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.LdapConnection.#ctor(System.DirectoryServices.Protocols.LdapDirectoryIdentifier,System.Net.NetworkCredential)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapConnection.cs#L62C99-L64C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapConnection.cs#L62C99-L64C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.LdapConnection.#ctor(System.DirectoryServices.Protocols.LdapDirectoryIdentifier,System.Net.NetworkCredential,System.DirectoryServices.Protocols.AuthType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapConnection.cs#L45C9-L87C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapConnection.cs#L45C9-L87C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.LdapConnection.Finalize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapConnection.cs#L100C30-L100C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapConnection.cs#L100C30-L16707566C0" }, { "DocsId": "M:System.DirectoryServices.Protocols.LdapConnection.SendRequest(System.DirectoryServices.Protocols.DirectoryRequest)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapConnection.cs#L193C13-L193C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapConnection.cs#L193C13-L193C61" }, { "DocsId": "M:System.DirectoryServices.Protocols.LdapConnection.SendRequest(System.DirectoryServices.Protocols.DirectoryRequest,System.TimeSpan)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapConnection.cs#L198C13-L260C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapConnection.cs#L198C13-L260C60" }, { "DocsId": "M:System.DirectoryServices.Protocols.LdapConnection.BeginSendRequest(System.DirectoryServices.Protocols.DirectoryRequest,System.DirectoryServices.Protocols.PartialResultProcessing,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapConnection.cs#L266C13-L266C96" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapConnection.cs#L266C13-L266C96" }, { "DocsId": "M:System.DirectoryServices.Protocols.LdapConnection.BeginSendRequest(System.DirectoryServices.Protocols.DirectoryRequest,System.TimeSpan,System.DirectoryServices.Protocols.PartialResultProcessing,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapConnection.cs#L271C13-L386C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapConnection.cs#L271C13-L386C56" }, { "DocsId": "M:System.DirectoryServices.Protocols.LdapConnection.Abort(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapConnection.cs#L391C13-L435C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapConnection.cs#L391C13-L435C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.LdapConnection.GetPartialResults(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapConnection.cs#L439C13-L459C101" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapConnection.cs#L439C13-L459C101" }, { "DocsId": "M:System.DirectoryServices.Protocols.LdapConnection.EndSendRequest(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapConnection.cs#L464C13-L506C101" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapConnection.cs#L464C13-L506C101" }, { "DocsId": "M:System.DirectoryServices.Protocols.LdapConnection.Bind", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapConnection.cs#L1005C31-L1005C89" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapConnection.cs#L1005C31-L1005C89" }, { "DocsId": "M:System.DirectoryServices.Protocols.LdapConnection.Bind(System.Net.NetworkCredential)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapConnection.cs#L1007C62-L1007C112" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapConnection.cs#L1007C62-L1007C112" }, { "DocsId": "M:System.DirectoryServices.Protocols.LdapConnection.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapConnection.cs#L1163C13-L1165C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapConnection.cs#L1163C13-L1165C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.LdapConnection.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapConnection.cs#L1169C13-L1189C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapConnection.cs#L1169C13-L1189C10" }, { "DocsId": "P:System.DirectoryServices.Protocols.LdapConnection.Timeout", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapConnection.cs#L104C20-L104C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapConnection.cs#L104C20-L104C38" }, { "DocsId": "P:System.DirectoryServices.Protocols.LdapConnection.AuthType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapConnection.cs#L124C20-L124C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapConnection.cs#L124C20-L124C39" }, { "DocsId": "P:System.DirectoryServices.Protocols.LdapConnection.SessionOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapConnection.cs#L143C52-L143C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapConnection.cs#L143C52-L143C56" }, { "DocsId": "P:System.DirectoryServices.Protocols.LdapConnection.Credential", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapConnection.cs#L149C17-L155C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapConnection.cs#L149C17-L155C14" }, { "DocsId": "P:System.DirectoryServices.Protocols.LdapConnection.AutoBind", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapConnection.cs#L158C32-L158C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapConnection.cs#L158C32-L158C36" } ], "DocsId": "T:System.DirectoryServices.Protocols.LdapConnection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapConnection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapConnection.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.LdapDirectoryIdentifier.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapDirectoryIdentifier.cs#L10C57-L12C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapDirectoryIdentifier.cs#L10C57-L12C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.LdapDirectoryIdentifier.#ctor(System.String,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapDirectoryIdentifier.cs#L14C73-L16C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapDirectoryIdentifier.cs#L14C73-L16C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.LdapDirectoryIdentifier.#ctor(System.String,System.Boolean,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapDirectoryIdentifier.cs#L18C110-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapDirectoryIdentifier.cs#L18C110-L20C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.LdapDirectoryIdentifier.#ctor(System.String,System.Int32,System.Boolean,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapDirectoryIdentifier.cs#L22C126-L24C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapDirectoryIdentifier.cs#L22C126-L24C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.LdapDirectoryIdentifier.#ctor(System.String[],System.Boolean,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapDirectoryIdentifier.cs#L63C42-L50C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapDirectoryIdentifier.cs#L63C42-L50C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.LdapDirectoryIdentifier.#ctor(System.String[],System.Int32,System.Boolean,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapDirectoryIdentifier.cs#L52C129-L55C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapDirectoryIdentifier.cs#L52C129-L55C10" }, { "DocsId": "P:System.DirectoryServices.Protocols.LdapDirectoryIdentifier.Servers", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapDirectoryIdentifier.cs#L57C36-L57C107" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapDirectoryIdentifier.cs#L57C36-L57C107" }, { "DocsId": "P:System.DirectoryServices.Protocols.LdapDirectoryIdentifier.Connectionless", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapDirectoryIdentifier.cs#L59C38-L59C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapDirectoryIdentifier.cs#L59C38-L59C42" }, { "DocsId": "P:System.DirectoryServices.Protocols.LdapDirectoryIdentifier.FullyQualifiedDnsHostName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapDirectoryIdentifier.cs#L61C49-L61C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapDirectoryIdentifier.cs#L61C49-L61C53" }, { "DocsId": "P:System.DirectoryServices.Protocols.LdapDirectoryIdentifier.PortNumber", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapDirectoryIdentifier.cs#L63C33-L63C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapDirectoryIdentifier.cs#L63C33-L63C37" } ], "DocsId": "T:System.DirectoryServices.Protocols.LdapDirectoryIdentifier", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapDirectoryIdentifier.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapDirectoryIdentifier.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.LdapException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapException.cs#L141C67-L100C108" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapException.cs#L141C67-L100C108" }, { "DocsId": "M:System.DirectoryServices.Protocols.LdapException.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapException.cs#L141C67-L102C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapException.cs#L141C67-L102C44" }, { "DocsId": "M:System.DirectoryServices.Protocols.LdapException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapException.cs#L141C67-L104C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapException.cs#L141C67-L104C65" }, { "DocsId": "M:System.DirectoryServices.Protocols.LdapException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapException.cs#L141C67-L106C89" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapException.cs#L141C67-L106C89" }, { "DocsId": "M:System.DirectoryServices.Protocols.LdapException.#ctor(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapException.cs#L141C67-L112C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapException.cs#L141C67-L112C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.LdapException.#ctor(System.Int32,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapException.cs#L141C67-L117C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapException.cs#L141C67-L117C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.LdapException.#ctor(System.Int32,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapException.cs#L141C67-L123C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapException.cs#L141C67-L123C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.LdapException.#ctor(System.Int32,System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapException.cs#L141C67-L128C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapException.cs#L141C67-L128C10" }, { "DocsId": "P:System.DirectoryServices.Protocols.LdapException.ErrorCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapException.cs#L132C20-L132C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapException.cs#L132C20-L132C30" }, { "DocsId": "P:System.DirectoryServices.Protocols.LdapException.ServerErrorMessage", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapException.cs#L139C44-L139C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapException.cs#L139C44-L139C48" }, { "DocsId": "P:System.DirectoryServices.Protocols.LdapException.PartialResults", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapException.cs#L141C58-L141C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapException.cs#L141C58-L141C62" } ], "DocsId": "T:System.DirectoryServices.Protocols.LdapException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapException.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.TlsOperationException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapException.cs#L152C93-L152C116" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapException.cs#L152C93-L152C116" }, { "DocsId": "M:System.DirectoryServices.Protocols.TlsOperationException.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapException.cs#L154C42-L154C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapException.cs#L154C42-L154C52" }, { "DocsId": "M:System.DirectoryServices.Protocols.TlsOperationException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapException.cs#L156C56-L156C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapException.cs#L156C56-L156C73" }, { "DocsId": "M:System.DirectoryServices.Protocols.TlsOperationException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapException.cs#L158C73-L158C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapException.cs#L158C73-L158C97" }, { "DocsId": "M:System.DirectoryServices.Protocols.TlsOperationException.#ctor(System.DirectoryServices.Protocols.DirectoryResponse)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapException.cs#L160C68-L162C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapException.cs#L160C68-L162C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.TlsOperationException.#ctor(System.DirectoryServices.Protocols.DirectoryResponse,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapException.cs#L164C84-L166C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapException.cs#L164C84-L166C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.TlsOperationException.#ctor(System.DirectoryServices.Protocols.DirectoryResponse,System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapException.cs#L168C101-L170C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapException.cs#L168C101-L170C10" } ], "DocsId": "T:System.DirectoryServices.Protocols.TlsOperationException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapException.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.QueryForConnectionCallback.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "DocsId": "M:System.DirectoryServices.Protocols.QueryForConnectionCallback.Invoke(System.DirectoryServices.Protocols.LdapConnection,System.DirectoryServices.Protocols.LdapConnection,System.String,System.DirectoryServices.Protocols.LdapDirectoryIdentifier,System.Net.NetworkCredential,System.Int64)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "DocsId": "M:System.DirectoryServices.Protocols.QueryForConnectionCallback.BeginInvoke(System.DirectoryServices.Protocols.LdapConnection,System.DirectoryServices.Protocols.LdapConnection,System.String,System.DirectoryServices.Protocols.LdapDirectoryIdentifier,System.Net.NetworkCredential,System.Int64,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "DocsId": "M:System.DirectoryServices.Protocols.QueryForConnectionCallback.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" } ], "DocsId": "T:System.DirectoryServices.Protocols.QueryForConnectionCallback", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.NotifyOfNewConnectionCallback.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "DocsId": "M:System.DirectoryServices.Protocols.NotifyOfNewConnectionCallback.Invoke(System.DirectoryServices.Protocols.LdapConnection,System.DirectoryServices.Protocols.LdapConnection,System.String,System.DirectoryServices.Protocols.LdapDirectoryIdentifier,System.DirectoryServices.Protocols.LdapConnection,System.Net.NetworkCredential,System.Int64,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "DocsId": "M:System.DirectoryServices.Protocols.NotifyOfNewConnectionCallback.BeginInvoke(System.DirectoryServices.Protocols.LdapConnection,System.DirectoryServices.Protocols.LdapConnection,System.String,System.DirectoryServices.Protocols.LdapDirectoryIdentifier,System.DirectoryServices.Protocols.LdapConnection,System.Net.NetworkCredential,System.Int64,System.Int32,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "DocsId": "M:System.DirectoryServices.Protocols.NotifyOfNewConnectionCallback.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" } ], "DocsId": "T:System.DirectoryServices.Protocols.NotifyOfNewConnectionCallback", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.DereferenceConnectionCallback.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "DocsId": "M:System.DirectoryServices.Protocols.DereferenceConnectionCallback.Invoke(System.DirectoryServices.Protocols.LdapConnection,System.DirectoryServices.Protocols.LdapConnection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "DocsId": "M:System.DirectoryServices.Protocols.DereferenceConnectionCallback.BeginInvoke(System.DirectoryServices.Protocols.LdapConnection,System.DirectoryServices.Protocols.LdapConnection,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "DocsId": "M:System.DirectoryServices.Protocols.DereferenceConnectionCallback.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" } ], "DocsId": "T:System.DirectoryServices.Protocols.DereferenceConnectionCallback", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.QueryClientCertificateCallback.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "DocsId": "M:System.DirectoryServices.Protocols.QueryClientCertificateCallback.Invoke(System.DirectoryServices.Protocols.LdapConnection,System.Byte[][])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "DocsId": "M:System.DirectoryServices.Protocols.QueryClientCertificateCallback.BeginInvoke(System.DirectoryServices.Protocols.LdapConnection,System.Byte[][],System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "DocsId": "M:System.DirectoryServices.Protocols.QueryClientCertificateCallback.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" } ], "DocsId": "T:System.DirectoryServices.Protocols.QueryClientCertificateCallback", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.VerifyServerCertificateCallback.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "DocsId": "M:System.DirectoryServices.Protocols.VerifyServerCertificateCallback.Invoke(System.DirectoryServices.Protocols.LdapConnection,System.Security.Cryptography.X509Certificates.X509Certificate)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "DocsId": "M:System.DirectoryServices.Protocols.VerifyServerCertificateCallback.BeginInvoke(System.DirectoryServices.Protocols.LdapConnection,System.Security.Cryptography.X509Certificates.X509Certificate,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "DocsId": "M:System.DirectoryServices.Protocols.VerifyServerCertificateCallback.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" } ], "DocsId": "T:System.DirectoryServices.Protocols.VerifyServerCertificateCallback", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.Protocols.LocatorFlags.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.LocatorFlags.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.LocatorFlags.ForceRediscovery", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.LocatorFlags.DirectoryServicesRequired", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.LocatorFlags.DirectoryServicesPreferred", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.LocatorFlags.GCRequired", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.LocatorFlags.PdcRequired", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.LocatorFlags.IPRequired", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.LocatorFlags.KdcRequired", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.LocatorFlags.TimeServerRequired", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.LocatorFlags.WriteableRequired", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.LocatorFlags.GoodTimeServerPreferred", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.LocatorFlags.AvoidSelf", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.LocatorFlags.OnlyLdapNeeded", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.LocatorFlags.IsFlatName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.LocatorFlags.IsDnsName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.LocatorFlags.ReturnDnsName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.LocatorFlags.ReturnFlatName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" } ], "DocsId": "T:System.DirectoryServices.Protocols.LocatorFlags", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.Protocols.SecurityProtocol.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.SecurityProtocol.Pct1Server", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.SecurityProtocol.Pct1Client", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.SecurityProtocol.Ssl2Server", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.SecurityProtocol.Ssl2Client", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.SecurityProtocol.Ssl3Server", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.SecurityProtocol.Ssl3Client", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.SecurityProtocol.Tls1Server", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.SecurityProtocol.Tls1Client", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" } ], "DocsId": "T:System.DirectoryServices.Protocols.SecurityProtocol", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "Members": [ { "DocsId": "P:System.DirectoryServices.Protocols.SecurityPackageContextConnectionInformation.Protocol", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L85C45-L85C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L85C45-L85C62" }, { "DocsId": "P:System.DirectoryServices.Protocols.SecurityPackageContextConnectionInformation.AlgorithmIdentifier", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L87C59-L87C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L87C59-L87C70" }, { "DocsId": "P:System.DirectoryServices.Protocols.SecurityPackageContextConnectionInformation.CipherStrength", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L89C38-L89C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L89C38-L89C47" }, { "DocsId": "P:System.DirectoryServices.Protocols.SecurityPackageContextConnectionInformation.Hash", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L91C42-L91C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L91C42-L91C56" }, { "DocsId": "P:System.DirectoryServices.Protocols.SecurityPackageContextConnectionInformation.HashStrength", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L93C36-L93C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L93C36-L93C49" }, { "DocsId": "P:System.DirectoryServices.Protocols.SecurityPackageContextConnectionInformation.KeyExchangeAlgorithm", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L95C44-L95C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L95C44-L95C65" }, { "DocsId": "P:System.DirectoryServices.Protocols.SecurityPackageContextConnectionInformation.ExchangeStrength", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L97C40-L97C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L97C40-L97C57" } ], "DocsId": "T:System.DirectoryServices.Protocols.SecurityPackageContextConnectionInformation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.ReferralCallback.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L104C9-L106C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L104C9-L106C10" }, { "DocsId": "P:System.DirectoryServices.Protocols.ReferralCallback.QueryForConnection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L108C64-L108C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L108C64-L108C68" }, { "DocsId": "P:System.DirectoryServices.Protocols.ReferralCallback.NotifyNewConnection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L110C68-L110C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L110C68-L110C72" }, { "DocsId": "P:System.DirectoryServices.Protocols.ReferralCallback.DereferenceConnection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L112C70-L112C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L112C70-L112C74" } ], "DocsId": "T:System.DirectoryServices.Protocols.ReferralCallback", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.LdapSessionOptions.FastConcurrentBind", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L522C13-L535C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L522C13-L535C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.LdapSessionOptions.StartTransportLayerSecurity(System.DirectoryServices.Protocols.DirectoryControlCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L539C13-L725C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L539C13-L725C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.LdapSessionOptions.StopTransportLayerSecurity", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L729C13-L739C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L729C13-L739C10" }, { "DocsId": "P:System.DirectoryServices.Protocols.LdapSessionOptions.ReferralHopLimit", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L144C20-L144C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L144C20-L144C77" }, { "DocsId": "P:System.DirectoryServices.Protocols.LdapSessionOptions.HostName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L158C20-L158C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L158C20-L158C78" }, { "DocsId": "P:System.DirectoryServices.Protocols.LdapSessionOptions.DomainName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L164C20-L164C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L164C20-L164C82" }, { "DocsId": "P:System.DirectoryServices.Protocols.LdapSessionOptions.LocatorFlag", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L172C17-L173C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L172C17-L173C45" }, { "DocsId": "P:System.DirectoryServices.Protocols.LdapSessionOptions.HostReachable", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L187C17-L188C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L187C17-L188C38" }, { "DocsId": "P:System.DirectoryServices.Protocols.LdapSessionOptions.PingKeepAliveTimeout", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L196C17-L197C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L196C17-L197C71" }, { "DocsId": "P:System.DirectoryServices.Protocols.LdapSessionOptions.PingLimit", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L219C20-L219C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L219C20-L219C69" }, { "DocsId": "P:System.DirectoryServices.Protocols.LdapSessionOptions.PingWaitTimeout", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L235C17-L236C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L235C17-L236C76" }, { "DocsId": "P:System.DirectoryServices.Protocols.LdapSessionOptions.AutoReconnect", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L260C17-L261C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L260C17-L261C38" }, { "DocsId": "P:System.DirectoryServices.Protocols.LdapSessionOptions.SspiFlag", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L272C20-L272C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L272C20-L272C69" }, { "DocsId": "P:System.DirectoryServices.Protocols.LdapSessionOptions.SslInformation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L280C17-L289C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L280C17-L289C32" }, { "DocsId": "P:System.DirectoryServices.Protocols.LdapSessionOptions.SecurityContext", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L297C17-L307C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L297C17-L307C35" }, { "DocsId": "P:System.DirectoryServices.Protocols.LdapSessionOptions.Signing", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L315C17-L316C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L315C17-L316C38" }, { "DocsId": "P:System.DirectoryServices.Protocols.LdapSessionOptions.Sealing", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L329C17-L330C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L329C17-L330C38" }, { "DocsId": "P:System.DirectoryServices.Protocols.LdapSessionOptions.SaslMethod", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L341C20-L341C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L341C20-L341C79" }, { "DocsId": "P:System.DirectoryServices.Protocols.LdapSessionOptions.RootDseCache", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L349C17-L350C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L349C17-L350C38" }, { "DocsId": "P:System.DirectoryServices.Protocols.LdapSessionOptions.TcpKeepAlive", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L363C17-L364C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L363C17-L364C38" }, { "DocsId": "P:System.DirectoryServices.Protocols.LdapSessionOptions.SendTimeout", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L377C17-L378C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L377C17-L378C71" }, { "DocsId": "P:System.DirectoryServices.Protocols.LdapSessionOptions.ReferralCallback", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L402C17-L407C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L402C17-L407C41" }, { "DocsId": "P:System.DirectoryServices.Protocols.LdapSessionOptions.QueryClientCertificate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L440C17-L445C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L440C17-L445C51" }, { "DocsId": "P:System.DirectoryServices.Protocols.LdapSessionOptions.VerifyServerCertificate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L482C17-L487C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L482C17-L487C51" }, { "DocsId": "P:System.DirectoryServices.Protocols.LdapSessionOptions.SecureSocketLayer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.Linux.cs#L18C17-L19C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.Linux.cs#L18C17-L19C43" }, { "DocsId": "P:System.DirectoryServices.Protocols.LdapSessionOptions.ProtocolVersion", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.Linux.cs#L30C20-L30C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.Linux.cs#L30C20-L30C76" }, { "DocsId": "P:System.DirectoryServices.Protocols.LdapSessionOptions.ReferralChasing", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.Linux.cs#L38C17-L38C133" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.Linux.cs#L38C17-L38C133" } ], "DocsId": "T:System.DirectoryServices.Protocols.LdapSessionOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/System.DirectoryServices.json b/xml/SourceLinkInformation/net-8.0/System.DirectoryServices.json index fcd6520715d..93b85e8e263 100644 --- a/xml/SourceLinkInformation/net-8.0/System.DirectoryServices.json +++ b/xml/SourceLinkInformation/net-8.0/System.DirectoryServices.json @@ -1,5931 +1,5930 @@ { "Assembly": "System.DirectoryServices", - "GUID": "5025A50F6C78402D8EC632A60BEA2164FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "BD2B312A82DF4517992BB1D7A2499DA3FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "F:System.DirectoryServices.ActiveDirectoryRights.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectoryRights.Delete", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectoryRights.ReadControl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectoryRights.WriteDacl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectoryRights.WriteOwner", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectoryRights.Synchronize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectoryRights.AccessSystemSecurity", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectoryRights.GenericRead", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectoryRights.GenericWrite", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectoryRights.GenericExecute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectoryRights.GenericAll", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectoryRights.CreateChild", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectoryRights.DeleteChild", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectoryRights.ListChildren", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectoryRights.Self", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectoryRights.ReadProperty", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectoryRights.WriteProperty", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectoryRights.DeleteTree", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectoryRights.ListObject", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectoryRights.ExtendedRight", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectoryRights", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.ActiveDirectorySecurityInheritance.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectorySecurityInheritance.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectorySecurityInheritance.All", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectorySecurityInheritance.Descendents", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectorySecurityInheritance.SelfAndChildren", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectorySecurityInheritance.Children", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectorySecurityInheritance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.PropertyAccess.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "DocsId": "F:System.DirectoryServices.PropertyAccess.Read", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "DocsId": "F:System.DirectoryServices.PropertyAccess.Write", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" } ], "DocsId": "T:System.DirectoryServices.PropertyAccess", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectorySecurity.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L52C9-L58C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L52C9-L58C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectorySecurity.AddAccessRule(System.DirectoryServices.ActiveDirectoryAccessRule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L76C13-L82C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L76C13-L82C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectorySecurity.SetAccessRule(System.DirectoryServices.ActiveDirectoryAccessRule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L86C13-L92C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L86C13-L92C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectorySecurity.ResetAccessRule(System.DirectoryServices.ActiveDirectoryAccessRule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L96C13-L102C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L96C13-L102C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectorySecurity.RemoveAccess(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L106C13-L121C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L106C13-L121C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectorySecurity.RemoveAccessRule(System.DirectoryServices.ActiveDirectoryAccessRule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L125C13-L130C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L125C13-L130C48" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectorySecurity.RemoveAccessRuleSpecific(System.DirectoryServices.ActiveDirectoryAccessRule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L135C13-L141C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L135C13-L141C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectorySecurity.ModifyAccessRule(System.Security.AccessControl.AccessControlModification,System.Security.AccessControl.AccessRule,System.Boolean@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L145C13-L150C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L145C13-L150C76" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectorySecurity.PurgeAccessRules(System.Security.Principal.IdentityReference)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L155C13-L161C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L155C13-L161C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectorySecurity.AddAuditRule(System.DirectoryServices.ActiveDirectoryAuditRule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L168C13-L174C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L168C13-L174C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectorySecurity.SetAuditRule(System.DirectoryServices.ActiveDirectoryAuditRule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L178C13-L184C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L178C13-L184C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectorySecurity.RemoveAudit(System.Security.Principal.IdentityReference)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L188C13-L203C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L188C13-L203C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectorySecurity.RemoveAuditRule(System.DirectoryServices.ActiveDirectoryAuditRule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L207C13-L212C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L207C13-L212C47" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectorySecurity.RemoveAuditRuleSpecific(System.DirectoryServices.ActiveDirectoryAuditRule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L217C13-L223C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L217C13-L223C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectorySecurity.ModifyAuditRule(System.Security.AccessControl.AccessControlModification,System.Security.AccessControl.AuditRule,System.Boolean@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L227C13-L232C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L227C13-L232C75" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectorySecurity.PurgeAuditRules(System.Security.Principal.IdentityReference)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L237C13-L243C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L237C13-L243C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectorySecurity.AccessRuleFactory(System.Security.Principal.IdentityReference,System.Int32,System.Boolean,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Security.AccessControl.AccessControlType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L257C13-L265C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L257C13-L265C29" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectorySecurity.AccessRuleFactory(System.Security.Principal.IdentityReference,System.Int32,System.Boolean,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Security.AccessControl.AccessControlType,System.Guid,System.Guid)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L278C13-L286C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L278C13-L286C38" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectorySecurity.AuditRuleFactory(System.Security.Principal.IdentityReference,System.Int32,System.Boolean,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Security.AccessControl.AuditFlags)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L297C13-L305C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L297C13-L305C29" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectorySecurity.AuditRuleFactory(System.Security.Principal.IdentityReference,System.Int32,System.Boolean,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Security.AccessControl.AuditFlags,System.Guid,System.Guid)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L318C13-L326C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L318C13-L326C38" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectorySecurity.AccessRightType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L357C49-L357C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L357C49-L357C78" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectorySecurity.AccessRuleType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L359C48-L359C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L359C48-L359C81" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectorySecurity.AuditRuleType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L361C47-L361C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L361C47-L361C79" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectorySecurity", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectoryAccessRule.#ctor(System.Security.Principal.IdentityReference,System.DirectoryServices.ActiveDirectoryRights,System.Security.AccessControl.AccessControlType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L529C15-L540C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L529C15-L540C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectoryAccessRule.#ctor(System.Security.Principal.IdentityReference,System.DirectoryServices.ActiveDirectoryRights,System.Security.AccessControl.AccessControlType,System.Guid)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L547C15-L557C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L547C15-L557C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectoryAccessRule.#ctor(System.Security.Principal.IdentityReference,System.DirectoryServices.ActiveDirectoryRights,System.Security.AccessControl.AccessControlType,System.DirectoryServices.ActiveDirectorySecurityInheritance)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L564C15-L574C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L564C15-L574C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectoryAccessRule.#ctor(System.Security.Principal.IdentityReference,System.DirectoryServices.ActiveDirectoryRights,System.Security.AccessControl.AccessControlType,System.Guid,System.DirectoryServices.ActiveDirectorySecurityInheritance)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L582C15-L592C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L582C15-L592C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectoryAccessRule.#ctor(System.Security.Principal.IdentityReference,System.DirectoryServices.ActiveDirectoryRights,System.Security.AccessControl.AccessControlType,System.DirectoryServices.ActiveDirectorySecurityInheritance,System.Guid)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L600C15-L610C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L600C15-L610C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectoryAccessRule.#ctor(System.Security.Principal.IdentityReference,System.DirectoryServices.ActiveDirectoryRights,System.Security.AccessControl.AccessControlType,System.Guid,System.DirectoryServices.ActiveDirectorySecurityInheritance,System.Guid)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L619C15-L629C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L619C15-L629C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectoryAccessRule.ActiveDirectoryRights", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L658C20-L658C89" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L658C20-L658C89" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectoryAccessRule.InheritanceType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L663C20-L663C121" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L663C20-L663C121" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectoryAccessRule", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ListChildrenAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L676C15-L687C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L676C15-L687C10" }, { "DocsId": "M:System.DirectoryServices.ListChildrenAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType,System.DirectoryServices.ActiveDirectorySecurityInheritance)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L693C15-L703C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L693C15-L703C10" }, { "DocsId": "M:System.DirectoryServices.ListChildrenAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType,System.DirectoryServices.ActiveDirectorySecurityInheritance,System.Guid)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L710C15-L720C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L710C15-L720C10" } ], "DocsId": "T:System.DirectoryServices.ListChildrenAccessRule", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.CreateChildAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L732C16-L742C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L732C16-L742C10" }, { "DocsId": "M:System.DirectoryServices.CreateChildAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType,System.Guid)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L748C15-L758C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L748C15-L758C10" }, { "DocsId": "M:System.DirectoryServices.CreateChildAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType,System.DirectoryServices.ActiveDirectorySecurityInheritance)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L764C15-L774C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L764C15-L774C10" }, { "DocsId": "M:System.DirectoryServices.CreateChildAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType,System.Guid,System.DirectoryServices.ActiveDirectorySecurityInheritance)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L781C15-L791C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L781C15-L791C10" }, { "DocsId": "M:System.DirectoryServices.CreateChildAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType,System.DirectoryServices.ActiveDirectorySecurityInheritance,System.Guid)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L798C15-L808C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L798C15-L808C10" }, { "DocsId": "M:System.DirectoryServices.CreateChildAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType,System.Guid,System.DirectoryServices.ActiveDirectorySecurityInheritance,System.Guid)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L815C15-L825C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L815C15-L825C10" } ], "DocsId": "T:System.DirectoryServices.CreateChildAccessRule", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.DeleteChildAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L837C15-L847C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L837C15-L847C10" }, { "DocsId": "M:System.DirectoryServices.DeleteChildAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType,System.Guid)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L853C15-L863C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L853C15-L863C10" }, { "DocsId": "M:System.DirectoryServices.DeleteChildAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType,System.DirectoryServices.ActiveDirectorySecurityInheritance)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L869C15-L879C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L869C15-L879C10" }, { "DocsId": "M:System.DirectoryServices.DeleteChildAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType,System.Guid,System.DirectoryServices.ActiveDirectorySecurityInheritance)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L886C15-L896C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L886C15-L896C10" }, { "DocsId": "M:System.DirectoryServices.DeleteChildAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType,System.DirectoryServices.ActiveDirectorySecurityInheritance,System.Guid)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L903C15-L913C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L903C15-L913C10" }, { "DocsId": "M:System.DirectoryServices.DeleteChildAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType,System.Guid,System.DirectoryServices.ActiveDirectorySecurityInheritance,System.Guid)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L920C15-L930C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L920C15-L930C10" } ], "DocsId": "T:System.DirectoryServices.DeleteChildAccessRule", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.PropertyAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType,System.DirectoryServices.PropertyAccess)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L942C15-L952C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L942C15-L952C10" }, { "DocsId": "M:System.DirectoryServices.PropertyAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType,System.DirectoryServices.PropertyAccess,System.Guid)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L959C15-L969C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L959C15-L969C10" }, { "DocsId": "M:System.DirectoryServices.PropertyAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType,System.DirectoryServices.PropertyAccess,System.DirectoryServices.ActiveDirectorySecurityInheritance)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L976C15-L986C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L976C15-L986C10" }, { "DocsId": "M:System.DirectoryServices.PropertyAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType,System.DirectoryServices.PropertyAccess,System.Guid,System.DirectoryServices.ActiveDirectorySecurityInheritance)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L994C15-L1004C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L994C15-L1004C10" }, { "DocsId": "M:System.DirectoryServices.PropertyAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType,System.DirectoryServices.PropertyAccess,System.DirectoryServices.ActiveDirectorySecurityInheritance,System.Guid)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1012C15-L1022C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1012C15-L1022C10" }, { "DocsId": "M:System.DirectoryServices.PropertyAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType,System.DirectoryServices.PropertyAccess,System.Guid,System.DirectoryServices.ActiveDirectorySecurityInheritance,System.Guid)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1031C15-L1041C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1031C15-L1041C10" } ], "DocsId": "T:System.DirectoryServices.PropertyAccessRule", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.PropertySetAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType,System.DirectoryServices.PropertyAccess,System.Guid)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1055C15-L1065C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1055C15-L1065C10" }, { "DocsId": "M:System.DirectoryServices.PropertySetAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType,System.DirectoryServices.PropertyAccess,System.Guid,System.DirectoryServices.ActiveDirectorySecurityInheritance)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1073C15-L1083C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1073C15-L1083C10" }, { "DocsId": "M:System.DirectoryServices.PropertySetAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType,System.DirectoryServices.PropertyAccess,System.Guid,System.DirectoryServices.ActiveDirectorySecurityInheritance,System.Guid)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1091C15-L1101C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1091C15-L1101C10" } ], "DocsId": "T:System.DirectoryServices.PropertySetAccessRule", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ExtendedRightAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1113C15-L1123C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1113C15-L1123C10" }, { "DocsId": "M:System.DirectoryServices.ExtendedRightAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType,System.Guid)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1129C15-L1139C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1129C15-L1139C10" }, { "DocsId": "M:System.DirectoryServices.ExtendedRightAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType,System.DirectoryServices.ActiveDirectorySecurityInheritance)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1145C15-L1155C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1145C15-L1155C10" }, { "DocsId": "M:System.DirectoryServices.ExtendedRightAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType,System.Guid,System.DirectoryServices.ActiveDirectorySecurityInheritance)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1162C15-L1172C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1162C15-L1172C10" }, { "DocsId": "M:System.DirectoryServices.ExtendedRightAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType,System.DirectoryServices.ActiveDirectorySecurityInheritance,System.Guid)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1179C15-L1189C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1179C15-L1189C10" }, { "DocsId": "M:System.DirectoryServices.ExtendedRightAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType,System.Guid,System.DirectoryServices.ActiveDirectorySecurityInheritance,System.Guid)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1196C15-L1206C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1196C15-L1206C10" } ], "DocsId": "T:System.DirectoryServices.ExtendedRightAccessRule", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.DeleteTreeAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1218C15-L1228C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1218C15-L1228C10" }, { "DocsId": "M:System.DirectoryServices.DeleteTreeAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType,System.DirectoryServices.ActiveDirectorySecurityInheritance)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1234C15-L1244C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1234C15-L1244C10" }, { "DocsId": "M:System.DirectoryServices.DeleteTreeAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType,System.DirectoryServices.ActiveDirectorySecurityInheritance,System.Guid)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1251C15-L1261C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1251C15-L1261C10" } ], "DocsId": "T:System.DirectoryServices.DeleteTreeAccessRule", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectoryAuditRule.#ctor(System.Security.Principal.IdentityReference,System.DirectoryServices.ActiveDirectoryRights,System.Security.AccessControl.AuditFlags)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1274C15-L1285C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1274C15-L1285C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectoryAuditRule.#ctor(System.Security.Principal.IdentityReference,System.DirectoryServices.ActiveDirectoryRights,System.Security.AccessControl.AuditFlags,System.Guid)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1292C15-L1302C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1292C15-L1302C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectoryAuditRule.#ctor(System.Security.Principal.IdentityReference,System.DirectoryServices.ActiveDirectoryRights,System.Security.AccessControl.AuditFlags,System.DirectoryServices.ActiveDirectorySecurityInheritance)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1309C15-L1319C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1309C15-L1319C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectoryAuditRule.#ctor(System.Security.Principal.IdentityReference,System.DirectoryServices.ActiveDirectoryRights,System.Security.AccessControl.AuditFlags,System.Guid,System.DirectoryServices.ActiveDirectorySecurityInheritance)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1327C15-L1337C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1327C15-L1337C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectoryAuditRule.#ctor(System.Security.Principal.IdentityReference,System.DirectoryServices.ActiveDirectoryRights,System.Security.AccessControl.AuditFlags,System.DirectoryServices.ActiveDirectorySecurityInheritance,System.Guid)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1345C15-L1355C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1345C15-L1355C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectoryAuditRule.#ctor(System.Security.Principal.IdentityReference,System.DirectoryServices.ActiveDirectoryRights,System.Security.AccessControl.AuditFlags,System.Guid,System.DirectoryServices.ActiveDirectorySecurityInheritance,System.Guid)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1364C15-L1374C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1364C15-L1374C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectoryAuditRule.ActiveDirectoryRights", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1403C20-L1403C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1403C20-L1403C84" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectoryAuditRule.InheritanceType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1408C20-L1408C121" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1408C20-L1408C121" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectoryAuditRule", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.AuthenticationTypes.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/AuthenticationTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/AuthenticationTypes.cs" }, { "DocsId": "F:System.DirectoryServices.AuthenticationTypes.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/AuthenticationTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/AuthenticationTypes.cs" }, { "DocsId": "F:System.DirectoryServices.AuthenticationTypes.Secure", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/AuthenticationTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/AuthenticationTypes.cs" }, { "DocsId": "F:System.DirectoryServices.AuthenticationTypes.Encryption", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/AuthenticationTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/AuthenticationTypes.cs" }, { "DocsId": "F:System.DirectoryServices.AuthenticationTypes.SecureSocketsLayer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/AuthenticationTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/AuthenticationTypes.cs" }, { "DocsId": "F:System.DirectoryServices.AuthenticationTypes.ReadonlyServer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/AuthenticationTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/AuthenticationTypes.cs" }, { "DocsId": "F:System.DirectoryServices.AuthenticationTypes.Anonymous", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/AuthenticationTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/AuthenticationTypes.cs" }, { "DocsId": "F:System.DirectoryServices.AuthenticationTypes.FastBind", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/AuthenticationTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/AuthenticationTypes.cs" }, { "DocsId": "F:System.DirectoryServices.AuthenticationTypes.Signing", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/AuthenticationTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/AuthenticationTypes.cs" }, { "DocsId": "F:System.DirectoryServices.AuthenticationTypes.Sealing", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/AuthenticationTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/AuthenticationTypes.cs" }, { "DocsId": "F:System.DirectoryServices.AuthenticationTypes.Delegation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/AuthenticationTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/AuthenticationTypes.cs" }, { "DocsId": "F:System.DirectoryServices.AuthenticationTypes.ServerBind", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/AuthenticationTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/AuthenticationTypes.cs" } ], "DocsId": "T:System.DirectoryServices.AuthenticationTypes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/AuthenticationTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/AuthenticationTypes.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.DereferenceAlias.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DerefAlias.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DerefAlias.cs" }, { "DocsId": "F:System.DirectoryServices.DereferenceAlias.Never", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DerefAlias.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DerefAlias.cs" }, { "DocsId": "F:System.DirectoryServices.DereferenceAlias.InSearching", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DerefAlias.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DerefAlias.cs" }, { "DocsId": "F:System.DirectoryServices.DereferenceAlias.FindingBaseObject", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DerefAlias.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DerefAlias.cs" }, { "DocsId": "F:System.DirectoryServices.DereferenceAlias.Always", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DerefAlias.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DerefAlias.cs" } ], "DocsId": "T:System.DirectoryServices.DereferenceAlias", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DerefAlias.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DerefAlias.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.DirectoryEntries.Add(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntries.cs#L46C13-L50C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntries.cs#L46C13-L50C26" }, { "DocsId": "M:System.DirectoryServices.DirectoryEntries.Find(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntries.cs#L59C13-L59C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntries.cs#L59C13-L59C37" }, { "DocsId": "M:System.DirectoryServices.DirectoryEntries.Find(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntries.cs#L67C13-L78C154" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntries.cs#L67C13-L78C154" }, { "DocsId": "M:System.DirectoryServices.DirectoryEntries.Remove(System.DirectoryServices.DirectoryEntry)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntries.cs#L86C13-L95C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntries.cs#L86C13-L95C10" }, { "DocsId": "M:System.DirectoryServices.DirectoryEntries.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntries.cs#L97C47-L97C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntries.cs#L97C47-L97C78" }, { "DocsId": "P:System.DirectoryServices.DirectoryEntries.SchemaFilter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntries.cs#L29C17-L31C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntries.cs#L29C17-L31C79" } ], "DocsId": "T:System.DirectoryServices.DirectoryEntries", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntries.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntries.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.DirectoryEntry.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L24C9-L52C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L24C9-L52C10" }, { "DocsId": "M:System.DirectoryServices.DirectoryEntry.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L58C47-L61C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L58C47-L61C10" }, { "DocsId": "M:System.DirectoryServices.DirectoryEntry.#ctor(System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L66C83-L68C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L66C83-L68C10" }, { "DocsId": "M:System.DirectoryServices.DirectoryEntry.#ctor(System.String,System.String,System.String,System.DirectoryServices.AuthenticationTypes)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L73C123-L83C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L73C123-L83C10" }, { "DocsId": "M:System.DirectoryServices.DirectoryEntry.#ctor(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L106C15-L108C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L106C15-L108C10" }, { "DocsId": "M:System.DirectoryServices.DirectoryEntry.Close", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L561C13-L562C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L561C13-L562C10" }, { "DocsId": "M:System.DirectoryServices.DirectoryEntry.CommitChanges", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L569C13-L623C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L569C13-L623C10" }, { "DocsId": "M:System.DirectoryServices.DirectoryEntry.CopyTo(System.DirectoryServices.DirectoryEntry)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L658C67-L658C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L658C67-L658C90" }, { "DocsId": "M:System.DirectoryServices.DirectoryEntry.CopyTo(System.DirectoryServices.DirectoryEntry,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L665C13-L677C123" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L665C13-L677C123" }, { "DocsId": "M:System.DirectoryServices.DirectoryEntry.DeleteTree", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L685C13-L699C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L685C13-L699C10" }, { "DocsId": "M:System.DirectoryServices.DirectoryEntry.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L706C13-L713C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L706C13-L713C10" }, { "DocsId": "M:System.DirectoryServices.DirectoryEntry.Exists(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L720C13-L738C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L720C13-L738C10" }, { "DocsId": "M:System.DirectoryServices.DirectoryEntry.Invoke(System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L780C13-L805C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L780C13-L805C31" }, { "DocsId": "M:System.DirectoryServices.DirectoryEntry.InvokeGet(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L813C13-L835C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L813C13-L835C27" }, { "DocsId": "M:System.DirectoryServices.DirectoryEntry.InvokeSet(System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L843C13-L863C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L843C13-L863C10" }, { "DocsId": "M:System.DirectoryServices.DirectoryEntry.MoveTo(System.DirectoryServices.DirectoryEntry)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L868C57-L868C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L868C57-L868C80" }, { "DocsId": "M:System.DirectoryServices.DirectoryEntry.MoveTo(System.DirectoryServices.DirectoryEntry,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L875C13-L926C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L875C13-L926C10" }, { "DocsId": "M:System.DirectoryServices.DirectoryEntry.RefreshCache", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L934C13-L951C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L934C13-L951C10" }, { "DocsId": "M:System.DirectoryServices.DirectoryEntry.RefreshCache(System.String[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L958C13-L1015C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L958C13-L1015C10" }, { "DocsId": "M:System.DirectoryServices.DirectoryEntry.Rename(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L1020C48-L1020C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L1020C48-L1020C71" }, { "DocsId": "P:System.DirectoryServices.DirectoryEntry.AuthenticationType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L162C20-L162C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L162C20-L162C39" }, { "DocsId": "P:System.DirectoryServices.DirectoryEntry.Children", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L181C45-L181C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L181C45-L181C71" }, { "DocsId": "P:System.DirectoryServices.DirectoryEntry.Guid", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L199C17-L212C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L199C17-L212C43" }, { "DocsId": "P:System.DirectoryServices.DirectoryEntry.ObjectSecurity", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L220C17-L226C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L220C17-L226C41" }, { "DocsId": "P:System.DirectoryServices.DirectoryEntry.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L261C17-L264C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L261C17-L264C32" }, { "DocsId": "P:System.DirectoryServices.DirectoryEntry.NativeGuid", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L272C17-L275C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L272C17-L275C32" }, { "DocsId": "P:System.DirectoryServices.DirectoryEntry.NativeObject", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L286C17-L287C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L286C17-L287C35" }, { "DocsId": "P:System.DirectoryServices.DirectoryEntry.Parent", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L298C17-L299C130" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L298C17-L299C130" }, { "DocsId": "P:System.DirectoryServices.DirectoryEntry.Password", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L311C17-L329C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L311C17-L329C14" }, { "DocsId": "P:System.DirectoryServices.DirectoryEntry.Path", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L339C20-L339C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L339C20-L339C25" }, { "DocsId": "P:System.DirectoryServices.DirectoryEntry.Properties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L356C13-L356C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L356C13-L356C65" }, { "DocsId": "P:System.DirectoryServices.DirectoryEntry.SchemaClassName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L365C17-L368C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L365C17-L368C33" }, { "DocsId": "P:System.DirectoryServices.DirectoryEntry.SchemaEntry", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L381C17-L382C130" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L381C17-L382C130" }, { "DocsId": "P:System.DirectoryServices.DirectoryEntry.UsePropertyCache", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L398C20-L398C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L398C20-L398C29" }, { "DocsId": "P:System.DirectoryServices.DirectoryEntry.Username", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L421C17-L424C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L421C17-L424C46" }, { "DocsId": "P:System.DirectoryServices.DirectoryEntry.Options", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L450C17-L453C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L450C17-L453C33" } ], "DocsId": "T:System.DirectoryServices.DirectoryEntry", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.DirectoryEntryConfiguration.GetCurrentServerName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntryConfiguration.cs#L96C13-L96C135" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntryConfiguration.cs#L96C13-L96C135" }, { "DocsId": "M:System.DirectoryServices.DirectoryEntryConfiguration.IsMutuallyAuthenticated", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntryConfiguration.cs#L103C17-L116C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntryConfiguration.cs#L103C17-L116C10" }, { "DocsId": "M:System.DirectoryServices.DirectoryEntryConfiguration.SetUserNameQueryQuota(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntryConfiguration.cs#L120C13-L121C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntryConfiguration.cs#L120C13-L121C10" }, { "DocsId": "P:System.DirectoryServices.DirectoryEntryConfiguration.Referral", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntryConfiguration.cs#L22C17-L22C153" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntryConfiguration.cs#L22C17-L22C153" }, { "DocsId": "P:System.DirectoryServices.DirectoryEntryConfiguration.SecurityMasks", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntryConfiguration.cs#L40C17-L40C149" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntryConfiguration.cs#L40C17-L40C149" }, { "DocsId": "P:System.DirectoryServices.DirectoryEntryConfiguration.PageSize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntryConfiguration.cs#L55C17-L55C135" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntryConfiguration.cs#L55C17-L55C135" }, { "DocsId": "P:System.DirectoryServices.DirectoryEntryConfiguration.PasswordPort", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntryConfiguration.cs#L70C17-L70C145" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntryConfiguration.cs#L70C17-L70C145" }, { "DocsId": "P:System.DirectoryServices.DirectoryEntryConfiguration.PasswordEncoding", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntryConfiguration.cs#L82C17-L82C160" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntryConfiguration.cs#L82C17-L82C160" } ], "DocsId": "T:System.DirectoryServices.DirectoryEntryConfiguration", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntryConfiguration.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntryConfiguration.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.DirectorySearcher.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L56C38-L59C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L56C38-L59C10" }, { "DocsId": "M:System.DirectoryServices.DirectorySearcher.#ctor(System.DirectoryServices.DirectoryEntry)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L66C64-L69C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L66C64-L69C10" }, { "DocsId": "M:System.DirectoryServices.DirectorySearcher.#ctor(System.DirectoryServices.DirectoryEntry,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L76C80-L79C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L76C80-L79C10" }, { "DocsId": "M:System.DirectoryServices.DirectorySearcher.#ctor(System.DirectoryServices.DirectoryEntry,System.String,System.String[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L86C108-L89C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L86C108-L89C10" }, { "DocsId": "M:System.DirectoryServices.DirectorySearcher.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L96C52-L99C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L96C52-L99C10" }, { "DocsId": "M:System.DirectoryServices.DirectorySearcher.#ctor(System.String,System.String[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L106C80-L109C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L106C80-L109C10" }, { "DocsId": "M:System.DirectoryServices.DirectorySearcher.#ctor(System.String,System.String[],System.DirectoryServices.SearchScope)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L115C99-L117C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L115C99-L117C10" }, { "DocsId": "M:System.DirectoryServices.DirectorySearcher.#ctor(System.DirectoryServices.DirectoryEntry,System.String,System.String[],System.DirectoryServices.SearchScope)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L19C9-L130C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L19C9-L130C10" }, { "DocsId": "M:System.DirectoryServices.DirectorySearcher.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L136C13-L144C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L136C13-L144C10" }, { "DocsId": "M:System.DirectoryServices.DirectorySearcher.FindOne", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L569C13-L599C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L569C13-L599C32" }, { "DocsId": "M:System.DirectoryServices.DirectorySearcher.FindAll", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L605C52-L605C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L605C52-L605C65" }, { "DocsId": "P:System.DirectoryServices.DirectorySearcher.CacheResults", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L153C20-L153C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L153C20-L153C33" }, { "DocsId": "P:System.DirectoryServices.DirectorySearcher.ClientTimeout", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L173C20-L173C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L173C20-L173C34" }, { "DocsId": "P:System.DirectoryServices.DirectorySearcher.PropertyNamesOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L191C41-L191C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L191C41-L191C45" }, { "DocsId": "P:System.DirectoryServices.DirectorySearcher.Filter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L199C20-L199C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L199C20-L199C27" }, { "DocsId": "P:System.DirectoryServices.DirectorySearcher.PageSize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L214C20-L214C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L214C20-L214C29" }, { "DocsId": "P:System.DirectoryServices.DirectorySearcher.PropertiesToLoad", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L235C13-L235C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L235C13-L235C57" }, { "DocsId": "P:System.DirectoryServices.DirectorySearcher.ReferralChasing", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L243C20-L243C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L243C20-L243C36" }, { "DocsId": "P:System.DirectoryServices.DirectorySearcher.SearchScope", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L262C20-L262C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L262C20-L262C26" }, { "DocsId": "P:System.DirectoryServices.DirectorySearcher.ServerPageTimeLimit", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L286C20-L286C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L286C20-L286C40" }, { "DocsId": "P:System.DirectoryServices.DirectorySearcher.ServerTimeLimit", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L305C20-L305C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L305C20-L305C36" }, { "DocsId": "P:System.DirectoryServices.DirectorySearcher.SizeLimit", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L325C20-L325C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L325C20-L325C30" }, { "DocsId": "P:System.DirectoryServices.DirectorySearcher.SearchRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L343C17-L357C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L343C17-L357C36" }, { "DocsId": "P:System.DirectoryServices.DirectorySearcher.Sort", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L376C20-L376C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L376C20-L376C25" }, { "DocsId": "P:System.DirectoryServices.DirectorySearcher.Asynchronous", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L385C36-L385C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L385C36-L385C40" }, { "DocsId": "P:System.DirectoryServices.DirectorySearcher.Tombstone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L392C33-L392C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L392C33-L392C37" }, { "DocsId": "P:System.DirectoryServices.DirectorySearcher.AttributeScopeQuery", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L402C20-L402C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L402C20-L402C40" }, { "DocsId": "P:System.DirectoryServices.DirectorySearcher.DerefAlias", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L437C20-L437C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L437C20-L437C31" }, { "DocsId": "P:System.DirectoryServices.DirectorySearcher.SecurityMasks", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L454C20-L454C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L454C20-L454C33" }, { "DocsId": "P:System.DirectoryServices.DirectorySearcher.ExtendedDN", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L472C20-L472C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L472C20-L472C31" }, { "DocsId": "P:System.DirectoryServices.DirectorySearcher.DirectorySynchronization", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L492C17-L496C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L492C17-L496C30" }, { "DocsId": "P:System.DirectoryServices.DirectorySearcher.VirtualListView", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L529C17-L540C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L529C17-L540C29" } ], "DocsId": "T:System.DirectoryServices.DirectorySearcher", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.DirectorySynchronization.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronization.cs#L11C9-L15C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronization.cs#L11C9-L15C10" }, { "DocsId": "M:System.DirectoryServices.DirectorySynchronization.#ctor(System.DirectoryServices.DirectorySynchronizationOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronization.cs#L11C9-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronization.cs#L11C9-L20C10" }, { "DocsId": "M:System.DirectoryServices.DirectorySynchronization.#ctor(System.DirectoryServices.DirectorySynchronization)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronization.cs#L11C9-L29C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronization.cs#L11C9-L29C10" }, { "DocsId": "M:System.DirectoryServices.DirectorySynchronization.#ctor(System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronization.cs#L11C9-L31C103" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronization.cs#L11C9-L31C103" }, { "DocsId": "M:System.DirectoryServices.DirectorySynchronization.#ctor(System.DirectoryServices.DirectorySynchronizationOptions,System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronization.cs#L11C9-L37C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronization.cs#L11C9-L37C10" }, { "DocsId": "M:System.DirectoryServices.DirectorySynchronization.GetDirectorySynchronizationCookie", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronization.cs#L59C13-L65C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronization.cs#L59C13-L65C31" }, { "DocsId": "M:System.DirectoryServices.DirectorySynchronization.ResetDirectorySynchronizationCookie", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronization.cs#L68C62-L68C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronization.cs#L68C62-L68C91" }, { "DocsId": "M:System.DirectoryServices.DirectorySynchronization.ResetDirectorySynchronizationCookie(System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronization.cs#L72C13-L84C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronization.cs#L72C13-L84C10" }, { "DocsId": "M:System.DirectoryServices.DirectorySynchronization.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronization.cs#L86C51-L86C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronization.cs#L86C51-L86C97" }, { "DocsId": "P:System.DirectoryServices.DirectorySynchronization.Option", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronization.cs#L42C20-L42C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronization.cs#L42C20-L42C27" } ], "DocsId": "T:System.DirectoryServices.DirectorySynchronization", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronization.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronization.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.DirectorySynchronizationOptions.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronizationFlags.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronizationFlags.cs" }, { "DocsId": "F:System.DirectoryServices.DirectorySynchronizationOptions.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronizationFlags.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronizationFlags.cs" }, { "DocsId": "F:System.DirectoryServices.DirectorySynchronizationOptions.ObjectSecurity", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronizationFlags.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronizationFlags.cs" }, { "DocsId": "F:System.DirectoryServices.DirectorySynchronizationOptions.ParentsFirst", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronizationFlags.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronizationFlags.cs" }, { "DocsId": "F:System.DirectoryServices.DirectorySynchronizationOptions.PublicDataOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronizationFlags.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronizationFlags.cs" }, { "DocsId": "F:System.DirectoryServices.DirectorySynchronizationOptions.IncrementalValues", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronizationFlags.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronizationFlags.cs" } ], "DocsId": "T:System.DirectoryServices.DirectorySynchronizationOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronizationFlags.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronizationFlags.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.DirectoryVirtualListView.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListView.cs#L14C9-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListView.cs#L14C9-L20C10" }, { "DocsId": "M:System.DirectoryServices.DirectoryVirtualListView.#ctor(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListView.cs#L14C9-L25C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListView.cs#L14C9-L25C10" }, { "DocsId": "M:System.DirectoryServices.DirectoryVirtualListView.#ctor(System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListView.cs#L14C9-L32C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListView.cs#L14C9-L32C10" }, { "DocsId": "M:System.DirectoryServices.DirectoryVirtualListView.#ctor(System.Int32,System.Int32,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListView.cs#L14C9-L39C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListView.cs#L14C9-L39C10" }, { "DocsId": "M:System.DirectoryServices.DirectoryVirtualListView.#ctor(System.Int32,System.Int32,System.Int32,System.DirectoryServices.DirectoryVirtualListViewContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListView.cs#L14C9-L47C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListView.cs#L14C9-L47C10" }, { "DocsId": "M:System.DirectoryServices.DirectoryVirtualListView.#ctor(System.Int32,System.Int32,System.String,System.DirectoryServices.DirectoryVirtualListViewContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListView.cs#L14C9-L55C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListView.cs#L14C9-L55C10" }, { "DocsId": "P:System.DirectoryServices.DirectoryVirtualListView.BeforeCount", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListView.cs#L60C20-L60C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListView.cs#L60C20-L60C32" }, { "DocsId": "P:System.DirectoryServices.DirectoryVirtualListView.AfterCount", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListView.cs#L75C20-L75C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListView.cs#L75C20-L75C31" }, { "DocsId": "P:System.DirectoryServices.DirectoryVirtualListView.Offset", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListView.cs#L90C20-L90C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListView.cs#L90C20-L90C27" }, { "DocsId": "P:System.DirectoryServices.DirectoryVirtualListView.TargetPercentage", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListView.cs#L113C20-L113C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListView.cs#L113C20-L113C37" }, { "DocsId": "P:System.DirectoryServices.DirectoryVirtualListView.Target", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListView.cs#L130C20-L130C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListView.cs#L130C20-L130C27" }, { "DocsId": "P:System.DirectoryServices.DirectoryVirtualListView.ApproximateTotal", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListView.cs#L137C20-L137C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListView.cs#L137C20-L137C37" }, { "DocsId": "P:System.DirectoryServices.DirectoryVirtualListView.DirectoryVirtualListViewContext", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListView.cs#L150C83-L150C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListView.cs#L150C83-L150C87" } ], "DocsId": "T:System.DirectoryServices.DirectoryVirtualListView", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListView.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListView.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.DirectoryVirtualListViewContext.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListViewContext.cs#L10C52-L12C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListViewContext.cs#L10C52-L12C10" }, { "DocsId": "M:System.DirectoryServices.DirectoryVirtualListViewContext.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListViewContext.cs#L32C13-L32C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListViewContext.cs#L32C13-L32C66" } ], "DocsId": "T:System.DirectoryServices.DirectoryVirtualListViewContext", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListViewContext.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListViewContext.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.ExtendedDN.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ExtendedDn.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ExtendedDn.cs" }, { "DocsId": "F:System.DirectoryServices.ExtendedDN.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ExtendedDn.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ExtendedDn.cs" }, { "DocsId": "F:System.DirectoryServices.ExtendedDN.HexString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ExtendedDn.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ExtendedDn.cs" }, { "DocsId": "F:System.DirectoryServices.ExtendedDN.Standard", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ExtendedDn.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ExtendedDn.cs" } ], "DocsId": "T:System.DirectoryServices.ExtendedDN", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ExtendedDn.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ExtendedDn.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.PasswordEncodingMethod.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PasswordEncodingMethod.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PasswordEncodingMethod.cs" }, { "DocsId": "F:System.DirectoryServices.PasswordEncodingMethod.PasswordEncodingSsl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PasswordEncodingMethod.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PasswordEncodingMethod.cs" }, { "DocsId": "F:System.DirectoryServices.PasswordEncodingMethod.PasswordEncodingClear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PasswordEncodingMethod.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PasswordEncodingMethod.cs" } ], "DocsId": "T:System.DirectoryServices.PasswordEncodingMethod", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PasswordEncodingMethod.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PasswordEncodingMethod.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.PropertyCollection.Contains(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L72C13-L86C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L72C13-L86C25" }, { "DocsId": "M:System.DirectoryServices.PropertyCollection.CopyTo(System.DirectoryServices.PropertyValueCollection[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L94C13-L95C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L94C13-L95C10" }, { "DocsId": "M:System.DirectoryServices.PropertyCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L102C13-L114C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L102C13-L114C63" }, { "DocsId": "M:System.DirectoryServices.PropertyCollection.System#Collections#IDictionary#get_Item(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L119C20-L119C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L119C20-L119C37" }, { "DocsId": "M:System.DirectoryServices.PropertyCollection.System#Collections#IDictionary#set_Item(System.Object,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L120C20-L120C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L120C20-L120C78" }, { "DocsId": "M:System.DirectoryServices.PropertyCollection.System#Collections#IDictionary#get_IsFixedSize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L123C41-L123C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L123C41-L123C45" }, { "DocsId": "M:System.DirectoryServices.PropertyCollection.System#Collections#IDictionary#get_IsReadOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L125C40-L125C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L125C40-L125C44" }, { "DocsId": "M:System.DirectoryServices.PropertyCollection.System#Collections#IDictionary#get_Keys", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L127C41-L127C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L127C41-L127C65" }, { "DocsId": "M:System.DirectoryServices.PropertyCollection.System#Collections#IDictionary#Add(System.Object,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L131C13-L131C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L131C13-L131C67" }, { "DocsId": "M:System.DirectoryServices.PropertyCollection.System#Collections#IDictionary#Clear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L136C13-L136C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L136C13-L136C69" }, { "DocsId": "M:System.DirectoryServices.PropertyCollection.System#Collections#IDictionary#Contains(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L139C52-L139C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L139C52-L139C75" }, { "DocsId": "M:System.DirectoryServices.PropertyCollection.System#Collections#IDictionary#Remove(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L143C13-L143C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L143C13-L143C70" }, { "DocsId": "M:System.DirectoryServices.PropertyCollection.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L146C52-L146C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L146C52-L146C67" }, { "DocsId": "M:System.DirectoryServices.PropertyCollection.System#Collections#ICollection#get_IsSynchronized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L148C44-L148C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L148C44-L148C49" }, { "DocsId": "M:System.DirectoryServices.PropertyCollection.System#Collections#ICollection#get_SyncRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L150C40-L150C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L150C40-L150C44" }, { "DocsId": "M:System.DirectoryServices.PropertyCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L154C13-L171C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L154C13-L171C10" }, { "DocsId": "P:System.DirectoryServices.PropertyCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L32C17-L42C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L32C17-L42C34" }, { "DocsId": "P:System.DirectoryServices.PropertyCollection.Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L54C17-L61C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L54C17-L61C47" }, { "DocsId": "P:System.DirectoryServices.PropertyCollection.PropertyNames", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L65C45-L65C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L65C45-L65C69" }, { "DocsId": "P:System.DirectoryServices.PropertyCollection.Values", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L67C38-L67C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L67C38-L67C64" }, { "DocsId": "P:System.DirectoryServices.PropertyCollection.System#Collections#IDictionary#Item(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L119C20-L119C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L119C20-L119C37" }, { "DocsId": "P:System.DirectoryServices.PropertyCollection.System#Collections#IDictionary#IsFixedSize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L123C41-L123C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L123C41-L123C45" }, { "DocsId": "P:System.DirectoryServices.PropertyCollection.System#Collections#IDictionary#IsReadOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L125C40-L125C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L125C40-L125C44" }, { "DocsId": "P:System.DirectoryServices.PropertyCollection.System#Collections#IDictionary#Keys", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L127C41-L127C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L127C41-L127C65" }, { "DocsId": "P:System.DirectoryServices.PropertyCollection.System#Collections#ICollection#IsSynchronized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L148C44-L148C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L148C44-L148C49" }, { "DocsId": "P:System.DirectoryServices.PropertyCollection.System#Collections#ICollection#SyncRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L150C40-L150C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L150C40-L150C44" } ], "DocsId": "T:System.DirectoryServices.PropertyCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.PropertyValueCollection.Add(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs#L132C42-L132C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs#L132C42-L132C57" }, { "DocsId": "M:System.DirectoryServices.PropertyValueCollection.AddRange(System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs#L139C13-L147C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs#L139C13-L147C10" }, { "DocsId": "M:System.DirectoryServices.PropertyValueCollection.AddRange(System.DirectoryServices.PropertyValueCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs#L154C13-L163C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs#L154C13-L163C10" }, { "DocsId": "M:System.DirectoryServices.PropertyValueCollection.Contains(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs#L165C48-L165C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs#L165C48-L165C68" }, { "DocsId": "M:System.DirectoryServices.PropertyValueCollection.CopyTo(System.Object[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs#L173C13-L174C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs#L173C13-L174C10" }, { "DocsId": "M:System.DirectoryServices.PropertyValueCollection.IndexOf(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs#L176C46-L176C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs#L176C46-L176C65" }, { "DocsId": "M:System.DirectoryServices.PropertyValueCollection.Insert(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs#L178C57-L178C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs#L178C57-L178C82" }, { "DocsId": "M:System.DirectoryServices.PropertyValueCollection.Remove(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs#L211C13-L226C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs#L211C13-L226C10" }, { "DocsId": "M:System.DirectoryServices.PropertyValueCollection.OnClearComplete", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs#L230C13-L247C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs#L230C13-L247C10" }, { "DocsId": "M:System.DirectoryServices.PropertyValueCollection.OnInsertComplete(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs#L251C13-L280C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs#L251C13-L280C10" }, { "DocsId": "M:System.DirectoryServices.PropertyValueCollection.OnRemoveComplete(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs#L284C13-L313C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs#L284C13-L313C10" }, { "DocsId": "M:System.DirectoryServices.PropertyValueCollection.OnSetComplete(System.Int32,System.Object,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs#L318C13-L338C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs#L318C13-L338C10" }, { "DocsId": "P:System.DirectoryServices.PropertyValueCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs#L50C20-L50C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs#L50C20-L50C31" }, { "DocsId": "P:System.DirectoryServices.PropertyValueCollection.PropertyName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs#L62C38-L62C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs#L62C38-L62C42" }, { "DocsId": "P:System.DirectoryServices.PropertyValueCollection.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs#L68C17-L76C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs#L68C17-L76C40" } ], "DocsId": "T:System.DirectoryServices.PropertyValueCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.ReferralChasingOption.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ReferalChasingOption.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ReferalChasingOption.cs" }, { "DocsId": "F:System.DirectoryServices.ReferralChasingOption.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ReferalChasingOption.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ReferalChasingOption.cs" }, { "DocsId": "F:System.DirectoryServices.ReferralChasingOption.Subordinate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ReferalChasingOption.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ReferalChasingOption.cs" }, { "DocsId": "F:System.DirectoryServices.ReferralChasingOption.External", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ReferalChasingOption.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ReferalChasingOption.cs" }, { "DocsId": "F:System.DirectoryServices.ReferralChasingOption.All", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ReferalChasingOption.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ReferalChasingOption.cs" } ], "DocsId": "T:System.DirectoryServices.ReferralChasingOption", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ReferalChasingOption.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ReferalChasingOption.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ResultPropertyCollection.Contains(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ResultPropertyCollection.cs#L48C13-L49C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ResultPropertyCollection.cs#L48C13-L49C52" }, { "DocsId": "M:System.DirectoryServices.ResultPropertyCollection.CopyTo(System.DirectoryServices.ResultPropertyValueCollection[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ResultPropertyCollection.cs#L54C13-L55C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ResultPropertyCollection.cs#L54C13-L55C10" }, { "DocsId": "P:System.DirectoryServices.ResultPropertyCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ResultPropertyCollection.cs#L25C17-L32C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ResultPropertyCollection.cs#L25C17-L32C85" }, { "DocsId": "P:System.DirectoryServices.ResultPropertyCollection.PropertyNames", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ResultPropertyCollection.cs#L37C45-L37C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ResultPropertyCollection.cs#L37C45-L37C60" }, { "DocsId": "P:System.DirectoryServices.ResultPropertyCollection.Values", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ResultPropertyCollection.cs#L39C38-L39C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ResultPropertyCollection.cs#L39C38-L39C55" } ], "DocsId": "T:System.DirectoryServices.ResultPropertyCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ResultPropertyCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ResultPropertyCollection.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ResultPropertyValueCollection.Contains(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ResultPropertyValueCollection.cs#L30C48-L30C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ResultPropertyValueCollection.cs#L30C48-L30C73" }, { "DocsId": "M:System.DirectoryServices.ResultPropertyValueCollection.IndexOf(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ResultPropertyValueCollection.cs#L32C46-L32C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ResultPropertyValueCollection.cs#L32C46-L32C70" }, { "DocsId": "M:System.DirectoryServices.ResultPropertyValueCollection.CopyTo(System.Object[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ResultPropertyValueCollection.cs#L34C60-L34C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ResultPropertyValueCollection.cs#L34C60-L34C91" }, { "DocsId": "P:System.DirectoryServices.ResultPropertyValueCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ResultPropertyValueCollection.cs#L22C17-L26C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ResultPropertyValueCollection.cs#L22C17-L26C40" } ], "DocsId": "T:System.DirectoryServices.ResultPropertyValueCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ResultPropertyValueCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ResultPropertyValueCollection.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.SchemaNameCollection.Add(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L57C13-L63C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L57C13-L63C41" }, { "DocsId": "M:System.DirectoryServices.SchemaNameCollection.AddRange(System.String[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L71C13-L82C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L71C13-L82C10" }, { "DocsId": "M:System.DirectoryServices.SchemaNameCollection.AddRange(System.DirectoryServices.SchemaNameCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L86C13-L97C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L86C13-L97C10" }, { "DocsId": "M:System.DirectoryServices.SchemaNameCollection.Clear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L104C13-L105C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L104C13-L105C10" }, { "DocsId": "M:System.DirectoryServices.SchemaNameCollection.Contains(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L110C48-L110C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L110C48-L110C68" }, { "DocsId": "M:System.DirectoryServices.SchemaNameCollection.CopyTo(System.String[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L114C13-L116C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L114C13-L116C10" }, { "DocsId": "M:System.DirectoryServices.SchemaNameCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L120C13-L121C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L120C13-L121C43" }, { "DocsId": "M:System.DirectoryServices.SchemaNameCollection.IndexOf(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L138C13-L144C23" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L138C13-L144C23" }, { "DocsId": "M:System.DirectoryServices.SchemaNameCollection.Insert(System.Int32,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L152C13-L155C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L152C13-L155C10" }, { "DocsId": "M:System.DirectoryServices.SchemaNameCollection.Remove(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L163C13-L165C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L163C13-L165C10" }, { "DocsId": "M:System.DirectoryServices.SchemaNameCollection.RemoveAt(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L172C13-L182C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L172C13-L182C10" }, { "DocsId": "M:System.DirectoryServices.SchemaNameCollection.System#Collections#IList#get_IsReadOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L184C34-L184C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L184C34-L184C39" }, { "DocsId": "M:System.DirectoryServices.SchemaNameCollection.System#Collections#IList#get_IsFixedSize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L186C35-L186C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L186C35-L186C40" }, { "DocsId": "M:System.DirectoryServices.SchemaNameCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L190C13-L192C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L190C13-L192C10" }, { "DocsId": "M:System.DirectoryServices.SchemaNameCollection.System#Collections#ICollection#get_IsSynchronized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L194C44-L194C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L194C44-L194C49" }, { "DocsId": "M:System.DirectoryServices.SchemaNameCollection.System#Collections#ICollection#get_SyncRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L196C40-L196C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L196C40-L196C44" }, { "DocsId": "M:System.DirectoryServices.SchemaNameCollection.System#Collections#IList#get_Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L200C20-L200C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L200C20-L200C31" }, { "DocsId": "M:System.DirectoryServices.SchemaNameCollection.System#Collections#IList#set_Item(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L201C20-L201C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L201C20-L201C48" }, { "DocsId": "M:System.DirectoryServices.SchemaNameCollection.System#Collections#IList#Add(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L204C41-L204C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L204C41-L204C60" }, { "DocsId": "M:System.DirectoryServices.SchemaNameCollection.System#Collections#IList#Contains(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L206C47-L206C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L206C47-L206C71" }, { "DocsId": "M:System.DirectoryServices.SchemaNameCollection.System#Collections#IList#IndexOf(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L208C45-L208C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L208C45-L208C68" }, { "DocsId": "M:System.DirectoryServices.SchemaNameCollection.System#Collections#IList#Insert(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L210C56-L210C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L210C56-L210C85" }, { "DocsId": "M:System.DirectoryServices.SchemaNameCollection.System#Collections#IList#Remove(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L212C45-L212C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L212C45-L212C67" }, { "DocsId": "P:System.DirectoryServices.SchemaNameCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L29C17-L30C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L29C17-L30C47" }, { "DocsId": "P:System.DirectoryServices.SchemaNameCollection.Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L47C17-L48C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L47C17-L48C38" }, { "DocsId": "P:System.DirectoryServices.SchemaNameCollection.System#Collections#IList#IsReadOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L184C34-L184C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L184C34-L184C39" }, { "DocsId": "P:System.DirectoryServices.SchemaNameCollection.System#Collections#IList#IsFixedSize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L186C35-L186C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L186C35-L186C40" }, { "DocsId": "P:System.DirectoryServices.SchemaNameCollection.System#Collections#ICollection#IsSynchronized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L194C44-L194C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L194C44-L194C49" }, { "DocsId": "P:System.DirectoryServices.SchemaNameCollection.System#Collections#ICollection#SyncRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L196C40-L196C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L196C40-L196C44" }, { "DocsId": "P:System.DirectoryServices.SchemaNameCollection.System#Collections#IList#Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L200C20-L200C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L200C20-L200C31" } ], "DocsId": "T:System.DirectoryServices.SchemaNameCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.SearchResult.GetDirectoryEntry", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResult.cs#L29C13-L34C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResult.cs#L29C13-L34C33" }, { "DocsId": "P:System.DirectoryServices.SearchResult.Path", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResult.cs#L41C31-L41C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResult.cs#L41C31-L41C64" }, { "DocsId": "P:System.DirectoryServices.SearchResult.Properties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResult.cs#L47C54-L47C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResult.cs#L47C54-L47C58" } ], "DocsId": "T:System.DirectoryServices.SearchResult", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResult.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResult.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.SearchResultCollection.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L151C13-L153C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L151C13-L153C10" }, { "DocsId": "M:System.DirectoryServices.SearchResultCollection.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L157C13-L185C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L157C13-L185C10" }, { "DocsId": "M:System.DirectoryServices.SearchResultCollection.Finalize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L187C38-L187C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L187C38-L16707566C0" }, { "DocsId": "M:System.DirectoryServices.SearchResultCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L193C13-L196C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L193C13-L196C87" }, { "DocsId": "M:System.DirectoryServices.SearchResultCollection.Contains(System.DirectoryServices.SearchResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L199C54-L199C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L199C54-L199C80" }, { "DocsId": "M:System.DirectoryServices.SearchResultCollection.CopyTo(System.DirectoryServices.SearchResult[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L203C13-L204C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L203C13-L204C10" }, { "DocsId": "M:System.DirectoryServices.SearchResultCollection.IndexOf(System.DirectoryServices.SearchResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L206C52-L206C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L206C52-L206C77" }, { "DocsId": "M:System.DirectoryServices.SearchResultCollection.System#Collections#ICollection#get_IsSynchronized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L208C44-L208C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L208C44-L208C49" }, { "DocsId": "M:System.DirectoryServices.SearchResultCollection.System#Collections#ICollection#get_SyncRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L210C40-L210C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L210C40-L210C44" }, { "DocsId": "M:System.DirectoryServices.SearchResultCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L214C13-L215C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L214C13-L215C10" }, { "DocsId": "P:System.DirectoryServices.SearchResultCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L38C48-L38C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L38C48-L38C79" }, { "DocsId": "P:System.DirectoryServices.SearchResultCollection.Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L40C29-L40C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L40C29-L40C44" }, { "DocsId": "P:System.DirectoryServices.SearchResultCollection.Handle", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L77C17-L80C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L77C17-L80C32" }, { "DocsId": "P:System.DirectoryServices.SearchResultCollection.PropertiesLoaded", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L88C44-L88C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L88C44-L88C48" }, { "DocsId": "P:System.DirectoryServices.SearchResultCollection.System#Collections#ICollection#IsSynchronized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L208C44-L208C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L208C44-L208C49" }, { "DocsId": "P:System.DirectoryServices.SearchResultCollection.System#Collections#ICollection#SyncRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L210C40-L210C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L210C40-L210C44" } ], "DocsId": "T:System.DirectoryServices.SearchResultCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.SearchScope.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchScope.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchScope.cs" }, { "DocsId": "F:System.DirectoryServices.SearchScope.Base", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchScope.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchScope.cs" }, { "DocsId": "F:System.DirectoryServices.SearchScope.OneLevel", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchScope.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchScope.cs" }, { "DocsId": "F:System.DirectoryServices.SearchScope.Subtree", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchScope.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchScope.cs" } ], "DocsId": "T:System.DirectoryServices.SearchScope", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchScope.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchScope.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.SecurityMasks.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SecurityMasks.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SecurityMasks.cs" }, { "DocsId": "F:System.DirectoryServices.SecurityMasks.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SecurityMasks.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SecurityMasks.cs" }, { "DocsId": "F:System.DirectoryServices.SecurityMasks.Owner", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SecurityMasks.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SecurityMasks.cs" }, { "DocsId": "F:System.DirectoryServices.SecurityMasks.Group", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SecurityMasks.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SecurityMasks.cs" }, { "DocsId": "F:System.DirectoryServices.SecurityMasks.Dacl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SecurityMasks.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SecurityMasks.cs" }, { "DocsId": "F:System.DirectoryServices.SecurityMasks.Sacl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SecurityMasks.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SecurityMasks.cs" } ], "DocsId": "T:System.DirectoryServices.SecurityMasks", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SecurityMasks.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SecurityMasks.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.SortDirection.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SortDirection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SortDirection.cs" }, { "DocsId": "F:System.DirectoryServices.SortDirection.Ascending", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SortDirection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SortDirection.cs" }, { "DocsId": "F:System.DirectoryServices.SortDirection.Descending", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SortDirection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SortDirection.cs" } ], "DocsId": "T:System.DirectoryServices.SortDirection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SortDirection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SortDirection.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.SortOption.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SortOption.cs#L15C9-L17C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SortOption.cs#L15C9-L17C10" }, { "DocsId": "M:System.DirectoryServices.SortOption.#ctor(System.String,System.DirectoryServices.SortDirection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SortOption.cs#L19C9-L23C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SortOption.cs#L19C9-L23C10" }, { "DocsId": "P:System.DirectoryServices.SortOption.PropertyName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SortOption.cs#L29C20-L29C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SortOption.cs#L29C20-L29C33" }, { "DocsId": "P:System.DirectoryServices.SortOption.Direction", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SortOption.cs#L36C20-L36C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SortOption.cs#L36C20-L36C34" } ], "DocsId": "T:System.DirectoryServices.SortOption", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SortOption.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SortOption.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.DirectoryServicesCOMException.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryServicesCOMException.cs#L14C9-L14C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryServicesCOMException.cs#L14C9-L14C51" }, { "DocsId": "M:System.DirectoryServices.DirectoryServicesCOMException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryServicesCOMException.cs#L16C65-L16C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryServicesCOMException.cs#L16C65-L16C82" }, { "DocsId": "M:System.DirectoryServices.DirectoryServicesCOMException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryServicesCOMException.cs#L18C83-L18C107" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryServicesCOMException.cs#L18C83-L18C107" }, { "DocsId": "M:System.DirectoryServices.DirectoryServicesCOMException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryServicesCOMException.cs#L24C101-L26C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryServicesCOMException.cs#L24C101-L26C10" }, { "DocsId": "M:System.DirectoryServices.DirectoryServicesCOMException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryServicesCOMException.cs#L44C13-L45C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryServicesCOMException.cs#L44C13-L45C10" }, { "DocsId": "P:System.DirectoryServices.DirectoryServicesCOMException.ExtendedError", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryServicesCOMException.cs#L34C36-L34C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryServicesCOMException.cs#L34C36-L34C40" }, { "DocsId": "P:System.DirectoryServices.DirectoryServicesCOMException.ExtendedErrorMessage", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryServicesCOMException.cs#L36C47-L36C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryServicesCOMException.cs#L36C47-L36C51" } ], "DocsId": "T:System.DirectoryServices.DirectoryServicesCOMException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryServicesCOMException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryServicesCOMException.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryPartition.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryPartition.cs#L14C9-L16C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryPartition.cs#L14C9-L16C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryPartition.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryPartition.cs#L29C13-L30C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryPartition.cs#L29C13-L30C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryPartition.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryPartition.cs#L35C13-L49C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryPartition.cs#L35C13-L49C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryPartition.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryPartition.cs#L53C46-L53C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryPartition.cs#L53C46-L53C50" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryPartition.GetDirectoryEntry", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryPartition.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryPartition.cs" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectoryPartition.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryPartition.cs#L65C17-L66C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryPartition.cs#L65C17-L66C38" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ActiveDirectoryPartition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryPartition.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryPartition.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryReplicationMetadata.Contains(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryReplicationMetaData.cs#L42C13-L43C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryReplicationMetaData.cs#L42C13-L43C50" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryReplicationMetadata.CopyTo(System.DirectoryServices.ActiveDirectory.AttributeMetadata[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryReplicationMetaData.cs#L48C13-L49C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryReplicationMetaData.cs#L48C13-L49C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectoryReplicationMetadata.Item(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryReplicationMetaData.cs#L26C17-L32C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryReplicationMetaData.cs#L26C17-L32C33" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectoryReplicationMetadata.AttributeNames", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryReplicationMetaData.cs#L36C58-L36C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryReplicationMetaData.cs#L36C58-L36C62" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectoryReplicationMetadata.Values", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryReplicationMetaData.cs#L38C53-L38C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryReplicationMetaData.cs#L38C53-L38C57" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ActiveDirectoryReplicationMetadata", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryReplicationMetaData.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryReplicationMetaData.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.ActiveDirectory.HourOfDay.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.HourOfDay.Zero", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.HourOfDay.One", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.HourOfDay.Two", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.HourOfDay.Three", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.HourOfDay.Four", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.HourOfDay.Five", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.HourOfDay.Six", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.HourOfDay.Seven", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.HourOfDay.Eight", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.HourOfDay.Nine", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.HourOfDay.Ten", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.HourOfDay.Eleven", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.HourOfDay.Twelve", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.HourOfDay.Thirteen", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.HourOfDay.Fourteen", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.HourOfDay.Fifteen", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.HourOfDay.Sixteen", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.HourOfDay.Seventeen", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.HourOfDay.Eighteen", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.HourOfDay.Nineteen", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.HourOfDay.Twenty", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.HourOfDay.TwentyOne", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.HourOfDay.TwentyTwo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.HourOfDay.TwentyThree", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.HourOfDay", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.ActiveDirectory.MinuteOfHour.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.MinuteOfHour.Zero", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.MinuteOfHour.Fifteen", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.MinuteOfHour.Thirty", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.MinuteOfHour.FortyFive", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.MinuteOfHour", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchedule.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs#L47C9-L56C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs#L47C9-L56C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchedule.#ctor(System.DirectoryServices.ActiveDirectory.ActiveDirectorySchedule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs#L58C76-L65C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs#L58C76-L65C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchedule.SetSchedule(System.DayOfWeek,System.DirectoryServices.ActiveDirectory.HourOfDay,System.DirectoryServices.ActiveDirectory.MinuteOfHour,System.DirectoryServices.ActiveDirectory.HourOfDay,System.DirectoryServices.ActiveDirectory.MinuteOfHour)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs#L100C13-L124C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs#L100C13-L124C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchedule.SetSchedule(System.DayOfWeek[],System.DirectoryServices.ActiveDirectory.HourOfDay,System.DirectoryServices.ActiveDirectory.MinuteOfHour,System.DirectoryServices.ActiveDirectory.HourOfDay,System.DirectoryServices.ActiveDirectory.MinuteOfHour)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs#L128C13-L138C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs#L128C13-L138C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchedule.SetDailySchedule(System.DirectoryServices.ActiveDirectory.HourOfDay,System.DirectoryServices.ActiveDirectory.MinuteOfHour,System.DirectoryServices.ActiveDirectory.HourOfDay,System.DirectoryServices.ActiveDirectory.MinuteOfHour)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs#L142C18-L146C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs#L142C18-L146C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchedule.ResetSchedule", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs#L150C18-L152C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs#L150C18-L152C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchedule.RawSchedule", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs#L77C17-L82C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs#L77C17-L82C28" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchedule", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.ActiveDirectory.SchemaClassType.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.SchemaClassType.Type88", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.SchemaClassType.Structural", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.SchemaClassType.Abstract", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.SchemaClassType.Auxiliary", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.SchemaClassType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.ActiveDirectory.PropertyTypes.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.PropertyTypes.Indexed", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.PropertyTypes.InGlobalCatalog", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.PropertyTypes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchema.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L53C13-L83C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L53C13-L83C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchema.GetSchema(System.DirectoryServices.ActiveDirectory.DirectoryContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L89C13-L175C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L89C13-L175C84" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchema.RefreshSchema", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L180C13-L203C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L180C13-L203C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchema.FindClass(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L210C13-L211C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L210C13-L211C84" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchema.FindDefunctClass(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L219C13-L236C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L219C13-L236C32" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchema.FindAllClasses", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L244C13-L247C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L244C13-L247C65" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchema.FindAllClasses(System.DirectoryServices.ActiveDirectory.SchemaClassType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L255C13-L266C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L255C13-L266C65" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchema.FindAllDefunctClasses", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L274C13-L278C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L274C13-L278C65" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchema.FindProperty(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L286C13-L287C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L286C13-L287C87" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchema.FindDefunctProperty(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L295C13-L312C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L295C13-L312C35" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchema.FindAllProperties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L320C13-L324C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L320C13-L324C68" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchema.FindAllProperties(System.DirectoryServices.ActiveDirectory.PropertyTypes)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L332C13-L366C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L332C13-L366C76" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchema.FindAllDefunctProperties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L374C13-L378C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L374C13-L378C68" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchema.GetDirectoryEntry", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L383C13-L384C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L383C13-L384C75" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchema.GetCurrentSchema", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L389C13-L389C103" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L389C13-L389C103" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchema.SchemaRoleOwner", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L400C17-L401C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L400C17-L401C72" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchema", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass.#ctor(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L42C9-L89C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L42C9-L89C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L182C13-L183C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L182C13-L183C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L188C13-L217C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L188C13-L217C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass.FindByName(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L223C13-L255C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L223C13-L255C32" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass.GetAllProperties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L260C13-L269C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L260C13-L269C84" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass.Save", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L274C13-L420C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L274C13-L420C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L424C13-L424C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L424C13-L424C25" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass.GetDirectoryEntry", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L429C13-L439C96" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L429C13-L439C96" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L448C17-L449C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L448C17-L449C41" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass.CommonName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L457C17-L464C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L457C17-L464C36" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass.Oid", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L483C17-L508C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L483C17-L508C29" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass.Description", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L527C17-L538C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L527C17-L538C37" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass.IsDefunct", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L557C17-L559C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L557C17-L559C35" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass.PossibleSuperiors", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L578C17-L647C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L578C17-L647C43" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass.PossibleInferiors", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L655C17-L669C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L655C17-L669C43" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass.MandatoryProperties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L677C17-L745C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L677C17-L745C45" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass.OptionalProperties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L753C17-L830C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L753C17-L830C44" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass.AuxiliaryClasses", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L838C17-L906C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L838C17-L906C42" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass.SubClassOf", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L914C17-L921C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L914C17-L921C36" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass.Type", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L940C17-L951C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L940C17-L951C30" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass.SchemaGuid", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L976C17-L985C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L976C17-L985C57" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass.DefaultObjectSecurityDescriptor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L1004C17-L1025C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L1004C17-L1025C56" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClassCollection.Add(System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs#L82C13-L95C122" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs#L82C13-L95C122" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClassCollection.AddRange(System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs#L101C13-L115C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs#L101C13-L115C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClassCollection.AddRange(System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClassCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs#L119C13-L134C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs#L119C13-L134C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClassCollection.AddRange(System.DirectoryServices.ActiveDirectory.ReadOnlyActiveDirectorySchemaClassCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs#L138C13-L153C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs#L138C13-L153C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClassCollection.Remove(System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs#L157C13-L173C111" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs#L157C13-L173C111" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClassCollection.Insert(System.Int32,System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs#L178C13-L191C122" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs#L178C13-L191C122" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClassCollection.Contains(System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs#L197C13-L213C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs#L197C13-L213C26" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClassCollection.CopyTo(System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs#L218C13-L219C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs#L218C13-L219C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClassCollection.IndexOf(System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs#L223C13-L239C23" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs#L223C13-L239C23" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClassCollection.OnClearComplete", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs#L244C13-L260C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs#L244C13-L260C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClassCollection.OnInsertComplete(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs#L266C13-L279C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs#L266C13-L279C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClassCollection.OnRemoveComplete(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs#L285C13-L311C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs#L285C13-L311C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClassCollection.OnSetComplete(System.Int32,System.Object,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs#L317C13-L324C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs#L317C13-L324C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClassCollection.OnValidate(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs#L328C13-L337C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs#L328C13-L337C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClassCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs#L56C20-L56C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs#L56C20-L56C60" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClassCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty.#ctor(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L40C9-L140C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L40C9-L140C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L232C13-L233C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L232C13-L233C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L238C13-L268C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L238C13-L268C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty.FindByName(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L274C13-L304C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L274C13-L304C35" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty.Save", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L309C13-L454C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L309C13-L454C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L456C46-L456C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L456C46-L456C50" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty.GetDirectoryEntry", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L460C13-L470C99" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L460C13-L470C99" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L480C17-L481C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L480C17-L481C41" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty.CommonName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L489C17-L496C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L489C17-L496C36" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty.Oid", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L518C17-L543C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L518C17-L543C29" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty.Syntax", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L565C17-L580C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L565C17-L580C32" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty.Description", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L604C17-L615C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L604C17-L615C37" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty.IsSingleValued", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L637C17-L663C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L637C17-L663C40" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty.IsIndexed", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L686C17-L688C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L686C17-L688C66" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty.IsIndexedOverContainer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L709C17-L711C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L709C17-L711C79" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty.IsInAnr", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L732C17-L734C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L732C17-L734C64" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty.IsOnTombstonedObject", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L755C17-L757C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L755C17-L757C77" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty.IsTupleIndexed", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L778C17-L780C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L778C17-L780C71" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty.IsInGlobalCatalog", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L801C17-L813C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L801C17-L813C43" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty.RangeLower", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L836C17-L856C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L836C17-L856C36" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty.RangeUpper", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L889C17-L909C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L889C17-L909C36" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty.IsDefunct", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L942C17-L944C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L942C17-L944C35" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty.Link", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L963C17-L998C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L963C17-L998C40" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty.LinkId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L1006C17-L1025C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L1006C17-L1025C32" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty.SchemaGuid", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L1058C17-L1067C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L1058C17-L1067C57" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaPropertyCollection.Add(System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs#L80C13-L93C128" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs#L80C13-L93C128" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaPropertyCollection.AddRange(System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs#L99C13-L113C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs#L99C13-L113C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaPropertyCollection.AddRange(System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaPropertyCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs#L117C13-L133C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs#L117C13-L133C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaPropertyCollection.AddRange(System.DirectoryServices.ActiveDirectory.ReadOnlyActiveDirectorySchemaPropertyCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs#L137C13-L153C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs#L137C13-L153C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaPropertyCollection.Remove(System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs#L157C13-L173C117" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs#L157C13-L173C117" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaPropertyCollection.Insert(System.Int32,System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs#L178C13-L191C128" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs#L178C13-L191C128" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaPropertyCollection.Contains(System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs#L197C13-L212C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs#L197C13-L212C26" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaPropertyCollection.CopyTo(System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs#L232C13-L233C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs#L232C13-L233C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaPropertyCollection.IndexOf(System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs#L237C13-L252C23" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs#L237C13-L252C23" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaPropertyCollection.OnClearComplete", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs#L257C13-L273C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs#L257C13-L273C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaPropertyCollection.OnInsertComplete(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs#L279C13-L292C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs#L279C13-L292C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaPropertyCollection.OnRemoveComplete(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs#L298C13-L324C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs#L298C13-L324C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaPropertyCollection.OnSetComplete(System.Int32,System.Object,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs#L330C13-L338C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs#L330C13-L338C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaPropertyCollection.OnValidate(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs#L342C13-L349C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs#L342C13-L349C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaPropertyCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs#L56C20-L56C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs#L56C20-L56C63" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaPropertyCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteOptions.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteOptions.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteOptions.AutoTopologyDisabled", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteOptions.TopologyCleanupDisabled", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteOptions.AutoMinimumHopDisabled", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteOptions.StaleServerDetectDisabled", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteOptions.AutoInterSiteTopologyDisabled", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteOptions.GroupMembershipCachingEnabled", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteOptions.ForceKccWindows2003Behavior", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteOptions.UseWindows2000IstgElection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteOptions.RandomBridgeHeaderServerSelectionDisabled", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteOptions.UseHashingForReplicationSchedule", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteOptions.RedundantServerTopologyEnabled", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySite.FindByName(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L64C13-L123C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L64C13-L123C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySite.#ctor(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L37C9-L168C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L37C9-L168C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySite.GetComputerSite", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L193C13-L227C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L193C13-L227C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySite.Save", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L720C13-L850C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L720C13-L850C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySite.Delete", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L854C13-L872C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L854C13-L872C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySite.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L876C13-L879C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L876C13-L879C26" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySite.GetDirectoryEntry", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L1074C13-L1083C99" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L1074C13-L1083C99" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySite.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L1089C13-L1091C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L1089C13-L1091C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySite.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L1095C13-L1105C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L1095C13-L1105C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySite.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L233C17-L236C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L233C17-L236C30" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySite.Domains", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L244C17-L258C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L244C17-L258C33" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySite.Subnets", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L266C17-L282C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L266C17-L282C33" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySite.Servers", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L290C17-L303C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L290C17-L303C33" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySite.AdjacentSites", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L311C17-L323C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L311C17-L323C39" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySite.SiteLinks", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L331C17-L343C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L331C17-L343C31" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySite.InterSiteTopologyGenerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L352C17-L407C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L352C17-L407C14" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySite.Options", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L431C17-L452C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L431C17-L452C14" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySite.Location", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L478C17-L494C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L478C17-L494C14" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySite.BridgeheadServers", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L523C17-L532C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L523C17-L532C43" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySite.PreferredSmtpBridgeheadServers", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L540C17-L556C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L540C17-L556C47" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySite.PreferredRpcBridgeheadServers", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L564C17-L579C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L564C17-L579C46" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySite.IntraSiteReplicationSchedule", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L587C17-L620C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L587C17-L620C33" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ActiveDirectorySite", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteCollection.Add(System.DirectoryServices.ActiveDirectory.ActiveDirectorySite)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteCollection.cs#L45C13-L53C108" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteCollection.cs#L45C13-L53C108" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteCollection.AddRange(System.DirectoryServices.ActiveDirectory.ActiveDirectorySite[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteCollection.cs#L58C13-L62C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteCollection.cs#L58C13-L62C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteCollection.AddRange(System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteCollection.cs#L66C13-L71C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteCollection.cs#L66C13-L71C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteCollection.Contains(System.DirectoryServices.ActiveDirectory.ActiveDirectorySite)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteCollection.cs#L75C13-L92C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteCollection.cs#L75C13-L92C26" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteCollection.CopyTo(System.DirectoryServices.ActiveDirectory.ActiveDirectorySite[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteCollection.cs#L97C13-L98C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteCollection.cs#L97C13-L98C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteCollection.IndexOf(System.DirectoryServices.ActiveDirectory.ActiveDirectorySite)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteCollection.cs#L102C13-L119C23" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteCollection.cs#L102C13-L119C23" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteCollection.Insert(System.Int32,System.DirectoryServices.ActiveDirectory.ActiveDirectorySite)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteCollection.cs#L124C13-L132C108" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteCollection.cs#L124C13-L132C108" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteCollection.Remove(System.DirectoryServices.ActiveDirectory.ActiveDirectorySite)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteCollection.cs#L137C13-L157C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteCollection.cs#L137C13-L157C97" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteCollection.OnClearComplete", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteCollection.cs#L163C13-L175C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteCollection.cs#L163C13-L175C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteCollection.OnInsertComplete(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteCollection.cs#L181C13-L194C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteCollection.cs#L181C13-L194C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteCollection.OnRemoveComplete(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteCollection.cs#L200C13-L210C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteCollection.cs#L200C13-L210C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteCollection.OnSetComplete(System.Int32,System.Object,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteCollection.cs#L216C13-L226C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteCollection.cs#L216C13-L226C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteCollection.OnValidate(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteCollection.cs#L230C13-L237C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteCollection.cs#L230C13-L237C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteCollection.cs#L25C20-L25C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteCollection.cs#L25C20-L25C58" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteCollection.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLink.#ctor(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L28C89-L30C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L28C89-L30C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLink.#ctor(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String,System.DirectoryServices.ActiveDirectory.ActiveDirectoryTransportType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L32C129-L34C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L32C129-L34C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLink.#ctor(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String,System.DirectoryServices.ActiveDirectory.ActiveDirectoryTransportType,System.DirectoryServices.ActiveDirectory.ActiveDirectorySchedule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L22C9-L101C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L22C9-L101C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLink.FindByName(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L114C13-L114C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L114C13-L114C88" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLink.FindByName(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String,System.DirectoryServices.ActiveDirectory.ActiveDirectoryTransportType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L119C13-L195C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L119C13-L195C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLink.Save", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L579C13-L599C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L579C13-L599C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLink.Delete", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L603C13-L621C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L603C13-L621C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLink.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L625C13-L628C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L625C13-L628C26" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLink.GetDirectoryEntry", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L633C13-L642C99" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L633C13-L642C99" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLink.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L648C13-L650C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L648C13-L650C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLink.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L654C13-L663C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L654C13-L663C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLink.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L201C17-L204C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L201C17-L204C30" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLink.TransportType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L212C17-L215C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L212C17-L215C35" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLink.Sites", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L223C17-L240C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L223C17-L240C31" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLink.Cost", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L248C17-L263C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L248C17-L263C14" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLink.ReplicationInterval", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L287C17-L304C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L287C17-L304C14" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLink.ReciprocalReplicationEnabled", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L336C17-L359C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L336C17-L359C33" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLink.NotificationEnabled", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L400C17-L423C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L400C17-L423C33" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLink.DataCompressionEnabled", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L464C17-L490C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L464C17-L490C34" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLink.InterSiteReplicationSchedule", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L532C17-L551C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L532C17-L551C33" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLink", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkBridge.#ctor(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkBridge.cs#L24C93-L26C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkBridge.cs#L24C93-L26C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkBridge.#ctor(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String,System.DirectoryServices.ActiveDirectory.ActiveDirectoryTransportType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkBridge.cs#L21C9-L88C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkBridge.cs#L21C9-L88C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkBridge.FindByName(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkBridge.cs#L101C13-L101C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkBridge.cs#L101C13-L101C86" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkBridge.FindByName(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String,System.DirectoryServices.ActiveDirectory.ActiveDirectoryTransportType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkBridge.cs#L106C13-L183C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkBridge.cs#L106C13-L183C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkBridge.Save", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkBridge.cs#L234C13-L255C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkBridge.cs#L234C13-L255C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkBridge.Delete", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkBridge.cs#L259C13-L277C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkBridge.cs#L259C13-L277C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkBridge.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkBridge.cs#L281C13-L284C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkBridge.cs#L281C13-L284C26" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkBridge.GetDirectoryEntry", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkBridge.cs#L289C13-L298C100" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkBridge.cs#L289C13-L298C100" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkBridge.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkBridge.cs#L304C13-L306C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkBridge.cs#L304C13-L306C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkBridge.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkBridge.cs#L310C13-L319C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkBridge.cs#L310C13-L319C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkBridge.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkBridge.cs#L189C17-L192C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkBridge.cs#L189C17-L192C30" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkBridge.SiteLinks", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkBridge.cs#L200C17-L217C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkBridge.cs#L200C17-L217C31" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkBridge.TransportType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkBridge.cs#L225C17-L228C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkBridge.cs#L225C17-L228C35" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkBridge", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkBridge.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkBridge.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkCollection.Add(System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLink)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkCollection.cs#L39C13-L48C108" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkCollection.cs#L39C13-L48C108" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkCollection.AddRange(System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLink[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkCollection.cs#L53C13-L58C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkCollection.cs#L53C13-L58C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkCollection.AddRange(System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkCollection.cs#L62C13-L68C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkCollection.cs#L62C13-L68C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkCollection.Contains(System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLink)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkCollection.cs#L72C13-L90C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkCollection.cs#L72C13-L90C26" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkCollection.CopyTo(System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLink[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkCollection.cs#L95C13-L96C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkCollection.cs#L95C13-L96C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkCollection.IndexOf(System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLink)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkCollection.cs#L100C13-L118C23" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkCollection.cs#L100C13-L118C23" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkCollection.Insert(System.Int32,System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLink)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkCollection.cs#L123C13-L132C108" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkCollection.cs#L123C13-L132C108" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkCollection.Remove(System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLink)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkCollection.cs#L137C13-L158C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkCollection.cs#L137C13-L158C97" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkCollection.OnClearComplete", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkCollection.cs#L164C13-L176C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkCollection.cs#L164C13-L176C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkCollection.OnInsertComplete(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkCollection.cs#L182C13-L195C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkCollection.cs#L182C13-L195C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkCollection.OnRemoveComplete(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkCollection.cs#L201C13-L211C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkCollection.cs#L201C13-L211C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkCollection.OnSetComplete(System.Int32,System.Object,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkCollection.cs#L217C13-L227C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkCollection.cs#L217C13-L227C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkCollection.OnValidate(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkCollection.cs#L231C13-L238C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkCollection.cs#L231C13-L238C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkCollection.cs#L19C20-L19C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkCollection.cs#L19C20-L19C62" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkCollection.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnet.FindByName(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnet.cs#L21C13-L107C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnet.cs#L21C13-L107C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnet.#ctor(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnet.cs#L109C9-L147C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnet.cs#L109C9-L147C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnet.#ctor(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnet.cs#L149C102-L166C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnet.cs#L149C102-L166C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnet.Save", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnet.cs#L272C13-L308C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnet.cs#L272C13-L308C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnet.Delete", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnet.cs#L312C13-L330C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnet.cs#L312C13-L330C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnet.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnet.cs#L334C13-L337C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnet.cs#L334C13-L337C25" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnet.GetDirectoryEntry", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnet.cs#L342C13-L351C99" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnet.cs#L342C13-L351C99" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnet.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnet.cs#L357C13-L359C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnet.cs#L357C13-L359C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnet.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnet.cs#L363C13-L372C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnet.cs#L363C13-L372C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnet.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnet.cs#L194C17-L197C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnet.cs#L194C17-L197C30" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnet.Site", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnet.cs#L205C17-L208C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnet.cs#L205C17-L208C30" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnet.Location", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnet.cs#L230C17-L244C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnet.cs#L230C17-L244C14" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnet", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnet.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnet.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnetCollection.Add(System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnet)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs#L49C13-L58C112" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs#L49C13-L58C112" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnetCollection.AddRange(System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnet[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs#L63C13-L76C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs#L63C13-L76C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnetCollection.AddRange(System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnetCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs#L80C13-L86C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs#L80C13-L86C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnetCollection.Contains(System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnet)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs#L90C13-L108C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs#L90C13-L108C26" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnetCollection.CopyTo(System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnet[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs#L113C13-L114C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs#L113C13-L114C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnetCollection.IndexOf(System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnet)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs#L118C13-L136C23" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs#L118C13-L136C23" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnetCollection.Insert(System.Int32,System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnet)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs#L141C13-L150C112" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs#L141C13-L150C112" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnetCollection.Remove(System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnet)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs#L155C13-L176C101" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs#L155C13-L176C101" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnetCollection.OnClear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs#L181C13-L189C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs#L181C13-L189C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnetCollection.OnClearComplete", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs#L194C13-L201C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs#L194C13-L201C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnetCollection.OnInsertComplete(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs#L207C13-L230C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs#L207C13-L230C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnetCollection.OnRemoveComplete(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs#L236C13-L256C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs#L236C13-L256C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnetCollection.OnSetComplete(System.Int32,System.Object,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs#L262C13-L264C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs#L262C13-L264C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnetCollection.OnValidate(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs#L268C13-L275C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs#L268C13-L275C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnetCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs#L29C20-L29C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs#L29C20-L29C60" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnetCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySyntax.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySyntax.CaseExactString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySyntax.CaseIgnoreString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySyntax.NumericString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySyntax.DirectoryString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySyntax.OctetString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySyntax.SecurityDescriptor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySyntax.Int", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySyntax.Int64", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySyntax.Bool", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySyntax.Oid", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySyntax.GeneralizedTime", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySyntax.UtcTime", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySyntax.DN", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySyntax.DNWithBinary", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySyntax.DNWithString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySyntax.Enumeration", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySyntax.IA5String", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySyntax.PrintableString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySyntax.Sid", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySyntax.AccessPointDN", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySyntax.ORName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySyntax.PresentationAddress", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySyntax.ReplicaLink", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ActiveDirectorySyntax", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.AdamInstance.Finalize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L84C13-L85C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L84C13-L85C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.AdamInstance.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L90C13-L106C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L90C13-L106C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.AdamInstance.GetAdamInstance(System.DirectoryServices.ActiveDirectory.DirectoryContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L113C13-L164C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L113C13-L164C78" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.AdamInstance.FindOne(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L170C13-L194C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L170C13-L194C87" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.AdamInstance.FindAll(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L199C13-L236C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L199C13-L236C43" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.AdamInstance.TransferRoleOwnership(System.DirectoryServices.ActiveDirectory.AdamRole)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L241C13-L262C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L241C13-L262C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.AdamInstance.SeizeRoleOwnership(System.DirectoryServices.ActiveDirectory.AdamRole)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L268C13-L308C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L268C13-L308C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.AdamInstance.CheckReplicationConsistency", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L312C13-L320C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L312C13-L320C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.AdamInstance.GetReplicationCursors(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L324C13-L340C123" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L324C13-L340C123" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.AdamInstance.GetReplicationOperationInformation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L345C13-L354C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L345C13-L354C88" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.AdamInstance.GetReplicationNeighbors(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L359C13-L374C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L359C13-L374C80" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.AdamInstance.GetAllReplicationNeighbors", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L379C13-L388C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L379C13-L388C80" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.AdamInstance.GetReplicationConnectionFailures", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L393C13-L393C100" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L393C13-L393C100" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.AdamInstance.GetReplicationMetadata(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L398C13-L413C89" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L398C13-L413C89" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.AdamInstance.SyncReplicaFromServer(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L418C13-L436C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L418C13-L436C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.AdamInstance.TriggerSyncReplicaFromNeighbors(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L440C13-L452C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L440C13-L452C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.AdamInstance.SyncReplicaFromAllServers(System.String,System.DirectoryServices.ActiveDirectory.SyncFromAllServersOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L456C13-L468C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L456C13-L468C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.AdamInstance.Save", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L472C13-L491C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L472C13-L491C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.AdamInstance.ConfigurationSet", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L501C17-L507C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L501C17-L507C42" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.AdamInstance.HostName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L515C17-L521C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L515C17-L521C40" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.AdamInstance.LdapPort", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L529C17-L535C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L529C17-L535C40" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.AdamInstance.SslPort", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L543C17-L549C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L543C17-L549C39" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.AdamInstance.Roles", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L559C17-L595C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L559C17-L595C37" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.AdamInstance.DefaultPartition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L603C17-L626C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L603C17-L626C48" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.AdamInstance.IPAddress", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L666C17-L675C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L666C17-L675C33" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.AdamInstance.SiteName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L684C17-L697C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L684C17-L697C39" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.AdamInstance.SyncFromAllServersCallback", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L796C17-L799C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L796C17-L799C38" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.AdamInstance.InboundConnections", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L811C79-L811C108" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L811C79-L811C108" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.AdamInstance.OutboundConnections", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L813C80-L813C110" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L813C80-L813C110" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.AdamInstance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.AdamInstanceCollection.Contains(System.DirectoryServices.ActiveDirectory.AdamInstance)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstanceCollection.cs#L24C13-L37C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstanceCollection.cs#L24C13-L37C26" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.AdamInstanceCollection.IndexOf(System.DirectoryServices.ActiveDirectory.AdamInstance)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstanceCollection.cs#L42C13-L56C23" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstanceCollection.cs#L42C13-L56C23" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.AdamInstanceCollection.CopyTo(System.DirectoryServices.ActiveDirectory.AdamInstance[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstanceCollection.cs#L61C13-L62C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstanceCollection.cs#L61C13-L62C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.AdamInstanceCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstanceCollection.cs#L20C48-L20C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstanceCollection.cs#L20C48-L20C79" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.AdamInstanceCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstanceCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstanceCollection.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ApplicationPartition.#ctor(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L28C9-L46C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L28C9-L46C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ApplicationPartition.#ctor(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L28C9-L55C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L28C9-L55C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ApplicationPartition.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L76C13-L102C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L76C13-L102C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ApplicationPartition.GetApplicationPartition(System.DirectoryServices.ActiveDirectory.DirectoryContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L110C13-L155C155" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L110C13-L155C155" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ApplicationPartition.FindByName(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L160C13-L347C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L160C13-L347C30" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ApplicationPartition.FindDirectoryServer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L352C13-L370C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L352C13-L370C36" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ApplicationPartition.FindDirectoryServer(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L375C13-L399C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L375C13-L399C36" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ApplicationPartition.FindDirectoryServer(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L404C13-L424C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L404C13-L424C36" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ApplicationPartition.FindDirectoryServer(System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L429C13-L454C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L429C13-L454C36" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ApplicationPartition.FindAllDirectoryServers", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L459C13-L476C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L459C13-L476C41" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ApplicationPartition.FindAllDirectoryServers(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L482C13-L504C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L482C13-L504C41" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ApplicationPartition.FindAllDiscoverableDirectoryServers", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L510C13-L522C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L510C13-L522C77" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ApplicationPartition.FindAllDiscoverableDirectoryServers(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L528C13-L545C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L528C13-L545C77" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ApplicationPartition.Delete", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L551C13-L575C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L551C13-L575C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ApplicationPartition.Save", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L579C13-L742C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L579C13-L742C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ApplicationPartition.GetDirectoryEntry", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L746C13-L753C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L746C13-L753C75" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ApplicationPartition.DirectoryServers", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L764C17-L783C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L764C17-L783C48" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ApplicationPartition.SecurityReferenceDomain", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L791C17-L822C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L791C17-L822C14" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ApplicationPartition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ApplicationPartitionCollection.Contains(System.DirectoryServices.ActiveDirectory.ApplicationPartition)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartitionCollection.cs#L24C13-L37C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartitionCollection.cs#L24C13-L37C26" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ApplicationPartitionCollection.IndexOf(System.DirectoryServices.ActiveDirectory.ApplicationPartition)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartitionCollection.cs#L42C13-L55C23" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartitionCollection.cs#L42C13-L55C23" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ApplicationPartitionCollection.CopyTo(System.DirectoryServices.ActiveDirectory.ApplicationPartition[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartitionCollection.cs#L60C13-L61C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartitionCollection.cs#L60C13-L61C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ApplicationPartitionCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartitionCollection.cs#L20C56-L20C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartitionCollection.cs#L20C56-L20C95" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ApplicationPartitionCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartitionCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartitionCollection.cs" }, { "Members": [ { "DocsId": "P:System.DirectoryServices.ActiveDirectory.AttributeMetadata.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/AttributeMetaData.cs#L55C30-L55C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/AttributeMetaData.cs#L55C30-L55C34" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.AttributeMetadata.Version", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/AttributeMetaData.cs#L57C30-L57C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/AttributeMetaData.cs#L57C30-L57C34" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.AttributeMetadata.LastOriginatingChangeTime", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/AttributeMetaData.cs#L59C53-L59C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/AttributeMetaData.cs#L59C53-L59C57" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.AttributeMetadata.LastOriginatingInvocationId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/AttributeMetaData.cs#L61C51-L61C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/AttributeMetaData.cs#L61C51-L61C55" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.AttributeMetadata.OriginatingChangeUsn", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/AttributeMetaData.cs#L63C44-L63C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/AttributeMetaData.cs#L63C44-L63C48" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.AttributeMetadata.LocalChangeUsn", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/AttributeMetaData.cs#L65C38-L65C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/AttributeMetaData.cs#L65C38-L65C42" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.AttributeMetadata.OriginatingServer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/AttributeMetaData.cs#L71C17-L88C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/AttributeMetaData.cs#L71C17-L88C47" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.AttributeMetadata", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/AttributeMetaData.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/AttributeMetaData.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.AttributeMetadataCollection.Contains(System.DirectoryServices.ActiveDirectory.AttributeMetadata)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/AttributeMetadataCollection.cs#L16C13-L29C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/AttributeMetadataCollection.cs#L16C13-L29C26" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.AttributeMetadataCollection.IndexOf(System.DirectoryServices.ActiveDirectory.AttributeMetadata)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/AttributeMetadataCollection.cs#L34C13-L46C23" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/AttributeMetadataCollection.cs#L34C13-L46C23" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.AttributeMetadataCollection.CopyTo(System.DirectoryServices.ActiveDirectory.AttributeMetadata[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/AttributeMetadataCollection.cs#L51C13-L52C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/AttributeMetadataCollection.cs#L51C13-L52C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.AttributeMetadataCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/AttributeMetadataCollection.cs#L12C53-L12C89" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/AttributeMetadataCollection.cs#L12C53-L12C89" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.AttributeMetadataCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/AttributeMetadataCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/AttributeMetadataCollection.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ConfigurationSet.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L48C34-L48C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L48C34-L48C47" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ConfigurationSet.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L53C13-L67C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L53C13-L67C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ConfigurationSet.GetConfigurationSet(System.DirectoryServices.ActiveDirectory.DirectoryContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L75C13-L151C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L75C13-L151C84" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ConfigurationSet.FindAdamInstance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L156C13-L157C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L156C13-L157C68" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ConfigurationSet.FindAdamInstance(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L162C13-L169C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L162C13-L169C77" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ConfigurationSet.FindAdamInstance(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L174C13-L185C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L174C13-L185C81" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ConfigurationSet.FindAllAdamInstances", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L190C13-L192C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L190C13-L192C60" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ConfigurationSet.FindAllAdamInstances(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L197C13-L204C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L197C13-L204C69" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ConfigurationSet.FindAllAdamInstances(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L209C13-L220C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L209C13-L220C73" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ConfigurationSet.GetDirectoryEntry", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L225C13-L226C110" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L225C13-L226C110" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ConfigurationSet.GetSecurityLevel", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L231C13-L237C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L231C13-L237C41" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ConfigurationSet.SetSecurityLevel(System.DirectoryServices.ActiveDirectory.ReplicationSecurityLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L242C13-L261C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L242C13-L261C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ConfigurationSet.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L263C46-L263C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L263C46-L263C50" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ConfigurationSet.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L273C17-L274C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L273C17-L274C39" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ConfigurationSet.Sites", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L282C17-L283C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L282C17-L283C80" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ConfigurationSet.AdamInstances", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L291C17-L292C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L291C17-L292C72" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ConfigurationSet.ApplicationPartitions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L300C17-L301C120" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L300C17-L301C120" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ConfigurationSet.Schema", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L309C17-L321C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L309C17-L321C38" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ConfigurationSet.SchemaRoleOwner", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L329C17-L330C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L329C17-L330C85" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ConfigurationSet.NamingRoleOwner", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L338C17-L339C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L338C17-L339C85" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ConfigurationSet", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.ActiveDirectory.DirectoryContextType.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryContext.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryContext.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.DirectoryContextType.Domain", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryContext.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryContext.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.DirectoryContextType.Forest", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryContext.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryContext.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.DirectoryContextType.DirectoryServer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryContext.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryContext.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.DirectoryContextType.ConfigurationSet", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryContext.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryContext.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.DirectoryContextType.ApplicationPartition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryContext.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryContext.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.DirectoryContextType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryContext.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryContext.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryContext.#ctor(System.DirectoryServices.ActiveDirectory.DirectoryContextType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryContext.cs#L103C9-L115C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryContext.cs#L103C9-L115C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryContext.#ctor(System.DirectoryServices.ActiveDirectory.DirectoryContextType,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryContext.cs#L117C9-L135C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryContext.cs#L117C9-L135C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryContext.#ctor(System.DirectoryServices.ActiveDirectory.DirectoryContextType,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryContext.cs#L137C9-L149C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryContext.cs#L137C9-L149C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryContext.#ctor(System.DirectoryServices.ActiveDirectory.DirectoryContextType,System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryContext.cs#L151C9-L169C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryContext.cs#L151C9-L169C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.DirectoryContext.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryContext.cs#L175C32-L175C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryContext.cs#L175C32-L175C37" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.DirectoryContext.UserName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryContext.cs#L177C36-L177C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryContext.cs#L177C36-L177C80" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.DirectoryContext.ContextType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryContext.cs#L184C52-L184C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryContext.cs#L184C52-L184C64" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.DirectoryContext", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryContext.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryContext.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryServer.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs#L24C9-L37C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs#L24C9-L37C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryServer.Finalize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs#L41C31-L41C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs#L41C31-L16707566C0" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryServer.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs#L45C13-L51C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs#L45C13-L51C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryServer.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs#L56C13-L70C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs#L56C13-L70C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryServer.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs#L74C46-L74C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs#L74C46-L74C50" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryServer.MoveToAnotherSite(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs#L78C13-L144C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs#L78C13-L144C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryServer.GetDirectoryEntry", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs#L148C13-L150C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs#L148C13-L150C81" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryServer.CheckReplicationConsistency", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryServer.GetReplicationCursors(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryServer.GetReplicationOperationInformation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryServer.GetReplicationNeighbors(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryServer.GetAllReplicationNeighbors", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryServer.GetReplicationConnectionFailures", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryServer.GetReplicationMetadata(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryServer.SyncReplicaFromServer(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryServer.TriggerSyncReplicaFromNeighbors(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryServer.SyncReplicaFromAllServers(System.String,System.DirectoryServices.ActiveDirectory.SyncFromAllServersOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.DirectoryServer.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs#L185C17-L186C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs#L185C17-L186C36" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.DirectoryServer.Partitions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs#L194C17-L195C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs#L194C17-L195C91" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.DirectoryServer.IPAddress", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.DirectoryServer.SiteName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.DirectoryServer.SyncFromAllServersCallback", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.DirectoryServer.InboundConnections", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.DirectoryServer.OutboundConnections", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.DirectoryServer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryServerCollection.Add(System.DirectoryServices.ActiveDirectory.DirectoryServer)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServerCollection.cs#L65C13-L105C116" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServerCollection.cs#L65C13-L105C116" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryServerCollection.AddRange(System.DirectoryServices.ActiveDirectory.DirectoryServer[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServerCollection.cs#L111C13-L124C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServerCollection.cs#L111C13-L124C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryServerCollection.Contains(System.DirectoryServices.ActiveDirectory.DirectoryServer)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServerCollection.cs#L128C13-L140C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServerCollection.cs#L128C13-L140C26" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryServerCollection.CopyTo(System.DirectoryServices.ActiveDirectory.DirectoryServer[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServerCollection.cs#L145C13-L146C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServerCollection.cs#L145C13-L146C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryServerCollection.IndexOf(System.DirectoryServices.ActiveDirectory.DirectoryServer)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServerCollection.cs#L150C13-L162C23" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServerCollection.cs#L150C13-L162C23" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryServerCollection.Insert(System.Int32,System.DirectoryServices.ActiveDirectory.DirectoryServer)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServerCollection.cs#L167C13-L207C100" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServerCollection.cs#L167C13-L207C100" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryServerCollection.Remove(System.DirectoryServices.ActiveDirectory.DirectoryServer)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServerCollection.cs#L213C13-L228C101" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServerCollection.cs#L213C13-L228C101" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryServerCollection.OnClear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServerCollection.cs#L233C13-L241C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServerCollection.cs#L233C13-L241C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryServerCollection.OnClearComplete", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServerCollection.cs#L246C13-L270C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServerCollection.cs#L246C13-L270C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryServerCollection.OnInsertComplete(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServerCollection.cs#L276C13-L317C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServerCollection.cs#L276C13-L317C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryServerCollection.OnRemoveComplete(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServerCollection.cs#L323C13-L363C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServerCollection.cs#L323C13-L363C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryServerCollection.OnSetComplete(System.Int32,System.Object,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServerCollection.cs#L369C13-L371C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServerCollection.cs#L369C13-L371C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryServerCollection.OnValidate(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServerCollection.cs#L375C13-L397C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServerCollection.cs#L375C13-L397C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.DirectoryServerCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServerCollection.cs#L48C20-L48C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServerCollection.cs#L48C20-L48C54" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.DirectoryServerCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServerCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServerCollection.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.ActiveDirectory.DomainMode.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.DomainMode.Unknown", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.DomainMode.Windows2000MixedDomain", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.DomainMode.Windows2000NativeDomain", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.DomainMode.Windows2003InterimDomain", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.DomainMode.Windows2003Domain", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.DomainMode.Windows2008Domain", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.DomainMode.Windows2008R2Domain", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.DomainMode.Windows8Domain", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.DomainMode.Windows2012R2Domain", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.DomainMode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Domain.GetDomain(System.DirectoryServices.ActiveDirectory.DirectoryContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L64C13-L134C100" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L64C13-L134C100" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Domain.GetComputerDomain", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L139C13-L145C108" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L139C13-L145C108" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Domain.RaiseDomainFunctionalityLevel(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L151C13-L253C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L151C13-L253C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Domain.RaiseDomainFunctionality(System.DirectoryServices.ActiveDirectory.DomainMode)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L258C13-L408C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L258C13-L408C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Domain.FindDomainController", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L412C13-L414C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L412C13-L414C77" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Domain.FindDomainController(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L419C13-L426C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L419C13-L426C81" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Domain.FindDomainController(System.DirectoryServices.ActiveDirectory.LocatorOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L431C13-L433C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L431C13-L433C80" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Domain.FindDomainController(System.String,System.DirectoryServices.ActiveDirectory.LocatorOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L438C13-L445C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L438C13-L445C84" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Domain.FindAllDomainControllers", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L450C13-L452C101" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L450C13-L452C101" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Domain.FindAllDomainControllers(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L457C13-L464C105" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L457C13-L464C105" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Domain.FindAllDiscoverableDomainControllers", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L469C13-L472C120" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L469C13-L472C120" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Domain.FindAllDiscoverableDomainControllers(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L477C13-L491C124" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L477C13-L491C124" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Domain.GetDirectoryEntry", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L496C13-L497C140" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L496C13-L497C140" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Domain.GetAllTrustRelationships", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L502C13-L506C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L502C13-L506C31" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Domain.GetTrustRelationship(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L511C13-L529C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L511C13-L529C38" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Domain.GetSelectiveAuthenticationStatus(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L535C13-L543C168" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L535C13-L543C168" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Domain.SetSelectiveAuthenticationStatus(System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L548C13-L557C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L548C13-L557C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Domain.GetSidFilteringStatus(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L561C13-L569C168" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L561C13-L569C168" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Domain.SetSidFilteringStatus(System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L574C13-L583C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L574C13-L583C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Domain.DeleteLocalSideOfTrustRelationship(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L587C13-L597C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L587C13-L597C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Domain.DeleteTrustRelationship(System.DirectoryServices.ActiveDirectory.Domain)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L601C13-L611C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L601C13-L611C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Domain.VerifyOutboundTrustRelationship(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L615C13-L624C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L615C13-L624C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Domain.VerifyTrustRelationship(System.DirectoryServices.ActiveDirectory.Domain,System.DirectoryServices.ActiveDirectory.TrustDirection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L628C13-L661C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L628C13-L661C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Domain.CreateLocalSideOfTrustRelationship(System.String,System.DirectoryServices.ActiveDirectory.TrustDirection,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L665C13-L688C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L665C13-L688C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Domain.CreateTrustRelationship(System.DirectoryServices.ActiveDirectory.Domain,System.DirectoryServices.ActiveDirectory.TrustDirection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L692C13-L713C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L692C13-L713C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Domain.UpdateLocalSideOfTrustRelationship(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L717C13-L732C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L717C13-L732C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Domain.UpdateLocalSideOfTrustRelationship(System.String,System.DirectoryServices.ActiveDirectory.TrustDirection,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L736C13-L754C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L736C13-L754C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Domain.UpdateTrustRelationship(System.DirectoryServices.ActiveDirectory.Domain,System.DirectoryServices.ActiveDirectory.TrustDirection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L758C13-L779C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L758C13-L779C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Domain.RepairTrustRelationship(System.DirectoryServices.ActiveDirectory.Domain)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L783C13-L821C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L783C13-L821C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Domain.GetCurrentDomain", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L825C13-L825C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L825C13-L825C88" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.Domain.Forest", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L836C17-L846C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L836C17-L846C38" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.Domain.DomainControllers", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L854C17-L855C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L854C17-L855C80" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.Domain.Children", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L863C17-L864C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L863C17-L864C84" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.Domain.DomainMode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L872C17-L877C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L872C17-L877C43" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.Domain.DomainModeLevel", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L885C17-L890C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L885C17-L890C41" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.Domain.Parent", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L898C17-L904C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L898C17-L904C38" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.Domain.PdcRoleOwner", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L912C17-L914C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L912C17-L914C44" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.Domain.RidRoleOwner", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L922C17-L923C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L922C17-L923C90" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.Domain.InfrastructureRoleOwner", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L931C17-L932C112" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L931C17-L932C112" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.Domain", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DomainCollection.Contains(System.DirectoryServices.ActiveDirectory.Domain)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainCollection.cs#L27C13-L38C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainCollection.cs#L27C13-L38C26" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DomainCollection.IndexOf(System.DirectoryServices.ActiveDirectory.Domain)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainCollection.cs#L43C13-L54C23" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainCollection.cs#L43C13-L54C23" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DomainCollection.CopyTo(System.DirectoryServices.ActiveDirectory.Domain[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainCollection.cs#L59C13-L60C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainCollection.cs#L59C13-L60C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.DomainCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainCollection.cs#L23C42-L23C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainCollection.cs#L23C42-L23C67" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.DomainCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainCollection.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.ActiveDirectory.SyncFromAllServersOptions.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.SyncFromAllServersOptions.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.SyncFromAllServersOptions.AbortIfServerUnavailable", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.SyncFromAllServersOptions.SyncAdjacentServerOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.SyncFromAllServersOptions.CheckServerAlivenessOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.SyncFromAllServersOptions.SkipInitialCheck", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.SyncFromAllServersOptions.PushChangeOutward", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.SyncFromAllServersOptions.CrossSite", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.SyncFromAllServersOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.ActiveDirectory.SyncFromAllServersEvent.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.SyncFromAllServersEvent.Error", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.SyncFromAllServersEvent.SyncStarted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.SyncFromAllServersEvent.SyncCompleted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.SyncFromAllServersEvent.Finished", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.SyncFromAllServersEvent", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.ActiveDirectory.SyncFromAllServersErrorCategory.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.SyncFromAllServersErrorCategory.ErrorContactingServer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.SyncFromAllServersErrorCategory.ErrorReplicating", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.SyncFromAllServersErrorCategory.ServerUnreachable", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.SyncFromAllServersErrorCategory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.SyncUpdateCallback.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.SyncUpdateCallback.Invoke(System.DirectoryServices.ActiveDirectory.SyncFromAllServersEvent,System.String,System.String,System.DirectoryServices.ActiveDirectory.SyncFromAllServersOperationException)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.SyncUpdateCallback.BeginInvoke(System.DirectoryServices.ActiveDirectory.SyncFromAllServersEvent,System.String,System.String,System.DirectoryServices.ActiveDirectory.SyncFromAllServersOperationException,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.SyncUpdateCallback.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.SyncUpdateCallback", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DomainController.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L42C9-L67C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L42C9-L67C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DomainController.Finalize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L95C32-L95C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L95C32-L16707566C0" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DomainController.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L100C13-L116C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L100C13-L116C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DomainController.GetDomainController(System.DirectoryServices.ActiveDirectory.DirectoryContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L123C13-L171C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L123C13-L171C80" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DomainController.FindOne(System.DirectoryServices.ActiveDirectory.DirectoryContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L176C13-L186C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L176C13-L186C70" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DomainController.FindOne(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L191C13-L206C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L191C13-L206C74" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DomainController.FindOne(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.DirectoryServices.ActiveDirectory.LocatorOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L211C13-L221C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L211C13-L221C73" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DomainController.FindOne(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String,System.DirectoryServices.ActiveDirectory.LocatorOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L226C13-L241C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L226C13-L241C77" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DomainController.FindAll(System.DirectoryServices.ActiveDirectory.DirectoryContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L246C13-L259C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L246C13-L259C94" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DomainController.FindAll(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L264C13-L282C98" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L264C13-L282C98" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DomainController.EnableGlobalCatalog", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L287C13-L307C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L287C13-L307C53" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DomainController.IsGlobalCatalog", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L312C13-L338C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L312C13-L338C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DomainController.TransferRoleOwnership(System.DirectoryServices.ActiveDirectory.ActiveDirectoryRole)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L342C13-L363C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L342C13-L363C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DomainController.SeizeRoleOwnership(System.DirectoryServices.ActiveDirectory.ActiveDirectoryRole)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L369C13-L437C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L369C13-L437C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DomainController.GetDirectorySearcher", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L441C13-L443C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L441C13-L443C51" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DomainController.CheckReplicationConsistency", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L448C13-L456C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L448C13-L456C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DomainController.GetReplicationCursors(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L460C13-L476C119" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L460C13-L476C119" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DomainController.GetReplicationOperationInformation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L481C13-L490C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L481C13-L490C86" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DomainController.GetReplicationNeighbors(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L495C13-L510C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L495C13-L510C78" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DomainController.GetAllReplicationNeighbors", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L515C13-L524C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L515C13-L524C78" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DomainController.GetReplicationConnectionFailures", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L529C13-L529C100" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L529C13-L529C100" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DomainController.GetReplicationMetadata(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L534C13-L549C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L534C13-L549C87" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DomainController.SyncReplicaFromServer(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L554C13-L572C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L554C13-L572C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DomainController.TriggerSyncReplicaFromNeighbors(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L576C13-L588C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L576C13-L588C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DomainController.SyncReplicaFromAllServers(System.String,System.DirectoryServices.ActiveDirectory.SyncFromAllServersOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L592C13-L604C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L592C13-L604C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.DomainController.Forest", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L613C17-L619C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L613C17-L619C39" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.DomainController.CurrentTime", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L627C17-L640C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L627C17-L640C53" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.DomainController.HighestCommittedUsn", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L648C17-L661C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L648C17-L661C94" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.DomainController.OSVersion", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L669C17-L677C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L669C17-L677C41" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.DomainController.Roles", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L711C17-L712C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L711C17-L712C87" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.DomainController.Domain", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L720C17-L739C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L720C17-L739C38" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.DomainController.IPAddress", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L747C17-L756C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L747C17-L756C33" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.DomainController.SiteName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L765C17-L775C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L765C17-L775C39" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.DomainController.SyncFromAllServersCallback", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L868C17-L871C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L868C17-L871C37" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.DomainController.InboundConnections", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L883C79-L883C108" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L883C79-L883C108" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.DomainController.OutboundConnections", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L885C80-L885C110" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L885C80-L885C110" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.DomainController", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DomainControllerCollection.Contains(System.DirectoryServices.ActiveDirectory.DomainController)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainControllerCollection.cs#L24C13-L35C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainControllerCollection.cs#L24C13-L35C26" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DomainControllerCollection.IndexOf(System.DirectoryServices.ActiveDirectory.DomainController)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainControllerCollection.cs#L40C13-L51C23" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainControllerCollection.cs#L40C13-L51C23" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DomainControllerCollection.CopyTo(System.DirectoryServices.ActiveDirectory.DomainController[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainControllerCollection.cs#L56C13-L57C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainControllerCollection.cs#L56C13-L57C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.DomainControllerCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainControllerCollection.cs#L20C52-L20C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainControllerCollection.cs#L20C52-L20C87" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.DomainControllerCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainControllerCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainControllerCollection.cs" }, { "Members": [ { "DocsId": "P:System.DirectoryServices.ActiveDirectory.SyncFromAllServersErrorInformation.ErrorCategory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L23C64-L23C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L23C64-L23C68" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.SyncFromAllServersErrorInformation.ErrorCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L25C32-L25C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L25C32-L25C36" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.SyncFromAllServersErrorInformation.ErrorMessage", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L27C38-L27C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L27C38-L27C42" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.SyncFromAllServersErrorInformation.TargetServer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L29C39-L29C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L29C39-L29C43" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.SyncFromAllServersErrorInformation.SourceServer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L31C39-L31C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L31C39-L31C43" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.SyncFromAllServersErrorInformation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryObjectNotFoundException.#ctor(System.String,System.Type,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L38C100-L42C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L38C100-L42C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryObjectNotFoundException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L44C92-L44C116" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L44C92-L44C116" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryObjectNotFoundException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L46C74-L46C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L46C74-L46C91" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryObjectNotFoundException.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L48C59-L48C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L48C59-L48C69" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryObjectNotFoundException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L54C110-L56C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L54C110-L56C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryObjectNotFoundException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L68C13-L69C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L68C13-L69C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectoryObjectNotFoundException.Type", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L58C29-L58C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L58C29-L58C33" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectoryObjectNotFoundException.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L60C31-L60C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L60C31-L60C35" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectoryObjectNotFoundException.Message", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L75C17-L81C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L75C17-L81C26" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ActiveDirectoryObjectNotFoundException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryOperationException.#ctor(System.String,System.Exception,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L90C102-L93C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L90C102-L93C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryOperationException.#ctor(System.String,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L95C84-L98C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L95C84-L98C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryOperationException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L100C87-L100C134" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L100C87-L100C134" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryOperationException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L102C69-L102C109" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L102C69-L102C109" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryOperationException.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L104C54-L104C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L104C54-L104C83" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryOperationException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L110C105-L112C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L110C105-L112C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryOperationException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L122C13-L123C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L122C13-L123C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectoryOperationException.ErrorCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L114C32-L114C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L114C32-L114C36" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ActiveDirectoryOperationException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryServerDownException.#ctor(System.String,System.Exception,System.Int32,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L130C117-L134C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L130C117-L134C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryServerDownException.#ctor(System.String,System.Int32,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L136C99-L140C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L136C99-L140C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryServerDownException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L142C88-L142C112" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L142C88-L142C112" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryServerDownException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L144C70-L144C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L144C70-L144C87" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryServerDownException.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L146C55-L146C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L146C55-L146C65" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryServerDownException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L152C106-L154C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L152C106-L154C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryServerDownException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L179C13-L180C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L179C13-L180C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectoryServerDownException.ErrorCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L156C32-L156C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L156C32-L156C36" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectoryServerDownException.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L158C31-L158C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L158C31-L158C35" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectoryServerDownException.Message", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L164C17-L169C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L164C17-L169C30" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ActiveDirectoryServerDownException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryObjectExistsException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L187C90-L187C114" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L187C90-L187C114" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryObjectExistsException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L189C72-L189C89" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L189C72-L189C89" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryObjectExistsException.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L191C57-L191C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L191C57-L191C67" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryObjectExistsException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L197C108-L199C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L197C108-L199C10" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ActiveDirectoryObjectExistsException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.SyncFromAllServersOperationException.#ctor(System.String,System.Exception,System.DirectoryServices.ActiveDirectory.SyncFromAllServersErrorInformation[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L208C136-L211C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L208C136-L211C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.SyncFromAllServersOperationException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L213C90-L213C137" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L213C90-L213C137" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.SyncFromAllServersOperationException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L215C72-L215C112" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L215C72-L215C112" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.SyncFromAllServersOperationException.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L217C57-L217C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L217C57-L217C86" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.SyncFromAllServersOperationException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L223C108-L225C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L223C108-L225C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.SyncFromAllServersOperationException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L248C13-L249C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L248C13-L249C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.SyncFromAllServersOperationException.ErrorInformation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L231C17-L238C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L231C17-L238C34" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.SyncFromAllServersOperationException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ForestTrustCollisionException.#ctor(System.String,System.Exception,System.DirectoryServices.ActiveDirectory.ForestTrustRelationshipCollisionCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L275C82-L259C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L275C82-L259C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ForestTrustCollisionException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L275C82-L261C134" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L275C82-L261C134" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ForestTrustCollisionException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L275C82-L263C109" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L275C82-L263C109" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ForestTrustCollisionException.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L275C82-L265C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L275C82-L265C83" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ForestTrustCollisionException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L275C82-L273C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L275C82-L273C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ForestTrustCollisionException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L283C13-L284C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L283C13-L284C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ForestTrustCollisionException.Collisions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L275C73-L275C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L275C73-L275C77" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ForestTrustCollisionException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ForestMode.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ForestMode.Unknown", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ForestMode.Windows2000Forest", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ForestMode.Windows2003InterimForest", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ForestMode.Windows2003Forest", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ForestMode.Windows2008Forest", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ForestMode.Windows2008R2Forest", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ForestMode.Windows8Forest", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ForestMode.Windows2012R2Forest", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ForestMode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Forest.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L60C34-L60C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L60C34-L60C47" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Forest.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L65C13-L79C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L65C13-L79C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Forest.GetForest(System.DirectoryServices.ActiveDirectory.DirectoryContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L86C13-L161C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L86C13-L161C97" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Forest.RaiseForestFunctionalityLevel(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L166C13-L209C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L166C13-L209C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Forest.RaiseForestFunctionality(System.DirectoryServices.ActiveDirectory.ForestMode)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L213C13-L227C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L213C13-L227C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Forest.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L229C46-L229C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L229C46-L229C50" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Forest.FindGlobalCatalog", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L233C13-L235C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L233C13-L235C75" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Forest.FindGlobalCatalog(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L240C13-L247C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L240C13-L247C79" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Forest.FindGlobalCatalog(System.DirectoryServices.ActiveDirectory.LocatorOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L252C13-L254C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L252C13-L254C78" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Forest.FindGlobalCatalog(System.String,System.DirectoryServices.ActiveDirectory.LocatorOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L259C13-L266C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L259C13-L266C82" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Forest.FindAllGlobalCatalogs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L271C13-L273C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L271C13-L273C66" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Forest.FindAllGlobalCatalogs(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L278C13-L285C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L278C13-L285C70" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Forest.FindAllDiscoverableGlobalCatalogs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L290C13-L293C112" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L290C13-L293C112" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Forest.FindAllDiscoverableGlobalCatalogs(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L298C13-L312C116" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L298C13-L312C116" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Forest.GetAllTrustRelationships", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L317C13-L319C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L317C13-L319C42" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Forest.GetTrustRelationship(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L324C13-L341C173" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L324C13-L341C173" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Forest.GetSelectiveAuthenticationStatus(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L347C13-L355C168" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L347C13-L355C168" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Forest.SetSelectiveAuthenticationStatus(System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L360C13-L369C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L360C13-L369C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Forest.GetSidFilteringStatus(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L373C13-L381C167" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L373C13-L381C167" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Forest.SetSidFilteringStatus(System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L386C13-L395C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L386C13-L395C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Forest.DeleteLocalSideOfTrustRelationship(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L399C13-L409C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L399C13-L409C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Forest.DeleteTrustRelationship(System.DirectoryServices.ActiveDirectory.Forest)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L413C13-L423C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L413C13-L423C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Forest.VerifyOutboundTrustRelationship(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L427C13-L436C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L427C13-L436C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Forest.VerifyTrustRelationship(System.DirectoryServices.ActiveDirectory.Forest,System.DirectoryServices.ActiveDirectory.TrustDirection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L440C13-L473C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L440C13-L473C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Forest.CreateLocalSideOfTrustRelationship(System.String,System.DirectoryServices.ActiveDirectory.TrustDirection,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L477C13-L500C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L477C13-L500C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Forest.CreateTrustRelationship(System.DirectoryServices.ActiveDirectory.Forest,System.DirectoryServices.ActiveDirectory.TrustDirection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L504C13-L525C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L504C13-L525C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Forest.UpdateLocalSideOfTrustRelationship(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L529C13-L544C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L529C13-L544C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Forest.UpdateLocalSideOfTrustRelationship(System.String,System.DirectoryServices.ActiveDirectory.TrustDirection,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L548C13-L566C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L548C13-L566C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Forest.UpdateTrustRelationship(System.DirectoryServices.ActiveDirectory.Forest,System.DirectoryServices.ActiveDirectory.TrustDirection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L570C13-L591C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L570C13-L591C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Forest.RepairTrustRelationship(System.DirectoryServices.ActiveDirectory.Forest)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L595C13-L630C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L595C13-L630C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Forest.GetCurrentForest", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L632C52-L632C112" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L632C52-L632C112" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.Forest.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L642C17-L643C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L642C17-L643C39" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.Forest.Sites", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L651C17-L652C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L651C17-L652C80" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.Forest.Domains", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L660C17-L661C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L660C17-L661C78" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.Forest.GlobalCatalogs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L669C17-L670C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L669C17-L670C74" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.Forest.ApplicationPartitions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L678C17-L679C120" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L678C17-L679C120" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.Forest.ForestModeLevel", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L687C17-L692C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L687C17-L692C41" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.Forest.ForestMode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L700C17-L707C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L700C17-L707C43" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.Forest.RootDomain", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L715C17-L723C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L715C17-L723C42" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.Forest.Schema", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L731C17-L743C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L731C17-L743C38" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.Forest.SchemaRoleOwner", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L751C17-L752C96" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L751C17-L752C96" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.Forest.NamingRoleOwner", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L760C17-L761C96" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L760C17-L761C96" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.Forest", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs" }, { "Members": [ { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ForestTrustRelationshipCollision.CollisionType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustCollision.cs#L18C57-L18C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustCollision.cs#L18C57-L18C61" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ForestTrustRelationshipCollision.TopLevelNameCollisionOption", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustCollision.cs#L20C75-L20C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustCollision.cs#L20C75-L20C79" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ForestTrustRelationshipCollision.DomainCollisionOption", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustCollision.cs#L22C63-L22C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustCollision.cs#L22C63-L22C67" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ForestTrustRelationshipCollision.CollisionRecord", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustCollision.cs#L24C41-L24C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustCollision.cs#L24C41-L24C45" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ForestTrustRelationshipCollision", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustCollision.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustCollision.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ForestTrustRelationshipCollisionCollection.Contains(System.DirectoryServices.ActiveDirectory.ForestTrustRelationshipCollision)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustCollision.cs#L38C13-L41C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustCollision.cs#L38C13-L41C50" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ForestTrustRelationshipCollisionCollection.IndexOf(System.DirectoryServices.ActiveDirectory.ForestTrustRelationshipCollision)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustCollision.cs#L46C13-L49C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustCollision.cs#L46C13-L49C49" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ForestTrustRelationshipCollisionCollection.CopyTo(System.DirectoryServices.ActiveDirectory.ForestTrustRelationshipCollision[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustCollision.cs#L54C13-L55C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustCollision.cs#L54C13-L55C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ForestTrustRelationshipCollisionCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustCollision.cs#L33C20-L33C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustCollision.cs#L33C20-L33C71" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ForestTrustRelationshipCollisionCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustCollision.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustCollision.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ForestTrustDomainInfoCollection.Contains(System.DirectoryServices.ActiveDirectory.ForestTrustDomainInformation)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInfoCollection.cs#L19C13-L22C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInfoCollection.cs#L19C13-L22C52" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ForestTrustDomainInfoCollection.IndexOf(System.DirectoryServices.ActiveDirectory.ForestTrustDomainInformation)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInfoCollection.cs#L27C13-L30C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInfoCollection.cs#L27C13-L30C51" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ForestTrustDomainInfoCollection.CopyTo(System.DirectoryServices.ActiveDirectory.ForestTrustDomainInformation[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInfoCollection.cs#L35C13-L36C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInfoCollection.cs#L35C13-L36C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ForestTrustDomainInfoCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInfoCollection.cs#L14C20-L14C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInfoCollection.cs#L14C20-L14C67" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ForestTrustDomainInfoCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInfoCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInfoCollection.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ForestTrustDomainStatus.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInformation.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInformation.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ForestTrustDomainStatus.Enabled", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInformation.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInformation.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ForestTrustDomainStatus.SidAdminDisabled", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInformation.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInformation.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ForestTrustDomainStatus.SidConflictDisabled", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInformation.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInformation.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ForestTrustDomainStatus.NetBiosNameAdminDisabled", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInformation.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInformation.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ForestTrustDomainStatus.NetBiosNameConflictDisabled", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInformation.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInformation.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ForestTrustDomainStatus", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInformation.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInformation.cs" }, { "Members": [ { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ForestTrustDomainInformation.DnsName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInformation.cs#L40C33-L40C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInformation.cs#L40C33-L40C37" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ForestTrustDomainInformation.NetBiosName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInformation.cs#L42C37-L42C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInformation.cs#L42C37-L42C41" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ForestTrustDomainInformation.DomainSid", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInformation.cs#L44C35-L44C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInformation.cs#L44C35-L44C39" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ForestTrustDomainInformation.Status", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInformation.cs#L48C20-L48C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInformation.cs#L48C20-L48C27" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ForestTrustDomainInformation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInformation.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInformation.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ForestTrustRelationshipInformation.Save", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustRelationshipInformation.cs#L82C13-L315C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustRelationshipInformation.cs#L82C13-L315C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ForestTrustRelationshipInformation.TopLevelNames", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustRelationshipInformation.cs#L54C17-L56C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustRelationshipInformation.cs#L54C17-L56C39" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ForestTrustRelationshipInformation.ExcludedTopLevelNames", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustRelationshipInformation.cs#L64C17-L66C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustRelationshipInformation.cs#L64C17-L66C39" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ForestTrustRelationshipInformation.TrustedDomainInformation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustRelationshipInformation.cs#L74C17-L76C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustRelationshipInformation.cs#L74C17-L76C36" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ForestTrustRelationshipInformation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustRelationshipInformation.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustRelationshipInformation.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.GlobalCatalog.GetGlobalCatalog(System.DirectoryServices.ActiveDirectory.DirectoryContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalog.cs#L30C13-L86C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalog.cs#L30C13-L86C77" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.GlobalCatalog.FindOne(System.DirectoryServices.ActiveDirectory.DirectoryContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalog.cs#L91C13-L101C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalog.cs#L91C13-L101C70" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.GlobalCatalog.FindOne(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalog.cs#L106C13-L121C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalog.cs#L106C13-L121C74" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.GlobalCatalog.FindOne(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.DirectoryServices.ActiveDirectory.LocatorOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalog.cs#L126C13-L136C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalog.cs#L126C13-L136C73" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.GlobalCatalog.FindOne(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String,System.DirectoryServices.ActiveDirectory.LocatorOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalog.cs#L141C13-L156C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalog.cs#L141C13-L156C77" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.GlobalCatalog.FindAll(System.DirectoryServices.ActiveDirectory.DirectoryContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalog.cs#L161C13-L174C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalog.cs#L161C13-L174C51" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.GlobalCatalog.FindAll(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalog.cs#L179C13-L197C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalog.cs#L179C13-L197C55" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.GlobalCatalog.EnableGlobalCatalog", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalog.cs#L202C13-L203C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalog.cs#L202C13-L203C77" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.GlobalCatalog.DisableGlobalCatalog", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalog.cs#L208C13-L236C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalog.cs#L208C13-L236C56" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.GlobalCatalog.IsGlobalCatalog", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalog.cs#L241C13-L245C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalog.cs#L241C13-L245C25" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.GlobalCatalog.FindAllProperties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalog.cs#L250C13-L270C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalog.cs#L250C13-L270C77" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.GlobalCatalog.GetDirectorySearcher", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalog.cs#L275C13-L278C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalog.cs#L275C13-L278C51" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.GlobalCatalog", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalog.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalog.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.GlobalCatalogCollection.Contains(System.DirectoryServices.ActiveDirectory.GlobalCatalog)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalogCollection.cs#L24C13-L35C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalogCollection.cs#L24C13-L35C26" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.GlobalCatalogCollection.IndexOf(System.DirectoryServices.ActiveDirectory.GlobalCatalog)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalogCollection.cs#L40C13-L51C23" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalogCollection.cs#L40C13-L51C23" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.GlobalCatalogCollection.CopyTo(System.DirectoryServices.ActiveDirectory.GlobalCatalog[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalogCollection.cs#L56C13-L57C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalogCollection.cs#L56C13-L57C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.GlobalCatalogCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalogCollection.cs#L20C49-L20C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalogCollection.cs#L20C49-L20C81" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.GlobalCatalogCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalogCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalogCollection.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.ActiveDirectory.LocatorOptions.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/LocatorFlag.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/LocatorFlag.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.LocatorOptions.ForceRediscovery", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/LocatorFlag.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/LocatorFlag.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.LocatorOptions.KdcRequired", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/LocatorFlag.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/LocatorFlag.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.LocatorOptions.TimeServerRequired", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/LocatorFlag.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/LocatorFlag.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.LocatorOptions.WriteableRequired", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/LocatorFlag.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/LocatorFlag.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.LocatorOptions.AvoidSelf", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/LocatorFlag.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/LocatorFlag.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.LocatorOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/LocatorFlag.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/LocatorFlag.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReadOnlyActiveDirectorySchemaClassCollection.Contains(System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyActiveDirectorySchemaClassCollection.cs#L27C13-L38C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyActiveDirectorySchemaClassCollection.cs#L27C13-L38C26" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReadOnlyActiveDirectorySchemaClassCollection.IndexOf(System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyActiveDirectorySchemaClassCollection.cs#L43C13-L54C23" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyActiveDirectorySchemaClassCollection.cs#L43C13-L54C23" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReadOnlyActiveDirectorySchemaClassCollection.CopyTo(System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyActiveDirectorySchemaClassCollection.cs#L59C13-L60C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyActiveDirectorySchemaClassCollection.cs#L59C13-L60C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReadOnlyActiveDirectorySchemaClassCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyActiveDirectorySchemaClassCollection.cs#L22C20-L22C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyActiveDirectorySchemaClassCollection.cs#L22C20-L22C65" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ReadOnlyActiveDirectorySchemaClassCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyActiveDirectorySchemaClassCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyActiveDirectorySchemaClassCollection.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReadOnlyActiveDirectorySchemaPropertyCollection.Contains(System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyActiveDirectorySchemaPropertyCollection.cs#L27C13-L37C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyActiveDirectorySchemaPropertyCollection.cs#L27C13-L37C26" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReadOnlyActiveDirectorySchemaPropertyCollection.IndexOf(System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyActiveDirectorySchemaPropertyCollection.cs#L42C13-L53C23" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyActiveDirectorySchemaPropertyCollection.cs#L42C13-L53C23" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReadOnlyActiveDirectorySchemaPropertyCollection.CopyTo(System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyActiveDirectorySchemaPropertyCollection.cs#L58C13-L59C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyActiveDirectorySchemaPropertyCollection.cs#L58C13-L59C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReadOnlyActiveDirectorySchemaPropertyCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyActiveDirectorySchemaPropertyCollection.cs#L22C20-L22C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyActiveDirectorySchemaPropertyCollection.cs#L22C20-L22C68" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ReadOnlyActiveDirectorySchemaPropertyCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyActiveDirectorySchemaPropertyCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyActiveDirectorySchemaPropertyCollection.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReadOnlyDirectoryServerCollection.Contains(System.DirectoryServices.ActiveDirectory.DirectoryServer)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyDirectoryServerCollection.cs#L27C13-L38C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyDirectoryServerCollection.cs#L27C13-L38C26" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReadOnlyDirectoryServerCollection.IndexOf(System.DirectoryServices.ActiveDirectory.DirectoryServer)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyDirectoryServerCollection.cs#L43C13-L54C23" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyDirectoryServerCollection.cs#L43C13-L54C23" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReadOnlyDirectoryServerCollection.CopyTo(System.DirectoryServices.ActiveDirectory.DirectoryServer[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyDirectoryServerCollection.cs#L59C13-L60C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyDirectoryServerCollection.cs#L59C13-L60C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReadOnlyDirectoryServerCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyDirectoryServerCollection.cs#L23C51-L23C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyDirectoryServerCollection.cs#L23C51-L23C85" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ReadOnlyDirectoryServerCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyDirectoryServerCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyDirectoryServerCollection.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReadOnlySiteCollection.Contains(System.DirectoryServices.ActiveDirectory.ActiveDirectorySite)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlySiteCollection.cs#L24C13-L40C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlySiteCollection.cs#L24C13-L40C26" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReadOnlySiteCollection.IndexOf(System.DirectoryServices.ActiveDirectory.ActiveDirectorySite)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlySiteCollection.cs#L45C13-L61C23" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlySiteCollection.cs#L45C13-L61C23" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReadOnlySiteCollection.CopyTo(System.DirectoryServices.ActiveDirectory.ActiveDirectorySite[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlySiteCollection.cs#L66C13-L67C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlySiteCollection.cs#L66C13-L67C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReadOnlySiteCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlySiteCollection.cs#L20C55-L20C93" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlySiteCollection.cs#L20C55-L20C93" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ReadOnlySiteCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlySiteCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlySiteCollection.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReadOnlySiteLinkBridgeCollection.Contains(System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkBridge)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlySiteLinkBridgeCollection.cs#L19C13-L34C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlySiteLinkBridgeCollection.cs#L19C13-L34C26" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReadOnlySiteLinkBridgeCollection.IndexOf(System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkBridge)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlySiteLinkBridgeCollection.cs#L39C13-L54C23" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlySiteLinkBridgeCollection.cs#L39C13-L54C23" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReadOnlySiteLinkBridgeCollection.CopyTo(System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkBridge[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlySiteLinkBridgeCollection.cs#L59C13-L60C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlySiteLinkBridgeCollection.cs#L59C13-L60C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReadOnlySiteLinkBridgeCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlySiteLinkBridgeCollection.cs#L14C20-L14C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlySiteLinkBridgeCollection.cs#L14C20-L14C68" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ReadOnlySiteLinkBridgeCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlySiteLinkBridgeCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlySiteLinkBridgeCollection.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReadOnlySiteLinkCollection.Contains(System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLink)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlySiteLinkCollection.cs#L19C13-L34C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlySiteLinkCollection.cs#L19C13-L34C26" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReadOnlySiteLinkCollection.IndexOf(System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLink)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlySiteLinkCollection.cs#L39C13-L54C23" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlySiteLinkCollection.cs#L39C13-L54C23" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReadOnlySiteLinkCollection.CopyTo(System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLink[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlySiteLinkCollection.cs#L59C13-L60C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlySiteLinkCollection.cs#L59C13-L60C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReadOnlySiteLinkCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlySiteLinkCollection.cs#L14C20-L14C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlySiteLinkCollection.cs#L14C20-L14C62" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ReadOnlySiteLinkCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlySiteLinkCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlySiteLinkCollection.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReadOnlyStringCollection.Contains(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyStringCollection.cs#L31C13-L44C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyStringCollection.cs#L31C13-L44C26" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReadOnlyStringCollection.IndexOf(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyStringCollection.cs#L49C13-L62C23" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyStringCollection.cs#L49C13-L62C23" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReadOnlyStringCollection.CopyTo(System.String[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyStringCollection.cs#L67C13-L68C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyStringCollection.cs#L67C13-L68C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReadOnlyStringCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyStringCollection.cs#L20C17-L25C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyStringCollection.cs#L20C17-L25C48" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ReadOnlyStringCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyStringCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyStringCollection.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.ActiveDirectory.NotificationStatus.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.NotificationStatus.NoNotification", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.NotificationStatus.IntraSiteOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.NotificationStatus.NotificationAlways", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.NotificationStatus", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ReplicationSpan.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ReplicationSpan.IntraSite", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ReplicationSpan.InterSite", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ReplicationSpan", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReplicationConnection.FindByName(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L41C13-L94C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L41C13-L94C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReplicationConnection.#ctor(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String,System.DirectoryServices.ActiveDirectory.DirectoryServer)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L105C109-L107C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L105C109-L107C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReplicationConnection.#ctor(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String,System.DirectoryServices.ActiveDirectory.DirectoryServer,System.DirectoryServices.ActiveDirectory.ActiveDirectorySchedule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L109C144-L111C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L109C144-L111C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReplicationConnection.#ctor(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String,System.DirectoryServices.ActiveDirectory.DirectoryServer,System.DirectoryServices.ActiveDirectory.ActiveDirectoryTransportType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L113C149-L115C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L113C149-L115C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReplicationConnection.#ctor(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String,System.DirectoryServices.ActiveDirectory.DirectoryServer,System.DirectoryServices.ActiveDirectory.ActiveDirectorySchedule,System.DirectoryServices.ActiveDirectory.ActiveDirectoryTransportType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L117C9-L201C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L117C9-L201C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReplicationConnection.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L205C13-L207C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L205C13-L207C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReplicationConnection.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L211C13-L218C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L211C13-L218C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReplicationConnection.Finalize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L222C13-L223C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L222C13-L223C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReplicationConnection.Delete", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L845C13-L863C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L845C13-L863C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReplicationConnection.Save", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L867C13-L883C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L867C13-L883C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReplicationConnection.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L887C13-L890C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L887C13-L890C25" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReplicationConnection.GetDirectoryEntry", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L895C13-L904C108" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L895C13-L904C108" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationConnection.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L229C17-L232C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L229C17-L232C40" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationConnection.SourceServer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L240C17-L262C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L240C17-L262C42" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationConnection.DestinationServer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L270C17-L301C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L270C17-L301C47" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationConnection.Enabled", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L309C17-L324C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L309C17-L324C14" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationConnection.TransportType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L345C17-L373C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L345C17-L373C39" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationConnection.GeneratedByKcc", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L381C17-L408C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L381C17-L408C33" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationConnection.ReciprocalReplicationEnabled", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L451C17-L478C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L451C17-L478C33" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationConnection.ChangeNotificationStatus", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L521C17-L551C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L521C17-L551C61" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationConnection.DataCompressionEnabled", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L603C17-L632C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L603C17-L632C34" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationConnection.ReplicationScheduleOwnedByUser", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L677C17-L704C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L677C17-L704C33" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationConnection.ReplicationSpan", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L747C17-L764C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L747C17-L764C54" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationConnection.ReplicationSchedule", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L773C17-L795C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L773C17-L795C33" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ReplicationConnection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReplicationConnectionCollection.Contains(System.DirectoryServices.ActiveDirectory.ReplicationConnection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnectionCollection.cs#L16C13-L34C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnectionCollection.cs#L16C13-L34C26" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReplicationConnectionCollection.IndexOf(System.DirectoryServices.ActiveDirectory.ReplicationConnection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnectionCollection.cs#L39C13-L57C23" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnectionCollection.cs#L39C13-L57C23" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReplicationConnectionCollection.CopyTo(System.DirectoryServices.ActiveDirectory.ReplicationConnection[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnectionCollection.cs#L62C13-L63C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnectionCollection.cs#L62C13-L63C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationConnectionCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnectionCollection.cs#L12C57-L12C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnectionCollection.cs#L12C57-L12C97" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ReplicationConnectionCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnectionCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnectionCollection.cs" }, { "Members": [ { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationCursor.PartitionName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationCursor.cs#L45C39-L45C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationCursor.cs#L45C39-L45C43" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationCursor.SourceInvocationId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationCursor.cs#L47C42-L47C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationCursor.cs#L47C42-L47C46" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationCursor.UpToDatenessUsn", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationCursor.cs#L49C39-L49C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationCursor.cs#L49C39-L49C43" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationCursor.SourceServer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationCursor.cs#L56C17-L61C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationCursor.cs#L56C17-L61C38" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationCursor.LastSuccessfulSyncTime", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationCursor.cs#L69C17-L77C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationCursor.cs#L69C17-L77C86" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ReplicationCursor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationCursor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationCursor.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReplicationCursorCollection.Contains(System.DirectoryServices.ActiveDirectory.ReplicationCursor)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationCursorCollection.cs#L22C13-L25C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationCursorCollection.cs#L22C13-L25C47" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReplicationCursorCollection.IndexOf(System.DirectoryServices.ActiveDirectory.ReplicationCursor)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationCursorCollection.cs#L30C13-L33C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationCursorCollection.cs#L30C13-L33C46" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReplicationCursorCollection.CopyTo(System.DirectoryServices.ActiveDirectory.ReplicationCursor[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationCursorCollection.cs#L38C13-L39C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationCursorCollection.cs#L38C13-L39C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationCursorCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationCursorCollection.cs#L18C53-L18C89" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationCursorCollection.cs#L18C53-L18C89" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ReplicationCursorCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationCursorCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationCursorCollection.cs" }, { "Members": [ { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationFailure.SourceServer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationFailure.cs#L37C17-L52C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationFailure.cs#L37C17-L52C38" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationFailure.FirstFailureTime", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationFailure.cs#L58C44-L58C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationFailure.cs#L58C44-L58C48" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationFailure.ConsecutiveFailureCount", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationFailure.cs#L60C46-L60C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationFailure.cs#L60C46-L60C50" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationFailure.LastErrorCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationFailure.cs#L62C37-L62C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationFailure.cs#L62C37-L62C47" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationFailure.LastErrorMessage", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationFailure.cs#L64C43-L64C96" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationFailure.cs#L64C43-L64C96" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ReplicationFailure", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationFailure.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationFailure.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReplicationFailureCollection.Contains(System.DirectoryServices.ActiveDirectory.ReplicationFailure)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationFailureCollection.cs#L25C13-L28C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationFailureCollection.cs#L25C13-L28C48" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReplicationFailureCollection.IndexOf(System.DirectoryServices.ActiveDirectory.ReplicationFailure)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationFailureCollection.cs#L33C13-L36C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationFailureCollection.cs#L33C13-L36C47" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReplicationFailureCollection.CopyTo(System.DirectoryServices.ActiveDirectory.ReplicationFailure[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationFailureCollection.cs#L41C13-L42C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationFailureCollection.cs#L41C13-L42C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationFailureCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationFailureCollection.cs#L21C54-L21C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationFailureCollection.cs#L21C54-L21C91" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ReplicationFailureCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationFailureCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationFailureCollection.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectoryTransportType.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectoryTransportType.Rpc", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectoryTransportType.Smtp", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ActiveDirectoryTransportType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" }, { "Members": [ { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationNeighbor.PartitionName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs#L76C40-L76C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs#L76C40-L76C44" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationNeighbor.SourceServer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs#L82C17-L97C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs#L82C17-L97C38" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationNeighbor.TransportType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs#L101C61-L101C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs#L101C61-L101C65" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationNeighbor.ReplicationNeighborOption", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs#L103C71-L103C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs#L103C71-L103C75" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationNeighbor.SourceInvocationId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs#L105C42-L105C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs#L105C42-L105C46" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationNeighbor.UsnLastObjectChangeSynced", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs#L107C49-L107C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs#L107C49-L107C53" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationNeighbor.UsnAttributeFilter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs#L109C42-L109C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs#L109C42-L109C46" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationNeighbor.LastSuccessfulSync", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs#L111C46-L111C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs#L111C46-L111C50" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationNeighbor.LastAttemptedSync", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs#L113C45-L113C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs#L113C45-L113C49" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationNeighbor.LastSyncResult", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs#L115C37-L115C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs#L115C37-L115C41" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationNeighbor.LastSyncMessage", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs#L117C42-L117C96" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs#L117C42-L117C96" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationNeighbor.ConsecutiveFailureCount", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs#L119C46-L119C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs#L119C46-L119C50" }, { "DocsId": "T:System.DirectoryServices.ActiveDirectory.ReplicationNeighbor.ReplicationNeighborOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ReplicationNeighbor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReplicationNeighborCollection.Contains(System.DirectoryServices.ActiveDirectory.ReplicationNeighbor)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighborCollection.cs#L25C13-L28C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighborCollection.cs#L25C13-L28C49" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReplicationNeighborCollection.IndexOf(System.DirectoryServices.ActiveDirectory.ReplicationNeighbor)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighborCollection.cs#L33C13-L36C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighborCollection.cs#L33C13-L36C48" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReplicationNeighborCollection.CopyTo(System.DirectoryServices.ActiveDirectory.ReplicationNeighbor[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighborCollection.cs#L41C13-L42C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighborCollection.cs#L41C13-L42C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationNeighborCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighborCollection.cs#L21C55-L21C93" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighborCollection.cs#L21C55-L21C93" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ReplicationNeighborCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighborCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighborCollection.cs" }, { "Members": [ { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationOperation.TimeEnqueued", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperation.cs#L47C40-L47C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperation.cs#L47C40-L47C44" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationOperation.OperationNumber", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperation.cs#L49C38-L49C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperation.cs#L49C38-L49C42" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationOperation.Priority", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperation.cs#L51C31-L51C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperation.cs#L51C31-L51C35" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationOperation.OperationType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperation.cs#L53C57-L53C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperation.cs#L53C57-L53C61" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationOperation.PartitionName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperation.cs#L55C40-L55C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperation.cs#L55C40-L55C44" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationOperation.SourceServer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperation.cs#L61C17-L76C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperation.cs#L61C17-L76C38" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ReplicationOperation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperation.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperation.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReplicationOperationCollection.Contains(System.DirectoryServices.ActiveDirectory.ReplicationOperation)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperationCollection.cs#L25C13-L28C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperationCollection.cs#L25C13-L28C50" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReplicationOperationCollection.IndexOf(System.DirectoryServices.ActiveDirectory.ReplicationOperation)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperationCollection.cs#L33C13-L36C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperationCollection.cs#L33C13-L36C49" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReplicationOperationCollection.CopyTo(System.DirectoryServices.ActiveDirectory.ReplicationOperation[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperationCollection.cs#L41C13-L42C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperationCollection.cs#L41C13-L42C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationOperationCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperationCollection.cs#L21C56-L21C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperationCollection.cs#L21C56-L21C95" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ReplicationOperationCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperationCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperationCollection.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReplicationOperationInformation.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperationInformation.cs#L12C9-L14C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperationInformation.cs#L12C9-L14C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationOperationInformation.OperationStartTime", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperationInformation.cs#L16C47-L16C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperationInformation.cs#L16C47-L16C56" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationOperationInformation.CurrentOperation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperationInformation.cs#L18C58-L18C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperationInformation.cs#L18C58-L18C67" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationOperationInformation.PendingOperations", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperationInformation.cs#L20C69-L20C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperationInformation.cs#L20C69-L20C79" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ReplicationOperationInformation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperationInformation.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperationInformation.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryInterSiteTransport.FindByTransportType(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.DirectoryServices.ActiveDirectory.ActiveDirectoryTransportType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryInterSiteTransport.cs#L30C13-L96C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryInterSiteTransport.cs#L30C13-L96C82" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryInterSiteTransport.Save", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryInterSiteTransport.cs#L315C13-L326C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryInterSiteTransport.cs#L315C13-L326C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryInterSiteTransport.GetDirectoryEntry", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryInterSiteTransport.cs#L330C13-L333C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryInterSiteTransport.cs#L330C13-L333C97" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryInterSiteTransport.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryInterSiteTransport.cs#L338C13-L340C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryInterSiteTransport.cs#L338C13-L340C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryInterSiteTransport.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryInterSiteTransport.cs#L344C13-L347C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryInterSiteTransport.cs#L344C13-L347C42" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryInterSiteTransport.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryInterSiteTransport.cs#L352C13-L361C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryInterSiteTransport.cs#L352C13-L361C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectoryInterSiteTransport.TransportType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryInterSiteTransport.cs#L103C17-L106C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryInterSiteTransport.cs#L103C17-L106C35" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectoryInterSiteTransport.IgnoreReplicationSchedule", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryInterSiteTransport.cs#L114C17-L132C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryInterSiteTransport.cs#L114C17-L132C34" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectoryInterSiteTransport.BridgeAllSiteLinks", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryInterSiteTransport.cs#L164C17-L183C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryInterSiteTransport.cs#L164C17-L183C33" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectoryInterSiteTransport.SiteLinks", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryInterSiteTransport.cs#L217C17-L257C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryInterSiteTransport.cs#L217C17-L257C44" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectoryInterSiteTransport.SiteLinkBridges", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryInterSiteTransport.cs#L265C17-L306C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryInterSiteTransport.cs#L265C17-L306C42" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ActiveDirectoryInterSiteTransport", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryInterSiteTransport.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryInterSiteTransport.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectoryRole.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwner.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwner.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectoryRole.SchemaRole", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwner.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwner.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectoryRole.NamingRole", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwner.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwner.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectoryRole.PdcRole", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwner.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwner.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectoryRole.RidRole", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwner.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwner.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectoryRole.InfrastructureRole", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwner.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwner.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ActiveDirectoryRole", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwner.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwner.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.ActiveDirectory.AdamRole.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwner.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwner.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.AdamRole.SchemaRole", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwner.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwner.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.AdamRole.NamingRole", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwner.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwner.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.AdamRole", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwner.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwner.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryRoleCollection.Contains(System.DirectoryServices.ActiveDirectory.ActiveDirectoryRole)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwnerCollection.cs#L25C13-L38C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwnerCollection.cs#L25C13-L38C26" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryRoleCollection.IndexOf(System.DirectoryServices.ActiveDirectory.ActiveDirectoryRole)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwnerCollection.cs#L43C13-L58C23" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwnerCollection.cs#L43C13-L58C23" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryRoleCollection.CopyTo(System.DirectoryServices.ActiveDirectory.ActiveDirectoryRole[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwnerCollection.cs#L63C13-L64C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwnerCollection.cs#L63C13-L64C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectoryRoleCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwnerCollection.cs#L21C55-L21C93" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwnerCollection.cs#L21C55-L21C93" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ActiveDirectoryRoleCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwnerCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwnerCollection.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.AdamRoleCollection.Contains(System.DirectoryServices.ActiveDirectory.AdamRole)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwnerCollection.cs#L83C13-L96C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwnerCollection.cs#L83C13-L96C26" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.AdamRoleCollection.IndexOf(System.DirectoryServices.ActiveDirectory.AdamRole)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwnerCollection.cs#L101C13-L116C23" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwnerCollection.cs#L101C13-L116C23" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.AdamRoleCollection.CopyTo(System.DirectoryServices.ActiveDirectory.AdamRole[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwnerCollection.cs#L121C13-L122C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwnerCollection.cs#L121C13-L122C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.AdamRoleCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwnerCollection.cs#L79C44-L79C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwnerCollection.cs#L79C44-L79C71" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.AdamRoleCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwnerCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwnerCollection.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ReplicationSecurityLevel.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/SecurityLevel.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/SecurityLevel.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ReplicationSecurityLevel.MutualAuthentication", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/SecurityLevel.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/SecurityLevel.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ReplicationSecurityLevel.Negotiate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/SecurityLevel.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/SecurityLevel.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ReplicationSecurityLevel.NegotiatePassThrough", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/SecurityLevel.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/SecurityLevel.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ReplicationSecurityLevel", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/SecurityLevel.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/SecurityLevel.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.ActiveDirectory.TopLevelNameStatus.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TopLevelName.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TopLevelName.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.TopLevelNameStatus.Enabled", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TopLevelName.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TopLevelName.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.TopLevelNameStatus.NewlyCreated", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TopLevelName.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TopLevelName.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.TopLevelNameStatus.AdminDisabled", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TopLevelName.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TopLevelName.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.TopLevelNameStatus.ConflictDisabled", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TopLevelName.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TopLevelName.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.TopLevelNameStatus", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TopLevelName.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TopLevelName.cs" }, { "Members": [ { "DocsId": "P:System.DirectoryServices.ActiveDirectory.TopLevelName.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TopLevelName.cs#L29C30-L29C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TopLevelName.cs#L29C30-L29C34" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.TopLevelName.Status", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TopLevelName.cs#L33C20-L33C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TopLevelName.cs#L33C20-L33C27" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.TopLevelName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TopLevelName.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TopLevelName.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.TopLevelNameCollection.Contains(System.DirectoryServices.ActiveDirectory.TopLevelName)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TopLevelNameCollection.cs#L16C13-L19C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TopLevelNameCollection.cs#L16C13-L19C45" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.TopLevelNameCollection.IndexOf(System.DirectoryServices.ActiveDirectory.TopLevelName)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TopLevelNameCollection.cs#L24C13-L27C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TopLevelNameCollection.cs#L24C13-L27C44" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.TopLevelNameCollection.CopyTo(System.DirectoryServices.ActiveDirectory.TopLevelName[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TopLevelNameCollection.cs#L32C13-L33C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TopLevelNameCollection.cs#L32C13-L33C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.TopLevelNameCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TopLevelNameCollection.cs#L12C48-L12C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TopLevelNameCollection.cs#L12C48-L12C79" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.TopLevelNameCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TopLevelNameCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TopLevelNameCollection.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.ActiveDirectory.TrustType.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.TrustType.TreeRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.TrustType.ParentChild", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.TrustType.CrossLink", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.TrustType.External", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.TrustType.Forest", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.TrustType.Kerberos", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.TrustType.Unknown", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.TrustType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.ActiveDirectory.TrustDirection.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.TrustDirection.Inbound", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.TrustDirection.Outbound", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.TrustDirection.Bidirectional", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.TrustDirection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs" }, { "Members": [ { "DocsId": "P:System.DirectoryServices.ActiveDirectory.TrustRelationshipInformation.SourceName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs#L54C38-L54C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs#L54C38-L54C44" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.TrustRelationshipInformation.TargetName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs#L56C38-L56C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs#L56C38-L56C44" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.TrustRelationshipInformation.TrustType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs#L58C39-L58C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs#L58C39-L58C43" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.TrustRelationshipInformation.TrustDirection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs#L60C49-L60C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs#L60C49-L60C58" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.TrustRelationshipInformation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.TrustRelationshipInformationCollection.Contains(System.DirectoryServices.ActiveDirectory.TrustRelationshipInformation)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformationCollection.cs#L35C13-L38C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformationCollection.cs#L35C13-L38C52" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.TrustRelationshipInformationCollection.IndexOf(System.DirectoryServices.ActiveDirectory.TrustRelationshipInformation)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformationCollection.cs#L43C13-L46C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformationCollection.cs#L43C13-L46C51" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.TrustRelationshipInformationCollection.CopyTo(System.DirectoryServices.ActiveDirectory.TrustRelationshipInformation[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformationCollection.cs#L51C13-L52C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformationCollection.cs#L51C13-L52C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.TrustRelationshipInformationCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformationCollection.cs#L30C20-L30C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformationCollection.cs#L30C20-L30C67" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.TrustRelationshipInformationCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformationCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformationCollection.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ReplicationOperationType.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ReplicationOperationType.Sync", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ReplicationOperationType.Add", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ReplicationOperationType.Delete", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ReplicationOperationType.Modify", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ReplicationOperationType.UpdateReference", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ReplicationOperationType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ForestTrustCollisionType.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ForestTrustCollisionType.TopLevelName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ForestTrustCollisionType.Domain", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ForestTrustCollisionType.Other", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ForestTrustCollisionType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.ActiveDirectory.TopLevelNameCollisionOptions.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.TopLevelNameCollisionOptions.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.TopLevelNameCollisionOptions.NewlyCreated", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.TopLevelNameCollisionOptions.DisabledByAdmin", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.TopLevelNameCollisionOptions.DisabledByConflict", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.TopLevelNameCollisionOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.ActiveDirectory.DomainCollisionOptions.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.DomainCollisionOptions.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.DomainCollisionOptions.SidDisabledByAdmin", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.DomainCollisionOptions.SidDisabledByConflict", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.DomainCollisionOptions.NetBiosNameDisabledByAdmin", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.DomainCollisionOptions.NetBiosNameDisabledByConflict", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.DomainCollisionOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ReplicationNeighbor.ReplicationNeighborOptions.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ReplicationNeighbor.ReplicationNeighborOptions.Writeable", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ReplicationNeighbor.ReplicationNeighborOptions.SyncOnStartup", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ReplicationNeighbor.ReplicationNeighborOptions.ScheduledSync", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ReplicationNeighbor.ReplicationNeighborOptions.UseInterSiteTransport", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ReplicationNeighbor.ReplicationNeighborOptions.TwoWaySync", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ReplicationNeighbor.ReplicationNeighborOptions.ReturnObjectParent", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ReplicationNeighbor.ReplicationNeighborOptions.FullSyncInProgress", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ReplicationNeighbor.ReplicationNeighborOptions.FullSyncNextPacket", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ReplicationNeighbor.ReplicationNeighborOptions.NeverSynced", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ReplicationNeighbor.ReplicationNeighborOptions.Preempted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ReplicationNeighbor.ReplicationNeighborOptions.IgnoreChangeNotifications", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ReplicationNeighbor.ReplicationNeighborOptions.DisableScheduledSync", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ReplicationNeighbor.ReplicationNeighborOptions.CompressChanges", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ReplicationNeighbor.ReplicationNeighborOptions.NoChangeNotifications", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ReplicationNeighbor.ReplicationNeighborOptions.PartialAttributeSet", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ReplicationNeighbor.ReplicationNeighborOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/System.Drawing.Common.json b/xml/SourceLinkInformation/net-8.0/System.Drawing.Common.json index 1d57cd20462..fdc2c68b795 100644 --- a/xml/SourceLinkInformation/net-8.0/System.Drawing.Common.json +++ b/xml/SourceLinkInformation/net-8.0/System.Drawing.Common.json @@ -1,11913 +1,11920 @@ { "Assembly": "System.Drawing.Common", - "GUID": "149536EE056D493B87EEDC390BD507A6FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "BFED945355A24B5A8781297B5B69C7DEFFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:System.Drawing.Bitmap.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L28C38-L28C71" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L27C38-L27C71" }, { "DocsId": "M:System.Drawing.Bitmap.#ctor(System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L30C5-L49C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L29C5-L48C6" }, { "DocsId": "M:System.Drawing.Bitmap.#ctor(System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L51C36-L53C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L50C36-L52C6" }, { "DocsId": "M:System.Drawing.Bitmap.#ctor(System.IO.Stream,System.Boolean)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L55C5-L69C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L54C5-L68C6" }, { "DocsId": "M:System.Drawing.Bitmap.#ctor(System.Type,System.String)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L71C49-L73C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L70C49-L72C6" }, { "DocsId": "M:System.Drawing.Bitmap.#ctor(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L84C44-L86C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L83C44-L85C6" }, { "DocsId": "M:System.Drawing.Bitmap.#ctor(System.Int32,System.Int32,System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L88C5-L96C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L87C5-L95C6" }, { "DocsId": "M:System.Drawing.Bitmap.#ctor(System.Int32,System.Int32,System.Int32,System.Drawing.Imaging.PixelFormat,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L98C5-L103C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L97C5-L102C6" }, { "DocsId": "M:System.Drawing.Bitmap.#ctor(System.Int32,System.Int32,System.Drawing.Imaging.PixelFormat)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L105C5-L110C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L104C5-L109C6" }, { "DocsId": "M:System.Drawing.Bitmap.#ctor(System.Drawing.Image)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L112C37-L114C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L111C37-L113C6" }, { "DocsId": "M:System.Drawing.Bitmap.#ctor(System.Drawing.Image,System.Drawing.Size)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L116C51-L118C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L115C51-L117C6" }, { "DocsId": "M:System.Drawing.Bitmap.#ctor(System.Drawing.Image,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L120C60-L126C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L119C60-L125C6" }, { "DocsId": "M:System.Drawing.Bitmap.IPointer#get_Pointer", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L132C45-L132C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L131C45-L131C79" }, { "DocsId": "M:System.Drawing.Bitmap.FromHicon(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L137C9-L138C35" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L136C9-L137C35" }, { "DocsId": "M:System.Drawing.Bitmap.FromResource(System.IntPtr,System.String)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L143C9-L150C35" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L142C9-L149C35" }, { "DocsId": "M:System.Drawing.Bitmap.GetHbitmap", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L154C35-L154C62" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L153C35-L153C62" }, { "DocsId": "M:System.Drawing.Bitmap.GetHbitmap(System.Drawing.Color)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L160C9-L172C24" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L160C13-L173C6" }, { "DocsId": "M:System.Drawing.Bitmap.GetHicon", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L179C9-L181C22" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L179C9-L181C22" }, { "DocsId": "M:System.Drawing.Bitmap.Clone(System.Drawing.RectangleF,System.Drawing.Imaging.PixelFormat)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L186C9-L205C34" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L186C9-L205C34" }, { "DocsId": "M:System.Drawing.Bitmap.MakeTransparent", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L210C9-L224C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L210C9-L224C6" }, { "DocsId": "M:System.Drawing.Bitmap.MakeTransparent(System.Drawing.Color)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L228C9-L260C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L228C9-L260C6" }, { "DocsId": "M:System.Drawing.Bitmap.LockBits(System.Drawing.Rectangle,System.Drawing.Imaging.ImageLockMode,System.Drawing.Imaging.PixelFormat)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L263C9-L263C45" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L263C9-L263C45" }, { "DocsId": "M:System.Drawing.Bitmap.LockBits(System.Drawing.Rectangle,System.Drawing.Imaging.ImageLockMode,System.Drawing.Imaging.PixelFormat,System.Drawing.Imaging.BitmapData)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L267C9-L279C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L267C9-L279C27" }, { "DocsId": "M:System.Drawing.Bitmap.UnlockBits(System.Drawing.Imaging.BitmapData)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L284C9-L292C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L284C9-L292C6" }, { "DocsId": "M:System.Drawing.Bitmap.GetPixel(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L296C9-L309C43" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L296C9-L309C43" }, { "DocsId": "M:System.Drawing.Bitmap.SetPixel(System.Int32,System.Int32,System.Drawing.Color)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L314C9-L331C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L314C9-L331C6" }, { "DocsId": "M:System.Drawing.Bitmap.SetResolution(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L335C9-L337C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L335C9-L337C6" }, { "DocsId": "M:System.Drawing.Bitmap.Clone(System.Drawing.Rectangle,System.Drawing.Imaging.PixelFormat)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L341C9-L359C34" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L341C9-L359C34" }, { "DocsId": "P:System.Drawing.Bitmap.IPointer#Pointer", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L132C45-L132C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L131C45-L131C79" } ], "DocsId": "T:System.Drawing.Bitmap", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.BitmapSuffixInSameAssemblyAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/BitmapSuffixInSameAssemblyAttribute.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/BitmapSuffixInSameAssemblyAttribute.cs" } ], "DocsId": "T:System.Drawing.BitmapSuffixInSameAssemblyAttribute", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/BitmapSuffixInSameAssemblyAttribute.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/BitmapSuffixInSameAssemblyAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.BitmapSuffixInSatelliteAssemblyAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/BitmapSuffixInSatelliteAssemblyAttribute.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/BitmapSuffixInSatelliteAssemblyAttribute.cs" } ], "DocsId": "T:System.Drawing.BitmapSuffixInSatelliteAssemblyAttribute", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/BitmapSuffixInSatelliteAssemblyAttribute.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/BitmapSuffixInSatelliteAssemblyAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Brush.Clone", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brush.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brush.cs" }, { "DocsId": "M:System.Drawing.Brush.SetNativeBrush(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brush.cs#L15C61-L15C100" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brush.cs#L15C61-L15C100" }, { "DocsId": "M:System.Drawing.Brush.Dispose", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brush.cs#L23C9-L25C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brush.cs#L23C9-L25C6" }, { "DocsId": "M:System.Drawing.Brush.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brush.cs#L29C9-L35C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brush.cs#L29C9-L35C6" }, { "DocsId": "M:System.Drawing.Brush.Finalize", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brush.cs#L37C17-L37C42" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brush.cs#L37C17-L16707566C0" }, { "DocsId": "M:System.Drawing.Brush.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brush.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brush.cs" } ], "DocsId": "T:System.Drawing.Brush", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brush.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brush.cs" }, { "Members": [ { "DocsId": "P:System.Drawing.Brushes.Transparent", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L149C40-L149C85" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L149C40-L149C85" }, { "DocsId": "P:System.Drawing.Brushes.AliceBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L151C38-L151C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L151C38-L151C79" }, { "DocsId": "P:System.Drawing.Brushes.AntiqueWhite", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L152C41-L152C88" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L152C41-L152C88" }, { "DocsId": "P:System.Drawing.Brushes.Aqua", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L153C33-L153C64" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L153C33-L153C64" }, { "DocsId": "P:System.Drawing.Brushes.Aquamarine", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L154C39-L154C82" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L154C39-L154C82" }, { "DocsId": "P:System.Drawing.Brushes.Azure", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L155C34-L155C67" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L155C34-L155C67" }, { "DocsId": "P:System.Drawing.Brushes.Beige", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L157C34-L157C67" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L157C34-L157C67" }, { "DocsId": "P:System.Drawing.Brushes.Bisque", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L158C35-L158C70" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L158C35-L158C70" }, { "DocsId": "P:System.Drawing.Brushes.Black", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L159C34-L159C67" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L159C34-L159C67" }, { "DocsId": "P:System.Drawing.Brushes.BlanchedAlmond", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L160C43-L160C94" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L160C43-L160C94" }, { "DocsId": "P:System.Drawing.Brushes.Blue", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L161C33-L161C64" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L161C33-L161C64" }, { "DocsId": "P:System.Drawing.Brushes.BlueViolet", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L162C39-L162C82" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L162C39-L162C82" }, { "DocsId": "P:System.Drawing.Brushes.Brown", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L163C34-L163C67" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L163C34-L163C67" }, { "DocsId": "P:System.Drawing.Brushes.BurlyWood", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L164C38-L164C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L164C38-L164C79" }, { "DocsId": "P:System.Drawing.Brushes.CadetBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L166C38-L166C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L166C38-L166C79" }, { "DocsId": "P:System.Drawing.Brushes.Chartreuse", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L167C39-L167C82" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L167C39-L167C82" }, { "DocsId": "P:System.Drawing.Brushes.Chocolate", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L168C38-L168C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L168C38-L168C79" }, { "DocsId": "P:System.Drawing.Brushes.Coral", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L169C34-L169C67" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L169C34-L169C67" }, { "DocsId": "P:System.Drawing.Brushes.CornflowerBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L170C43-L170C94" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L170C43-L170C94" }, { "DocsId": "P:System.Drawing.Brushes.Cornsilk", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L171C37-L171C76" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L171C37-L171C76" }, { "DocsId": "P:System.Drawing.Brushes.Crimson", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L172C36-L172C73" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L172C36-L172C73" }, { "DocsId": "P:System.Drawing.Brushes.Cyan", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L173C33-L173C64" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L173C33-L173C64" }, { "DocsId": "P:System.Drawing.Brushes.DarkBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L175C37-L175C76" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L175C37-L175C76" }, { "DocsId": "P:System.Drawing.Brushes.DarkCyan", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L176C37-L176C76" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L176C37-L176C76" }, { "DocsId": "P:System.Drawing.Brushes.DarkGoldenrod", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L177C42-L177C91" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L177C42-L177C91" }, { "DocsId": "P:System.Drawing.Brushes.DarkGray", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L178C37-L178C76" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L178C37-L178C76" }, { "DocsId": "P:System.Drawing.Brushes.DarkGreen", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L179C38-L179C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L179C38-L179C79" }, { "DocsId": "P:System.Drawing.Brushes.DarkKhaki", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L180C38-L180C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L180C38-L180C79" }, { "DocsId": "P:System.Drawing.Brushes.DarkMagenta", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L181C40-L181C85" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L181C40-L181C85" }, { "DocsId": "P:System.Drawing.Brushes.DarkOliveGreen", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L182C43-L182C94" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L182C43-L182C94" }, { "DocsId": "P:System.Drawing.Brushes.DarkOrange", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L183C39-L183C82" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L183C39-L183C82" }, { "DocsId": "P:System.Drawing.Brushes.DarkOrchid", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L184C39-L184C82" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L184C39-L184C82" }, { "DocsId": "P:System.Drawing.Brushes.DarkRed", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L185C36-L185C73" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L185C36-L185C73" }, { "DocsId": "P:System.Drawing.Brushes.DarkSalmon", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L186C39-L186C82" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L186C39-L186C82" }, { "DocsId": "P:System.Drawing.Brushes.DarkSeaGreen", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L187C41-L187C88" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L187C41-L187C88" }, { "DocsId": "P:System.Drawing.Brushes.DarkSlateBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L188C42-L188C91" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L188C42-L188C91" }, { "DocsId": "P:System.Drawing.Brushes.DarkSlateGray", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L189C42-L189C91" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L189C42-L189C91" }, { "DocsId": "P:System.Drawing.Brushes.DarkTurquoise", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L190C42-L190C91" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L190C42-L190C91" }, { "DocsId": "P:System.Drawing.Brushes.DarkViolet", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L191C39-L191C82" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L191C39-L191C82" }, { "DocsId": "P:System.Drawing.Brushes.DeepPink", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L192C37-L192C76" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L192C37-L192C76" }, { "DocsId": "P:System.Drawing.Brushes.DeepSkyBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L193C40-L193C85" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L193C40-L193C85" }, { "DocsId": "P:System.Drawing.Brushes.DimGray", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L194C36-L194C73" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L194C36-L194C73" }, { "DocsId": "P:System.Drawing.Brushes.DodgerBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L195C39-L195C82" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L195C39-L195C82" }, { "DocsId": "P:System.Drawing.Brushes.Firebrick", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L197C38-L197C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L197C38-L197C79" }, { "DocsId": "P:System.Drawing.Brushes.FloralWhite", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L198C40-L198C85" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L198C40-L198C85" }, { "DocsId": "P:System.Drawing.Brushes.ForestGreen", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L199C40-L199C85" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L199C40-L199C85" }, { "DocsId": "P:System.Drawing.Brushes.Fuchsia", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L200C36-L200C73" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L200C36-L200C73" }, { "DocsId": "P:System.Drawing.Brushes.Gainsboro", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L202C38-L202C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L202C38-L202C79" }, { "DocsId": "P:System.Drawing.Brushes.GhostWhite", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L203C39-L203C82" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L203C39-L203C82" }, { "DocsId": "P:System.Drawing.Brushes.Gold", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L204C33-L204C64" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L204C33-L204C64" }, { "DocsId": "P:System.Drawing.Brushes.Goldenrod", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L205C38-L205C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L205C38-L205C79" }, { "DocsId": "P:System.Drawing.Brushes.Gray", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L206C33-L206C64" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L206C33-L206C64" }, { "DocsId": "P:System.Drawing.Brushes.Green", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L207C34-L207C67" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L207C34-L207C67" }, { "DocsId": "P:System.Drawing.Brushes.GreenYellow", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L208C40-L208C85" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L208C40-L208C85" }, { "DocsId": "P:System.Drawing.Brushes.Honeydew", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L210C37-L210C76" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L210C37-L210C76" }, { "DocsId": "P:System.Drawing.Brushes.HotPink", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L211C36-L211C73" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L211C36-L211C73" }, { "DocsId": "P:System.Drawing.Brushes.IndianRed", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L213C38-L213C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L213C38-L213C79" }, { "DocsId": "P:System.Drawing.Brushes.Indigo", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L214C35-L214C70" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L214C35-L214C70" }, { "DocsId": "P:System.Drawing.Brushes.Ivory", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L215C34-L215C67" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L215C34-L215C67" }, { "DocsId": "P:System.Drawing.Brushes.Khaki", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L217C34-L217C67" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L217C34-L217C67" }, { "DocsId": "P:System.Drawing.Brushes.Lavender", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L219C37-L219C76" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L219C37-L219C76" }, { "DocsId": "P:System.Drawing.Brushes.LavenderBlush", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L220C42-L220C91" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L220C42-L220C91" }, { "DocsId": "P:System.Drawing.Brushes.LawnGreen", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L221C38-L221C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L221C38-L221C79" }, { "DocsId": "P:System.Drawing.Brushes.LemonChiffon", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L222C41-L222C88" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L222C41-L222C88" }, { "DocsId": "P:System.Drawing.Brushes.LightBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L223C38-L223C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L223C38-L223C79" }, { "DocsId": "P:System.Drawing.Brushes.LightCoral", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L224C39-L224C82" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L224C39-L224C82" }, { "DocsId": "P:System.Drawing.Brushes.LightCyan", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L225C38-L225C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L225C38-L225C79" }, { "DocsId": "P:System.Drawing.Brushes.LightGoldenrodYellow", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L226C49-L226C112" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L226C49-L226C112" }, { "DocsId": "P:System.Drawing.Brushes.LightGreen", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L227C39-L227C82" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L227C39-L227C82" }, { "DocsId": "P:System.Drawing.Brushes.LightGray", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L228C38-L228C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L228C38-L228C79" }, { "DocsId": "P:System.Drawing.Brushes.LightPink", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L229C38-L229C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L229C38-L229C79" }, { "DocsId": "P:System.Drawing.Brushes.LightSalmon", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L230C40-L230C85" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L230C40-L230C85" }, { "DocsId": "P:System.Drawing.Brushes.LightSeaGreen", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L231C42-L231C91" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L231C42-L231C91" }, { "DocsId": "P:System.Drawing.Brushes.LightSkyBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L232C41-L232C88" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L232C41-L232C88" }, { "DocsId": "P:System.Drawing.Brushes.LightSlateGray", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L233C43-L233C94" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L233C43-L233C94" }, { "DocsId": "P:System.Drawing.Brushes.LightSteelBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L234C43-L234C94" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L234C43-L234C94" }, { "DocsId": "P:System.Drawing.Brushes.LightYellow", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L235C40-L235C85" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L235C40-L235C85" }, { "DocsId": "P:System.Drawing.Brushes.Lime", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L236C33-L236C64" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L236C33-L236C64" }, { "DocsId": "P:System.Drawing.Brushes.LimeGreen", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L237C38-L237C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L237C38-L237C79" }, { "DocsId": "P:System.Drawing.Brushes.Linen", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L238C34-L238C67" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L238C34-L238C67" }, { "DocsId": "P:System.Drawing.Brushes.Magenta", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L240C36-L240C73" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L240C36-L240C73" }, { "DocsId": "P:System.Drawing.Brushes.Maroon", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L241C35-L241C70" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L241C35-L241C70" }, { "DocsId": "P:System.Drawing.Brushes.MediumAquamarine", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L242C45-L242C100" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L242C45-L242C100" }, { "DocsId": "P:System.Drawing.Brushes.MediumBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L243C39-L243C82" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L243C39-L243C82" }, { "DocsId": "P:System.Drawing.Brushes.MediumOrchid", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L244C41-L244C88" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L244C41-L244C88" }, { "DocsId": "P:System.Drawing.Brushes.MediumPurple", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L245C41-L245C88" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L245C41-L245C88" }, { "DocsId": "P:System.Drawing.Brushes.MediumSeaGreen", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L246C43-L246C94" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L246C43-L246C94" }, { "DocsId": "P:System.Drawing.Brushes.MediumSlateBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L247C44-L247C97" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L247C44-L247C97" }, { "DocsId": "P:System.Drawing.Brushes.MediumSpringGreen", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L248C46-L248C103" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L248C46-L248C103" }, { "DocsId": "P:System.Drawing.Brushes.MediumTurquoise", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L249C44-L249C97" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L249C44-L249C97" }, { "DocsId": "P:System.Drawing.Brushes.MediumVioletRed", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L250C44-L250C97" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L250C44-L250C97" }, { "DocsId": "P:System.Drawing.Brushes.MidnightBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L251C41-L251C88" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L251C41-L251C88" }, { "DocsId": "P:System.Drawing.Brushes.MintCream", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L252C38-L252C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L252C38-L252C79" }, { "DocsId": "P:System.Drawing.Brushes.MistyRose", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L253C38-L253C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L253C38-L253C79" }, { "DocsId": "P:System.Drawing.Brushes.Moccasin", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L254C37-L254C76" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L254C37-L254C76" }, { "DocsId": "P:System.Drawing.Brushes.NavajoWhite", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L256C40-L256C85" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L256C40-L256C85" }, { "DocsId": "P:System.Drawing.Brushes.Navy", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L257C33-L257C64" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L257C33-L257C64" }, { "DocsId": "P:System.Drawing.Brushes.OldLace", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L259C36-L259C73" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L259C36-L259C73" }, { "DocsId": "P:System.Drawing.Brushes.Olive", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L260C34-L260C67" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L260C34-L260C67" }, { "DocsId": "P:System.Drawing.Brushes.OliveDrab", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L261C38-L261C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L261C38-L261C79" }, { "DocsId": "P:System.Drawing.Brushes.Orange", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L262C35-L262C70" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L262C35-L262C70" }, { "DocsId": "P:System.Drawing.Brushes.OrangeRed", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L263C38-L263C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L263C38-L263C79" }, { "DocsId": "P:System.Drawing.Brushes.Orchid", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L264C35-L264C70" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L264C35-L264C70" }, { "DocsId": "P:System.Drawing.Brushes.PaleGoldenrod", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L266C42-L266C91" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L266C42-L266C91" }, { "DocsId": "P:System.Drawing.Brushes.PaleGreen", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L267C38-L267C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L267C38-L267C79" }, { "DocsId": "P:System.Drawing.Brushes.PaleTurquoise", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L268C42-L268C91" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L268C42-L268C91" }, { "DocsId": "P:System.Drawing.Brushes.PaleVioletRed", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L269C42-L269C91" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L269C42-L269C91" }, { "DocsId": "P:System.Drawing.Brushes.PapayaWhip", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L270C39-L270C82" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L270C39-L270C82" }, { "DocsId": "P:System.Drawing.Brushes.PeachPuff", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L271C38-L271C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L271C38-L271C79" }, { "DocsId": "P:System.Drawing.Brushes.Peru", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L272C33-L272C64" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L272C33-L272C64" }, { "DocsId": "P:System.Drawing.Brushes.Pink", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L273C33-L273C64" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L273C33-L273C64" }, { "DocsId": "P:System.Drawing.Brushes.Plum", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L274C33-L274C64" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L274C33-L274C64" }, { "DocsId": "P:System.Drawing.Brushes.PowderBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L275C39-L275C82" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L275C39-L275C82" }, { "DocsId": "P:System.Drawing.Brushes.Purple", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L276C35-L276C70" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L276C35-L276C70" }, { "DocsId": "P:System.Drawing.Brushes.Red", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L278C32-L278C61" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L278C32-L278C61" }, { "DocsId": "P:System.Drawing.Brushes.RosyBrown", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L279C38-L279C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L279C38-L279C79" }, { "DocsId": "P:System.Drawing.Brushes.RoyalBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L280C38-L280C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L280C38-L280C79" }, { "DocsId": "P:System.Drawing.Brushes.SaddleBrown", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L282C40-L282C85" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L282C40-L282C85" }, { "DocsId": "P:System.Drawing.Brushes.Salmon", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L283C35-L283C70" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L283C35-L283C70" }, { "DocsId": "P:System.Drawing.Brushes.SandyBrown", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L284C39-L284C82" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L284C39-L284C82" }, { "DocsId": "P:System.Drawing.Brushes.SeaGreen", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L285C37-L285C76" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L285C37-L285C76" }, { "DocsId": "P:System.Drawing.Brushes.SeaShell", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L286C37-L286C76" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L286C37-L286C76" }, { "DocsId": "P:System.Drawing.Brushes.Sienna", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L287C35-L287C70" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L287C35-L287C70" }, { "DocsId": "P:System.Drawing.Brushes.Silver", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L288C35-L288C70" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L288C35-L288C70" }, { "DocsId": "P:System.Drawing.Brushes.SkyBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L289C36-L289C73" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L289C36-L289C73" }, { "DocsId": "P:System.Drawing.Brushes.SlateBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L290C38-L290C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L290C38-L290C79" }, { "DocsId": "P:System.Drawing.Brushes.SlateGray", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L291C38-L291C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L291C38-L291C79" }, { "DocsId": "P:System.Drawing.Brushes.Snow", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L292C33-L292C64" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L292C33-L292C64" }, { "DocsId": "P:System.Drawing.Brushes.SpringGreen", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L293C40-L293C85" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L293C40-L293C85" }, { "DocsId": "P:System.Drawing.Brushes.SteelBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L294C38-L294C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L294C38-L294C79" }, { "DocsId": "P:System.Drawing.Brushes.Tan", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L296C32-L296C61" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L296C32-L296C61" }, { "DocsId": "P:System.Drawing.Brushes.Teal", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L297C33-L297C64" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L297C33-L297C64" }, { "DocsId": "P:System.Drawing.Brushes.Thistle", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L298C36-L298C73" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L298C36-L298C73" }, { "DocsId": "P:System.Drawing.Brushes.Tomato", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L299C35-L299C70" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L299C35-L299C70" }, { "DocsId": "P:System.Drawing.Brushes.Turquoise", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L300C38-L300C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L300C38-L300C79" }, { "DocsId": "P:System.Drawing.Brushes.Violet", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L302C35-L302C70" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L302C35-L302C70" }, { "DocsId": "P:System.Drawing.Brushes.Wheat", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L304C34-L304C67" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L304C34-L304C67" }, { "DocsId": "P:System.Drawing.Brushes.White", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L305C34-L305C67" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L305C34-L305C67" }, { "DocsId": "P:System.Drawing.Brushes.WhiteSmoke", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L306C39-L306C82" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L306C39-L306C82" }, { "DocsId": "P:System.Drawing.Brushes.Yellow", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L308C35-L308C70" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L308C35-L308C70" }, { "DocsId": "P:System.Drawing.Brushes.YellowGreen", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L309C40-L309C85" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L309C40-L309C85" } ], "DocsId": "T:System.Drawing.Brushes", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.BufferedGraphics.Dispose", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/BufferedGraphics.cs#L39C9-L55C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/BufferedGraphics.cs#L39C9-L55C6" }, { "DocsId": "M:System.Drawing.BufferedGraphics.Render(System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/BufferedGraphics.cs#L67C9-L80C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/BufferedGraphics.cs#L67C9-L80C6" }, { "DocsId": "M:System.Drawing.BufferedGraphics.Render", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/BufferedGraphics.cs#L120C9-L128C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/BufferedGraphics.cs#L120C9-L128C6" }, { "DocsId": "M:System.Drawing.BufferedGraphics.Render(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/BufferedGraphics.cs#L133C44-L133C89" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/BufferedGraphics.cs#L133C44-L133C89" }, { "DocsId": "P:System.Drawing.BufferedGraphics.Graphics", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/BufferedGraphics.cs#L60C33-L60C57" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/BufferedGraphics.cs#L60C33-L60C57" } ], "DocsId": "T:System.Drawing.BufferedGraphics", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/BufferedGraphics.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/BufferedGraphics.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.BufferedGraphicsContext.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/BufferedGraphicsContext.cs#L16C5-L39C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/BufferedGraphicsContext.cs#L16C5-L39C6" }, { "DocsId": "M:System.Drawing.BufferedGraphicsContext.Finalize", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/BufferedGraphicsContext.cs#L68C35-L68C49" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/BufferedGraphicsContext.cs#L68C35-L16707566C0" }, { "DocsId": "M:System.Drawing.BufferedGraphicsContext.Allocate(System.Drawing.Graphics,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/BufferedGraphicsContext.cs#L75C9-L80C71" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/BufferedGraphicsContext.cs#L75C9-L80C71" }, { "DocsId": "M:System.Drawing.BufferedGraphicsContext.Allocate(System.IntPtr,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/BufferedGraphicsContext.cs#L88C9-L93C66" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/BufferedGraphicsContext.cs#L88C9-L93C66" }, { "DocsId": "M:System.Drawing.BufferedGraphicsContext.Dispose", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/BufferedGraphicsContext.cs#L172C9-L174C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/BufferedGraphicsContext.cs#L172C9-L174C6" }, { "DocsId": "M:System.Drawing.BufferedGraphicsContext.Invalidate", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/BufferedGraphicsContext.cs#L494C9-L507C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/BufferedGraphicsContext.cs#L496C9-L509C6" }, { "DocsId": "P:System.Drawing.BufferedGraphicsContext.MaximumBuffer", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/BufferedGraphicsContext.cs#L49C16-L49C30" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/BufferedGraphicsContext.cs#L49C16-L49C30" } ], "DocsId": "T:System.Drawing.BufferedGraphicsContext", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/BufferedGraphicsContext.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/BufferedGraphicsContext.cs" }, { "Members": [ { "DocsId": "P:System.Drawing.BufferedGraphicsManager.Current", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/BufferedGraphicsManager.cs#L24C53-L24C57" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/BufferedGraphicsManager.cs#L24C53-L24C57" } ], "DocsId": "T:System.Drawing.BufferedGraphicsManager", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/BufferedGraphicsManager.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/BufferedGraphicsManager.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.CharacterRange.#ctor(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/CharacterRange.cs#L17C9-L19C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/CharacterRange.cs#L17C9-L19C6" }, { "DocsId": "M:System.Drawing.CharacterRange.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/CharacterRange.cs#L36C9-L36C53" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/CharacterRange.cs#L36C9-L36C53" }, { "DocsId": "M:System.Drawing.CharacterRange.Equals(System.Drawing.CharacterRange)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/CharacterRange.cs#L41C58-L41C104" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/CharacterRange.cs#L41C58-L41C104" }, { "DocsId": "M:System.Drawing.CharacterRange.op_Equality(System.Drawing.CharacterRange,System.Drawing.CharacterRange)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/CharacterRange.cs#L43C79-L43C94" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/CharacterRange.cs#L43C79-L43C94" }, { "DocsId": "M:System.Drawing.CharacterRange.op_Inequality(System.Drawing.CharacterRange,System.Drawing.CharacterRange)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/CharacterRange.cs#L45C79-L45C95" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/CharacterRange.cs#L45C79-L45C95" }, { "DocsId": "M:System.Drawing.CharacterRange.GetHashCode", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/CharacterRange.cs#L47C51-L47C82" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/CharacterRange.cs#L47C51-L47C82" }, { "DocsId": "P:System.Drawing.CharacterRange.First", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/CharacterRange.cs#L24C25-L24C31" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/CharacterRange.cs#L24C25-L24C31" }, { "DocsId": "P:System.Drawing.CharacterRange.Length", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/CharacterRange.cs#L31C25-L31C32" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/CharacterRange.cs#L31C25-L31C32" } ], "DocsId": "T:System.Drawing.CharacterRange", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/CharacterRange.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/CharacterRange.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.ContentAlignment.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/ContentAlignment.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/ContentAlignment.cs" }, { "DocsId": "F:System.Drawing.ContentAlignment.TopLeft", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/ContentAlignment.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/ContentAlignment.cs" }, { "DocsId": "F:System.Drawing.ContentAlignment.TopCenter", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/ContentAlignment.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/ContentAlignment.cs" }, { "DocsId": "F:System.Drawing.ContentAlignment.TopRight", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/ContentAlignment.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/ContentAlignment.cs" }, { "DocsId": "F:System.Drawing.ContentAlignment.MiddleLeft", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/ContentAlignment.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/ContentAlignment.cs" }, { "DocsId": "F:System.Drawing.ContentAlignment.MiddleCenter", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/ContentAlignment.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/ContentAlignment.cs" }, { "DocsId": "F:System.Drawing.ContentAlignment.MiddleRight", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/ContentAlignment.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/ContentAlignment.cs" }, { "DocsId": "F:System.Drawing.ContentAlignment.BottomLeft", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/ContentAlignment.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/ContentAlignment.cs" }, { "DocsId": "F:System.Drawing.ContentAlignment.BottomCenter", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/ContentAlignment.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/ContentAlignment.cs" }, { "DocsId": "F:System.Drawing.ContentAlignment.BottomRight", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/ContentAlignment.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/ContentAlignment.cs" } ], "DocsId": "T:System.Drawing.ContentAlignment", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/ContentAlignment.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/ContentAlignment.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.CopyPixelOperation.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" }, { "DocsId": "F:System.Drawing.CopyPixelOperation.Blackness", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" }, { "DocsId": "F:System.Drawing.CopyPixelOperation.CaptureBlt", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" }, { "DocsId": "F:System.Drawing.CopyPixelOperation.DestinationInvert", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" }, { "DocsId": "F:System.Drawing.CopyPixelOperation.MergeCopy", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" }, { "DocsId": "F:System.Drawing.CopyPixelOperation.MergePaint", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" }, { "DocsId": "F:System.Drawing.CopyPixelOperation.NoMirrorBitmap", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" }, { "DocsId": "F:System.Drawing.CopyPixelOperation.NotSourceCopy", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" }, { "DocsId": "F:System.Drawing.CopyPixelOperation.NotSourceErase", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" }, { "DocsId": "F:System.Drawing.CopyPixelOperation.PatCopy", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" }, { "DocsId": "F:System.Drawing.CopyPixelOperation.PatInvert", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" }, { "DocsId": "F:System.Drawing.CopyPixelOperation.PatPaint", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" }, { "DocsId": "F:System.Drawing.CopyPixelOperation.SourceAnd", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" }, { "DocsId": "F:System.Drawing.CopyPixelOperation.SourceCopy", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" }, { "DocsId": "F:System.Drawing.CopyPixelOperation.SourceErase", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" }, { "DocsId": "F:System.Drawing.CopyPixelOperation.SourceInvert", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" }, { "DocsId": "F:System.Drawing.CopyPixelOperation.SourcePaint", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" }, { "DocsId": "F:System.Drawing.CopyPixelOperation.Whiteness", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" } ], "DocsId": "T:System.Drawing.CopyPixelOperation", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Font.Finalize", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L140C16-L140C30" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L141C16-L16707566C0" }, { "DocsId": "M:System.Drawing.Font.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L154C9-L159C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L155C9-L160C6" }, { "DocsId": "M:System.Drawing.Font.Dispose", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L168C9-L170C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L169C9-L171C6" }, { "DocsId": "M:System.Drawing.Font.GetHeight(System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L201C9-L211C23" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L202C9-L212C23" }, { "DocsId": "M:System.Drawing.Font.GetHeight(System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L217C9-L219C23" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L218C9-L220C23" }, { "DocsId": "M:System.Drawing.Font.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L228C9-L247C34" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L229C9-L248C34" }, { "DocsId": "M:System.Drawing.Font.GetHashCode", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L253C42-L253C83" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L254C42-L254C83" }, { "DocsId": "M:System.Drawing.Font.ToString", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L259C9-L259C158" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L260C9-L260C158" }, { "DocsId": "M:System.Drawing.Font.ToLogFont(System.Object,System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L267C9-L296C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L268C9-L297C6" }, { "DocsId": "M:System.Drawing.Font.ToLogFont(System.Drawing.Interop.LOGFONT@,System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L305C9-L329C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L306C9-L330C6" }, { "DocsId": "M:System.Drawing.Font.#ctor(System.Drawing.Font,System.Drawing.FontStyle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L26C5-L367C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L27C5-L368C6" }, { "DocsId": "M:System.Drawing.Font.#ctor(System.Drawing.FontFamily,System.Single,System.Drawing.FontStyle,System.Drawing.GraphicsUnit)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L26C5-L375C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L27C5-L376C6" }, { "DocsId": "M:System.Drawing.Font.#ctor(System.Drawing.FontFamily,System.Single,System.Drawing.FontStyle,System.Drawing.GraphicsUnit,System.Byte)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L26C5-L383C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L27C5-L384C6" }, { "DocsId": "M:System.Drawing.Font.#ctor(System.Drawing.FontFamily,System.Single,System.Drawing.FontStyle,System.Drawing.GraphicsUnit,System.Byte,System.Boolean)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L26C5-L391C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L27C5-L392C6" }, { "DocsId": "M:System.Drawing.Font.#ctor(System.String,System.Single,System.Drawing.FontStyle,System.Drawing.GraphicsUnit,System.Byte)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L26C5-L399C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L27C5-L400C6" }, { "DocsId": "M:System.Drawing.Font.#ctor(System.String,System.Single,System.Drawing.FontStyle,System.Drawing.GraphicsUnit,System.Byte,System.Boolean)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L26C5-L412C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L27C5-L413C6" }, { "DocsId": "M:System.Drawing.Font.#ctor(System.Drawing.FontFamily,System.Single,System.Drawing.FontStyle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L26C5-L420C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L27C5-L421C6" }, { "DocsId": "M:System.Drawing.Font.#ctor(System.Drawing.FontFamily,System.Single,System.Drawing.GraphicsUnit)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L26C5-L428C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L27C5-L429C6" }, { "DocsId": "M:System.Drawing.Font.#ctor(System.Drawing.FontFamily,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L26C5-L436C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L27C5-L437C6" }, { "DocsId": "M:System.Drawing.Font.#ctor(System.String,System.Single,System.Drawing.FontStyle,System.Drawing.GraphicsUnit)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L26C5-L444C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L27C5-L445C6" }, { "DocsId": "M:System.Drawing.Font.#ctor(System.String,System.Single,System.Drawing.FontStyle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L26C5-L452C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L27C5-L453C6" }, { "DocsId": "M:System.Drawing.Font.#ctor(System.String,System.Single,System.Drawing.GraphicsUnit)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L26C5-L460C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L27C5-L461C6" }, { "DocsId": "M:System.Drawing.Font.#ctor(System.String,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L26C5-L468C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L27C5-L469C6" }, { "DocsId": "M:System.Drawing.Font.FromHfont(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L546C9-L550C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L547C9-L551C6" }, { "DocsId": "M:System.Drawing.Font.FromLogFont(System.Object)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L559C9-L561C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L560C9-L562C6" }, { "DocsId": "M:System.Drawing.Font.FromLogFont(System.Drawing.Interop.LOGFONT@)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L570C9-L572C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L571C9-L573C6" }, { "DocsId": "M:System.Drawing.Font.FromLogFont(System.Drawing.Interop.LOGFONT@,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L580C5-L604C77" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L581C5-L605C77" }, { "DocsId": "M:System.Drawing.Font.FromLogFont(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L616C9-L642C45" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L617C9-L643C45" }, { "DocsId": "M:System.Drawing.Font.FromHdc(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L652C9-L664C58" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L653C9-L665C58" }, { "DocsId": "M:System.Drawing.Font.Clone", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L673C9-L675C62" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L674C9-L676C62" }, { "DocsId": "M:System.Drawing.Font.ToLogFont(System.Object)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L703C9-L706C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L704C9-L707C6" }, { "DocsId": "M:System.Drawing.Font.ToLogFont(System.Drawing.Interop.LOGFONT@)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L711C9-L714C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L712C9-L715C6" }, { "DocsId": "M:System.Drawing.Font.ToHfont", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L722C9-L727C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L723C9-L728C6" }, { "DocsId": "M:System.Drawing.Font.GetHeight", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L731C9-L734C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L732C9-L735C6" }, { "DocsId": "P:System.Drawing.Font.Size", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L35C26-L35C35" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L36C26-L36C35" }, { "DocsId": "P:System.Drawing.Font.Style", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L41C31-L41C41" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L42C31-L42C41" }, { "DocsId": "P:System.Drawing.Font.Bold", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L47C25-L47C54" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L48C25-L48C54" }, { "DocsId": "P:System.Drawing.Font.Italic", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L53C27-L53C58" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L54C27-L54C58" }, { "DocsId": "P:System.Drawing.Font.Strikeout", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L59C30-L59C64" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L60C30-L60C64" }, { "DocsId": "P:System.Drawing.Font.Underline", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L65C30-L65C64" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L66C30-L66C64" }, { "DocsId": "P:System.Drawing.Font.FontFamily", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L71C37-L71C48" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L72C37-L72C48" }, { "DocsId": "P:System.Drawing.Font.Name", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L80C27-L80C42" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L81C27-L81C42" }, { "DocsId": "P:System.Drawing.Font.Unit", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L86C33-L86C42" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L87C33-L87C42" }, { "DocsId": "P:System.Drawing.Font.GdiCharSet", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L97C31-L97C42" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L98C31-L98C42" }, { "DocsId": "P:System.Drawing.Font.GdiVerticalFont", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L106C36-L106C52" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L107C36-L107C52" }, { "DocsId": "P:System.Drawing.Font.OriginalFontName", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L112C40-L112C57" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L113C40-L113C57" }, { "DocsId": "P:System.Drawing.Font.SystemFontName", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L118C37-L118C52" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L119C37-L119C52" }, { "DocsId": "P:System.Drawing.Font.IsSystemFont", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L124C33-L124C71" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L125C33-L125C71" }, { "DocsId": "P:System.Drawing.Font.Height", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L130C26-L130C56" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L131C26-L131C56" }, { "DocsId": "P:System.Drawing.Font.SizeInPoints", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L744C13-L757C10" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L745C13-L758C10" } ], "DocsId": "T:System.Drawing.Font", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.FontConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L19C9-L19C89" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L19C9-L19C89" }, { "DocsId": "M:System.Drawing.FontConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L24C9-L24C103" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L24C9-L24C103" }, { "DocsId": "M:System.Drawing.FontConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L29C9-L146C73" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L29C9-L146C73" }, { "DocsId": "M:System.Drawing.FontConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L151C9-L251C63" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L151C9-L251C63" }, { "DocsId": "M:System.Drawing.FontConverter.CreateInstance(System.ComponentModel.ITypeDescriptorContext,System.Collections.IDictionary)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L314C9-L400C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L314C9-L400C75" }, { "DocsId": "M:System.Drawing.FontConverter.GetCreateInstanceSupported(System.ComponentModel.ITypeDescriptorContext)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L403C89-L403C93" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L403C89-L403C93" }, { "DocsId": "M:System.Drawing.FontConverter.GetProperties(System.ComponentModel.ITypeDescriptorContext,System.Object,System.Attribute[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L411C9-L415C86" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L411C9-L415C86" }, { "DocsId": "M:System.Drawing.FontConverter.GetPropertiesSupported(System.ComponentModel.ITypeDescriptorContext)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L418C85-L418C89" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L418C85-L418C89" }, { "DocsId": "M:System.Drawing.FontConverter.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs" }, { "DocsId": "T:System.Drawing.FontConverter.FontNameConverter", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs" }, { "DocsId": "T:System.Drawing.FontConverter.FontUnitConverter", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs" } ], "DocsId": "T:System.Drawing.FontConverter", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.FontFamily.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L56C5-L56C67" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L56C5-L56C67" }, { "DocsId": "M:System.Drawing.FontFamily.#ctor(System.String,System.Drawing.Text.FontCollection)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L62C5-L62C109" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L62C5-L62C109" }, { "DocsId": "M:System.Drawing.FontFamily.#ctor(System.Drawing.Text.GenericFontFamilies)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L108C5-L127C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L108C5-L127C6" }, { "DocsId": "M:System.Drawing.FontFamily.Finalize", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L129C22-L129C47" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L129C22-L16707566C0" }, { "DocsId": "M:System.Drawing.FontFamily.ToString", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L136C42-L136C76" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L136C42-L136C76" }, { "DocsId": "M:System.Drawing.FontFamily.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L140C9-L153C57" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L140C9-L153C57" }, { "DocsId": "M:System.Drawing.FontFamily.GetHashCode", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L159C42-L159C80" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L159C42-L159C80" }, { "DocsId": "M:System.Drawing.FontFamily.Dispose", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L168C9-L170C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L168C9-L170C6" }, { "DocsId": "M:System.Drawing.FontFamily.GetName(System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L206C9-L208C26" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L206C9-L208C26" }, { "DocsId": "M:System.Drawing.FontFamily.GetFamilies(System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L246C9-L247C55" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L246C9-L247C55" }, { "DocsId": "M:System.Drawing.FontFamily.IsStyleAvailable(System.Drawing.FontStyle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L256C9-L258C33" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L256C9-L258C33" }, { "DocsId": "M:System.Drawing.FontFamily.GetEmHeight(System.Drawing.FontStyle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L267C9-L269C25" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L267C9-L269C25" }, { "DocsId": "M:System.Drawing.FontFamily.GetCellAscent(System.Drawing.FontStyle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L278C9-L280C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L278C9-L280C27" }, { "DocsId": "M:System.Drawing.FontFamily.GetCellDescent(System.Drawing.FontStyle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L289C9-L291C28" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L289C9-L291C28" }, { "DocsId": "M:System.Drawing.FontFamily.GetLineSpacing(System.Drawing.FontStyle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L301C9-L303C28" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L301C9-L303C28" }, { "DocsId": "P:System.Drawing.FontFamily.Name", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L199C27-L199C51" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L199C27-L199C51" }, { "DocsId": "P:System.Drawing.FontFamily.Families", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L215C44-L215C82" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L215C44-L215C82" }, { "DocsId": "P:System.Drawing.FontFamily.GenericSansSerif", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L220C50-L220C80" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L220C50-L220C80" }, { "DocsId": "P:System.Drawing.FontFamily.GenericSerif", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L232C46-L232C76" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L232C46-L232C76" }, { "DocsId": "P:System.Drawing.FontFamily.GenericMonospace", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L237C50-L237C84" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L237C50-L237C84" } ], "DocsId": "T:System.Drawing.FontFamily", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.FontStyle.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontStyle.cs" }, { "DocsId": "F:System.Drawing.FontStyle.Regular", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontStyle.cs" }, { "DocsId": "F:System.Drawing.FontStyle.Bold", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontStyle.cs" }, { "DocsId": "F:System.Drawing.FontStyle.Italic", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontStyle.cs" }, { "DocsId": "F:System.Drawing.FontStyle.Underline", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontStyle.cs" }, { "DocsId": "F:System.Drawing.FontStyle.Strikeout", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontStyle.cs" } ], "DocsId": "T:System.Drawing.FontStyle", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontStyle.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Graphics.FromHdc(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L82C9-L85C37" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L82C9-L85C37" }, { "DocsId": "M:System.Drawing.Graphics.FromHdcInternal(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L92C9-L93C45" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L92C9-L93C45" }, { "DocsId": "M:System.Drawing.Graphics.FromHdc(System.IntPtr,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L103C9-L104C45" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L103C9-L104C45" }, { "DocsId": "M:System.Drawing.Graphics.FromHwnd(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L111C53-L111C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L111C53-L111C75" }, { "DocsId": "M:System.Drawing.Graphics.FromHwndInternal(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L117C9-L118C45" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L117C9-L118C45" }, { "DocsId": "M:System.Drawing.Graphics.FromImage(System.Drawing.Image)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L126C9-L135C71" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L126C9-L135C71" }, { "DocsId": "M:System.Drawing.Graphics.ReleaseHdcInternal(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L141C9-L143C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L141C9-L143C6" }, { "DocsId": "M:System.Drawing.Graphics.Dispose", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L150C9-L152C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L150C9-L152C6" }, { "DocsId": "M:System.Drawing.Graphics.Finalize", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L186C20-L186C45" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L186C20-L16707566C0" }, { "DocsId": "M:System.Drawing.Graphics.IPointer#get_Pointer", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L193C49-L193C63" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L193C49-L193C63" }, { "DocsId": "M:System.Drawing.Graphics.Windows#Win32#Graphics#Gdi#IHdcContext#GetHdc", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L484C33-L484C46" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L484C33-L484C46" }, { "DocsId": "M:System.Drawing.Graphics.GetHdc", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L489C9-L493C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L489C9-L493C27" }, { "DocsId": "M:System.Drawing.Graphics.ReleaseHdc(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L497C43-L497C66" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L497C43-L497C66" }, { "DocsId": "M:System.Drawing.Graphics.ReleaseHdc", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L499C33-L499C63" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L499C33-L499C63" }, { "DocsId": "M:System.Drawing.Graphics.Flush", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L504C28-L504C65" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L504C28-L504C65" }, { "DocsId": "M:System.Drawing.Graphics.Flush(System.Drawing.Drawing2D.FlushIntention)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L510C9-L510C90" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L510C9-L510C90" }, { "DocsId": "M:System.Drawing.Graphics.SetClip(System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L512C40-L512C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L512C40-L512C81" }, { "DocsId": "M:System.Drawing.Graphics.SetClip(System.Drawing.Graphics,System.Drawing.Drawing2D.CombineMode)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L516C9-L520C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L516C9-L520C6" }, { "DocsId": "M:System.Drawing.Graphics.SetClip(System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L522C44-L522C88" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L522C44-L522C88" }, { "DocsId": "M:System.Drawing.Graphics.SetClip(System.Drawing.Rectangle,System.Drawing.Drawing2D.CombineMode)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L524C79-L524C117" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L524C79-L524C117" }, { "DocsId": "M:System.Drawing.Graphics.SetClip(System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L526C45-L526C89" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L526C45-L526C89" }, { "DocsId": "M:System.Drawing.Graphics.SetClip(System.Drawing.RectangleF,System.Drawing.Drawing2D.CombineMode)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L529C9-L529C136" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L529C9-L529C136" }, { "DocsId": "M:System.Drawing.Graphics.SetClip(System.Drawing.Drawing2D.GraphicsPath)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L531C47-L531C91" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L531C47-L531C91" }, { "DocsId": "M:System.Drawing.Graphics.SetClip(System.Drawing.Drawing2D.GraphicsPath,System.Drawing.Drawing2D.CombineMode)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L535C9-L538C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L535C9-L538C6" }, { "DocsId": "M:System.Drawing.Graphics.SetClip(System.Drawing.Region,System.Drawing.Drawing2D.CombineMode)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L542C9-L545C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L542C9-L545C6" }, { "DocsId": "M:System.Drawing.Graphics.IntersectClip(System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L547C50-L547C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L547C50-L547C81" }, { "DocsId": "M:System.Drawing.Graphics.IntersectClip(System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L550C9-L553C55" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L550C9-L553C55" }, { "DocsId": "M:System.Drawing.Graphics.IntersectClip(System.Drawing.Region)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L557C9-L560C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L557C9-L560C6" }, { "DocsId": "M:System.Drawing.Graphics.ExcludeClip(System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L563C9-L566C53" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L563C9-L566C53" }, { "DocsId": "M:System.Drawing.Graphics.ExcludeClip(System.Drawing.Region)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L570C9-L573C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L570C9-L573C6" }, { "DocsId": "M:System.Drawing.Graphics.ResetClip", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L575C32-L575C82" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L575C32-L575C82" }, { "DocsId": "M:System.Drawing.Graphics.TranslateClip(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L577C54-L577C116" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L577C54-L577C116" }, { "DocsId": "M:System.Drawing.Graphics.TranslateClip(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L579C50-L579C112" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L579C50-L579C112" }, { "DocsId": "M:System.Drawing.Graphics.IsVisible(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L581C44-L581C70" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L581C44-L581C70" }, { "DocsId": "M:System.Drawing.Graphics.IsVisible(System.Drawing.Point)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L583C43-L583C70" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L583C43-L583C70" }, { "DocsId": "M:System.Drawing.Graphics.IsVisible(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L588C9-L589C26" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L588C9-L589C26" }, { "DocsId": "M:System.Drawing.Graphics.IsVisible(System.Drawing.PointF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L592C44-L592C71" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L592C44-L592C71" }, { "DocsId": "M:System.Drawing.Graphics.IsVisible(System.Int32,System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L594C67-L594C104" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L594C67-L594C104" }, { "DocsId": "M:System.Drawing.Graphics.IsVisible(System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L596C46-L596C103" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L596C46-L596C103" }, { "DocsId": "M:System.Drawing.Graphics.IsVisible(System.Single,System.Single,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L601C9-L602C26" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L601C9-L602C26" }, { "DocsId": "M:System.Drawing.Graphics.IsVisible(System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L605C47-L605C97" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L605C47-L605C97" }, { "DocsId": "M:System.Drawing.Graphics.ResetTransform", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L610C37-L610C97" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L610C37-L610C97" }, { "DocsId": "M:System.Drawing.Graphics.MultiplyTransform(System.Drawing.Drawing2D.Matrix)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L615C53-L615C99" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L615C53-L615C99" }, { "DocsId": "M:System.Drawing.Graphics.MultiplyTransform(System.Drawing.Drawing2D.Matrix,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L622C9-L625C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L622C9-L625C6" }, { "DocsId": "M:System.Drawing.Graphics.TranslateTransform(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L627C59-L627C106" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L627C59-L627C106" }, { "DocsId": "M:System.Drawing.Graphics.TranslateTransform(System.Single,System.Single,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L630C9-L630C109" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L630C9-L630C109" }, { "DocsId": "M:System.Drawing.Graphics.ScaleTransform(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L632C55-L632C98" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L632C55-L632C98" }, { "DocsId": "M:System.Drawing.Graphics.ScaleTransform(System.Single,System.Single,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L635C9-L635C105" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L635C9-L635C105" }, { "DocsId": "M:System.Drawing.Graphics.RotateTransform(System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L637C49-L637C92" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L637C49-L637C92" }, { "DocsId": "M:System.Drawing.Graphics.RotateTransform(System.Single,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L640C9-L640C105" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L640C9-L640C105" }, { "DocsId": "M:System.Drawing.Graphics.DrawArc(System.Drawing.Pen,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L647C9-L657C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L647C9-L657C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawArc(System.Drawing.Pen,System.Drawing.RectangleF,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L663C9-L663C86" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L663C9-L663C86" }, { "DocsId": "M:System.Drawing.Graphics.DrawArc(System.Drawing.Pen,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L669C12-L669C76" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L669C12-L669C76" }, { "DocsId": "M:System.Drawing.Graphics.DrawArc(System.Drawing.Pen,System.Drawing.Rectangle,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L675C9-L675C86" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L675C9-L675C86" }, { "DocsId": "M:System.Drawing.Graphics.DrawBezier(System.Drawing.Pen,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L682C9-L690C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L682C9-L690C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawBezier(System.Drawing.Pen,System.Drawing.PointF,System.Drawing.PointF,System.Drawing.PointF,System.Drawing.PointF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L696C9-L696C80" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L696C9-L696C80" }, { "DocsId": "M:System.Drawing.Graphics.DrawBezier(System.Drawing.Pen,System.Drawing.Point,System.Drawing.Point,System.Drawing.Point,System.Drawing.Point)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L702C9-L702C80" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L702C9-L702C80" }, { "DocsId": "M:System.Drawing.Graphics.DrawRectangle(System.Drawing.Pen,System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L709C60-L709C119" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L709C60-L709C119" }, { "DocsId": "M:System.Drawing.Graphics.DrawRectangle(System.Drawing.Pen,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L714C59-L714C118" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L714C59-L714C118" }, { "DocsId": "M:System.Drawing.Graphics.DrawRectangle(System.Drawing.Pen,System.Single,System.Single,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L739C9-L742C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L739C9-L742C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawRectangle(System.Drawing.Pen,System.Int32,System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L748C12-L748C58" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L748C12-L748C58" }, { "DocsId": "M:System.Drawing.Graphics.DrawRectangles(System.Drawing.Pen,System.Drawing.RectangleF[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L751C71-L751C122" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L751C71-L751C122" }, { "DocsId": "M:System.Drawing.Graphics.DrawRectangles(System.Drawing.Pen,System.Drawing.Rectangle[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L776C70-L776C121" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L776C70-L776C121" }, { "DocsId": "M:System.Drawing.Graphics.DrawEllipse(System.Drawing.Pen,System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L799C58-L799C115" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L799C58-L799C115" }, { "DocsId": "M:System.Drawing.Graphics.DrawEllipse(System.Drawing.Pen,System.Single,System.Single,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L806C9-L809C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L806C9-L809C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawEllipse(System.Drawing.Pen,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L814C57-L814C121" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L814C57-L814C121" }, { "DocsId": "M:System.Drawing.Graphics.DrawEllipse(System.Drawing.Pen,System.Int32,System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L819C78-L819C122" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L819C78-L819C122" }, { "DocsId": "M:System.Drawing.Graphics.DrawPie(System.Drawing.Pen,System.Drawing.RectangleF,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L825C9-L825C86" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L825C9-L825C86" }, { "DocsId": "M:System.Drawing.Graphics.DrawPie(System.Drawing.Pen,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L832C9-L835C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L832C9-L835C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawPie(System.Drawing.Pen,System.Drawing.Rectangle,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L841C9-L841C86" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L841C9-L841C86" }, { "DocsId": "M:System.Drawing.Graphics.DrawPie(System.Drawing.Pen,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L847C9-L847C73" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L847C9-L847C73" }, { "DocsId": "M:System.Drawing.Graphics.DrawPolygon(System.Drawing.Pen,System.Drawing.PointF[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L850C65-L850C114" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L850C65-L850C114" }, { "DocsId": "M:System.Drawing.Graphics.DrawPolygon(System.Drawing.Pen,System.Drawing.Point[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L875C64-L875C113" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L875C64-L875C113" }, { "DocsId": "M:System.Drawing.Graphics.DrawPath(System.Drawing.Pen,System.Drawing.Drawing2D.GraphicsPath)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L900C9-L907C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L900C9-L907C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawCurve(System.Drawing.Pen,System.Drawing.PointF[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L910C63-L910C110" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L910C63-L910C110" }, { "DocsId": "M:System.Drawing.Graphics.DrawCurve(System.Drawing.Pen,System.Drawing.PointF[],System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L932C9-L932C65" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L932C9-L932C65" }, { "DocsId": "M:System.Drawing.Graphics.DrawCurve(System.Drawing.Pen,System.Drawing.PointF[],System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L958C9-L958C63" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L958C9-L958C63" }, { "DocsId": "M:System.Drawing.Graphics.DrawCurve(System.Drawing.Pen,System.Drawing.PointF[],System.Int32,System.Int32,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L968C9-L968C91" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L968C9-L968C91" }, { "DocsId": "M:System.Drawing.Graphics.DrawCurve(System.Drawing.Pen,System.Drawing.Point[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L995C62-L995C109" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L995C62-L995C109" }, { "DocsId": "M:System.Drawing.Graphics.DrawCurve(System.Drawing.Pen,System.Drawing.Point[],System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1017C9-L1017C65" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1017C9-L1017C65" }, { "DocsId": "M:System.Drawing.Graphics.DrawCurve(System.Drawing.Pen,System.Drawing.Point[],System.Int32,System.Int32,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1050C9-L1050C91" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1050C9-L1050C91" }, { "DocsId": "M:System.Drawing.Graphics.DrawClosedCurve(System.Drawing.Pen,System.Drawing.PointF[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1078C9-L1078C62" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1078C9-L1078C62" }, { "DocsId": "M:System.Drawing.Graphics.DrawClosedCurve(System.Drawing.Pen,System.Drawing.PointF[],System.Single,System.Drawing.Drawing2D.FillMode)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1109C9-L1109C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1109C9-L1109C81" }, { "DocsId": "M:System.Drawing.Graphics.DrawClosedCurve(System.Drawing.Pen,System.Drawing.Point[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1134C61-L1134C114" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1134C61-L1134C114" }, { "DocsId": "M:System.Drawing.Graphics.DrawClosedCurve(System.Drawing.Pen,System.Drawing.Point[],System.Single,System.Drawing.Drawing2D.FillMode)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1160C9-L1160C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1160C9-L1160C81" }, { "DocsId": "M:System.Drawing.Graphics.Clear(System.Drawing.Color)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1187C39-L1187C115" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1187C39-L1187C115" }, { "DocsId": "M:System.Drawing.Graphics.FillRectangle(System.Drawing.Brush,System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1211C64-L1211C125" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1211C64-L1211C125" }, { "DocsId": "M:System.Drawing.Graphics.FillRectangle(System.Drawing.Brush,System.Single,System.Single,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1218C9-L1226C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1218C9-L1226C6" }, { "DocsId": "M:System.Drawing.Graphics.FillRectangle(System.Drawing.Brush,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1231C63-L1231C131" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1231C63-L1231C131" }, { "DocsId": "M:System.Drawing.Graphics.FillRectangle(System.Drawing.Brush,System.Int32,System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1236C84-L1236C132" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1236C84-L1236C132" }, { "DocsId": "M:System.Drawing.Graphics.FillRectangles(System.Drawing.Brush,System.Drawing.RectangleF[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1245C9-L1247C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1245C9-L1247C6" }, { "DocsId": "M:System.Drawing.Graphics.FillRectangles(System.Drawing.Brush,System.Drawing.Rectangle[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1269C9-L1269C62" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1269C9-L1269C62" }, { "DocsId": "M:System.Drawing.Graphics.FillPolygon(System.Drawing.Brush,System.Drawing.PointF[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1290C69-L1290C115" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1290C69-L1290C115" }, { "DocsId": "M:System.Drawing.Graphics.FillPolygon(System.Drawing.Brush,System.Drawing.PointF[],System.Drawing.Drawing2D.FillMode)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1299C9-L1299C70" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1299C9-L1299C70" }, { "DocsId": "M:System.Drawing.Graphics.FillPolygon(System.Drawing.Brush,System.Drawing.Point[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1324C61-L1324C107" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1324C61-L1324C107" }, { "DocsId": "M:System.Drawing.Graphics.FillPolygon(System.Drawing.Brush,System.Drawing.Point[],System.Drawing.Drawing2D.FillMode)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1338C9-L1338C70" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1338C9-L1338C70" }, { "DocsId": "M:System.Drawing.Graphics.FillEllipse(System.Drawing.Brush,System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1365C62-L1365C121" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1365C62-L1365C121" }, { "DocsId": "M:System.Drawing.Graphics.FillEllipse(System.Drawing.Brush,System.Single,System.Single,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1372C9-L1380C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1372C9-L1380C6" }, { "DocsId": "M:System.Drawing.Graphics.FillEllipse(System.Drawing.Brush,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1385C61-L1385C127" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1385C61-L1385C127" }, { "DocsId": "M:System.Drawing.Graphics.FillEllipse(System.Drawing.Brush,System.Int32,System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1390C82-L1390C128" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1390C82-L1390C128" }, { "DocsId": "M:System.Drawing.Graphics.FillPie(System.Drawing.Brush,System.Drawing.Rectangle,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1396C9-L1396C88" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1396C9-L1396C88" }, { "DocsId": "M:System.Drawing.Graphics.FillPie(System.Drawing.Brush,System.Drawing.RectangleF,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1406C9-L1406C88" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1406C9-L1406C88" }, { "DocsId": "M:System.Drawing.Graphics.FillPie(System.Drawing.Brush,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1413C9-L1423C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1413C9-L1423C6" }, { "DocsId": "M:System.Drawing.Graphics.FillPie(System.Drawing.Brush,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1429C12-L1429C78" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1429C12-L1429C78" }, { "DocsId": "M:System.Drawing.Graphics.FillClosedCurve(System.Drawing.Brush,System.Drawing.PointF[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1433C9-L1433C64" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1433C9-L1433C64" }, { "DocsId": "M:System.Drawing.Graphics.FillClosedCurve(System.Drawing.Brush,System.Drawing.PointF[],System.Drawing.Drawing2D.FillMode)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1458C9-L1458C55" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1458C9-L1458C55" }, { "DocsId": "M:System.Drawing.Graphics.FillClosedCurve(System.Drawing.Brush,System.Drawing.PointF[],System.Drawing.Drawing2D.FillMode,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1474C9-L1474C83" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1474C9-L1474C83" }, { "DocsId": "M:System.Drawing.Graphics.FillClosedCurve(System.Drawing.Brush,System.Drawing.Point[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1501C9-L1501C64" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1501C9-L1501C64" }, { "DocsId": "M:System.Drawing.Graphics.FillClosedCurve(System.Drawing.Brush,System.Drawing.Point[],System.Drawing.Drawing2D.FillMode)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1526C9-L1526C55" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1526C9-L1526C55" }, { "DocsId": "M:System.Drawing.Graphics.FillClosedCurve(System.Drawing.Brush,System.Drawing.Point[],System.Drawing.Drawing2D.FillMode,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1537C9-L1537C83" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1537C9-L1537C83" }, { "DocsId": "M:System.Drawing.Graphics.DrawString(System.String,System.Drawing.Font,System.Drawing.Brush,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1575C9-L1575C69" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1575C9-L1575C69" }, { "DocsId": "M:System.Drawing.Graphics.DrawString(System.ReadOnlySpan{System.Char},System.Drawing.Font,System.Drawing.Brush,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1580C9-L1580C69" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1580C9-L1580C69" }, { "DocsId": "M:System.Drawing.Graphics.DrawString(System.String,System.Drawing.Font,System.Drawing.Brush,System.Drawing.PointF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1595C9-L1595C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1595C9-L1595C81" }, { "DocsId": "M:System.Drawing.Graphics.DrawString(System.ReadOnlySpan{System.Char},System.Drawing.Font,System.Drawing.Brush,System.Drawing.PointF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1600C9-L1600C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1600C9-L1600C81" }, { "DocsId": "M:System.Drawing.Graphics.DrawString(System.String,System.Drawing.Font,System.Drawing.Brush,System.Single,System.Single,System.Drawing.StringFormat)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1620C9-L1620C71" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1620C9-L1620C71" }, { "DocsId": "M:System.Drawing.Graphics.DrawString(System.ReadOnlySpan{System.Char},System.Drawing.Font,System.Drawing.Brush,System.Single,System.Single,System.Drawing.StringFormat)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1625C9-L1625C71" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1625C9-L1625C71" }, { "DocsId": "M:System.Drawing.Graphics.DrawString(System.String,System.Drawing.Font,System.Drawing.Brush,System.Drawing.PointF,System.Drawing.StringFormat)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1644C9-L1644C83" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1644C9-L1644C83" }, { "DocsId": "M:System.Drawing.Graphics.DrawString(System.ReadOnlySpan{System.Char},System.Drawing.Font,System.Drawing.Brush,System.Drawing.PointF,System.Drawing.StringFormat)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1649C9-L1649C83" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1649C9-L1649C83" }, { "DocsId": "M:System.Drawing.Graphics.DrawString(System.String,System.Drawing.Font,System.Drawing.Brush,System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1673C9-L1673C58" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1673C9-L1673C58" }, { "DocsId": "M:System.Drawing.Graphics.DrawString(System.ReadOnlySpan{System.Char},System.Drawing.Font,System.Drawing.Brush,System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1687C9-L1687C58" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1687C9-L1687C58" }, { "DocsId": "M:System.Drawing.Graphics.DrawString(System.String,System.Drawing.Font,System.Drawing.Brush,System.Drawing.RectangleF,System.Drawing.StringFormat)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1713C9-L1713C68" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1713C9-L1713C68" }, { "DocsId": "M:System.Drawing.Graphics.DrawString(System.ReadOnlySpan{System.Char},System.Drawing.Font,System.Drawing.Brush,System.Drawing.RectangleF,System.Drawing.StringFormat)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1718C9-L1718C68" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1718C9-L1718C68" }, { "DocsId": "M:System.Drawing.Graphics.MeasureString(System.String,System.Drawing.Font,System.Drawing.SizeF,System.Drawing.StringFormat,System.Int32@,System.Int32@)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1758C9-L1758C121" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1758C9-L1758C121" }, { "DocsId": "M:System.Drawing.Graphics.MeasureString(System.ReadOnlySpan{System.Char},System.Drawing.Font,System.Drawing.SizeF,System.Drawing.StringFormat,System.Int32@,System.Int32@)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1769C9-L1769C121" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1769C9-L1769C121" }, { "DocsId": "M:System.Drawing.Graphics.MeasureStringInternal(System.ReadOnlySpan{System.Char},System.Drawing.Font,System.Drawing.RectangleF,System.Drawing.StringFormat,System.Int32@,System.Int32@)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1780C9-L1810C65" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1780C9-L1810C65" }, { "DocsId": "M:System.Drawing.Graphics.MeasureString(System.String,System.Drawing.Font,System.Drawing.PointF,System.Drawing.StringFormat)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1816C12-L1816C95" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1816C12-L1816C95" }, { "DocsId": "M:System.Drawing.Graphics.MeasureString(System.ReadOnlySpan{System.Char},System.Drawing.Font,System.Drawing.PointF,System.Drawing.StringFormat)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1821C12-L1821C95" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1821C12-L1821C95" }, { "DocsId": "M:System.Drawing.Graphics.MeasureString(System.String,System.Drawing.Font,System.Drawing.SizeF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1825C78-L1825C121" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1825C78-L1825C121" }, { "DocsId": "M:System.Drawing.Graphics.MeasureString(System.ReadOnlySpan{System.Char},System.Drawing.Font,System.Drawing.SizeF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1829C89-L1829C132" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1829C89-L1829C132" }, { "DocsId": "M:System.Drawing.Graphics.MeasureString(System.String,System.Drawing.Font,System.Drawing.SizeF,System.Drawing.StringFormat)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1836C9-L1836C96" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1836C9-L1836C96" }, { "DocsId": "M:System.Drawing.Graphics.MeasureString(System.ReadOnlySpan{System.Char},System.Drawing.Font,System.Drawing.SizeF,System.Drawing.StringFormat)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1841C9-L1841C96" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1841C9-L1841C96" }, { "DocsId": "M:System.Drawing.Graphics.MeasureString(System.String,System.Drawing.Font)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1868C60-L1868C102" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1868C60-L1868C102" }, { "DocsId": "M:System.Drawing.Graphics.MeasureString(System.ReadOnlySpan{System.Char},System.Drawing.Font)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1872C71-L1872C113" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1872C71-L1872C113" }, { "DocsId": "M:System.Drawing.Graphics.MeasureString(System.String,System.Drawing.Font,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1877C71-L1877C122" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1877C71-L1877C122" }, { "DocsId": "M:System.Drawing.Graphics.MeasureString(System.ReadOnlySpan{System.Char},System.Drawing.Font,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1882C9-L1882C60" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1882C9-L1882C60" }, { "DocsId": "M:System.Drawing.Graphics.MeasureString(System.String,System.Drawing.Font,System.Int32,System.Drawing.StringFormat)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1888C9-L1888C68" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1888C9-L1888C68" }, { "DocsId": "M:System.Drawing.Graphics.MeasureString(System.ReadOnlySpan{System.Char},System.Drawing.Font,System.Int32,System.Drawing.StringFormat)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1893C9-L1893C68" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1893C9-L1893C68" }, { "DocsId": "M:System.Drawing.Graphics.MeasureCharacterRanges(System.String,System.Drawing.Font,System.Drawing.RectangleF,System.Drawing.StringFormat)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1916C9-L1916C77" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1916C9-L1916C77" }, { "DocsId": "M:System.Drawing.Graphics.MeasureCharacterRanges(System.ReadOnlySpan{System.Char},System.Drawing.Font,System.Drawing.RectangleF,System.Drawing.StringFormat)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1921C9-L1921C77" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1921C9-L1921C77" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.PointF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1975C57-L1975C91" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1975C57-L1975C91" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1979C9-L1983C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1979C9-L1983C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1985C60-L1985C117" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1985C60-L1985C117" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Single,System.Single,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1989C9-L1993C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1989C9-L1993C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.Point)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1995C56-L1995C97" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1995C56-L1995C97" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1997C57-L1997C86" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1997C57-L1997C86" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1999C59-L1999C123" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1999C59-L1999C123" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Int32,System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2001C80-L2001C124" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2001C80-L2001C124" }, { "DocsId": "M:System.Drawing.Graphics.DrawImageUnscaled(System.Drawing.Image,System.Drawing.Point)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2003C64-L2003C98" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2003C64-L2003C98" }, { "DocsId": "M:System.Drawing.Graphics.DrawImageUnscaled(System.Drawing.Image,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2005C65-L2005C87" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2005C65-L2005C87" }, { "DocsId": "M:System.Drawing.Graphics.DrawImageUnscaled(System.Drawing.Image,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2007C67-L2007C99" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2007C67-L2007C99" }, { "DocsId": "M:System.Drawing.Graphics.DrawImageUnscaled(System.Drawing.Image,System.Int32,System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2009C88-L2009C110" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2009C88-L2009C110" }, { "DocsId": "M:System.Drawing.Graphics.DrawImageUnscaledAndClipped(System.Drawing.Image,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2013C9-L2021C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2013C9-L2021C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.PointF[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2036C9-L2049C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2036C9-L2049C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.Point[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2053C9-L2066C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2053C9-L2066C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Single,System.Single,System.Drawing.RectangleF,System.Drawing.GraphicsUnit)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2070C9-L2081C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2070C9-L2081C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Int32,System.Int32,System.Drawing.Rectangle,System.Drawing.GraphicsUnit)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2084C12-L2084C64" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2084C12-L2084C64" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.RectangleF,System.Drawing.RectangleF,System.Drawing.GraphicsUnit)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2088C9-L2102C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2088C9-L2102C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Drawing.GraphicsUnit)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2105C12-L2105C100" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2105C12-L2105C100" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.PointF[],System.Drawing.RectangleF,System.Drawing.GraphicsUnit)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2109C9-L2131C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2109C9-L2131C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.PointF[],System.Drawing.RectangleF,System.Drawing.GraphicsUnit,System.Drawing.Imaging.ImageAttributes)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2134C9-L2134C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2134C9-L2134C75" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.PointF[],System.Drawing.RectangleF,System.Drawing.GraphicsUnit,System.Drawing.Imaging.ImageAttributes,System.Drawing.Graphics.DrawImageAbort)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2143C9-L2143C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2143C9-L2143C79" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.PointF[],System.Drawing.RectangleF,System.Drawing.GraphicsUnit,System.Drawing.Imaging.ImageAttributes,System.Drawing.Graphics.DrawImageAbort,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2154C9-L2178C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2154C9-L2178C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.Point[],System.Drawing.Rectangle,System.Drawing.GraphicsUnit)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2181C9-L2181C70" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2181C9-L2181C70" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.Point[],System.Drawing.Rectangle,System.Drawing.GraphicsUnit,System.Drawing.Imaging.ImageAttributes)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2188C40-L2188C106" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2188C40-L2188C106" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.Point[],System.Drawing.Rectangle,System.Drawing.GraphicsUnit,System.Drawing.Imaging.ImageAttributes,System.Drawing.Graphics.DrawImageAbort)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2196C38-L2196C108" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2196C38-L2196C108" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.Point[],System.Drawing.Rectangle,System.Drawing.GraphicsUnit,System.Drawing.Imaging.ImageAttributes,System.Drawing.Graphics.DrawImageAbort,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2207C9-L2232C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2207C9-L2232C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.Rectangle,System.Single,System.Single,System.Single,System.Single,System.Drawing.GraphicsUnit)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2241C34-L2241C108" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2241C34-L2241C108" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.Rectangle,System.Single,System.Single,System.Single,System.Single,System.Drawing.GraphicsUnit,System.Drawing.Imaging.ImageAttributes)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2251C41-L2251C127" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2251C41-L2251C127" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.Rectangle,System.Single,System.Single,System.Single,System.Single,System.Drawing.GraphicsUnit,System.Drawing.Imaging.ImageAttributes,System.Drawing.Graphics.DrawImageAbort)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2262C38-L2262C141" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2262C38-L2262C141" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.Rectangle,System.Single,System.Single,System.Single,System.Single,System.Drawing.GraphicsUnit,System.Drawing.Imaging.ImageAttributes,System.Drawing.Graphics.DrawImageAbort,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2276C9-L2292C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2276C9-L2292C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.Rectangle,System.Int32,System.Int32,System.Int32,System.Int32,System.Drawing.GraphicsUnit)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2301C34-L2301C115" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2301C34-L2301C115" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.Rectangle,System.Int32,System.Int32,System.Int32,System.Int32,System.Drawing.GraphicsUnit,System.Drawing.Imaging.ImageAttributes)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2311C40-L2311C132" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2311C40-L2311C132" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.Rectangle,System.Int32,System.Int32,System.Int32,System.Int32,System.Drawing.GraphicsUnit,System.Drawing.Imaging.ImageAttributes,System.Drawing.Graphics.DrawImageAbort)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2322C38-L2322C147" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2322C38-L2322C147" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.Rectangle,System.Int32,System.Int32,System.Int32,System.Int32,System.Drawing.GraphicsUnit,System.Drawing.Imaging.ImageAttributes,System.Drawing.Graphics.DrawImageAbort,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2334C33-L2334C144" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2334C33-L2334C144" }, { "DocsId": "M:System.Drawing.Graphics.DrawLine(System.Drawing.Pen,System.Drawing.PointF,System.Drawing.PointF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2339C62-L2339C103" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2339C62-L2339C103" }, { "DocsId": "M:System.Drawing.Graphics.DrawLines(System.Drawing.Pen,System.Drawing.PointF[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2342C56-L2342C103" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2342C56-L2342C103" }, { "DocsId": "M:System.Drawing.Graphics.DrawLine(System.Drawing.Pen,System.Int32,System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2366C9-L2366C45" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2366C9-L2366C45" }, { "DocsId": "M:System.Drawing.Graphics.DrawLine(System.Drawing.Pen,System.Drawing.Point,System.Drawing.Point)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2371C60-L2371C108" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2371C60-L2371C108" }, { "DocsId": "M:System.Drawing.Graphics.DrawLines(System.Drawing.Pen,System.Drawing.Point[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2380C9-L2389C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2380C9-L2389C6" }, { "DocsId": "M:System.Drawing.Graphics.CopyFromScreen(System.Drawing.Point,System.Drawing.Point,System.Drawing.Size)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2413C9-L2413C126" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2413C9-L2413C126" }, { "DocsId": "M:System.Drawing.Graphics.CopyFromScreen(System.Int32,System.Int32,System.Int32,System.Int32,System.Drawing.Size)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2419C9-L2419C117" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2419C9-L2419C117" }, { "DocsId": "M:System.Drawing.Graphics.CopyFromScreen(System.Drawing.Point,System.Drawing.Point,System.Drawing.Size,System.Drawing.CopyPixelOperation)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2426C9-L2426C146" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2426C9-L2426C146" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.PointF,System.Drawing.Graphics.EnumerateMetafileProc)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2429C9-L2429C70" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2429C9-L2429C70" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.PointF,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2432C9-L2432C77" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2432C9-L2432C77" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.Point,System.Drawing.Graphics.EnumerateMetafileProc)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2435C9-L2435C70" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2435C9-L2435C70" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.Point,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2438C9-L2438C77" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2438C9-L2438C77" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.RectangleF,System.Drawing.Graphics.EnumerateMetafileProc)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2441C9-L2441C69" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2441C9-L2441C69" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.RectangleF,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2444C9-L2444C76" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2444C9-L2444C76" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.Rectangle,System.Drawing.Graphics.EnumerateMetafileProc)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2447C9-L2447C69" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2447C9-L2447C69" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.Rectangle,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2450C9-L2450C76" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2450C9-L2450C76" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.PointF[],System.Drawing.Graphics.EnumerateMetafileProc)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2453C9-L2453C71" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2453C9-L2453C71" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.PointF[],System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2459C33-L2459C101" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2459C33-L2459C101" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.Point[],System.Drawing.Graphics.EnumerateMetafileProc)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2462C9-L2462C71" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2462C9-L2462C71" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.Point[],System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2465C9-L2465C78" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2465C9-L2465C78" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.PointF,System.Drawing.RectangleF,System.Drawing.GraphicsUnit,System.Drawing.Graphics.EnumerateMetafileProc)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2472C44-L2472C123" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2472C44-L2472C123" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.PointF,System.Drawing.RectangleF,System.Drawing.GraphicsUnit,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2480C33-L2480C119" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2480C33-L2480C119" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.Point,System.Drawing.Rectangle,System.Drawing.GraphicsUnit,System.Drawing.Graphics.EnumerateMetafileProc)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2487C44-L2487C123" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2487C44-L2487C123" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.Point,System.Drawing.Rectangle,System.Drawing.GraphicsUnit,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2495C33-L2495C119" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2495C33-L2495C119" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.RectangleF,System.Drawing.RectangleF,System.Drawing.GraphicsUnit,System.Drawing.Graphics.EnumerateMetafileProc)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2502C44-L2502C122" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2502C44-L2502C122" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.RectangleF,System.Drawing.RectangleF,System.Drawing.GraphicsUnit,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2510C33-L2510C118" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2510C33-L2510C118" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Drawing.GraphicsUnit,System.Drawing.Graphics.EnumerateMetafileProc)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2517C44-L2517C122" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2517C44-L2517C122" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Drawing.GraphicsUnit,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2525C33-L2525C118" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2525C33-L2525C118" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.PointF[],System.Drawing.RectangleF,System.Drawing.GraphicsUnit,System.Drawing.Graphics.EnumerateMetafileProc)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2532C44-L2532C124" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2532C44-L2532C124" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.PointF[],System.Drawing.RectangleF,System.Drawing.GraphicsUnit,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2540C33-L2540C120" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2540C33-L2540C120" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.Point[],System.Drawing.Rectangle,System.Drawing.GraphicsUnit,System.Drawing.Graphics.EnumerateMetafileProc)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2547C44-L2547C124" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2547C44-L2547C124" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.Point[],System.Drawing.Rectangle,System.Drawing.GraphicsUnit,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2555C33-L2555C120" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2555C33-L2555C120" }, { "DocsId": "M:System.Drawing.Graphics.TransformPoints(System.Drawing.Drawing2D.CoordinateSpace,System.Drawing.Drawing2D.CoordinateSpace,System.Drawing.PointF[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2559C9-L2570C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2559C9-L2570C6" }, { "DocsId": "M:System.Drawing.Graphics.TransformPoints(System.Drawing.Drawing2D.CoordinateSpace,System.Drawing.Drawing2D.CoordinateSpace,System.Drawing.Point[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2574C9-L2585C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2574C9-L2585C6" }, { "DocsId": "M:System.Drawing.Graphics.CopyFromScreen(System.Int32,System.Int32,System.Int32,System.Int32,System.Drawing.Size,System.Drawing.CopyPixelOperation)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2680C17-L2720C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L16707566C0-L2720C6" }, { "DocsId": "M:System.Drawing.Graphics.GetNearestColor(System.Drawing.Color)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2724C9-L2726C45" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2724C9-L2726C45" }, { "DocsId": "M:System.Drawing.Graphics.DrawLine(System.Drawing.Pen,System.Single,System.Single,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2734C9-L2737C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2734C9-L2737C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawBeziers(System.Drawing.Pen,System.Drawing.PointF[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2741C9-L2741C58" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2741C9-L2741C58" }, { "DocsId": "M:System.Drawing.Graphics.DrawBeziers(System.Drawing.Pen,System.Drawing.Point[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2772C64-L2772C113" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2772C64-L2772C113" }, { "DocsId": "M:System.Drawing.Graphics.FillPath(System.Drawing.Brush,System.Drawing.Drawing2D.GraphicsPath)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2801C9-L2811C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2801C9-L2811C6" }, { "DocsId": "M:System.Drawing.Graphics.FillRegion(System.Drawing.Brush,System.Drawing.Region)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2818C9-L2828C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2818C9-L2828C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawIcon(System.Drawing.Icon,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2832C9-L2845C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2832C9-L2845C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawIcon(System.Drawing.Icon,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2855C9-L2868C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2855C9-L2868C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawIconUnstretched(System.Drawing.Icon,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2878C9-L2888C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2878C9-L2888C6" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.PointF,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr,System.Drawing.Imaging.ImageAttributes)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2897C9-L2909C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2897C9-L2909C6" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.Point,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr,System.Drawing.Imaging.ImageAttributes)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2917C12-L2917C93" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2917C12-L2917C93" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.RectangleF,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr,System.Drawing.Imaging.ImageAttributes)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2926C9-L2938C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2926C9-L2938C6" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.Rectangle,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr,System.Drawing.Imaging.ImageAttributes)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2945C40-L2945C124" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2945C40-L2945C124" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.PointF[],System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr,System.Drawing.Imaging.ImageAttributes)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2954C9-L2974C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2954C9-L2974C6" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.Point[],System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr,System.Drawing.Imaging.ImageAttributes)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2983C9-L3003C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2983C9-L3003C6" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.PointF,System.Drawing.RectangleF,System.Drawing.GraphicsUnit,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr,System.Drawing.Imaging.ImageAttributes)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3014C9-L3028C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3014C9-L3028C6" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.Point,System.Drawing.Rectangle,System.Drawing.GraphicsUnit,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr,System.Drawing.Imaging.ImageAttributes)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3037C40-L3044C23" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3037C40-L3044C23" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.RectangleF,System.Drawing.RectangleF,System.Drawing.GraphicsUnit,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr,System.Drawing.Imaging.ImageAttributes)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3055C9-L3069C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3055C9-L3069C6" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Drawing.GraphicsUnit,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr,System.Drawing.Imaging.ImageAttributes)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3078C40-L3078C139" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3078C40-L3078C139" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.PointF[],System.Drawing.RectangleF,System.Drawing.GraphicsUnit,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr,System.Drawing.Imaging.ImageAttributes)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3089C9-L3111C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3089C9-L3111C6" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.Point[],System.Drawing.Rectangle,System.Drawing.GraphicsUnit,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr,System.Drawing.Imaging.ImageAttributes)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3122C9-L3144C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3122C9-L3144C6" }, { "DocsId": "M:System.Drawing.Graphics.GetContextInfo", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3162C9-L3163C97" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3162C9-L3163C97" }, { "DocsId": "M:System.Drawing.Graphics.System#Drawing#IGraphicsContextInfo#GetHdc(System.Drawing.ApplyGraphicsProperties,System.Boolean)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3240C9-L3303C33" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3240C9-L3303C33" }, { "DocsId": "M:System.Drawing.Graphics.GetContextInfo(System.Drawing.PointF@)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3314C9-L3317C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3314C9-L3317C6" }, { "DocsId": "M:System.Drawing.Graphics.GetContextInfo(System.Drawing.PointF@,System.Drawing.Region@)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3328C9-L3331C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3328C9-L3331C6" }, { "DocsId": "M:System.Drawing.Graphics.Save", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3391C9-L3406C46" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3391C9-L3406C46" }, { "DocsId": "M:System.Drawing.Graphics.Restore(System.Drawing.Drawing2D.GraphicsState)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3411C9-L3413C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3411C9-L3413C6" }, { "DocsId": "M:System.Drawing.Graphics.BeginContainer(System.Drawing.RectangleF,System.Drawing.RectangleF,System.Drawing.GraphicsUnit)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3417C9-L3432C50" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3417C9-L3432C50" }, { "DocsId": "M:System.Drawing.Graphics.BeginContainer", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3437C9-L3451C50" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3437C9-L3451C50" }, { "DocsId": "M:System.Drawing.Graphics.EndContainer(System.Drawing.Drawing2D.GraphicsContainer)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3456C9-L3459C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3456C9-L3459C6" }, { "DocsId": "M:System.Drawing.Graphics.BeginContainer(System.Drawing.Rectangle,System.Drawing.Rectangle,System.Drawing.GraphicsUnit)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3462C12-L3462C74" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3462C12-L3462C74" }, { "DocsId": "M:System.Drawing.Graphics.AddMetafileComment(System.Byte[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3466C9-L3471C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3466C9-L3471C6" }, { "DocsId": "M:System.Drawing.Graphics.GetHalftonePalette", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3475C9-L3489C34" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3475C9-L3489C34" }, { "DocsId": "M:System.Drawing.Graphics.DrawCachedBitmap(System.Drawing.Imaging.CachedBitmap,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3564C9-L3572C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3564C9-L3572C6" }, { "DocsId": "P:System.Drawing.Graphics.IPointer#Pointer", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L193C49-L193C63" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L193C49-L193C63" }, { "DocsId": "P:System.Drawing.Graphics.Clip", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L199C13-L201C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L199C13-L201C27" }, { "DocsId": "P:System.Drawing.Graphics.ClipBounds", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L211C13-L212C25" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L211C13-L212C25" }, { "DocsId": "P:System.Drawing.Graphics.CompositingMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L224C13-L225C52" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L224C13-L225C52" }, { "DocsId": "P:System.Drawing.Graphics.CompositingQuality", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L241C13-L242C58" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L241C13-L242C58" }, { "DocsId": "P:System.Drawing.Graphics.DpiX", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L258C13-L259C24" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L258C13-L259C24" }, { "DocsId": "P:System.Drawing.Graphics.DpiY", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L268C13-L269C24" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L268C13-L269C24" }, { "DocsId": "P:System.Drawing.Graphics.InterpolationMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L281C13-L282C54" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L281C13-L282C54" }, { "DocsId": "P:System.Drawing.Graphics.IsClipEmpty", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L298C13-L299C28" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L298C13-L299C28" }, { "DocsId": "P:System.Drawing.Graphics.IsVisibleClipEmpty", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L308C13-L309C28" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L308C13-L309C28" }, { "DocsId": "P:System.Drawing.Graphics.PageScale", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L318C13-L319C26" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L318C13-L319C26" }, { "DocsId": "P:System.Drawing.Graphics.PageUnit", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L329C13-L330C39" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L329C13-L330C39" }, { "DocsId": "P:System.Drawing.Graphics.PixelOffsetMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L346C13-L347C42" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L346C13-L347C42" }, { "DocsId": "P:System.Drawing.Graphics.RenderingOrigin", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L363C13-L364C36" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L363C13-L364C36" }, { "DocsId": "P:System.Drawing.Graphics.SmoothingMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L374C13-L375C50" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L374C13-L375C50" }, { "DocsId": "P:System.Drawing.Graphics.TextContrast", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L391C13-L392C38" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L391C13-L392C38" }, { "DocsId": "P:System.Drawing.Graphics.TextRenderingHint", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L405C13-L406C44" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L405C13-L406C44" }, { "DocsId": "P:System.Drawing.Graphics.Transform", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L424C13-L426C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L424C13-L426C27" }, { "DocsId": "P:System.Drawing.Graphics.TransformElements", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L448C13-L465C10" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L448C13-L465C10" }, { "DocsId": "P:System.Drawing.Graphics.VisibleClipBounds", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3337C13-L3342C25" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3337C13-L3342C25" }, { "DocsId": "T:System.Drawing.Graphics.DrawImageAbort", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" }, { "DocsId": "T:System.Drawing.Graphics.EnumerateMetafileProc", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" } ], "DocsId": "T:System.Drawing.Graphics", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.GraphicsUnit.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/GraphicsUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/GraphicsUnit.cs" }, { "DocsId": "F:System.Drawing.GraphicsUnit.World", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/GraphicsUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/GraphicsUnit.cs" }, { "DocsId": "F:System.Drawing.GraphicsUnit.Display", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/GraphicsUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/GraphicsUnit.cs" }, { "DocsId": "F:System.Drawing.GraphicsUnit.Pixel", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/GraphicsUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/GraphicsUnit.cs" }, { "DocsId": "F:System.Drawing.GraphicsUnit.Point", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/GraphicsUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/GraphicsUnit.cs" }, { "DocsId": "F:System.Drawing.GraphicsUnit.Inch", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/GraphicsUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/GraphicsUnit.cs" }, { "DocsId": "F:System.Drawing.GraphicsUnit.Document", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/GraphicsUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/GraphicsUnit.cs" }, { "DocsId": "F:System.Drawing.GraphicsUnit.Millimeter", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/GraphicsUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/GraphicsUnit.cs" } ], "DocsId": "T:System.Drawing.GraphicsUnit", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/GraphicsUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/GraphicsUnit.cs" }, { "Members": [ - { - "DocsId": "M:System.Drawing.Icon.Save(System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Icon.ComWrappers.cs#L14C9-L57C6" - }, { "DocsId": "M:System.Drawing.Icon.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L53C36-L55C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L56C36-L58C6" }, { "DocsId": "M:System.Drawing.Icon.#ctor(System.String,System.Drawing.Size)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L57C47-L59C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L60C47-L62C6" }, { "DocsId": "M:System.Drawing.Icon.#ctor(System.String,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L61C59-L71C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L64C59-L74C6" }, { "DocsId": "M:System.Drawing.Icon.#ctor(System.Drawing.Icon,System.Drawing.Size)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L73C45-L75C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L76C45-L78C6" }, { "DocsId": "M:System.Drawing.Icon.#ctor(System.Drawing.Icon,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L77C57-L92C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L80C57-L95C6" }, { "DocsId": "M:System.Drawing.Icon.#ctor(System.Type,System.String)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L94C47-L104C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L97C47-L107C6" }, { "DocsId": "M:System.Drawing.Icon.#ctor(System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L106C34-L108C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L109C34-L111C6" }, { "DocsId": "M:System.Drawing.Icon.#ctor(System.IO.Stream,System.Drawing.Size)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L110C45-L112C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L113C45-L115C6" }, { "DocsId": "M:System.Drawing.Icon.#ctor(System.IO.Stream,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L114C57-L121C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L117C57-L124C6" }, { "DocsId": "M:System.Drawing.Icon.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L134C9-L146C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L137C9-L149C6" }, { "DocsId": "M:System.Drawing.Icon.ExtractAssociatedIcon(System.String)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L148C67-L148C101" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L151C67-L151C101" }, { "DocsId": "M:System.Drawing.Icon.IHandle#get_Handle", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L186C36-L186C49" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L189C36-L189C49" }, { "DocsId": "M:System.Drawing.Icon.Clone", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L235C30-L235C69" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L238C30-L238C69" }, { "DocsId": "M:System.Drawing.Icon.Dispose", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L259C9-L265C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L262C9-L268C6" }, { "DocsId": "M:System.Drawing.Icon.Finalize", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L390C16-L390C25" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L393C16-L16707566C0" }, { "DocsId": "M:System.Drawing.Icon.FromHandle(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L394C9-L397C40" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L397C9-L400C40" }, { "DocsId": "M:System.Drawing.Icon.ToBitmap", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L612C9-L617C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L615C9-L620C27" }, { "DocsId": "M:System.Drawing.Icon.ToString", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L789C42-L789C57" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L792C42-L792C57" + }, + { + "DocsId": "M:System.Drawing.Icon.Save(System.IO.Stream)", + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L801C9-L817C6" }, { "DocsId": "M:System.Drawing.Icon.ExtractIcon(System.String,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L836C12-L838C64" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L859C12-L861C64" }, { "DocsId": "M:System.Drawing.Icon.ExtractIcon(System.String,System.Int32,System.Boolean)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L847C12-L847C51" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L870C12-L870C51" }, { "DocsId": "P:System.Drawing.Icon.Handle", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L184C29-L184C111" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L187C29-L187C111" }, { "DocsId": "P:System.Drawing.Icon.IHandle#Handle", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L186C36-L186C49" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L189C36-L189C49" }, { "DocsId": "P:System.Drawing.Icon.Height", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L189C26-L189C37" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L192C26-L192C37" }, { "DocsId": "P:System.Drawing.Icon.Size", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L195C13-L228C30" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L198C13-L231C30" }, { "DocsId": "P:System.Drawing.Icon.Width", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L233C25-L233C35" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L236C25-L236C35" } ], "DocsId": "T:System.Drawing.Icon", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Icon.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Icon.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.IconConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/IconConverter.cs#L14C9-L14C45" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/IconConverter.cs#L14C9-L14C45" }, { "DocsId": "M:System.Drawing.IconConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/IconConverter.cs#L19C9-L20C86" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/IconConverter.cs#L19C9-L20C86" }, { "DocsId": "M:System.Drawing.IconConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/IconConverter.cs#L25C9-L25C118" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/IconConverter.cs#L25C9-L25C118" }, { "DocsId": "M:System.Drawing.IconConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/IconConverter.cs#L30C9-L59C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/IconConverter.cs#L30C9-L59C6" }, { "DocsId": "M:System.Drawing.IconConverter.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/IconConverter.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/IconConverter.cs" } ], "DocsId": "T:System.Drawing.IconConverter", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/IconConverter.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/IconConverter.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.IDeviceContext.GetHdc", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/IDeviceContext.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/IDeviceContext.cs" }, { "DocsId": "M:System.Drawing.IDeviceContext.ReleaseHdc", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/IDeviceContext.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/IDeviceContext.cs" } ], "DocsId": "T:System.Drawing.IDeviceContext", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/IDeviceContext.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/IDeviceContext.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Image.IPointer#get_Pointer", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L35C43-L35C55" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L35C43-L35C55" }, { "DocsId": "M:System.Drawing.Image.System#IO#IRawData#get_Data", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L42C41-L42C60" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L44C41-L44C60" }, { "DocsId": "M:System.Drawing.Image.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L76C9-L79C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L78C9-L81C6" }, { "DocsId": "M:System.Drawing.Image.FromFile(System.String)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L84C54-L84C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L86C54-L86C79" }, { "DocsId": "M:System.Drawing.Image.FromFile(System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L88C9-L118C20" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L90C9-L120C20" }, { "DocsId": "M:System.Drawing.Image.FromStream(System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L124C54-L124C107" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L126C54-L126C107" }, { "DocsId": "M:System.Drawing.Image.FromStream(System.IO.Stream,System.Boolean)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L127C9-L127C61" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L129C9-L129C61" }, { "DocsId": "M:System.Drawing.Image.FromStream(System.IO.Stream,System.Boolean,System.Boolean)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L131C9-L141C20" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L133C9-L143C20" }, { "DocsId": "M:System.Drawing.Image.Dispose", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L185C9-L187C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L187C9-L189C6" }, { "DocsId": "M:System.Drawing.Image.Finalize", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L192C17-L192C42" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L194C17-L16707566C0" }, { "DocsId": "M:System.Drawing.Image.Clone", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L200C9-L203C46" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L202C9-L205C46" }, { "DocsId": "M:System.Drawing.Image.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L208C9-L216C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L210C9-L218C6" }, { "DocsId": "M:System.Drawing.Image.Save(System.String)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L221C42-L221C67" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L223C42-L223C67" }, { "DocsId": "M:System.Drawing.Image.Save(System.String,System.Drawing.Imaging.ImageFormat)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L228C9-L237C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L230C9-L239C6" }, { "DocsId": "M:System.Drawing.Image.Save(System.String,System.Drawing.Imaging.ImageCodecInfo,System.Drawing.Imaging.EncoderParameters)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L243C12-L243C56" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L245C12-L245C56" }, { "DocsId": "M:System.Drawing.Image.Save(System.IO.Stream,System.Drawing.Imaging.ImageFormat)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L295C9-L297C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L297C9-L299C6" }, { "DocsId": "M:System.Drawing.Image.Save(System.IO.Stream,System.Drawing.Imaging.ImageCodecInfo,System.Drawing.Imaging.EncoderParameters)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L304C9-L329C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L306C9-L331C6" }, { "DocsId": "M:System.Drawing.Image.SaveAdd(System.Drawing.Imaging.EncoderParameters)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L336C9-L358C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L338C9-L360C6" }, { "DocsId": "M:System.Drawing.Image.SaveAdd(System.Drawing.Image,System.Drawing.Imaging.EncoderParameters)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L365C9-L391C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L367C9-L393C6" }, { "DocsId": "M:System.Drawing.Image.GetBounds(System.Drawing.GraphicsUnit@)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L585C9-L587C23" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L587C9-L589C23" }, { "DocsId": "M:System.Drawing.Image.GetThumbnailImage(System.Int32,System.Int32,System.Drawing.Image.GetThumbnailImageAbort,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L634C9-L643C46" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L636C9-L645C46" }, { "DocsId": "M:System.Drawing.Image.GetFrameCount(System.Drawing.Imaging.FrameDimension)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L664C9-L668C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L666C9-L670C27" }, { "DocsId": "M:System.Drawing.Image.GetPropertyItem(System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L677C9-L692C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L679C9-L694C6" }, { "DocsId": "M:System.Drawing.Image.SelectActiveFrame(System.Drawing.Imaging.FrameDimension,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L699C9-L702C18" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L701C9-L704C18" }, { "DocsId": "M:System.Drawing.Image.SetPropertyItem(System.Drawing.Imaging.PropertyItem)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L710C16-L723C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L712C16-L725C6" }, { "DocsId": "M:System.Drawing.Image.RotateFlip(System.Drawing.RotateFlipType)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L727C9-L729C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L729C9-L731C6" }, { "DocsId": "M:System.Drawing.Image.RemovePropertyItem(System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L736C9-L738C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L738C9-L740C6" }, { "DocsId": "M:System.Drawing.Image.GetEncoderParameterList(System.Guid)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L748C9-L769C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L750C9-L771C6" }, { "DocsId": "M:System.Drawing.Image.FromHbitmap(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L774C57-L774C90" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L776C57-L776C90" }, { "DocsId": "M:System.Drawing.Image.FromHbitmap(System.IntPtr,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L782C9-L783C35" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L784C9-L785C35" }, { "DocsId": "M:System.Drawing.Image.IsExtendedPixelFormat(System.Drawing.Imaging.PixelFormat)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L789C69-L789C105" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L791C69-L791C105" }, { "DocsId": "M:System.Drawing.Image.IsCanonicalPixelFormat(System.Drawing.Imaging.PixelFormat)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L803C9-L803C54" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L805C9-L805C54" }, { "DocsId": "M:System.Drawing.Image.GetPixelFormatSize(System.Drawing.Imaging.PixelFormat)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L847C65-L847C90" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L849C65-L849C90" }, { "DocsId": "M:System.Drawing.Image.IsAlphaPixelFormat(System.Drawing.Imaging.PixelFormat)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L852C66-L852C99" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L854C66-L854C99" }, { "DocsId": "P:System.Drawing.Image.IPointer#Pointer", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L35C43-L35C55" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L35C43-L35C55" }, { "DocsId": "P:System.Drawing.Image.System#IO#IRawData#Data", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L42C41-L42C60" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L44C41-L44C60" }, { "DocsId": "P:System.Drawing.Image.Tag", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L48C16-L48C25" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L50C16-L50C25" }, { "DocsId": "P:System.Drawing.Image.PhysicalDimension", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L412C13-L414C45" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L414C13-L416C45" }, { "DocsId": "P:System.Drawing.Image.Size", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L421C25-L421C43" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L423C25-L423C43" }, { "DocsId": "P:System.Drawing.Image.Width", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L434C13-L436C31" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L436C13-L438C31" }, { "DocsId": "P:System.Drawing.Image.Height", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L451C13-L453C32" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L453C13-L455C32" }, { "DocsId": "P:System.Drawing.Image.HorizontalResolution", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L465C13-L467C28" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L467C13-L469C28" }, { "DocsId": "P:System.Drawing.Image.VerticalResolution", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L479C13-L481C28" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L481C13-L483C28" }, { "DocsId": "P:System.Drawing.Image.Flags", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L494C13-L496C31" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L496C13-L498C31" }, { "DocsId": "P:System.Drawing.Image.RawFormat", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L507C13-L510C42" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L509C13-L512C42" }, { "DocsId": "P:System.Drawing.Image.PixelFormat", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L517C39-L517C73" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L519C39-L519C73" }, { "DocsId": "P:System.Drawing.Image.PropertyIdList", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L528C13-L541C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L530C13-L543C27" }, { "DocsId": "P:System.Drawing.Image.PropertyItems", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L554C13-L576C10" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L556C13-L578C10" }, { "DocsId": "P:System.Drawing.Image.Palette", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L602C13-L611C10" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L604C13-L613C10" }, { "DocsId": "P:System.Drawing.Image.FrameDimensionsList", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L825C13-L840C26" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L827C13-L842C26" }, { "DocsId": "T:System.Drawing.Image.GetThumbnailImageAbort", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs" } ], "DocsId": "T:System.Drawing.Image", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.ImageAnimator.UpdateFrames(System.Drawing.Image)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/ImageAnimator.cs#L99C9-L153C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/ImageAnimator.cs#L99C9-L153C6" }, { "DocsId": "M:System.Drawing.ImageAnimator.UpdateFrames", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/ImageAnimator.cs#L160C9-L190C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/ImageAnimator.cs#L160C9-L190C6" }, { "DocsId": "M:System.Drawing.ImageAnimator.Animate(System.Drawing.Image,System.EventHandler)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/ImageAnimator.cs#L198C9-L279C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/ImageAnimator.cs#L198C9-L279C6" }, { "DocsId": "M:System.Drawing.ImageAnimator.CanAnimate(System.Drawing.Image)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/ImageAnimator.cs#L286C9-L307C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/ImageAnimator.cs#L286C9-L307C6" }, { "DocsId": "M:System.Drawing.ImageAnimator.StopAnimate(System.Drawing.Image,System.EventHandler)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/ImageAnimator.cs#L315C9-L374C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/ImageAnimator.cs#L315C9-L374C6" } ], "DocsId": "T:System.Drawing.ImageAnimator", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/ImageAnimator.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/ImageAnimator.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.ImageConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/ImageConverter.cs#L14C9-L14C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/ImageConverter.cs#L14C9-L14C75" }, { "DocsId": "M:System.Drawing.ImageConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/ImageConverter.cs#L19C9-L19C87" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/ImageConverter.cs#L19C9-L19C87" }, { "DocsId": "M:System.Drawing.ImageConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/ImageConverter.cs#L24C9-L38C62" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/ImageConverter.cs#L24C9-L38C62" }, { "DocsId": "M:System.Drawing.ImageConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/ImageConverter.cs#L44C9-L71C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/ImageConverter.cs#L44C9-L71C6" }, { "DocsId": "M:System.Drawing.ImageConverter.GetProperties(System.ComponentModel.ITypeDescriptorContext,System.Object,System.Attribute[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/ImageConverter.cs#L76C9-L76C72" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/ImageConverter.cs#L76C9-L76C72" }, { "DocsId": "M:System.Drawing.ImageConverter.GetPropertiesSupported(System.ComponentModel.ITypeDescriptorContext)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/ImageConverter.cs#L79C85-L79C89" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/ImageConverter.cs#L79C85-L79C89" }, { "DocsId": "M:System.Drawing.ImageConverter.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/ImageConverter.FMTID.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/ImageConverter.FMTID.cs" } ], "DocsId": "T:System.Drawing.ImageConverter", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/ImageConverter.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/ImageConverter.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.ImageFormatConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/ImageFormatConverter.cs#L18C9-L18C89" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/ImageFormatConverter.cs#L18C9-L18C89" }, { "DocsId": "M:System.Drawing.ImageFormatConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/ImageFormatConverter.cs#L23C9-L28C60" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/ImageFormatConverter.cs#L23C9-L28C60" }, { "DocsId": "M:System.Drawing.ImageFormatConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/ImageFormatConverter.cs#L34C9-L72C106" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/ImageFormatConverter.cs#L34C9-L72C106" }, { "DocsId": "M:System.Drawing.ImageFormatConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/ImageFormatConverter.cs#L77C9-L120C73" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/ImageFormatConverter.cs#L77C9-L120C73" }, { "DocsId": "M:System.Drawing.ImageFormatConverter.GetStandardValues(System.ComponentModel.ITypeDescriptorContext)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/ImageFormatConverter.cs#L125C9-L139C12" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/ImageFormatConverter.cs#L125C9-L139C12" }, { "DocsId": "M:System.Drawing.ImageFormatConverter.GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/ImageFormatConverter.cs#L142C89-L142C93" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/ImageFormatConverter.cs#L142C89-L142C93" }, { "DocsId": "M:System.Drawing.ImageFormatConverter.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/ImageFormatConverter.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/ImageFormatConverter.cs" } ], "DocsId": "T:System.Drawing.ImageFormatConverter", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/ImageFormatConverter.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/ImageFormatConverter.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Pen.#ctor(System.Drawing.Color)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L35C31-L37C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L35C31-L37C6" }, { "DocsId": "M:System.Drawing.Pen.#ctor(System.Drawing.Color,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L43C5-L55C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L43C5-L55C6" }, { "DocsId": "M:System.Drawing.Pen.#ctor(System.Drawing.Brush)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L60C31-L62C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L60C31-L62C6" }, { "DocsId": "M:System.Drawing.Pen.#ctor(System.Drawing.Brush,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L67C5-L74C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L67C5-L74C6" }, { "DocsId": "M:System.Drawing.Pen.Clone", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L91C9-L93C35" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L91C9-L93C35" }, { "DocsId": "M:System.Drawing.Pen.Dispose", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L101C9-L103C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L101C9-L103C6" }, { "DocsId": "M:System.Drawing.Pen.Finalize", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L130C15-L130C40" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L130C15-L16707566C0" }, { "DocsId": "M:System.Drawing.Pen.SetLineCap(System.Drawing.Drawing2D.LineCap,System.Drawing.Drawing2D.LineCap,System.Drawing.Drawing2D.DashCap)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L161C9-L173C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L161C9-L173C6" }, { "DocsId": "M:System.Drawing.Pen.ResetTransform", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L452C9-L454C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L452C9-L454C6" }, { "DocsId": "M:System.Drawing.Pen.MultiplyTransform(System.Drawing.Drawing2D.Matrix)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L459C53-L459C99" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L459C53-L459C99" }, { "DocsId": "M:System.Drawing.Pen.MultiplyTransform(System.Drawing.Drawing2D.Matrix,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L466C9-L477C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L466C9-L477C6" }, { "DocsId": "M:System.Drawing.Pen.TranslateTransform(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L483C59-L483C106" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L483C59-L483C106" }, { "DocsId": "M:System.Drawing.Pen.TranslateTransform(System.Single,System.Single,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L490C9-L492C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L490C9-L492C6" }, { "DocsId": "M:System.Drawing.Pen.ScaleTransform(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L497C55-L497C98" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L497C55-L497C98" }, { "DocsId": "M:System.Drawing.Pen.ScaleTransform(System.Single,System.Single,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L504C9-L506C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L504C9-L506C6" }, { "DocsId": "M:System.Drawing.Pen.RotateTransform(System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L511C49-L511C92" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L511C49-L511C92" }, { "DocsId": "M:System.Drawing.Pen.RotateTransform(System.Single,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L518C9-L520C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L518C9-L520C6" }, { "DocsId": "M:System.Drawing.Pen.System#Drawing#Internal#ISystemColorTracker#OnSystemColorChanged", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L831C9-L835C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L831C9-L835C6" }, { "DocsId": "P:System.Drawing.Pen.Width", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L140C13-L142C26" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L140C13-L142C26" }, { "DocsId": "P:System.Drawing.Pen.StartCap", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L183C13-L185C29" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L183C13-L185C29" }, { "DocsId": "P:System.Drawing.Pen.EndCap", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L225C13-L227C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L225C13-L227C27" }, { "DocsId": "P:System.Drawing.Pen.CustomStartCap", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L267C13-L269C69" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L267C13-L269C69" }, { "DocsId": "P:System.Drawing.Pen.CustomEndCap", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L292C13-L294C69" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L292C13-L294C69" }, { "DocsId": "P:System.Drawing.Pen.DashCap", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L317C13-L319C28" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L317C13-L319C28" }, { "DocsId": "P:System.Drawing.Pen.LineJoin", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L346C13-L348C29" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L346C13-L348C29" }, { "DocsId": "P:System.Drawing.Pen.MiterLimit", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L375C13-L377C31" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L375C13-L377C31" }, { "DocsId": "P:System.Drawing.Pen.Alignment", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L399C13-L401C28" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L399C13-L401C28" }, { "DocsId": "P:System.Drawing.Pen.Transform", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L427C13-L430C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L427C13-L430C27" }, { "DocsId": "P:System.Drawing.Pen.PenType", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L537C13-L539C44" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L537C13-L539C44" }, { "DocsId": "P:System.Drawing.Pen.Color", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L550C13-L564C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L550C13-L564C27" }, { "DocsId": "P:System.Drawing.Pen.Brush", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L596C13-L624C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L596C13-L624C27" }, { "DocsId": "P:System.Drawing.Pen.DashStyle", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L655C13-L657C30" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L655C13-L657C30" }, { "DocsId": "P:System.Drawing.Pen.DashOffset", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L713C13-L715C31" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L713C13-L715C31" }, { "DocsId": "P:System.Drawing.Pen.DashPattern", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L737C13-L768C28" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L737C13-L768C28" }, { "DocsId": "P:System.Drawing.Pen.CompoundArray", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L798C13-L810C30" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L798C13-L810C30" } ], "DocsId": "T:System.Drawing.Pen", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pen.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pen.cs" }, { "Members": [ { "DocsId": "P:System.Drawing.Pens.Transparent", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L149C38-L149C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L149C38-L149C81" }, { "DocsId": "P:System.Drawing.Pens.AliceBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L151C36-L151C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L151C36-L151C75" }, { "DocsId": "P:System.Drawing.Pens.AntiqueWhite", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L152C39-L152C84" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L152C39-L152C84" }, { "DocsId": "P:System.Drawing.Pens.Aqua", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L153C31-L153C60" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L153C31-L153C60" }, { "DocsId": "P:System.Drawing.Pens.Aquamarine", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L154C37-L154C78" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L154C37-L154C78" }, { "DocsId": "P:System.Drawing.Pens.Azure", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L155C32-L155C63" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L155C32-L155C63" }, { "DocsId": "P:System.Drawing.Pens.Beige", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L157C32-L157C63" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L157C32-L157C63" }, { "DocsId": "P:System.Drawing.Pens.Bisque", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L158C33-L158C66" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L158C33-L158C66" }, { "DocsId": "P:System.Drawing.Pens.Black", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L159C32-L159C63" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L159C32-L159C63" }, { "DocsId": "P:System.Drawing.Pens.BlanchedAlmond", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L160C41-L160C90" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L160C41-L160C90" }, { "DocsId": "P:System.Drawing.Pens.Blue", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L161C31-L161C60" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L161C31-L161C60" }, { "DocsId": "P:System.Drawing.Pens.BlueViolet", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L162C37-L162C78" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L162C37-L162C78" }, { "DocsId": "P:System.Drawing.Pens.Brown", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L163C32-L163C63" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L163C32-L163C63" }, { "DocsId": "P:System.Drawing.Pens.BurlyWood", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L164C36-L164C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L164C36-L164C75" }, { "DocsId": "P:System.Drawing.Pens.CadetBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L166C36-L166C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L166C36-L166C75" }, { "DocsId": "P:System.Drawing.Pens.Chartreuse", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L167C37-L167C78" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L167C37-L167C78" }, { "DocsId": "P:System.Drawing.Pens.Chocolate", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L168C36-L168C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L168C36-L168C75" }, { "DocsId": "P:System.Drawing.Pens.Coral", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L169C32-L169C63" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L169C32-L169C63" }, { "DocsId": "P:System.Drawing.Pens.CornflowerBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L170C41-L170C90" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L170C41-L170C90" }, { "DocsId": "P:System.Drawing.Pens.Cornsilk", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L171C35-L171C72" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L171C35-L171C72" }, { "DocsId": "P:System.Drawing.Pens.Crimson", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L172C34-L172C69" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L172C34-L172C69" }, { "DocsId": "P:System.Drawing.Pens.Cyan", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L173C31-L173C60" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L173C31-L173C60" }, { "DocsId": "P:System.Drawing.Pens.DarkBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L175C35-L175C72" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L175C35-L175C72" }, { "DocsId": "P:System.Drawing.Pens.DarkCyan", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L176C35-L176C72" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L176C35-L176C72" }, { "DocsId": "P:System.Drawing.Pens.DarkGoldenrod", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L177C40-L177C87" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L177C40-L177C87" }, { "DocsId": "P:System.Drawing.Pens.DarkGray", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L178C35-L178C72" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L178C35-L178C72" }, { "DocsId": "P:System.Drawing.Pens.DarkGreen", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L179C36-L179C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L179C36-L179C75" }, { "DocsId": "P:System.Drawing.Pens.DarkKhaki", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L180C36-L180C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L180C36-L180C75" }, { "DocsId": "P:System.Drawing.Pens.DarkMagenta", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L181C38-L181C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L181C38-L181C81" }, { "DocsId": "P:System.Drawing.Pens.DarkOliveGreen", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L182C41-L182C90" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L182C41-L182C90" }, { "DocsId": "P:System.Drawing.Pens.DarkOrange", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L183C37-L183C78" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L183C37-L183C78" }, { "DocsId": "P:System.Drawing.Pens.DarkOrchid", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L184C37-L184C78" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L184C37-L184C78" }, { "DocsId": "P:System.Drawing.Pens.DarkRed", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L185C34-L185C69" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L185C34-L185C69" }, { "DocsId": "P:System.Drawing.Pens.DarkSalmon", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L186C37-L186C78" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L186C37-L186C78" }, { "DocsId": "P:System.Drawing.Pens.DarkSeaGreen", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L187C39-L187C84" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L187C39-L187C84" }, { "DocsId": "P:System.Drawing.Pens.DarkSlateBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L188C40-L188C87" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L188C40-L188C87" }, { "DocsId": "P:System.Drawing.Pens.DarkSlateGray", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L189C40-L189C87" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L189C40-L189C87" }, { "DocsId": "P:System.Drawing.Pens.DarkTurquoise", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L190C40-L190C87" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L190C40-L190C87" }, { "DocsId": "P:System.Drawing.Pens.DarkViolet", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L191C37-L191C78" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L191C37-L191C78" }, { "DocsId": "P:System.Drawing.Pens.DeepPink", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L192C35-L192C72" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L192C35-L192C72" }, { "DocsId": "P:System.Drawing.Pens.DeepSkyBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L193C38-L193C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L193C38-L193C81" }, { "DocsId": "P:System.Drawing.Pens.DimGray", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L194C34-L194C69" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L194C34-L194C69" }, { "DocsId": "P:System.Drawing.Pens.DodgerBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L195C37-L195C78" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L195C37-L195C78" }, { "DocsId": "P:System.Drawing.Pens.Firebrick", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L197C36-L197C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L197C36-L197C75" }, { "DocsId": "P:System.Drawing.Pens.FloralWhite", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L198C38-L198C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L198C38-L198C81" }, { "DocsId": "P:System.Drawing.Pens.ForestGreen", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L199C38-L199C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L199C38-L199C81" }, { "DocsId": "P:System.Drawing.Pens.Fuchsia", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L200C34-L200C69" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L200C34-L200C69" }, { "DocsId": "P:System.Drawing.Pens.Gainsboro", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L202C36-L202C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L202C36-L202C75" }, { "DocsId": "P:System.Drawing.Pens.GhostWhite", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L203C37-L203C78" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L203C37-L203C78" }, { "DocsId": "P:System.Drawing.Pens.Gold", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L204C31-L204C60" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L204C31-L204C60" }, { "DocsId": "P:System.Drawing.Pens.Goldenrod", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L205C36-L205C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L205C36-L205C75" }, { "DocsId": "P:System.Drawing.Pens.Gray", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L206C31-L206C60" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L206C31-L206C60" }, { "DocsId": "P:System.Drawing.Pens.Green", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L207C32-L207C63" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L207C32-L207C63" }, { "DocsId": "P:System.Drawing.Pens.GreenYellow", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L208C38-L208C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L208C38-L208C81" }, { "DocsId": "P:System.Drawing.Pens.Honeydew", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L210C35-L210C72" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L210C35-L210C72" }, { "DocsId": "P:System.Drawing.Pens.HotPink", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L211C34-L211C69" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L211C34-L211C69" }, { "DocsId": "P:System.Drawing.Pens.IndianRed", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L213C36-L213C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L213C36-L213C75" }, { "DocsId": "P:System.Drawing.Pens.Indigo", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L214C33-L214C66" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L214C33-L214C66" }, { "DocsId": "P:System.Drawing.Pens.Ivory", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L215C32-L215C63" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L215C32-L215C63" }, { "DocsId": "P:System.Drawing.Pens.Khaki", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L217C32-L217C63" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L217C32-L217C63" }, { "DocsId": "P:System.Drawing.Pens.Lavender", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L219C35-L219C72" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L219C35-L219C72" }, { "DocsId": "P:System.Drawing.Pens.LavenderBlush", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L220C40-L220C87" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L220C40-L220C87" }, { "DocsId": "P:System.Drawing.Pens.LawnGreen", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L221C36-L221C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L221C36-L221C75" }, { "DocsId": "P:System.Drawing.Pens.LemonChiffon", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L222C39-L222C84" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L222C39-L222C84" }, { "DocsId": "P:System.Drawing.Pens.LightBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L223C36-L223C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L223C36-L223C75" }, { "DocsId": "P:System.Drawing.Pens.LightCoral", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L224C37-L224C78" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L224C37-L224C78" }, { "DocsId": "P:System.Drawing.Pens.LightCyan", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L225C36-L225C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L225C36-L225C75" }, { "DocsId": "P:System.Drawing.Pens.LightGoldenrodYellow", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L226C47-L226C108" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L226C47-L226C108" }, { "DocsId": "P:System.Drawing.Pens.LightGreen", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L227C37-L227C78" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L227C37-L227C78" }, { "DocsId": "P:System.Drawing.Pens.LightGray", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L228C36-L228C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L228C36-L228C75" }, { "DocsId": "P:System.Drawing.Pens.LightPink", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L229C36-L229C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L229C36-L229C75" }, { "DocsId": "P:System.Drawing.Pens.LightSalmon", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L230C38-L230C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L230C38-L230C81" }, { "DocsId": "P:System.Drawing.Pens.LightSeaGreen", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L231C40-L231C87" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L231C40-L231C87" }, { "DocsId": "P:System.Drawing.Pens.LightSkyBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L232C39-L232C84" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L232C39-L232C84" }, { "DocsId": "P:System.Drawing.Pens.LightSlateGray", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L233C41-L233C90" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L233C41-L233C90" }, { "DocsId": "P:System.Drawing.Pens.LightSteelBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L234C41-L234C90" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L234C41-L234C90" }, { "DocsId": "P:System.Drawing.Pens.LightYellow", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L235C38-L235C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L235C38-L235C81" }, { "DocsId": "P:System.Drawing.Pens.Lime", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L236C31-L236C60" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L236C31-L236C60" }, { "DocsId": "P:System.Drawing.Pens.LimeGreen", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L237C36-L237C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L237C36-L237C75" }, { "DocsId": "P:System.Drawing.Pens.Linen", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L238C32-L238C63" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L238C32-L238C63" }, { "DocsId": "P:System.Drawing.Pens.Magenta", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L240C34-L240C69" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L240C34-L240C69" }, { "DocsId": "P:System.Drawing.Pens.Maroon", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L241C33-L241C66" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L241C33-L241C66" }, { "DocsId": "P:System.Drawing.Pens.MediumAquamarine", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L242C43-L242C96" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L242C43-L242C96" }, { "DocsId": "P:System.Drawing.Pens.MediumBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L243C37-L243C78" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L243C37-L243C78" }, { "DocsId": "P:System.Drawing.Pens.MediumOrchid", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L244C39-L244C84" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L244C39-L244C84" }, { "DocsId": "P:System.Drawing.Pens.MediumPurple", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L245C39-L245C84" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L245C39-L245C84" }, { "DocsId": "P:System.Drawing.Pens.MediumSeaGreen", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L246C41-L246C90" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L246C41-L246C90" }, { "DocsId": "P:System.Drawing.Pens.MediumSlateBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L247C42-L247C93" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L247C42-L247C93" }, { "DocsId": "P:System.Drawing.Pens.MediumSpringGreen", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L248C44-L248C99" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L248C44-L248C99" }, { "DocsId": "P:System.Drawing.Pens.MediumTurquoise", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L249C42-L249C93" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L249C42-L249C93" }, { "DocsId": "P:System.Drawing.Pens.MediumVioletRed", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L250C42-L250C93" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L250C42-L250C93" }, { "DocsId": "P:System.Drawing.Pens.MidnightBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L251C39-L251C84" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L251C39-L251C84" }, { "DocsId": "P:System.Drawing.Pens.MintCream", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L252C36-L252C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L252C36-L252C75" }, { "DocsId": "P:System.Drawing.Pens.MistyRose", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L253C36-L253C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L253C36-L253C75" }, { "DocsId": "P:System.Drawing.Pens.Moccasin", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L254C35-L254C72" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L254C35-L254C72" }, { "DocsId": "P:System.Drawing.Pens.NavajoWhite", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L256C38-L256C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L256C38-L256C81" }, { "DocsId": "P:System.Drawing.Pens.Navy", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L257C31-L257C60" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L257C31-L257C60" }, { "DocsId": "P:System.Drawing.Pens.OldLace", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L259C34-L259C69" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L259C34-L259C69" }, { "DocsId": "P:System.Drawing.Pens.Olive", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L260C32-L260C63" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L260C32-L260C63" }, { "DocsId": "P:System.Drawing.Pens.OliveDrab", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L261C36-L261C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L261C36-L261C75" }, { "DocsId": "P:System.Drawing.Pens.Orange", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L262C33-L262C66" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L262C33-L262C66" }, { "DocsId": "P:System.Drawing.Pens.OrangeRed", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L263C36-L263C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L263C36-L263C75" }, { "DocsId": "P:System.Drawing.Pens.Orchid", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L264C33-L264C66" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L264C33-L264C66" }, { "DocsId": "P:System.Drawing.Pens.PaleGoldenrod", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L266C40-L266C87" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L266C40-L266C87" }, { "DocsId": "P:System.Drawing.Pens.PaleGreen", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L267C36-L267C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L267C36-L267C75" }, { "DocsId": "P:System.Drawing.Pens.PaleTurquoise", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L268C40-L268C87" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L268C40-L268C87" }, { "DocsId": "P:System.Drawing.Pens.PaleVioletRed", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L269C40-L269C87" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L269C40-L269C87" }, { "DocsId": "P:System.Drawing.Pens.PapayaWhip", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L270C37-L270C78" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L270C37-L270C78" }, { "DocsId": "P:System.Drawing.Pens.PeachPuff", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L271C36-L271C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L271C36-L271C75" }, { "DocsId": "P:System.Drawing.Pens.Peru", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L272C31-L272C60" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L272C31-L272C60" }, { "DocsId": "P:System.Drawing.Pens.Pink", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L273C31-L273C60" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L273C31-L273C60" }, { "DocsId": "P:System.Drawing.Pens.Plum", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L274C31-L274C60" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L274C31-L274C60" }, { "DocsId": "P:System.Drawing.Pens.PowderBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L275C37-L275C78" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L275C37-L275C78" }, { "DocsId": "P:System.Drawing.Pens.Purple", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L276C33-L276C66" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L276C33-L276C66" }, { "DocsId": "P:System.Drawing.Pens.Red", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L278C30-L278C57" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L278C30-L278C57" }, { "DocsId": "P:System.Drawing.Pens.RosyBrown", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L279C36-L279C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L279C36-L279C75" }, { "DocsId": "P:System.Drawing.Pens.RoyalBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L280C36-L280C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L280C36-L280C75" }, { "DocsId": "P:System.Drawing.Pens.SaddleBrown", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L282C38-L282C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L282C38-L282C81" }, { "DocsId": "P:System.Drawing.Pens.Salmon", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L283C33-L283C66" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L283C33-L283C66" }, { "DocsId": "P:System.Drawing.Pens.SandyBrown", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L284C37-L284C78" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L284C37-L284C78" }, { "DocsId": "P:System.Drawing.Pens.SeaGreen", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L285C35-L285C72" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L285C35-L285C72" }, { "DocsId": "P:System.Drawing.Pens.SeaShell", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L286C35-L286C72" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L286C35-L286C72" }, { "DocsId": "P:System.Drawing.Pens.Sienna", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L287C33-L287C66" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L287C33-L287C66" }, { "DocsId": "P:System.Drawing.Pens.Silver", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L288C33-L288C66" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L288C33-L288C66" }, { "DocsId": "P:System.Drawing.Pens.SkyBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L289C34-L289C69" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L289C34-L289C69" }, { "DocsId": "P:System.Drawing.Pens.SlateBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L290C36-L290C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L290C36-L290C75" }, { "DocsId": "P:System.Drawing.Pens.SlateGray", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L291C36-L291C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L291C36-L291C75" }, { "DocsId": "P:System.Drawing.Pens.Snow", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L292C31-L292C60" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L292C31-L292C60" }, { "DocsId": "P:System.Drawing.Pens.SpringGreen", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L293C38-L293C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L293C38-L293C81" }, { "DocsId": "P:System.Drawing.Pens.SteelBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L294C36-L294C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L294C36-L294C75" }, { "DocsId": "P:System.Drawing.Pens.Tan", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L296C30-L296C57" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L296C30-L296C57" }, { "DocsId": "P:System.Drawing.Pens.Teal", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L297C31-L297C60" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L297C31-L297C60" }, { "DocsId": "P:System.Drawing.Pens.Thistle", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L298C34-L298C69" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L298C34-L298C69" }, { "DocsId": "P:System.Drawing.Pens.Tomato", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L299C33-L299C66" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L299C33-L299C66" }, { "DocsId": "P:System.Drawing.Pens.Turquoise", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L300C36-L300C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L300C36-L300C75" }, { "DocsId": "P:System.Drawing.Pens.Violet", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L302C33-L302C66" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L302C33-L302C66" }, { "DocsId": "P:System.Drawing.Pens.Wheat", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L304C32-L304C63" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L304C32-L304C63" }, { "DocsId": "P:System.Drawing.Pens.White", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L305C32-L305C63" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L305C32-L305C63" }, { "DocsId": "P:System.Drawing.Pens.WhiteSmoke", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L306C37-L306C78" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L306C37-L306C78" }, { "DocsId": "P:System.Drawing.Pens.Yellow", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L308C33-L308C66" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L308C33-L308C66" }, { "DocsId": "P:System.Drawing.Pens.YellowGreen", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L309C38-L309C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L309C38-L309C81" } ], "DocsId": "T:System.Drawing.Pens", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Region.IPointer#get_Pointer", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L12C45-L12C57" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L12C45-L12C57" }, { "DocsId": "M:System.Drawing.Region.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L14C5-L19C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L14C5-L19C6" }, { "DocsId": "M:System.Drawing.Region.#ctor(System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L21C5-L27C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L21C5-L27C6" }, { "DocsId": "M:System.Drawing.Region.#ctor(System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L29C37-L31C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L29C37-L31C6" }, { "DocsId": "M:System.Drawing.Region.#ctor(System.Drawing.Drawing2D.GraphicsPath)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L33C5-L41C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L33C5-L41C6" }, { "DocsId": "M:System.Drawing.Region.#ctor(System.Drawing.Drawing2D.RegionData)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L43C5-L54C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L43C5-L54C6" }, { "DocsId": "M:System.Drawing.Region.FromHrgn(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L60C9-L62C35" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L60C9-L62C35" }, { "DocsId": "M:System.Drawing.Region.Clone", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L75C9-L77C35" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L75C9-L77C35" }, { "DocsId": "M:System.Drawing.Region.ReleaseHrgn(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L82C9-L89C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L82C9-L89C6" }, { "DocsId": "M:System.Drawing.Region.Dispose", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L93C9-L101C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L93C9-L101C6" }, { "DocsId": "M:System.Drawing.Region.Finalize", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L103C18-L103C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L103C18-L16707566C0" }, { "DocsId": "M:System.Drawing.Region.MakeInfinite", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L105C35-L105C85" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L105C35-L105C85" }, { "DocsId": "M:System.Drawing.Region.MakeEmpty", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L107C32-L107C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L107C32-L107C79" }, { "DocsId": "M:System.Drawing.Region.Intersect(System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L110C9-L110C122" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L110C9-L110C122" }, { "DocsId": "M:System.Drawing.Region.Intersect(System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L112C46-L112C73" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L112C46-L112C73" }, { "DocsId": "M:System.Drawing.Region.Intersect(System.Drawing.Drawing2D.GraphicsPath)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L116C9-L119C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L116C9-L119C6" }, { "DocsId": "M:System.Drawing.Region.Intersect(System.Drawing.Region)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L123C9-L126C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L123C9-L126C6" }, { "DocsId": "M:System.Drawing.Region.Union(System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L129C9-L129C118" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L129C9-L129C118" }, { "DocsId": "M:System.Drawing.Region.Union(System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L131C42-L131C65" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L131C42-L131C65" }, { "DocsId": "M:System.Drawing.Region.Union(System.Drawing.Drawing2D.GraphicsPath)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L135C9-L138C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L135C9-L138C6" }, { "DocsId": "M:System.Drawing.Region.Union(System.Drawing.Region)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L142C9-L145C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L142C9-L145C6" }, { "DocsId": "M:System.Drawing.Region.Xor(System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L148C9-L148C116" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L148C9-L148C116" }, { "DocsId": "M:System.Drawing.Region.Xor(System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L150C40-L150C61" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L150C40-L150C61" }, { "DocsId": "M:System.Drawing.Region.Xor(System.Drawing.Drawing2D.GraphicsPath)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L154C9-L157C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L154C9-L157C6" }, { "DocsId": "M:System.Drawing.Region.Xor(System.Drawing.Region)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L161C9-L164C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L161C9-L164C6" }, { "DocsId": "M:System.Drawing.Region.Exclude(System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L167C9-L167C120" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L167C9-L167C120" }, { "DocsId": "M:System.Drawing.Region.Exclude(System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L169C44-L169C69" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L169C44-L169C69" }, { "DocsId": "M:System.Drawing.Region.Exclude(System.Drawing.Drawing2D.GraphicsPath)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L173C9-L176C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L173C9-L176C6" }, { "DocsId": "M:System.Drawing.Region.Exclude(System.Drawing.Region)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L180C9-L183C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L180C9-L183C6" }, { "DocsId": "M:System.Drawing.Region.Complement(System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L186C9-L186C123" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L186C9-L186C123" }, { "DocsId": "M:System.Drawing.Region.Complement(System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L188C47-L188C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L188C47-L188C75" }, { "DocsId": "M:System.Drawing.Region.Complement(System.Drawing.Drawing2D.GraphicsPath)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L192C9-L195C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L192C9-L195C6" }, { "DocsId": "M:System.Drawing.Region.Complement(System.Drawing.Region)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L199C9-L202C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L199C9-L202C6" }, { "DocsId": "M:System.Drawing.Region.Translate(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L204C50-L204C112" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L204C50-L204C112" }, { "DocsId": "M:System.Drawing.Region.Translate(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L206C46-L206C70" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L206C46-L206C70" }, { "DocsId": "M:System.Drawing.Region.Transform(System.Drawing.Drawing2D.Matrix)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L210C9-L214C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L210C9-L214C6" }, { "DocsId": "M:System.Drawing.Region.GetBounds(System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L218C9-L222C23" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L218C9-L222C23" }, { "DocsId": "M:System.Drawing.Region.GetHrgn(System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L227C9-L231C21" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L227C9-L231C21" }, { "DocsId": "M:System.Drawing.Region.IsEmpty(System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L236C9-L240C24" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L236C9-L240C24" }, { "DocsId": "M:System.Drawing.Region.IsInfinite(System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L245C9-L248C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L245C9-L248C27" }, { "DocsId": "M:System.Drawing.Region.Equals(System.Drawing.Region,System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L253C9-L259C24" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L253C9-L259C24" }, { "DocsId": "M:System.Drawing.Region.GetRegionData", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L265C9-L276C43" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L265C9-L276C43" }, { "DocsId": "M:System.Drawing.Region.IsVisible(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L279C48-L279C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L279C48-L279C81" }, { "DocsId": "M:System.Drawing.Region.IsVisible(System.Drawing.PointF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L281C44-L281C66" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L281C44-L281C66" }, { "DocsId": "M:System.Drawing.Region.IsVisible(System.Single,System.Single,System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L283C61-L283C91" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L283C61-L283C91" }, { "DocsId": "M:System.Drawing.Region.IsVisible(System.Drawing.PointF,System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L288C9-L296C26" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L288C9-L296C26" }, { "DocsId": "M:System.Drawing.Region.IsVisible(System.Single,System.Single,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L299C75-L299C127" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L299C75-L299C127" }, { "DocsId": "M:System.Drawing.Region.IsVisible(System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L301C47-L301C68" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L301C47-L301C68" }, { "DocsId": "M:System.Drawing.Region.IsVisible(System.Single,System.Single,System.Single,System.Single,System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L303C88-L303C137" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L303C88-L303C137" }, { "DocsId": "M:System.Drawing.Region.IsVisible(System.Drawing.RectangleF,System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L308C9-L315C26" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L308C9-L315C26" }, { "DocsId": "M:System.Drawing.Region.IsVisible(System.Int32,System.Int32,System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L318C57-L318C86" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L318C57-L318C86" }, { "DocsId": "M:System.Drawing.Region.IsVisible(System.Drawing.Point)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L320C43-L320C65" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L320C43-L320C65" }, { "DocsId": "M:System.Drawing.Region.IsVisible(System.Drawing.Point,System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L322C56-L322C83" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L322C56-L322C83" }, { "DocsId": "M:System.Drawing.Region.IsVisible(System.Int32,System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L324C67-L324C118" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L324C67-L324C118" }, { "DocsId": "M:System.Drawing.Region.IsVisible(System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L326C46-L326C67" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L326C46-L326C67" }, { "DocsId": "M:System.Drawing.Region.IsVisible(System.Int32,System.Int32,System.Int32,System.Int32,System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L328C80-L328C128" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L328C80-L328C128" }, { "DocsId": "M:System.Drawing.Region.IsVisible(System.Drawing.Rectangle,System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L330C59-L330C89" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L330C59-L330C89" }, { "DocsId": "M:System.Drawing.Region.GetRegionScans(System.Drawing.Drawing2D.Matrix)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L334C9-L359C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L334C9-L359C27" }, { "DocsId": "P:System.Drawing.Region.IPointer#Pointer", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L12C45-L12C57" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L12C45-L12C57" } ], "DocsId": "T:System.Drawing.Region", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.RotateFlipType.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" }, { "DocsId": "F:System.Drawing.RotateFlipType.RotateNoneFlipNone", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" }, { "DocsId": "F:System.Drawing.RotateFlipType.Rotate90FlipNone", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" }, { "DocsId": "F:System.Drawing.RotateFlipType.Rotate180FlipNone", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" }, { "DocsId": "F:System.Drawing.RotateFlipType.Rotate270FlipNone", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" }, { "DocsId": "F:System.Drawing.RotateFlipType.RotateNoneFlipX", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" }, { "DocsId": "F:System.Drawing.RotateFlipType.Rotate90FlipX", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" }, { "DocsId": "F:System.Drawing.RotateFlipType.Rotate180FlipX", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" }, { "DocsId": "F:System.Drawing.RotateFlipType.Rotate270FlipX", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" }, { "DocsId": "F:System.Drawing.RotateFlipType.RotateNoneFlipY", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" }, { "DocsId": "F:System.Drawing.RotateFlipType.Rotate90FlipY", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" }, { "DocsId": "F:System.Drawing.RotateFlipType.Rotate180FlipY", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" }, { "DocsId": "F:System.Drawing.RotateFlipType.Rotate270FlipY", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" }, { "DocsId": "F:System.Drawing.RotateFlipType.RotateNoneFlipXY", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" }, { "DocsId": "F:System.Drawing.RotateFlipType.Rotate90FlipXY", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" }, { "DocsId": "F:System.Drawing.RotateFlipType.Rotate180FlipXY", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" }, { "DocsId": "F:System.Drawing.RotateFlipType.Rotate270FlipXY", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" } ], "DocsId": "T:System.Drawing.RotateFlipType", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.SolidBrush.#ctor(System.Drawing.Color)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SolidBrush.cs#L11C5-L26C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SolidBrush.cs#L11C5-L26C6" }, { "DocsId": "M:System.Drawing.SolidBrush.Clone", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SolidBrush.cs#L39C9-L43C58" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SolidBrush.cs#L39C9-L43C58" }, { "DocsId": "M:System.Drawing.SolidBrush.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SolidBrush.cs#L48C9-L58C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SolidBrush.cs#L48C9-L58C6" }, { "DocsId": "M:System.Drawing.SolidBrush.System#Drawing#Internal#ISystemColorTracker#OnSystemColorChanged", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SolidBrush.cs#L107C9-L111C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SolidBrush.cs#L107C9-L111C6" }, { "DocsId": "P:System.Drawing.SolidBrush.Color", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SolidBrush.cs#L64C13-L73C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SolidBrush.cs#L64C13-L73C27" } ], "DocsId": "T:System.Drawing.SolidBrush", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SolidBrush.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SolidBrush.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.StockIconId.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.DocumentNoAssociation", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.DocumentWithAssociation", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.Application", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.Folder", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.FolderOpen", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.Drive525", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.Drive35", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.DriveRemovable", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.DriveFixed", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.DriveNet", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.DriveNetDisabled", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.DriveCD", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.DriveRam", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.World", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.Server", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.Printer", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MyNetwork", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.Find", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.Help", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.Share", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.Link", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.SlowFile", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.Recycler", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.RecyclerFull", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MediaCDAudio", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.Lock", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.AutoList", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.PrinterNet", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.ServerShare", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.PrinterFax", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.PrinterFaxNet", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.PrinterFile", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.Stack", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MediaSVCD", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.StuffedFolder", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.DriveUnknown", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.DriveDVD", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MediaDVD", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MediaDVDRAM", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MediaDVDRW", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MediaDVDR", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MediaDVDROM", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MediaCDAudioPlus", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MediaCDRW", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MediaCDR", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MediaCDBurn", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MediaBlankCD", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MediaCDROM", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.AudioFiles", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.ImageFiles", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.VideoFiles", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MixedFiles", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.FolderBack", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.FolderFront", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.Shield", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.Warning", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.Info", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.Error", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.Key", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.Software", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.Rename", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.Delete", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MediaAudioDVD", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MediaMovieDVD", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MediaEnhancedCD", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MediaEnhancedDVD", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MediaHDDVD", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MediaBluRay", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MediaVCD", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MediaDVDPlusR", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MediaDVDPlusRW", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.DesktopPC", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MobilePC", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.Users", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MediaSmartMedia", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MediaCompactFlash", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.DeviceCellPhone", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.DeviceCamera", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.DeviceVideoCamera", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.DeviceAudioPlayer", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.NetworkConnect", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.Internet", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.ZipFile", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.Settings", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.DriveHDDVD", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.DriveBD", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MediaHDDVDROM", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MediaHDDVDR", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MediaHDDVDRAM", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MediaBDROM", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MediaBDR", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MediaBDRE", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.ClusteredDrive", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" } ], "DocsId": "T:System.Drawing.StockIconId", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.StockIconOptions.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconOptions.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconOptions.cs" }, { "DocsId": "F:System.Drawing.StockIconOptions.Default", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconOptions.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconOptions.cs" }, { "DocsId": "F:System.Drawing.StockIconOptions.SmallIcon", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconOptions.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconOptions.cs" }, { "DocsId": "F:System.Drawing.StockIconOptions.ShellIconSize", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconOptions.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconOptions.cs" }, { "DocsId": "F:System.Drawing.StockIconOptions.LinkOverlay", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconOptions.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconOptions.cs" }, { "DocsId": "F:System.Drawing.StockIconOptions.Selected", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconOptions.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconOptions.cs" } ], "DocsId": "T:System.Drawing.StockIconOptions", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconOptions.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconOptions.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.StringAlignment.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringAlignment.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringAlignment.cs" }, { "DocsId": "F:System.Drawing.StringAlignment.Near", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringAlignment.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringAlignment.cs" }, { "DocsId": "F:System.Drawing.StringAlignment.Center", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringAlignment.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringAlignment.cs" }, { "DocsId": "F:System.Drawing.StringAlignment.Far", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringAlignment.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringAlignment.cs" } ], "DocsId": "T:System.Drawing.StringAlignment", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringAlignment.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringAlignment.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.StringDigitSubstitute.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringDigitSubstitute.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringDigitSubstitute.cs" }, { "DocsId": "F:System.Drawing.StringDigitSubstitute.User", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringDigitSubstitute.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringDigitSubstitute.cs" }, { "DocsId": "F:System.Drawing.StringDigitSubstitute.None", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringDigitSubstitute.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringDigitSubstitute.cs" }, { "DocsId": "F:System.Drawing.StringDigitSubstitute.National", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringDigitSubstitute.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringDigitSubstitute.cs" }, { "DocsId": "F:System.Drawing.StringDigitSubstitute.Traditional", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringDigitSubstitute.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringDigitSubstitute.cs" } ], "DocsId": "T:System.Drawing.StringDigitSubstitute", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringDigitSubstitute.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringDigitSubstitute.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.StringFormat.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L22C29-L24C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L22C29-L24C6" }, { "DocsId": "M:System.Drawing.StringFormat.#ctor(System.Drawing.StringFormatFlags)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L29C54-L31C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L29C54-L31C6" }, { "DocsId": "M:System.Drawing.StringFormat.#ctor(System.Drawing.StringFormatFlags,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L37C5-L42C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L37C5-L42C6" }, { "DocsId": "M:System.Drawing.StringFormat.#ctor(System.Drawing.StringFormat)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L48C5-L55C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L48C5-L55C6" }, { "DocsId": "M:System.Drawing.StringFormat.Dispose", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L62C9-L64C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L62C9-L64C6" }, { "DocsId": "M:System.Drawing.StringFormat.Clone", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L99C30-L99C52" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L99C30-L99C52" }, { "DocsId": "M:System.Drawing.StringFormat.SetMeasurableCharacterRanges(System.Drawing.CharacterRange[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L125C9-L139C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L125C9-L139C6" }, { "DocsId": "M:System.Drawing.StringFormat.SetTabStops(System.Single,System.Single[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L218C9-L237C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L218C9-L237C6" }, { "DocsId": "M:System.Drawing.StringFormat.GetTabStops(System.Single@)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L245C9-L260C29" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L245C9-L260C29" }, { "DocsId": "M:System.Drawing.StringFormat.SetDigitSubstitution(System.Int32,System.Drawing.StringDigitSubstitute)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L341C9-L347C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L341C9-L347C6" }, { "DocsId": "M:System.Drawing.StringFormat.Finalize", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L392C24-L392C49" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L392C24-L16707566C0" }, { "DocsId": "M:System.Drawing.StringFormat.ToString", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L397C42-L397C86" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L397C42-L397C86" }, { "DocsId": "P:System.Drawing.StringFormat.FormatFlags", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L109C13-L111C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L109C13-L111C27" }, { "DocsId": "P:System.Drawing.StringFormat.Alignment", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L149C13-L151C30" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L149C13-L151C30" }, { "DocsId": "P:System.Drawing.StringFormat.LineAlignment", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L173C13-L175C30" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L173C13-L175C30" }, { "DocsId": "P:System.Drawing.StringFormat.HotkeyPrefix", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L197C13-L199C33" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L197C13-L199C33" }, { "DocsId": "P:System.Drawing.StringFormat.Trimming", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L275C13-L277C29" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L275C13-L277C29" }, { "DocsId": "P:System.Drawing.StringFormat.GenericDefault", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L310C13-L311C45" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L310C13-L311C45" }, { "DocsId": "P:System.Drawing.StringFormat.GenericTypographic", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L334C13-L335C45" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L334C13-L335C45" }, { "DocsId": "P:System.Drawing.StringFormat.DigitSubstitutionMethod", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L357C13-L363C36" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L357C13-L363C36" }, { "DocsId": "P:System.Drawing.StringFormat.DigitSubstitutionLanguage", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L375C13-L377C29" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L375C13-L377C29" } ], "DocsId": "T:System.Drawing.StringFormat", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.StringFormatFlags.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringFormatFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringFormatFlags.cs" }, { "DocsId": "F:System.Drawing.StringFormatFlags.DirectionRightToLeft", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringFormatFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringFormatFlags.cs" }, { "DocsId": "F:System.Drawing.StringFormatFlags.DirectionVertical", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringFormatFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringFormatFlags.cs" }, { "DocsId": "F:System.Drawing.StringFormatFlags.FitBlackBox", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringFormatFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringFormatFlags.cs" }, { "DocsId": "F:System.Drawing.StringFormatFlags.DisplayFormatControl", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringFormatFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringFormatFlags.cs" }, { "DocsId": "F:System.Drawing.StringFormatFlags.NoFontFallback", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringFormatFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringFormatFlags.cs" }, { "DocsId": "F:System.Drawing.StringFormatFlags.MeasureTrailingSpaces", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringFormatFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringFormatFlags.cs" }, { "DocsId": "F:System.Drawing.StringFormatFlags.NoWrap", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringFormatFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringFormatFlags.cs" }, { "DocsId": "F:System.Drawing.StringFormatFlags.LineLimit", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringFormatFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringFormatFlags.cs" }, { "DocsId": "F:System.Drawing.StringFormatFlags.NoClip", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringFormatFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringFormatFlags.cs" } ], "DocsId": "T:System.Drawing.StringFormatFlags", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringFormatFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringFormatFlags.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.StringTrimming.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringTrimming.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringTrimming.cs" }, { "DocsId": "F:System.Drawing.StringTrimming.None", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringTrimming.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringTrimming.cs" }, { "DocsId": "F:System.Drawing.StringTrimming.Character", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringTrimming.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringTrimming.cs" }, { "DocsId": "F:System.Drawing.StringTrimming.Word", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringTrimming.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringTrimming.cs" }, { "DocsId": "F:System.Drawing.StringTrimming.EllipsisCharacter", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringTrimming.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringTrimming.cs" }, { "DocsId": "F:System.Drawing.StringTrimming.EllipsisWord", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringTrimming.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringTrimming.cs" }, { "DocsId": "F:System.Drawing.StringTrimming.EllipsisPath", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringTrimming.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringTrimming.cs" } ], "DocsId": "T:System.Drawing.StringTrimming", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringTrimming.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringTrimming.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.StringUnit.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringUnit.cs" }, { "DocsId": "F:System.Drawing.StringUnit.World", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringUnit.cs" }, { "DocsId": "F:System.Drawing.StringUnit.Display", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringUnit.cs" }, { "DocsId": "F:System.Drawing.StringUnit.Pixel", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringUnit.cs" }, { "DocsId": "F:System.Drawing.StringUnit.Point", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringUnit.cs" }, { "DocsId": "F:System.Drawing.StringUnit.Inch", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringUnit.cs" }, { "DocsId": "F:System.Drawing.StringUnit.Document", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringUnit.cs" }, { "DocsId": "F:System.Drawing.StringUnit.Millimeter", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringUnit.cs" }, { "DocsId": "F:System.Drawing.StringUnit.Em", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringUnit.cs" } ], "DocsId": "T:System.Drawing.StringUnit", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringUnit.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.SystemBrushes.FromSystemColor(System.Drawing.Color)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L55C9-L76C63" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L55C9-L76C63" }, { "DocsId": "P:System.Drawing.SystemBrushes.ActiveBorder", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L10C41-L10C83" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L10C41-L10C83" }, { "DocsId": "P:System.Drawing.SystemBrushes.ActiveCaption", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L11C42-L11C85" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L11C42-L11C85" }, { "DocsId": "P:System.Drawing.SystemBrushes.ActiveCaptionText", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L12C46-L12C93" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L12C46-L12C93" }, { "DocsId": "P:System.Drawing.SystemBrushes.AppWorkspace", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L13C41-L13C83" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L13C41-L13C83" }, { "DocsId": "P:System.Drawing.SystemBrushes.ButtonFace", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L15C39-L15C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L15C39-L15C79" }, { "DocsId": "P:System.Drawing.SystemBrushes.ButtonHighlight", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L16C44-L16C89" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L16C44-L16C89" }, { "DocsId": "P:System.Drawing.SystemBrushes.ButtonShadow", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L17C41-L17C83" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L17C41-L17C83" }, { "DocsId": "P:System.Drawing.SystemBrushes.Control", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L19C36-L19C73" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L19C36-L19C73" }, { "DocsId": "P:System.Drawing.SystemBrushes.ControlLightLight", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L20C46-L20C93" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L20C46-L20C93" }, { "DocsId": "P:System.Drawing.SystemBrushes.ControlLight", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L21C41-L21C83" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L21C41-L21C83" }, { "DocsId": "P:System.Drawing.SystemBrushes.ControlDark", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L22C40-L22C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L22C40-L22C81" }, { "DocsId": "P:System.Drawing.SystemBrushes.ControlDarkDark", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L23C44-L23C89" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L23C44-L23C89" }, { "DocsId": "P:System.Drawing.SystemBrushes.ControlText", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L24C40-L24C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L24C40-L24C81" }, { "DocsId": "P:System.Drawing.SystemBrushes.Desktop", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L26C36-L26C73" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L26C36-L26C73" }, { "DocsId": "P:System.Drawing.SystemBrushes.GradientActiveCaption", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L28C50-L28C101" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L28C50-L28C101" }, { "DocsId": "P:System.Drawing.SystemBrushes.GradientInactiveCaption", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L29C52-L29C105" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L29C52-L29C105" }, { "DocsId": "P:System.Drawing.SystemBrushes.GrayText", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L30C37-L30C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L30C37-L30C75" }, { "DocsId": "P:System.Drawing.SystemBrushes.Highlight", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L32C38-L32C77" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L32C38-L32C77" }, { "DocsId": "P:System.Drawing.SystemBrushes.HighlightText", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L33C42-L33C85" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L33C42-L33C85" }, { "DocsId": "P:System.Drawing.SystemBrushes.HotTrack", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L34C37-L34C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L34C37-L34C75" }, { "DocsId": "P:System.Drawing.SystemBrushes.InactiveCaption", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L36C44-L36C89" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L36C44-L36C89" }, { "DocsId": "P:System.Drawing.SystemBrushes.InactiveBorder", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L37C43-L37C87" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L37C43-L37C87" }, { "DocsId": "P:System.Drawing.SystemBrushes.InactiveCaptionText", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L38C48-L38C97" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L38C48-L38C97" }, { "DocsId": "P:System.Drawing.SystemBrushes.Info", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L39C33-L39C67" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L39C33-L39C67" }, { "DocsId": "P:System.Drawing.SystemBrushes.InfoText", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L40C37-L40C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L40C37-L40C75" }, { "DocsId": "P:System.Drawing.SystemBrushes.Menu", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L42C33-L42C67" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L42C33-L42C67" }, { "DocsId": "P:System.Drawing.SystemBrushes.MenuBar", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L43C36-L43C73" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L43C36-L43C73" }, { "DocsId": "P:System.Drawing.SystemBrushes.MenuHighlight", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L44C42-L44C85" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L44C42-L44C85" }, { "DocsId": "P:System.Drawing.SystemBrushes.MenuText", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L45C37-L45C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L45C37-L45C75" }, { "DocsId": "P:System.Drawing.SystemBrushes.ScrollBar", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L47C38-L47C77" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L47C38-L47C77" }, { "DocsId": "P:System.Drawing.SystemBrushes.Window", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L49C35-L49C71" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L49C35-L49C71" }, { "DocsId": "P:System.Drawing.SystemBrushes.WindowFrame", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L50C40-L50C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L50C40-L50C81" }, { "DocsId": "P:System.Drawing.SystemBrushes.WindowText", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L51C39-L51C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L51C39-L51C79" } ], "DocsId": "T:System.Drawing.SystemBrushes", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.SystemFonts.GetFontByName(System.String)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemFonts.cs#L15C9-L48C21" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemFonts.cs#L15C9-L48C21" }, { "DocsId": "P:System.Drawing.SystemFonts.CaptionFont", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemFonts.cs#L61C13-L69C32" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemFonts.cs#L61C13-L69C32" }, { "DocsId": "P:System.Drawing.SystemFonts.SmallCaptionFont", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemFonts.cs#L77C13-L85C34" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemFonts.cs#L77C13-L85C34" }, { "DocsId": "P:System.Drawing.SystemFonts.MenuFont", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemFonts.cs#L93C13-L101C29" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemFonts.cs#L93C13-L101C29" }, { "DocsId": "P:System.Drawing.SystemFonts.StatusFont", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemFonts.cs#L109C13-L117C31" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemFonts.cs#L109C13-L117C31" }, { "DocsId": "P:System.Drawing.SystemFonts.MessageBoxFont", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemFonts.cs#L125C13-L133C35" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemFonts.cs#L125C13-L133C35" }, { "DocsId": "P:System.Drawing.SystemFonts.IconTitleFont", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemFonts.cs#L151C13-L160C34" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemFonts.cs#L151C13-L160C34" }, { "DocsId": "P:System.Drawing.SystemFonts.DefaultFont", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemFonts.cs#L168C13-L218C32" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemFonts.cs#L168C13-L218C32" }, { "DocsId": "P:System.Drawing.SystemFonts.DialogFont", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemFonts.cs#L226C13-L258C31" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemFonts.cs#L226C13-L258C31" } ], "DocsId": "T:System.Drawing.SystemFonts", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemFonts.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemFonts.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.SystemIcons.GetStockIcon(System.Drawing.StockIconId,System.Drawing.StockIconOptions)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs#L77C9-L90C58" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs#L77C9-L90C58" }, { "DocsId": "M:System.Drawing.SystemIcons.GetStockIcon(System.Drawing.StockIconId,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs#L103C9-L127C53" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs#L103C9-L127C53" }, { "DocsId": "P:System.Drawing.SystemIcons.Application", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs#L22C39-L22C94" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs#L22C39-L22C94" }, { "DocsId": "P:System.Drawing.SystemIcons.Asterisk", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs#L24C36-L24C85" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs#L24C36-L24C85" }, { "DocsId": "P:System.Drawing.SystemIcons.Error", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs#L26C33-L26C76" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs#L26C33-L26C76" }, { "DocsId": "P:System.Drawing.SystemIcons.Exclamation", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs#L28C39-L28C94" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs#L28C39-L28C94" }, { "DocsId": "P:System.Drawing.SystemIcons.Hand", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs#L30C32-L30C73" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs#L30C32-L30C73" }, { "DocsId": "P:System.Drawing.SystemIcons.Information", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs#L32C39-L32C94" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs#L32C39-L32C94" }, { "DocsId": "P:System.Drawing.SystemIcons.Question", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs#L34C36-L34C85" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs#L34C36-L34C85" }, { "DocsId": "P:System.Drawing.SystemIcons.Warning", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs#L36C35-L36C82" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs#L36C35-L36C82" }, { "DocsId": "P:System.Drawing.SystemIcons.WinLogo", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs#L38C35-L38C82" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs#L38C35-L38C82" }, { "DocsId": "P:System.Drawing.SystemIcons.Shield", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs#L44C13-L50C29" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs#L44C13-L50C29" } ], "DocsId": "T:System.Drawing.SystemIcons", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.SystemPens.FromSystemColor(System.Drawing.Color)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L56C9-L76C53" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L56C9-L76C53" }, { "DocsId": "P:System.Drawing.SystemPens.ActiveBorder", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L10C39-L10C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L10C39-L10C81" }, { "DocsId": "P:System.Drawing.SystemPens.ActiveCaption", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L11C40-L11C83" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L11C40-L11C83" }, { "DocsId": "P:System.Drawing.SystemPens.ActiveCaptionText", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L12C44-L12C91" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L12C44-L12C91" }, { "DocsId": "P:System.Drawing.SystemPens.AppWorkspace", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L13C39-L13C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L13C39-L13C81" }, { "DocsId": "P:System.Drawing.SystemPens.ButtonFace", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L15C37-L15C77" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L15C37-L15C77" }, { "DocsId": "P:System.Drawing.SystemPens.ButtonHighlight", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L16C42-L16C87" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L16C42-L16C87" }, { "DocsId": "P:System.Drawing.SystemPens.ButtonShadow", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L18C39-L18C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L18C39-L18C81" }, { "DocsId": "P:System.Drawing.SystemPens.Control", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L20C34-L20C71" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L20C34-L20C71" }, { "DocsId": "P:System.Drawing.SystemPens.ControlText", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L21C38-L21C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L21C38-L21C79" }, { "DocsId": "P:System.Drawing.SystemPens.ControlDark", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L22C38-L22C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L22C38-L22C79" }, { "DocsId": "P:System.Drawing.SystemPens.ControlDarkDark", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L23C42-L23C87" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L23C42-L23C87" }, { "DocsId": "P:System.Drawing.SystemPens.ControlLight", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L24C39-L24C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L24C39-L24C81" }, { "DocsId": "P:System.Drawing.SystemPens.ControlLightLight", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L25C44-L25C91" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L25C44-L25C91" }, { "DocsId": "P:System.Drawing.SystemPens.Desktop", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L27C34-L27C71" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L27C34-L27C71" }, { "DocsId": "P:System.Drawing.SystemPens.GradientActiveCaption", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L29C48-L29C99" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L29C48-L29C99" }, { "DocsId": "P:System.Drawing.SystemPens.GradientInactiveCaption", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L30C50-L30C103" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L30C50-L30C103" }, { "DocsId": "P:System.Drawing.SystemPens.GrayText", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L31C35-L31C73" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L31C35-L31C73" }, { "DocsId": "P:System.Drawing.SystemPens.Highlight", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L33C36-L33C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L33C36-L33C75" }, { "DocsId": "P:System.Drawing.SystemPens.HighlightText", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L34C40-L34C83" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L34C40-L34C83" }, { "DocsId": "P:System.Drawing.SystemPens.HotTrack", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L35C35-L35C73" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L35C35-L35C73" }, { "DocsId": "P:System.Drawing.SystemPens.InactiveBorder", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L37C41-L37C85" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L37C41-L37C85" }, { "DocsId": "P:System.Drawing.SystemPens.InactiveCaption", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L38C42-L38C87" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L38C42-L38C87" }, { "DocsId": "P:System.Drawing.SystemPens.InactiveCaptionText", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L39C46-L39C95" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L39C46-L39C95" }, { "DocsId": "P:System.Drawing.SystemPens.Info", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L40C31-L40C65" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L40C31-L40C65" }, { "DocsId": "P:System.Drawing.SystemPens.InfoText", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L41C35-L41C73" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L41C35-L41C73" }, { "DocsId": "P:System.Drawing.SystemPens.Menu", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L43C31-L43C65" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L43C31-L43C65" }, { "DocsId": "P:System.Drawing.SystemPens.MenuBar", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L44C34-L44C71" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L44C34-L44C71" }, { "DocsId": "P:System.Drawing.SystemPens.MenuHighlight", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L45C40-L45C83" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L45C40-L45C83" }, { "DocsId": "P:System.Drawing.SystemPens.MenuText", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L46C35-L46C73" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L46C35-L46C73" }, { "DocsId": "P:System.Drawing.SystemPens.ScrollBar", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L48C36-L48C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L48C36-L48C75" }, { "DocsId": "P:System.Drawing.SystemPens.Window", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L50C33-L50C69" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L50C33-L50C69" }, { "DocsId": "P:System.Drawing.SystemPens.WindowFrame", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L51C38-L51C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L51C38-L51C79" }, { "DocsId": "P:System.Drawing.SystemPens.WindowText", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L52C37-L52C77" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L52C37-L52C77" } ], "DocsId": "T:System.Drawing.SystemPens", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.TextureBrush.#ctor(System.Drawing.Image)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L17C41-L19C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L17C41-L19C6" }, { "DocsId": "M:System.Drawing.TextureBrush.#ctor(System.Drawing.Image,System.Drawing.Drawing2D.WrapMode)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L21C5-L34C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L21C5-L34C6" }, { "DocsId": "M:System.Drawing.TextureBrush.#ctor(System.Drawing.Image,System.Drawing.Drawing2D.WrapMode,System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L36C5-L53C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L36C5-L53C6" }, { "DocsId": "M:System.Drawing.TextureBrush.#ctor(System.Drawing.Image,System.Drawing.Drawing2D.WrapMode,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L56C11-L58C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L56C11-L58C6" }, { "DocsId": "M:System.Drawing.TextureBrush.#ctor(System.Drawing.Image,System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L60C60-L60C90" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L60C60-L60C90" }, { "DocsId": "M:System.Drawing.TextureBrush.#ctor(System.Drawing.Image,System.Drawing.RectangleF,System.Drawing.Imaging.ImageAttributes)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L62C5-L79C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L62C5-L79C6" }, { "DocsId": "M:System.Drawing.TextureBrush.#ctor(System.Drawing.Image,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L81C59-L81C89" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L81C59-L81C89" }, { "DocsId": "M:System.Drawing.TextureBrush.#ctor(System.Drawing.Image,System.Drawing.Rectangle,System.Drawing.Imaging.ImageAttributes)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L84C11-L86C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L84C11-L86C6" }, { "DocsId": "M:System.Drawing.TextureBrush.Clone", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L97C9-L100C57" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L97C9-L100C57" }, { "DocsId": "M:System.Drawing.TextureBrush.ResetTransform", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L154C9-L156C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L154C9-L156C6" }, { "DocsId": "M:System.Drawing.TextureBrush.MultiplyTransform(System.Drawing.Drawing2D.Matrix)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L158C53-L158C99" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L158C53-L158C99" }, { "DocsId": "M:System.Drawing.TextureBrush.MultiplyTransform(System.Drawing.Drawing2D.Matrix,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L162C9-L176C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L162C9-L176C6" }, { "DocsId": "M:System.Drawing.TextureBrush.TranslateTransform(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L178C59-L178C106" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L178C59-L178C106" }, { "DocsId": "M:System.Drawing.TextureBrush.TranslateTransform(System.Single,System.Single,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L182C9-L188C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L182C9-L188C6" }, { "DocsId": "M:System.Drawing.TextureBrush.ScaleTransform(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L190C55-L190C98" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L190C55-L190C98" }, { "DocsId": "M:System.Drawing.TextureBrush.ScaleTransform(System.Single,System.Single,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L194C9-L200C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L194C9-L200C6" }, { "DocsId": "M:System.Drawing.TextureBrush.RotateTransform(System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L202C49-L202C92" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L202C49-L202C92" }, { "DocsId": "M:System.Drawing.TextureBrush.RotateTransform(System.Single,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L206C9-L212C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L206C9-L212C6" }, { "DocsId": "P:System.Drawing.TextureBrush.Transform", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L107C13-L110C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L107C13-L110C27" }, { "DocsId": "P:System.Drawing.TextureBrush.WrapMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L125C13-L127C45" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L125C13-L127C45" }, { "DocsId": "P:System.Drawing.TextureBrush.Image", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L146C13-L148C51" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L146C13-L148C51" } ], "DocsId": "T:System.Drawing.TextureBrush", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.ToolboxBitmapAttribute.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs#L22C55-L24C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs#L22C55-L24C6" }, { "DocsId": "M:System.Drawing.ToolboxBitmapAttribute.#ctor(System.Type)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs#L26C45-L28C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs#L26C45-L28C6" }, { "DocsId": "M:System.Drawing.ToolboxBitmapAttribute.#ctor(System.Type,System.String)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs#L31C11-L33C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs#L31C11-L33C6" }, { "DocsId": "M:System.Drawing.ToolboxBitmapAttribute.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs#L43C9-L53C22" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs#L43C9-L53C22" }, { "DocsId": "M:System.Drawing.ToolboxBitmapAttribute.GetHashCode", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs#L56C42-L56C60" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs#L56C42-L56C60" }, { "DocsId": "M:System.Drawing.ToolboxBitmapAttribute.GetImage(System.Object)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs#L58C50-L58C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs#L58C50-L58C75" }, { "DocsId": "M:System.Drawing.ToolboxBitmapAttribute.GetImage(System.Object,System.Boolean)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs#L62C9-L67C21" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs#L62C9-L67C21" }, { "DocsId": "M:System.Drawing.ToolboxBitmapAttribute.GetImage(System.Type)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs#L70C42-L70C63" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs#L70C42-L70C63" }, { "DocsId": "M:System.Drawing.ToolboxBitmapAttribute.GetImage(System.Type,System.Boolean)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs#L72C54-L72C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs#L72C54-L72C81" }, { "DocsId": "M:System.Drawing.ToolboxBitmapAttribute.GetImage(System.Type,System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs#L76C9-L122C25" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs#L76C9-L122C25" }, { "DocsId": "M:System.Drawing.ToolboxBitmapAttribute.GetImageFromResource(System.Type,System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs#L222C9-L222C72" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs#L222C9-L222C72" }, { "DocsId": "F:System.Drawing.ToolboxBitmapAttribute.Default", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs" } ], "DocsId": "T:System.Drawing.ToolboxBitmapAttribute", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Text.FontCollection.Dispose", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Text/FontCollection.cs#L20C9-L22C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Text/FontCollection.cs#L20C9-L22C6" }, { "DocsId": "M:System.Drawing.Text.FontCollection.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Text/FontCollection.cs#L24C54-L24C55" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Text/FontCollection.cs#L24C54-L24C55" }, { "DocsId": "M:System.Drawing.Text.FontCollection.Finalize", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Text/FontCollection.cs#L61C26-L61C51" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Text/FontCollection.cs#L61C26-L16707566C0" }, { "DocsId": "P:System.Drawing.Text.FontCollection.Families", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Text/FontCollection.cs#L34C13-L57C29" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Text/FontCollection.cs#L34C13-L57C29" } ], "DocsId": "T:System.Drawing.Text.FontCollection", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Text/FontCollection.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Text/FontCollection.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Text.GenericFontFamilies.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Text/GenericFontFamilies.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Text/GenericFontFamilies.cs" }, { "DocsId": "F:System.Drawing.Text.GenericFontFamilies.Serif", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Text/GenericFontFamilies.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Text/GenericFontFamilies.cs" }, { "DocsId": "F:System.Drawing.Text.GenericFontFamilies.SansSerif", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Text/GenericFontFamilies.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Text/GenericFontFamilies.cs" }, { "DocsId": "F:System.Drawing.Text.GenericFontFamilies.Monospace", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Text/GenericFontFamilies.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Text/GenericFontFamilies.cs" } ], "DocsId": "T:System.Drawing.Text.GenericFontFamilies", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Text/GenericFontFamilies.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Text/GenericFontFamilies.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Text.HotkeyPrefix.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Text/HotkeyPrefix.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Text/HotkeyPrefix.cs" }, { "DocsId": "F:System.Drawing.Text.HotkeyPrefix.None", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Text/HotkeyPrefix.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Text/HotkeyPrefix.cs" }, { "DocsId": "F:System.Drawing.Text.HotkeyPrefix.Show", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Text/HotkeyPrefix.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Text/HotkeyPrefix.cs" }, { "DocsId": "F:System.Drawing.Text.HotkeyPrefix.Hide", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Text/HotkeyPrefix.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Text/HotkeyPrefix.cs" } ], "DocsId": "T:System.Drawing.Text.HotkeyPrefix", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Text/HotkeyPrefix.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Text/HotkeyPrefix.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Text.InstalledFontCollection.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Text/InstalledFontCollection.cs#L13C40-L18C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Text/InstalledFontCollection.cs#L13C40-L18C6" } ], "DocsId": "T:System.Drawing.Text.InstalledFontCollection", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Text/InstalledFontCollection.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Text/InstalledFontCollection.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Text.PrivateFontCollection.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Text/PrivateFontCollection.cs#L16C38-L21C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Text/PrivateFontCollection.cs#L16C38-L21C6" }, { "DocsId": "M:System.Drawing.Text.PrivateFontCollection.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Text/PrivateFontCollection.cs#L28C9-L52C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Text/PrivateFontCollection.cs#L28C9-L52C6" }, { "DocsId": "M:System.Drawing.Text.PrivateFontCollection.AddFontFile(System.String)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Text/PrivateFontCollection.cs#L59C9-L81C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Text/PrivateFontCollection.cs#L59C9-L74C6" }, { "DocsId": "M:System.Drawing.Text.PrivateFontCollection.AddMemoryFont(System.IntPtr,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Text/PrivateFontCollection.cs#L88C9-L90C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Text/PrivateFontCollection.cs#L81C9-L83C6" } ], "DocsId": "T:System.Drawing.Text.PrivateFontCollection", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Text/PrivateFontCollection.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Text/PrivateFontCollection.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Text.TextRenderingHint.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Text/TextRenderingHint.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Text/TextRenderingHint.cs" }, { "DocsId": "F:System.Drawing.Text.TextRenderingHint.SystemDefault", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Text/TextRenderingHint.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Text/TextRenderingHint.cs" }, { "DocsId": "F:System.Drawing.Text.TextRenderingHint.SingleBitPerPixelGridFit", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Text/TextRenderingHint.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Text/TextRenderingHint.cs" }, { "DocsId": "F:System.Drawing.Text.TextRenderingHint.SingleBitPerPixel", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Text/TextRenderingHint.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Text/TextRenderingHint.cs" }, { "DocsId": "F:System.Drawing.Text.TextRenderingHint.AntiAliasGridFit", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Text/TextRenderingHint.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Text/TextRenderingHint.cs" }, { "DocsId": "F:System.Drawing.Text.TextRenderingHint.AntiAlias", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Text/TextRenderingHint.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Text/TextRenderingHint.cs" }, { "DocsId": "F:System.Drawing.Text.TextRenderingHint.ClearTypeGridFit", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Text/TextRenderingHint.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Text/TextRenderingHint.cs" } ], "DocsId": "T:System.Drawing.Text.TextRenderingHint", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Text/TextRenderingHint.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Text/TextRenderingHint.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.StandardPrintController.IHandle#get_Handle", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/DefaultPrintController.cs#L17C32-L17C56" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/DefaultPrintController.cs#L17C32-L17C56" }, { "DocsId": "M:System.Drawing.Printing.StandardPrintController.OnStartPrint(System.Drawing.Printing.PrintDocument,System.Drawing.Printing.PrintEventArgs)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/DefaultPrintController.cs#L26C9-L63C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/DefaultPrintController.cs#L26C9-L63C6" }, { "DocsId": "M:System.Drawing.Printing.StandardPrintController.OnStartPage(System.Drawing.Printing.PrintDocument,System.Drawing.Printing.PrintPageEventArgs)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/DefaultPrintController.cs#L76C9-L106C70" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/DefaultPrintController.cs#L76C9-L106C70" }, { "DocsId": "M:System.Drawing.Printing.StandardPrintController.OnEndPage(System.Drawing.Printing.PrintDocument,System.Drawing.Printing.PrintPageEventArgs)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/DefaultPrintController.cs#L118C13-L131C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/DefaultPrintController.cs#L118C13-L131C6" }, { "DocsId": "M:System.Drawing.Printing.StandardPrintController.OnEndPrint(System.Drawing.Printing.PrintDocument,System.Drawing.Printing.PrintEventArgs)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/DefaultPrintController.cs#L140C9-L156C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/DefaultPrintController.cs#L140C9-L156C6" }, { "DocsId": "M:System.Drawing.Printing.StandardPrintController.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/DefaultPrintController.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/DefaultPrintController.cs" }, { "DocsId": "P:System.Drawing.Printing.StandardPrintController.IHandle#Handle", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/DefaultPrintController.cs#L17C32-L17C56" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/DefaultPrintController.cs#L17C32-L17C56" } ], "DocsId": "T:System.Drawing.Printing.StandardPrintController", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/DefaultPrintController.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/DefaultPrintController.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Printing.Duplex.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/Duplex.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/Duplex.cs" }, { "DocsId": "F:System.Drawing.Printing.Duplex.Default", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/Duplex.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/Duplex.cs" }, { "DocsId": "F:System.Drawing.Printing.Duplex.Simplex", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/Duplex.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/Duplex.cs" }, { "DocsId": "F:System.Drawing.Printing.Duplex.Horizontal", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/Duplex.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/Duplex.cs" }, { "DocsId": "F:System.Drawing.Printing.Duplex.Vertical", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/Duplex.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/Duplex.cs" } ], "DocsId": "T:System.Drawing.Printing.Duplex", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/Duplex.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/Duplex.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.InvalidPrinterException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/InvalidPrinterException.Core.cs#L14C91-L17C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/InvalidPrinterException.Core.cs#L14C91-L17C6" }, { "DocsId": "M:System.Drawing.Printing.InvalidPrinterException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/InvalidPrinterException.Core.cs#L24C9-L26C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/InvalidPrinterException.Core.cs#L24C9-L26C6" }, { "DocsId": "M:System.Drawing.Printing.InvalidPrinterException.#ctor(System.Drawing.Printing.PrinterSettings)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/InvalidPrinterException.cs#L17C64-L19C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/InvalidPrinterException.cs#L17C64-L19C6" } ], "DocsId": "T:System.Drawing.Printing.InvalidPrinterException", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/InvalidPrinterException.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/InvalidPrinterException.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.Margins.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L35C24-L37C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L35C24-L37C6" }, { "DocsId": "M:System.Drawing.Printing.Margins.#ctor(System.Int32,System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L42C5-L58C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L42C5-L58C6" }, { "DocsId": "M:System.Drawing.Printing.Margins.Clone", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L176C30-L176C47" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L176C30-L176C47" }, { "DocsId": "M:System.Drawing.Printing.Margins.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L178C9-L182C40" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L178C9-L182C40" }, { "DocsId": "M:System.Drawing.Printing.Margins.GetHashCode", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L187C42-L187C84" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L187C42-L187C84" }, { "DocsId": "M:System.Drawing.Printing.Margins.op_Equality(System.Drawing.Printing.Margins,System.Drawing.Printing.Margins)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L194C9-L204C30" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L194C9-L204C30" }, { "DocsId": "M:System.Drawing.Printing.Margins.op_Inequality(System.Drawing.Printing.Margins,System.Drawing.Printing.Margins)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L210C65-L210C76" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L210C65-L210C76" }, { "DocsId": "M:System.Drawing.Printing.Margins.ToString", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L215C42-L215C106" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L215C42-L215C106" }, { "DocsId": "P:System.Drawing.Printing.Margins.Left", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L65C16-L65C21" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L65C16-L65C21" }, { "DocsId": "P:System.Drawing.Printing.Margins.Right", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L79C16-L79C22" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L79C16-L79C22" }, { "DocsId": "P:System.Drawing.Printing.Margins.Top", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L93C16-L93C20" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L93C16-L93C20" }, { "DocsId": "P:System.Drawing.Printing.Margins.Bottom", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L107C16-L107C23" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L107C16-L107C23" } ], "DocsId": "T:System.Drawing.Printing.Margins", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.MarginsConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/MarginsConverter.cs#L17C12-L17C84" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/MarginsConverter.cs#L17C12-L17C84" }, { "DocsId": "M:System.Drawing.Printing.MarginsConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/MarginsConverter.cs#L20C12-L20C104" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/MarginsConverter.cs#L20C12-L20C104" }, { "DocsId": "M:System.Drawing.Printing.MarginsConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/MarginsConverter.cs#L24C9-L55C76" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/MarginsConverter.cs#L24C9-L55C76" }, { "DocsId": "M:System.Drawing.Printing.MarginsConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/MarginsConverter.cs#L67C9-L99C73" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/MarginsConverter.cs#L67C9-L99C73" }, { "DocsId": "M:System.Drawing.Printing.MarginsConverter.GetCreateInstanceSupported(System.ComponentModel.ITypeDescriptorContext)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/MarginsConverter.cs#L102C89-L102C93" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/MarginsConverter.cs#L102C89-L102C93" }, { "DocsId": "M:System.Drawing.Printing.MarginsConverter.CreateInstance(System.ComponentModel.ITypeDescriptorContext,System.Collections.IDictionary)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/MarginsConverter.cs#L106C9-L115C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/MarginsConverter.cs#L106C9-L115C81" }, { "DocsId": "M:System.Drawing.Printing.MarginsConverter.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/MarginsConverter.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/MarginsConverter.cs" } ], "DocsId": "T:System.Drawing.Printing.MarginsConverter", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/MarginsConverter.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/MarginsConverter.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.PageSettings.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L22C29-L24C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L22C29-L24C6" }, { "DocsId": "M:System.Drawing.Printing.PageSettings.#ctor(System.Drawing.Printing.PrinterSettings)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L12C5-L33C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L12C5-L33C6" }, { "DocsId": "M:System.Drawing.Printing.PageSettings.Clone", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L216C9-L218C23" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L216C9-L218C23" }, { "DocsId": "M:System.Drawing.Printing.PageSettings.CopyToHdevmode(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L226C9-L340C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L226C9-L340C6" }, { "DocsId": "M:System.Drawing.Printing.PageSettings.SetHdevmode(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L473C9-L495C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L473C9-L495C6" }, { "DocsId": "M:System.Drawing.Printing.PageSettings.ToString", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L498C9-L498C182" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L498C9-L498C182" }, { "DocsId": "P:System.Drawing.Printing.PageSettings.Bounds", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L42C13-L46C31" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L42C13-L46C31" }, { "DocsId": "P:System.Drawing.Printing.PageSettings.Color", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L55C16-L57C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L55C16-L57C27" }, { "DocsId": "P:System.Drawing.Printing.PageSettings.HardMarginX", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L68C13-L73C10" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L68C13-L73C10" }, { "DocsId": "P:System.Drawing.Printing.PageSettings.HardMarginY", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L83C13-L88C10" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L83C13-L88C10" }, { "DocsId": "P:System.Drawing.Printing.PageSettings.Landscape", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L96C16-L98C31" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L96C16-L98C31" }, { "DocsId": "P:System.Drawing.Printing.PageSettings.Margins", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L107C16-L107C24" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L107C16-L107C24" }, { "DocsId": "P:System.Drawing.Printing.PageSettings.PaperSize", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L116C16-L116C42" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L116C16-L116C42" }, { "DocsId": "P:System.Drawing.Printing.PageSettings.PaperSource", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L127C13-L140C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L127C13-L140C27" }, { "DocsId": "P:System.Drawing.Printing.PageSettings.PrintableArea", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L152C13-L175C10" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L152C13-L175C10" }, { "DocsId": "P:System.Drawing.Printing.PageSettings.PrinterResolution", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L185C13-L197C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L185C13-L197C27" }, { "DocsId": "P:System.Drawing.Printing.PageSettings.PrinterSettings", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L207C16-L207C32" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L207C16-L207C32" } ], "DocsId": "T:System.Drawing.Printing.PageSettings", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Printing.PaperKind.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Custom", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Letter", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Legal", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.A4", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.CSheet", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.DSheet", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.ESheet", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.LetterSmall", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Tabloid", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Ledger", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Statement", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Executive", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.A3", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.A4Small", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.A5", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.B4", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.B5", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Folio", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Quarto", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Standard10x14", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Standard11x17", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Note", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Number9Envelope", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Number10Envelope", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Number11Envelope", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Number12Envelope", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Number14Envelope", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.DLEnvelope", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.C5Envelope", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.C3Envelope", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.C4Envelope", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.C6Envelope", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.C65Envelope", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.B4Envelope", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.B5Envelope", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.B6Envelope", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.ItalyEnvelope", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.MonarchEnvelope", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.PersonalEnvelope", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.USStandardFanfold", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.GermanStandardFanfold", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.GermanLegalFanfold", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.IsoB4", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.JapanesePostcard", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Standard9x11", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Standard10x11", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Standard15x11", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.InviteEnvelope", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.LetterExtra", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.LegalExtra", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.TabloidExtra", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.A4Extra", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.LetterTransverse", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.A4Transverse", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.LetterExtraTransverse", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.APlus", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.BPlus", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.LetterPlus", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.A4Plus", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.A5Transverse", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.B5Transverse", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.A3Extra", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.A5Extra", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.B5Extra", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.A2", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.A3Transverse", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.A3ExtraTransverse", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.JapaneseDoublePostcard", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.A6", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.JapaneseEnvelopeKakuNumber2", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.JapaneseEnvelopeKakuNumber3", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.JapaneseEnvelopeChouNumber3", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.JapaneseEnvelopeChouNumber4", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.LetterRotated", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.A3Rotated", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.A4Rotated", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.A5Rotated", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.B4JisRotated", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.B5JisRotated", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.JapanesePostcardRotated", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.JapaneseDoublePostcardRotated", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.A6Rotated", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.JapaneseEnvelopeKakuNumber2Rotated", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.JapaneseEnvelopeKakuNumber3Rotated", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.JapaneseEnvelopeChouNumber3Rotated", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.JapaneseEnvelopeChouNumber4Rotated", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.B6Jis", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.B6JisRotated", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Standard12x11", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.JapaneseEnvelopeYouNumber4", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.JapaneseEnvelopeYouNumber4Rotated", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Prc16K", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Prc32K", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Prc32KBig", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.PrcEnvelopeNumber1", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.PrcEnvelopeNumber2", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.PrcEnvelopeNumber3", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.PrcEnvelopeNumber4", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.PrcEnvelopeNumber5", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.PrcEnvelopeNumber6", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.PrcEnvelopeNumber7", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.PrcEnvelopeNumber8", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.PrcEnvelopeNumber9", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.PrcEnvelopeNumber10", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Prc16KRotated", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Prc32KRotated", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Prc32KBigRotated", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.PrcEnvelopeNumber1Rotated", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.PrcEnvelopeNumber2Rotated", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.PrcEnvelopeNumber3Rotated", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.PrcEnvelopeNumber4Rotated", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.PrcEnvelopeNumber5Rotated", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.PrcEnvelopeNumber6Rotated", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.PrcEnvelopeNumber7Rotated", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.PrcEnvelopeNumber8Rotated", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.PrcEnvelopeNumber9Rotated", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.PrcEnvelopeNumber10Rotated", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" } ], "DocsId": "T:System.Drawing.Printing.PaperKind", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.PaperSize.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSize.cs#L24C5-L29C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSize.cs#L24C5-L29C6" }, { "DocsId": "M:System.Drawing.Printing.PaperSize.#ctor(System.String,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSize.cs#L42C5-L48C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSize.cs#L42C5-L48C6" }, { "DocsId": "M:System.Drawing.Printing.PaperSize.ToString", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSize.cs#L119C42-L119C188" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSize.cs#L119C42-L119C188" }, { "DocsId": "P:System.Drawing.Printing.PaperSize.Height", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSize.cs#L55C16-L55C23" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSize.cs#L55C16-L55C23" }, { "DocsId": "P:System.Drawing.Printing.PaperSize.Kind", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSize.cs#L71C12-L74C31" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSize.cs#L71C12-L74C31" }, { "DocsId": "P:System.Drawing.Printing.PaperSize.PaperName", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSize.cs#L81C16-L81C21" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSize.cs#L81C16-L81C21" }, { "DocsId": "P:System.Drawing.Printing.PaperSize.RawKind", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSize.cs#L98C16-L98C26" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSize.cs#L98C16-L98C26" }, { "DocsId": "P:System.Drawing.Printing.PaperSize.Width", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSize.cs#L107C16-L107C22" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSize.cs#L107C16-L107C22" } ], "DocsId": "T:System.Drawing.Printing.PaperSize", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSize.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSize.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.PaperSource.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSource.cs#L17C5-L21C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSource.cs#L17C5-L21C6" }, { "DocsId": "M:System.Drawing.Printing.PaperSource.ToString", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSource.cs#L52C42-L52C83" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSource.cs#L52C42-L52C83" }, { "DocsId": "P:System.Drawing.Printing.PaperSource.Kind", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSource.cs#L32C36-L32C101" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSource.cs#L32C36-L32C101" }, { "DocsId": "P:System.Drawing.Printing.PaperSource.RawKind", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSource.cs#L39C16-L39C26" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSource.cs#L39C16-L39C26" }, { "DocsId": "P:System.Drawing.Printing.PaperSource.SourceName", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSource.cs#L48C16-L48C21" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSource.cs#L48C16-L48C21" } ], "DocsId": "T:System.Drawing.Printing.PaperSource", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSource.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSource.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Printing.PaperSourceKind.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperSourceKind.Upper", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperSourceKind.Lower", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperSourceKind.Middle", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperSourceKind.Manual", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperSourceKind.Envelope", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperSourceKind.ManualFeed", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperSourceKind.AutomaticFeed", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperSourceKind.TractorFeed", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperSourceKind.SmallFormat", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperSourceKind.LargeFormat", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperSourceKind.LargeCapacity", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperSourceKind.Cassette", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperSourceKind.FormSource", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperSourceKind.Custom", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" } ], "DocsId": "T:System.Drawing.Printing.PaperSourceKind", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.PreviewPageInfo.#ctor(System.Drawing.Image,System.Drawing.Size)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPageInfo.cs#L14C5-L23C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPageInfo.cs#L14C5-L23C6" }, { "DocsId": "P:System.Drawing.Printing.PreviewPageInfo.Image", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPageInfo.cs#L28C27-L28C33" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPageInfo.cs#L28C27-L28C33" }, { "DocsId": "P:System.Drawing.Printing.PreviewPageInfo.PhysicalSize", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPageInfo.cs#L33C33-L33C46" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPageInfo.cs#L33C33-L33C46" } ], "DocsId": "T:System.Drawing.Printing.PreviewPageInfo", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPageInfo.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPageInfo.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.PreviewPrintController.GetPreviewPageInfo", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPrintController.cs#L21C54-L21C64" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPrintController.cs#L21C54-L21C64" }, { "DocsId": "M:System.Drawing.Printing.PreviewPrintController.OnStartPrint(System.Drawing.Printing.PrintDocument,System.Drawing.Printing.PrintEventArgs)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPrintController.cs#L28C9-L38C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPrintController.cs#L28C9-L38C6" }, { "DocsId": "M:System.Drawing.Printing.PreviewPrintController.OnStartPage(System.Drawing.Printing.PrintDocument,System.Drawing.Printing.PrintPageEventArgs)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPrintController.cs#L45C9-L100C26" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPrintController.cs#L45C9-L100C26" }, { "DocsId": "M:System.Drawing.Printing.PreviewPrintController.OnEndPage(System.Drawing.Printing.PrintDocument,System.Drawing.Printing.PrintPageEventArgs)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPrintController.cs#L105C9-L108C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPrintController.cs#L105C9-L108C6" }, { "DocsId": "M:System.Drawing.Printing.PreviewPrintController.OnEndPrint(System.Drawing.Printing.PrintDocument,System.Drawing.Printing.PrintEventArgs)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPrintController.cs#L112C9-L115C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPrintController.cs#L112C9-L115C6" }, { "DocsId": "M:System.Drawing.Printing.PreviewPrintController.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPrintController.cs#L15C5-L15C55" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPrintController.cs#L15C5-L15C55" }, { "DocsId": "P:System.Drawing.Printing.PreviewPrintController.IsPreview", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPrintController.cs#L17C39-L17C43" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPrintController.cs#L17C39-L17C43" }, { "DocsId": "P:System.Drawing.Printing.PreviewPrintController.UseAntiAlias", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPrintController.cs#L19C40-L19C44" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPrintController.cs#L19C40-L19C44" } ], "DocsId": "T:System.Drawing.Printing.PreviewPrintController", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPrintController.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPrintController.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Printing.PrintAction.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintAction.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintAction.cs" }, { "DocsId": "F:System.Drawing.Printing.PrintAction.PrintToFile", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintAction.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintAction.cs" }, { "DocsId": "F:System.Drawing.Printing.PrintAction.PrintToPreview", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintAction.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintAction.cs" }, { "DocsId": "F:System.Drawing.Printing.PrintAction.PrintToPrinter", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintAction.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintAction.cs" } ], "DocsId": "T:System.Drawing.Printing.PrintAction", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintAction.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintAction.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.PrintController.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintController.cs#L13C5-L15C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintController.cs#L13C5-L15C6" }, { "DocsId": "M:System.Drawing.Printing.PrintController.OnStartPage(System.Drawing.Printing.PrintDocument,System.Drawing.Printing.PrintPageEventArgs)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintController.cs#L25C91-L25C95" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintController.cs#L25C91-L25C95" }, { "DocsId": "M:System.Drawing.Printing.PrintController.OnEndPage(System.Drawing.Printing.PrintDocument,System.Drawing.Printing.PrintPageEventArgs)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintController.cs#L32C5-L32C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintController.cs#L32C5-L32C6" }, { "DocsId": "M:System.Drawing.Printing.PrintController.OnStartPrint(System.Drawing.Printing.PrintDocument,System.Drawing.Printing.PrintEventArgs)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintController.cs#L218C9-L219C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintController.cs#L218C9-L219C6" }, { "DocsId": "M:System.Drawing.Printing.PrintController.OnEndPrint(System.Drawing.Printing.PrintDocument,System.Drawing.Printing.PrintEventArgs)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintController.cs#L224C81-L224C101" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintController.cs#L224C81-L224C101" }, { "DocsId": "P:System.Drawing.Printing.PrintController.IsPreview", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintController.cs#L20C38-L20C43" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintController.cs#L20C38-L20C43" } ], "DocsId": "T:System.Drawing.Printing.PrintController", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintController.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintController.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.PrintDocument.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L14C5-L32C88" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L14C5-L32C88" }, { "DocsId": "M:System.Drawing.Printing.PrintDocument.OnBeginPrint(System.Drawing.Printing.PrintEventArgs)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L149C71-L149C106" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L149C71-L149C106" }, { "DocsId": "M:System.Drawing.Printing.PrintDocument.OnEndPrint(System.Drawing.Printing.PrintEventArgs)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L154C69-L154C102" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L154C69-L154C102" }, { "DocsId": "M:System.Drawing.Printing.PrintDocument.OnPrintPage(System.Drawing.Printing.PrintPageEventArgs)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L159C74-L159C108" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L159C74-L159C108" }, { "DocsId": "M:System.Drawing.Printing.PrintDocument.OnQueryPageSettings(System.Drawing.Printing.QueryPageSettingsEventArgs)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L164C90-L164C120" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L164C90-L164C120" }, { "DocsId": "M:System.Drawing.Printing.PrintDocument.Print", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L171C9-L173C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L171C9-L173C6" }, { "DocsId": "M:System.Drawing.Printing.PrintDocument.ToString", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L178C42-L178C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L178C42-L178C75" }, { "DocsId": "E:System.Drawing.Printing.PrintDocument.BeginPrint", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L115C16-L115C43" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L115C16-L115C43" }, { "DocsId": "E:System.Drawing.Printing.PrintDocument.EndPrint", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L125C16-L125C41" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L125C16-L125C41" }, { "DocsId": "E:System.Drawing.Printing.PrintDocument.PrintPage", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L135C16-L135C42" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L135C16-L135C42" }, { "DocsId": "E:System.Drawing.Printing.PrintDocument.QueryPageSettings", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L142C16-L142C38" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L142C16-L142C38" }, { "DocsId": "P:System.Drawing.Printing.PrintDocument.DefaultPageSettings", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L42C15-L42C43" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L42C15-L42C43" }, { "DocsId": "P:System.Drawing.Printing.PrintDocument.DocumentName", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L58C16-L58C29" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L58C16-L58C29" }, { "DocsId": "P:System.Drawing.Printing.PrintDocument.OriginAtMargins", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L71C16-L71C32" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L71C16-L71C32" }, { "DocsId": "P:System.Drawing.Printing.PrintDocument.PrintController", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L83C16-L83C66" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L83C16-L83C66" }, { "DocsId": "P:System.Drawing.Printing.PrintDocument.PrinterSettings", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L95C16-L95C32" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L95C16-L95C32" } ], "DocsId": "T:System.Drawing.Printing.PrintDocument", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.PrinterResolution.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolution.cs#L18C5-L21C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolution.cs#L18C5-L21C6" }, { "DocsId": "M:System.Drawing.Printing.PrinterResolution.ToString", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolution.cs#L57C42-L59C74" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolution.cs#L57C42-L59C74" }, { "DocsId": "P:System.Drawing.Printing.PrinterResolution.Kind", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolution.cs#L35C16-L35C21" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolution.cs#L35C16-L35C21" }, { "DocsId": "P:System.Drawing.Printing.PrinterResolution.X", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolution.cs#L50C20-L50C24" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolution.cs#L50C20-L50C24" }, { "DocsId": "P:System.Drawing.Printing.PrinterResolution.Y", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolution.cs#L55C20-L55C24" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolution.cs#L55C20-L55C24" } ], "DocsId": "T:System.Drawing.Printing.PrinterResolution", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolution.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolution.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Printing.PrinterResolutionKind.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolutionKind.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolutionKind.cs" }, { "DocsId": "F:System.Drawing.Printing.PrinterResolutionKind.High", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolutionKind.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolutionKind.cs" }, { "DocsId": "F:System.Drawing.Printing.PrinterResolutionKind.Medium", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolutionKind.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolutionKind.cs" }, { "DocsId": "F:System.Drawing.Printing.PrinterResolutionKind.Low", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolutionKind.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolutionKind.cs" }, { "DocsId": "F:System.Drawing.Printing.PrinterResolutionKind.Draft", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolutionKind.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolutionKind.cs" }, { "DocsId": "F:System.Drawing.Printing.PrinterResolutionKind.Custom", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolutionKind.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolutionKind.cs" } ], "DocsId": "T:System.Drawing.Printing.PrinterResolutionKind", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolutionKind.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolutionKind.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.PrinterSettings.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L19C5-L42C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L19C5-L42C6" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.IsDirectPrintingSupported(System.Drawing.Imaging.ImageFormat)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L332C9-L339C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L332C9-L339C6" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.IsDirectPrintingSupported(System.Drawing.Image)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L372C9-L406C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L372C9-L406C6" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.Clone", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L435C9-L437C22" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L435C9-L437C22" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.CreateMeasurementGraphics", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L490C52-L490C98" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L490C52-L490C98" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.CreateMeasurementGraphics(System.Boolean)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L495C9-L502C18" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L495C9-L502C18" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.CreateMeasurementGraphics(System.Drawing.Printing.PageSettings)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L508C9-L511C18" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L508C9-L511C18" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.CreateMeasurementGraphics(System.Drawing.Printing.PageSettings,System.Boolean)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L517C9-L524C18" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L517C9-L524C18" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.GetHdevmode", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L601C9-L603C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L601C9-L603C27" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.GetHdevmode(System.Drawing.Printing.PageSettings)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L710C9-L713C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L710C9-L713C27" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.GetHdevnames", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L724C9-L757C23" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L724C9-L757C23" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.SetHdevmode(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L986C9-L1023C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L986C9-L1023C6" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.SetHdevnames(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1030C9-L1044C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1030C9-L1044C6" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.ToString", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1047C9-L1047C215" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1047C9-L1047C215" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.CanDuplex", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L47C30-L47C92" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L47C30-L47C92" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.Copies", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L54C16-L54C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L54C16-L54C75" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.Collate", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L71C16-L73C29" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L71C16-L73C29" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.DefaultPageSettings", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L80C48-L80C68" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L80C48-L80C68" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.Duplex", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L91C16-L91C129" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L91C16-L91C129" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.FromPage", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L108C16-L108C25" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L108C16-L108C25" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.InstalledPrinters", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L133C13-L180C10" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L133C13-L180C10" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.IsDefaultPrinter", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L186C37-L186C100" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L186C37-L186C100" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.IsPlotter", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L191C30-L191C99" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L191C30-L191C99" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.IsValid", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L196C28-L196C91" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L196C28-L196C91" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.LandscapeAngle", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L201C34-L201C113" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L201C34-L201C113" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.MaximumCopies", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L206C33-L206C107" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L206C33-L206C107" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.MaximumPage", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L213C16-L213C24" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L213C16-L213C24" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.MinimumPage", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L230C16-L230C24" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L230C16-L230C24" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.PrintFileName", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L249C16-L249C26" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L249C16-L249C26" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.PaperSizes", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L264C46-L264C67" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L264C46-L264C67" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.PaperSources", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L269C50-L269C73" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L269C50-L269C73" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.PrintRange", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L283C16-L283C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L283C16-L283C27" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.PrintToFile", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L298C31-L298C35" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L298C31-L298C35" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.PrinterName", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L305C16-L305C35" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L305C16-L305C35" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.PrinterResolutions", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L324C62-L324C91" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L324C62-L324C91" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.SupportsColor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L411C34-L411C101" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L411C34-L411C101" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.ToPage", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L418C16-L418C23" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L418C16-L418C23" }, { "DocsId": "T:System.Drawing.Printing.PrinterSettings.PaperSizeCollection", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs" }, { "DocsId": "T:System.Drawing.Printing.PrinterSettings.PaperSourceCollection", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs" }, { "DocsId": "T:System.Drawing.Printing.PrinterSettings.PrinterResolutionCollection", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs" }, { "DocsId": "T:System.Drawing.Printing.PrinterSettings.StringCollection", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs" } ], "DocsId": "T:System.Drawing.Printing.PrinterSettings", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Printing.PrinterUnit.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnit.cs" }, { "DocsId": "F:System.Drawing.Printing.PrinterUnit.Display", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnit.cs" }, { "DocsId": "F:System.Drawing.Printing.PrinterUnit.ThousandthsOfAnInch", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnit.cs" }, { "DocsId": "F:System.Drawing.Printing.PrinterUnit.HundredthsOfAMillimeter", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnit.cs" }, { "DocsId": "F:System.Drawing.Printing.PrinterUnit.TenthsOfAMillimeter", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnit.cs" } ], "DocsId": "T:System.Drawing.Printing.PrinterUnit", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnit.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.PrinterUnitConvert.Convert(System.Double,System.Drawing.Printing.PrinterUnit,System.Drawing.Printing.PrinterUnit)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnitConvert.cs#L20C9-L22C64" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnitConvert.cs#L20C9-L22C64" }, { "DocsId": "M:System.Drawing.Printing.PrinterUnitConvert.Convert(System.Int32,System.Drawing.Printing.PrinterUnit,System.Drawing.Printing.PrinterUnit)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnitConvert.cs#L29C9-L29C66" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnitConvert.cs#L29C9-L29C66" }, { "DocsId": "M:System.Drawing.Printing.PrinterUnitConvert.Convert(System.Drawing.Point,System.Drawing.Printing.PrinterUnit,System.Drawing.Printing.PrinterUnit)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnitConvert.cs#L35C9-L35C84" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnitConvert.cs#L35C9-L35C84" }, { "DocsId": "M:System.Drawing.Printing.PrinterUnitConvert.Convert(System.Drawing.Size,System.Drawing.Printing.PrinterUnit,System.Drawing.Printing.PrinterUnit)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnitConvert.cs#L41C9-L41C93" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnitConvert.cs#L41C9-L41C93" }, { "DocsId": "M:System.Drawing.Printing.PrinterUnitConvert.Convert(System.Drawing.Rectangle,System.Drawing.Printing.PrinterUnit,System.Drawing.Printing.PrinterUnit)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnitConvert.cs#L46C99-L50C49" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnitConvert.cs#L46C99-L50C49" }, { "DocsId": "M:System.Drawing.Printing.PrinterUnitConvert.Convert(System.Drawing.Printing.Margins,System.Drawing.Printing.PrinterUnit,System.Drawing.Printing.PrinterUnit)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnitConvert.cs#L55C95-L61C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnitConvert.cs#L55C95-L61C6" } ], "DocsId": "T:System.Drawing.Printing.PrinterUnitConvert", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnitConvert.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnitConvert.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.PrintEventArgs.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintEventArgs.cs#L16C5-L18C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintEventArgs.cs#L16C5-L18C6" }, { "DocsId": "P:System.Drawing.Printing.PrintEventArgs.PrintAction", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintEventArgs.cs#L28C38-L28C42" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintEventArgs.cs#L28C38-L28C42" } ], "DocsId": "T:System.Drawing.Printing.PrintEventArgs", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintEventArgs.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.PrintEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintEventHandler.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintEventHandler.cs" }, { "DocsId": "M:System.Drawing.Printing.PrintEventHandler.Invoke(System.Object,System.Drawing.Printing.PrintEventArgs)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintEventHandler.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintEventHandler.cs" }, { "DocsId": "M:System.Drawing.Printing.PrintEventHandler.BeginInvoke(System.Object,System.Drawing.Printing.PrintEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintEventHandler.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintEventHandler.cs" }, { "DocsId": "M:System.Drawing.Printing.PrintEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintEventHandler.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintEventHandler.cs" } ], "DocsId": "T:System.Drawing.Printing.PrintEventHandler", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintEventHandler.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintEventHandler.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.PrintPageEventArgs.#ctor(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Drawing.Printing.PageSettings)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventArgs.cs#L55C57-L20C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventArgs.cs#L55C57-L20C6" }, { "DocsId": "P:System.Drawing.Printing.PrintPageEventArgs.Cancel", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventArgs.cs#L25C26-L25C30" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventArgs.cs#L25C26-L25C30" }, { "DocsId": "P:System.Drawing.Printing.PrintPageEventArgs.Graphics", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventArgs.cs#L30C33-L30C37" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventArgs.cs#L30C33-L30C37" }, { "DocsId": "P:System.Drawing.Printing.PrintPageEventArgs.HasMorePages", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventArgs.cs#L35C32-L35C36" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventArgs.cs#L35C32-L35C36" }, { "DocsId": "P:System.Drawing.Printing.PrintPageEventArgs.MarginBounds", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventArgs.cs#L40C37-L40C41" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventArgs.cs#L40C37-L40C41" }, { "DocsId": "P:System.Drawing.Printing.PrintPageEventArgs.PageBounds", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventArgs.cs#L45C35-L45C39" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventArgs.cs#L45C35-L45C39" }, { "DocsId": "P:System.Drawing.Printing.PrintPageEventArgs.PageSettings", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventArgs.cs#L50C40-L50C44" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventArgs.cs#L50C40-L50C44" } ], "DocsId": "T:System.Drawing.Printing.PrintPageEventArgs", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventArgs.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.PrintPageEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventHandler.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventHandler.cs" }, { "DocsId": "M:System.Drawing.Printing.PrintPageEventHandler.Invoke(System.Object,System.Drawing.Printing.PrintPageEventArgs)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventHandler.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventHandler.cs" }, { "DocsId": "M:System.Drawing.Printing.PrintPageEventHandler.BeginInvoke(System.Object,System.Drawing.Printing.PrintPageEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventHandler.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventHandler.cs" }, { "DocsId": "M:System.Drawing.Printing.PrintPageEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventHandler.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventHandler.cs" } ], "DocsId": "T:System.Drawing.Printing.PrintPageEventHandler", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventHandler.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventHandler.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Printing.PrintRange.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintRange.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintRange.cs" }, { "DocsId": "F:System.Drawing.Printing.PrintRange.AllPages", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintRange.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintRange.cs" }, { "DocsId": "F:System.Drawing.Printing.PrintRange.SomePages", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintRange.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintRange.cs" }, { "DocsId": "F:System.Drawing.Printing.PrintRange.Selection", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintRange.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintRange.cs" }, { "DocsId": "F:System.Drawing.Printing.PrintRange.CurrentPage", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintRange.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintRange.cs" } ], "DocsId": "T:System.Drawing.Printing.PrintRange", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintRange.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintRange.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.QueryPageSettingsEventArgs.#ctor(System.Drawing.Printing.PageSettings)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/QueryPageSettingsEventArgs.cs#L16C68-L16C106" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/QueryPageSettingsEventArgs.cs#L16C68-L16C106" }, { "DocsId": "P:System.Drawing.Printing.QueryPageSettingsEventArgs.PageSettings", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/QueryPageSettingsEventArgs.cs#L25C13-L26C34" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/QueryPageSettingsEventArgs.cs#L25C13-L26C34" } ], "DocsId": "T:System.Drawing.Printing.QueryPageSettingsEventArgs", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/QueryPageSettingsEventArgs.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/QueryPageSettingsEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.QueryPageSettingsEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/QueryPageSettingsEventHandler.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/QueryPageSettingsEventHandler.cs" }, { "DocsId": "M:System.Drawing.Printing.QueryPageSettingsEventHandler.Invoke(System.Object,System.Drawing.Printing.QueryPageSettingsEventArgs)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/QueryPageSettingsEventHandler.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/QueryPageSettingsEventHandler.cs" }, { "DocsId": "M:System.Drawing.Printing.QueryPageSettingsEventHandler.BeginInvoke(System.Object,System.Drawing.Printing.QueryPageSettingsEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/QueryPageSettingsEventHandler.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/QueryPageSettingsEventHandler.cs" }, { "DocsId": "M:System.Drawing.Printing.QueryPageSettingsEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/QueryPageSettingsEventHandler.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/QueryPageSettingsEventHandler.cs" } ], "DocsId": "T:System.Drawing.Printing.QueryPageSettingsEventHandler", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/QueryPageSettingsEventHandler.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/QueryPageSettingsEventHandler.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Interop.LOGFONT.lfHeight", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" }, { "DocsId": "F:System.Drawing.Interop.LOGFONT.lfWidth", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" }, { "DocsId": "F:System.Drawing.Interop.LOGFONT.lfEscapement", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" }, { "DocsId": "F:System.Drawing.Interop.LOGFONT.lfOrientation", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" }, { "DocsId": "F:System.Drawing.Interop.LOGFONT.lfWeight", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" }, { "DocsId": "F:System.Drawing.Interop.LOGFONT.lfItalic", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" }, { "DocsId": "F:System.Drawing.Interop.LOGFONT.lfUnderline", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" }, { "DocsId": "F:System.Drawing.Interop.LOGFONT.lfStrikeOut", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" }, { "DocsId": "F:System.Drawing.Interop.LOGFONT.lfCharSet", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" }, { "DocsId": "F:System.Drawing.Interop.LOGFONT.lfOutPrecision", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" }, { "DocsId": "F:System.Drawing.Interop.LOGFONT.lfClipPrecision", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" }, { "DocsId": "F:System.Drawing.Interop.LOGFONT.lfQuality", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" }, { "DocsId": "F:System.Drawing.Interop.LOGFONT.lfPitchAndFamily", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" }, { "DocsId": "P:System.Drawing.Interop.LOGFONT.lfFaceName", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs#L40C37-L40C94" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs#L40C37-L40C94" }, { "DocsId": "T:System.Drawing.Interop.LOGFONT.<_lfFaceName>e__FixedBuffer", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" } ], "DocsId": "T:System.Drawing.Interop.LOGFONT", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.BitmapData.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/BitmapData.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/BitmapData.cs" }, { "DocsId": "P:System.Drawing.Imaging.BitmapData.Width", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/BitmapData.cs#L26C15-L26C29" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/BitmapData.cs#L26C15-L26C29" }, { "DocsId": "P:System.Drawing.Imaging.BitmapData.Height", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/BitmapData.cs#L35C15-L35C30" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/BitmapData.cs#L35C15-L35C30" }, { "DocsId": "P:System.Drawing.Imaging.BitmapData.Stride", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/BitmapData.cs#L44C15-L44C30" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/BitmapData.cs#L44C15-L44C30" }, { "DocsId": "P:System.Drawing.Imaging.BitmapData.PixelFormat", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/BitmapData.cs#L53C15-L53C35" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/BitmapData.cs#L53C15-L53C35" }, { "DocsId": "P:System.Drawing.Imaging.BitmapData.Scan0", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/BitmapData.cs#L95C15-L95C29" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/BitmapData.cs#L95C15-L95C29" }, { "DocsId": "P:System.Drawing.Imaging.BitmapData.Reserved", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/BitmapData.cs#L104C15-L104C32" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/BitmapData.cs#L104C15-L104C32" } ], "DocsId": "T:System.Drawing.Imaging.BitmapData", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/BitmapData.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/BitmapData.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.CachedBitmap.#ctor(System.Drawing.Bitmap,System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/CachedBitmap.cs#L39C5-L50C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/CachedBitmap.cs#L39C5-L50C6" }, { "DocsId": "M:System.Drawing.Imaging.CachedBitmap.Finalize", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/CachedBitmap.cs#L70C24-L70C49" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/CachedBitmap.cs#L70C24-L16707566C0" }, { "DocsId": "M:System.Drawing.Imaging.CachedBitmap.Dispose", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/CachedBitmap.cs#L74C9-L76C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/CachedBitmap.cs#L74C9-L76C6" } ], "DocsId": "T:System.Drawing.Imaging.CachedBitmap", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/CachedBitmap.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/CachedBitmap.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Imaging.ColorAdjustType.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorAdjustType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorAdjustType.cs" }, { "DocsId": "F:System.Drawing.Imaging.ColorAdjustType.Default", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorAdjustType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorAdjustType.cs" }, { "DocsId": "F:System.Drawing.Imaging.ColorAdjustType.Bitmap", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorAdjustType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorAdjustType.cs" }, { "DocsId": "F:System.Drawing.Imaging.ColorAdjustType.Brush", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorAdjustType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorAdjustType.cs" }, { "DocsId": "F:System.Drawing.Imaging.ColorAdjustType.Pen", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorAdjustType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorAdjustType.cs" }, { "DocsId": "F:System.Drawing.Imaging.ColorAdjustType.Text", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorAdjustType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorAdjustType.cs" }, { "DocsId": "F:System.Drawing.Imaging.ColorAdjustType.Count", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorAdjustType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorAdjustType.cs" }, { "DocsId": "F:System.Drawing.Imaging.ColorAdjustType.Any", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorAdjustType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorAdjustType.cs" } ], "DocsId": "T:System.Drawing.Imaging.ColorAdjustType", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorAdjustType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorAdjustType.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Imaging.ColorChannelFlag.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorChannelFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorChannelFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ColorChannelFlag.ColorChannelC", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorChannelFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorChannelFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ColorChannelFlag.ColorChannelM", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorChannelFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorChannelFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ColorChannelFlag.ColorChannelY", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorChannelFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorChannelFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ColorChannelFlag.ColorChannelK", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorChannelFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorChannelFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ColorChannelFlag.ColorChannelLast", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorChannelFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorChannelFlags.cs" } ], "DocsId": "T:System.Drawing.Imaging.ColorChannelFlag", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorChannelFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorChannelFlags.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.ColorMap.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMap.cs#L14C5-L16C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMap.cs#L14C5-L16C6" }, { "DocsId": "P:System.Drawing.Imaging.ColorMap.OldColor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMap.cs#L21C29-L21C33" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMap.cs#L21C29-L21C33" }, { "DocsId": "P:System.Drawing.Imaging.ColorMap.NewColor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMap.cs#L26C29-L26C33" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMap.cs#L26C29-L26C33" } ], "DocsId": "T:System.Drawing.Imaging.ColorMap", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMap.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMap.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Imaging.ColorMapType.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMapType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMapType.cs" }, { "DocsId": "F:System.Drawing.Imaging.ColorMapType.Default", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMapType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMapType.cs" }, { "DocsId": "F:System.Drawing.Imaging.ColorMapType.Brush", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMapType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMapType.cs" } ], "DocsId": "T:System.Drawing.Imaging.ColorMapType", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMapType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMapType.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.ColorMatrix.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L43C5-L72C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L43C5-L72C6" }, { "DocsId": "M:System.Drawing.Imaging.ColorMatrix.#ctor(System.Single[][])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L303C5-L330C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L303C5-L330C6" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix00", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L79C16-L79C25" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L79C16-L79C25" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix01", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L88C16-L88C25" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L88C16-L88C25" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix02", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L97C16-L97C25" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L97C16-L97C25" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix03", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L106C16-L106C25" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L106C16-L106C25" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix04", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L115C16-L115C25" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L115C16-L115C25" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix10", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L124C16-L124C25" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L124C16-L124C25" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix11", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L133C16-L133C25" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L133C16-L133C25" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix12", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L142C16-L142C25" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L142C16-L142C25" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix13", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L151C16-L151C25" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L151C16-L151C25" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix14", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L160C16-L160C25" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L160C16-L160C25" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix20", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L169C16-L169C25" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L169C16-L169C25" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix21", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L178C16-L178C25" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L178C16-L178C25" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix22", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L187C16-L187C25" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L187C16-L187C25" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix23", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L196C16-L196C25" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L196C16-L196C25" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix24", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L205C16-L205C25" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L205C16-L205C25" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix30", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L214C16-L214C25" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L214C16-L214C25" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix31", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L223C16-L223C25" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L223C16-L223C25" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix32", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L232C16-L232C25" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L232C16-L232C25" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix33", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L241C16-L241C25" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L241C16-L241C25" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix34", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L250C16-L250C25" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L250C16-L250C25" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix40", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L259C16-L259C25" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L259C16-L259C25" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix41", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L268C16-L268C25" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L268C16-L268C25" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix42", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L277C16-L277C25" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L277C16-L277C25" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix43", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L286C16-L286C25" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L286C16-L286C25" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix44", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L295C16-L295C25" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L295C16-L295C25" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Item(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L355C13-L367C44" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L356C13-L368C44" } ], "DocsId": "T:System.Drawing.Imaging.ColorMatrix", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Imaging.ColorMatrixFlag.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrixFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrixFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ColorMatrixFlag.Default", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrixFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrixFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ColorMatrixFlag.SkipGrays", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrixFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrixFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ColorMatrixFlag.AltGrays", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrixFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrixFlags.cs" } ], "DocsId": "T:System.Drawing.Imaging.ColorMatrixFlag", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrixFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrixFlags.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Imaging.ColorMode.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMode.cs" }, { "DocsId": "F:System.Drawing.Imaging.ColorMode.Argb32Mode", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMode.cs" }, { "DocsId": "F:System.Drawing.Imaging.ColorMode.Argb64Mode", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMode.cs" } ], "DocsId": "T:System.Drawing.Imaging.ColorMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMode.cs" }, { "Members": [ { "DocsId": "P:System.Drawing.Imaging.ColorPalette.Flags", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorPalette.cs#L24C25-L24C31" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorPalette.cs#L20C25-L20C31" }, { "DocsId": "P:System.Drawing.Imaging.ColorPalette.Entries", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorPalette.cs#L29C31-L29C39" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorPalette.cs#L25C31-L25C39" } ], "DocsId": "T:System.Drawing.Imaging.ColorPalette", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorPalette.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorPalette.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfRecordBase", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSetBkColor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSetBkMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSetMapMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSetROP2", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSetRelAbs", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSetPolyFillMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSetStretchBltMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSetTextCharExtra", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSetTextColor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSetTextJustification", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSetWindowOrg", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSetWindowExt", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSetViewportOrg", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSetViewportExt", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfOffsetWindowOrg", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfScaleWindowExt", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfOffsetViewportOrg", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfScaleViewportExt", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfLineTo", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfMoveTo", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfExcludeClipRect", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfIntersectClipRect", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfArc", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfEllipse", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfFloodFill", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfPie", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfRectangle", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfRoundRect", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfPatBlt", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSaveDC", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSetPixel", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfOffsetCilpRgn", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfTextOut", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfBitBlt", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfStretchBlt", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfPolygon", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfPolyline", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfEscape", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfRestoreDC", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfFillRegion", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfFrameRegion", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfInvertRegion", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfPaintRegion", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSelectClipRegion", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSelectObject", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSetTextAlign", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfChord", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSetMapperFlags", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfExtTextOut", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSetDibToDev", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSelectPalette", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfRealizePalette", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfAnimatePalette", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSetPalEntries", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfPolyPolygon", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfResizePalette", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfDibBitBlt", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfDibStretchBlt", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfDibCreatePatternBrush", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfStretchDib", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfExtFloodFill", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSetLayout", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfDeleteObject", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfCreatePalette", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfCreatePatternBrush", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfCreatePenIndirect", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfCreateFontIndirect", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfCreateBrushIndirect", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfCreateRegion", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfHeader", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfPolyBezier", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfPolygon", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfPolyline", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfPolyBezierTo", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfPolyLineTo", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfPolyPolyline", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfPolyPolygon", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetWindowExtEx", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetWindowOrgEx", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetViewportExtEx", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetViewportOrgEx", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetBrushOrgEx", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfEof", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetPixelV", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetMapperFlags", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetMapMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetBkMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetPolyFillMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetROP2", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetStretchBltMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetTextAlign", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetColorAdjustment", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetTextColor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetBkColor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfOffsetClipRgn", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfMoveToEx", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetMetaRgn", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfExcludeClipRect", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfIntersectClipRect", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfScaleViewportExtEx", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfScaleWindowExtEx", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSaveDC", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfRestoreDC", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetWorldTransform", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfModifyWorldTransform", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSelectObject", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfCreatePen", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfCreateBrushIndirect", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfDeleteObject", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfAngleArc", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfEllipse", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfRectangle", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfRoundRect", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfRoundArc", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfChord", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfPie", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSelectPalette", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfCreatePalette", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetPaletteEntries", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfResizePalette", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfRealizePalette", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfExtFloodFill", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfLineTo", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfArcTo", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfPolyDraw", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetArcDirection", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetMiterLimit", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfBeginPath", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfEndPath", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfCloseFigure", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfFillPath", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfStrokeAndFillPath", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfStrokePath", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfFlattenPath", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfWidenPath", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSelectClipPath", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfAbortPath", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfReserved069", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfGdiComment", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfFillRgn", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfFrameRgn", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfInvertRgn", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfPaintRgn", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfExtSelectClipRgn", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfBitBlt", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfStretchBlt", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfMaskBlt", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfPlgBlt", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetDIBitsToDevice", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfStretchDIBits", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfExtCreateFontIndirect", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfExtTextOutA", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfExtTextOutW", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfPolyBezier16", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfPolygon16", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfPolyline16", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfPolyBezierTo16", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfPolylineTo16", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfPolyPolyline16", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfPolyPolygon16", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfPolyDraw16", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfCreateMonoBrush", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfCreateDibPatternBrushPt", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfExtCreatePen", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfPolyTextOutA", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfPolyTextOutW", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetIcmMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfCreateColorSpace", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetColorSpace", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfDeleteColorSpace", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfGlsRecord", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfGlsBoundedRecord", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfPixelFormat", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfDrawEscape", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfExtEscape", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfStartDoc", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSmallTextOut", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfForceUfiMapping", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfNamedEscpae", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfColorCorrectPalette", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetIcmProfileA", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetIcmProfileW", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfAlphaBlend", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetLayout", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfTransparentBlt", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfReserved117", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfGradientFill", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetLinkedUfis", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetTextJustification", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfColorMatchToTargetW", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfCreateColorSpaceW", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfMax", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfMin", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfPlusRecordBase", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.Invalid", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.Header", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EndOfFile", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.Comment", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.GetDC", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.MultiFormatStart", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.MultiFormatSection", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.MultiFormatEnd", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.Object", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.Clear", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.FillRects", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.DrawRects", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.FillPolygon", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.DrawLines", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.FillEllipse", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.DrawEllipse", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.FillPie", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.DrawPie", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.DrawArc", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.FillRegion", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.FillPath", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.DrawPath", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.FillClosedCurve", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.DrawClosedCurve", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.DrawCurve", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.DrawBeziers", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.DrawImage", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.DrawImagePoints", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.DrawString", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.SetRenderingOrigin", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.SetAntiAliasMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.SetTextRenderingHint", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.SetTextContrast", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.SetInterpolationMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.SetPixelOffsetMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.SetCompositingMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.SetCompositingQuality", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.Save", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.Restore", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.BeginContainer", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.BeginContainerNoParams", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EndContainer", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.SetWorldTransform", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.ResetWorldTransform", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.MultiplyWorldTransform", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.TranslateWorldTransform", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.ScaleWorldTransform", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.RotateWorldTransform", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.SetPageTransform", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.ResetClip", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.SetClipRect", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.SetClipPath", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.SetClipRegion", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.OffsetClip", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.DrawDriverString", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.Total", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.Max", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.Min", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" } ], "DocsId": "T:System.Drawing.Imaging.EmfPlusRecordType", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Imaging.EmfType.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfType.EmfOnly", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfType.EmfPlusOnly", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfType.EmfPlusDual", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfType.cs" } ], "DocsId": "T:System.Drawing.Imaging.EmfType", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfType.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.Encoder.#ctor(System.Guid)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs#L34C5-L34C45" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs#L34C5-L34C45" }, { "DocsId": "F:System.Drawing.Imaging.Encoder.Compression", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" }, { "DocsId": "F:System.Drawing.Imaging.Encoder.ColorDepth", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" }, { "DocsId": "F:System.Drawing.Imaging.Encoder.ScanMethod", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" }, { "DocsId": "F:System.Drawing.Imaging.Encoder.Version", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" }, { "DocsId": "F:System.Drawing.Imaging.Encoder.RenderMethod", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" }, { "DocsId": "F:System.Drawing.Imaging.Encoder.Quality", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" }, { "DocsId": "F:System.Drawing.Imaging.Encoder.Transformation", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" }, { "DocsId": "F:System.Drawing.Imaging.Encoder.LuminanceTable", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" }, { "DocsId": "F:System.Drawing.Imaging.Encoder.ChrominanceTable", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" }, { "DocsId": "F:System.Drawing.Imaging.Encoder.SaveFlag", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" }, { "DocsId": "F:System.Drawing.Imaging.Encoder.ColorSpace", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" }, { "DocsId": "F:System.Drawing.Imaging.Encoder.ImageItems", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" }, { "DocsId": "F:System.Drawing.Imaging.Encoder.SaveAsCmyk", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" }, { "DocsId": "P:System.Drawing.Imaging.Encoder.Guid", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs#L36C24-L36C28" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs#L36C24-L36C28" } ], "DocsId": "T:System.Drawing.Imaging.Encoder", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.EncoderParameter.Dispose", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L50C9-L59C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L50C9-L59C6" }, { "DocsId": "M:System.Drawing.Imaging.EncoderParameter.Finalize", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L61C28-L61C37" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L61C28-L16707566C0" }, { "DocsId": "M:System.Drawing.Imaging.EncoderParameter.#ctor(System.Drawing.Imaging.Encoder,System.Byte)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L63C5-L73C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L63C5-L73C6" }, { "DocsId": "M:System.Drawing.Imaging.EncoderParameter.#ctor(System.Drawing.Imaging.Encoder,System.Byte,System.Boolean)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L75C5-L88C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L75C5-L88C6" }, { "DocsId": "M:System.Drawing.Imaging.EncoderParameter.#ctor(System.Drawing.Imaging.Encoder,System.Int16)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L90C5-L100C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L90C5-L100C6" }, { "DocsId": "M:System.Drawing.Imaging.EncoderParameter.#ctor(System.Drawing.Imaging.Encoder,System.Int64)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L102C5-L112C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L102C5-L112C6" }, { "DocsId": "M:System.Drawing.Imaging.EncoderParameter.#ctor(System.Drawing.Imaging.Encoder,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L114C5-L125C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L114C5-L125C6" }, { "DocsId": "M:System.Drawing.Imaging.EncoderParameter.#ctor(System.Drawing.Imaging.Encoder,System.Int64,System.Int64)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L127C5-L138C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L127C5-L138C6" }, { "DocsId": "M:System.Drawing.Imaging.EncoderParameter.#ctor(System.Drawing.Imaging.Encoder,System.Int32,System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L140C5-L158C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L140C5-L158C6" }, { "DocsId": "M:System.Drawing.Imaging.EncoderParameter.#ctor(System.Drawing.Imaging.Encoder,System.String)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L160C5-L168C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L160C5-L168C6" }, { "DocsId": "M:System.Drawing.Imaging.EncoderParameter.#ctor(System.Drawing.Imaging.Encoder,System.Byte[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L170C5-L181C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L170C5-L181C6" }, { "DocsId": "M:System.Drawing.Imaging.EncoderParameter.#ctor(System.Drawing.Imaging.Encoder,System.Byte[],System.Boolean)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L183C5-L194C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L183C5-L194C6" }, { "DocsId": "M:System.Drawing.Imaging.EncoderParameter.#ctor(System.Drawing.Imaging.Encoder,System.Int16[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L196C5-L206C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L196C5-L206C6" }, { "DocsId": "M:System.Drawing.Imaging.EncoderParameter.#ctor(System.Drawing.Imaging.Encoder,System.Int64[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L208C5-L226C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L208C5-L226C6" }, { "DocsId": "M:System.Drawing.Imaging.EncoderParameter.#ctor(System.Drawing.Imaging.Encoder,System.Int32[],System.Int32[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L228C5-L246C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L228C5-L246C6" }, { "DocsId": "M:System.Drawing.Imaging.EncoderParameter.#ctor(System.Drawing.Imaging.Encoder,System.Int64[],System.Int64[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L248C5-L266C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L248C5-L266C6" }, { "DocsId": "M:System.Drawing.Imaging.EncoderParameter.#ctor(System.Drawing.Imaging.Encoder,System.Int32[],System.Int32[],System.Int32[],System.Int32[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L268C5-L295C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L268C5-L295C6" }, { "DocsId": "M:System.Drawing.Imaging.EncoderParameter.#ctor(System.Drawing.Imaging.Encoder,System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L298C5-L321C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L298C5-L321C6" }, { "DocsId": "M:System.Drawing.Imaging.EncoderParameter.#ctor(System.Drawing.Imaging.Encoder,System.Int32,System.Drawing.Imaging.EncoderParameterValueType,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L323C5-L347C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L323C5-L347C6" }, { "DocsId": "P:System.Drawing.Imaging.EncoderParameter.Encoder", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L29C16-L29C35" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L29C16-L29C35" }, { "DocsId": "P:System.Drawing.Imaging.EncoderParameter.Type", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L36C46-L36C65" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L36C46-L36C65" }, { "DocsId": "P:System.Drawing.Imaging.EncoderParameter.ValueType", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L41C51-L41C70" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L41C51-L41C70" }, { "DocsId": "P:System.Drawing.Imaging.EncoderParameter.NumberOfValues", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L46C34-L46C49" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L46C34-L46C49" } ], "DocsId": "T:System.Drawing.Imaging.EncoderParameter", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.EncoderParameters.#ctor(System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameters.cs#L10C5-L10C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameters.cs#L10C5-L10C79" }, { "DocsId": "M:System.Drawing.Imaging.EncoderParameters.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameters.cs#L12C5-L12C66" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameters.cs#L12C5-L12C66" }, { "DocsId": "M:System.Drawing.Imaging.EncoderParameters.Dispose", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameters.cs#L58C40-L64C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameters.cs#L58C40-L64C6" }, { "DocsId": "P:System.Drawing.Imaging.EncoderParameters.Param", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameters.cs#L14C39-L14C43" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameters.cs#L14C39-L14C43" } ], "DocsId": "T:System.Drawing.Imaging.EncoderParameters", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameters.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameters.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Imaging.EncoderParameterValueType.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameterValueType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameterValueType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderParameterValueType.ValueTypeByte", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameterValueType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameterValueType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderParameterValueType.ValueTypeAscii", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameterValueType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameterValueType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderParameterValueType.ValueTypeShort", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameterValueType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameterValueType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderParameterValueType.ValueTypeLong", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameterValueType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameterValueType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderParameterValueType.ValueTypeRational", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameterValueType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameterValueType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderParameterValueType.ValueTypeLongRange", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameterValueType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameterValueType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderParameterValueType.ValueTypeUndefined", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameterValueType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameterValueType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderParameterValueType.ValueTypeRationalRange", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameterValueType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameterValueType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderParameterValueType.ValueTypePointer", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameterValueType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameterValueType.cs" } ], "DocsId": "T:System.Drawing.Imaging.EncoderParameterValueType", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameterValueType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameterValueType.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Imaging.EncoderValue.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.ColorTypeCMYK", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.ColorTypeYCCK", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.CompressionLZW", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.CompressionCCITT3", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.CompressionCCITT4", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.CompressionRle", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.CompressionNone", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.ScanMethodInterlaced", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.ScanMethodNonInterlaced", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.VersionGif87", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.VersionGif89", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.RenderProgressive", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.RenderNonProgressive", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.TransformRotate90", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.TransformRotate180", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.TransformRotate270", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.TransformFlipHorizontal", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.TransformFlipVertical", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.MultiFrame", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.LastFrame", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.Flush", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.FrameDimensionTime", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.FrameDimensionResolution", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.FrameDimensionPage", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" } ], "DocsId": "T:System.Drawing.Imaging.EncoderValue", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.FrameDimension.#ctor(System.Guid)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/FrameDimension.cs#L18C5-L21C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/FrameDimension.cs#L18C5-L21C6" }, { "DocsId": "M:System.Drawing.Imaging.FrameDimension.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/FrameDimension.cs#L56C67-L56C118" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/FrameDimension.cs#L56C67-L56C118" }, { "DocsId": "M:System.Drawing.Imaging.FrameDimension.GetHashCode", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/FrameDimension.cs#L60C9-L60C36" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/FrameDimension.cs#L60C9-L60C36" }, { "DocsId": "M:System.Drawing.Imaging.FrameDimension.ToString", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/FrameDimension.cs#L68C9-L83C45" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/FrameDimension.cs#L68C9-L83C45" }, { "DocsId": "P:System.Drawing.Imaging.FrameDimension.Guid", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/FrameDimension.cs#L28C15-L28C28" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/FrameDimension.cs#L28C15-L28C28" }, { "DocsId": "P:System.Drawing.Imaging.FrameDimension.Time", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/FrameDimension.cs#L36C15-L36C29" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/FrameDimension.cs#L36C15-L36C29" }, { "DocsId": "P:System.Drawing.Imaging.FrameDimension.Resolution", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/FrameDimension.cs#L44C15-L44C35" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/FrameDimension.cs#L44C15-L44C35" }, { "DocsId": "P:System.Drawing.Imaging.FrameDimension.Page", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/FrameDimension.cs#L50C42-L50C48" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/FrameDimension.cs#L50C42-L50C48" } ], "DocsId": "T:System.Drawing.Imaging.FrameDimension", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/FrameDimension.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/FrameDimension.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L54C5-L60C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L54C5-L60C6" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.Dispose", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L70C9-L79C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L70C9-L79C6" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.Finalize", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L84C27-L84C36" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L84C27-L16707566C0" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.Clone", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L92C9-L95C43" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L92C9-L95C43" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetColorMatrix(System.Drawing.Imaging.ColorMatrix)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L102C9-L102C89" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L102C9-L102C89" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetColorMatrix(System.Drawing.Imaging.ColorMatrix,System.Drawing.Imaging.ColorMatrixFlag)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L108C9-L108C71" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L108C9-L108C71" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetColorMatrix(System.Drawing.Imaging.ColorMatrix,System.Drawing.Imaging.ColorMatrixFlag,System.Drawing.Imaging.ColorAdjustType)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L114C9-L114C59" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L114C9-L114C59" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.ClearColorMatrix", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L119C39-L119C80" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L119C39-L119C80" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.ClearColorMatrix(System.Drawing.Imaging.ColorAdjustType)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L126C9-L135C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L126C9-L135C6" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetColorMatrices(System.Drawing.Imaging.ColorMatrix,System.Drawing.Imaging.ColorMatrix)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L141C9-L141C103" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L141C9-L141C103" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetColorMatrices(System.Drawing.Imaging.ColorMatrix,System.Drawing.Imaging.ColorMatrix,System.Drawing.Imaging.ColorMatrixFlag)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L144C9-L144C85" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L144C9-L144C85" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetColorMatrices(System.Drawing.Imaging.ColorMatrix,System.Drawing.Imaging.ColorMatrix,System.Drawing.Imaging.ColorMatrixFlag,System.Drawing.Imaging.ColorAdjustType)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L152C9-L183C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L152C9-L183C6" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetThreshold(System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L185C50-L185C98" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L185C50-L185C98" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetThreshold(System.Single,System.Drawing.Imaging.ColorAdjustType)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L187C72-L187C119" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L187C72-L187C119" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.ClearThreshold", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L189C37-L189C76" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L189C37-L189C76" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.ClearThreshold(System.Drawing.Imaging.ColorAdjustType)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L191C57-L191C100" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L191C57-L191C100" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetGamma(System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L204C42-L204C82" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L204C42-L204C82" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetGamma(System.Single,System.Drawing.Imaging.ColorAdjustType)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L206C64-L206C103" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L206C64-L206C103" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.ClearGamma", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L208C33-L208C68" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L208C33-L208C68" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.ClearGamma(System.Drawing.Imaging.ColorAdjustType)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L210C53-L210C92" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L210C53-L210C92" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetNoOp", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L223C30-L223C62" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L223C30-L223C62" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetNoOp(System.Drawing.Imaging.ColorAdjustType)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L225C50-L225C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L225C50-L225C81" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.ClearNoOp", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L227C32-L227C66" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L227C32-L227C66" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.ClearNoOp(System.Drawing.Imaging.ColorAdjustType)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L229C52-L229C84" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L229C52-L229C84" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetColorKey(System.Drawing.Color,System.Drawing.Color)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L242C9-L242C66" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L242C9-L242C66" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetColorKey(System.Drawing.Color,System.Drawing.Color,System.Drawing.Imaging.ColorAdjustType)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L245C9-L245C65" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L245C9-L245C65" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.ClearColorKey", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L247C36-L247C74" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L247C36-L247C74" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.ClearColorKey(System.Drawing.Imaging.ColorAdjustType)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L249C56-L249C118" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L249C56-L249C118" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetOutputChannel(System.Drawing.Imaging.ColorChannelFlag)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L263C61-L263C109" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L263C61-L263C109" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetOutputChannel(System.Drawing.Imaging.ColorChannelFlag,System.Drawing.Imaging.ColorAdjustType)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L266C9-L266C56" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L266C9-L266C56" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.ClearOutputChannel", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L268C41-L268C84" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L268C41-L268C84" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.ClearOutputChannel(System.Drawing.Imaging.ColorAdjustType)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L271C9-L271C85" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L271C9-L271C85" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetOutputChannelColorProfile(System.String)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L285C9-L285C84" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L285C9-L285C84" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetOutputChannelColorProfile(System.String,System.Drawing.Imaging.ColorAdjustType)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L290C9-L302C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L290C9-L302C6" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.ClearOutputChannelColorProfile", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L304C53-L304C96" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L304C53-L304C96" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.ClearOutputChannelColorProfile(System.Drawing.Imaging.ColorAdjustType)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L308C9-L315C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L308C9-L315C6" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetRemapTable(System.Drawing.Imaging.ColorMap[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L318C57-L318C100" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L318C57-L318C100" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetRemapTable(System.Drawing.Imaging.ColorMap[],System.Drawing.Imaging.ColorAdjustType)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L329C9-L331C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L329C9-L331C6" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.ClearRemapTable", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L413C38-L413C78" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L413C38-L413C78" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.ClearRemapTable(System.Drawing.Imaging.ColorAdjustType)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L417C9-L425C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L417C9-L425C6" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetBrushRemapTable(System.Drawing.Imaging.ColorMap[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L427C62-L427C103" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L427C62-L427C103" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.ClearBrushRemapTable", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L435C43-L435C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L435C43-L435C81" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetWrapMode(System.Drawing.Drawing2D.WrapMode)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L437C57-L437C97" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L437C57-L437C97" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetWrapMode(System.Drawing.Drawing2D.WrapMode,System.Drawing.Color)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L439C70-L439C108" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L439C70-L439C108" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetWrapMode(System.Drawing.Drawing2D.WrapMode,System.Drawing.Color,System.Boolean)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L443C9-L450C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L443C9-L450C6" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.GetAdjustedPalette(System.Drawing.Imaging.ColorPalette,System.Drawing.Imaging.ColorAdjustType)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L454C9-L464C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L454C9-L464C6" } ], "DocsId": "T:System.Drawing.Imaging.ImageAttributes", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Imaging.ImageCodecFlags.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageCodecFlags.Encoder", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageCodecFlags.Decoder", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageCodecFlags.SupportBitmap", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageCodecFlags.SupportVector", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageCodecFlags.SeekableEncode", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageCodecFlags.BlockingDecode", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageCodecFlags.Builtin", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageCodecFlags.System", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageCodecFlags.User", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecFlags.cs" } ], "DocsId": "T:System.Drawing.Imaging.ImageCodecFlags", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecFlags.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.ImageCodecInfo.GetImageDecoders", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L45C9-L56C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L45C9-L56C6" }, { "DocsId": "M:System.Drawing.Imaging.ImageCodecInfo.GetImageEncoders", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L64C9-L75C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L64C9-L75C6" }, { "DocsId": "P:System.Drawing.Imaging.ImageCodecInfo.Clsid", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L13C25-L13C29" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L13C25-L13C29" }, { "DocsId": "P:System.Drawing.Imaging.ImageCodecInfo.FormatID", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L15C28-L15C32" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L15C28-L15C32" }, { "DocsId": "P:System.Drawing.Imaging.ImageCodecInfo.CodecName", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L17C32-L17C36" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L17C32-L17C36" }, { "DocsId": "P:System.Drawing.Imaging.ImageCodecInfo.DllName", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L19C30-L19C34" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L19C30-L19C34" }, { "DocsId": "P:System.Drawing.Imaging.ImageCodecInfo.FormatDescription", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L21C40-L21C44" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L21C40-L21C44" }, { "DocsId": "P:System.Drawing.Imaging.ImageCodecInfo.FilenameExtension", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L23C40-L23C44" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L23C40-L23C44" }, { "DocsId": "P:System.Drawing.Imaging.ImageCodecInfo.MimeType", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L25C31-L25C35" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L25C31-L25C35" }, { "DocsId": "P:System.Drawing.Imaging.ImageCodecInfo.Flags", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L27C36-L27C40" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L27C36-L27C40" }, { "DocsId": "P:System.Drawing.Imaging.ImageCodecInfo.Version", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L29C26-L29C30" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L29C26-L29C30" }, { "DocsId": "P:System.Drawing.Imaging.ImageCodecInfo.SignaturePatterns", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L32C42-L32C46" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L32C42-L32C46" }, { "DocsId": "P:System.Drawing.Imaging.ImageCodecInfo.SignatureMasks", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L35C39-L35C43" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L35C39-L35C43" } ], "DocsId": "T:System.Drawing.Imaging.ImageCodecInfo", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Imaging.ImageFlags.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageFlags.None", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageFlags.Scalable", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageFlags.HasAlpha", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageFlags.HasTranslucent", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageFlags.PartiallyScalable", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageFlags.ColorSpaceRgb", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageFlags.ColorSpaceCmyk", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageFlags.ColorSpaceGray", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageFlags.ColorSpaceYcbcr", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageFlags.ColorSpaceYcck", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageFlags.HasRealDpi", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageFlags.HasRealPixelSize", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageFlags.ReadOnly", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageFlags.Caching", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" } ], "DocsId": "T:System.Drawing.Imaging.ImageFlags", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.ImageFormat.#ctor(System.Guid)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L35C5-L35C50" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L35C5-L35C50" }, { "DocsId": "M:System.Drawing.Imaging.ImageFormat.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L114C67-L114C115" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L114C67-L114C115" }, { "DocsId": "M:System.Drawing.Imaging.ImageFormat.GetHashCode", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L119C42-L119C61" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L119C42-L119C61" }, { "DocsId": "M:System.Drawing.Imaging.ImageFormat.ToString", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L131C9-L191C42" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L131C9-L191C42" }, { "DocsId": "P:System.Drawing.Imaging.ImageFormat.Guid", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L40C25-L40C30" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L40C25-L40C30" }, { "DocsId": "P:System.Drawing.Imaging.ImageFormat.MemoryBmp", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L45C44-L45C55" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L45C44-L45C55" }, { "DocsId": "P:System.Drawing.Imaging.ImageFormat.Bmp", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L50C38-L50C43" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L50C38-L50C43" }, { "DocsId": "P:System.Drawing.Imaging.ImageFormat.Emf", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L55C38-L55C43" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L55C38-L55C43" }, { "DocsId": "P:System.Drawing.Imaging.ImageFormat.Wmf", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L60C38-L60C43" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L60C38-L60C43" }, { "DocsId": "P:System.Drawing.Imaging.ImageFormat.Gif", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L65C38-L65C43" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L65C38-L65C43" }, { "DocsId": "P:System.Drawing.Imaging.ImageFormat.Jpeg", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L70C39-L70C45" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L70C39-L70C45" }, { "DocsId": "P:System.Drawing.Imaging.ImageFormat.Png", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L75C38-L75C43" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L75C38-L75C43" }, { "DocsId": "P:System.Drawing.Imaging.ImageFormat.Tiff", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L80C39-L80C45" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L80C39-L80C45" }, { "DocsId": "P:System.Drawing.Imaging.ImageFormat.Exif", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L85C39-L85C45" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L85C39-L85C45" }, { "DocsId": "P:System.Drawing.Imaging.ImageFormat.Icon", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L90C39-L90C45" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L90C39-L90C45" }, { "DocsId": "P:System.Drawing.Imaging.ImageFormat.Heif", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L99C39-L99C45" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L99C39-L99C45" }, { "DocsId": "P:System.Drawing.Imaging.ImageFormat.Webp", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L108C39-L108C45" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L108C39-L108C45" } ], "DocsId": "T:System.Drawing.Imaging.ImageFormat", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Imaging.ImageLockMode.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageLockMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageLockMode.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageLockMode.ReadOnly", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageLockMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageLockMode.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageLockMode.WriteOnly", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageLockMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageLockMode.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageLockMode.ReadWrite", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageLockMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageLockMode.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageLockMode.UserInputBuffer", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageLockMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageLockMode.cs" } ], "DocsId": "T:System.Drawing.Imaging.ImageLockMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageLockMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageLockMode.cs" }, { "Members": [ + { + "DocsId": "M:System.Drawing.Imaging.Metafile.IPointer#get_Pointer", + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L24C49-L24C63" + }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IntPtr,System.Drawing.Imaging.WmfPlaceableFileHeader,System.Boolean)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L28C5-L41C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L30C5-L43C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IntPtr,System.Boolean)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L47C5-L52C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L49C5-L54C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L57C5-L67C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L59C5-L69C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IntPtr,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L74C9-L76C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L76C9-L78C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IntPtr,System.Drawing.Imaging.EmfType)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L82C9-L84C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L84C9-L86C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IntPtr,System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L91C9-L93C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L93C9-L95C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IntPtr,System.Drawing.RectangleF,System.Drawing.Imaging.MetafileFrameUnit)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L100C9-L102C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L102C9-L104C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IntPtr,System.Drawing.RectangleF,System.Drawing.Imaging.MetafileFrameUnit,System.Drawing.Imaging.EmfType)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L109C9-L111C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L111C9-L113C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IntPtr,System.Drawing.RectangleF,System.Drawing.Imaging.MetafileFrameUnit,System.Drawing.Imaging.EmfType,System.String)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L117C5-L134C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L119C5-L136C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IntPtr,System.Drawing.Rectangle,System.Drawing.Imaging.MetafileFrameUnit)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L141C9-L143C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L143C9-L145C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IntPtr,System.Drawing.Rectangle,System.Drawing.Imaging.MetafileFrameUnit,System.Drawing.Imaging.EmfType)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L150C9-L152C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L152C9-L154C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.String,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L158C9-L160C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L160C9-L162C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.String,System.IntPtr,System.Drawing.Imaging.EmfType)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L166C9-L168C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L168C9-L170C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.String,System.IntPtr,System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L174C9-L176C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L176C9-L178C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.String,System.IntPtr,System.Drawing.RectangleF,System.Drawing.Imaging.MetafileFrameUnit)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L182C9-L184C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L184C9-L186C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.String,System.IntPtr,System.Drawing.RectangleF,System.Drawing.Imaging.MetafileFrameUnit,System.Drawing.Imaging.EmfType)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L190C9-L192C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L192C9-L194C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.String,System.IntPtr,System.Drawing.RectangleF,System.Drawing.Imaging.MetafileFrameUnit,System.String)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L198C9-L200C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L200C9-L202C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.String,System.IntPtr,System.Drawing.RectangleF,System.Drawing.Imaging.MetafileFrameUnit,System.Drawing.Imaging.EmfType,System.String)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L205C5-L230C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L207C5-L232C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.String,System.IntPtr,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L236C9-L238C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L238C9-L240C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.String,System.IntPtr,System.Drawing.Rectangle,System.Drawing.Imaging.MetafileFrameUnit)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L244C9-L246C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L246C9-L248C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.String,System.IntPtr,System.Drawing.Rectangle,System.Drawing.Imaging.MetafileFrameUnit,System.Drawing.Imaging.EmfType)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L252C9-L254C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L254C9-L256C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.String,System.IntPtr,System.Drawing.Rectangle,System.Drawing.Imaging.MetafileFrameUnit,System.String)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L260C9-L262C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L262C9-L264C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IO.Stream,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L268C9-L270C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L270C9-L272C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IO.Stream,System.IntPtr,System.Drawing.Imaging.EmfType)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L276C9-L278C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L278C9-L280C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IO.Stream,System.IntPtr,System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L284C9-L286C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L286C9-L288C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IO.Stream,System.IntPtr,System.Drawing.RectangleF,System.Drawing.Imaging.MetafileFrameUnit)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L292C9-L294C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L294C9-L296C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IO.Stream,System.IntPtr,System.Drawing.RectangleF,System.Drawing.Imaging.MetafileFrameUnit,System.Drawing.Imaging.EmfType)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L300C9-L302C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L302C9-L304C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IO.Stream,System.IntPtr,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L308C9-L310C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L310C9-L312C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IO.Stream,System.IntPtr,System.Drawing.Rectangle,System.Drawing.Imaging.MetafileFrameUnit)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L316C9-L318C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L318C9-L320C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IO.Stream,System.IntPtr,System.Drawing.Rectangle,System.Drawing.Imaging.MetafileFrameUnit,System.Drawing.Imaging.EmfType)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L324C9-L326C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L326C9-L328C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IntPtr,System.Drawing.Imaging.WmfPlaceableFileHeader)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L333C9-L335C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L335C9-L337C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L340C5-L348C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L342C5-L350C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IntPtr,System.Drawing.Imaging.EmfType,System.String)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L353C5-L368C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L355C5-L370C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IntPtr,System.Drawing.Rectangle,System.Drawing.Imaging.MetafileFrameUnit,System.Drawing.Imaging.EmfType,System.String)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L374C5-L392C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L376C5-L394C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.String,System.IntPtr,System.Drawing.Imaging.EmfType,System.String)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L397C5-L417C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L399C5-L419C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.String,System.IntPtr,System.Drawing.Rectangle,System.Drawing.Imaging.MetafileFrameUnit,System.Drawing.Imaging.EmfType,System.String)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L422C5-L443C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L424C5-L445C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IO.Stream,System.IntPtr,System.Drawing.Imaging.EmfType,System.String)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L448C5-L467C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L450C5-L469C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IO.Stream,System.IntPtr,System.Drawing.RectangleF,System.Drawing.Imaging.MetafileFrameUnit,System.Drawing.Imaging.EmfType,System.String)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L472C5-L492C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L474C5-L494C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IO.Stream,System.IntPtr,System.Drawing.Rectangle,System.Drawing.Imaging.MetafileFrameUnit,System.Drawing.Imaging.EmfType,System.String)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L497C5-L517C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L499C5-L519C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.PlayRecord(System.Drawing.Imaging.EmfPlusRecordType,System.Int32,System.Int32,System.Byte[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L537C16-L548C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L539C16-L550C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.GetMetafileHeader(System.IntPtr,System.Drawing.Imaging.WmfPlaceableFileHeader)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L555C9-L561C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L557C9-L563C27" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.GetMetafileHeader(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L570C9-L574C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L572C9-L576C27" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.GetMetafileHeader(System.String)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L584C9-L592C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L586C9-L594C27" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.GetMetafileHeader(System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L601C9-L611C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L603C9-L613C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.GetMetafileHeader", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L618C9-L624C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L620C9-L626C27" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.GetHenhmetafile", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L634C9-L636C21" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L633C40-L633C62" + }, + { + "DocsId": "P:System.Drawing.Imaging.Metafile.IPointer#Pointer", + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L24C49-L24C63" } ], "DocsId": "T:System.Drawing.Imaging.Metafile", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Imaging.MetafileFrameUnit.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileFrameUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileFrameUnit.cs" }, { "DocsId": "F:System.Drawing.Imaging.MetafileFrameUnit.Pixel", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileFrameUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileFrameUnit.cs" }, { "DocsId": "F:System.Drawing.Imaging.MetafileFrameUnit.Point", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileFrameUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileFrameUnit.cs" }, { "DocsId": "F:System.Drawing.Imaging.MetafileFrameUnit.Inch", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileFrameUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileFrameUnit.cs" }, { "DocsId": "F:System.Drawing.Imaging.MetafileFrameUnit.Document", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileFrameUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileFrameUnit.cs" }, { "DocsId": "F:System.Drawing.Imaging.MetafileFrameUnit.Millimeter", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileFrameUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileFrameUnit.cs" }, { "DocsId": "F:System.Drawing.Imaging.MetafileFrameUnit.GdiCompatible", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileFrameUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileFrameUnit.cs" } ], "DocsId": "T:System.Drawing.Imaging.MetafileFrameUnit", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileFrameUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileFrameUnit.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.MetafileHeader.IsWmf", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L53C28-L53C129" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L53C28-L53C129" }, { "DocsId": "M:System.Drawing.Imaging.MetafileHeader.IsWmfPlaceable", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L58C37-L58C98" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L58C37-L58C98" }, { "DocsId": "M:System.Drawing.Imaging.MetafileHeader.IsEmf", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L63C28-L63C80" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L63C28-L63C80" }, { "DocsId": "M:System.Drawing.Imaging.MetafileHeader.IsEmfOrEmfPlus", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L69C37-L71C56" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L69C37-L71C56" }, { "DocsId": "M:System.Drawing.Imaging.MetafileHeader.IsEmfPlus", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L77C32-L78C56" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L77C32-L78C56" }, { "DocsId": "M:System.Drawing.Imaging.MetafileHeader.IsEmfPlusDual", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L84C36-L84C96" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L84C36-L84C96" }, { "DocsId": "M:System.Drawing.Imaging.MetafileHeader.IsEmfPlusOnly", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L90C36-L90C96" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L90C36-L90C96" }, { "DocsId": "M:System.Drawing.Imaging.MetafileHeader.IsDisplay", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L95C32-L95C113" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L95C32-L95C113" }, { "DocsId": "P:System.Drawing.Imaging.MetafileHeader.Type", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L23C33-L23C59" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L23C33-L23C59" }, { "DocsId": "P:System.Drawing.Imaging.MetafileHeader.MetafileSize", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L28C32-L28C49" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L28C32-L28C49" }, { "DocsId": "P:System.Drawing.Imaging.MetafileHeader.Version", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L33C27-L33C47" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L33C27-L33C47" }, { "DocsId": "P:System.Drawing.Imaging.MetafileHeader.DpiX", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L38C26-L38C38" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L38C26-L38C38" }, { "DocsId": "P:System.Drawing.Imaging.MetafileHeader.DpiY", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L43C26-L43C38" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L43C26-L43C38" }, { "DocsId": "P:System.Drawing.Imaging.MetafileHeader.Bounds", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L48C32-L48C88" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L48C32-L48C88" }, { "DocsId": "P:System.Drawing.Imaging.MetafileHeader.WmfHeader", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L100C36-L102C43" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L100C36-L102C43" }, { "DocsId": "P:System.Drawing.Imaging.MetafileHeader.EmfPlusHeaderSize", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L107C37-L107C62" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L107C37-L107C62" }, { "DocsId": "P:System.Drawing.Imaging.MetafileHeader.LogicalDpiX", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L112C31-L112C50" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L112C31-L112C50" }, { "DocsId": "P:System.Drawing.Imaging.MetafileHeader.LogicalDpiY", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L117C31-L117C50" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L117C31-L117C50" } ], "DocsId": "T:System.Drawing.Imaging.MetafileHeader", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Imaging.MetafileType.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileType.cs" }, { "DocsId": "F:System.Drawing.Imaging.MetafileType.Invalid", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileType.cs" }, { "DocsId": "F:System.Drawing.Imaging.MetafileType.Wmf", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileType.cs" }, { "DocsId": "F:System.Drawing.Imaging.MetafileType.WmfPlaceable", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileType.cs" }, { "DocsId": "F:System.Drawing.Imaging.MetafileType.Emf", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileType.cs" }, { "DocsId": "F:System.Drawing.Imaging.MetafileType.EmfPlusOnly", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileType.cs" }, { "DocsId": "F:System.Drawing.Imaging.MetafileType.EmfPlusDual", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileType.cs" } ], "DocsId": "T:System.Drawing.Imaging.MetafileType", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileType.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.MetaHeader.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/MetaHeader.cs#L17C5-L19C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/MetaHeader.cs#L17C5-L19C6" }, { "DocsId": "P:System.Drawing.Imaging.MetaHeader.Type", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/MetaHeader.cs#L28C16-L28C35" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/MetaHeader.cs#L28C16-L28C35" }, { "DocsId": "P:System.Drawing.Imaging.MetaHeader.HeaderSize", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/MetaHeader.cs#L37C16-L37C41" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/MetaHeader.cs#L37C16-L37C41" }, { "DocsId": "P:System.Drawing.Imaging.MetaHeader.Version", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/MetaHeader.cs#L46C16-L46C38" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/MetaHeader.cs#L46C16-L46C38" }, { "DocsId": "P:System.Drawing.Imaging.MetaHeader.Size", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/MetaHeader.cs#L55C16-L55C33" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/MetaHeader.cs#L55C16-L55C33" }, { "DocsId": "P:System.Drawing.Imaging.MetaHeader.NoObjects", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/MetaHeader.cs#L61C16-L61C40" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/MetaHeader.cs#L61C16-L61C40" }, { "DocsId": "P:System.Drawing.Imaging.MetaHeader.MaxRecord", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/MetaHeader.cs#L67C16-L67C38" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/MetaHeader.cs#L67C16-L67C38" }, { "DocsId": "P:System.Drawing.Imaging.MetaHeader.NoParameters", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/MetaHeader.cs#L73C16-L73C43" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/MetaHeader.cs#L73C16-L73C43" } ], "DocsId": "T:System.Drawing.Imaging.MetaHeader", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/MetaHeader.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/MetaHeader.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Imaging.PaletteFlags.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/PaletteFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/PaletteFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.PaletteFlags.HasAlpha", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/PaletteFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/PaletteFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.PaletteFlags.GrayScale", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/PaletteFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/PaletteFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.PaletteFlags.Halftone", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/PaletteFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/PaletteFlags.cs" } ], "DocsId": "T:System.Drawing.Imaging.PaletteFlags", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/PaletteFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/PaletteFlags.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Imaging.PixelFormat.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "DocsId": "F:System.Drawing.Imaging.PixelFormat.Indexed", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "DocsId": "F:System.Drawing.Imaging.PixelFormat.Gdi", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "DocsId": "F:System.Drawing.Imaging.PixelFormat.Alpha", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "DocsId": "F:System.Drawing.Imaging.PixelFormat.PAlpha", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "DocsId": "F:System.Drawing.Imaging.PixelFormat.Extended", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "DocsId": "F:System.Drawing.Imaging.PixelFormat.Canonical", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "DocsId": "F:System.Drawing.Imaging.PixelFormat.Undefined", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "DocsId": "F:System.Drawing.Imaging.PixelFormat.DontCare", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "DocsId": "F:System.Drawing.Imaging.PixelFormat.Format1bppIndexed", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "DocsId": "F:System.Drawing.Imaging.PixelFormat.Format4bppIndexed", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "DocsId": "F:System.Drawing.Imaging.PixelFormat.Format8bppIndexed", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "DocsId": "F:System.Drawing.Imaging.PixelFormat.Format16bppGrayScale", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "DocsId": "F:System.Drawing.Imaging.PixelFormat.Format16bppRgb555", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "DocsId": "F:System.Drawing.Imaging.PixelFormat.Format16bppRgb565", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "DocsId": "F:System.Drawing.Imaging.PixelFormat.Format16bppArgb1555", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "DocsId": "F:System.Drawing.Imaging.PixelFormat.Format24bppRgb", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "DocsId": "F:System.Drawing.Imaging.PixelFormat.Format32bppRgb", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "DocsId": "F:System.Drawing.Imaging.PixelFormat.Format32bppArgb", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "DocsId": "F:System.Drawing.Imaging.PixelFormat.Format32bppPArgb", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "DocsId": "F:System.Drawing.Imaging.PixelFormat.Format48bppRgb", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "DocsId": "F:System.Drawing.Imaging.PixelFormat.Format64bppArgb", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "DocsId": "F:System.Drawing.Imaging.PixelFormat.Format64bppPArgb", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "DocsId": "F:System.Drawing.Imaging.PixelFormat.Max", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" } ], "DocsId": "T:System.Drawing.Imaging.PixelFormat", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.PlayRecordCallback.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/PlayRecordCallback.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/PlayRecordCallback.cs" }, { "DocsId": "M:System.Drawing.Imaging.PlayRecordCallback.Invoke(System.Drawing.Imaging.EmfPlusRecordType,System.Int32,System.Int32,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/PlayRecordCallback.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/PlayRecordCallback.cs" }, { "DocsId": "M:System.Drawing.Imaging.PlayRecordCallback.BeginInvoke(System.Drawing.Imaging.EmfPlusRecordType,System.Int32,System.Int32,System.IntPtr,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/PlayRecordCallback.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/PlayRecordCallback.cs" }, { "DocsId": "M:System.Drawing.Imaging.PlayRecordCallback.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/PlayRecordCallback.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/PlayRecordCallback.cs" } ], "DocsId": "T:System.Drawing.Imaging.PlayRecordCallback", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/PlayRecordCallback.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/PlayRecordCallback.cs" }, { "Members": [ { "DocsId": "P:System.Drawing.Imaging.PropertyItem.Id", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/PropertyItem.cs#L18C21-L18C25" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/PropertyItem.cs#L18C21-L18C25" }, { "DocsId": "P:System.Drawing.Imaging.PropertyItem.Len", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/PropertyItem.cs#L23C22-L23C26" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/PropertyItem.cs#L23C22-L23C26" }, { "DocsId": "P:System.Drawing.Imaging.PropertyItem.Type", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/PropertyItem.cs#L28C25-L28C29" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/PropertyItem.cs#L28C25-L28C29" }, { "DocsId": "P:System.Drawing.Imaging.PropertyItem.Value", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/PropertyItem.cs#L33C28-L33C32" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/PropertyItem.cs#L33C28-L33C32" } ], "DocsId": "T:System.Drawing.Imaging.PropertyItem", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/PropertyItem.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/PropertyItem.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.WmfPlaceableFileHeader.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/WmfPlaceableFileHeader.cs#L16C5-L16C64" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/WmfPlaceableFileHeader.cs#L16C5-L16C64" }, { "DocsId": "P:System.Drawing.Imaging.WmfPlaceableFileHeader.Key", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/WmfPlaceableFileHeader.cs#L23C16-L23C32" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/WmfPlaceableFileHeader.cs#L23C16-L23C32" }, { "DocsId": "P:System.Drawing.Imaging.WmfPlaceableFileHeader.Hmf", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/WmfPlaceableFileHeader.cs#L32C16-L32C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/WmfPlaceableFileHeader.cs#L32C16-L32C27" }, { "DocsId": "P:System.Drawing.Imaging.WmfPlaceableFileHeader.BboxLeft", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/WmfPlaceableFileHeader.cs#L41C16-L41C40" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/WmfPlaceableFileHeader.cs#L41C16-L41C40" }, { "DocsId": "P:System.Drawing.Imaging.WmfPlaceableFileHeader.BboxTop", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/WmfPlaceableFileHeader.cs#L50C16-L50C39" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/WmfPlaceableFileHeader.cs#L50C16-L50C39" }, { "DocsId": "P:System.Drawing.Imaging.WmfPlaceableFileHeader.BboxRight", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/WmfPlaceableFileHeader.cs#L59C16-L59C41" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/WmfPlaceableFileHeader.cs#L59C16-L59C41" }, { "DocsId": "P:System.Drawing.Imaging.WmfPlaceableFileHeader.BboxBottom", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/WmfPlaceableFileHeader.cs#L68C16-L68C42" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/WmfPlaceableFileHeader.cs#L68C16-L68C42" }, { "DocsId": "P:System.Drawing.Imaging.WmfPlaceableFileHeader.Inch", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/WmfPlaceableFileHeader.cs#L77C16-L77C28" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/WmfPlaceableFileHeader.cs#L77C16-L77C28" }, { "DocsId": "P:System.Drawing.Imaging.WmfPlaceableFileHeader.Reserved", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/WmfPlaceableFileHeader.cs#L86C16-L86C37" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/WmfPlaceableFileHeader.cs#L86C16-L86C37" }, { "DocsId": "P:System.Drawing.Imaging.WmfPlaceableFileHeader.Checksum", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/WmfPlaceableFileHeader.cs#L95C16-L95C32" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/WmfPlaceableFileHeader.cs#L95C16-L95C32" } ], "DocsId": "T:System.Drawing.Imaging.WmfPlaceableFileHeader", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/WmfPlaceableFileHeader.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/WmfPlaceableFileHeader.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Design.CategoryNameCollection.#ctor(System.Drawing.Design.CategoryNameCollection)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Design/CategoryNameCollection.cs#L17C5-L17C93" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Design/CategoryNameCollection.cs#L17C5-L17C93" }, { "DocsId": "M:System.Drawing.Design.CategoryNameCollection.#ctor(System.String[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Design/CategoryNameCollection.cs#L23C5-L23C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Design/CategoryNameCollection.cs#L23C5-L23C79" }, { "DocsId": "M:System.Drawing.Design.CategoryNameCollection.Contains(System.String)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Design/CategoryNameCollection.cs#L34C43-L34C68" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Design/CategoryNameCollection.cs#L34C43-L34C68" }, { "DocsId": "M:System.Drawing.Design.CategoryNameCollection.CopyTo(System.String[],System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Design/CategoryNameCollection.cs#L40C54-L40C84" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Design/CategoryNameCollection.cs#L40C54-L40C84" }, { "DocsId": "M:System.Drawing.Design.CategoryNameCollection.IndexOf(System.String)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Design/CategoryNameCollection.cs#L45C41-L45C65" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Design/CategoryNameCollection.cs#L45C41-L45C65" }, { "DocsId": "P:System.Drawing.Design.CategoryNameCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Design/CategoryNameCollection.cs#L28C38-L28C63" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Design/CategoryNameCollection.cs#L28C38-L28C63" } ], "DocsId": "T:System.Drawing.Design.CategoryNameCollection", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Design/CategoryNameCollection.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Design/CategoryNameCollection.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Drawing2D.DashCap.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/DashCap.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/DashCap.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.DashCap.Flat", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/DashCap.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/DashCap.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.DashCap.Round", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/DashCap.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/DashCap.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.DashCap.Triangle", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/DashCap.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/DashCap.cs" } ], "DocsId": "T:System.Drawing.Drawing2D.DashCap", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/DashCap.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/DashCap.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Drawing2D.AdjustableArrowCap.#ctor(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/AdjustableArrowCap.cs#L10C60-L10C89" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/AdjustableArrowCap.cs#L10C60-L10C89" }, { "DocsId": "M:System.Drawing.Drawing2D.AdjustableArrowCap.#ctor(System.Single,System.Single,System.Boolean)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/AdjustableArrowCap.cs#L12C5-L17C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/AdjustableArrowCap.cs#L12C5-L17C6" }, { "DocsId": "P:System.Drawing.Drawing2D.AdjustableArrowCap.Height", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/AdjustableArrowCap.cs#L26C13-L28C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/AdjustableArrowCap.cs#L26C13-L28C27" }, { "DocsId": "P:System.Drawing.Drawing2D.AdjustableArrowCap.Width", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/AdjustableArrowCap.cs#L42C13-L44C26" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/AdjustableArrowCap.cs#L42C13-L44C26" }, { "DocsId": "P:System.Drawing.Drawing2D.AdjustableArrowCap.MiddleInset", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/AdjustableArrowCap.cs#L58C13-L60C32" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/AdjustableArrowCap.cs#L58C13-L60C32" }, { "DocsId": "P:System.Drawing.Drawing2D.AdjustableArrowCap.Filled", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/AdjustableArrowCap.cs#L74C13-L76C29" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/AdjustableArrowCap.cs#L74C13-L76C29" } ], "DocsId": "T:System.Drawing.Drawing2D.AdjustableArrowCap", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/AdjustableArrowCap.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/AdjustableArrowCap.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Drawing2D.Blend.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Blend.cs#L8C5-L12C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Blend.cs#L8C5-L12C6" }, { "DocsId": "M:System.Drawing.Drawing2D.Blend.#ctor(System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Blend.cs#L14C5-L18C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Blend.cs#L14C5-L18C6" }, { "DocsId": "P:System.Drawing.Drawing2D.Blend.Factors", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Blend.cs#L20C30-L20C34" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Blend.cs#L20C30-L20C34" }, { "DocsId": "P:System.Drawing.Drawing2D.Blend.Positions", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Blend.cs#L22C32-L22C36" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Blend.cs#L22C32-L22C36" } ], "DocsId": "T:System.Drawing.Drawing2D.Blend", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Blend.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Blend.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Drawing2D.ColorBlend.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/ColorBlend.cs#L8C5-L12C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/ColorBlend.cs#L8C5-L12C6" }, { "DocsId": "M:System.Drawing.Drawing2D.ColorBlend.#ctor(System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/ColorBlend.cs#L14C5-L18C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/ColorBlend.cs#L14C5-L18C6" }, { "DocsId": "P:System.Drawing.Drawing2D.ColorBlend.Colors", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/ColorBlend.cs#L20C29-L20C33" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/ColorBlend.cs#L20C29-L20C33" }, { "DocsId": "P:System.Drawing.Drawing2D.ColorBlend.Positions", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/ColorBlend.cs#L22C32-L22C36" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/ColorBlend.cs#L22C32-L22C36" } ], "DocsId": "T:System.Drawing.Drawing2D.ColorBlend", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/ColorBlend.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/ColorBlend.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Drawing2D.CombineMode.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CombineMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CombineMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.CombineMode.Replace", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CombineMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CombineMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.CombineMode.Intersect", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CombineMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CombineMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.CombineMode.Union", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CombineMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CombineMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.CombineMode.Xor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CombineMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CombineMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.CombineMode.Exclude", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CombineMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CombineMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.CombineMode.Complement", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CombineMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CombineMode.cs" } ], "DocsId": "T:System.Drawing.Drawing2D.CombineMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CombineMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CombineMode.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Drawing2D.CompositingMode.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.CompositingMode.SourceOver", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.CompositingMode.SourceCopy", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingMode.cs" } ], "DocsId": "T:System.Drawing.Drawing2D.CompositingMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingMode.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Drawing2D.CompositingQuality.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingQuality.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingQuality.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.CompositingQuality.Invalid", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingQuality.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingQuality.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.CompositingQuality.Default", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingQuality.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingQuality.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.CompositingQuality.HighSpeed", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingQuality.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingQuality.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.CompositingQuality.HighQuality", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingQuality.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingQuality.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.CompositingQuality.GammaCorrected", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingQuality.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingQuality.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.CompositingQuality.AssumeLinear", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingQuality.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingQuality.cs" } ], "DocsId": "T:System.Drawing.Drawing2D.CompositingQuality", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingQuality.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingQuality.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Drawing2D.CoordinateSpace.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CoordinateSpace.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CoordinateSpace.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.CoordinateSpace.World", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CoordinateSpace.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CoordinateSpace.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.CoordinateSpace.Page", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CoordinateSpace.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CoordinateSpace.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.CoordinateSpace.Device", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CoordinateSpace.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CoordinateSpace.cs" } ], "DocsId": "T:System.Drawing.Drawing2D.CoordinateSpace", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CoordinateSpace.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CoordinateSpace.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Drawing2D.CustomLineCap.#ctor(System.Drawing.Drawing2D.GraphicsPath,System.Drawing.Drawing2D.GraphicsPath)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L15C78-L15C122" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L15C78-L15C122" }, { "DocsId": "M:System.Drawing.Drawing2D.CustomLineCap.#ctor(System.Drawing.Drawing2D.GraphicsPath,System.Drawing.Drawing2D.GraphicsPath,System.Drawing.Drawing2D.LineCap)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L17C95-L17C137" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L17C95-L17C137" }, { "DocsId": "M:System.Drawing.Drawing2D.CustomLineCap.#ctor(System.Drawing.Drawing2D.GraphicsPath,System.Drawing.Drawing2D.GraphicsPath,System.Drawing.Drawing2D.LineCap,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L19C5-L30C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L19C5-L30C6" }, { "DocsId": "M:System.Drawing.Drawing2D.CustomLineCap.Dispose", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L66C9-L68C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L66C9-L68C6" }, { "DocsId": "M:System.Drawing.Drawing2D.CustomLineCap.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L72C9-L85C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L72C9-L85C6" }, { "DocsId": "M:System.Drawing.Drawing2D.CustomLineCap.Finalize", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L87C25-L87C39" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L87C25-L16707566C0" }, { "DocsId": "M:System.Drawing.Drawing2D.CustomLineCap.Clone", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L89C30-L89C41" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L89C30-L89C41" }, { "DocsId": "M:System.Drawing.Drawing2D.CustomLineCap.SetStrokeCaps(System.Drawing.Drawing2D.LineCap,System.Drawing.Drawing2D.LineCap)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L101C9-L103C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L101C9-L103C6" }, { "DocsId": "M:System.Drawing.Drawing2D.CustomLineCap.GetStrokeCaps(System.Drawing.Drawing2D.LineCap@,System.Drawing.Drawing2D.LineCap@)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L106C5-L113C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L106C5-L113C6" }, { "DocsId": "P:System.Drawing.Drawing2D.CustomLineCap.StrokeJoin", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L120C13-L122C29" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L120C13-L122C29" }, { "DocsId": "P:System.Drawing.Drawing2D.CustomLineCap.BaseCap", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L136C13-L138C28" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L136C13-L138C28" }, { "DocsId": "P:System.Drawing.Drawing2D.CustomLineCap.BaseInset", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L152C13-L154C26" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L152C13-L154C26" }, { "DocsId": "P:System.Drawing.Drawing2D.CustomLineCap.WidthScale", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L168C13-L170C31" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L168C13-L170C31" } ], "DocsId": "T:System.Drawing.Drawing2D.CustomLineCap", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Drawing2D.DashStyle.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/DashStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/DashStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.DashStyle.Solid", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/DashStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/DashStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.DashStyle.Dash", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/DashStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/DashStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.DashStyle.Dot", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/DashStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/DashStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.DashStyle.DashDot", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/DashStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/DashStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.DashStyle.DashDotDot", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/DashStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/DashStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.DashStyle.Custom", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/DashStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/DashStyle.cs" } ], "DocsId": "T:System.Drawing.Drawing2D.DashStyle", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/DashStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/DashStyle.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Drawing2D.FillMode.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/FillMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/FillMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.FillMode.Alternate", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/FillMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/FillMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.FillMode.Winding", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/FillMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/FillMode.cs" } ], "DocsId": "T:System.Drawing.Drawing2D.FillMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/FillMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/FillMode.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Drawing2D.FlushIntention.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/FlushIntention.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/FlushIntention.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.FlushIntention.Flush", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/FlushIntention.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/FlushIntention.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.FlushIntention.Sync", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/FlushIntention.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/FlushIntention.cs" } ], "DocsId": "T:System.Drawing.Drawing2D.FlushIntention", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/FlushIntention.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/FlushIntention.cs" }, { "Members": [], "DocsId": "T:System.Drawing.Drawing2D.GraphicsContainer", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsContainer.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsContainer.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L16C29-L16C57" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L16C29-L16C57" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.#ctor(System.Drawing.Drawing2D.FillMode)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L19C5-L24C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L19C5-L24C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.#ctor(System.Drawing.PointF[],System.Byte[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L27C55-L27C95" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L27C55-L27C95" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.#ctor(System.Drawing.PointF[],System.Byte[],System.Drawing.Drawing2D.FillMode)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L31C11-L33C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L31C11-L33C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.#ctor(System.Drawing.Point[],System.Byte[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L58C54-L58C94" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L58C54-L58C94" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.#ctor(System.Drawing.Point[],System.Byte[],System.Drawing.Drawing2D.FillMode)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L69C11-L69C91" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L69C11-L69C91" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.Clone", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L96C9-L98C39" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L96C9-L98C39" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.Dispose", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L111C9-L113C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L111C9-L113C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.Finalize", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L140C24-L140C49" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L140C24-L16707566C0" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.Reset", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L144C9-L146C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L144C9-L146C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.StartFigure", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L202C9-L204C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L202C9-L204C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.CloseFigure", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L208C9-L210C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L208C9-L210C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.CloseAllFigures", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L214C9-L216C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L214C9-L216C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.SetMarkers", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L220C9-L222C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L220C9-L222C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.ClearMarkers", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L226C9-L228C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L226C9-L228C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.Reverse", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L232C9-L234C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L232C9-L234C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.GetLastPoint", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L239C9-L241C22" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L239C9-L241C22" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.IsVisible(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L244C48-L244C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L244C48-L244C81" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.IsVisible(System.Drawing.PointF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L246C44-L246C66" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L246C44-L246C66" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.IsVisible(System.Single,System.Single,System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L251C9-L259C26" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L251C9-L259C26" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.IsVisible(System.Drawing.PointF,System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L262C61-L262C92" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L262C61-L262C92" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.IsVisible(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L264C44-L264C72" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L264C44-L264C72" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.IsVisible(System.Drawing.Point)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L266C43-L266C73" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L266C43-L266C73" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.IsVisible(System.Int32,System.Int32,System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L268C64-L268C96" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L268C64-L268C96" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.IsVisible(System.Drawing.Point,System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L270C60-L270C91" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L270C60-L270C91" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.IsOutlineVisible(System.Single,System.Single,System.Drawing.Pen)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L272C64-L272C109" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L272C64-L272C109" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.IsOutlineVisible(System.Drawing.PointF,System.Drawing.Pen)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L274C60-L274C94" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L274C60-L274C94" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.IsOutlineVisible(System.Single,System.Single,System.Drawing.Pen,System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L278C9-L290C26" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L278C9-L290C26" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.IsOutlineVisible(System.Drawing.PointF,System.Drawing.Pen,System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L293C77-L293C120" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L293C77-L293C120" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.IsOutlineVisible(System.Int32,System.Int32,System.Drawing.Pen)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L295C60-L295C104" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L295C60-L295C104" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.IsOutlineVisible(System.Drawing.Point,System.Drawing.Pen)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L297C59-L297C93" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L297C59-L297C93" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.IsOutlineVisible(System.Int32,System.Int32,System.Drawing.Pen,System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L299C80-L299C124" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L299C80-L299C124" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.IsOutlineVisible(System.Drawing.Point,System.Drawing.Pen,System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L301C76-L301C119" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L301C76-L301C119" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddLine(System.Drawing.PointF,System.Drawing.PointF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L303C52-L303C87" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L303C52-L303C87" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddLine(System.Single,System.Single,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L307C9-L309C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L307C9-L309C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddLines(System.Drawing.PointF[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L324C53-L324C94" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L324C53-L324C94" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddLine(System.Drawing.Point,System.Drawing.Point)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L346C50-L346C92" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L346C50-L346C92" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddLine(System.Int32,System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L348C60-L348C90" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L348C60-L348C90" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddLines(System.Drawing.Point[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L351C52-L351C93" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L351C52-L351C93" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddArc(System.Drawing.RectangleF,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L374C9-L374C80" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L374C9-L374C80" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddArc(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L378C9-L380C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L378C9-L380C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddArc(System.Drawing.Rectangle,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L383C9-L383C80" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L383C9-L383C80" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddArc(System.Int32,System.Int32,System.Int32,System.Int32,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L386C9-L386C67" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L386C9-L386C67" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddBezier(System.Drawing.PointF,System.Drawing.PointF,System.Drawing.PointF,System.Drawing.PointF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L389C9-L389C74" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L389C9-L389C74" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddBezier(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L393C9-L395C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L393C9-L395C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddBeziers(System.Drawing.PointF[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L401C55-L401C98" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L401C55-L401C98" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddBezier(System.Drawing.Point,System.Drawing.Point,System.Drawing.Point,System.Drawing.Point)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L419C9-L419C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L419C9-L419C81" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddBezier(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L422C9-L422C57" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L422C9-L422C57" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddBeziers(System.Drawing.Point[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L425C54-L425C97" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L425C54-L425C97" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddCurve(System.Drawing.PointF[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L446C53-L446C84" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L446C53-L446C84" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddCurve(System.Drawing.PointF[],System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L449C61-L449C95" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L449C61-L449C95" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddCurve(System.Drawing.PointF[],System.Int32,System.Int32,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L467C16-L479C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L467C16-L479C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddCurve(System.Drawing.Point[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L507C52-L507C83" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L507C52-L507C83" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddCurve(System.Drawing.Point[],System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L510C60-L510C94" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L510C60-L510C94" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddCurve(System.Drawing.Point[],System.Int32,System.Int32,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L515C16-L527C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L515C16-L527C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddClosedCurve(System.Drawing.PointF[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L555C59-L555C87" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L555C59-L555C87" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddClosedCurve(System.Drawing.PointF[],System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L558C67-L558C123" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L558C67-L558C123" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddClosedCurve(System.Drawing.Point[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L581C58-L581C86" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L581C58-L581C86" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddClosedCurve(System.Drawing.Point[],System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L588C66-L588C122" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L588C66-L588C122" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddRectangle(System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L612C9-L616C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L612C9-L616C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddRectangles(System.Drawing.RectangleF[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L622C61-L622C106" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L622C61-L622C106" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddRectangle(System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L639C49-L639C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L639C49-L639C79" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddRectangles(System.Drawing.Rectangle[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L642C53-L642C98" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L642C53-L642C98" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddEllipse(System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L701C9-L701C60" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L701C9-L701C60" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddEllipse(System.Single,System.Single,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L705C9-L707C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L705C9-L707C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddEllipse(System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L709C47-L709C98" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L709C47-L709C98" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddEllipse(System.Int32,System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L711C68-L711C106" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L711C68-L711C106" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddPie(System.Drawing.Rectangle,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L714C9-L714C87" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L714C9-L714C87" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddPie(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L718C9-L725C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L718C9-L725C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddPie(System.Int32,System.Int32,System.Int32,System.Int32,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L728C9-L728C67" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L728C9-L728C67" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddPolygon(System.Drawing.PointF[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L731C48-L731C91" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L731C48-L731C91" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddPolygon(System.Drawing.Point[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L752C47-L752C90" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L752C47-L752C90" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddPath(System.Drawing.Drawing2D.GraphicsPath,System.Boolean)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L771C9-L775C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L771C9-L775C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddString(System.String,System.Drawing.FontFamily,System.Int32,System.Single,System.Drawing.PointF,System.Drawing.StringFormat)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L778C9-L778C94" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L778C9-L778C94" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddString(System.String,System.Drawing.FontFamily,System.Int32,System.Single,System.Drawing.Point,System.Drawing.StringFormat)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L781C9-L781C93" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L781C9-L781C93" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddString(System.String,System.Drawing.FontFamily,System.Int32,System.Single,System.Drawing.RectangleF,System.Drawing.StringFormat)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L785C9-L803C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L785C9-L803C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddString(System.String,System.Drawing.FontFamily,System.Int32,System.Single,System.Drawing.Rectangle,System.Drawing.StringFormat)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L806C12-L806C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L806C12-L806C79" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.Transform(System.Drawing.Drawing2D.Matrix)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L810C9-L814C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L810C9-L814C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.GetBounds", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L816C38-L816C53" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L816C38-L816C53" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.GetBounds(System.Drawing.Drawing2D.Matrix)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L818C52-L818C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L818C52-L818C75" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.GetBounds(System.Drawing.Drawing2D.Matrix,System.Drawing.Pen)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L823C9-L832C23" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L823C9-L832C23" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.Flatten", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L835C30-L835C43" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L835C30-L835C43" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.Flatten(System.Drawing.Drawing2D.Matrix)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L837C44-L837C66" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L837C44-L837C66" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.Flatten(System.Drawing.Drawing2D.Matrix,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L841C9-L843C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L841C9-L843C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.Widen(System.Drawing.Pen)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L845C35-L845C61" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L845C35-L845C61" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.Widen(System.Drawing.Pen,System.Drawing.Drawing2D.Matrix)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L847C51-L847C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L847C51-L847C79" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.Widen(System.Drawing.Pen,System.Drawing.Drawing2D.Matrix,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L851C9-L862C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L851C9-L862C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.Warp(System.Drawing.PointF[],System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L865C66-L865C97" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L865C66-L865C97" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.Warp(System.Drawing.PointF[],System.Drawing.RectangleF,System.Drawing.Drawing2D.Matrix)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L869C9-L869C64" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L869C9-L869C64" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.Warp(System.Drawing.PointF[],System.Drawing.RectangleF,System.Drawing.Drawing2D.Matrix,System.Drawing.Drawing2D.WarpMode)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L873C9-L873C59" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L873C9-L873C59" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.Warp(System.Drawing.PointF[],System.Drawing.RectangleF,System.Drawing.Drawing2D.Matrix,System.Drawing.Drawing2D.WarpMode,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L877C9-L877C87" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L877C9-L877C87" }, { "DocsId": "P:System.Drawing.Drawing2D.GraphicsPath.FillMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L153C13-L155C39" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L153C13-L155C39" }, { "DocsId": "P:System.Drawing.Drawing2D.GraphicsPath.PathData", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L171C13-L196C29" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L171C13-L196C29" }, { "DocsId": "P:System.Drawing.Drawing2D.GraphicsPath.PointCount", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L929C13-L931C26" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L929C13-L931C26" }, { "DocsId": "P:System.Drawing.Drawing2D.GraphicsPath.PathTypes", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L939C13-L947C26" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L939C13-L947C26" }, { "DocsId": "P:System.Drawing.Drawing2D.GraphicsPath.PathPoints", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L984C13-L992C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L984C13-L992C27" } ], "DocsId": "T:System.Drawing.Drawing2D.GraphicsPath", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPathIterator.#ctor(System.Drawing.Drawing2D.GraphicsPath)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L11C5-L17C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L11C5-L17C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPathIterator.Dispose", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L21C9-L23C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L21C9-L23C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPathIterator.Finalize", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L55C32-L55C46" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L55C32-L16707566C0" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPathIterator.NextSubpath(System.Int32@,System.Int32@,System.Boolean@)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L58C5-L67C32" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L58C5-L67C32" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPathIterator.NextSubpath(System.Drawing.Drawing2D.GraphicsPath,System.Boolean@)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L75C9-L78C28" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L75C9-L78C28" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPathIterator.NextPathType(System.Byte@,System.Int32@,System.Int32@)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L82C5-L90C32" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L82C5-L90C32" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPathIterator.NextMarker(System.Int32@,System.Int32@)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L95C5-L102C32" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L95C5-L102C32" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPathIterator.NextMarker(System.Drawing.Drawing2D.GraphicsPath)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L109C9-L111C28" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L109C9-L111C28" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPathIterator.HasCurve", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L139C9-L141C25" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L139C9-L141C25" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPathIterator.Rewind", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L146C9-L148C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L146C9-L148C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPathIterator.Enumerate(System.Drawing.PointF[]@,System.Byte[]@)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L152C9-L170C32" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L152C9-L170C32" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPathIterator.CopyData(System.Drawing.PointF[]@,System.Byte[]@,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L176C9-L192C32" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L176C9-L192C32" }, { "DocsId": "P:System.Drawing.Drawing2D.GraphicsPathIterator.Count", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L119C13-L121C32" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L119C13-L121C32" }, { "DocsId": "P:System.Drawing.Drawing2D.GraphicsPathIterator.SubpathCount", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L130C13-L132C32" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L130C13-L132C32" } ], "DocsId": "T:System.Drawing.Drawing2D.GraphicsPathIterator", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs" }, { "Members": [], "DocsId": "T:System.Drawing.Drawing2D.GraphicsState", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsState.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsState.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Drawing2D.HatchBrush.#ctor(System.Drawing.Drawing2D.HatchStyle,System.Drawing.Color)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchBrush.cs#L9C11-L11C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchBrush.cs#L9C11-L11C6" }, { "DocsId": "M:System.Drawing.Drawing2D.HatchBrush.#ctor(System.Drawing.Drawing2D.HatchStyle,System.Drawing.Color,System.Drawing.Color)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchBrush.cs#L13C5-L23C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchBrush.cs#L13C5-L23C6" }, { "DocsId": "M:System.Drawing.Drawing2D.HatchBrush.Clone", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchBrush.cs#L34C9-L36C54" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchBrush.cs#L34C9-L36C54" }, { "DocsId": "P:System.Drawing.Drawing2D.HatchBrush.HatchStyle", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchBrush.cs#L44C13-L46C43" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchBrush.cs#L44C13-L46C43" }, { "DocsId": "P:System.Drawing.Drawing2D.HatchBrush.ForegroundColor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchBrush.cs#L55C13-L57C35" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchBrush.cs#L55C13-L57C35" }, { "DocsId": "P:System.Drawing.Drawing2D.HatchBrush.BackgroundColor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchBrush.cs#L66C13-L68C35" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchBrush.cs#L66C13-L68C35" } ], "DocsId": "T:System.Drawing.Drawing2D.HatchBrush", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchBrush.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchBrush.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Horizontal", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Vertical", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.ForwardDiagonal", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.BackwardDiagonal", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Cross", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.DiagonalCross", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Percent05", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Percent10", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Percent20", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Percent25", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Percent30", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Percent40", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Percent50", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Percent60", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Percent70", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Percent75", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Percent80", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Percent90", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.LightDownwardDiagonal", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.LightUpwardDiagonal", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.DarkDownwardDiagonal", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.DarkUpwardDiagonal", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.WideDownwardDiagonal", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.WideUpwardDiagonal", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.LightVertical", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.LightHorizontal", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.NarrowVertical", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.NarrowHorizontal", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.DarkVertical", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.DarkHorizontal", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.DashedDownwardDiagonal", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.DashedUpwardDiagonal", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.DashedHorizontal", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.DashedVertical", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.SmallConfetti", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.LargeConfetti", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.ZigZag", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Wave", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.DiagonalBrick", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.HorizontalBrick", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Weave", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Plaid", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Divot", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.DottedGrid", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.DottedDiamond", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Shingle", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Trellis", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Sphere", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.SmallGrid", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.SmallCheckerBoard", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.LargeCheckerBoard", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.OutlinedDiamond", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.SolidDiamond", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.LargeGrid", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Min", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Max", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" } ], "DocsId": "T:System.Drawing.Drawing2D.HatchStyle", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Drawing2D.InterpolationMode.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/InterpolationMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/InterpolationMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.InterpolationMode.Invalid", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/InterpolationMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/InterpolationMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.InterpolationMode.Default", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/InterpolationMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/InterpolationMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.InterpolationMode.Low", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/InterpolationMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/InterpolationMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.InterpolationMode.High", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/InterpolationMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/InterpolationMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.InterpolationMode.Bilinear", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/InterpolationMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/InterpolationMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.InterpolationMode.Bicubic", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/InterpolationMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/InterpolationMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.InterpolationMode.NearestNeighbor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/InterpolationMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/InterpolationMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.InterpolationMode.HighQualityBilinear", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/InterpolationMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/InterpolationMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.InterpolationMode.HighQualityBicubic", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/InterpolationMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/InterpolationMode.cs" } ], "DocsId": "T:System.Drawing.Drawing2D.InterpolationMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/InterpolationMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/InterpolationMode.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Drawing2D.LinearGradientBrush.#ctor(System.Drawing.PointF,System.Drawing.PointF,System.Drawing.Color,System.Drawing.Color)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L12C5-L22C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L12C5-L22C6" }, { "DocsId": "M:System.Drawing.Drawing2D.LinearGradientBrush.#ctor(System.Drawing.Point,System.Drawing.Point,System.Drawing.Color,System.Drawing.Color)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L25C11-L27C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L25C11-L27C6" }, { "DocsId": "M:System.Drawing.Drawing2D.LinearGradientBrush.#ctor(System.Drawing.RectangleF,System.Drawing.Color,System.Drawing.Color,System.Drawing.Drawing2D.LinearGradientMode)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L29C5-L47C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L29C5-L47C6" }, { "DocsId": "M:System.Drawing.Drawing2D.LinearGradientBrush.#ctor(System.Drawing.Rectangle,System.Drawing.Color,System.Drawing.Color,System.Drawing.Drawing2D.LinearGradientMode)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L50C11-L52C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L50C11-L52C6" }, { "DocsId": "M:System.Drawing.Drawing2D.LinearGradientBrush.#ctor(System.Drawing.RectangleF,System.Drawing.Color,System.Drawing.Color,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L55C11-L57C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L55C11-L57C6" }, { "DocsId": "M:System.Drawing.Drawing2D.LinearGradientBrush.#ctor(System.Drawing.RectangleF,System.Drawing.Color,System.Drawing.Color,System.Single,System.Boolean)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L59C5-L75C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L59C5-L75C6" }, { "DocsId": "M:System.Drawing.Drawing2D.LinearGradientBrush.#ctor(System.Drawing.Rectangle,System.Drawing.Color,System.Drawing.Color,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L78C11-L80C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L78C11-L80C6" }, { "DocsId": "M:System.Drawing.Drawing2D.LinearGradientBrush.#ctor(System.Drawing.Rectangle,System.Drawing.Color,System.Drawing.Color,System.Single,System.Boolean)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L83C11-L85C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L83C11-L85C6" }, { "DocsId": "M:System.Drawing.Drawing2D.LinearGradientBrush.Clone", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L98C9-L100C70" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L98C9-L100C70" }, { "DocsId": "M:System.Drawing.Drawing2D.LinearGradientBrush.SetSigmaBellShape(System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L196C51-L196C87" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L196C51-L196C87" }, { "DocsId": "M:System.Drawing.Drawing2D.LinearGradientBrush.SetSigmaBellShape(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L200C9-L202C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L200C9-L202C6" }, { "DocsId": "M:System.Drawing.Drawing2D.LinearGradientBrush.SetBlendTriangularShape(System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L204C57-L204C99" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L204C57-L204C99" }, { "DocsId": "M:System.Drawing.Drawing2D.LinearGradientBrush.SetBlendTriangularShape(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L208C9-L211C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L208C9-L211C6" }, { "DocsId": "M:System.Drawing.Drawing2D.LinearGradientBrush.ResetTransform", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L305C9-L307C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L305C9-L307C6" }, { "DocsId": "M:System.Drawing.Drawing2D.LinearGradientBrush.MultiplyTransform(System.Drawing.Drawing2D.Matrix)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L309C53-L309C99" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L309C53-L309C99" }, { "DocsId": "M:System.Drawing.Drawing2D.LinearGradientBrush.MultiplyTransform(System.Drawing.Drawing2D.Matrix,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L313C9-L317C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L313C9-L317C6" }, { "DocsId": "M:System.Drawing.Drawing2D.LinearGradientBrush.TranslateTransform(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L319C59-L319C106" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L319C59-L319C106" }, { "DocsId": "M:System.Drawing.Drawing2D.LinearGradientBrush.TranslateTransform(System.Single,System.Single,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L323C9-L325C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L323C9-L325C6" }, { "DocsId": "M:System.Drawing.Drawing2D.LinearGradientBrush.ScaleTransform(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L327C55-L327C98" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L327C55-L327C98" }, { "DocsId": "M:System.Drawing.Drawing2D.LinearGradientBrush.ScaleTransform(System.Single,System.Single,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L331C9-L333C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L331C9-L333C6" }, { "DocsId": "M:System.Drawing.Drawing2D.LinearGradientBrush.RotateTransform(System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L335C49-L335C92" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L335C49-L335C92" }, { "DocsId": "M:System.Drawing.Drawing2D.LinearGradientBrush.RotateTransform(System.Single,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L339C9-L341C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L339C9-L341C6" }, { "DocsId": "P:System.Drawing.Drawing2D.LinearGradientBrush.LinearColors", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L107C13-L115C15" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L107C13-L115C15" }, { "DocsId": "P:System.Drawing.Drawing2D.LinearGradientBrush.Rectangle", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L129C13-L131C25" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L129C13-L131C25" }, { "DocsId": "P:System.Drawing.Drawing2D.LinearGradientBrush.GammaCorrection", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L140C13-L142C39" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L140C13-L142C39" }, { "DocsId": "P:System.Drawing.Drawing2D.LinearGradientBrush.Blend", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L158C13-L176C30" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L158C13-L176C30" }, { "DocsId": "P:System.Drawing.Drawing2D.LinearGradientBrush.InterpolationColors", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L218C13-L241C10" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L218C13-L241C10" }, { "DocsId": "P:System.Drawing.Drawing2D.LinearGradientBrush.WrapMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L271C13-L273C25" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L271C13-L273C25" }, { "DocsId": "P:System.Drawing.Drawing2D.LinearGradientBrush.Transform", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L289C13-L292C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L289C13-L292C27" } ], "DocsId": "T:System.Drawing.Drawing2D.LinearGradientBrush", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Drawing2D.LinearGradientMode.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.LinearGradientMode.Horizontal", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.LinearGradientMode.Vertical", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.LinearGradientMode.ForwardDiagonal", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.LinearGradientMode.BackwardDiagonal", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientMode.cs" } ], "DocsId": "T:System.Drawing.Drawing2D.LinearGradientMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientMode.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Drawing2D.LineCap.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.LineCap.Flat", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.LineCap.Square", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.LineCap.Round", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.LineCap.Triangle", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.LineCap.NoAnchor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.LineCap.SquareAnchor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.LineCap.RoundAnchor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.LineCap.DiamondAnchor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.LineCap.ArrowAnchor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.LineCap.Custom", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.LineCap.AnchorMask", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" } ], "DocsId": "T:System.Drawing.Drawing2D.LineCap", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Drawing2D.LineJoin.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineJoin.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineJoin.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.LineJoin.Miter", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineJoin.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineJoin.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.LineJoin.Bevel", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineJoin.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineJoin.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.LineJoin.Round", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineJoin.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineJoin.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.LineJoin.MiterClipped", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineJoin.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineJoin.cs" } ], "DocsId": "T:System.Drawing.Drawing2D.LineJoin", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineJoin.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineJoin.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Drawing2D.Matrix.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L12C5-L17C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L12C5-L17C6" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.#ctor(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L19C5-L24C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L19C5-L24C6" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.#ctor(System.Numerics.Matrix3x2)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L30C39-L32C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L30C39-L32C6" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.#ctor(System.Drawing.RectangleF,System.Drawing.PointF[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L51C5-L63C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L51C5-L63C6" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.#ctor(System.Drawing.Rectangle,System.Drawing.Point[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L65C5-L77C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L65C5-L77C6" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.Dispose", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L81C9-L83C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L81C9-L83C6" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.Finalize", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L98C18-L98C35" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L98C18-L16707566C0" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.Clone", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L103C9-L105C35" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L103C9-L105C35" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.Reset", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L172C9-L178C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L172C9-L178C6" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.Multiply(System.Drawing.Drawing2D.Matrix)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L180C44-L180C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L180C44-L180C81" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.Multiply(System.Drawing.Drawing2D.Matrix,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L184C9-L192C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L184C9-L192C6" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.Translate(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L194C60-L194C108" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L194C60-L194C108" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.Translate(System.Single,System.Single,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L198C9-L200C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L198C9-L200C6" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.Scale(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L202C54-L202C96" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L202C54-L202C96" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.Scale(System.Single,System.Single,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L206C9-L208C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L206C9-L208C6" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.Rotate(System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L210C40-L210C74" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L210C40-L210C74" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.Rotate(System.Single,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L214C9-L216C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L214C9-L216C6" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.RotateAt(System.Single,System.Drawing.PointF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L218C56-L218C99" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L218C56-L218C99" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.RotateAt(System.Single,System.Drawing.PointF,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L222C9-L237C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L222C9-L237C6" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.Shear(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L241C9-L243C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L241C9-L243C6" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.Shear(System.Single,System.Single,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L247C9-L249C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L247C9-L249C6" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.Invert", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L253C9-L255C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L253C9-L255C6" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.TransformPoints(System.Drawing.PointF[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L259C9-L270C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L259C9-L270C6" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.TransformPoints(System.Drawing.Point[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L274C9-L285C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L274C9-L285C6" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.TransformVectors(System.Drawing.PointF[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L289C9-L300C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L289C9-L300C6" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.VectorTransformPoints(System.Drawing.Point[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L302C55-L302C76" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L302C55-L302C76" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.TransformVectors(System.Drawing.Point[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L306C9-L317C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L306C9-L317C6" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L343C9-L354C22" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L343C9-L354C22" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.GetHashCode", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L357C42-L357C60" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L357C42-L357C60" }, { "DocsId": "P:System.Drawing.Drawing2D.Matrix.Elements", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L112C13-L114C29" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L112C13-L114C29" }, { "DocsId": "P:System.Drawing.Drawing2D.Matrix.MatrixElements", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L125C13-L128C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L125C13-L128C27" }, { "DocsId": "P:System.Drawing.Drawing2D.Matrix.OffsetX", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L156C29-L156C37" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L156C29-L156C37" }, { "DocsId": "P:System.Drawing.Drawing2D.Matrix.OffsetY", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L158C29-L158C37" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L158C29-L158C37" }, { "DocsId": "P:System.Drawing.Drawing2D.Matrix.IsInvertible", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L324C13-L326C31" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L324C13-L326C31" }, { "DocsId": "P:System.Drawing.Drawing2D.Matrix.IsIdentity", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L335C13-L337C29" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L335C13-L337C29" } ], "DocsId": "T:System.Drawing.Drawing2D.Matrix", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Drawing2D.MatrixOrder.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/MatrixOrder.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/MatrixOrder.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.MatrixOrder.Prepend", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/MatrixOrder.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/MatrixOrder.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.MatrixOrder.Append", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/MatrixOrder.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/MatrixOrder.cs" } ], "DocsId": "T:System.Drawing.Drawing2D.MatrixOrder", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/MatrixOrder.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/MatrixOrder.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Drawing2D.PathData.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathData.cs#L8C5-L8C26" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathData.cs#L8C5-L8C26" }, { "DocsId": "P:System.Drawing.Drawing2D.PathData.Points", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathData.cs#L10C31-L10C35" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathData.cs#L10C31-L10C35" }, { "DocsId": "P:System.Drawing.Drawing2D.PathData.Types", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathData.cs#L12C28-L12C32" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathData.cs#L12C28-L12C32" } ], "DocsId": "T:System.Drawing.Drawing2D.PathData", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathData.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathData.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Drawing2D.PathGradientBrush.#ctor(System.Drawing.PointF[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L10C49-L10C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L10C49-L10C81" }, { "DocsId": "M:System.Drawing.Drawing2D.PathGradientBrush.#ctor(System.Drawing.PointF[],System.Drawing.Drawing2D.WrapMode)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L12C5-L33C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L12C5-L33C6" }, { "DocsId": "M:System.Drawing.Drawing2D.PathGradientBrush.#ctor(System.Drawing.Point[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L35C48-L35C80" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L35C48-L35C80" }, { "DocsId": "M:System.Drawing.Drawing2D.PathGradientBrush.#ctor(System.Drawing.Point[],System.Drawing.Drawing2D.WrapMode)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L37C5-L58C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L37C5-L58C6" }, { "DocsId": "M:System.Drawing.Drawing2D.PathGradientBrush.#ctor(System.Drawing.Drawing2D.GraphicsPath)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L60C5-L66C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L60C5-L66C6" }, { "DocsId": "M:System.Drawing.Drawing2D.PathGradientBrush.Clone", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L79C9-L81C68" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L79C9-L81C68" }, { "DocsId": "M:System.Drawing.Drawing2D.PathGradientBrush.SetSigmaBellShape(System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L208C51-L208C87" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L208C51-L208C87" }, { "DocsId": "M:System.Drawing.Drawing2D.PathGradientBrush.SetSigmaBellShape(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L212C9-L214C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L212C9-L214C6" }, { "DocsId": "M:System.Drawing.Drawing2D.PathGradientBrush.SetBlendTriangularShape(System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L216C57-L216C99" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L216C57-L216C99" }, { "DocsId": "M:System.Drawing.Drawing2D.PathGradientBrush.SetBlendTriangularShape(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L220C9-L222C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L220C9-L222C6" }, { "DocsId": "M:System.Drawing.Drawing2D.PathGradientBrush.ResetTransform", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L295C9-L297C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L295C9-L297C6" }, { "DocsId": "M:System.Drawing.Drawing2D.PathGradientBrush.MultiplyTransform(System.Drawing.Drawing2D.Matrix)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L299C53-L299C99" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L299C53-L299C99" }, { "DocsId": "M:System.Drawing.Drawing2D.PathGradientBrush.MultiplyTransform(System.Drawing.Drawing2D.Matrix,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L303C9-L311C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L303C9-L311C6" }, { "DocsId": "M:System.Drawing.Drawing2D.PathGradientBrush.TranslateTransform(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L313C59-L313C106" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L313C59-L313C106" }, { "DocsId": "M:System.Drawing.Drawing2D.PathGradientBrush.TranslateTransform(System.Single,System.Single,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L317C9-L319C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L317C9-L319C6" }, { "DocsId": "M:System.Drawing.Drawing2D.PathGradientBrush.ScaleTransform(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L321C55-L321C98" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L321C55-L321C98" }, { "DocsId": "M:System.Drawing.Drawing2D.PathGradientBrush.ScaleTransform(System.Single,System.Single,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L325C9-L327C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L325C9-L327C6" }, { "DocsId": "M:System.Drawing.Drawing2D.PathGradientBrush.RotateTransform(System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L329C49-L329C92" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L329C49-L329C92" }, { "DocsId": "M:System.Drawing.Drawing2D.PathGradientBrush.RotateTransform(System.Single,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L333C9-L335C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L333C9-L335C6" }, { "DocsId": "P:System.Drawing.Drawing2D.PathGradientBrush.CenterColor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L89C13-L91C25" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L89C13-L91C25" }, { "DocsId": "P:System.Drawing.Drawing2D.PathGradientBrush.SurroundColors", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L105C13-L115C10" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L105C13-L115C10" }, { "DocsId": "P:System.Drawing.Drawing2D.PathGradientBrush.CenterPoint", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L139C13-L141C26" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L139C13-L141C26" }, { "DocsId": "P:System.Drawing.Drawing2D.PathGradientBrush.Rectangle", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L155C13-L157C25" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L155C13-L157C25" }, { "DocsId": "P:System.Drawing.Drawing2D.PathGradientBrush.Blend", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L167C13-L187C26" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L167C13-L187C26" }, { "DocsId": "P:System.Drawing.Drawing2D.PathGradientBrush.InterpolationColors", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L230C13-L253C10" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L230C13-L253C10" }, { "DocsId": "P:System.Drawing.Drawing2D.PathGradientBrush.Transform", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L279C13-L282C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L279C13-L282C27" }, { "DocsId": "P:System.Drawing.Drawing2D.PathGradientBrush.FocusScales", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L343C13-L345C47" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L343C13-L345C47" }, { "DocsId": "P:System.Drawing.Drawing2D.PathGradientBrush.WrapMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L359C13-L361C25" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L359C13-L361C25" } ], "DocsId": "T:System.Drawing.Drawing2D.PathGradientBrush", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Drawing2D.PathPointType.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathPointType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathPointType.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PathPointType.Start", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathPointType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathPointType.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PathPointType.Line", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathPointType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathPointType.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PathPointType.Bezier", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathPointType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathPointType.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PathPointType.PathTypeMask", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathPointType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathPointType.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PathPointType.DashMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathPointType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathPointType.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PathPointType.PathMarker", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathPointType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathPointType.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PathPointType.CloseSubpath", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathPointType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathPointType.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PathPointType.Bezier3", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathPointType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathPointType.cs" } ], "DocsId": "T:System.Drawing.Drawing2D.PathPointType", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathPointType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathPointType.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Drawing2D.PenAlignment.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenAlignment.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenAlignment.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PenAlignment.Center", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenAlignment.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenAlignment.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PenAlignment.Inset", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenAlignment.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenAlignment.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PenAlignment.Outset", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenAlignment.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenAlignment.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PenAlignment.Left", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenAlignment.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenAlignment.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PenAlignment.Right", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenAlignment.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenAlignment.cs" } ], "DocsId": "T:System.Drawing.Drawing2D.PenAlignment", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenAlignment.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenAlignment.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Drawing2D.PenType.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenType.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PenType.SolidColor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenType.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PenType.HatchFill", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenType.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PenType.TextureFill", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenType.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PenType.PathGradient", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenType.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PenType.LinearGradient", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenType.cs" } ], "DocsId": "T:System.Drawing.Drawing2D.PenType", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenType.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Drawing2D.PixelOffsetMode.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PixelOffsetMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PixelOffsetMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PixelOffsetMode.Invalid", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PixelOffsetMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PixelOffsetMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PixelOffsetMode.Default", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PixelOffsetMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PixelOffsetMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PixelOffsetMode.HighSpeed", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PixelOffsetMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PixelOffsetMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PixelOffsetMode.HighQuality", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PixelOffsetMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PixelOffsetMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PixelOffsetMode.None", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PixelOffsetMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PixelOffsetMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PixelOffsetMode.Half", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PixelOffsetMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PixelOffsetMode.cs" } ], "DocsId": "T:System.Drawing.Drawing2D.PixelOffsetMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PixelOffsetMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PixelOffsetMode.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Drawing2D.QualityMode.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/QualityMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/QualityMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.QualityMode.Invalid", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/QualityMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/QualityMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.QualityMode.Default", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/QualityMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/QualityMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.QualityMode.Low", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/QualityMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/QualityMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.QualityMode.High", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/QualityMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/QualityMode.cs" } ], "DocsId": "T:System.Drawing.Drawing2D.QualityMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/QualityMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/QualityMode.cs" }, { "Members": [ { "DocsId": "P:System.Drawing.Drawing2D.RegionData.Data", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/RegionData.cs#L10C26-L10C30" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/RegionData.cs#L10C26-L10C30" } ], "DocsId": "T:System.Drawing.Drawing2D.RegionData", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/RegionData.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/RegionData.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Drawing2D.SmoothingMode.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/SmoothingMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/SmoothingMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.SmoothingMode.Invalid", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/SmoothingMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/SmoothingMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.SmoothingMode.Default", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/SmoothingMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/SmoothingMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.SmoothingMode.HighSpeed", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/SmoothingMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/SmoothingMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.SmoothingMode.HighQuality", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/SmoothingMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/SmoothingMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.SmoothingMode.None", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/SmoothingMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/SmoothingMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.SmoothingMode.AntiAlias", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/SmoothingMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/SmoothingMode.cs" } ], "DocsId": "T:System.Drawing.Drawing2D.SmoothingMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/SmoothingMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/SmoothingMode.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Drawing2D.WarpMode.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/WarpMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/WarpMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.WarpMode.Perspective", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/WarpMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/WarpMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.WarpMode.Bilinear", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/WarpMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/WarpMode.cs" } ], "DocsId": "T:System.Drawing.Drawing2D.WarpMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/WarpMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/WarpMode.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Drawing2D.WrapMode.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/WrapMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/WrapMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.WrapMode.Tile", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/WrapMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/WrapMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.WrapMode.TileFlipX", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/WrapMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/WrapMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.WrapMode.TileFlipY", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/WrapMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/WrapMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.WrapMode.TileFlipXY", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/WrapMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/WrapMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.WrapMode.Clamp", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/WrapMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/WrapMode.cs" } ], "DocsId": "T:System.Drawing.Drawing2D.WrapMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/WrapMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/WrapMode.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.FontConverter.FontNameConverter.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L424C9-L427C10" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L424C9-L427C10" }, { "DocsId": "M:System.Drawing.FontConverter.FontNameConverter.System#IDisposable#Dispose", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L431C9-L431C10" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L431C9-L431C10" }, { "DocsId": "M:System.Drawing.FontConverter.FontNameConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L434C13-L434C85" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L434C13-L434C85" }, { "DocsId": "M:System.Drawing.FontConverter.FontNameConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L437C13-L437C116" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L437C13-L437C116" }, { "DocsId": "M:System.Drawing.FontConverter.FontNameConverter.GetStandardValues(System.ComponentModel.ITypeDescriptorContext)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L441C13-L449C57" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L441C13-L449C57" }, { "DocsId": "M:System.Drawing.FontConverter.FontNameConverter.GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L453C93-L453C98" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L453C93-L453C98" }, { "DocsId": "M:System.Drawing.FontConverter.FontNameConverter.GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L456C93-L456C97" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L456C93-L456C97" } ], "DocsId": "T:System.Drawing.FontConverter.FontNameConverter", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.FontConverter.FontUnitConverter.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L489C38-L489C68" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L489C38-L489C68" }, { "DocsId": "M:System.Drawing.FontConverter.FontUnitConverter.GetStandardValues(System.ComponentModel.ITypeDescriptorContext)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L494C13-L503C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L494C13-L503C27" } ], "DocsId": "T:System.Drawing.FontConverter.FontUnitConverter", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Graphics.DrawImageAbort.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" }, { "DocsId": "M:System.Drawing.Graphics.DrawImageAbort.Invoke(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" }, { "DocsId": "M:System.Drawing.Graphics.DrawImageAbort.BeginInvoke(System.IntPtr,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" }, { "DocsId": "M:System.Drawing.Graphics.DrawImageAbort.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" } ], "DocsId": "T:System.Drawing.Graphics.DrawImageAbort", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafileProc.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafileProc.Invoke(System.Drawing.Imaging.EmfPlusRecordType,System.Int32,System.Int32,System.IntPtr,System.Drawing.Imaging.PlayRecordCallback)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafileProc.BeginInvoke(System.Drawing.Imaging.EmfPlusRecordType,System.Int32,System.Int32,System.IntPtr,System.Drawing.Imaging.PlayRecordCallback,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafileProc.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" } ], "DocsId": "T:System.Drawing.Graphics.EnumerateMetafileProc", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Image.GetThumbnailImageAbort.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs" }, { "DocsId": "M:System.Drawing.Image.GetThumbnailImageAbort.Invoke", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs" }, { "DocsId": "M:System.Drawing.Image.GetThumbnailImageAbort.BeginInvoke(System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs" }, { "DocsId": "M:System.Drawing.Image.GetThumbnailImageAbort.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs" } ], "DocsId": "T:System.Drawing.Image.GetThumbnailImageAbort", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PaperSizeCollection.#ctor(System.Drawing.Printing.PaperSize[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs#L21C9-L21C72" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs#L21C9-L21C72" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PaperSizeCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs#L33C47-L33C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs#L33C47-L33C81" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PaperSizeCollection.System#Collections#ICollection#get_Count", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs#L35C34-L35C39" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs#L35C34-L35C39" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PaperSizeCollection.System#Collections#ICollection#get_IsSynchronized", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs#L37C44-L37C49" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs#L37C44-L37C49" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PaperSizeCollection.System#Collections#ICollection#get_SyncRoot", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs#L39C40-L39C44" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs#L39C40-L39C44" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PaperSizeCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs#L41C60-L41C110" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs#L41C60-L41C110" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PaperSizeCollection.CopyTo(System.Drawing.Printing.PaperSize[],System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs#L43C66-L43C121" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs#L43C66-L43C121" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PaperSizeCollection.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs#L45C52-L45C67" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs#L45C52-L45C67" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PaperSizeCollection.Add(System.Drawing.Printing.PaperSize)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs#L50C13-L54C26" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs#L50C13-L54C26" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.PaperSizeCollection.Count", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs#L26C29-L26C42" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs#L26C29-L26C42" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.PaperSizeCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs#L31C53-L31C66" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs#L31C53-L31C66" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.PaperSizeCollection.System#Collections#ICollection#Count", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs#L35C34-L35C39" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs#L35C34-L35C39" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.PaperSizeCollection.System#Collections#ICollection#IsSynchronized", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs#L37C44-L37C49" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs#L37C44-L37C49" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.PaperSizeCollection.System#Collections#ICollection#SyncRoot", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs#L39C40-L39C44" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs#L39C40-L39C44" } ], "DocsId": "T:System.Drawing.Printing.PrinterSettings.PaperSizeCollection", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PaperSourceCollection.#ctor(System.Drawing.Printing.PaperSource[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs#L18C9-L21C10" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs#L18C9-L21C10" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PaperSourceCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs#L33C47-L33C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs#L33C47-L33C81" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PaperSourceCollection.System#Collections#ICollection#get_Count", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs#L35C34-L35C39" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs#L35C34-L35C39" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PaperSourceCollection.System#Collections#ICollection#get_IsSynchronized", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs#L37C44-L37C49" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs#L37C44-L37C49" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PaperSourceCollection.System#Collections#ICollection#get_SyncRoot", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs#L39C40-L39C44" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs#L39C40-L39C44" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PaperSourceCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs#L41C60-L41C110" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs#L41C60-L41C110" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PaperSourceCollection.CopyTo(System.Drawing.Printing.PaperSource[],System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs#L43C70-L43C127" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs#L43C70-L43C127" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PaperSourceCollection.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs#L45C52-L45C67" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs#L45C52-L45C67" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PaperSourceCollection.Add(System.Drawing.Printing.PaperSource)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs#L50C13-L54C26" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs#L50C13-L54C26" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.PaperSourceCollection.Count", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs#L26C29-L26C42" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs#L26C29-L26C42" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.PaperSourceCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs#L31C55-L31C68" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs#L31C55-L31C68" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.PaperSourceCollection.System#Collections#ICollection#Count", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs#L35C34-L35C39" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs#L35C34-L35C39" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.PaperSourceCollection.System#Collections#ICollection#IsSynchronized", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs#L37C44-L37C49" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs#L37C44-L37C49" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.PaperSourceCollection.System#Collections#ICollection#SyncRoot", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs#L39C40-L39C44" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs#L39C40-L39C44" } ], "DocsId": "T:System.Drawing.Printing.PrinterSettings.PaperSourceCollection", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PrinterResolutionCollection.#ctor(System.Drawing.Printing.PrinterResolution[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs#L18C9-L18C88" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs#L18C9-L18C88" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PrinterResolutionCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs#L30C47-L30C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs#L30C47-L30C81" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PrinterResolutionCollection.System#Collections#ICollection#get_Count", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs#L32C34-L32C39" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs#L32C34-L32C39" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PrinterResolutionCollection.System#Collections#ICollection#get_IsSynchronized", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs#L34C44-L34C49" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs#L34C44-L34C49" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PrinterResolutionCollection.System#Collections#ICollection#get_SyncRoot", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs#L36C40-L36C44" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs#L36C40-L36C44" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PrinterResolutionCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs#L38C60-L38C110" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs#L38C60-L38C110" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PrinterResolutionCollection.CopyTo(System.Drawing.Printing.PrinterResolution[],System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs#L40C82-L40C145" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs#L40C82-L40C145" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PrinterResolutionCollection.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs#L42C52-L42C67" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs#L42C52-L42C67" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PrinterResolutionCollection.Add(System.Drawing.Printing.PrinterResolution)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs#L47C13-L51C26" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs#L47C13-L51C26" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.PrinterResolutionCollection.Count", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs#L23C29-L23C42" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs#L23C29-L23C42" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.PrinterResolutionCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs#L28C61-L28C74" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs#L28C61-L28C74" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.PrinterResolutionCollection.System#Collections#ICollection#Count", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs#L32C34-L32C39" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs#L32C34-L32C39" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.PrinterResolutionCollection.System#Collections#ICollection#IsSynchronized", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs#L34C44-L34C49" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs#L34C44-L34C49" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.PrinterResolutionCollection.System#Collections#ICollection#SyncRoot", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs#L36C40-L36C44" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs#L36C40-L36C44" } ], "DocsId": "T:System.Drawing.Printing.PrinterSettings.PrinterResolutionCollection", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.PrinterSettings.StringCollection.#ctor(System.String[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs#L18C9-L18C70" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs#L18C9-L18C70" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.StringCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs#L30C47-L30C83" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs#L30C47-L30C83" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.StringCollection.System#Collections#ICollection#get_Count", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs#L32C34-L32C39" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs#L32C34-L32C39" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.StringCollection.System#Collections#ICollection#get_IsSynchronized", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs#L34C44-L34C49" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs#L34C44-L34C49" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.StringCollection.System#Collections#ICollection#get_SyncRoot", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs#L36C40-L36C44" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs#L36C40-L36C44" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.StringCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs#L38C60-L38C101" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs#L38C60-L38C101" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.StringCollection.CopyTo(System.String[],System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs#L40C60-L40C103" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs#L40C60-L40C103" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.StringCollection.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs#L42C52-L42C67" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs#L42C52-L42C67" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.StringCollection.Add(System.String)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs#L47C13-L48C32" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs#L47C13-L48C32" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.StringCollection.System#Collections#Generic#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs#L51C68-L51C89" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs#L51C68-L51C89" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.StringCollection.Count", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs#L23C29-L23C40" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs#L23C29-L23C40" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.StringCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs#L28C50-L28C62" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs#L28C50-L28C62" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.StringCollection.System#Collections#ICollection#Count", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs#L32C34-L32C39" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs#L32C34-L32C39" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.StringCollection.System#Collections#ICollection#IsSynchronized", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs#L34C44-L34C49" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs#L34C44-L34C49" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.StringCollection.System#Collections#ICollection#SyncRoot", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs#L36C40-L36C44" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs#L36C40-L36C44" } ], "DocsId": "T:System.Drawing.Printing.PrinterSettings.StringCollection", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Interop.LOGFONT.<_lfFaceName>e__FixedBuffer.FixedElementField", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" } ], "DocsId": "T:System.Drawing.Interop.LOGFONT.<_lfFaceName>e__FixedBuffer", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/System.Formats.Cbor.json b/xml/SourceLinkInformation/net-8.0/System.Formats.Cbor.json index 8d28254ee24..e8750b7796d 100644 --- a/xml/SourceLinkInformation/net-8.0/System.Formats.Cbor.json +++ b/xml/SourceLinkInformation/net-8.0/System.Formats.Cbor.json @@ -1,589 +1,588 @@ { "Assembly": "System.Formats.Cbor", - "GUID": "020D25AD6FE64B4199AC517CD29739EDFFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "5F90D8488846433F80E67B450713BBBBFFFFFFFF", "Types": [ { "Members": [ { "DocsId": "F:System.Formats.Cbor.CborReaderState.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReaderState.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReaderState.cs" }, { "DocsId": "F:System.Formats.Cbor.CborReaderState.Undefined", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReaderState.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReaderState.cs" }, { "DocsId": "F:System.Formats.Cbor.CborReaderState.UnsignedInteger", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReaderState.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReaderState.cs" }, { "DocsId": "F:System.Formats.Cbor.CborReaderState.NegativeInteger", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReaderState.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReaderState.cs" }, { "DocsId": "F:System.Formats.Cbor.CborReaderState.ByteString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReaderState.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReaderState.cs" }, { "DocsId": "F:System.Formats.Cbor.CborReaderState.StartIndefiniteLengthByteString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReaderState.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReaderState.cs" }, { "DocsId": "F:System.Formats.Cbor.CborReaderState.EndIndefiniteLengthByteString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReaderState.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReaderState.cs" }, { "DocsId": "F:System.Formats.Cbor.CborReaderState.TextString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReaderState.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReaderState.cs" }, { "DocsId": "F:System.Formats.Cbor.CborReaderState.StartIndefiniteLengthTextString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReaderState.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReaderState.cs" }, { "DocsId": "F:System.Formats.Cbor.CborReaderState.EndIndefiniteLengthTextString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReaderState.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReaderState.cs" }, { "DocsId": "F:System.Formats.Cbor.CborReaderState.StartArray", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReaderState.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReaderState.cs" }, { "DocsId": "F:System.Formats.Cbor.CborReaderState.EndArray", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReaderState.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReaderState.cs" }, { "DocsId": "F:System.Formats.Cbor.CborReaderState.StartMap", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReaderState.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReaderState.cs" }, { "DocsId": "F:System.Formats.Cbor.CborReaderState.EndMap", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReaderState.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReaderState.cs" }, { "DocsId": "F:System.Formats.Cbor.CborReaderState.Tag", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReaderState.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReaderState.cs" }, { "DocsId": "F:System.Formats.Cbor.CborReaderState.SimpleValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReaderState.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReaderState.cs" }, { "DocsId": "F:System.Formats.Cbor.CborReaderState.HalfPrecisionFloat", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReaderState.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReaderState.cs" }, { "DocsId": "F:System.Formats.Cbor.CborReaderState.SinglePrecisionFloat", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReaderState.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReaderState.cs" }, { "DocsId": "F:System.Formats.Cbor.CborReaderState.DoublePrecisionFloat", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReaderState.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReaderState.cs" }, { "DocsId": "F:System.Formats.Cbor.CborReaderState.Null", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReaderState.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReaderState.cs" }, { "DocsId": "F:System.Formats.Cbor.CborReaderState.Boolean", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReaderState.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReaderState.cs" }, { "DocsId": "F:System.Formats.Cbor.CborReaderState.Finished", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReaderState.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReaderState.cs" } ], "DocsId": "T:System.Formats.Cbor.CborReaderState", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReaderState.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReaderState.cs" }, { "Members": [ { "DocsId": "M:System.Formats.Cbor.CborReader.PeekState", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.PeekState.cs#L15C13-L20C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.PeekState.cs#L15C13-L20C33" }, { "DocsId": "M:System.Formats.Cbor.CborReader.SkipValue(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.SkipValue.cs#L20C13-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.SkipValue.cs#L20C13-L21C10" }, { "DocsId": "M:System.Formats.Cbor.CborReader.SkipToParent(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.SkipValue.cs#L33C13-L39C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.SkipValue.cs#L33C13-L39C10" }, { "DocsId": "M:System.Formats.Cbor.CborReader.ReadSingle", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.Simple.cs#L24C13-L48C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.Simple.cs#L24C13-L48C91" }, { "DocsId": "M:System.Formats.Cbor.CborReader.ReadDouble", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.Simple.cs#L65C13-L93C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.Simple.cs#L65C13-L93C91" }, { "DocsId": "M:System.Formats.Cbor.CborReader.ReadBoolean", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.Simple.cs#L109C13-L120C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.Simple.cs#L109C13-L120C27" }, { "DocsId": "M:System.Formats.Cbor.CborReader.ReadNull", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.Simple.cs#L134C13-L143C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.Simple.cs#L134C13-L143C90" }, { "DocsId": "M:System.Formats.Cbor.CborReader.ReadSimpleValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.Simple.cs#L159C13-L182C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.Simple.cs#L159C13-L182C97" }, { "DocsId": "M:System.Formats.Cbor.CborReader.ReadTag", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.Tag.cs#L22C13-L26C24" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.Tag.cs#L22C13-L26C24" }, { "DocsId": "M:System.Formats.Cbor.CborReader.PeekTag", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.Tag.cs#L39C37-L39C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.Tag.cs#L39C37-L39C59" }, { "DocsId": "M:System.Formats.Cbor.CborReader.ReadDateTimeOffset", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.Tag.cs#L57C13-L87C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.Tag.cs#L57C13-L87C10" }, { "DocsId": "M:System.Formats.Cbor.CborReader.ReadUnixTimeSeconds", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.Tag.cs#L105C13-L139C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.Tag.cs#L105C13-L139C10" }, { "DocsId": "M:System.Formats.Cbor.CborReader.ReadBigInteger", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.Tag.cs#L157C13-L186C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.Tag.cs#L157C13-L186C10" }, { "DocsId": "M:System.Formats.Cbor.CborReader.ReadDecimal", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.Tag.cs#L205C13-L267C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.Tag.cs#L205C13-L267C10" }, { "DocsId": "M:System.Formats.Cbor.CborReader.ReadStartArray", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.Array.cs#L18C13-L38C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.Array.cs#L18C13-L38C36" }, { "DocsId": "M:System.Formats.Cbor.CborReader.ReadEndArray", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.Array.cs#L51C13-L63C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.Array.cs#L51C13-L63C10" }, { "DocsId": "M:System.Formats.Cbor.CborReader.#ctor(System.ReadOnlyMemory{System.Byte},System.Formats.Cbor.CborConformanceMode,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.cs#L29C9-L64C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.cs#L29C9-L64C10" }, { "DocsId": "M:System.Formats.Cbor.CborReader.ReadEncodedValue(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.cs#L75C13-L81C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.cs#L75C13-L81C72" }, { "DocsId": "M:System.Formats.Cbor.CborReader.Reset(System.ReadOnlyMemory{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.cs#L93C13-L110C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.cs#L93C13-L110C10" }, { "DocsId": "M:System.Formats.Cbor.CborReader.ReadInt32", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.Integer.cs#L23C13-L26C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.Integer.cs#L23C13-L26C26" }, { "DocsId": "M:System.Formats.Cbor.CborReader.ReadUInt32", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.Integer.cs#L41C13-L44C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.Integer.cs#L41C13-L44C26" }, { "DocsId": "M:System.Formats.Cbor.CborReader.ReadInt64", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.Integer.cs#L58C13-L61C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.Integer.cs#L58C13-L61C26" }, { "DocsId": "M:System.Formats.Cbor.CborReader.ReadUInt64", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.Integer.cs#L76C13-L79C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.Integer.cs#L76C13-L79C26" }, { "DocsId": "M:System.Formats.Cbor.CborReader.ReadCborNegativeIntegerRepresentation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.Integer.cs#L98C13-L102C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.Integer.cs#L98C13-L102C26" }, { "DocsId": "M:System.Formats.Cbor.CborReader.ReadStartMap", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.Map.cs#L33C13-L63C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.Map.cs#L33C13-L63C27" }, { "DocsId": "M:System.Formats.Cbor.CborReader.ReadEndMap", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.Map.cs#L77C13-L95C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.Map.cs#L77C13-L95C10" }, { "DocsId": "M:System.Formats.Cbor.CborReader.ReadByteString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.String.cs#L29C13-L48C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.String.cs#L29C13-L48C27" }, { "DocsId": "M:System.Formats.Cbor.CborReader.TryReadByteString(System.Span{System.Byte},System.Int32@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.String.cs#L64C13-L91C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.String.cs#L64C13-L91C25" }, { "DocsId": "M:System.Formats.Cbor.CborReader.ReadDefiniteLengthByteString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.String.cs#L106C13-L120C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.String.cs#L106C13-L120C30" }, { "DocsId": "M:System.Formats.Cbor.CborReader.ReadStartIndefiniteLengthByteString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.String.cs#L134C13-L148C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.String.cs#L134C13-L148C10" }, { "DocsId": "M:System.Formats.Cbor.CborReader.ReadEndIndefiniteLengthByteString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.String.cs#L157C13-L161C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.String.cs#L157C13-L161C10" }, { "DocsId": "M:System.Formats.Cbor.CborReader.ReadTextString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.String.cs#L174C13-L204C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.String.cs#L174C13-L204C27" }, { "DocsId": "M:System.Formats.Cbor.CborReader.TryReadTextString(System.Span{System.Char},System.Int32@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.String.cs#L220C13-L251C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.String.cs#L220C13-L251C25" }, { "DocsId": "M:System.Formats.Cbor.CborReader.ReadDefiniteLengthTextStringBytes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.String.cs#L266C13-L287C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.String.cs#L266C13-L287C33" }, { "DocsId": "M:System.Formats.Cbor.CborReader.ReadStartIndefiniteLengthTextString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.String.cs#L301C13-L315C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.String.cs#L301C13-L315C10" }, { "DocsId": "M:System.Formats.Cbor.CborReader.ReadEndIndefiniteLengthTextString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.String.cs#L324C13-L328C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.String.cs#L324C13-L328C10" }, { "DocsId": "M:System.Formats.Cbor.CborReader.ReadHalf", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.Simple.netcoreapp.cs#L24C13-L41C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.Simple.netcoreapp.cs#L24C13-L41C91" }, { "DocsId": "P:System.Formats.Cbor.CborReader.ConformanceMode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.cs#L36C54-L36C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.cs#L36C54-L36C58" }, { "DocsId": "P:System.Formats.Cbor.CborReader.AllowMultipleRootLevelValues", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.cs#L40C52-L40C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.cs#L40C52-L40C56" }, { "DocsId": "P:System.Formats.Cbor.CborReader.CurrentDepth", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.cs#L44C36-L44C89" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.cs#L44C36-L44C89" }, { "DocsId": "P:System.Formats.Cbor.CborReader.BytesRemaining", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.cs#L48C38-L48C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.cs#L48C38-L48C60" } ], "DocsId": "T:System.Formats.Cbor.CborReader", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.cs" }, { "Members": [ { "DocsId": "M:System.Formats.Cbor.CborWriter.WriteStartArray(System.Nullable{System.Int32})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.Array.cs#L26C13-L34C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.Array.cs#L26C13-L34C10" }, { "DocsId": "M:System.Formats.Cbor.CborWriter.WriteEndArray", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.Array.cs#L42C13-L44C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.Array.cs#L42C13-L44C10" }, { "DocsId": "M:System.Formats.Cbor.CborWriter.WriteStartMap(System.Nullable{System.Int32})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.Map.cs#L37C13-L45C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.Map.cs#L37C13-L45C10" }, { "DocsId": "M:System.Formats.Cbor.CborWriter.WriteEndMap", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.Map.cs#L55C13-L62C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.Map.cs#L55C13-L62C10" }, { "DocsId": "M:System.Formats.Cbor.CborWriter.WriteSingle(System.Single)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.Simple.cs#L25C13-L34C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.Simple.cs#L25C13-L34C10" }, { "DocsId": "M:System.Formats.Cbor.CborWriter.WriteDouble(System.Double)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.Simple.cs#L45C13-L61C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.Simple.cs#L45C13-L61C10" }, { "DocsId": "M:System.Formats.Cbor.CborWriter.WriteBoolean(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.Simple.cs#L89C13-L90C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.Simple.cs#L89C13-L90C10" }, { "DocsId": "M:System.Formats.Cbor.CborWriter.WriteNull", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.Simple.cs#L100C13-L101C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.Simple.cs#L100C13-L101C10" }, { "DocsId": "M:System.Formats.Cbor.CborWriter.WriteSimpleValue(System.Formats.Cbor.CborSimpleValue)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.Simple.cs#L113C13-L131C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.Simple.cs#L113C13-L131C10" }, { "DocsId": "M:System.Formats.Cbor.CborWriter.WriteByteString(System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.String.cs#L27C13-L33C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.String.cs#L27C13-L33C10" }, { "DocsId": "M:System.Formats.Cbor.CborWriter.WriteByteString(System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.String.cs#L44C13-L59C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.String.cs#L44C13-L59C10" }, { "DocsId": "M:System.Formats.Cbor.CborWriter.WriteStartIndefiniteLengthByteString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.String.cs#L74C13-L90C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.String.cs#L74C13-L90C10" }, { "DocsId": "M:System.Formats.Cbor.CborWriter.WriteEndIndefiniteLengthByteString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.String.cs#L96C13-L98C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.String.cs#L96C13-L98C10" }, { "DocsId": "M:System.Formats.Cbor.CborWriter.WriteTextString(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.String.cs#L111C13-L117C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.String.cs#L111C13-L117C10" }, { "DocsId": "M:System.Formats.Cbor.CborWriter.WriteTextString(System.ReadOnlySpan{System.Char})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.String.cs#L129C13-L156C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.String.cs#L129C13-L156C10" }, { "DocsId": "M:System.Formats.Cbor.CborWriter.WriteStartIndefiniteLengthTextString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.String.cs#L171C13-L187C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.String.cs#L171C13-L187C10" }, { "DocsId": "M:System.Formats.Cbor.CborWriter.WriteEndIndefiniteLengthTextString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.String.cs#L193C13-L195C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.String.cs#L193C13-L195C10" }, { "DocsId": "M:System.Formats.Cbor.CborWriter.#ctor(System.Formats.Cbor.CborConformanceMode,System.Boolean,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.cs#L67C15-L69C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.cs#L67C15-L69C10" }, { "DocsId": "M:System.Formats.Cbor.CborWriter.#ctor(System.Formats.Cbor.CborConformanceMode,System.Boolean,System.Boolean,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.cs#L82C9-L101C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.cs#L82C9-L101C10" }, { "DocsId": "M:System.Formats.Cbor.CborWriter.Reset", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.cs#L106C13-L124C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.cs#L106C13-L124C10" }, { "DocsId": "M:System.Formats.Cbor.CborWriter.WriteEncodedValue(System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.cs#L133C13-L176C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.cs#L133C13-L176C10" }, { "DocsId": "M:System.Formats.Cbor.CborWriter.Encode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.cs#L181C35-L181C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.cs#L181C35-L181C62" }, { "DocsId": "M:System.Formats.Cbor.CborWriter.Encode(System.Span{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.cs#L190C13-L198C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.cs#L190C13-L198C36" }, { "DocsId": "M:System.Formats.Cbor.CborWriter.TryEncode(System.Span{System.Byte},System.Int32@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.cs#L208C13-L218C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.cs#L208C13-L218C25" }, { "DocsId": "M:System.Formats.Cbor.CborWriter.WriteInt32(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.Integer.cs#L19C46-L19C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.Integer.cs#L19C46-L19C63" }, { "DocsId": "M:System.Formats.Cbor.CborWriter.WriteInt64(System.Int64)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.Integer.cs#L30C13-L41C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.Integer.cs#L30C13-L41C10" }, { "DocsId": "M:System.Formats.Cbor.CborWriter.WriteUInt32(System.UInt32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.Integer.cs#L51C48-L51C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.Integer.cs#L51C48-L51C66" }, { "DocsId": "M:System.Formats.Cbor.CborWriter.WriteUInt64(System.UInt64)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.Integer.cs#L63C13-L65C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.Integer.cs#L63C13-L65C10" }, { "DocsId": "M:System.Formats.Cbor.CborWriter.WriteCborNegativeIntegerRepresentation(System.UInt64)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.Integer.cs#L81C13-L83C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.Integer.cs#L81C13-L83C10" }, { "DocsId": "M:System.Formats.Cbor.CborWriter.WriteTag(System.Formats.Cbor.CborTag)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.Tag.cs#L22C13-L29C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.Tag.cs#L22C13-L29C10" }, { "DocsId": "M:System.Formats.Cbor.CborWriter.WriteDateTimeOffset(System.DateTimeOffset)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.Tag.cs#L40C13-L51C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.Tag.cs#L40C13-L51C10" }, { "DocsId": "M:System.Formats.Cbor.CborWriter.WriteUnixTimeSeconds(System.Int64)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.Tag.cs#L62C13-L64C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.Tag.cs#L62C13-L64C10" }, { "DocsId": "M:System.Formats.Cbor.CborWriter.WriteUnixTimeSeconds(System.Double)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.Tag.cs#L76C13-L83C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.Tag.cs#L76C13-L83C10" }, { "DocsId": "M:System.Formats.Cbor.CborWriter.WriteBigInteger(System.Numerics.BigInteger)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.Tag.cs#L94C13-L100C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.Tag.cs#L94C13-L100C10" }, { "DocsId": "M:System.Formats.Cbor.CborWriter.WriteDecimal(System.Decimal)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.Tag.cs#L111C13-L135C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.Tag.cs#L111C13-L135C10" }, { "DocsId": "M:System.Formats.Cbor.CborWriter.WriteHalf(System.Half)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.Simple.netcoreapp.cs#L22C13-L34C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.Simple.netcoreapp.cs#L22C13-L34C10" }, { "DocsId": "P:System.Formats.Cbor.CborWriter.ConformanceMode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.cs#L37C54-L37C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.cs#L37C54-L37C58" }, { "DocsId": "P:System.Formats.Cbor.CborWriter.ConvertIndefiniteLengthEncodings", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.cs#L41C56-L41C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.cs#L41C56-L41C60" }, { "DocsId": "P:System.Formats.Cbor.CborWriter.AllowMultipleRootLevelValues", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.cs#L45C52-L45C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.cs#L45C52-L45C56" }, { "DocsId": "P:System.Formats.Cbor.CborWriter.CurrentDepth", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.cs#L49C36-L49C89" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.cs#L49C36-L49C89" }, { "DocsId": "P:System.Formats.Cbor.CborWriter.BytesWritten", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.cs#L53C36-L53C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.cs#L53C36-L53C43" }, { "DocsId": "P:System.Formats.Cbor.CborWriter.IsWriteCompleted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.cs#L57C41-L57C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.cs#L57C41-L57C87" } ], "DocsId": "T:System.Formats.Cbor.CborWriter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.cs" }, { "Members": [ { "DocsId": "F:System.Formats.Cbor.CborConformanceMode.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborConformanceLevel.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborConformanceLevel.cs" }, { "DocsId": "F:System.Formats.Cbor.CborConformanceMode.Lax", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborConformanceLevel.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborConformanceLevel.cs" }, { "DocsId": "F:System.Formats.Cbor.CborConformanceMode.Strict", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborConformanceLevel.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborConformanceLevel.cs" }, { "DocsId": "F:System.Formats.Cbor.CborConformanceMode.Canonical", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborConformanceLevel.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborConformanceLevel.cs" }, { "DocsId": "F:System.Formats.Cbor.CborConformanceMode.Ctap2Canonical", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborConformanceLevel.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborConformanceLevel.cs" } ], "DocsId": "T:System.Formats.Cbor.CborConformanceMode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborConformanceLevel.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborConformanceLevel.cs" }, { "Members": [ { "DocsId": "F:System.Formats.Cbor.CborTag.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" }, { "DocsId": "F:System.Formats.Cbor.CborTag.DateTimeString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" }, { "DocsId": "F:System.Formats.Cbor.CborTag.UnixTimeSeconds", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" }, { "DocsId": "F:System.Formats.Cbor.CborTag.UnsignedBigNum", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" }, { "DocsId": "F:System.Formats.Cbor.CborTag.NegativeBigNum", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" }, { "DocsId": "F:System.Formats.Cbor.CborTag.DecimalFraction", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" }, { "DocsId": "F:System.Formats.Cbor.CborTag.BigFloat", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" }, { "DocsId": "F:System.Formats.Cbor.CborTag.Base64UrlLaterEncoding", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" }, { "DocsId": "F:System.Formats.Cbor.CborTag.Base64StringLaterEncoding", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" }, { "DocsId": "F:System.Formats.Cbor.CborTag.Base16StringLaterEncoding", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" }, { "DocsId": "F:System.Formats.Cbor.CborTag.EncodedCborDataItem", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" }, { "DocsId": "F:System.Formats.Cbor.CborTag.Uri", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" }, { "DocsId": "F:System.Formats.Cbor.CborTag.Base64Url", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" }, { "DocsId": "F:System.Formats.Cbor.CborTag.Base64", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" }, { "DocsId": "F:System.Formats.Cbor.CborTag.Regex", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" }, { "DocsId": "F:System.Formats.Cbor.CborTag.MimeMessage", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" }, { "DocsId": "F:System.Formats.Cbor.CborTag.SelfDescribeCbor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" } ], "DocsId": "T:System.Formats.Cbor.CborTag", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" }, { "Members": [ { "DocsId": "F:System.Formats.Cbor.CborSimpleValue.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" }, { "DocsId": "F:System.Formats.Cbor.CborSimpleValue.False", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" }, { "DocsId": "F:System.Formats.Cbor.CborSimpleValue.True", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" }, { "DocsId": "F:System.Formats.Cbor.CborSimpleValue.Null", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" }, { "DocsId": "F:System.Formats.Cbor.CborSimpleValue.Undefined", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" } ], "DocsId": "T:System.Formats.Cbor.CborSimpleValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" }, { "Members": [ { "DocsId": "M:System.Formats.Cbor.CborContentException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborContentException.cs#L18C15-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborContentException.cs#L18C15-L21C10" }, { "DocsId": "M:System.Formats.Cbor.CborContentException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborContentException.cs#L30C15-L33C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborContentException.cs#L30C15-L33C10" }, { "DocsId": "M:System.Formats.Cbor.CborContentException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborContentException.cs#L45C15-L48C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborContentException.cs#L45C15-L48C10" } ], "DocsId": "T:System.Formats.Cbor.CborContentException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborContentException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborContentException.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/System.IO.Hashing.json b/xml/SourceLinkInformation/net-8.0/System.IO.Hashing.json index a00061a99a0..7db53cdc31d 100644 --- a/xml/SourceLinkInformation/net-8.0/System.IO.Hashing.json +++ b/xml/SourceLinkInformation/net-8.0/System.IO.Hashing.json @@ -1,393 +1,392 @@ { "Assembly": "System.IO.Hashing", - "GUID": "0E1814F37D204C02813387378F896CD9FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "A5D9E606FF29467F85A459C8787F274BFFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:System.IO.Hashing.Crc32.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc32.cs#L32C9-L40C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc32.cs#L32C9-L40C10" }, { "DocsId": "M:System.IO.Hashing.Crc32.Append(System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc32.cs#L49C13-L50C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc32.cs#L49C13-L50C10" }, { "DocsId": "M:System.IO.Hashing.Crc32.Reset", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc32.cs#L57C13-L58C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc32.cs#L57C13-L58C10" }, { "DocsId": "M:System.IO.Hashing.Crc32.GetCurrentHashCore(System.Span{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc32.cs#L68C13-L69C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc32.cs#L68C13-L69C10" }, { "DocsId": "M:System.IO.Hashing.Crc32.GetHashAndResetCore(System.Span{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc32.cs#L77C13-L79C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc32.cs#L77C13-L79C10" }, { "DocsId": "M:System.IO.Hashing.Crc32.GetCurrentHashAsUInt32", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc32.cs#L84C49-L84C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc32.cs#L84C49-L84C54" }, { "DocsId": "M:System.IO.Hashing.Crc32.Hash(System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc32.cs#L96C13-L101C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc32.cs#L96C13-L101C57" }, { "DocsId": "M:System.IO.Hashing.Crc32.Hash(System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc32.cs#L111C13-L114C24" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc32.cs#L111C13-L114C24" }, { "DocsId": "M:System.IO.Hashing.Crc32.TryHash(System.ReadOnlySpan{System.Byte},System.Span{System.Byte},System.Int32@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc32.cs#L131C13-L140C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc32.cs#L131C13-L140C25" }, { "DocsId": "M:System.IO.Hashing.Crc32.Hash(System.ReadOnlySpan{System.Byte},System.Span{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc32.cs#L153C13-L160C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc32.cs#L153C13-L160C25" }, { "DocsId": "M:System.IO.Hashing.Crc32.HashToUInt32(System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc32.cs#L168C13-L168C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc32.cs#L168C13-L168C42" } ], "DocsId": "T:System.IO.Hashing.Crc32", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc32.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc32.cs" }, { "Members": [ { "DocsId": "M:System.IO.Hashing.Crc64.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc64.cs#L37C15-L39C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc64.cs#L37C15-L39C10" }, { "DocsId": "M:System.IO.Hashing.Crc64.Append(System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc64.cs#L48C13-L49C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc64.cs#L48C13-L49C10" }, { "DocsId": "M:System.IO.Hashing.Crc64.Reset", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc64.cs#L56C13-L57C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc64.cs#L56C13-L57C10" }, { "DocsId": "M:System.IO.Hashing.Crc64.GetCurrentHashCore(System.Span{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc64.cs#L66C13-L67C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc64.cs#L66C13-L67C10" }, { "DocsId": "M:System.IO.Hashing.Crc64.GetHashAndResetCore(System.Span{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc64.cs#L75C13-L77C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc64.cs#L75C13-L77C10" }, { "DocsId": "M:System.IO.Hashing.Crc64.GetCurrentHashAsUInt64", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc64.cs#L82C50-L82C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc64.cs#L82C50-L82C54" }, { "DocsId": "M:System.IO.Hashing.Crc64.Hash(System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc64.cs#L94C13-L99C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc64.cs#L94C13-L99C57" }, { "DocsId": "M:System.IO.Hashing.Crc64.Hash(System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc64.cs#L109C13-L112C24" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc64.cs#L109C13-L112C24" }, { "DocsId": "M:System.IO.Hashing.Crc64.TryHash(System.ReadOnlySpan{System.Byte},System.Span{System.Byte},System.Int32@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc64.cs#L129C13-L138C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc64.cs#L129C13-L138C25" }, { "DocsId": "M:System.IO.Hashing.Crc64.Hash(System.ReadOnlySpan{System.Byte},System.Span{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc64.cs#L151C13-L158C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc64.cs#L151C13-L158C25" }, { "DocsId": "M:System.IO.Hashing.Crc64.HashToUInt64(System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc64.cs#L166C13-L166C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc64.cs#L166C13-L166C41" } ], "DocsId": "T:System.IO.Hashing.Crc64", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc64.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc64.cs" }, { "Members": [ { "DocsId": "M:System.IO.Hashing.NonCryptographicHashAlgorithm.#ctor(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/NonCryptographicHashAlgorithm.cs#L34C9-L40C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/NonCryptographicHashAlgorithm.cs#L34C9-L40C10" }, { "DocsId": "M:System.IO.Hashing.NonCryptographicHashAlgorithm.Append(System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/NonCryptographicHashAlgorithm.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/NonCryptographicHashAlgorithm.cs" }, { "DocsId": "M:System.IO.Hashing.NonCryptographicHashAlgorithm.Reset", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/NonCryptographicHashAlgorithm.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/NonCryptographicHashAlgorithm.cs" }, { "DocsId": "M:System.IO.Hashing.NonCryptographicHashAlgorithm.GetCurrentHashCore(System.Span{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/NonCryptographicHashAlgorithm.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/NonCryptographicHashAlgorithm.cs" }, { "DocsId": "M:System.IO.Hashing.NonCryptographicHashAlgorithm.Append(System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/NonCryptographicHashAlgorithm.cs#L86C13-L92C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/NonCryptographicHashAlgorithm.cs#L86C13-L92C10" }, { "DocsId": "M:System.IO.Hashing.NonCryptographicHashAlgorithm.Append(System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/NonCryptographicHashAlgorithm.cs#L105C13-L125C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/NonCryptographicHashAlgorithm.cs#L105C13-L125C10" }, { "DocsId": "M:System.IO.Hashing.NonCryptographicHashAlgorithm.AppendAsync(System.IO.Stream,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/NonCryptographicHashAlgorithm.cs#L145C13-L150C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/NonCryptographicHashAlgorithm.cs#L145C13-L150C63" }, { "DocsId": "M:System.IO.Hashing.NonCryptographicHashAlgorithm.GetCurrentHash", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/NonCryptographicHashAlgorithm.cs#L184C13-L186C24" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/NonCryptographicHashAlgorithm.cs#L184C13-L186C24" }, { "DocsId": "M:System.IO.Hashing.NonCryptographicHashAlgorithm.TryGetCurrentHash(System.Span{System.Byte},System.Int32@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/NonCryptographicHashAlgorithm.cs#L203C13-L211C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/NonCryptographicHashAlgorithm.cs#L203C13-L211C25" }, { "DocsId": "M:System.IO.Hashing.NonCryptographicHashAlgorithm.GetCurrentHash(System.Span{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/NonCryptographicHashAlgorithm.cs#L228C13-L234C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/NonCryptographicHashAlgorithm.cs#L228C13-L234C38" }, { "DocsId": "M:System.IO.Hashing.NonCryptographicHashAlgorithm.GetHashAndReset", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/NonCryptographicHashAlgorithm.cs#L245C13-L247C24" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/NonCryptographicHashAlgorithm.cs#L245C13-L247C24" }, { "DocsId": "M:System.IO.Hashing.NonCryptographicHashAlgorithm.TryGetHashAndReset(System.Span{System.Byte},System.Int32@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/NonCryptographicHashAlgorithm.cs#L265C13-L273C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/NonCryptographicHashAlgorithm.cs#L265C13-L273C25" }, { "DocsId": "M:System.IO.Hashing.NonCryptographicHashAlgorithm.GetHashAndReset(System.Span{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/NonCryptographicHashAlgorithm.cs#L290C13-L296C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/NonCryptographicHashAlgorithm.cs#L290C13-L296C38" }, { "DocsId": "M:System.IO.Hashing.NonCryptographicHashAlgorithm.GetHashAndResetCore(System.Span{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/NonCryptographicHashAlgorithm.cs#L326C13-L328C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/NonCryptographicHashAlgorithm.cs#L326C13-L328C10" }, { "DocsId": "M:System.IO.Hashing.NonCryptographicHashAlgorithm.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/NonCryptographicHashAlgorithm.cs#L343C13-L343C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/NonCryptographicHashAlgorithm.cs#L343C13-L343C74" }, { "DocsId": "P:System.IO.Hashing.NonCryptographicHashAlgorithm.HashLengthInBytes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/NonCryptographicHashAlgorithm.cs#L22C40-L22C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/NonCryptographicHashAlgorithm.cs#L22C40-L22C44" } ], "DocsId": "T:System.IO.Hashing.NonCryptographicHashAlgorithm", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/NonCryptographicHashAlgorithm.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/NonCryptographicHashAlgorithm.cs" }, { "Members": [ { "DocsId": "M:System.IO.Hashing.XxHash128.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash128.cs#L31C30-L33C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash128.cs#L31C30-L33C10" }, { "DocsId": "M:System.IO.Hashing.XxHash128.#ctor(System.Int64)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash128.cs#L36C39-L39C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash128.cs#L36C39-L39C10" }, { "DocsId": "M:System.IO.Hashing.XxHash128.Hash(System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash128.cs#L45C53-L45C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash128.cs#L45C53-L45C74" }, { "DocsId": "M:System.IO.Hashing.XxHash128.Hash(System.Byte[],System.Int64)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash128.cs#L55C13-L63C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash128.cs#L55C13-L63C63" }, { "DocsId": "M:System.IO.Hashing.XxHash128.Hash(System.ReadOnlySpan{System.Byte},System.Int64)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash128.cs#L72C13-L74C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash128.cs#L72C13-L74C27" }, { "DocsId": "M:System.IO.Hashing.XxHash128.Hash(System.ReadOnlySpan{System.Byte},System.Span{System.Byte},System.Int64)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash128.cs#L85C13-L90C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash128.cs#L85C13-L90C33" }, { "DocsId": "M:System.IO.Hashing.XxHash128.TryHash(System.ReadOnlySpan{System.Byte},System.Span{System.Byte},System.Int32@,System.Int64)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash128.cs#L101C13-L110C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash128.cs#L101C13-L110C26" }, { "DocsId": "M:System.IO.Hashing.XxHash128.HashToUInt128(System.ReadOnlySpan{System.Byte},System.Int64)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash128.cs#L121C13-L122C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash128.cs#L121C13-L122C57" }, { "DocsId": "M:System.IO.Hashing.XxHash128.Reset", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash128.cs#L153C13-L154C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash128.cs#L153C13-L154C10" }, { "DocsId": "M:System.IO.Hashing.XxHash128.Append(System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash128.cs#L160C13-L161C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash128.cs#L160C13-L161C10" }, { "DocsId": "M:System.IO.Hashing.XxHash128.GetCurrentHashCore(System.Span{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash128.cs#L167C13-L169C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash128.cs#L167C13-L169C10" }, { "DocsId": "M:System.IO.Hashing.XxHash128.GetCurrentHashAsUInt128", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash128.cs#L206C13-L207C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash128.cs#L206C13-L207C63" } ], "DocsId": "T:System.IO.Hashing.XxHash128", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash128.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash128.cs" }, { "Members": [ { "DocsId": "M:System.IO.Hashing.XxHash3.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash3.cs#L30C28-L32C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash3.cs#L30C28-L32C10" }, { "DocsId": "M:System.IO.Hashing.XxHash3.#ctor(System.Int64)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash3.cs#L35C37-L38C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash3.cs#L35C37-L38C10" }, { "DocsId": "M:System.IO.Hashing.XxHash3.Hash(System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash3.cs#L44C53-L44C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash3.cs#L44C53-L44C74" }, { "DocsId": "M:System.IO.Hashing.XxHash3.Hash(System.Byte[],System.Int64)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash3.cs#L54C13-L62C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash3.cs#L54C13-L62C63" }, { "DocsId": "M:System.IO.Hashing.XxHash3.Hash(System.ReadOnlySpan{System.Byte},System.Int64)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash3.cs#L71C13-L74C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash3.cs#L71C13-L74C27" }, { "DocsId": "M:System.IO.Hashing.XxHash3.Hash(System.ReadOnlySpan{System.Byte},System.Span{System.Byte},System.Int64)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash3.cs#L85C13-L90C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash3.cs#L85C13-L90C33" }, { "DocsId": "M:System.IO.Hashing.XxHash3.TryHash(System.ReadOnlySpan{System.Byte},System.Span{System.Byte},System.Int32@,System.Int64)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash3.cs#L101C13-L116C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash3.cs#L101C13-L116C26" }, { "DocsId": "M:System.IO.Hashing.XxHash3.HashToUInt64(System.ReadOnlySpan{System.Byte},System.Int64)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash3.cs#L126C13-L144C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash3.cs#L126C13-L144C74" }, { "DocsId": "M:System.IO.Hashing.XxHash3.Reset", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash3.cs#L151C13-L152C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash3.cs#L151C13-L152C10" }, { "DocsId": "M:System.IO.Hashing.XxHash3.Append(System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash3.cs#L158C13-L159C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash3.cs#L158C13-L159C10" }, { "DocsId": "M:System.IO.Hashing.XxHash3.GetCurrentHashCore(System.Span{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash3.cs#L165C13-L167C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash3.cs#L165C13-L167C10" }, { "DocsId": "M:System.IO.Hashing.XxHash3.GetCurrentHashAsUInt64", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash3.cs#L176C13-L196C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash3.cs#L176C13-L196C28" } ], "DocsId": "T:System.IO.Hashing.XxHash3", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash3.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash3.cs" }, { "Members": [ { "DocsId": "M:System.IO.Hashing.XxHash32.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash32.cs#L36C15-L38C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash32.cs#L36C15-L38C10" }, { "DocsId": "M:System.IO.Hashing.XxHash32.#ctor(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash32.cs#L48C15-L52C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash32.cs#L48C15-L52C10" }, { "DocsId": "M:System.IO.Hashing.XxHash32.Reset", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash32.cs#L59C13-L61C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash32.cs#L59C13-L61C10" }, { "DocsId": "M:System.IO.Hashing.XxHash32.Append(System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash32.cs#L74C13-L109C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash32.cs#L74C13-L109C10" }, { "DocsId": "M:System.IO.Hashing.XxHash32.GetCurrentHashCore(System.Span{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash32.cs#L117C13-L119C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash32.cs#L117C13-L119C10" }, { "DocsId": "M:System.IO.Hashing.XxHash32.GetCurrentHashAsUInt32", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash32.cs#L126C13-L134C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash32.cs#L126C13-L134C56" }, { "DocsId": "M:System.IO.Hashing.XxHash32.Hash(System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash32.cs#L147C13-L152C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash32.cs#L147C13-L152C57" }, { "DocsId": "M:System.IO.Hashing.XxHash32.Hash(System.Byte[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash32.cs#L166C13-L171C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash32.cs#L166C13-L171C63" }, { "DocsId": "M:System.IO.Hashing.XxHash32.Hash(System.ReadOnlySpan{System.Byte},System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash32.cs#L182C13-L185C24" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash32.cs#L182C13-L185C24" }, { "DocsId": "M:System.IO.Hashing.XxHash32.TryHash(System.ReadOnlySpan{System.Byte},System.Span{System.Byte},System.Int32@,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash32.cs#L203C13-L212C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash32.cs#L203C13-L212C25" }, { "DocsId": "M:System.IO.Hashing.XxHash32.Hash(System.ReadOnlySpan{System.Byte},System.Span{System.Byte},System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash32.cs#L226C13-L233C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash32.cs#L226C13-L233C29" }, { "DocsId": "M:System.IO.Hashing.XxHash32.HashToUInt32(System.ReadOnlySpan{System.Byte},System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash32.cs#L243C13-L252C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash32.cs#L243C13-L252C56" } ], "DocsId": "T:System.IO.Hashing.XxHash32", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash32.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash32.cs" }, { "Members": [ { "DocsId": "M:System.IO.Hashing.XxHash64.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash64.cs#L36C15-L38C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash64.cs#L36C15-L38C10" }, { "DocsId": "M:System.IO.Hashing.XxHash64.#ctor(System.Int64)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash64.cs#L48C15-L52C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash64.cs#L48C15-L52C10" }, { "DocsId": "M:System.IO.Hashing.XxHash64.Reset", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash64.cs#L59C13-L61C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash64.cs#L59C13-L61C10" }, { "DocsId": "M:System.IO.Hashing.XxHash64.Append(System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash64.cs#L74C13-L109C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash64.cs#L74C13-L109C10" }, { "DocsId": "M:System.IO.Hashing.XxHash64.GetCurrentHashCore(System.Span{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash64.cs#L117C13-L119C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash64.cs#L117C13-L119C10" }, { "DocsId": "M:System.IO.Hashing.XxHash64.GetCurrentHashAsUInt64", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash64.cs#L126C13-L134C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash64.cs#L126C13-L134C56" }, { "DocsId": "M:System.IO.Hashing.XxHash64.Hash(System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash64.cs#L147C13-L152C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash64.cs#L147C13-L152C57" }, { "DocsId": "M:System.IO.Hashing.XxHash64.Hash(System.Byte[],System.Int64)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash64.cs#L166C13-L171C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash64.cs#L166C13-L171C63" }, { "DocsId": "M:System.IO.Hashing.XxHash64.Hash(System.ReadOnlySpan{System.Byte},System.Int64)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash64.cs#L182C13-L185C24" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash64.cs#L182C13-L185C24" }, { "DocsId": "M:System.IO.Hashing.XxHash64.TryHash(System.ReadOnlySpan{System.Byte},System.Span{System.Byte},System.Int32@,System.Int64)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash64.cs#L203C13-L212C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash64.cs#L203C13-L212C25" }, { "DocsId": "M:System.IO.Hashing.XxHash64.Hash(System.ReadOnlySpan{System.Byte},System.Span{System.Byte},System.Int64)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash64.cs#L226C13-L233C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash64.cs#L226C13-L233C29" }, { "DocsId": "M:System.IO.Hashing.XxHash64.HashToUInt64(System.ReadOnlySpan{System.Byte},System.Int64)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash64.cs#L243C13-L252C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash64.cs#L243C13-L252C62" } ], "DocsId": "T:System.IO.Hashing.XxHash64", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash64.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash64.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/System.IO.Packaging.json b/xml/SourceLinkInformation/net-8.0/System.IO.Packaging.json index b228b9329d7..562f33d2e50 100644 --- a/xml/SourceLinkInformation/net-8.0/System.IO.Packaging.json +++ b/xml/SourceLinkInformation/net-8.0/System.IO.Packaging.json @@ -1,629 +1,628 @@ { "Assembly": "System.IO.Packaging", - "GUID": "1617482E309147BEACEEF3619155A94CFFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "6C95FA9753EC42F2926C6197FB4E4DB4FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:System.IO.FileFormatException.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/FileFormatException.cs#L24C15-L25C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/FileFormatException.cs#L24C15-L25C12" }, { "DocsId": "M:System.IO.FileFormatException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/FileFormatException.cs#L33C15-L34C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/FileFormatException.cs#L33C15-L34C12" }, { "DocsId": "M:System.IO.FileFormatException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/FileFormatException.cs#L44C15-L45C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/FileFormatException.cs#L44C15-L45C12" }, { "DocsId": "M:System.IO.FileFormatException.#ctor(System.Uri)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/FileFormatException.cs#L56C15-L62C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/FileFormatException.cs#L56C15-L62C10" }, { "DocsId": "M:System.IO.FileFormatException.#ctor(System.Uri,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/FileFormatException.cs#L74C15-L77C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/FileFormatException.cs#L74C15-L77C10" }, { "DocsId": "M:System.IO.FileFormatException.#ctor(System.Uri,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/FileFormatException.cs#L90C15-L97C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/FileFormatException.cs#L90C15-L97C10" }, { "DocsId": "M:System.IO.FileFormatException.#ctor(System.Uri,System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/FileFormatException.cs#L111C15-L114C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/FileFormatException.cs#L111C15-L114C10" }, { "DocsId": "M:System.IO.FileFormatException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/FileFormatException.cs#L120C91-L125C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/FileFormatException.cs#L120C91-L125C10" }, { "DocsId": "M:System.IO.FileFormatException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/FileFormatException.cs#L138C13-L140C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/FileFormatException.cs#L138C13-L140C10" }, { "DocsId": "P:System.IO.FileFormatException.SourceUri", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/FileFormatException.cs#L155C17-L155C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/FileFormatException.cs#L155C17-L155C35" } ], "DocsId": "T:System.IO.FileFormatException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/FileFormatException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/FileFormatException.cs" }, { "Members": [ { "DocsId": "F:System.IO.Packaging.CompressionOption.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/CompressionOption.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/CompressionOption.cs" }, { "DocsId": "F:System.IO.Packaging.CompressionOption.NotCompressed", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/CompressionOption.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/CompressionOption.cs" }, { "DocsId": "F:System.IO.Packaging.CompressionOption.Normal", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/CompressionOption.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/CompressionOption.cs" }, { "DocsId": "F:System.IO.Packaging.CompressionOption.Maximum", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/CompressionOption.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/CompressionOption.cs" }, { "DocsId": "F:System.IO.Packaging.CompressionOption.Fast", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/CompressionOption.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/CompressionOption.cs" }, { "DocsId": "F:System.IO.Packaging.CompressionOption.SuperFast", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/CompressionOption.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/CompressionOption.cs" } ], "DocsId": "T:System.IO.Packaging.CompressionOption", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/CompressionOption.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/CompressionOption.cs" }, { "Members": [ { "DocsId": "F:System.IO.Packaging.EncryptionOption.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/EncryptionOption.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/EncryptionOption.cs" }, { "DocsId": "F:System.IO.Packaging.EncryptionOption.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/EncryptionOption.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/EncryptionOption.cs" }, { "DocsId": "F:System.IO.Packaging.EncryptionOption.RightsManagement", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/EncryptionOption.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/EncryptionOption.cs" } ], "DocsId": "T:System.IO.Packaging.EncryptionOption", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/EncryptionOption.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/EncryptionOption.cs" }, { "Members": [ { "DocsId": "M:System.IO.Packaging.Package.#ctor(System.IO.FileAccess)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L29C9-L39C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L29C9-L39C10" }, { "DocsId": "M:System.IO.Packaging.Package.Open(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L94C13-L94C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L94C13-L94C91" }, { "DocsId": "M:System.IO.Packaging.Package.Open(System.String,System.IO.FileMode)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L110C13-L110C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L110C13-L110C85" }, { "DocsId": "M:System.IO.Packaging.Package.Open(System.String,System.IO.FileMode,System.IO.FileAccess)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L127C13-L127C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L127C13-L127C79" }, { "DocsId": "M:System.IO.Packaging.Package.Open(System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L147C13-L147C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L147C13-L147C77" }, { "DocsId": "M:System.IO.Packaging.Package.Open(System.IO.Stream,System.IO.FileMode)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L166C13-L166C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L166C13-L166C67" }, { "DocsId": "M:System.IO.Packaging.Package.CreatePart(System.Uri,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L189C13-L189C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L189C13-L189C86" }, { "DocsId": "M:System.IO.Packaging.Package.CreatePart(System.Uri,System.String,System.IO.Packaging.CompressionOption)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L214C13-L242C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L214C13-L242C30" }, { "DocsId": "M:System.IO.Packaging.Package.GetPart(System.Uri)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L261C13-L265C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L261C13-L265C37" }, { "DocsId": "M:System.IO.Packaging.Package.PartExists(System.Uri)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L284C13-L291C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L284C13-L291C59" }, { "DocsId": "M:System.IO.Packaging.Package.DeletePart(System.Uri)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L309C13-L375C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L309C13-L375C10" }, { "DocsId": "M:System.IO.Packaging.Package.GetParts", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L385C13-L432C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L385C13-L432C36" }, { "DocsId": "M:System.IO.Packaging.Package.System#IDisposable#Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L447C13-L479C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L447C13-L479C10" }, { "DocsId": "M:System.IO.Packaging.Package.Close", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L491C13-L492C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L491C13-L492C10" }, { "DocsId": "M:System.IO.Packaging.Package.Flush", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L502C13-L524C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L502C13-L524C10" }, { "DocsId": "M:System.IO.Packaging.Package.CreateRelationship(System.Uri,System.IO.Packaging.TargetMode,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L547C13-L547C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L547C13-L547C86" }, { "DocsId": "M:System.IO.Packaging.Package.CreateRelationship(System.Uri,System.IO.Packaging.TargetMode,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L571C13-L575C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L571C13-L575C84" }, { "DocsId": "M:System.IO.Packaging.Package.DeleteRelationship(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L590C13-L600C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L590C13-L600C10" }, { "DocsId": "M:System.IO.Packaging.Package.GetRelationships", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L613C13-L613C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L613C13-L613C49" }, { "DocsId": "M:System.IO.Packaging.Package.GetRelationshipsByType(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L631C13-L639C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L631C13-L639C61" }, { "DocsId": "M:System.IO.Packaging.Package.GetRelationship(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L657C13-L661C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L657C13-L661C45" }, { "DocsId": "M:System.IO.Packaging.Package.RelationshipExists(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L678C13-L678C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L678C13-L678C56" }, { "DocsId": "M:System.IO.Packaging.Package.CreatePartCore(System.Uri,System.String,System.IO.Packaging.CompressionOption)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs" }, { "DocsId": "M:System.IO.Packaging.Package.GetPartCore(System.Uri)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs" }, { "DocsId": "M:System.IO.Packaging.Package.DeletePartCore(System.Uri)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs" }, { "DocsId": "M:System.IO.Packaging.Package.GetPartsCore", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs" }, { "DocsId": "M:System.IO.Packaging.Package.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L736C13-L753C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L736C13-L753C10" }, { "DocsId": "M:System.IO.Packaging.Package.FlushCore", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs" }, { "DocsId": "M:System.IO.Packaging.Package.Open(System.String,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L824C13-L872C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L824C13-L872C28" }, { "DocsId": "M:System.IO.Packaging.Package.Open(System.IO.Stream,System.IO.FileMode,System.IO.FileAccess)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L888C13-L917C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L888C13-L917C28" }, { "DocsId": "P:System.IO.Packaging.Package.FileOpenAccess", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L55C17-L56C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L55C17-L56C40" }, { "DocsId": "P:System.IO.Packaging.Package.PackageProperties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L70C17-L72C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L70C17-L72C84" } ], "DocsId": "T:System.IO.Packaging.Package", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs" }, { "Members": [ { "DocsId": "M:System.IO.Packaging.PackagePart.#ctor(System.IO.Packaging.Package,System.Uri)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L40C15-L42C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L40C15-L42C10" }, { "DocsId": "M:System.IO.Packaging.PackagePart.#ctor(System.IO.Packaging.Package,System.Uri,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L68C15-L70C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L68C15-L70C10" }, { "DocsId": "M:System.IO.Packaging.PackagePart.#ctor(System.IO.Packaging.Package,System.Uri,System.String,System.IO.Packaging.CompressionOption)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L804C9-L127C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L804C9-L127C10" }, { "DocsId": "M:System.IO.Packaging.PackagePart.GetContentTypeCore", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L252C13-L252C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L252C13-L252C82" }, { "DocsId": "M:System.IO.Packaging.PackagePart.GetStream", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L273C13-L274C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L273C13-L274C80" }, { "DocsId": "M:System.IO.Packaging.PackagePart.GetStream(System.IO.FileMode)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L295C13-L296C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L295C13-L296C63" }, { "DocsId": "M:System.IO.Packaging.PackagePart.GetStream(System.IO.FileMode,System.IO.FileAccess)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L319C13-L351C22" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L319C13-L351C22" }, { "DocsId": "M:System.IO.Packaging.PackagePart.GetStreamCore(System.IO.FileMode,System.IO.FileAccess)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs" }, { "DocsId": "M:System.IO.Packaging.PackagePart.CreateRelationship(System.Uri,System.IO.Packaging.TargetMode,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L384C13-L384C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L384C13-L384C86" }, { "DocsId": "M:System.IO.Packaging.PackagePart.CreateRelationship(System.Uri,System.IO.Packaging.TargetMode,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L410C13-L414C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L410C13-L414C84" }, { "DocsId": "M:System.IO.Packaging.PackagePart.DeleteRelationship(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L430C13-L440C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L430C13-L440C10" }, { "DocsId": "M:System.IO.Packaging.PackagePart.GetRelationships", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L455C13-L455C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L455C13-L455C49" }, { "DocsId": "M:System.IO.Packaging.PackagePart.GetRelationshipsByType(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L474C13-L482C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L474C13-L482C61" }, { "DocsId": "M:System.IO.Packaging.PackagePart.GetRelationship(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L501C13-L505C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L501C13-L505C45" }, { "DocsId": "M:System.IO.Packaging.PackagePart.RelationshipExists(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L523C13-L523C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L523C13-L523C56" }, { "DocsId": "P:System.IO.Packaging.PackagePart.Uri", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L144C17-L145C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L144C17-L145C29" }, { "DocsId": "P:System.IO.Packaging.PackagePart.ContentType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L168C17-L193C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L168C17-L193C48" }, { "DocsId": "P:System.IO.Packaging.PackagePart.Package", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L209C17-L210C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L209C17-L210C35" }, { "DocsId": "P:System.IO.Packaging.PackagePart.CompressionOption", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L224C17-L225C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L224C17-L225C43" } ], "DocsId": "T:System.IO.Packaging.PackagePart", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs" }, { "Members": [ { "DocsId": "M:System.IO.Packaging.PackagePartCollection.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePartCollection.cs#L25C13-L25C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePartCollection.cs#L25C13-L25C36" }, { "DocsId": "M:System.IO.Packaging.PackagePartCollection.System#Collections#Generic#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePartCollection.cs#L36C13-L36C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePartCollection.cs#L36C13-L36C36" }, { "DocsId": "M:System.IO.Packaging.PackagePartCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePartCollection.cs#L46C13-L46C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePartCollection.cs#L46C13-L46C53" } ], "DocsId": "T:System.IO.Packaging.PackagePartCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePartCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePartCollection.cs" }, { "Members": [ { "DocsId": "M:System.IO.Packaging.PackageProperties.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs#L43C13-L46C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs#L43C13-L46C10" }, { "DocsId": "M:System.IO.Packaging.PackageProperties.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs#L54C9-L54C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs#L54C9-L54C10" }, { "DocsId": "M:System.IO.Packaging.PackageProperties.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" }, { "DocsId": "P:System.IO.Packaging.PackageProperties.Title", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" }, { "DocsId": "P:System.IO.Packaging.PackageProperties.Subject", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" }, { "DocsId": "P:System.IO.Packaging.PackageProperties.Creator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" }, { "DocsId": "P:System.IO.Packaging.PackageProperties.Keywords", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" }, { "DocsId": "P:System.IO.Packaging.PackageProperties.Description", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" }, { "DocsId": "P:System.IO.Packaging.PackageProperties.LastModifiedBy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" }, { "DocsId": "P:System.IO.Packaging.PackageProperties.Revision", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" }, { "DocsId": "P:System.IO.Packaging.PackageProperties.LastPrinted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" }, { "DocsId": "P:System.IO.Packaging.PackageProperties.Created", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" }, { "DocsId": "P:System.IO.Packaging.PackageProperties.Modified", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" }, { "DocsId": "P:System.IO.Packaging.PackageProperties.Category", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" }, { "DocsId": "P:System.IO.Packaging.PackageProperties.Identifier", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" }, { "DocsId": "P:System.IO.Packaging.PackageProperties.ContentType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" }, { "DocsId": "P:System.IO.Packaging.PackageProperties.Language", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" }, { "DocsId": "P:System.IO.Packaging.PackageProperties.Version", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" }, { "DocsId": "P:System.IO.Packaging.PackageProperties.ContentStatus", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" } ], "DocsId": "T:System.IO.Packaging.PackageProperties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" }, { "Members": [ { "DocsId": "P:System.IO.Packaging.PackageRelationship.SourceUri", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationship.cs#L32C17-L35C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationship.cs#L32C17-L35C40" }, { "DocsId": "P:System.IO.Packaging.PackageRelationship.TargetUri", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationship.cs#L47C17-L47C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationship.cs#L47C17-L47C35" }, { "DocsId": "P:System.IO.Packaging.PackageRelationship.RelationshipType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationship.cs#L59C17-L59C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationship.cs#L59C17-L59C42" }, { "DocsId": "P:System.IO.Packaging.PackageRelationship.TargetMode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationship.cs#L71C17-L71C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationship.cs#L71C17-L71C36" }, { "DocsId": "P:System.IO.Packaging.PackageRelationship.Id", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationship.cs#L83C17-L83C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationship.cs#L83C17-L83C28" }, { "DocsId": "P:System.IO.Packaging.PackageRelationship.Package", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationship.cs#L96C17-L96C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationship.cs#L96C17-L96C33" } ], "DocsId": "T:System.IO.Packaging.PackageRelationship", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationship.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationship.cs" }, { "Members": [ { "DocsId": "M:System.IO.Packaging.PackageRelationshipCollection.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationshipCollection.cs#L27C13-L27C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationshipCollection.cs#L27C13-L27C36" }, { "DocsId": "M:System.IO.Packaging.PackageRelationshipCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationshipCollection.cs#L37C13-L42C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationshipCollection.cs#L37C13-L42C81" } ], "DocsId": "T:System.IO.Packaging.PackageRelationshipCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationshipCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationshipCollection.cs" }, { "Members": [ { "DocsId": "M:System.IO.Packaging.PackageRelationshipSelector.#ctor(System.Uri,System.IO.Packaging.PackageRelationshipSelectorType,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationshipSelector.cs#L31C9-L59C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationshipSelector.cs#L31C9-L59C10" }, { "DocsId": "M:System.IO.Packaging.PackageRelationshipSelector.Select(System.IO.Packaging.Package)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationshipSelector.cs#L117C13-L166C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationshipSelector.cs#L117C13-L166C34" }, { "DocsId": "P:System.IO.Packaging.PackageRelationshipSelector.SourceUri", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationshipSelector.cs#L73C17-L73C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationshipSelector.cs#L73C17-L73C35" }, { "DocsId": "P:System.IO.Packaging.PackageRelationshipSelector.SelectorType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationshipSelector.cs#L86C17-L86C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationshipSelector.cs#L86C17-L86C38" }, { "DocsId": "P:System.IO.Packaging.PackageRelationshipSelector.SelectionCriteria", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationshipSelector.cs#L99C17-L99C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationshipSelector.cs#L99C17-L99C43" } ], "DocsId": "T:System.IO.Packaging.PackageRelationshipSelector", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationshipSelector.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationshipSelector.cs" }, { "Members": [ { "DocsId": "F:System.IO.Packaging.PackageRelationshipSelectorType.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationshipSelectorType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationshipSelectorType.cs" }, { "DocsId": "F:System.IO.Packaging.PackageRelationshipSelectorType.Id", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationshipSelectorType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationshipSelectorType.cs" }, { "DocsId": "F:System.IO.Packaging.PackageRelationshipSelectorType.Type", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationshipSelectorType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationshipSelectorType.cs" } ], "DocsId": "T:System.IO.Packaging.PackageRelationshipSelectorType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationshipSelectorType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationshipSelectorType.cs" }, { "Members": [ { "DocsId": "M:System.IO.Packaging.PackUriHelper.CreatePartUri(System.Uri)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.cs#L38C13-L59C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.cs#L38C13-L59C51" }, { "DocsId": "M:System.IO.Packaging.PackUriHelper.ResolvePartUri(System.Uri,System.Uri)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.cs#L81C13-L100C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.cs#L81C13-L100C72" }, { "DocsId": "M:System.IO.Packaging.PackUriHelper.GetRelativeUri(System.Uri,System.Uri)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.cs#L113C13-L125C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.cs#L113C13-L125C65" }, { "DocsId": "M:System.IO.Packaging.PackUriHelper.GetNormalizedPartUri(System.Uri)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.cs#L137C13-L144C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.cs#L137C13-L144C66" }, { "DocsId": "M:System.IO.Packaging.PackUriHelper.ComparePartUri(System.Uri,System.Uri)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.cs#L160C13-L170C109" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.cs#L160C13-L170C109" }, { "DocsId": "M:System.IO.Packaging.PackUriHelper.IsRelationshipPartUri(System.Uri)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.cs#L185C13-L193C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.cs#L185C13-L193C70" }, { "DocsId": "M:System.IO.Packaging.PackUriHelper.GetRelationshipPartUri(System.Uri)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.cs#L211C13-L245C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.cs#L211C13-L245C76" }, { "DocsId": "M:System.IO.Packaging.PackUriHelper.GetSourcePartUriFromRelationshipPartUri(System.Uri)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.cs#L267C13-L307C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.cs#L267C13-L307C77" }, { "DocsId": "M:System.IO.Packaging.PackUriHelper.Create(System.Uri)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.PackUriScheme.cs#L33C13-L33C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.PackUriScheme.cs#L33C13-L33C51" }, { "DocsId": "M:System.IO.Packaging.PackUriHelper.Create(System.Uri,System.Uri)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.PackUriScheme.cs#L51C13-L51C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.PackUriScheme.cs#L51C13-L51C54" }, { "DocsId": "M:System.IO.Packaging.PackUriHelper.Create(System.Uri,System.Uri,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.PackUriScheme.cs#L73C13-L118C100" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.PackUriScheme.cs#L73C13-L118C100" }, { "DocsId": "M:System.IO.Packaging.PackUriHelper.GetPackageUri(System.Uri)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.PackUriScheme.cs#L134C13-L136C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.PackUriScheme.cs#L134C13-L136C31" }, { "DocsId": "M:System.IO.Packaging.PackUriHelper.GetPartUri(System.Uri)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.PackUriScheme.cs#L157C13-L159C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.PackUriScheme.cs#L157C13-L159C28" }, { "DocsId": "M:System.IO.Packaging.PackUriHelper.ComparePackUri(System.Uri,System.Uri)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.PackUriScheme.cs#L177C13-L203C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.PackUriScheme.cs#L177C13-L203C38" }, { "DocsId": "F:System.IO.Packaging.PackUriHelper.UriSchemePack", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.cs" } ], "DocsId": "T:System.IO.Packaging.PackUriHelper", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.cs" }, { "Members": [ { "DocsId": "F:System.IO.Packaging.TargetMode.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/TargetMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/TargetMode.cs" }, { "DocsId": "F:System.IO.Packaging.TargetMode.Internal", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/TargetMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/TargetMode.cs" }, { "DocsId": "F:System.IO.Packaging.TargetMode.External", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/TargetMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/TargetMode.cs" } ], "DocsId": "T:System.IO.Packaging.TargetMode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/TargetMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/TargetMode.cs" }, { "Members": [ { "DocsId": "M:System.IO.Packaging.ZipPackage.CreatePartCore(System.Uri,System.String,System.IO.Packaging.CompressionOption)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/ZipPackage.cs#L41C13-L63C179" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/ZipPackage.cs#L41C13-L63C179" }, { "DocsId": "M:System.IO.Packaging.ZipPackage.GetPartCore(System.Uri)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/ZipPackage.cs#L93C13-L93C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/ZipPackage.cs#L93C13-L93C25" }, { "DocsId": "M:System.IO.Packaging.ZipPackage.DeletePartCore(System.Uri)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/ZipPackage.cs#L108C13-L118C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/ZipPackage.cs#L108C13-L118C10" }, { "DocsId": "M:System.IO.Packaging.ZipPackage.GetPartsCore", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/ZipPackage.cs#L145C13-L183C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/ZipPackage.cs#L145C13-L183C36" }, { "DocsId": "M:System.IO.Packaging.ZipPackage.FlushCore", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/ZipPackage.cs#L196C13-L197C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/ZipPackage.cs#L196C13-L197C10" }, { "DocsId": "M:System.IO.Packaging.ZipPackage.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/ZipPackage.cs#L207C17-L225C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/ZipPackage.cs#L207C17-L225C10" } ], "DocsId": "T:System.IO.Packaging.ZipPackage", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/ZipPackage.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/ZipPackage.cs" }, { "Members": [ { "DocsId": "M:System.IO.Packaging.ZipPackagePart.GetStreamCore(System.IO.FileMode,System.IO.FileAccess)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/ZipPackagePart.cs#L27C13-L45C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/ZipPackagePart.cs#L27C13-L45C25" } ], "DocsId": "T:System.IO.Packaging.ZipPackagePart", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/ZipPackagePart.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/ZipPackagePart.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/System.IO.Pipelines.json b/xml/SourceLinkInformation/net-8.0/System.IO.Pipelines.json index d5e00dcf895..3db043c248b 100644 --- a/xml/SourceLinkInformation/net-8.0/System.IO.Pipelines.json +++ b/xml/SourceLinkInformation/net-8.0/System.IO.Pipelines.json @@ -1,353 +1,352 @@ { "Assembly": "System.IO.Pipelines", - "GUID": "08566B292B704EAD8A61F343FFBB1C64FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "A4714994402142D08887568D0F185141FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:System.IO.Pipelines.FlushResult.#ctor(System.Boolean,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/FlushResult.cs#L16C13-L27C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/FlushResult.cs#L16C13-L27C10" }, { "DocsId": "P:System.IO.Pipelines.FlushResult.IsCanceled", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/FlushResult.cs#L31C35-L31C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/FlushResult.cs#L31C35-L31C77" }, { "DocsId": "P:System.IO.Pipelines.FlushResult.IsCompleted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/FlushResult.cs#L35C36-L35C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/FlushResult.cs#L35C36-L35C79" } ], "DocsId": "T:System.IO.Pipelines.FlushResult", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/FlushResult.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/FlushResult.cs" }, { "Members": [ { "DocsId": "P:System.IO.Pipelines.IDuplexPipe.Input", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/IDuplexPipe.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/IDuplexPipe.cs" }, { "DocsId": "P:System.IO.Pipelines.IDuplexPipe.Output", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/IDuplexPipe.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/IDuplexPipe.cs" } ], "DocsId": "T:System.IO.Pipelines.IDuplexPipe", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/IDuplexPipe.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/IDuplexPipe.cs" }, { "Members": [ { "DocsId": "M:System.IO.Pipelines.Pipe.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/Pipe.cs#L87C25-L89C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/Pipe.cs#L87C25-L89C10" }, { "DocsId": "M:System.IO.Pipelines.Pipe.#ctor(System.IO.Pipelines.PipeOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/Pipe.cs#L35C9-L111C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/Pipe.cs#L35C9-L111C10" }, { "DocsId": "M:System.IO.Pipelines.Pipe.Reset", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/Pipe.cs#L1178C13-L1188C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/Pipe.cs#L1178C13-L1188C10" }, { "DocsId": "P:System.IO.Pipelines.Pipe.Reader", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/Pipe.cs#L1169C37-L1169C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/Pipe.cs#L1169C37-L1169C44" }, { "DocsId": "P:System.IO.Pipelines.Pipe.Writer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/Pipe.cs#L1173C37-L1173C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/Pipe.cs#L1173C37-L1173C44" } ], "DocsId": "T:System.IO.Pipelines.Pipe", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/Pipe.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/Pipe.cs" }, { "Members": [ { "DocsId": "M:System.IO.Pipelines.PipeOptions.#ctor(System.Buffers.MemoryPool{System.Byte},System.IO.Pipelines.PipeScheduler,System.IO.Pipelines.PipeScheduler,System.Int64,System.Int64,System.Int32,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeOptions.cs#L26C9-L86C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeOptions.cs#L26C9-L86C10" }, { "DocsId": "P:System.IO.Pipelines.PipeOptions.Default", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeOptions.cs#L16C45-L16C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeOptions.cs#L16C45-L16C49" }, { "DocsId": "P:System.IO.Pipelines.PipeOptions.UseSynchronizationContext", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeOptions.cs#L90C49-L90C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeOptions.cs#L90C49-L90C53" }, { "DocsId": "P:System.IO.Pipelines.PipeOptions.PauseWriterThreshold", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeOptions.cs#L94C44-L94C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeOptions.cs#L94C44-L94C48" }, { "DocsId": "P:System.IO.Pipelines.PipeOptions.ResumeWriterThreshold", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeOptions.cs#L98C45-L98C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeOptions.cs#L98C45-L98C49" }, { "DocsId": "P:System.IO.Pipelines.PipeOptions.MinimumSegmentSize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeOptions.cs#L102C41-L102C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeOptions.cs#L102C41-L102C45" }, { "DocsId": "P:System.IO.Pipelines.PipeOptions.WriterScheduler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeOptions.cs#L106C48-L106C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeOptions.cs#L106C48-L106C52" }, { "DocsId": "P:System.IO.Pipelines.PipeOptions.ReaderScheduler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeOptions.cs#L110C48-L110C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeOptions.cs#L110C48-L110C52" }, { "DocsId": "P:System.IO.Pipelines.PipeOptions.Pool", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeOptions.cs#L114C40-L114C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeOptions.cs#L114C40-L114C44" } ], "DocsId": "T:System.IO.Pipelines.PipeOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeOptions.cs" }, { "Members": [ { "DocsId": "M:System.IO.Pipelines.PipeReader.TryRead(System.IO.Pipelines.ReadResult@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeReader.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeReader.cs" }, { "DocsId": "M:System.IO.Pipelines.PipeReader.ReadAsync(System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeReader.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeReader.cs" }, { "DocsId": "M:System.IO.Pipelines.PipeReader.ReadAtLeastAsync(System.Int32,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeReader.cs#L53C13-L58C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeReader.cs#L53C13-L58C73" }, { "DocsId": "M:System.IO.Pipelines.PipeReader.ReadAtLeastAsyncCore(System.Int32,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeReader.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeReader.cs" }, { "DocsId": "M:System.IO.Pipelines.PipeReader.AdvanceTo(System.SequencePosition)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeReader.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeReader.cs" }, { "DocsId": "M:System.IO.Pipelines.PipeReader.AdvanceTo(System.SequencePosition,System.SequencePosition)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeReader.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeReader.cs" }, { "DocsId": "M:System.IO.Pipelines.PipeReader.AsStream(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeReader.cs#L106C13-L115C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeReader.cs#L106C13-L115C28" }, { "DocsId": "M:System.IO.Pipelines.PipeReader.CancelPendingRead", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeReader.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeReader.cs" }, { "DocsId": "M:System.IO.Pipelines.PipeReader.Complete(System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeReader.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeReader.cs" }, { "DocsId": "M:System.IO.Pipelines.PipeReader.CompleteAsync(System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeReader.cs#L133C17-L140C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeReader.cs#L133C17-L140C10" }, { "DocsId": "M:System.IO.Pipelines.PipeReader.OnWriterCompleted(System.Action{System.Exception,System.Object},System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeReader.cs#L153C9-L153C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeReader.cs#L153C9-L153C10" }, { "DocsId": "M:System.IO.Pipelines.PipeReader.Create(System.IO.Stream,System.IO.Pipelines.StreamPipeReaderOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeReader.cs#L161C13-L161C101" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeReader.cs#L161C13-L161C101" }, { "DocsId": "M:System.IO.Pipelines.PipeReader.Create(System.Buffers.ReadOnlySequence{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeReader.cs#L171C13-L171C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeReader.cs#L171C13-L171C53" }, { "DocsId": "M:System.IO.Pipelines.PipeReader.CopyToAsync(System.IO.Pipelines.PipeWriter,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeReader.cs#L180C13-L193C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeReader.cs#L180C13-L193C36" }, { "DocsId": "M:System.IO.Pipelines.PipeReader.CopyToAsync(System.IO.Stream,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeReader.cs#L202C13-L230C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeReader.cs#L202C13-L230C32" }, { "DocsId": "M:System.IO.Pipelines.PipeReader.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeReader.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeReader.cs" } ], "DocsId": "T:System.IO.Pipelines.PipeReader", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeReader.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeReader.cs" }, { "Members": [ { "DocsId": "M:System.IO.Pipelines.PipeScheduler.Schedule(System.Action{System.Object},System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeScheduler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeScheduler.cs" }, { "DocsId": "M:System.IO.Pipelines.PipeScheduler.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeScheduler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeScheduler.cs" }, { "DocsId": "P:System.IO.Pipelines.PipeScheduler.ThreadPool", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeScheduler.cs#L16C51-L16C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeScheduler.cs#L16C51-L16C72" }, { "DocsId": "P:System.IO.Pipelines.PipeScheduler.Inline", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeScheduler.cs#L20C47-L20C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeScheduler.cs#L20C47-L20C64" } ], "DocsId": "T:System.IO.Pipelines.PipeScheduler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeScheduler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeScheduler.cs" }, { "Members": [ { "DocsId": "M:System.IO.Pipelines.PipeWriter.Complete(System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeWriter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeWriter.cs" }, { "DocsId": "M:System.IO.Pipelines.PipeWriter.CompleteAsync(System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeWriter.cs#L26C17-L33C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeWriter.cs#L26C17-L33C10" }, { "DocsId": "M:System.IO.Pipelines.PipeWriter.CancelPendingFlush", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeWriter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeWriter.cs" }, { "DocsId": "M:System.IO.Pipelines.PipeWriter.OnReaderCompleted(System.Action{System.Exception,System.Object},System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeWriter.cs#L54C9-L54C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeWriter.cs#L54C9-L54C10" }, { "DocsId": "M:System.IO.Pipelines.PipeWriter.FlushAsync(System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeWriter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeWriter.cs" }, { "DocsId": "M:System.IO.Pipelines.PipeWriter.Advance(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeWriter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeWriter.cs" }, { "DocsId": "M:System.IO.Pipelines.PipeWriter.GetMemory(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeWriter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeWriter.cs" }, { "DocsId": "M:System.IO.Pipelines.PipeWriter.GetSpan(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeWriter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeWriter.cs" }, { "DocsId": "M:System.IO.Pipelines.PipeWriter.AsStream(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeWriter.cs#L88C13-L97C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeWriter.cs#L88C13-L97C28" }, { "DocsId": "M:System.IO.Pipelines.PipeWriter.Create(System.IO.Stream,System.IO.Pipelines.StreamPipeWriterOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeWriter.cs#L106C13-L106C101" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeWriter.cs#L106C13-L106C101" }, { "DocsId": "M:System.IO.Pipelines.PipeWriter.WriteAsync(System.ReadOnlyMemory{System.Byte},System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeWriter.cs#L115C13-L116C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeWriter.cs#L115C13-L116C50" }, { "DocsId": "M:System.IO.Pipelines.PipeWriter.CopyFromAsync(System.IO.Stream,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeWriter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeWriter.cs" }, { "DocsId": "M:System.IO.Pipelines.PipeWriter.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeWriter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeWriter.cs" }, { "DocsId": "P:System.IO.Pipelines.PipeWriter.CanGetUnflushedBytes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeWriter.cs#L41C53-L41C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeWriter.cs#L41C53-L41C58" }, { "DocsId": "P:System.IO.Pipelines.PipeWriter.UnflushedBytes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeWriter.cs#L155C47-L155C109" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeWriter.cs#L155C47-L155C109" } ], "DocsId": "T:System.IO.Pipelines.PipeWriter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeWriter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeWriter.cs" }, { "Members": [ { "DocsId": "M:System.IO.Pipelines.ReadResult.#ctor(System.Buffers.ReadOnlySequence{System.Byte},System.Boolean,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/ReadResult.cs#L20C13-L31C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/ReadResult.cs#L20C13-L31C10" }, { "DocsId": "P:System.IO.Pipelines.ReadResult.Buffer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/ReadResult.cs#L35C49-L35C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/ReadResult.cs#L35C49-L35C62" }, { "DocsId": "P:System.IO.Pipelines.ReadResult.IsCanceled", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/ReadResult.cs#L39C35-L39C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/ReadResult.cs#L39C35-L39C77" }, { "DocsId": "P:System.IO.Pipelines.ReadResult.IsCompleted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/ReadResult.cs#L43C36-L43C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/ReadResult.cs#L43C36-L43C79" } ], "DocsId": "T:System.IO.Pipelines.ReadResult", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/ReadResult.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/ReadResult.cs" }, { "Members": [ { "DocsId": "M:System.IO.Pipelines.StreamPipeExtensions.CopyToAsync(System.IO.Stream,System.IO.Pipelines.PipeWriter,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/StreamPipeExtensions.cs#L19C13-L33C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/StreamPipeExtensions.cs#L19C13-L33C73" } ], "DocsId": "T:System.IO.Pipelines.StreamPipeExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/StreamPipeExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/StreamPipeExtensions.cs" }, { "Members": [ { "DocsId": "M:System.IO.Pipelines.StreamPipeReaderOptions.#ctor(System.Buffers.MemoryPool{System.Byte},System.Int32,System.Int32,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/StreamPipeReaderOptions.cs#L23C13-L26C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/StreamPipeReaderOptions.cs#L23C13-L26C10" }, { "DocsId": "M:System.IO.Pipelines.StreamPipeReaderOptions.#ctor(System.Buffers.MemoryPool{System.Byte},System.Int32,System.Int32,System.Boolean,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/StreamPipeReaderOptions.cs#L61C47-L53C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/StreamPipeReaderOptions.cs#L61C47-L53C10" }, { "DocsId": "P:System.IO.Pipelines.StreamPipeReaderOptions.BufferSize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/StreamPipeReaderOptions.cs#L57C33-L57C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/StreamPipeReaderOptions.cs#L57C33-L57C37" }, { "DocsId": "P:System.IO.Pipelines.StreamPipeReaderOptions.MinimumReadSize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/StreamPipeReaderOptions.cs#L65C38-L65C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/StreamPipeReaderOptions.cs#L65C38-L65C42" }, { "DocsId": "P:System.IO.Pipelines.StreamPipeReaderOptions.Pool", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/StreamPipeReaderOptions.cs#L69C40-L69C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/StreamPipeReaderOptions.cs#L69C40-L69C44" }, { "DocsId": "P:System.IO.Pipelines.StreamPipeReaderOptions.LeaveOpen", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/StreamPipeReaderOptions.cs#L73C33-L73C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/StreamPipeReaderOptions.cs#L73C33-L73C37" }, { "DocsId": "P:System.IO.Pipelines.StreamPipeReaderOptions.UseZeroByteReads", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/StreamPipeReaderOptions.cs#L77C40-L77C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/StreamPipeReaderOptions.cs#L77C40-L77C44" } ], "DocsId": "T:System.IO.Pipelines.StreamPipeReaderOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/StreamPipeReaderOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/StreamPipeReaderOptions.cs" }, { "Members": [ { "DocsId": "M:System.IO.Pipelines.StreamPipeWriterOptions.#ctor(System.Buffers.MemoryPool{System.Byte},System.Int32,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/StreamPipeWriterOptions.cs#L19C9-L29C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/StreamPipeWriterOptions.cs#L19C9-L29C10" }, { "DocsId": "P:System.IO.Pipelines.StreamPipeWriterOptions.MinimumBufferSize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/StreamPipeWriterOptions.cs#L33C40-L33C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/StreamPipeWriterOptions.cs#L33C40-L33C44" }, { "DocsId": "P:System.IO.Pipelines.StreamPipeWriterOptions.Pool", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/StreamPipeWriterOptions.cs#L37C40-L37C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/StreamPipeWriterOptions.cs#L37C40-L37C44" }, { "DocsId": "P:System.IO.Pipelines.StreamPipeWriterOptions.LeaveOpen", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/StreamPipeWriterOptions.cs#L41C33-L41C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/StreamPipeWriterOptions.cs#L41C33-L41C37" } ], "DocsId": "T:System.IO.Pipelines.StreamPipeWriterOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/StreamPipeWriterOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/StreamPipeWriterOptions.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/System.IO.Ports.json b/xml/SourceLinkInformation/net-8.0/System.IO.Ports.json index 1f704563461..6f94819cb00 100644 --- a/xml/SourceLinkInformation/net-8.0/System.IO.Ports.json +++ b/xml/SourceLinkInformation/net-8.0/System.IO.Ports.json @@ -1,481 +1,480 @@ { "Assembly": "System.IO.Ports", - "GUID": "204F121273384DA88023FD37CB452D3EFFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "0B02237FB2CF4437AD4BF5E19C3F989DFFFFFFFF", "Types": [ { "Members": [ { "DocsId": "F:System.IO.Ports.Handshake.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/Handshake.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/Handshake.cs" }, { "DocsId": "F:System.IO.Ports.Handshake.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/Handshake.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/Handshake.cs" }, { "DocsId": "F:System.IO.Ports.Handshake.XOnXOff", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/Handshake.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/Handshake.cs" }, { "DocsId": "F:System.IO.Ports.Handshake.RequestToSend", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/Handshake.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/Handshake.cs" }, { "DocsId": "F:System.IO.Ports.Handshake.RequestToSendXOnXOff", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/Handshake.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/Handshake.cs" } ], "DocsId": "T:System.IO.Ports.Handshake", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/Handshake.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/Handshake.cs" }, { "Members": [ { "DocsId": "F:System.IO.Ports.Parity.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/Parity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/Parity.cs" }, { "DocsId": "F:System.IO.Ports.Parity.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/Parity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/Parity.cs" }, { "DocsId": "F:System.IO.Ports.Parity.Odd", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/Parity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/Parity.cs" }, { "DocsId": "F:System.IO.Ports.Parity.Even", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/Parity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/Parity.cs" }, { "DocsId": "F:System.IO.Ports.Parity.Mark", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/Parity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/Parity.cs" }, { "DocsId": "F:System.IO.Ports.Parity.Space", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/Parity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/Parity.cs" } ], "DocsId": "T:System.IO.Ports.Parity", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/Parity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/Parity.cs" }, { "Members": [ { "DocsId": "F:System.IO.Ports.SerialData.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialData.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialData.cs" }, { "DocsId": "F:System.IO.Ports.SerialData.Chars", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialData.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialData.cs" }, { "DocsId": "F:System.IO.Ports.SerialData.Eof", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialData.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialData.cs" } ], "DocsId": "T:System.IO.Ports.SerialData", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialData.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialData.cs" }, { "Members": [ { "DocsId": "P:System.IO.Ports.SerialDataReceivedEventArgs.EventType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialDataReceivedEventArgs.cs#L13C39-L13C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialDataReceivedEventArgs.cs#L13C39-L13C43" } ], "DocsId": "T:System.IO.Ports.SerialDataReceivedEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialDataReceivedEventArgs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialDataReceivedEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.IO.Ports.SerialDataReceivedEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialDataReceivedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialDataReceivedEventHandler.cs" }, { "DocsId": "M:System.IO.Ports.SerialDataReceivedEventHandler.Invoke(System.Object,System.IO.Ports.SerialDataReceivedEventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialDataReceivedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialDataReceivedEventHandler.cs" }, { "DocsId": "M:System.IO.Ports.SerialDataReceivedEventHandler.BeginInvoke(System.Object,System.IO.Ports.SerialDataReceivedEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialDataReceivedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialDataReceivedEventHandler.cs" }, { "DocsId": "M:System.IO.Ports.SerialDataReceivedEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialDataReceivedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialDataReceivedEventHandler.cs" } ], "DocsId": "T:System.IO.Ports.SerialDataReceivedEventHandler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialDataReceivedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialDataReceivedEventHandler.cs" }, { "Members": [ { "DocsId": "F:System.IO.Ports.SerialError.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialError.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialError.cs" }, { "DocsId": "F:System.IO.Ports.SerialError.TXFull", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialError.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialError.cs" }, { "DocsId": "F:System.IO.Ports.SerialError.RXOver", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialError.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialError.cs" }, { "DocsId": "F:System.IO.Ports.SerialError.Overrun", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialError.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialError.cs" }, { "DocsId": "F:System.IO.Ports.SerialError.RXParity", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialError.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialError.cs" }, { "DocsId": "F:System.IO.Ports.SerialError.Frame", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialError.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialError.cs" } ], "DocsId": "T:System.IO.Ports.SerialError", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialError.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialError.cs" }, { "Members": [ { "DocsId": "P:System.IO.Ports.SerialErrorReceivedEventArgs.EventType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialErrorReceivedEventArgs.cs#L13C40-L13C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialErrorReceivedEventArgs.cs#L13C40-L13C44" } ], "DocsId": "T:System.IO.Ports.SerialErrorReceivedEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialErrorReceivedEventArgs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialErrorReceivedEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.IO.Ports.SerialErrorReceivedEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialErrorReceivedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialErrorReceivedEventHandler.cs" }, { "DocsId": "M:System.IO.Ports.SerialErrorReceivedEventHandler.Invoke(System.Object,System.IO.Ports.SerialErrorReceivedEventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialErrorReceivedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialErrorReceivedEventHandler.cs" }, { "DocsId": "M:System.IO.Ports.SerialErrorReceivedEventHandler.BeginInvoke(System.Object,System.IO.Ports.SerialErrorReceivedEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialErrorReceivedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialErrorReceivedEventHandler.cs" }, { "DocsId": "M:System.IO.Ports.SerialErrorReceivedEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialErrorReceivedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialErrorReceivedEventHandler.cs" } ], "DocsId": "T:System.IO.Ports.SerialErrorReceivedEventHandler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialErrorReceivedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialErrorReceivedEventHandler.cs" }, { "Members": [ { "DocsId": "F:System.IO.Ports.SerialPinChange.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPinChange.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPinChange.cs" }, { "DocsId": "F:System.IO.Ports.SerialPinChange.CtsChanged", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPinChange.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPinChange.cs" }, { "DocsId": "F:System.IO.Ports.SerialPinChange.DsrChanged", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPinChange.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPinChange.cs" }, { "DocsId": "F:System.IO.Ports.SerialPinChange.CDChanged", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPinChange.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPinChange.cs" }, { "DocsId": "F:System.IO.Ports.SerialPinChange.Ring", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPinChange.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPinChange.cs" }, { "DocsId": "F:System.IO.Ports.SerialPinChange.Break", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPinChange.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPinChange.cs" } ], "DocsId": "T:System.IO.Ports.SerialPinChange", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPinChange.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPinChange.cs" }, { "Members": [ { "DocsId": "P:System.IO.Ports.SerialPinChangedEventArgs.EventType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPinChangedEventArgs.cs#L13C44-L13C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPinChangedEventArgs.cs#L13C44-L13C48" } ], "DocsId": "T:System.IO.Ports.SerialPinChangedEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPinChangedEventArgs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPinChangedEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.IO.Ports.SerialPinChangedEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPinChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPinChangedEventHandler.cs" }, { "DocsId": "M:System.IO.Ports.SerialPinChangedEventHandler.Invoke(System.Object,System.IO.Ports.SerialPinChangedEventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPinChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPinChangedEventHandler.cs" }, { "DocsId": "M:System.IO.Ports.SerialPinChangedEventHandler.BeginInvoke(System.Object,System.IO.Ports.SerialPinChangedEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPinChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPinChangedEventHandler.cs" }, { "DocsId": "M:System.IO.Ports.SerialPinChangedEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPinChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPinChangedEventHandler.cs" } ], "DocsId": "T:System.IO.Ports.SerialPinChangedEventHandler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPinChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPinChangedEventHandler.cs" }, { "Members": [ { "DocsId": "M:System.IO.Ports.SerialPort.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L38C9-L514C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L38C9-L514C10" }, { "DocsId": "M:System.IO.Ports.SerialPort.#ctor(System.ComponentModel.IContainer)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L516C51-L520C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L516C51-L520C10" }, { "DocsId": "M:System.IO.Ports.SerialPort.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L525C46-L527C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L525C46-L527C10" }, { "DocsId": "M:System.IO.Ports.SerialPort.#ctor(System.String,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L529C60-L531C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L529C60-L531C10" }, { "DocsId": "M:System.IO.Ports.SerialPort.#ctor(System.String,System.Int32,System.IO.Ports.Parity)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L533C75-L535C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L533C75-L535C10" }, { "DocsId": "M:System.IO.Ports.SerialPort.#ctor(System.String,System.Int32,System.IO.Ports.Parity,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L537C89-L539C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L537C89-L539C10" }, { "DocsId": "M:System.IO.Ports.SerialPort.#ctor(System.String,System.Int32,System.IO.Ports.Parity,System.Int32,System.IO.Ports.StopBits)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L544C108-L551C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L544C108-L551C10" }, { "DocsId": "M:System.IO.Ports.SerialPort.Close", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L556C13-L557C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L556C13-L557C10" }, { "DocsId": "M:System.IO.Ports.SerialPort.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L561C13-L572C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L561C13-L572C10" }, { "DocsId": "M:System.IO.Ports.SerialPort.DiscardInBuffer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L576C13-L580C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L576C13-L580C10" }, { "DocsId": "M:System.IO.Ports.SerialPort.DiscardOutBuffer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L584C13-L587C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L584C13-L587C10" }, { "DocsId": "M:System.IO.Ports.SerialPort.Open", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L595C13-L610C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L595C13-L610C10" }, { "DocsId": "M:System.IO.Ports.SerialPort.Read(System.Byte[],System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L623C13-L662C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L623C13-L662C38" }, { "DocsId": "M:System.IO.Ports.SerialPort.ReadChar", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L669C13-L672C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L669C13-L672C46" }, { "DocsId": "M:System.IO.Ports.SerialPort.Read(System.Char[],System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L764C13-L775C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L764C13-L775C77" }, { "DocsId": "M:System.IO.Ports.SerialPort.ReadByte", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L944C13-L950C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L944C13-L950C53" }, { "DocsId": "M:System.IO.Ports.SerialPort.ReadExisting", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L955C13-L997C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L955C13-L1011C80" }, { "DocsId": "M:System.IO.Ports.SerialPort.ReadLine", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L1002C13-L1002C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L1016C13-L1016C36" }, { "DocsId": "M:System.IO.Ports.SerialPort.ReadTo(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L1007C13-L1120C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L1021C13-L1134C10" }, { "DocsId": "M:System.IO.Ports.SerialPort.Write(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L1125C13-L1135C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L1139C13-L1149C10" }, { "DocsId": "M:System.IO.Ports.SerialPort.Write(System.Char[],System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L1141C13-L1156C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L1155C13-L1170C10" }, { "DocsId": "M:System.IO.Ports.SerialPort.Write(System.Byte[],System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L1161C13-L1174C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L1175C13-L1188C10" }, { "DocsId": "M:System.IO.Ports.SerialPort.WriteLine(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L1178C13-L1179C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L1192C13-L1193C10" }, { "DocsId": "M:System.IO.Ports.SerialPort.GetPortNames", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.Win32.cs#L22C20-L37C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.Win32.cs#L22C20-L37C10" }, { "DocsId": "E:System.IO.Ports.SerialPort.ErrorReceived", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs" }, { "DocsId": "E:System.IO.Ports.SerialPort.PinChanged", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs" }, { "DocsId": "E:System.IO.Ports.SerialPort.DataReceived", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L77C17-L87C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L77C17-L87C14" }, { "DocsId": "F:System.IO.Ports.SerialPort.InfiniteTimeout", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs" }, { "DocsId": "P:System.IO.Ports.SerialPort.BaseStream", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L114C17-L117C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L114C17-L117C46" }, { "DocsId": "P:System.IO.Ports.SerialPort.BaudRate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L123C19-L123C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L123C19-L123C36" }, { "DocsId": "P:System.IO.Ports.SerialPort.BreakState", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L139C17-L142C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L139C17-L142C57" }, { "DocsId": "P:System.IO.Ports.SerialPort.BytesToWrite", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L158C17-L160C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L158C17-L160C59" }, { "DocsId": "P:System.IO.Ports.SerialPort.BytesToRead", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L169C17-L171C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L169C17-L171C78" }, { "DocsId": "P:System.IO.Ports.SerialPort.CDHolding", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L187C17-L189C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L187C17-L189C56" }, { "DocsId": "P:System.IO.Ports.SerialPort.CtsHolding", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L197C17-L199C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L197C17-L199C57" }, { "DocsId": "P:System.IO.Ports.SerialPort.DataBits", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L206C15-L206C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L206C15-L206C32" }, { "DocsId": "P:System.IO.Ports.SerialPort.DiscardNull", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L222C17-L222C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L222C17-L222C37" }, { "DocsId": "P:System.IO.Ports.SerialPort.DsrHolding", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L236C17-L238C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L236C17-L238C57" }, { "DocsId": "P:System.IO.Ports.SerialPort.DtrEnable", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L246C17-L249C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L246C17-L249C35" }, { "DocsId": "P:System.IO.Ports.SerialPort.Encoding", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L266C17-L266C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L266C17-L266C34" }, { "DocsId": "P:System.IO.Ports.SerialPort.Handshake", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L294C17-L294C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L294C17-L294C35" }, { "DocsId": "P:System.IO.Ports.SerialPort.IsOpen", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L310C19-L310C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L310C19-L310C90" }, { "DocsId": "P:System.IO.Ports.SerialPort.NewLine", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L315C19-L315C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L315C19-L315C35" }, { "DocsId": "P:System.IO.Ports.SerialPort.Parity", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L331C17-L331C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L331C17-L331C32" }, { "DocsId": "P:System.IO.Ports.SerialPort.ParityReplace", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L346C19-L346C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L346C19-L346C41" }, { "DocsId": "P:System.IO.Ports.SerialPort.PortName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L361C17-L361C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L361C17-L361C34" }, { "DocsId": "P:System.IO.Ports.SerialPort.ReadBufferSize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L380C17-L380C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L380C17-L380C40" }, { "DocsId": "P:System.IO.Ports.SerialPort.ReadTimeout", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L399C17-L399C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L399C17-L399C37" }, { "DocsId": "P:System.IO.Ports.SerialPort.ReceivedBytesThreshold", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L419C17-L419C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L419C17-L419C48" }, { "DocsId": "P:System.IO.Ports.SerialPort.RtsEnable", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L442C17-L445C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L442C17-L445C35" }, { "DocsId": "P:System.IO.Ports.SerialPort.StopBits", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L460C17-L460C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L460C17-L460C34" }, { "DocsId": "P:System.IO.Ports.SerialPort.WriteBufferSize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L478C17-L478C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L478C17-L478C41" }, { "DocsId": "P:System.IO.Ports.SerialPort.WriteTimeout", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L497C17-L497C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L497C17-L497C38" } ], "DocsId": "T:System.IO.Ports.SerialPort", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs" }, { "Members": [ { "DocsId": "F:System.IO.Ports.StopBits.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/StopBits.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/StopBits.cs" }, { "DocsId": "F:System.IO.Ports.StopBits.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/StopBits.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/StopBits.cs" }, { "DocsId": "F:System.IO.Ports.StopBits.One", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/StopBits.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/StopBits.cs" }, { "DocsId": "F:System.IO.Ports.StopBits.Two", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/StopBits.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/StopBits.cs" }, { "DocsId": "F:System.IO.Ports.StopBits.OnePointFive", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/StopBits.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/StopBits.cs" } ], "DocsId": "T:System.IO.Ports.StopBits", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/StopBits.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/StopBits.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/System.Management.json b/xml/SourceLinkInformation/net-8.0/System.Management.json index 93f8e09269e..de885c66ea1 100644 --- a/xml/SourceLinkInformation/net-8.0/System.Management.json +++ b/xml/SourceLinkInformation/net-8.0/System.Management.json @@ -1,2769 +1,2768 @@ { "Assembly": "System.Management", - "GUID": "04C8AD1B3C914D33BC37BDF871341844FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "EB8F6EE4580F4AA69BD179C7A438761AFFFFFFFF", "Types": [ { "Members": [ { "DocsId": "F:System.Management.TextFormat.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" }, { "DocsId": "F:System.Management.TextFormat.Mof", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" }, { "DocsId": "F:System.Management.TextFormat.CimDtd20", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" }, { "DocsId": "F:System.Management.TextFormat.WmiDtd20", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" } ], "DocsId": "T:System.Management.TextFormat", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" }, { "Members": [ { "DocsId": "F:System.Management.CimType.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" }, { "DocsId": "F:System.Management.CimType.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" }, { "DocsId": "F:System.Management.CimType.SInt8", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" }, { "DocsId": "F:System.Management.CimType.UInt8", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" }, { "DocsId": "F:System.Management.CimType.SInt16", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" }, { "DocsId": "F:System.Management.CimType.UInt16", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" }, { "DocsId": "F:System.Management.CimType.SInt32", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" }, { "DocsId": "F:System.Management.CimType.UInt32", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" }, { "DocsId": "F:System.Management.CimType.SInt64", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" }, { "DocsId": "F:System.Management.CimType.UInt64", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" }, { "DocsId": "F:System.Management.CimType.Real32", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" }, { "DocsId": "F:System.Management.CimType.Real64", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" }, { "DocsId": "F:System.Management.CimType.Boolean", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" }, { "DocsId": "F:System.Management.CimType.String", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" }, { "DocsId": "F:System.Management.CimType.DateTime", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" }, { "DocsId": "F:System.Management.CimType.Reference", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" }, { "DocsId": "F:System.Management.CimType.Char16", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" }, { "DocsId": "F:System.Management.CimType.Object", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" } ], "DocsId": "T:System.Management.CimType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" }, { "Members": [ { "DocsId": "F:System.Management.ComparisonSettings.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" }, { "DocsId": "F:System.Management.ComparisonSettings.IncludeAll", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" }, { "DocsId": "F:System.Management.ComparisonSettings.IgnoreQualifiers", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" }, { "DocsId": "F:System.Management.ComparisonSettings.IgnoreObjectSource", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" }, { "DocsId": "F:System.Management.ComparisonSettings.IgnoreDefaultValues", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" }, { "DocsId": "F:System.Management.ComparisonSettings.IgnoreClass", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" }, { "DocsId": "F:System.Management.ComparisonSettings.IgnoreCase", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" }, { "DocsId": "F:System.Management.ComparisonSettings.IgnoreFlavor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" } ], "DocsId": "T:System.Management.ComparisonSettings", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" }, { "Members": [ { "DocsId": "M:System.Management.ManagementBaseObject.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs#L230C9-L232C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs#L230C9-L232C55" }, { "DocsId": "M:System.Management.ManagementBaseObject.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs#L237C13-L244C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs#L237C13-L244C10" }, { "DocsId": "M:System.Management.ManagementBaseObject.op_Explicit(System.Management.ManagementBaseObject)~System.IntPtr", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs#L260C13-L263C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs#L260C13-L263C56" }, { "DocsId": "M:System.Management.ManagementBaseObject.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs#L269C13-L269C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs#L269C13-L269C55" }, { "DocsId": "M:System.Management.ManagementBaseObject.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs#L274C13-L274C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs#L274C13-L274C55" }, { "DocsId": "M:System.Management.ManagementBaseObject.Clone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs#L314C13-L326C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs#L314C13-L326C55" }, { "DocsId": "M:System.Management.ManagementBaseObject.GetPropertyValue(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs#L500C13-L507C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs#L500C13-L507C55" }, { "DocsId": "M:System.Management.ManagementBaseObject.GetQualifierValue(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs#L522C13-L522C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs#L522C13-L522C52" }, { "DocsId": "M:System.Management.ManagementBaseObject.SetQualifierValue(System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs#L535C13-L536C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs#L535C13-L536C10" }, { "DocsId": "M:System.Management.ManagementBaseObject.GetPropertyQualifierValue(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs#L552C13-L552C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs#L552C13-L552C77" }, { "DocsId": "M:System.Management.ManagementBaseObject.SetPropertyQualifierValue(System.String,System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs#L567C13-L568C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs#L567C13-L568C10" }, { "DocsId": "M:System.Management.ManagementBaseObject.GetText(System.Management.TextFormat)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs#L583C13-L636C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs#L583C13-L636C33" }, { "DocsId": "M:System.Management.ManagementBaseObject.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs#L651C13-L688C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs#L651C13-L688C10" }, { "DocsId": "M:System.Management.ManagementBaseObject.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs#L702C13-L719C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs#L702C13-L719C30" }, { "DocsId": "M:System.Management.ManagementBaseObject.CompareTo(System.Management.ManagementBaseObject,System.Management.ComparisonSettings)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs#L737C13-L758C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs#L737C13-L758C27" }, { "DocsId": "M:System.Management.ManagementBaseObject.SetPropertyValue(System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs#L821C13-L829C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs#L821C13-L829C10" }, { "DocsId": "P:System.Management.ManagementBaseObject.Properties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs#L348C17-L350C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs#L348C17-L350C79" }, { "DocsId": "P:System.Management.ManagementBaseObject.SystemProperties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs#L367C17-L369C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs#L367C17-L369C84" }, { "DocsId": "P:System.Management.ManagementBaseObject.Qualifiers", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs#L387C17-L389C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs#L387C17-L389C73" }, { "DocsId": "P:System.Management.ManagementBaseObject.ClassPath", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs#L408C17-L451C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs#L408C17-L451C34" }, { "DocsId": "P:System.Management.ManagementBaseObject.Item(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs#L473C19-L473C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs#L473C19-L473C57" } ], "DocsId": "T:System.Management.ManagementBaseObject", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" }, { "Members": [ { "DocsId": "M:System.Management.ManagementClass.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L55C13-L55C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L55C13-L55C55" }, { "DocsId": "M:System.Management.ManagementClass.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L144C36-L144C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L144C36-L144C95" }, { "DocsId": "M:System.Management.ManagementClass.#ctor(System.Management.ManagementPath)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L164C55-L164C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L164C55-L164C81" }, { "DocsId": "M:System.Management.ManagementClass.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L177C47-L177C93" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L177C47-L177C93" }, { "DocsId": "M:System.Management.ManagementClass.#ctor(System.Management.ManagementPath,System.Management.ObjectGetOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L197C81-L197C110" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L197C81-L197C110" }, { "DocsId": "M:System.Management.ManagementClass.#ctor(System.String,System.Management.ObjectGetOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L216C15-L216C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L216C15-L216C64" }, { "DocsId": "M:System.Management.ManagementClass.#ctor(System.Management.ManagementScope,System.Management.ManagementPath,System.Management.ObjectGetOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L243C15-L243C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L243C15-L243C45" }, { "DocsId": "M:System.Management.ManagementClass.#ctor(System.String,System.String,System.Management.ObjectGetOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L268C15-L268C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L268C15-L268C86" }, { "DocsId": "M:System.Management.ManagementClass.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L274C9-L276C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L274C9-L276C55" }, { "DocsId": "M:System.Management.ManagementClass.GetInstances", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L427C13-L427C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L427C13-L427C59" }, { "DocsId": "M:System.Management.ManagementClass.GetInstances(System.Management.EnumerationOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L459C13-L492C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L459C13-L492C71" }, { "DocsId": "M:System.Management.ManagementClass.GetInstances(System.Management.ManagementOperationObserver)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L567C13-L568C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L567C13-L568C10" }, { "DocsId": "M:System.Management.ManagementClass.GetInstances(System.Management.ManagementOperationObserver,System.Management.EnumerationOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L579C13-L621C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L579C13-L621C10" }, { "DocsId": "M:System.Management.ManagementClass.GetSubclasses", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L639C13-L639C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L639C13-L639C60" }, { "DocsId": "M:System.Management.ManagementClass.GetSubclasses(System.Management.EnumerationOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L675C13-L708C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L675C13-L708C71" }, { "DocsId": "M:System.Management.ManagementClass.GetSubclasses(System.Management.ManagementOperationObserver)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L717C13-L718C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L717C13-L718C10" }, { "DocsId": "M:System.Management.ManagementClass.GetSubclasses(System.Management.ManagementOperationObserver,System.Management.EnumerationOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L730C13-L773C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L730C13-L773C10" }, { "DocsId": "M:System.Management.ManagementClass.Derive(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L804C13-L852C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L804C13-L852C29" }, { "DocsId": "M:System.Management.ManagementClass.CreateInstance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L887C13-L908C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L887C13-L908C32" }, { "DocsId": "M:System.Management.ManagementClass.Clone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L924C13-L935C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L924C13-L935C71" }, { "DocsId": "M:System.Management.ManagementClass.GetRelatedClasses", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L977C13-L977C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L977C13-L977C52" }, { "DocsId": "M:System.Management.ManagementClass.GetRelatedClasses(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L991C13-L991C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L991C13-L991C88" }, { "DocsId": "M:System.Management.ManagementClass.GetRelatedClasses(System.String,System.String,System.String,System.String,System.String,System.String,System.Management.EnumerationOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L1019C13-L1065C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L1019C13-L1065C71" }, { "DocsId": "M:System.Management.ManagementClass.GetRelatedClasses(System.Management.ManagementOperationObserver)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L1077C13-L1078C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L1077C13-L1078C10" }, { "DocsId": "M:System.Management.ManagementClass.GetRelatedClasses(System.Management.ManagementOperationObserver,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L1090C13-L1091C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L1090C13-L1091C10" }, { "DocsId": "M:System.Management.ManagementClass.GetRelatedClasses(System.Management.ManagementOperationObserver,System.String,System.String,System.String,System.String,System.String,System.String,System.Management.EnumerationOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L1116C13-L1167C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L1116C13-L1167C10" }, { "DocsId": "M:System.Management.ManagementClass.GetRelationshipClasses", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L1185C13-L1185C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L1185C13-L1185C57" }, { "DocsId": "M:System.Management.ManagementClass.GetRelationshipClasses(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L1200C13-L1200C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L1200C13-L1200C80" }, { "DocsId": "M:System.Management.ManagementClass.GetRelationshipClasses(System.String,System.String,System.String,System.Management.EnumerationOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L1222C13-L1262C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L1222C13-L1262C71" }, { "DocsId": "M:System.Management.ManagementClass.GetRelationshipClasses(System.Management.ManagementOperationObserver)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L1274C13-L1275C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L1274C13-L1275C10" }, { "DocsId": "M:System.Management.ManagementClass.GetRelationshipClasses(System.Management.ManagementOperationObserver,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L1287C13-L1288C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L1287C13-L1288C10" }, { "DocsId": "M:System.Management.ManagementClass.GetRelationshipClasses(System.Management.ManagementOperationObserver,System.String,System.String,System.String,System.Management.EnumerationOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L1307C13-L1353C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L1307C13-L1353C10" }, { "DocsId": "M:System.Management.ManagementClass.GetStronglyTypedClassCode(System.Boolean,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L1410C13-L1412C93" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L1410C13-L1412C93" }, { "DocsId": "M:System.Management.ManagementClass.GetStronglyTypedClassCode(System.Management.CodeLanguage,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L1438C13-L1440C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L1438C13-L1440C74" }, { "DocsId": "P:System.Management.ManagementClass.Path", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L305C17-L305C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L305C17-L305C34" }, { "DocsId": "P:System.Management.ManagementClass.Derivation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L344C17-L362C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L344C17-L362C31" }, { "DocsId": "P:System.Management.ManagementClass.Methods", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L389C17-L391C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L389C17-L391C67" } ], "DocsId": "T:System.Management.ManagementClass", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementClass.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementClass.cs" }, { "Members": [ { "DocsId": "M:System.Management.ManagementDateTimeConverter.ToDateTime(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementDateTime.cs#L113C13-L203C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementDateTime.cs#L113C13-L203C29" }, { "DocsId": "M:System.Management.ManagementDateTimeConverter.ToDmtfDateTime(System.DateTime)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementDateTime.cs#L235C13-L284C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementDateTime.cs#L235C13-L284C33" }, { "DocsId": "M:System.Management.ManagementDateTimeConverter.ToTimeSpan(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementDateTime.cs#L311C13-L374C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementDateTime.cs#L311C13-L374C29" }, { "DocsId": "M:System.Management.ManagementDateTimeConverter.ToDmtfTimeInterval(System.TimeSpan)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementDateTime.cs#L408C13-L439C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementDateTime.cs#L408C13-L439C33" } ], "DocsId": "T:System.Management.ManagementDateTimeConverter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementDateTime.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementDateTime.cs" }, { "Members": [ { "DocsId": "P:System.Management.ManagementEventArgs.Context", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementEventArgs.cs#L55C19-L55C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementEventArgs.cs#L55C19-L55C34" } ], "DocsId": "T:System.Management.ManagementEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementEventArgs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementEventArgs.cs" }, { "Members": [ { "DocsId": "P:System.Management.ObjectReadyEventArgs.NewObject", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementEventArgs.cs#L88C17-L88C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementEventArgs.cs#L88C17-L88C34" } ], "DocsId": "T:System.Management.ObjectReadyEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementEventArgs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementEventArgs.cs" }, { "Members": [ { "DocsId": "P:System.Management.CompletedEventArgs.StatusObject", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementEventArgs.cs#L127C17-L127C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementEventArgs.cs#L127C17-L127C34" }, { "DocsId": "P:System.Management.CompletedEventArgs.Status", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementEventArgs.cs#L142C17-L142C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementEventArgs.cs#L142C17-L142C49" } ], "DocsId": "T:System.Management.CompletedEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementEventArgs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementEventArgs.cs" }, { "Members": [ { "DocsId": "P:System.Management.ObjectPutEventArgs.Path", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementEventArgs.cs#L178C17-L178C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementEventArgs.cs#L178C17-L178C32" } ], "DocsId": "T:System.Management.ObjectPutEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementEventArgs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementEventArgs.cs" }, { "Members": [ { "DocsId": "P:System.Management.ProgressEventArgs.UpperBound", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementEventArgs.cs#L223C17-L223C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementEventArgs.cs#L223C17-L223C35" }, { "DocsId": "P:System.Management.ProgressEventArgs.Current", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementEventArgs.cs#L239C17-L239C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementEventArgs.cs#L239C17-L239C32" }, { "DocsId": "P:System.Management.ProgressEventArgs.Message", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementEventArgs.cs#L254C17-L254C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementEventArgs.cs#L254C17-L254C48" } ], "DocsId": "T:System.Management.ProgressEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementEventArgs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementEventArgs.cs" }, { "Members": [ { "DocsId": "P:System.Management.EventArrivedEventArgs.NewEvent", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementEventArgs.cs#L279C19-L279C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementEventArgs.cs#L279C19-L279C43" } ], "DocsId": "T:System.Management.EventArrivedEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementEventArgs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementEventArgs.cs" }, { "Members": [ { "DocsId": "P:System.Management.StoppedEventArgs.Status", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementEventArgs.cs#L306C17-L306C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementEventArgs.cs#L306C17-L306C49" } ], "DocsId": "T:System.Management.StoppedEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementEventArgs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Management.EventArrivedEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs" }, { "DocsId": "M:System.Management.EventArrivedEventHandler.Invoke(System.Object,System.Management.EventArrivedEventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs" }, { "DocsId": "M:System.Management.EventArrivedEventHandler.BeginInvoke(System.Object,System.Management.EventArrivedEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs" }, { "DocsId": "M:System.Management.EventArrivedEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs" } ], "DocsId": "T:System.Management.EventArrivedEventHandler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs" }, { "Members": [ { "DocsId": "M:System.Management.StoppedEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs" }, { "DocsId": "M:System.Management.StoppedEventHandler.Invoke(System.Object,System.Management.StoppedEventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs" }, { "DocsId": "M:System.Management.StoppedEventHandler.BeginInvoke(System.Object,System.Management.StoppedEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs" }, { "DocsId": "M:System.Management.StoppedEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs" } ], "DocsId": "T:System.Management.StoppedEventHandler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs" }, { "Members": [ { "DocsId": "M:System.Management.ManagementEventWatcher.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs#L142C43-L142C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs#L142C43-L142C86" }, { "DocsId": "M:System.Management.ManagementEventWatcher.#ctor(System.Management.EventQuery)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs#L154C33-L154C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs#L154C33-L154C60" }, { "DocsId": "M:System.Management.ManagementEventWatcher.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs#L166C29-L166C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs#L166C29-L166C72" }, { "DocsId": "M:System.Management.ManagementEventWatcher.#ctor(System.Management.ManagementScope,System.Management.EventQuery)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs#L176C33-L176C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs#L176C33-L176C61" }, { "DocsId": "M:System.Management.ManagementEventWatcher.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs#L187C29-L187C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs#L187C29-L187C94" }, { "DocsId": "M:System.Management.ManagementEventWatcher.#ctor(System.String,System.String,System.Management.EventWatcherOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs#L201C44-L201C112" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs#L201C44-L201C112" }, { "DocsId": "M:System.Management.ManagementEventWatcher.#ctor(System.Management.ManagementScope,System.Management.EventQuery,System.Management.EventWatcherOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs#L212C9-L239C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs#L212C9-L239C10" }, { "DocsId": "M:System.Management.ManagementEventWatcher.Finalize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs#L247C13-L257C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs#L247C13-L257C10" }, { "DocsId": "M:System.Management.ManagementEventWatcher.WaitForNextEvent", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs#L392C13-L465C24" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs#L392C13-L465C24" }, { "DocsId": "M:System.Management.ManagementEventWatcher.Start", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs#L478C13-L524C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs#L478C13-L524C10" }, { "DocsId": "M:System.Management.ManagementEventWatcher.Stop", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs#L535C13-L549C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs#L535C13-L549C10" }, { "DocsId": "E:System.Management.ManagementEventWatcher.EventArrived", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs" }, { "DocsId": "E:System.Management.ManagementEventWatcher.Stopped", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs" }, { "DocsId": "P:System.Management.ManagementEventWatcher.Scope", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs#L287C17-L287C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs#L287C17-L287C30" }, { "DocsId": "P:System.Management.ManagementEventWatcher.Query", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs#L320C17-L320C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs#L320C17-L320C30" }, { "DocsId": "P:System.Management.ManagementEventWatcher.Options", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs#L353C17-L353C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs#L353C17-L353C32" } ], "DocsId": "T:System.Management.ManagementEventWatcher", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs" }, { "Members": [ { "DocsId": "F:System.Management.ManagementStatus.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.NoError", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.False", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.ResetToDefault", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.Different", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.Timedout", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.NoMoreData", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.OperationCanceled", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.Pending", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.DuplicateObjects", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.PartialResults", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.Failed", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.NotFound", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.AccessDenied", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.ProviderFailure", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.TypeMismatch", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.OutOfMemory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.InvalidContext", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.InvalidParameter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.NotAvailable", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.CriticalError", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.InvalidStream", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.NotSupported", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.InvalidSuperclass", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.InvalidNamespace", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.InvalidObject", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.InvalidClass", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.ProviderNotFound", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.InvalidProviderRegistration", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.ProviderLoadFailure", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.InitializationFailure", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.TransportFailure", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.InvalidOperation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.InvalidQuery", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.InvalidQueryType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.AlreadyExists", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.OverrideNotAllowed", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.PropagatedQualifier", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.PropagatedProperty", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.Unexpected", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.IllegalOperation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.CannotBeKey", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.IncompleteClass", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.InvalidSyntax", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.NondecoratedObject", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.ReadOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.ProviderNotCapable", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.ClassHasChildren", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.ClassHasInstances", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.QueryNotImplemented", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.IllegalNull", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.InvalidQualifierType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.InvalidPropertyType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.ValueOutOfRange", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.CannotBeSingleton", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.InvalidCimType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.InvalidMethod", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.InvalidMethodParameters", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.SystemProperty", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.InvalidProperty", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.CallCanceled", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.ShuttingDown", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.PropagatedMethod", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.UnsupportedParameter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.MissingParameterID", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.InvalidParameterID", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.NonconsecutiveParameterIDs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.ParameterIDOnRetval", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.InvalidObjectPath", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.OutOfDiskSpace", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.BufferTooSmall", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.UnsupportedPutExtension", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.UnknownObjectType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.UnknownPacketType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.MarshalVersionMismatch", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.MarshalInvalidSignature", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.InvalidQualifier", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.InvalidDuplicateParameter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.TooMuchData", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.ServerTooBusy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.InvalidFlavor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.CircularReference", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.UnsupportedClassUpdate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.CannotChangeKeyInheritance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.CannotChangeIndexInheritance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.TooManyProperties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.UpdateTypeMismatch", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.UpdateOverrideNotAllowed", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.UpdatePropagatedMethod", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.MethodNotImplemented", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.MethodDisabled", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.RefresherBusy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.UnparsableQuery", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.NotEventClass", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.MissingGroupWithin", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.MissingAggregationList", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.PropertyNotAnObject", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.AggregatingByObject", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.UninterpretableProviderQuery", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.BackupRestoreWinmgmtRunning", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.QueueOverflow", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.PrivilegeNotHeld", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.InvalidOperator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.LocalCredentials", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.CannotBeAbstract", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.AmendedObject", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.ClientTooSlow", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.RegistrationTooBroad", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.RegistrationTooPrecise", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" } ], "DocsId": "T:System.Management.ManagementStatus", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "Members": [ { "DocsId": "M:System.Management.ManagementException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs#L679C91-L682C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs#L679C91-L682C10" }, { "DocsId": "M:System.Management.ManagementException.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs#L686C40-L689C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs#L686C40-L689C10" }, { "DocsId": "M:System.Management.ManagementException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs#L697C54-L700C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs#L697C54-L700C10" }, { "DocsId": "M:System.Management.ManagementException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs#L709C80-L714C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs#L709C80-L714C10" }, { "DocsId": "M:System.Management.ManagementException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs#L729C13-L734C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs#L729C13-L734C10" }, { "DocsId": "P:System.Management.ManagementException.ErrorInformation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs#L788C15-L788C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs#L788C15-L788C34" }, { "DocsId": "P:System.Management.ManagementException.ErrorCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs#L801C15-L801C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs#L801C15-L801C32" } ], "DocsId": "T:System.Management.ManagementException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "Members": [ { "DocsId": "M:System.Management.ManagementNamedValueCollection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementNamedValueCollection.cs#L37C9-L39C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementNamedValueCollection.cs#L37C9-L39C10" }, { "DocsId": "M:System.Management.ManagementNamedValueCollection.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementNamedValueCollection.cs#L53C9-L55C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementNamedValueCollection.cs#L53C9-L55C55" }, { "DocsId": "M:System.Management.ManagementNamedValueCollection.Add(System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementNamedValueCollection.cs#L101C17-L107C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementNamedValueCollection.cs#L101C17-L107C10" }, { "DocsId": "M:System.Management.ManagementNamedValueCollection.Remove(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementNamedValueCollection.cs#L118C13-L120C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementNamedValueCollection.cs#L118C13-L120C10" }, { "DocsId": "M:System.Management.ManagementNamedValueCollection.RemoveAll", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementNamedValueCollection.cs#L127C13-L129C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementNamedValueCollection.cs#L127C13-L129C10" }, { "DocsId": "M:System.Management.ManagementNamedValueCollection.Clone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementNamedValueCollection.cs#L141C13-L175C24" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementNamedValueCollection.cs#L141C13-L175C24" }, { "DocsId": "P:System.Management.ManagementNamedValueCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementNamedValueCollection.cs#L190C17-L190C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementNamedValueCollection.cs#L190C17-L190C43" } ], "DocsId": "T:System.Management.ManagementNamedValueCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementNamedValueCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementNamedValueCollection.cs" }, { "Members": [ { "DocsId": "M:System.Management.ManagementObject.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L100C13-L100C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L100C13-L100C55" }, { "DocsId": "M:System.Management.ManagementObject.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L105C13-L112C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L105C13-L112C10" }, { "DocsId": "M:System.Management.ManagementObject.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L229C37-L229C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L229C37-L229C80" }, { "DocsId": "M:System.Management.ManagementObject.#ctor(System.Management.ManagementPath)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L245C56-L245C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L245C56-L245C82" }, { "DocsId": "M:System.Management.ManagementObject.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L273C48-L273C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L273C48-L273C94" }, { "DocsId": "M:System.Management.ManagementObject.#ctor(System.Management.ManagementPath,System.Management.ObjectGetOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L303C82-L303C111" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L303C82-L303C111" }, { "DocsId": "M:System.Management.ManagementObject.#ctor(System.String,System.Management.ObjectGetOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L331C13-L332C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L331C13-L332C12" }, { "DocsId": "M:System.Management.ManagementObject.#ctor(System.Management.ManagementScope,System.Management.ManagementPath,System.Management.ObjectGetOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L373C15-L376C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L373C15-L376C10" }, { "DocsId": "M:System.Management.ManagementObject.#ctor(System.String,System.String,System.Management.ObjectGetOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L458C15-L458C98" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L458C15-L458C98" }, { "DocsId": "M:System.Management.ManagementObject.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L469C88-L472C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L469C88-L472C10" }, { "DocsId": "M:System.Management.ManagementObject.Get", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L768C13-L806C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L768C13-L806C10" }, { "DocsId": "M:System.Management.ManagementObject.Get(System.Management.ManagementOperationObserver)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L890C13-L933C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L890C13-L933C10" }, { "DocsId": "M:System.Management.ManagementObject.GetRelated", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L965C13-L965C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L965C13-L965C45" }, { "DocsId": "M:System.Management.ManagementObject.GetRelated(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L993C13-L993C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L993C13-L993C88" }, { "DocsId": "M:System.Management.ManagementObject.GetRelated(System.String,System.String,System.String,System.String,System.String,System.String,System.Boolean,System.Management.EnumerationOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1027C13-L1076C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1027C13-L1076C71" }, { "DocsId": "M:System.Management.ManagementObject.GetRelated(System.Management.ManagementOperationObserver)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1092C13-L1093C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1092C13-L1093C10" }, { "DocsId": "M:System.Management.ManagementObject.GetRelated(System.Management.ManagementOperationObserver,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1110C13-L1111C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1110C13-L1111C10" }, { "DocsId": "M:System.Management.ManagementObject.GetRelated(System.Management.ManagementOperationObserver,System.String,System.String,System.String,System.String,System.String,System.String,System.Boolean,System.Management.EnumerationOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1143C13-L1198C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1143C13-L1198C10" }, { "DocsId": "M:System.Management.ManagementObject.GetRelationships", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1217C13-L1217C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1217C13-L1217C51" }, { "DocsId": "M:System.Management.ManagementObject.GetRelationships(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1236C13-L1236C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1236C13-L1236C81" }, { "DocsId": "M:System.Management.ManagementObject.GetRelationships(System.String,System.String,System.String,System.Boolean,System.Management.EnumerationOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1264C13-L1308C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1264C13-L1308C71" }, { "DocsId": "M:System.Management.ManagementObject.GetRelationships(System.Management.ManagementOperationObserver)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1325C13-L1326C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1325C13-L1326C10" }, { "DocsId": "M:System.Management.ManagementObject.GetRelationships(System.Management.ManagementOperationObserver,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1343C13-L1344C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1343C13-L1344C10" }, { "DocsId": "M:System.Management.ManagementObject.GetRelationships(System.Management.ManagementOperationObserver,System.String,System.String,System.String,System.Boolean,System.Management.EnumerationOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1370C13-L1421C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1370C13-L1421C10" }, { "DocsId": "M:System.Management.ManagementObject.Put", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1438C13-L1438C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1438C13-L1438C42" }, { "DocsId": "M:System.Management.ManagementObject.Put(System.Management.PutOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1454C13-L1538C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1454C13-L1538C28" }, { "DocsId": "M:System.Management.ManagementObject.Put(System.Management.ManagementOperationObserver)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1599C13-L1600C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1599C13-L1600C10" }, { "DocsId": "M:System.Management.ManagementObject.Put(System.Management.ManagementOperationObserver,System.Management.PutOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1610C13-L1668C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1610C13-L1668C10" }, { "DocsId": "M:System.Management.ManagementObject.CopyTo(System.Management.ManagementPath)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1701C13-L1701C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1701C13-L1701C51" }, { "DocsId": "M:System.Management.ManagementObject.CopyTo(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1713C13-L1713C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1713C13-L1713C71" }, { "DocsId": "M:System.Management.ManagementObject.CopyTo(System.String,System.Management.PutOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1726C13-L1726C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1726C13-L1726C62" }, { "DocsId": "M:System.Management.ManagementObject.CopyTo(System.Management.ManagementPath,System.Management.PutOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1739C13-L1827C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1739C13-L1827C28" }, { "DocsId": "M:System.Management.ManagementObject.CopyTo(System.Management.ManagementOperationObserver,System.Management.ManagementPath)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1837C13-L1838C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1837C13-L1838C10" }, { "DocsId": "M:System.Management.ManagementObject.CopyTo(System.Management.ManagementOperationObserver,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1847C13-L1848C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1847C13-L1848C10" }, { "DocsId": "M:System.Management.ManagementObject.CopyTo(System.Management.ManagementOperationObserver,System.String,System.Management.PutOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1858C13-L1859C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1858C13-L1859C10" }, { "DocsId": "M:System.Management.ManagementObject.CopyTo(System.Management.ManagementOperationObserver,System.Management.ManagementPath,System.Management.PutOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1869C13-L1924C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1869C13-L1924C10" }, { "DocsId": "M:System.Management.ManagementObject.Delete", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1937C13-L1938C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1937C13-L1938C10" }, { "DocsId": "M:System.Management.ManagementObject.Delete(System.Management.DeleteOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1946C13-L1990C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1946C13-L1990C10" }, { "DocsId": "M:System.Management.ManagementObject.Delete(System.Management.ManagementOperationObserver)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1999C13-L2000C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1999C13-L2000C10" }, { "DocsId": "M:System.Management.ManagementObject.Delete(System.Management.ManagementOperationObserver,System.Management.DeleteOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L2009C13-L2057C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L2009C13-L2057C10" }, { "DocsId": "M:System.Management.ManagementObject.InvokeMethod(System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L2130C13-L2156C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L2130C13-L2156C27" }, { "DocsId": "M:System.Management.ManagementObject.InvokeMethod(System.Management.ManagementOperationObserver,System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L2177C13-L2198C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L2177C13-L2198C10" }, { "DocsId": "M:System.Management.ManagementObject.InvokeMethod(System.String,System.Management.ManagementBaseObject,System.Management.InvokeMethodOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L2276C13-L2323C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L2276C13-L2323C34" }, { "DocsId": "M:System.Management.ManagementObject.InvokeMethod(System.Management.ManagementOperationObserver,System.String,System.Management.ManagementBaseObject,System.Management.InvokeMethodOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L2343C13-L2390C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L2343C13-L2390C10" }, { "DocsId": "M:System.Management.ManagementObject.GetMethodParameters(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L2413C13-L2415C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L2413C13-L2415C33" }, { "DocsId": "M:System.Management.ManagementObject.Clone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L2493C13-L2511C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L2493C13-L2511C73" }, { "DocsId": "M:System.Management.ManagementObject.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L2527C13-L2530C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L2527C13-L2530C27" }, { "DocsId": "P:System.Management.ManagementObject.Scope", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L510C17-L510C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L510C17-L510C63" }, { "DocsId": "P:System.Management.ManagementObject.Path", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L562C17-L562C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L562C17-L562C61" }, { "DocsId": "P:System.Management.ManagementObject.Options", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L626C17-L626C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L626C17-L626C66" }, { "DocsId": "P:System.Management.ManagementObject.ClassPath", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L671C17-L721C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L671C17-L721C34" } ], "DocsId": "T:System.Management.ManagementObject", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs" }, { "Members": [ { "DocsId": "M:System.Management.ManagementObjectCollection.Finalize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObjectCollection.cs#L92C13-L93C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObjectCollection.cs#L92C13-L93C10" }, { "DocsId": "M:System.Management.ManagementObjectCollection.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObjectCollection.cs#L102C13-L106C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObjectCollection.cs#L102C13-L106C10" }, { "DocsId": "M:System.Management.ManagementObjectCollection.CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObjectCollection.cs#L201C13-L235C20" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObjectCollection.cs#L201C13-L235C20" }, { "DocsId": "M:System.Management.ManagementObjectCollection.CopyTo(System.Management.ManagementBaseObject[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObjectCollection.cs#L246C13-L247C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObjectCollection.cs#L246C13-L247C10" }, { "DocsId": "M:System.Management.ManagementObjectCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObjectCollection.cs#L269C13-L329C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObjectCollection.cs#L269C13-L329C71" }, { "DocsId": "M:System.Management.ManagementObjectCollection.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObjectCollection.cs#L344C13-L344C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObjectCollection.cs#L344C13-L344C36" }, { "DocsId": "P:System.Management.ManagementObjectCollection.Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObjectCollection.cs#L137C17-L152C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObjectCollection.cs#L137C17-L152C30" }, { "DocsId": "P:System.Management.ManagementObjectCollection.IsSynchronized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObjectCollection.cs#L167C17-L170C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObjectCollection.cs#L167C17-L170C30" }, { "DocsId": "P:System.Management.ManagementObjectCollection.SyncRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObjectCollection.cs#L184C17-L187C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObjectCollection.cs#L184C17-L187C29" }, { "DocsId": "T:System.Management.ManagementObjectCollection.ManagementObjectEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObjectCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObjectCollection.cs" } ], "DocsId": "T:System.Management.ManagementObjectCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObjectCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObjectCollection.cs" }, { "Members": [ { "DocsId": "M:System.Management.ManagementObjectSearcher.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObjectSearcher.cs#L86C45-L86C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObjectSearcher.cs#L86C45-L86C88" }, { "DocsId": "M:System.Management.ManagementObjectSearcher.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObjectSearcher.cs#L101C63-L101C113" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObjectSearcher.cs#L101C63-L101C113" }, { "DocsId": "M:System.Management.ManagementObjectSearcher.#ctor(System.Management.ObjectQuery)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObjectSearcher.cs#L116C62-L116C89" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObjectSearcher.cs#L116C62-L116C89" }, { "DocsId": "M:System.Management.ManagementObjectSearcher.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObjectSearcher.cs#L138C13-L139C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObjectSearcher.cs#L138C13-L139C12" }, { "DocsId": "M:System.Management.ManagementObjectSearcher.#ctor(System.Management.ManagementScope,System.Management.ObjectQuery)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObjectSearcher.cs#L161C85-L161C113" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObjectSearcher.cs#L161C85-L161C113" }, { "DocsId": "M:System.Management.ManagementObjectSearcher.#ctor(System.String,System.String,System.Management.EnumerationOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObjectSearcher.cs#L183C13-L184C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObjectSearcher.cs#L183C13-L184C12" }, { "DocsId": "M:System.Management.ManagementObjectSearcher.#ctor(System.Management.ManagementScope,System.Management.ObjectQuery,System.Management.EnumerationOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObjectSearcher.cs#L205C9-L218C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObjectSearcher.cs#L205C9-L218C10" }, { "DocsId": "M:System.Management.ManagementObjectSearcher.Get", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObjectSearcher.cs#L323C13-L392C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObjectSearcher.cs#L323C13-L392C71" }, { "DocsId": "M:System.Management.ManagementObjectSearcher.Get(System.Management.ManagementOperationObserver)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObjectSearcher.cs#L405C13-L483C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObjectSearcher.cs#L405C13-L483C10" }, { "DocsId": "P:System.Management.ManagementObjectSearcher.Scope", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObjectSearcher.cs#L249C17-L249C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObjectSearcher.cs#L249C17-L249C30" }, { "DocsId": "P:System.Management.ManagementObjectSearcher.Query", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObjectSearcher.cs#L275C17-L275C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObjectSearcher.cs#L275C17-L275C30" }, { "DocsId": "P:System.Management.ManagementObjectSearcher.Options", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObjectSearcher.cs#L296C17-L296C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObjectSearcher.cs#L296C17-L296C32" } ], "DocsId": "T:System.Management.ManagementObjectSearcher", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObjectSearcher.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObjectSearcher.cs" }, { "Members": [ { "DocsId": "M:System.Management.ObjectReadyEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" }, { "DocsId": "M:System.Management.ObjectReadyEventHandler.Invoke(System.Object,System.Management.ObjectReadyEventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" }, { "DocsId": "M:System.Management.ObjectReadyEventHandler.BeginInvoke(System.Object,System.Management.ObjectReadyEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" }, { "DocsId": "M:System.Management.ObjectReadyEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" } ], "DocsId": "T:System.Management.ObjectReadyEventHandler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" }, { "Members": [ { "DocsId": "M:System.Management.CompletedEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" }, { "DocsId": "M:System.Management.CompletedEventHandler.Invoke(System.Object,System.Management.CompletedEventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" }, { "DocsId": "M:System.Management.CompletedEventHandler.BeginInvoke(System.Object,System.Management.CompletedEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" }, { "DocsId": "M:System.Management.CompletedEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" } ], "DocsId": "T:System.Management.CompletedEventHandler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" }, { "Members": [ { "DocsId": "M:System.Management.ProgressEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" }, { "DocsId": "M:System.Management.ProgressEventHandler.Invoke(System.Object,System.Management.ProgressEventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" }, { "DocsId": "M:System.Management.ProgressEventHandler.BeginInvoke(System.Object,System.Management.ProgressEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" }, { "DocsId": "M:System.Management.ProgressEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" } ], "DocsId": "T:System.Management.ProgressEventHandler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" }, { "Members": [ { "DocsId": "M:System.Management.ObjectPutEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" }, { "DocsId": "M:System.Management.ObjectPutEventHandler.Invoke(System.Object,System.Management.ObjectPutEventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" }, { "DocsId": "M:System.Management.ObjectPutEventHandler.BeginInvoke(System.Object,System.Management.ObjectPutEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" }, { "DocsId": "M:System.Management.ObjectPutEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" } ], "DocsId": "T:System.Management.ObjectPutEventHandler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" }, { "Members": [ { "DocsId": "M:System.Management.ManagementOperationObserver.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs#L153C9-L158C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs#L153C9-L158C10" }, { "DocsId": "M:System.Management.ManagementOperationObserver.Cancel", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs#L167C13-L211C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs#L167C13-L211C10" }, { "DocsId": "E:System.Management.ManagementOperationObserver.ObjectReady", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" }, { "DocsId": "E:System.Management.ManagementOperationObserver.Completed", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" }, { "DocsId": "E:System.Management.ManagementOperationObserver.Progress", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" }, { "DocsId": "E:System.Management.ManagementOperationObserver.ObjectPut", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" } ], "DocsId": "T:System.Management.ManagementOperationObserver", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" }, { "Members": [ { "DocsId": "F:System.Management.AuthenticationLevel.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" }, { "DocsId": "F:System.Management.AuthenticationLevel.Default", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" }, { "DocsId": "F:System.Management.AuthenticationLevel.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" }, { "DocsId": "F:System.Management.AuthenticationLevel.Connect", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" }, { "DocsId": "F:System.Management.AuthenticationLevel.Call", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" }, { "DocsId": "F:System.Management.AuthenticationLevel.Packet", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" }, { "DocsId": "F:System.Management.AuthenticationLevel.PacketIntegrity", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" }, { "DocsId": "F:System.Management.AuthenticationLevel.PacketPrivacy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" }, { "DocsId": "F:System.Management.AuthenticationLevel.Unchanged", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" } ], "DocsId": "T:System.Management.AuthenticationLevel", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" }, { "Members": [ { "DocsId": "F:System.Management.ImpersonationLevel.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" }, { "DocsId": "F:System.Management.ImpersonationLevel.Default", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" }, { "DocsId": "F:System.Management.ImpersonationLevel.Anonymous", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" }, { "DocsId": "F:System.Management.ImpersonationLevel.Identify", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" }, { "DocsId": "F:System.Management.ImpersonationLevel.Impersonate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" }, { "DocsId": "F:System.Management.ImpersonationLevel.Delegate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" } ], "DocsId": "T:System.Management.ImpersonationLevel", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" }, { "Members": [ { "DocsId": "F:System.Management.PutType.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" }, { "DocsId": "F:System.Management.PutType.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" }, { "DocsId": "F:System.Management.PutType.UpdateOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" }, { "DocsId": "F:System.Management.PutType.CreateOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" }, { "DocsId": "F:System.Management.PutType.UpdateOrCreate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" } ], "DocsId": "T:System.Management.PutType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" }, { "Members": [ { "DocsId": "M:System.Management.ManagementOptions.Clone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" }, { "DocsId": "F:System.Management.ManagementOptions.InfiniteTimeout", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" }, { "DocsId": "P:System.Management.ManagementOptions.Context", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L169C17-L169C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L169C17-L169C73" }, { "DocsId": "P:System.Management.ManagementOptions.Timeout", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L207C15-L207C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L207C15-L207C30" } ], "DocsId": "T:System.Management.ManagementOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" }, { "Members": [ { "DocsId": "M:System.Management.EnumerationOptions.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L514C39-L514C120" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L514C39-L514C120" }, { "DocsId": "M:System.Management.EnumerationOptions.#ctor(System.Management.ManagementNamedValueCollection,System.TimeSpan,System.Int32,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L543C35-L553C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L543C35-L553C10" }, { "DocsId": "M:System.Management.EnumerationOptions.Clone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L563C13-L569C129" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L563C13-L569C129" }, { "DocsId": "P:System.Management.EnumerationOptions.ReturnImmediately", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L329C19-L329C121" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L329C19-L329C121" }, { "DocsId": "P:System.Management.EnumerationOptions.BlockSize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L347C19-L347C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L347C19-L347C36" }, { "DocsId": "P:System.Management.EnumerationOptions.Rewindable", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L378C19-L378C115" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L378C19-L378C115" }, { "DocsId": "P:System.Management.EnumerationOptions.UseAmendedQualifiers", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L405C19-L405C125" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L405C19-L405C125" }, { "DocsId": "P:System.Management.EnumerationOptions.EnsureLocatable", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L428C15-L428C115" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L428C15-L428C115" }, { "DocsId": "P:System.Management.EnumerationOptions.PrototypeOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L451C15-L451C106" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L451C15-L451C106" }, { "DocsId": "P:System.Management.EnumerationOptions.DirectRead", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L472C15-L472C110" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L472C15-L472C110" }, { "DocsId": "P:System.Management.EnumerationOptions.EnumerateDeep", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L495C15-L495C104" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L495C15-L495C104" } ], "DocsId": "T:System.Management.EnumerationOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" }, { "Members": [ { "DocsId": "M:System.Management.EventWatcherOptions.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L691C15-L691C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L691C15-L691C49" }, { "DocsId": "M:System.Management.EventWatcherOptions.#ctor(System.Management.ManagementNamedValueCollection,System.TimeSpan,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L663C9-L705C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L663C9-L705C10" }, { "DocsId": "M:System.Management.EventWatcherOptions.Clone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L715C13-L720C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L715C13-L720C76" }, { "DocsId": "P:System.Management.EventWatcherOptions.BlockSize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L674C19-L674C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L674C19-L674C36" } ], "DocsId": "T:System.Management.EventWatcherOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" }, { "Members": [ { "DocsId": "M:System.Management.ObjectGetOptions.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L830C37-L830C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L830C37-L830C75" }, { "DocsId": "M:System.Management.ObjectGetOptions.#ctor(System.Management.ManagementNamedValueCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L837C75-L837C116" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L837C75-L837C116" }, { "DocsId": "M:System.Management.ObjectGetOptions.#ctor(System.Management.ManagementNamedValueCollection,System.TimeSpan,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L846C120-L849C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L846C120-L849C10" }, { "DocsId": "M:System.Management.ObjectGetOptions.Clone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L859C13-L864C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L859C13-L864C84" }, { "DocsId": "P:System.Management.ObjectGetOptions.UseAmendedQualifiers", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L814C19-L814C125" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L814C19-L814C125" } ], "DocsId": "T:System.Management.ObjectGetOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" }, { "Members": [ { "DocsId": "M:System.Management.PutOptions.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L988C31-L988C93" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L988C31-L988C93" }, { "DocsId": "M:System.Management.PutOptions.#ctor(System.Management.ManagementNamedValueCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L995C69-L995C134" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L995C69-L995C134" }, { "DocsId": "M:System.Management.PutOptions.#ctor(System.Management.ManagementNamedValueCollection,System.TimeSpan,System.Boolean,System.Management.PutType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L1005C131-L1009C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L1005C131-L1009C10" }, { "DocsId": "M:System.Management.PutOptions.Clone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L1019C13-L1024C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L1019C13-L1024C84" }, { "DocsId": "P:System.Management.PutOptions.UseAmendedQualifiers", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L947C19-L947C125" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L947C19-L947C125" }, { "DocsId": "P:System.Management.PutOptions.Type", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L965C17-L967C103" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L965C17-L967C103" } ], "DocsId": "T:System.Management.PutOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" }, { "Members": [ { "DocsId": "M:System.Management.DeleteOptions.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L1088C34-L1088C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L1088C34-L1088C44" }, { "DocsId": "M:System.Management.DeleteOptions.#ctor(System.Management.ManagementNamedValueCollection,System.TimeSpan)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L1096C90-L1096C116" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L1096C90-L1096C116" }, { "DocsId": "M:System.Management.DeleteOptions.Clone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L1106C13-L1111C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L1106C13-L1111C59" } ], "DocsId": "T:System.Management.DeleteOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" }, { "Members": [ { "DocsId": "M:System.Management.InvokeMethodOptions.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L1175C40-L1175C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L1175C40-L1175C50" }, { "DocsId": "M:System.Management.InvokeMethodOptions.#ctor(System.Management.ManagementNamedValueCollection,System.TimeSpan)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L1183C96-L1183C122" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L1183C96-L1183C122" }, { "DocsId": "M:System.Management.InvokeMethodOptions.Clone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L1193C13-L1198C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L1193C13-L1198C65" } ], "DocsId": "T:System.Management.InvokeMethodOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" }, { "Members": [ { "DocsId": "M:System.Management.ConnectionOptions.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L1554C13-L1557C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L1554C13-L1557C12" }, { "DocsId": "M:System.Management.ConnectionOptions.#ctor(System.String,System.String,System.String,System.String,System.Management.ImpersonationLevel,System.Management.AuthenticationLevel,System.Boolean,System.Management.ManagementNamedValueCollection,System.TimeSpan)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L1578C77-L1603C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L1578C77-L1603C10" }, { "DocsId": "M:System.Management.ConnectionOptions.#ctor(System.String,System.String,System.Security.SecureString,System.String,System.Management.ImpersonationLevel,System.Management.AuthenticationLevel,System.Boolean,System.Management.ManagementNamedValueCollection,System.TimeSpan)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L1622C77-L1643C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L1622C77-L1643C10" }, { "DocsId": "M:System.Management.ConnectionOptions.Clone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L1653C13-L1658C102" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L1653C13-L1658C102" }, { "DocsId": "P:System.Management.ConnectionOptions.Locale", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L1295C19-L1295C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L1295C19-L1295C49" }, { "DocsId": "P:System.Management.ConnectionOptions.Username", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L1321C19-L1321C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L1321C19-L1321C35" }, { "DocsId": "P:System.Management.ConnectionOptions.Password", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L1347C17-L1379C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L1347C17-L1379C14" }, { "DocsId": "P:System.Management.ConnectionOptions.SecurePassword", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L1396C17-L1418C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L1396C17-L1418C14" }, { "DocsId": "P:System.Management.ConnectionOptions.Authority", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L1443C19-L1443C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L1443C19-L1443C52" }, { "DocsId": "P:System.Management.ConnectionOptions.Impersonation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L1475C19-L1475C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L1475C19-L1475C40" }, { "DocsId": "P:System.Management.ConnectionOptions.Authentication", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L1506C19-L1506C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L1506C19-L1506C41" }, { "DocsId": "P:System.Management.ConnectionOptions.EnablePrivileges", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L1530C19-L1530C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L1530C19-L1530C43" } ], "DocsId": "T:System.Management.ConnectionOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" }, { "Members": [ { "DocsId": "M:System.Management.ManagementPath.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementPath.cs#L184C35-L184C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementPath.cs#L184C35-L184C57" }, { "DocsId": "M:System.Management.ManagementPath.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementPath.cs#L190C9-L194C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementPath.cs#L190C9-L194C10" }, { "DocsId": "M:System.Management.ManagementPath.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementPath.cs#L206C13-L206C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementPath.cs#L206C13-L206C30" }, { "DocsId": "M:System.Management.ManagementPath.Clone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementPath.cs#L217C13-L217C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementPath.cs#L217C13-L217C45" }, { "DocsId": "M:System.Management.ManagementPath.System#ICloneable#Clone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementPath.cs#L228C13-L228C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementPath.cs#L228C13-L228C28" }, { "DocsId": "M:System.Management.ManagementPath.SetAsClass", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementPath.cs#L408C13-L421C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementPath.cs#L408C13-L421C94" }, { "DocsId": "M:System.Management.ManagementPath.SetAsSingleton", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementPath.cs#L430C13-L443C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementPath.cs#L430C13-L443C94" }, { "DocsId": "P:System.Management.ManagementPath.DefaultPath", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementPath.cs#L241C19-L241C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementPath.cs#L241C19-L241C53" }, { "DocsId": "P:System.Management.ManagementPath.Path", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementPath.cs#L462C17-L462C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementPath.cs#L462C17-L462C43" }, { "DocsId": "P:System.Management.ManagementPath.RelativePath", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementPath.cs#L502C17-L536C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementPath.cs#L502C17-L536C32" }, { "DocsId": "P:System.Management.ManagementPath.Server", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementPath.cs#L605C17-L633C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementPath.cs#L605C17-L633C32" }, { "DocsId": "P:System.Management.ManagementPath.NamespacePath", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementPath.cs#L856C17-L856C99" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementPath.cs#L856C17-L856C99" }, { "DocsId": "P:System.Management.ManagementPath.ClassName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementPath.cs#L889C17-L889C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementPath.cs#L889C17-L889C42" }, { "DocsId": "P:System.Management.ManagementPath.IsClass", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementPath.cs#L976C17-L990C101" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementPath.cs#L976C17-L990C101" }, { "DocsId": "P:System.Management.ManagementPath.IsInstance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementPath.cs#L1005C17-L1019C100" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementPath.cs#L1005C17-L1019C100" }, { "DocsId": "P:System.Management.ManagementPath.IsSingleton", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementPath.cs#L1034C17-L1048C101" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementPath.cs#L1034C17-L1048C101" } ], "DocsId": "T:System.Management.ManagementPath", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementPath.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementPath.cs" }, { "Members": [ { "DocsId": "M:System.Management.ManagementQuery.ParseQuery(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L60C68-L60C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L60C68-L60C69" }, { "DocsId": "M:System.Management.ManagementQuery.Clone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs" }, { "DocsId": "P:System.Management.ManagementQuery.QueryString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L76C19-L76C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L76C19-L76C54" }, { "DocsId": "P:System.Management.ManagementQuery.QueryLanguage", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L98C19-L98C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L98C19-L98C56" } ], "DocsId": "T:System.Management.ManagementQuery", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs" }, { "Members": [ { "DocsId": "M:System.Management.ObjectQuery.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L221C32-L221C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L221C32-L221C42" }, { "DocsId": "M:System.Management.ObjectQuery.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L228C44-L228C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L228C44-L228C59" }, { "DocsId": "M:System.Management.ObjectQuery.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L236C61-L236C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L236C61-L236C86" }, { "DocsId": "M:System.Management.ObjectQuery.Clone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L247C13-L247C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L247C13-L247C64" } ], "DocsId": "T:System.Management.ObjectQuery", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs" }, { "Members": [ { "DocsId": "M:System.Management.EventQuery.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L434C31-L434C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L434C31-L434C41" }, { "DocsId": "M:System.Management.EventQuery.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L440C43-L440C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L440C43-L440C58" }, { "DocsId": "M:System.Management.EventQuery.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L448C60-L448C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L448C60-L448C85" }, { "DocsId": "M:System.Management.EventQuery.Clone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L459C13-L459C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L459C13-L459C63" } ], "DocsId": "T:System.Management.EventQuery", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs" }, { "Members": [ { "DocsId": "M:System.Management.WqlObjectQuery.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L523C35-L523C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L523C35-L523C49" }, { "DocsId": "M:System.Management.WqlObjectQuery.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L530C47-L530C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L530C47-L530C62" }, { "DocsId": "M:System.Management.WqlObjectQuery.Clone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L555C13-L555C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L555C13-L555C52" }, { "DocsId": "P:System.Management.WqlObjectQuery.QueryLanguage", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L543C15-L543C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L543C15-L543C41" } ], "DocsId": "T:System.Management.WqlObjectQuery", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs" }, { "Members": [ { "DocsId": "M:System.Management.SelectQuery.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L626C32-L626C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L626C32-L626C46" }, { "DocsId": "M:System.Management.SelectQuery.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L654C9-L682C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L654C9-L682C10" }, { "DocsId": "M:System.Management.SelectQuery.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L697C66-L697C102" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L697C66-L697C102" }, { "DocsId": "M:System.Management.SelectQuery.#ctor(System.String,System.String,System.String[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L721C95-L732C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L721C95-L732C10" }, { "DocsId": "M:System.Management.SelectQuery.#ctor(System.Boolean,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L747C68-L758C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L747C68-L758C10" }, { "DocsId": "M:System.Management.SelectQuery.BuildQuery", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L913C13-L955C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L913C13-L955C10" }, { "DocsId": "M:System.Management.SelectQuery.ParseQuery(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L965C13-L1095C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L965C13-L1095C10" }, { "DocsId": "M:System.Management.SelectQuery.Clone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1105C13-L1121C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1105C13-L1121C57" }, { "DocsId": "P:System.Management.SelectQuery.QueryString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L787C17-L788C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L787C17-L788C41" }, { "DocsId": "P:System.Management.SelectQuery.IsSchemaQuery", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L812C15-L812C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L812C15-L812C36" }, { "DocsId": "P:System.Management.SelectQuery.ClassName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L846C19-L846C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L846C19-L846C52" }, { "DocsId": "P:System.Management.SelectQuery.Condition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L865C19-L865C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L865C19-L865C52" }, { "DocsId": "P:System.Management.SelectQuery.SelectedProperties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L884C19-L884C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L884C19-L884C45" } ], "DocsId": "T:System.Management.SelectQuery", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs" }, { "Members": [ { "DocsId": "M:System.Management.RelatedObjectQuery.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1215C39-L1215C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1215C39-L1215C53" }, { "DocsId": "M:System.Management.RelatedObjectQuery.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1252C9-L1283C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1252C9-L1283C10" }, { "DocsId": "M:System.Management.RelatedObjectQuery.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1291C79-L1293C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1291C79-L1293C12" }, { "DocsId": "M:System.Management.RelatedObjectQuery.#ctor(System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1308C9-L1328C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1308C9-L1328C10" }, { "DocsId": "M:System.Management.RelatedObjectQuery.#ctor(System.Boolean,System.String,System.String,System.String,System.String,System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1344C9-L1367C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1344C9-L1367C10" }, { "DocsId": "M:System.Management.RelatedObjectQuery.BuildQuery", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1564C13-L1624C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1564C13-L1624C10" }, { "DocsId": "M:System.Management.RelatedObjectQuery.ParseQuery(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1634C13-L1754C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1634C13-L1754C10" }, { "DocsId": "M:System.Management.RelatedObjectQuery.Clone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1766C13-L1773C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1766C13-L1773C55" }, { "DocsId": "P:System.Management.RelatedObjectQuery.IsSchemaQuery", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1385C15-L1385C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1385C15-L1385C36" }, { "DocsId": "P:System.Management.RelatedObjectQuery.SourceObject", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1405C19-L1405C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1405C19-L1405C55" }, { "DocsId": "P:System.Management.RelatedObjectQuery.RelatedClass", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1433C19-L1433C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1433C19-L1433C55" }, { "DocsId": "P:System.Management.RelatedObjectQuery.RelationshipClass", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1461C19-L1461C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1461C19-L1461C60" }, { "DocsId": "P:System.Management.RelatedObjectQuery.RelatedQualifier", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1479C19-L1479C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1479C19-L1479C59" }, { "DocsId": "P:System.Management.RelatedObjectQuery.RelationshipQualifier", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1497C19-L1497C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1497C19-L1497C64" }, { "DocsId": "P:System.Management.RelatedObjectQuery.RelatedRole", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1515C19-L1515C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1515C19-L1515C54" }, { "DocsId": "P:System.Management.RelatedObjectQuery.ThisRole", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1532C19-L1532C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1532C19-L1532C51" }, { "DocsId": "P:System.Management.RelatedObjectQuery.ClassDefinitionsOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1552C19-L1552C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1552C19-L1552C47" } ], "DocsId": "T:System.Management.RelatedObjectQuery", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs" }, { "Members": [ { "DocsId": "M:System.Management.RelationshipQuery.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1852C38-L1852C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1852C38-L1852C52" }, { "DocsId": "M:System.Management.RelationshipQuery.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1880C9-L1911C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1880C9-L1911C10" }, { "DocsId": "M:System.Management.RelationshipQuery.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1919C83-L1921C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1919C83-L1921C12" }, { "DocsId": "M:System.Management.RelationshipQuery.#ctor(System.String,System.String,System.String,System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1933C9-L1946C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1933C9-L1946C10" }, { "DocsId": "M:System.Management.RelationshipQuery.#ctor(System.Boolean,System.String,System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1959C9-L1976C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1959C9-L1976C10" }, { "DocsId": "M:System.Management.RelationshipQuery.BuildQuery", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2099C13-L2144C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2099C13-L2144C10" }, { "DocsId": "M:System.Management.RelationshipQuery.ParseQuery(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2154C13-L2260C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2154C13-L2260C10" }, { "DocsId": "M:System.Management.RelationshipQuery.Clone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2272C13-L2277C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2272C13-L2277C55" }, { "DocsId": "P:System.Management.RelationshipQuery.IsSchemaQuery", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1995C15-L1995C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1995C15-L1995C36" }, { "DocsId": "P:System.Management.RelationshipQuery.SourceObject", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2015C19-L2015C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2015C19-L2015C55" }, { "DocsId": "P:System.Management.RelationshipQuery.RelationshipClass", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2033C19-L2033C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2033C19-L2033C60" }, { "DocsId": "P:System.Management.RelationshipQuery.RelationshipQualifier", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2051C19-L2051C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2051C19-L2051C64" }, { "DocsId": "P:System.Management.RelationshipQuery.ThisRole", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2069C19-L2069C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2069C19-L2069C51" }, { "DocsId": "P:System.Management.RelationshipQuery.ClassDefinitionsOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2087C19-L2087C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2087C19-L2087C47" } ], "DocsId": "T:System.Management.RelationshipQuery", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs" }, { "Members": [ { "DocsId": "M:System.Management.WqlEventQuery.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2443C34-L2443C96" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2443C34-L2443C96" }, { "DocsId": "M:System.Management.WqlEventQuery.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2471C9-L2497C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2471C9-L2497C10" }, { "DocsId": "M:System.Management.WqlEventQuery.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2518C73-L2518C150" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2518C73-L2518C150" }, { "DocsId": "M:System.Management.WqlEventQuery.#ctor(System.String,System.TimeSpan)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2543C41-L2544C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2543C41-L2544C12" }, { "DocsId": "M:System.Management.WqlEventQuery.#ctor(System.String,System.TimeSpan,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2575C41-L2576C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2575C41-L2576C12" }, { "DocsId": "M:System.Management.WqlEventQuery.#ctor(System.String,System.String,System.TimeSpan)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2607C41-L2608C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2607C41-L2608C12" }, { "DocsId": "M:System.Management.WqlEventQuery.#ctor(System.String,System.String,System.TimeSpan,System.String[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2646C13-L2647C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2646C13-L2647C12" }, { "DocsId": "M:System.Management.WqlEventQuery.#ctor(System.String,System.TimeSpan,System.String,System.TimeSpan,System.String[],System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2686C9-L2700C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2686C9-L2700C10" }, { "DocsId": "M:System.Management.WqlEventQuery.BuildQuery", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2966C13-L3013C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2966C13-L3013C10" }, { "DocsId": "M:System.Management.WqlEventQuery.ParseQuery(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L3022C13-L3134C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L3022C13-L3134C10" }, { "DocsId": "M:System.Management.WqlEventQuery.Clone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L3146C13-L3160C104" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L3146C13-L3160C104" }, { "DocsId": "P:System.Management.WqlEventQuery.QueryLanguage", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2714C15-L2714C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2714C15-L2714C41" }, { "DocsId": "P:System.Management.WqlEventQuery.QueryString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2729C17-L2730C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2729C17-L2730C41" }, { "DocsId": "P:System.Management.WqlEventQuery.EventClassName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2763C19-L2763C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2763C19-L2763C57" }, { "DocsId": "P:System.Management.WqlEventQuery.Condition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2797C19-L2797C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2797C19-L2797C52" }, { "DocsId": "P:System.Management.WqlEventQuery.WithinInterval", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2833C19-L2833C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2833C19-L2833C41" }, { "DocsId": "P:System.Management.WqlEventQuery.GroupWithinInterval", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2869C19-L2869C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2869C19-L2869C46" }, { "DocsId": "P:System.Management.WqlEventQuery.GroupByPropertyList", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2906C19-L2906C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2906C19-L2906C46" }, { "DocsId": "P:System.Management.WqlEventQuery.HavingCondition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2954C19-L2954C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2954C19-L2954C58" } ], "DocsId": "T:System.Management.WqlEventQuery", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs" }, { "Members": [ { "DocsId": "M:System.Management.ManagementScope.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementScope.cs#L691C13-L695C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementScope.cs#L691C13-L695C10" }, { "DocsId": "M:System.Management.ManagementScope.#ctor(System.Management.ManagementPath)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementScope.cs#L710C55-L710C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementScope.cs#L710C55-L710C94" }, { "DocsId": "M:System.Management.ManagementScope.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementScope.cs#L723C47-L723C106" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementScope.cs#L723C47-L723C106" }, { "DocsId": "M:System.Management.ManagementScope.#ctor(System.String,System.Management.ConnectionOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementScope.cs#L742C74-L742C117" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementScope.cs#L742C74-L742C117" }, { "DocsId": "M:System.Management.ManagementScope.#ctor(System.Management.ManagementPath,System.Management.ConnectionOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementScope.cs#L766C9-L781C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementScope.cs#L766C9-L781C10" }, { "DocsId": "M:System.Management.ManagementScope.Clone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementScope.cs#L877C13-L877C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementScope.cs#L877C13-L877C49" }, { "DocsId": "M:System.Management.ManagementScope.System#ICloneable#Clone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementScope.cs#L889C13-L889C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementScope.cs#L889C13-L889C28" }, { "DocsId": "M:System.Management.ManagementScope.Connect", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementScope.cs#L921C13-L922C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementScope.cs#L921C13-L922C10" }, { "DocsId": "P:System.Management.ManagementScope.IsConnected", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementScope.cs#L597C17-L597C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementScope.cs#L597C17-L597C47" }, { "DocsId": "P:System.Management.ManagementScope.Options", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementScope.cs#L810C17-L810C126" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementScope.cs#L810C17-L810C126" }, { "DocsId": "P:System.Management.ManagementScope.Path", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementScope.cs#L848C17-L848C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementScope.cs#L848C17-L848C64" } ], "DocsId": "T:System.Management.ManagementScope", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementScope.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementScope.cs" }, { "Members": [ { "DocsId": "P:System.Management.MethodData.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/Method.cs#L147C19-L147C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/Method.cs#L147C19-L147C43" }, { "DocsId": "P:System.Management.MethodData.InParameters", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/Method.cs#L171C17-L172C93" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/Method.cs#L171C17-L172C93" }, { "DocsId": "P:System.Management.MethodData.OutParameters", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/Method.cs#L198C17-L199C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/Method.cs#L198C17-L199C95" }, { "DocsId": "P:System.Management.MethodData.Origin", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/Method.cs#L215C17-L228C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/Method.cs#L215C17-L228C34" }, { "DocsId": "P:System.Management.MethodData.Qualifiers", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/Method.cs#L243C54-L243C147" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/Method.cs#L243C54-L243C147" } ], "DocsId": "T:System.Management.MethodData", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/Method.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/Method.cs" }, { "Members": [ { "DocsId": "M:System.Management.MethodDataCollection.CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/MethodSet.cs#L152C38-L154C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/MethodSet.cs#L152C38-L154C10" }, { "DocsId": "M:System.Management.MethodDataCollection.CopyTo(System.Management.MethodData[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/MethodSet.cs#L164C13-L165C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/MethodSet.cs#L164C13-L165C10" }, { "DocsId": "M:System.Management.MethodDataCollection.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/MethodSet.cs#L172C13-L172C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/MethodSet.cs#L172C13-L172C68" }, { "DocsId": "M:System.Management.MethodDataCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/MethodSet.cs#L188C13-L188C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/MethodSet.cs#L188C13-L188C53" }, { "DocsId": "M:System.Management.MethodDataCollection.Remove(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/MethodSet.cs#L363C13-L385C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/MethodSet.cs#L363C13-L385C10" }, { "DocsId": "M:System.Management.MethodDataCollection.Add(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/MethodSet.cs#L403C13-L404C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/MethodSet.cs#L403C13-L404C10" }, { "DocsId": "M:System.Management.MethodDataCollection.Add(System.String,System.Management.ManagementBaseObject,System.Management.ManagementBaseObject)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/MethodSet.cs#L423C13-L452C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/MethodSet.cs#L423C13-L452C10" }, { "DocsId": "P:System.Management.MethodDataCollection.Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/MethodSet.cs#L75C17-L114C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/MethodSet.cs#L75C17-L114C26" }, { "DocsId": "P:System.Management.MethodDataCollection.IsSynchronized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/MethodSet.cs#L127C19-L127C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/MethodSet.cs#L127C19-L127C32" }, { "DocsId": "P:System.Management.MethodDataCollection.SyncRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/MethodSet.cs#L138C19-L138C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/MethodSet.cs#L138C19-L138C31" }, { "DocsId": "P:System.Management.MethodDataCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/MethodSet.cs#L343C17-L346C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/MethodSet.cs#L343C17-L346C59" }, { "DocsId": "T:System.Management.MethodDataCollection.MethodDataEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/MethodSet.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/MethodSet.cs" } ], "DocsId": "T:System.Management.MethodDataCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/MethodSet.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/MethodSet.cs" }, { "Members": [ { "DocsId": "P:System.Management.PropertyData.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/Property.cs#L124C19-L124C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/Property.cs#L124C19-L124C45" }, { "DocsId": "P:System.Management.PropertyData.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/Property.cs#L138C17-L141C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/Property.cs#L138C17-L141C95" }, { "DocsId": "P:System.Management.PropertyData.Type", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/Property.cs#L181C17-L182C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/Property.cs#L181C17-L182C95" }, { "DocsId": "P:System.Management.PropertyData.IsLocal", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/Property.cs#L197C17-L198C121" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/Property.cs#L197C17-L198C121" }, { "DocsId": "P:System.Management.PropertyData.IsArray", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/Property.cs#L212C17-L213C92" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/Property.cs#L212C17-L213C92" }, { "DocsId": "P:System.Management.PropertyData.Origin", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/Property.cs#L228C17-L241C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/Property.cs#L228C17-L241C34" }, { "DocsId": "P:System.Management.PropertyData.Qualifiers", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/Property.cs#L253C54-L253C151" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/Property.cs#L253C54-L253C151" } ], "DocsId": "T:System.Management.PropertyData", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/Property.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/Property.cs" }, { "Members": [ { "DocsId": "M:System.Management.PropertyDataCollection.CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/PropertySet.cs#L131C13-L168C20" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/PropertySet.cs#L131C13-L168C20" }, { "DocsId": "M:System.Management.PropertyDataCollection.CopyTo(System.Management.PropertyData[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/PropertySet.cs#L179C13-L180C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/PropertySet.cs#L179C13-L180C10" }, { "DocsId": "M:System.Management.PropertyDataCollection.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/PropertySet.cs#L186C13-L186C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/PropertySet.cs#L186C13-L186C80" }, { "DocsId": "M:System.Management.PropertyDataCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/PropertySet.cs#L198C13-L198C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/PropertySet.cs#L198C13-L198C65" }, { "DocsId": "M:System.Management.PropertyDataCollection.Remove(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/PropertySet.cs#L377C13-L394C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/PropertySet.cs#L377C13-L394C10" }, { "DocsId": "M:System.Management.PropertyDataCollection.Add(System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/PropertySet.cs#L413C13-L436C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/PropertySet.cs#L413C13-L436C10" }, { "DocsId": "M:System.Management.PropertyDataCollection.Add(System.String,System.Object,System.Management.CimType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/PropertySet.cs#L452C13-L478C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/PropertySet.cs#L452C13-L478C10" }, { "DocsId": "M:System.Management.PropertyDataCollection.Add(System.String,System.Management.CimType,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/PropertySet.cs#L494C13-L516C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/PropertySet.cs#L494C13-L516C10" }, { "DocsId": "P:System.Management.PropertyDataCollection.Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/PropertySet.cs#L75C17-L94C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/PropertySet.cs#L75C17-L94C45" }, { "DocsId": "P:System.Management.PropertyDataCollection.IsSynchronized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/PropertySet.cs#L107C19-L107C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/PropertySet.cs#L107C19-L107C32" }, { "DocsId": "P:System.Management.PropertyDataCollection.SyncRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/PropertySet.cs#L118C19-L118C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/PropertySet.cs#L118C19-L118C31" }, { "DocsId": "P:System.Management.PropertyDataCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/PropertySet.cs#L350C17-L353C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/PropertySet.cs#L350C17-L353C63" }, { "DocsId": "T:System.Management.PropertyDataCollection.PropertyDataEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/PropertySet.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/PropertySet.cs" } ], "DocsId": "T:System.Management.PropertyDataCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/PropertySet.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/PropertySet.cs" }, { "Members": [ { "DocsId": "P:System.Management.QualifierData.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/Qualifier.cs#L151C19-L151C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/Qualifier.cs#L151C19-L151C46" }, { "DocsId": "P:System.Management.QualifierData.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/Qualifier.cs#L172C17-L173C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/Qualifier.cs#L172C17-L173C70" }, { "DocsId": "P:System.Management.QualifierData.IsAmended", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/Qualifier.cs#L209C17-L211C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/Qualifier.cs#L209C17-L211C88" }, { "DocsId": "P:System.Management.QualifierData.IsLocal", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/Qualifier.cs#L247C17-L249C92" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/Qualifier.cs#L247C17-L249C92" }, { "DocsId": "P:System.Management.QualifierData.PropagatesToInstance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/Qualifier.cs#L265C17-L267C107" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/Qualifier.cs#L265C17-L267C107" }, { "DocsId": "P:System.Management.QualifierData.PropagatesToSubclass", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/Qualifier.cs#L303C17-L305C112" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/Qualifier.cs#L303C17-L305C112" }, { "DocsId": "P:System.Management.QualifierData.IsOverridable", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/Qualifier.cs#L341C17-L343C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/Qualifier.cs#L341C17-L343C97" } ], "DocsId": "T:System.Management.QualifierData", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/Qualifier.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/Qualifier.cs" }, { "Members": [ { "DocsId": "M:System.Management.QualifierDataCollection.CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/QualifierSet.cs#L180C13-L218C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/QualifierSet.cs#L180C13-L218C10" }, { "DocsId": "M:System.Management.QualifierDataCollection.CopyTo(System.Management.QualifierData[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/QualifierSet.cs#L230C13-L231C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/QualifierSet.cs#L230C13-L231C10" }, { "DocsId": "M:System.Management.QualifierDataCollection.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/QualifierSet.cs#L238C13-L238C111" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/QualifierSet.cs#L238C13-L238C111" }, { "DocsId": "M:System.Management.QualifierDataCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/QualifierSet.cs#L250C13-L250C96" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/QualifierSet.cs#L250C13-L250C96" }, { "DocsId": "M:System.Management.QualifierDataCollection.Remove(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/QualifierSet.cs#L426C13-L435C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/QualifierSet.cs#L426C13-L435C10" }, { "DocsId": "M:System.Management.QualifierDataCollection.Add(System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/QualifierSet.cs#L447C13-L448C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/QualifierSet.cs#L447C13-L448C10" }, { "DocsId": "M:System.Management.QualifierDataCollection.Add(System.String,System.Object,System.Boolean,System.Boolean,System.Boolean,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/QualifierSet.cs#L466C13-L484C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/QualifierSet.cs#L466C13-L484C10" }, { "DocsId": "P:System.Management.QualifierDataCollection.Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/QualifierSet.cs#L119C17-L144C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/QualifierSet.cs#L119C17-L144C14" }, { "DocsId": "P:System.Management.QualifierDataCollection.IsSynchronized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/QualifierSet.cs#L156C19-L156C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/QualifierSet.cs#L156C19-L156C32" }, { "DocsId": "P:System.Management.QualifierDataCollection.SyncRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/QualifierSet.cs#L167C19-L167C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/QualifierSet.cs#L167C19-L167C31" }, { "DocsId": "P:System.Management.QualifierDataCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/QualifierSet.cs#L413C17-L416C105" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/QualifierSet.cs#L413C17-L416C105" }, { "DocsId": "T:System.Management.QualifierDataCollection.QualifierDataEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/QualifierSet.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/QualifierSet.cs" } ], "DocsId": "T:System.Management.QualifierDataCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/QualifierSet.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/QualifierSet.cs" }, { "Members": [ { "DocsId": "F:System.Management.CodeLanguage.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/WMIGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/WMIGenerator.cs" }, { "DocsId": "F:System.Management.CodeLanguage.CSharp", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/WMIGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/WMIGenerator.cs" }, { "DocsId": "F:System.Management.CodeLanguage.JScript", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/WMIGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/WMIGenerator.cs" }, { "DocsId": "F:System.Management.CodeLanguage.VB", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/WMIGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/WMIGenerator.cs" }, { "DocsId": "F:System.Management.CodeLanguage.VJSharp", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/WMIGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/WMIGenerator.cs" }, { "DocsId": "F:System.Management.CodeLanguage.Mcpp", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/WMIGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/WMIGenerator.cs" } ], "DocsId": "T:System.Management.CodeLanguage", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/WMIGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/WMIGenerator.cs" }, { "Members": [ { "DocsId": "M:System.Management.ManagementObjectCollection.ManagementObjectEnumerator.Finalize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObjectCollection.cs#L430C17-L431C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObjectCollection.cs#L430C17-L431C14" }, { "DocsId": "M:System.Management.ManagementObjectCollection.ManagementObjectEnumerator.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObjectCollection.cs#L441C17-L461C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObjectCollection.cs#L441C17-L461C14" }, { "DocsId": "M:System.Management.ManagementObjectCollection.ManagementObjectEnumerator.System#Collections#IEnumerator#get_Current", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObjectCollection.cs#L497C21-L497C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObjectCollection.cs#L497C21-L497C36" }, { "DocsId": "M:System.Management.ManagementObjectCollection.ManagementObjectEnumerator.MoveNext", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObjectCollection.cs#L515C17-L589C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObjectCollection.cs#L515C17-L589C29" }, { "DocsId": "M:System.Management.ManagementObjectCollection.ManagementObjectEnumerator.Reset", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObjectCollection.cs#L600C17-L642C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObjectCollection.cs#L600C17-L642C14" }, { "DocsId": "P:System.Management.ManagementObjectCollection.ManagementObjectEnumerator.Current", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObjectCollection.cs#L475C21-L482C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObjectCollection.cs#L475C21-L482C49" }, { "DocsId": "P:System.Management.ManagementObjectCollection.ManagementObjectEnumerator.System#Collections#IEnumerator#Current", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObjectCollection.cs#L497C21-L497C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObjectCollection.cs#L497C21-L497C36" } ], "DocsId": "T:System.Management.ManagementObjectCollection.ManagementObjectEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObjectCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObjectCollection.cs" }, { "Members": [ { "DocsId": "M:System.Management.MethodDataCollection.MethodDataEnumerator.System#Collections#IEnumerator#get_Current", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/MethodSet.cs#L295C48-L295C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/MethodSet.cs#L295C48-L295C76" }, { "DocsId": "M:System.Management.MethodDataCollection.MethodDataEnumerator.MoveNext", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/MethodSet.cs#L316C17-L316C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/MethodSet.cs#L316C17-L316C38" }, { "DocsId": "M:System.Management.MethodDataCollection.MethodDataEnumerator.Reset", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/MethodSet.cs#L324C17-L325C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/MethodSet.cs#L324C17-L325C14" }, { "DocsId": "P:System.Management.MethodDataCollection.MethodDataEnumerator.System#Collections#IEnumerator#Current", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/MethodSet.cs#L295C48-L295C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/MethodSet.cs#L295C48-L295C76" }, { "DocsId": "P:System.Management.MethodDataCollection.MethodDataEnumerator.Current", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/MethodSet.cs#L306C21-L306C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/MethodSet.cs#L306C21-L306C71" } ], "DocsId": "T:System.Management.MethodDataCollection.MethodDataEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/MethodSet.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/MethodSet.cs" }, { "Members": [ { "DocsId": "M:System.Management.PropertyDataCollection.PropertyDataEnumerator.System#Collections#IEnumerator#get_Current", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/PropertySet.cs#L276C48-L276C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/PropertySet.cs#L276C48-L276C76" }, { "DocsId": "M:System.Management.PropertyDataCollection.PropertyDataEnumerator.MoveNext", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/PropertySet.cs#L306C17-L310C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/PropertySet.cs#L306C17-L310C71" }, { "DocsId": "M:System.Management.PropertyDataCollection.PropertyDataEnumerator.Reset", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/PropertySet.cs#L319C17-L320C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/PropertySet.cs#L319C17-L320C14" }, { "DocsId": "P:System.Management.PropertyDataCollection.PropertyDataEnumerator.System#Collections#IEnumerator#Current", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/PropertySet.cs#L276C48-L276C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/PropertySet.cs#L276C48-L276C76" }, { "DocsId": "P:System.Management.PropertyDataCollection.PropertyDataEnumerator.Current", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/PropertySet.cs#L289C21-L292C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/PropertySet.cs#L289C21-L292C79" } ], "DocsId": "T:System.Management.PropertyDataCollection.PropertyDataEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/PropertySet.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/PropertySet.cs" }, { "Members": [ { "DocsId": "M:System.Management.QualifierDataCollection.QualifierDataEnumerator.System#Collections#IEnumerator#get_Current", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/QualifierSet.cs#L350C48-L350C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/QualifierSet.cs#L350C48-L350C76" }, { "DocsId": "M:System.Management.QualifierDataCollection.QualifierDataEnumerator.MoveNext", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/QualifierSet.cs#L380C17-L384C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/QualifierSet.cs#L380C17-L384C72" }, { "DocsId": "M:System.Management.QualifierDataCollection.QualifierDataEnumerator.Reset", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/QualifierSet.cs#L392C17-L393C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/QualifierSet.cs#L392C17-L393C14" }, { "DocsId": "P:System.Management.QualifierDataCollection.QualifierDataEnumerator.System#Collections#IEnumerator#Current", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/QualifierSet.cs#L350C48-L350C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/QualifierSet.cs#L350C48-L350C76" }, { "DocsId": "P:System.Management.QualifierDataCollection.QualifierDataEnumerator.Current", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/QualifierSet.cs#L362C21-L366C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/QualifierSet.cs#L362C21-L366C87" } ], "DocsId": "T:System.Management.QualifierDataCollection.QualifierDataEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/QualifierSet.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/QualifierSet.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/System.Memory.Data.json b/xml/SourceLinkInformation/net-8.0/System.Memory.Data.json index e75023ddd87..140fe6b4602 100644 --- a/xml/SourceLinkInformation/net-8.0/System.Memory.Data.json +++ b/xml/SourceLinkInformation/net-8.0/System.Memory.Data.json @@ -1,171 +1,170 @@ { "Assembly": "System.Memory.Data", - "GUID": "6A1E30610A7B41AAADA3731F62D43448FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "CB74A2B112D746F3A83D54263DBACE1EFFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:System.BinaryData.#ctor(System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L60C9-L63C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L60C9-L63C10" }, { "DocsId": "M:System.BinaryData.#ctor(System.Byte[],System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L72C61-L75C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L72C61-L75C10" }, { "DocsId": "M:System.BinaryData.#ctor(System.Object,System.Text.Json.JsonSerializerOptions,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L90C119-L94C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L90C119-L94C10" }, { "DocsId": "M:System.BinaryData.#ctor(System.Object,System.Text.Json.Serialization.JsonSerializerContext,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L107C108-L111C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L107C108-L111C10" }, { "DocsId": "M:System.BinaryData.#ctor(System.ReadOnlyMemory{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L118C9-L121C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L118C9-L121C10" }, { "DocsId": "M:System.BinaryData.#ctor(System.ReadOnlyMemory{System.Byte},System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L130C75-L133C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L130C75-L133C10" }, { "DocsId": "M:System.BinaryData.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L140C9-L148C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L140C9-L148C10" }, { "DocsId": "M:System.BinaryData.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L158C61-L161C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L158C61-L161C10" }, { "DocsId": "M:System.BinaryData.FromBytes(System.ReadOnlyMemory{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L169C74-L169C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L169C74-L169C94" }, { "DocsId": "M:System.BinaryData.FromBytes(System.ReadOnlyMemory{System.Byte},System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L181C16-L181C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L181C16-L181C47" }, { "DocsId": "M:System.BinaryData.FromBytes(System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L189C60-L189C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L189C60-L189C80" }, { "DocsId": "M:System.BinaryData.FromBytes(System.Byte[],System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L200C16-L200C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L200C16-L200C47" }, { "DocsId": "M:System.BinaryData.FromString(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L208C61-L208C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L208C61-L208C81" }, { "DocsId": "M:System.BinaryData.FromString(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L220C16-L220C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L220C16-L220C47" }, { "DocsId": "M:System.BinaryData.FromStream(System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L230C13-L235C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L230C13-L235C83" }, { "DocsId": "M:System.BinaryData.FromStream(System.IO.Stream,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L249C13-L254C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L249C13-L254C94" }, { "DocsId": "M:System.BinaryData.FromStreamAsync(System.IO.Stream,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L266C13-L271C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L266C13-L271C95" }, { "DocsId": "M:System.BinaryData.FromStreamAsync(System.IO.Stream,System.String,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L287C13-L292C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L287C13-L292C87" }, { "DocsId": "M:System.BinaryData.FromObjectAsJson``1(``0,System.Text.Json.JsonSerializerOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L346C16-L346C120" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L346C16-L346C120" }, { "DocsId": "M:System.BinaryData.FromObjectAsJson``1(``0,System.Text.Json.Serialization.Metadata.JsonTypeInfo{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L359C16-L359C125" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L359C16-L359C125" }, { "DocsId": "M:System.BinaryData.WithMediaType(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L368C16-L368C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L368C16-L368C49" }, { "DocsId": "M:System.BinaryData.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L385C13-L394C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L385C13-L394C66" }, { "DocsId": "M:System.BinaryData.ToStream", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L402C37-L402C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L402C37-L402C69" }, { "DocsId": "M:System.BinaryData.ToMemory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L408C51-L408C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L408C51-L408C57" }, { "DocsId": "M:System.BinaryData.ToArray", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L414C36-L414C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L414C36-L414C52" }, { "DocsId": "M:System.BinaryData.ToObjectFromJson``1(System.Text.Json.JsonSerializerOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L427C16-L427C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L427C16-L427C80" }, { "DocsId": "M:System.BinaryData.ToObjectFromJson``1(System.Text.Json.Serialization.Metadata.JsonTypeInfo{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L438C16-L438C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L438C16-L438C82" }, { "DocsId": "M:System.BinaryData.op_Implicit(System.BinaryData)~System.ReadOnlyMemory{System.Byte}", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L455C83-L455C106" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L455C83-L455C106" }, { "DocsId": "M:System.BinaryData.op_Implicit(System.BinaryData)~System.ReadOnlySpan{System.Byte}", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L463C13-L467C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L463C13-L467C37" }, { "DocsId": "M:System.BinaryData.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L478C73-L478C99" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L478C73-L478C99" }, { "DocsId": "M:System.BinaryData.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L482C46-L482C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L482C46-L482C64" }, { "DocsId": "P:System.BinaryData.Empty", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L35C42-L35C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L35C42-L35C46" }, { "DocsId": "P:System.BinaryData.Length", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L41C30-L41C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L41C30-L41C43" }, { "DocsId": "P:System.BinaryData.IsEmpty", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L47C32-L47C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L47C32-L47C46" }, { "DocsId": "P:System.BinaryData.MediaType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L53C36-L53C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L53C36-L53C40" } ], "DocsId": "T:System.BinaryData", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Memory.Data/src/System/BinaryData.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Memory.Data/src/System/BinaryData.cs" }, { "Members": [ { "DocsId": "M:System.Text.Json.Serialization.BinaryDataJsonConverter.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Memory.Data/src/System/BinaryDataConverter.cs#L14C9-L15C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Memory.Data/src/System/BinaryDataConverter.cs#L14C9-L15C12" }, { "DocsId": "M:System.Text.Json.Serialization.BinaryDataJsonConverter.Read(System.Text.Json.Utf8JsonReader@,System.Type,System.Text.Json.JsonSerializerOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Memory.Data/src/System/BinaryDataConverter.cs#L20C13-L20C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Memory.Data/src/System/BinaryDataConverter.cs#L20C13-L20C70" }, { "DocsId": "M:System.Text.Json.Serialization.BinaryDataJsonConverter.Write(System.Text.Json.Utf8JsonWriter,System.BinaryData,System.Text.Json.JsonSerializerOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Memory.Data/src/System/BinaryDataConverter.cs#L26C13-L27C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Memory.Data/src/System/BinaryDataConverter.cs#L26C13-L27C10" } ], "DocsId": "T:System.Text.Json.Serialization.BinaryDataJsonConverter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Memory.Data/src/System/BinaryDataConverter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Memory.Data/src/System/BinaryDataConverter.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/System.Net.Http.WinHttpHandler.json b/xml/SourceLinkInformation/net-8.0/System.Net.Http.WinHttpHandler.json index 0712f672027..eafb6acbc2a 100644 --- a/xml/SourceLinkInformation/net-8.0/System.Net.Http.WinHttpHandler.json +++ b/xml/SourceLinkInformation/net-8.0/System.Net.Http.WinHttpHandler.json @@ -1,177 +1,176 @@ { "Assembly": "System.Net.Http.WinHttpHandler", - "GUID": "0994281CE8D440CEADAB9AC955FA10F7FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "4DDF00B1E0364FCF8FEE63DCAFE76685FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "F:System.Net.Http.WindowsProxyUsePolicy.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs" }, { "DocsId": "F:System.Net.Http.WindowsProxyUsePolicy.DoNotUseProxy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs" }, { "DocsId": "F:System.Net.Http.WindowsProxyUsePolicy.UseWinHttpProxy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs" }, { "DocsId": "F:System.Net.Http.WindowsProxyUsePolicy.UseWinInetProxy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs" }, { "DocsId": "F:System.Net.Http.WindowsProxyUsePolicy.UseCustomProxy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs" } ], "DocsId": "T:System.Net.Http.WindowsProxyUsePolicy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs" }, { "Members": [ { "DocsId": "F:System.Net.Http.CookieUsePolicy.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs" }, { "DocsId": "F:System.Net.Http.CookieUsePolicy.IgnoreCookies", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs" }, { "DocsId": "F:System.Net.Http.CookieUsePolicy.UseInternalCookieStoreOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs" }, { "DocsId": "F:System.Net.Http.CookieUsePolicy.UseSpecifiedCookieContainer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs" } ], "DocsId": "T:System.Net.Http.CookieUsePolicy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs" }, { "Members": [ { "DocsId": "M:System.Net.Http.WinHttpHandler.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L52C9-L98C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L52C9-L98C10" }, { "DocsId": "M:System.Net.Http.WinHttpHandler.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L541C13-L552C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L541C13-L552C10" }, { "DocsId": "M:System.Net.Http.WinHttpHandler.SendAsync(System.Net.Http.HttpRequestMessage,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L558C13-L621C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L558C13-L621C29" }, { "DocsId": "P:System.Net.Http.WinHttpHandler.AutomaticRedirection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L105C17-L105C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L105C17-L105C46" }, { "DocsId": "P:System.Net.Http.WinHttpHandler.MaxAutomaticRedirections", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L119C17-L119C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L119C17-L119C50" }, { "DocsId": "P:System.Net.Http.WinHttpHandler.AutomaticDecompression", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L141C17-L141C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L141C17-L141C48" }, { "DocsId": "P:System.Net.Http.WinHttpHandler.CookieUsePolicy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L155C17-L155C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L155C17-L155C41" }, { "DocsId": "P:System.Net.Http.WinHttpHandler.CookieContainer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L176C17-L176C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L176C17-L176C41" }, { "DocsId": "P:System.Net.Http.WinHttpHandler.SslProtocols", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L190C17-L190C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L190C17-L190C38" }, { "DocsId": "P:System.Net.Http.WinHttpHandler.ServerCertificateValidationCallback", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L210C17-L210C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L210C17-L210C61" }, { "DocsId": "P:System.Net.Http.WinHttpHandler.CheckCertificateRevocationList", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L225C17-L225C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L225C17-L225C56" }, { "DocsId": "P:System.Net.Http.WinHttpHandler.ClientCertificateOption", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L239C17-L239C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L239C17-L239C49" }, { "DocsId": "P:System.Net.Http.WinHttpHandler.ClientCertificates", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L259C17-L264C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L259C17-L264C81" }, { "DocsId": "P:System.Net.Http.WinHttpHandler.PreAuthenticate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L272C17-L272C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L272C17-L272C41" }, { "DocsId": "P:System.Net.Http.WinHttpHandler.ServerCredentials", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L285C17-L285C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L285C17-L285C43" }, { "DocsId": "P:System.Net.Http.WinHttpHandler.WindowsProxyUsePolicy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L298C17-L298C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L298C17-L298C47" }, { "DocsId": "P:System.Net.Http.WinHttpHandler.DefaultProxyCredentials", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L320C17-L320C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L320C17-L320C49" }, { "DocsId": "P:System.Net.Http.WinHttpHandler.Proxy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L334C17-L334C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L334C17-L334C31" }, { "DocsId": "P:System.Net.Http.WinHttpHandler.MaxConnectionsPerServer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L348C17-L348C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L348C17-L348C49" }, { "DocsId": "P:System.Net.Http.WinHttpHandler.SendTimeout", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L372C17-L372C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L372C17-L372C37" }, { "DocsId": "P:System.Net.Http.WinHttpHandler.ReceiveHeadersTimeout", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L388C17-L388C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L388C17-L388C47" }, { "DocsId": "P:System.Net.Http.WinHttpHandler.ReceiveDataTimeout", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L403C17-L403C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L403C17-L403C44" }, { "DocsId": "P:System.Net.Http.WinHttpHandler.TcpKeepAliveEnabled", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L426C17-L426C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L426C17-L426C45" }, { "DocsId": "P:System.Net.Http.WinHttpHandler.TcpKeepAliveTime", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L447C17-L447C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L447C17-L447C42" }, { "DocsId": "P:System.Net.Http.WinHttpHandler.TcpKeepAliveInterval", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L469C17-L469C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L469C17-L469C46" }, { "DocsId": "P:System.Net.Http.WinHttpHandler.MaxResponseHeadersLength", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L483C17-L483C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L483C17-L483C50" }, { "DocsId": "P:System.Net.Http.WinHttpHandler.MaxResponseDrainSize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L505C17-L505C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L505C17-L505C46" }, { "DocsId": "P:System.Net.Http.WinHttpHandler.EnableMultipleHttp2Connections", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L527C17-L527C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L527C17-L527C56" }, { "DocsId": "P:System.Net.Http.WinHttpHandler.Properties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L536C58-L536C106" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L536C58-L536C106" } ], "DocsId": "T:System.Net.Http.WinHttpHandler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/System.Numerics.Tensors.json b/xml/SourceLinkInformation/net-8.0/System.Numerics.Tensors.json index bd04c7b669f..787212ea215 100644 --- a/xml/SourceLinkInformation/net-8.0/System.Numerics.Tensors.json +++ b/xml/SourceLinkInformation/net-8.0/System.Numerics.Tensors.json @@ -1,765 +1,764 @@ { "Assembly": "System.Numerics.Tensors", - "GUID": "A64EE0AE80494B2B836E0887DF3A6E56FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "0EAD762E68DA4025AAC2A3D13A45289FFFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Abs(System.ReadOnlySpan{System.Single},System.Span{System.Single})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L30C13-L30C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L30C13-L30C72" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Add(System.ReadOnlySpan{System.Single},System.ReadOnlySpan{System.Single},System.Span{System.Single})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L49C13-L49C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L49C13-L49C74" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Add(System.ReadOnlySpan{System.Single},System.Single,System.Span{System.Single})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L66C13-L66C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L66C13-L66C76" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.AddMultiply(System.ReadOnlySpan{System.Single},System.ReadOnlySpan{System.Single},System.ReadOnlySpan{System.Single},System.Span{System.Single})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L87C13-L87C98" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L87C13-L87C98" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.AddMultiply(System.ReadOnlySpan{System.Single},System.ReadOnlySpan{System.Single},System.Single,System.Span{System.Single})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L107C13-L107C100" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L107C13-L107C100" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.AddMultiply(System.ReadOnlySpan{System.Single},System.Single,System.ReadOnlySpan{System.Single},System.Span{System.Single})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L127C13-L127C100" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L127C13-L127C100" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Cosh(System.ReadOnlySpan{System.Single},System.Span{System.Single})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L151C13-L151C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L151C13-L151C68" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.CosineSimilarity(System.ReadOnlySpan{System.Single},System.ReadOnlySpan{System.Single})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L173C13-L173C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L173C13-L173C39" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Distance(System.ReadOnlySpan{System.Single},System.ReadOnlySpan{System.Single})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L201C13-L206C100" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L201C13-L206C100" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Divide(System.ReadOnlySpan{System.Single},System.ReadOnlySpan{System.Single},System.Span{System.Single})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L226C13-L226C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L226C13-L226C77" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Divide(System.ReadOnlySpan{System.Single},System.Single,System.Span{System.Single})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L243C13-L243C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L243C13-L243C79" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Dot(System.ReadOnlySpan{System.Single},System.ReadOnlySpan{System.Single})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L269C13-L269C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L269C13-L269C73" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Exp(System.ReadOnlySpan{System.Single},System.Span{System.Single})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L290C13-L290C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L290C13-L290C67" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.IndexOfMax(System.ReadOnlySpan{System.Single})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L306C13-L306C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L306C13-L306C67" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.IndexOfMaxMagnitude(System.ReadOnlySpan{System.Single})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L323C13-L323C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L323C13-L323C76" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.IndexOfMin(System.ReadOnlySpan{System.Single})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L339C13-L339C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L339C13-L339C67" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.IndexOfMinMagnitude(System.ReadOnlySpan{System.Single})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L356C13-L356C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L356C13-L356C76" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Log(System.ReadOnlySpan{System.Single},System.Span{System.Single})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L379C13-L379C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L379C13-L379C67" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Log2(System.ReadOnlySpan{System.Single},System.Span{System.Single})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L402C13-L402C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L402C13-L402C68" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Max(System.ReadOnlySpan{System.Single})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L419C13-L419C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L419C13-L419C46" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Max(System.ReadOnlySpan{System.Single},System.ReadOnlySpan{System.Single},System.Span{System.Single})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L443C13-L443C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L443C13-L443C86" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.MaxMagnitude(System.ReadOnlySpan{System.Single})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L461C13-L461C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L461C13-L461C55" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.MaxMagnitude(System.ReadOnlySpan{System.Single},System.ReadOnlySpan{System.Single},System.Span{System.Single})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L479C13-L479C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L479C13-L479C95" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Min(System.ReadOnlySpan{System.Single})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L496C13-L496C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L496C13-L496C46" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Min(System.ReadOnlySpan{System.Single},System.ReadOnlySpan{System.Single},System.Span{System.Single})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L520C13-L520C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L520C13-L520C86" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.MinMagnitude(System.ReadOnlySpan{System.Single})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L538C13-L538C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L538C13-L538C55" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.MinMagnitude(System.ReadOnlySpan{System.Single},System.ReadOnlySpan{System.Single},System.Span{System.Single})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L561C13-L561C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L561C13-L561C95" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Multiply(System.ReadOnlySpan{System.Single},System.ReadOnlySpan{System.Single},System.Span{System.Single})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L580C13-L580C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L580C13-L580C79" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Multiply(System.ReadOnlySpan{System.Single},System.Single,System.Span{System.Single})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L598C13-L598C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L598C13-L598C81" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.MultiplyAdd(System.ReadOnlySpan{System.Single},System.ReadOnlySpan{System.Single},System.ReadOnlySpan{System.Single},System.Span{System.Single})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L619C13-L619C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L619C13-L619C94" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.MultiplyAdd(System.ReadOnlySpan{System.Single},System.ReadOnlySpan{System.Single},System.Single,System.Span{System.Single})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L640C13-L640C96" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L640C13-L640C96" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.MultiplyAdd(System.ReadOnlySpan{System.Single},System.Single,System.ReadOnlySpan{System.Single},System.Span{System.Single})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L660C13-L660C96" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L660C13-L660C96" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Negate(System.ReadOnlySpan{System.Single},System.Span{System.Single})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L676C13-L676C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L676C13-L676C70" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Norm(System.ReadOnlySpan{System.Single})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L696C13-L696C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L696C13-L696C40" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Product(System.ReadOnlySpan{System.Single})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L713C13-L718C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L713C13-L718C83" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.ProductOfDifferences(System.ReadOnlySpan{System.Single},System.ReadOnlySpan{System.Single})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L744C13-L749C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L744C13-L749C86" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.ProductOfSums(System.ReadOnlySpan{System.Single},System.ReadOnlySpan{System.Single})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L775C13-L780C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L775C13-L780C81" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Sigmoid(System.ReadOnlySpan{System.Single},System.Span{System.Single})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L800C13-L806C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L800C13-L806C10" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Sinh(System.ReadOnlySpan{System.Single},System.Span{System.Single})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L830C13-L830C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L830C13-L830C68" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.SoftMax(System.ReadOnlySpan{System.Single},System.Span{System.Single})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L850C13-L865C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L850C13-L865C10" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Subtract(System.ReadOnlySpan{System.Single},System.ReadOnlySpan{System.Single},System.Span{System.Single})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L884C13-L884C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L884C13-L884C79" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Subtract(System.ReadOnlySpan{System.Single},System.Single,System.Span{System.Single})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L901C13-L901C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L901C13-L901C81" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Sum(System.ReadOnlySpan{System.Single})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L916C13-L916C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L916C13-L916C70" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.SumOfMagnitudes(System.ReadOnlySpan{System.Single})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L937C13-L937C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L937C13-L937C70" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.SumOfSquares(System.ReadOnlySpan{System.Single})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L958C13-L958C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L958C13-L958C69" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Tanh(System.ReadOnlySpan{System.Single},System.Span{System.Single})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L983C13-L983C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L983C13-L983C68" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Abs``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Abs.cs#L31C13-L31C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Abs.cs#L31C13-L31C71" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Acos``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Acos.cs#L26C13-L26C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Acos.cs#L26C13-L26C67" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Acosh``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Acosh.cs#L26C13-L26C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Acosh.cs#L26C13-L26C68" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.AcosPi``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.AcosPi.cs#L26C13-L26C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.AcosPi.cs#L26C13-L26C69" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Add``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Add.cs#L28C13-L28C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Add.cs#L28C13-L28C73" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Add``1(System.ReadOnlySpan{``0},``0,System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Add.cs#L46C13-L46C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Add.cs#L46C13-L46C75" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.AddMultiply``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0},System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.AddMultiply.cs#L30C13-L30C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.AddMultiply.cs#L30C13-L30C97" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.AddMultiply``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0},``0,System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.AddMultiply.cs#L51C13-L51C99" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.AddMultiply.cs#L51C13-L51C99" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.AddMultiply``1(System.ReadOnlySpan{``0},``0,System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.AddMultiply.cs#L72C13-L72C99" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.AddMultiply.cs#L72C13-L72C99" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Asin``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Asin.cs#L26C13-L26C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Asin.cs#L26C13-L26C67" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Asinh``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Asinh.cs#L26C13-L26C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Asinh.cs#L26C13-L26C68" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.AsinPi``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.AsinPi.cs#L26C13-L26C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.AsinPi.cs#L26C13-L26C69" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Atan``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Atan.cs#L26C13-L26C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Atan.cs#L26C13-L26C67" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Atan2``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Atan2.cs#L29C13-L29C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Atan2.cs#L29C13-L29C75" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Atan2``1(System.ReadOnlySpan{``0},``0,System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Atan2.cs#L48C13-L48C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Atan2.cs#L48C13-L48C77" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Atan2``1(``0,System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Atan2.cs#L67C13-L67C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Atan2.cs#L67C13-L67C77" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Atan2Pi``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Atan2Pi.cs#L29C13-L29C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Atan2Pi.cs#L29C13-L29C77" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Atan2Pi``1(System.ReadOnlySpan{``0},``0,System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Atan2Pi.cs#L48C13-L48C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Atan2Pi.cs#L48C13-L48C79" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Atan2Pi``1(``0,System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Atan2Pi.cs#L67C13-L67C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Atan2Pi.cs#L67C13-L67C79" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Atanh``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Atanh.cs#L26C13-L26C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Atanh.cs#L26C13-L26C68" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.AtanPi``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.AtanPi.cs#L26C13-L26C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.AtanPi.cs#L26C13-L26C69" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.BitwiseAnd``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.BitwiseAnd.cs#L25C13-L25C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.BitwiseAnd.cs#L25C13-L25C80" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.BitwiseAnd``1(System.ReadOnlySpan{``0},``0,System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.BitwiseAnd.cs#L40C13-L40C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.BitwiseAnd.cs#L40C13-L40C82" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.BitwiseOr``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.BitwiseOr.cs#L25C13-L25C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.BitwiseOr.cs#L25C13-L25C79" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.BitwiseOr``1(System.ReadOnlySpan{``0},``0,System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.BitwiseOr.cs#L40C13-L40C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.BitwiseOr.cs#L40C13-L40C81" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Cbrt``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Cbrt.cs#L23C13-L23C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Cbrt.cs#L23C13-L23C67" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Ceiling``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Ceiling.cs#L23C13-L23C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Ceiling.cs#L23C13-L23C70" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.ConvertChecked``2(System.ReadOnlySpan{``0},System.Span{``1})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.ConvertChecked.cs#L26C13-L30C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.ConvertChecked.cs#L26C13-L30C10" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.ConvertSaturating``2(System.ReadOnlySpan{``0},System.Span{``1})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.ConvertSaturating.cs#L26C13-L30C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.ConvertSaturating.cs#L26C13-L30C10" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.ConvertTruncating``2(System.ReadOnlySpan{``0},System.Span{``1})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.ConvertTruncating.cs#L26C13-L101C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.ConvertTruncating.cs#L26C13-L101C10" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.CopySign``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.CopySign.cs#L25C13-L25C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.CopySign.cs#L25C13-L25C81" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.CopySign``1(System.ReadOnlySpan{``0},``0,System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.CopySign.cs#L40C13-L40C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.CopySign.cs#L40C13-L40C83" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Cos``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Cos.cs#L30C13-L30C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Cos.cs#L30C13-L30C66" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Cosh``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Cosh.cs#L34C13-L34C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Cosh.cs#L34C13-L34C67" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.CosineSimilarity``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.CosineSimilarity.cs#L32C13-L32C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.CosineSimilarity.cs#L32C13-L32C39" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.CosPi``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.CosPi.cs#L30C13-L30C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.CosPi.cs#L30C13-L30C68" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.DegreesToRadians``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.DegreesToRadians.cs#L22C13-L22C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.DegreesToRadians.cs#L22C13-L22C79" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Distance``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Distance.cs#L37C13-L42C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Distance.cs#L37C13-L42C91" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Divide``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Divide.cs#L29C13-L29C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Divide.cs#L29C13-L29C76" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Divide``1(System.ReadOnlySpan{``0},``0,System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Divide.cs#L48C13-L48C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Divide.cs#L48C13-L48C78" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Divide``1(``0,System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Divide.cs#L67C13-L67C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Divide.cs#L67C13-L67C78" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Dot``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Dot.cs#L33C13-L33C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Dot.cs#L33C13-L33C68" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Exp``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Exp.cs#L31C13-L31C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Exp.cs#L31C13-L31C66" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Exp10``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Exp10.cs#L26C13-L26C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Exp10.cs#L26C13-L26C68" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Exp10M1``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Exp10M1.cs#L26C13-L26C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Exp10M1.cs#L26C13-L26C70" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Exp2``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Exp2.cs#L26C13-L26C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Exp2.cs#L26C13-L26C67" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Exp2M1``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Exp2M1.cs#L26C13-L26C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Exp2M1.cs#L26C13-L26C69" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.ExpM1``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.ExpM1.cs#L26C13-L26C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.ExpM1.cs#L26C13-L26C68" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Floor``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Floor.cs#L23C13-L23C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Floor.cs#L23C13-L23C68" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.FusedMultiplyAdd``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0},System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.FusedMultiplyAdd.cs#L39C13-L39C98" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.FusedMultiplyAdd.cs#L39C13-L39C98" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.FusedMultiplyAdd``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0},``0,System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.FusedMultiplyAdd.cs#L67C13-L67C100" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.FusedMultiplyAdd.cs#L67C13-L67C100" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.FusedMultiplyAdd``1(System.ReadOnlySpan{``0},``0,System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.FusedMultiplyAdd.cs#L94C13-L94C100" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.FusedMultiplyAdd.cs#L94C13-L94C100" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.ConvertToHalf(System.ReadOnlySpan{System.Single},System.Span{System.Half})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Half.cs#L24C13-L24C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Half.cs#L24C13-L24C51" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.ConvertToSingle(System.ReadOnlySpan{System.Half},System.Span{System.Single})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Half.cs#L42C13-L42C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Half.cs#L42C13-L42C51" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Hypot``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Hypot.cs#L25C13-L25C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Hypot.cs#L25C13-L25C75" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Ieee754Remainder``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Ieee754Remainder.cs#L25C13-L25C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Ieee754Remainder.cs#L25C13-L25C86" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Ieee754Remainder``1(System.ReadOnlySpan{``0},``0,System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Ieee754Remainder.cs#L41C13-L41C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Ieee754Remainder.cs#L41C13-L41C88" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Ieee754Remainder``1(``0,System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Ieee754Remainder.cs#L56C13-L56C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Ieee754Remainder.cs#L56C13-L56C88" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.ILogB``1(System.ReadOnlySpan{``0},System.Span{System.Int32})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.ILogB.cs#L23C13-L32C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.ILogB.cs#L23C13-L32C10" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.IndexOfMax``1(System.ReadOnlySpan{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.IndexOfMax.cs#L31C13-L31C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.IndexOfMax.cs#L31C13-L31C59" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.IndexOfMaxMagnitude``1(System.ReadOnlySpan{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.IndexOfMaxMagnitude.cs#L27C13-L27C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.IndexOfMaxMagnitude.cs#L27C13-L27C68" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.IndexOfMin``1(System.ReadOnlySpan{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.IndexOfMin.cs#L26C13-L26C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.IndexOfMin.cs#L26C13-L26C59" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.IndexOfMinMagnitude``1(System.ReadOnlySpan{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.IndexOfMinMagnitude.cs#L27C13-L27C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.IndexOfMinMagnitude.cs#L27C13-L27C68" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.LeadingZeroCount``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.LeadingZeroCount.cs#L28C13-L28C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.LeadingZeroCount.cs#L28C13-L28C79" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Lerp``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0},System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Lerp.cs#L30C13-L30C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Lerp.cs#L30C13-L30C86" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Lerp``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0},``0,System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Lerp.cs#L51C13-L51C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Lerp.cs#L51C13-L51C88" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Lerp``1(System.ReadOnlySpan{``0},``0,System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Lerp.cs#L72C13-L72C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Lerp.cs#L72C13-L72C88" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Log``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Log.cs#L33C13-L33C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Log.cs#L33C13-L33C66" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Log``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Log.cs#L54C13-L54C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Log.cs#L54C13-L54C77" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Log``1(System.ReadOnlySpan{``0},``0,System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Log.cs#L73C13-L73C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Log.cs#L73C13-L73C79" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Log10``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Log10.cs#L32C13-L32C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Log10.cs#L32C13-L32C68" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Log10P1``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Log10P1.cs#L32C13-L32C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Log10P1.cs#L32C13-L32C70" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Log2``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Log2.cs#L33C13-L33C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Log2.cs#L33C13-L33C67" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Log2P1``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Log2P1.cs#L32C13-L32C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Log2P1.cs#L32C13-L32C69" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.LogP1``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.LogP1.cs#L32C13-L32C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.LogP1.cs#L32C13-L32C68" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Max``1(System.ReadOnlySpan{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Max.cs#L29C13-L29C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Max.cs#L29C13-L29C45" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Max``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Max.cs#L54C13-L54C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Max.cs#L54C13-L54C85" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Max``1(System.ReadOnlySpan{``0},``0,System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Max.cs#L77C13-L77C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Max.cs#L77C13-L77C87" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.MaxMagnitude``1(System.ReadOnlySpan{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.MaxMagnitude.cs#L28C13-L28C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.MaxMagnitude.cs#L28C13-L28C54" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.MaxMagnitude``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.MaxMagnitude.cs#L47C13-L47C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.MaxMagnitude.cs#L47C13-L47C94" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.MaxMagnitude``1(System.ReadOnlySpan{``0},``0,System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.MaxMagnitude.cs#L64C13-L64C96" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.MaxMagnitude.cs#L64C13-L64C96" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Min``1(System.ReadOnlySpan{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.MaxMagnitude.cs#L82C13-L82C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.MaxMagnitude.cs#L82C13-L82C45" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Min``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Min.cs#L35C13-L35C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Min.cs#L35C13-L35C85" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Min``1(System.ReadOnlySpan{``0},``0,System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Min.cs#L58C13-L58C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Min.cs#L58C13-L58C87" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.MinMagnitude``1(System.ReadOnlySpan{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.MinMagnitude.cs#L28C13-L28C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.MinMagnitude.cs#L28C13-L28C54" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.MinMagnitude``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.MinMagnitude.cs#L52C13-L52C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.MinMagnitude.cs#L52C13-L52C94" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.MinMagnitude``1(System.ReadOnlySpan{``0},``0,System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.MinMagnitude.cs#L74C13-L74C96" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.MinMagnitude.cs#L74C13-L74C96" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Multiply``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Multiply.cs#L28C13-L28C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Multiply.cs#L28C13-L28C78" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Multiply``1(System.ReadOnlySpan{``0},``0,System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Multiply.cs#L47C13-L47C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Multiply.cs#L47C13-L47C80" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.MultiplyAdd``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0},System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.MultiplyAdd.cs#L30C13-L30C93" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.MultiplyAdd.cs#L30C13-L30C93" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.MultiplyAdd``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0},``0,System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.MultiplyAdd.cs#L52C13-L52C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.MultiplyAdd.cs#L52C13-L52C95" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.MultiplyAdd``1(System.ReadOnlySpan{``0},``0,System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.MultiplyAdd.cs#L73C13-L73C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.MultiplyAdd.cs#L73C13-L73C95" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.MultiplyAddEstimate``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0},System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.MultiplyAddEstimate.cs#L37C13-L37C101" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.MultiplyAddEstimate.cs#L37C13-L37C101" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.MultiplyAddEstimate``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0},``0,System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.MultiplyAddEstimate.cs#L63C13-L63C103" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.MultiplyAddEstimate.cs#L63C13-L63C103" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.MultiplyAddEstimate``1(System.ReadOnlySpan{``0},``0,System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.MultiplyAddEstimate.cs#L88C13-L88C103" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.MultiplyAddEstimate.cs#L88C13-L88C103" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Negate``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Negate.cs#L25C13-L25C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Negate.cs#L25C13-L25C69" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Norm``1(System.ReadOnlySpan{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Norm.cs#L27C13-L27C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Norm.cs#L27C13-L27C36" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.OnesComplement``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.OnesComplement.cs#L22C13-L22C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.OnesComplement.cs#L22C13-L22C77" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.PopCount``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.PopCount.cs#L28C13-L28C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.PopCount.cs#L28C13-L28C71" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Pow``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Pow.cs#L26C13-L26C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Pow.cs#L26C13-L26C73" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Pow``1(System.ReadOnlySpan{``0},``0,System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Pow.cs#L41C13-L41C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Pow.cs#L41C13-L41C75" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Pow``1(``0,System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Pow.cs#L56C13-L56C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Pow.cs#L56C13-L56C75" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Product``1(System.ReadOnlySpan{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Product.cs#L24C13-L29C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Product.cs#L24C13-L29C78" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.ProductOfDifferences``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Product.cs#L56C13-L61C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Product.cs#L56C13-L61C81" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.ProductOfSums``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Product.cs#L88C13-L93C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Product.cs#L88C13-L93C76" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.RadiansToDegrees``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.RadiansToDegrees.cs#L22C13-L22C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.RadiansToDegrees.cs#L22C13-L22C79" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Reciprocal``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Reciprocal.cs#L25C13-L25C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Reciprocal.cs#L25C13-L25C73" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.ReciprocalEstimate``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Reciprocal.cs#L40C13-L40C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Reciprocal.cs#L40C13-L40C81" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.ReciprocalSqrt``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Reciprocal.cs#L55C13-L55C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Reciprocal.cs#L55C13-L55C77" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.ReciprocalSqrtEstimate``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Reciprocal.cs#L70C13-L70C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Reciprocal.cs#L70C13-L70C85" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.RootN``1(System.ReadOnlySpan{``0},System.Int32,System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.RootN.cs#L24C13-L24C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.RootN.cs#L24C13-L24C72" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.RotateLeft``1(System.ReadOnlySpan{``0},System.Int32,System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Rotate.cs#L25C13-L25C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Rotate.cs#L25C13-L25C88" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.RotateRight``1(System.ReadOnlySpan{``0},System.Int32,System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Rotate.cs#L40C13-L40C89" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Rotate.cs#L40C13-L40C89" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Round``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Round.cs#L26C13-L26C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Round.cs#L26C13-L26C74" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Round``1(System.ReadOnlySpan{``0},System.MidpointRounding,System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Round.cs#L45C21-L65C136" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Round.cs#L16707566C0-L65C136" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Round``1(System.ReadOnlySpan{``0},System.Int32,System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Round.cs#L81C13-L81C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Round.cs#L81C13-L81C67" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Round``1(System.ReadOnlySpan{``0},System.Int32,System.MidpointRounding,System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Round.cs#L100C13-L157C136" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Round.cs#L100C13-L157C136" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.ScaleB``1(System.ReadOnlySpan{``0},System.Int32,System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.ScaleB.cs#L23C13-L23C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.ScaleB.cs#L23C13-L23C73" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.ShiftLeft``1(System.ReadOnlySpan{``0},System.Int32,System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.ShiftLeft.cs#L23C13-L23C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.ShiftLeft.cs#L23C13-L23C86" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.ShiftRightArithmetic``1(System.ReadOnlySpan{``0},System.Int32,System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.ShiftLeft.cs#L38C13-L38C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.ShiftLeft.cs#L38C13-L38C97" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.ShiftRightLogical``1(System.ReadOnlySpan{``0},System.Int32,System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.ShiftLeft.cs#L53C13-L53C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.ShiftLeft.cs#L53C13-L53C94" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Sigmoid``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Sigmoid.cs#L28C13-L34C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Sigmoid.cs#L28C13-L34C10" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Sin``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Sin.cs#L30C13-L30C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Sin.cs#L30C13-L30C66" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.SinCos``1(System.ReadOnlySpan{``0},System.Span{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.SinCos.cs#L27C13-L27C99" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.SinCos.cs#L27C13-L27C99" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.SinCosPi``1(System.ReadOnlySpan{``0},System.Span{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.SinCosPi.cs#L27C13-L27C105" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.SinCosPi.cs#L27C13-L27C105" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Sinh``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Sinh.cs#L34C13-L34C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Sinh.cs#L34C13-L34C67" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.SinPi``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.SinPi.cs#L30C13-L30C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.SinPi.cs#L30C13-L30C68" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.SoftMax``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.SoftMax.cs#L27C13-L42C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.SoftMax.cs#L27C13-L42C10" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Sqrt``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Sqrt.cs#L22C13-L22C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Sqrt.cs#L22C13-L22C67" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Subtract``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Subtract.cs#L28C13-L28C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Subtract.cs#L28C13-L28C78" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Subtract``1(System.ReadOnlySpan{``0},``0,System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Subtract.cs#L46C13-L46C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Subtract.cs#L46C13-L46C80" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Subtract``1(``0,System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Subtract.cs#L64C13-L64C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Subtract.cs#L64C13-L64C80" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Sum``1(System.ReadOnlySpan{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Sum.cs#L24C13-L24C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Sum.cs#L24C13-L24C65" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.SumOfMagnitudes``1(System.ReadOnlySpan{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Sum.cs#L47C13-L47C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Sum.cs#L47C13-L47C65" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.SumOfSquares``1(System.ReadOnlySpan{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Sum.cs#L69C13-L69C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Sum.cs#L69C13-L69C64" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Tan``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Tan.cs#L30C13-L30C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Tan.cs#L30C13-L30C66" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Tanh``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Tanh.cs#L34C13-L34C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Tanh.cs#L34C13-L34C67" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.TanPi``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.TanPi.cs#L29C13-L29C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.TanPi.cs#L29C13-L29C68" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.TrailingZeroCount``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.TrailingZeroCount.cs#L27C13-L27C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.TrailingZeroCount.cs#L27C13-L27C80" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Truncate``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Truncate.cs#L25C13-L25C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Truncate.cs#L25C13-L25C71" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Xor``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Xor.cs#L25C13-L25C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Xor.cs#L25C13-L25C73" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Xor``1(System.ReadOnlySpan{``0},``0,System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Xor.cs#L40C13-L40C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Xor.cs#L40C13-L40C75" } ], "DocsId": "T:System.Numerics.Tensors.TensorPrimitives", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/System.Reflection.Context.json b/xml/SourceLinkInformation/net-8.0/System.Reflection.Context.json index d46439e0aac..01d78685ee5 100644 --- a/xml/SourceLinkInformation/net-8.0/System.Reflection.Context.json +++ b/xml/SourceLinkInformation/net-8.0/System.Reflection.Context.json @@ -1,49 +1,48 @@ { "Assembly": "System.Reflection.Context", - "GUID": "92CCFE8978BC4A18953224CD93FA3E40FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "29BBFEE257B84F79B07CB815A639E697FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:System.Reflection.Context.CustomReflectionContext.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Reflection.Context/src/System/Reflection/Context/CustomReflectionContext.cs#L21C47-L21C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Reflection.Context/src/System/Reflection/Context/CustomReflectionContext.cs#L21C47-L21C88" }, { "DocsId": "M:System.Reflection.Context.CustomReflectionContext.#ctor(System.Reflection.ReflectionContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Reflection.Context/src/System/Reflection/Context/CustomReflectionContext.cs#L23C9-L32C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Reflection.Context/src/System/Reflection/Context/CustomReflectionContext.cs#L23C9-L32C10" }, { "DocsId": "M:System.Reflection.Context.CustomReflectionContext.MapAssembly(System.Reflection.Assembly)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Reflection.Context/src/System/Reflection/Context/CustomReflectionContext.cs#L36C13-L41C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Reflection.Context/src/System/Reflection/Context/CustomReflectionContext.cs#L36C13-L41C65" }, { "DocsId": "M:System.Reflection.Context.CustomReflectionContext.MapType(System.Reflection.TypeInfo)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Reflection.Context/src/System/Reflection/Context/CustomReflectionContext.cs#L46C13-L51C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Reflection.Context/src/System/Reflection/Context/CustomReflectionContext.cs#L46C13-L51C57" }, { "DocsId": "M:System.Reflection.Context.CustomReflectionContext.GetCustomAttributes(System.Reflection.MemberInfo,System.Collections.Generic.IEnumerable{System.Object})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Reflection.Context/src/System/Reflection/Context/CustomReflectionContext.cs#L56C13-L56C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Reflection.Context/src/System/Reflection/Context/CustomReflectionContext.cs#L56C13-L56C39" }, { "DocsId": "M:System.Reflection.Context.CustomReflectionContext.GetCustomAttributes(System.Reflection.ParameterInfo,System.Collections.Generic.IEnumerable{System.Object})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Reflection.Context/src/System/Reflection/Context/CustomReflectionContext.cs#L61C13-L61C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Reflection.Context/src/System/Reflection/Context/CustomReflectionContext.cs#L61C13-L61C39" }, { "DocsId": "M:System.Reflection.Context.CustomReflectionContext.AddProperties(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Reflection.Context/src/System/Reflection/Context/CustomReflectionContext.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Reflection.Context/src/System/Reflection/Context/CustomReflectionContext.cs" }, { "DocsId": "M:System.Reflection.Context.CustomReflectionContext.CreateProperty(System.Type,System.String,System.Func{System.Object,System.Object},System.Action{System.Object,System.Object})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Reflection.Context/src/System/Reflection/Context/CustomReflectionContext.cs#L77C13-L85C23" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Reflection.Context/src/System/Reflection/Context/CustomReflectionContext.cs#L77C13-L85C23" }, { "DocsId": "M:System.Reflection.Context.CustomReflectionContext.CreateProperty(System.Type,System.String,System.Func{System.Object,System.Object},System.Action{System.Object,System.Object},System.Collections.Generic.IEnumerable{System.Attribute},System.Collections.Generic.IEnumerable{System.Attribute},System.Collections.Generic.IEnumerable{System.Attribute})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Reflection.Context/src/System/Reflection/Context/CustomReflectionContext.cs#L97C13-L105C23" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Reflection.Context/src/System/Reflection/Context/CustomReflectionContext.cs#L97C13-L105C23" } ], "DocsId": "T:System.Reflection.Context.CustomReflectionContext", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Reflection.Context/src/System/Reflection/Context/CustomReflectionContext.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Reflection.Context/src/System/Reflection/Context/CustomReflectionContext.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/System.Reflection.MetadataLoadContext.json b/xml/SourceLinkInformation/net-8.0/System.Reflection.MetadataLoadContext.json index 61cea06f26a..9c9aa871ec4 100644 --- a/xml/SourceLinkInformation/net-8.0/System.Reflection.MetadataLoadContext.json +++ b/xml/SourceLinkInformation/net-8.0/System.Reflection.MetadataLoadContext.json @@ -1,77 +1,76 @@ { "Assembly": "System.Reflection.MetadataLoadContext", - "GUID": "8B523B81656D403EA138473ABA7A07FDFFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "FB10995F9F4E418296572E76687C07F7FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:System.Reflection.MetadataAssemblyResolver.Resolve(System.Reflection.MetadataLoadContext,System.Reflection.AssemblyName)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Reflection.MetadataLoadContext/src/System/Reflection/MetadataAssemblyResolver.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Reflection.MetadataLoadContext/src/System/Reflection/MetadataAssemblyResolver.cs" }, { "DocsId": "M:System.Reflection.MetadataAssemblyResolver.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Reflection.MetadataLoadContext/src/System/Reflection/MetadataAssemblyResolver.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Reflection.MetadataLoadContext/src/System/Reflection/MetadataAssemblyResolver.cs" } ], "DocsId": "T:System.Reflection.MetadataAssemblyResolver", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Reflection.MetadataLoadContext/src/System/Reflection/MetadataAssemblyResolver.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Reflection.MetadataLoadContext/src/System/Reflection/MetadataAssemblyResolver.cs" }, { "Members": [ { "DocsId": "M:System.Reflection.MetadataLoadContext.#ctor(System.Reflection.MetadataAssemblyResolver,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Reflection.MetadataLoadContext/src/System/Reflection/MetadataLoadContext.Disposing.cs#L11C9-L121C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Reflection.MetadataLoadContext/src/System/Reflection/MetadataLoadContext.Disposing.cs#L11C9-L121C10" }, { "DocsId": "M:System.Reflection.MetadataLoadContext.LoadFromAssemblyPath(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Reflection.MetadataLoadContext/src/System/Reflection/MetadataLoadContext.Apis.cs#L130C13-L135C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Reflection.MetadataLoadContext/src/System/Reflection/MetadataLoadContext.Apis.cs#L130C13-L135C68" }, { "DocsId": "M:System.Reflection.MetadataLoadContext.LoadFromByteArray(System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Reflection.MetadataLoadContext/src/System/Reflection/MetadataLoadContext.Apis.cs#L145C13-L150C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Reflection.MetadataLoadContext/src/System/Reflection/MetadataLoadContext.Apis.cs#L145C13-L150C67" }, { "DocsId": "M:System.Reflection.MetadataLoadContext.LoadFromStream(System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Reflection.MetadataLoadContext/src/System/Reflection/MetadataLoadContext.Apis.cs#L163C13-L169C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Reflection.MetadataLoadContext/src/System/Reflection/MetadataLoadContext.Apis.cs#L163C13-L169C49" }, { "DocsId": "M:System.Reflection.MetadataLoadContext.LoadFromAssemblyName(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Reflection.MetadataLoadContext/src/System/Reflection/MetadataLoadContext.Apis.cs#L181C13-L188C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Reflection.MetadataLoadContext/src/System/Reflection/MetadataLoadContext.Apis.cs#L181C13-L188C45" }, { "DocsId": "M:System.Reflection.MetadataLoadContext.LoadFromAssemblyName(System.Reflection.AssemblyName)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Reflection.MetadataLoadContext/src/System/Reflection/MetadataLoadContext.Apis.cs#L200C13-L206C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Reflection.MetadataLoadContext/src/System/Reflection/MetadataLoadContext.Apis.cs#L200C13-L206C45" }, { "DocsId": "M:System.Reflection.MetadataLoadContext.GetAssemblies", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Reflection.MetadataLoadContext/src/System/Reflection/MetadataLoadContext.Apis.cs#L265C13-L268C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Reflection.MetadataLoadContext/src/System/Reflection/MetadataLoadContext.Apis.cs#L265C13-L268C45" }, { "DocsId": "M:System.Reflection.MetadataLoadContext.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Reflection.MetadataLoadContext/src/System/Reflection/MetadataLoadContext.Apis.cs#L280C13-L282C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Reflection.MetadataLoadContext/src/System/Reflection/MetadataLoadContext.Apis.cs#L280C13-L282C10" }, { "DocsId": "P:System.Reflection.MetadataLoadContext.CoreAssembly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Reflection.MetadataLoadContext/src/System/Reflection/MetadataLoadContext.Apis.cs#L253C17-L256C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Reflection.MetadataLoadContext/src/System/Reflection/MetadataLoadContext.Apis.cs#L253C17-L256C38" } ], "DocsId": "T:System.Reflection.MetadataLoadContext", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Reflection.MetadataLoadContext/src/System/Reflection/MetadataLoadContext.Disposing.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Reflection.MetadataLoadContext/src/System/Reflection/MetadataLoadContext.Disposing.cs" }, { "Members": [ { "DocsId": "M:System.Reflection.PathAssemblyResolver.#ctor(System.Collections.Generic.IEnumerable{System.String})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Reflection.MetadataLoadContext/src/System/Reflection/PathAssemblyResolver.cs#L25C9-L53C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Reflection.MetadataLoadContext/src/System/Reflection/PathAssemblyResolver.cs#L25C9-L53C10" }, { "DocsId": "M:System.Reflection.PathAssemblyResolver.Resolve(System.Reflection.MetadataLoadContext,System.Reflection.AssemblyName)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Reflection.MetadataLoadContext/src/System/Reflection/PathAssemblyResolver.cs#L58C13-L96C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Reflection.MetadataLoadContext/src/System/Reflection/PathAssemblyResolver.cs#L58C13-L96C65" } ], "DocsId": "T:System.Reflection.PathAssemblyResolver", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Reflection.MetadataLoadContext/src/System/Reflection/PathAssemblyResolver.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Reflection.MetadataLoadContext/src/System/Reflection/PathAssemblyResolver.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/System.Resources.Extensions.json b/xml/SourceLinkInformation/net-8.0/System.Resources.Extensions.json index de3d5959563..7dff74ed821 100644 --- a/xml/SourceLinkInformation/net-8.0/System.Resources.Extensions.json +++ b/xml/SourceLinkInformation/net-8.0/System.Resources.Extensions.json @@ -1,95 +1,94 @@ { "Assembly": "System.Resources.Extensions", - "GUID": "0DFE97416ED74C9898A9854A0D3D4F78FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "2A16508BE2BB415DB6FC2A6C00BCF729FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:System.Resources.Extensions.PreserializedResourceWriter.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/Resources/ResourceWriter.cs#L44C9-L59C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/Resources/ResourceWriter.cs#L44C9-L59C10" }, { "DocsId": "M:System.Resources.Extensions.PreserializedResourceWriter.#ctor(System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/Resources/ResourceWriter.cs#L61C9-L81C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/Resources/ResourceWriter.cs#L61C9-L81C10" }, { "DocsId": "M:System.Resources.Extensions.PreserializedResourceWriter.AddResource(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/Resources/ResourceWriter.cs#L88C13-L101C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/Resources/ResourceWriter.cs#L88C13-L101C10" }, { "DocsId": "M:System.Resources.Extensions.PreserializedResourceWriter.AddResource(System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/Resources/ResourceWriter.cs#L108C13-L129C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/Resources/ResourceWriter.cs#L108C13-L129C10" }, { "DocsId": "M:System.Resources.Extensions.PreserializedResourceWriter.AddResource(System.String,System.IO.Stream,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/Resources/ResourceWriter.cs#L137C13-L148C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/Resources/ResourceWriter.cs#L137C13-L148C10" }, { "DocsId": "M:System.Resources.Extensions.PreserializedResourceWriter.AddResource(System.String,System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/Resources/ResourceWriter.cs#L177C13-L190C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/Resources/ResourceWriter.cs#L177C13-L190C10" }, { "DocsId": "M:System.Resources.Extensions.PreserializedResourceWriter.Close", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/Resources/ResourceWriter.cs#L233C13-L234C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/Resources/ResourceWriter.cs#L233C13-L234C10" }, { "DocsId": "M:System.Resources.Extensions.PreserializedResourceWriter.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/Resources/ResourceWriter.cs#L253C13-L254C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/Resources/ResourceWriter.cs#L253C13-L254C10" }, { "DocsId": "M:System.Resources.Extensions.PreserializedResourceWriter.Generate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/Resources/ResourceWriter.cs#L263C13-L434C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/Resources/ResourceWriter.cs#L263C13-L434C10" }, { "DocsId": "M:System.Resources.Extensions.PreserializedResourceWriter.AddResource(System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Resources.Extensions/src/System/Resources/Extensions/PreserializedResourceWriter.cs#L73C13-L119C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Resources.Extensions/src/System/Resources/Extensions/PreserializedResourceWriter.cs#L73C13-L119C10" }, { "DocsId": "M:System.Resources.Extensions.PreserializedResourceWriter.AddTypeConverterResource(System.String,System.Byte[],System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Resources.Extensions/src/System/Resources/Extensions/PreserializedResourceWriter.cs#L130C13-L146C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Resources.Extensions/src/System/Resources/Extensions/PreserializedResourceWriter.cs#L130C13-L146C10" }, { "DocsId": "M:System.Resources.Extensions.PreserializedResourceWriter.AddBinaryFormattedResource(System.String,System.Byte[],System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Resources.Extensions/src/System/Resources/Extensions/PreserializedResourceWriter.cs#L158C13-L179C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Resources.Extensions/src/System/Resources/Extensions/PreserializedResourceWriter.cs#L158C13-L179C10" }, { "DocsId": "M:System.Resources.Extensions.PreserializedResourceWriter.AddActivatorResource(System.String,System.IO.Stream,System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Resources.Extensions/src/System/Resources/Extensions/PreserializedResourceWriter.cs#L191C13-L210C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Resources.Extensions/src/System/Resources/Extensions/PreserializedResourceWriter.cs#L191C13-L210C10" } ], "DocsId": "T:System.Resources.Extensions.PreserializedResourceWriter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Resources.Extensions/src/System/Resources/Extensions/PreserializedResourceWriter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Resources.Extensions/src/System/Resources/Extensions/PreserializedResourceWriter.cs" }, { "Members": [ { "DocsId": "M:System.Resources.Extensions.DeserializingResourceReader.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Private.CoreLib/src/System/Resources/ResourceReader.cs#L93C9-L112C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Private.CoreLib/src/System/Resources/ResourceReader.cs#L93C9-L112C10" }, { "DocsId": "M:System.Resources.Extensions.DeserializingResourceReader.#ctor(System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Private.CoreLib/src/System/Resources/ResourceReader.cs#L114C9-L141C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Private.CoreLib/src/System/Resources/ResourceReader.cs#L114C9-L141C10" }, { "DocsId": "M:System.Resources.Extensions.DeserializingResourceReader.Close", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Private.CoreLib/src/System/Resources/ResourceReader.cs#L147C13-L148C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Private.CoreLib/src/System/Resources/ResourceReader.cs#L147C13-L148C10" }, { "DocsId": "M:System.Resources.Extensions.DeserializingResourceReader.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Private.CoreLib/src/System/Resources/ResourceReader.cs#L152C13-L153C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Private.CoreLib/src/System/Resources/ResourceReader.cs#L152C13-L153C10" }, { "DocsId": "M:System.Resources.Extensions.DeserializingResourceReader.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Private.CoreLib/src/System/Resources/ResourceReader.cs#L235C13-L235C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Private.CoreLib/src/System/Resources/ResourceReader.cs#L235C13-L235C36" }, { "DocsId": "M:System.Resources.Extensions.DeserializingResourceReader.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Private.CoreLib/src/System/Resources/ResourceReader.cs#L240C13-L242C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Private.CoreLib/src/System/Resources/ResourceReader.cs#L240C13-L242C49" } ], "DocsId": "T:System.Resources.Extensions.DeserializingResourceReader", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Resources.Extensions/src/System/Resources/Extensions/DeserializingResourceReader.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Resources.Extensions/src/System/Resources/Extensions/DeserializingResourceReader.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/System.Runtime.Caching.json b/xml/SourceLinkInformation/net-8.0/System.Runtime.Caching.json index 1f4dece2a4f..3f8cb578c20 100644 --- a/xml/SourceLinkInformation/net-8.0/System.Runtime.Caching.json +++ b/xml/SourceLinkInformation/net-8.0/System.Runtime.Caching.json @@ -1,669 +1,668 @@ { "Assembly": "System.Runtime.Caching", - "GUID": "0DAC48E719EC4E7A8D01326BF80DD07BFFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "1A9FFE2A1C6442A58D4C2DB93CF3476CFFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:System.Runtime.Caching.CacheEntryChangeMonitor.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryChangeMonitor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryChangeMonitor.cs" }, { "DocsId": "P:System.Runtime.Caching.CacheEntryChangeMonitor.CacheKeys", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryChangeMonitor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryChangeMonitor.cs" }, { "DocsId": "P:System.Runtime.Caching.CacheEntryChangeMonitor.LastModified", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryChangeMonitor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryChangeMonitor.cs" }, { "DocsId": "P:System.Runtime.Caching.CacheEntryChangeMonitor.RegionName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryChangeMonitor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryChangeMonitor.cs" } ], "DocsId": "T:System.Runtime.Caching.CacheEntryChangeMonitor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryChangeMonitor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryChangeMonitor.cs" }, { "Members": [ { "DocsId": "M:System.Runtime.Caching.CacheEntryRemovedArguments.#ctor(System.Runtime.Caching.ObjectCache,System.Runtime.Caching.CacheEntryRemovedReason,System.Runtime.Caching.CacheItem)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryRemovedArguments.cs#L27C9-L41C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryRemovedArguments.cs#L27C9-L41C10" }, { "DocsId": "P:System.Runtime.Caching.CacheEntryRemovedArguments.CacheItem", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryRemovedArguments.cs#L14C19-L14C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryRemovedArguments.cs#L14C19-L14C37" }, { "DocsId": "P:System.Runtime.Caching.CacheEntryRemovedArguments.RemovedReason", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryRemovedArguments.cs#L19C19-L19C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryRemovedArguments.cs#L19C19-L19C34" }, { "DocsId": "P:System.Runtime.Caching.CacheEntryRemovedArguments.Source", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryRemovedArguments.cs#L24C19-L24C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryRemovedArguments.cs#L24C19-L24C34" } ], "DocsId": "T:System.Runtime.Caching.CacheEntryRemovedArguments", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryRemovedArguments.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryRemovedArguments.cs" }, { "Members": [ { "DocsId": "M:System.Runtime.Caching.CacheEntryRemovedCallback.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryRemovedCallback.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryRemovedCallback.cs" }, { "DocsId": "M:System.Runtime.Caching.CacheEntryRemovedCallback.Invoke(System.Runtime.Caching.CacheEntryRemovedArguments)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryRemovedCallback.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryRemovedCallback.cs" }, { "DocsId": "M:System.Runtime.Caching.CacheEntryRemovedCallback.BeginInvoke(System.Runtime.Caching.CacheEntryRemovedArguments,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryRemovedCallback.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryRemovedCallback.cs" }, { "DocsId": "M:System.Runtime.Caching.CacheEntryRemovedCallback.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryRemovedCallback.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryRemovedCallback.cs" } ], "DocsId": "T:System.Runtime.Caching.CacheEntryRemovedCallback", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryRemovedCallback.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryRemovedCallback.cs" }, { "Members": [ { "DocsId": "F:System.Runtime.Caching.CacheEntryRemovedReason.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryRemovedReason.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryRemovedReason.cs" }, { "DocsId": "F:System.Runtime.Caching.CacheEntryRemovedReason.Removed", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryRemovedReason.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryRemovedReason.cs" }, { "DocsId": "F:System.Runtime.Caching.CacheEntryRemovedReason.Expired", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryRemovedReason.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryRemovedReason.cs" }, { "DocsId": "F:System.Runtime.Caching.CacheEntryRemovedReason.Evicted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryRemovedReason.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryRemovedReason.cs" }, { "DocsId": "F:System.Runtime.Caching.CacheEntryRemovedReason.ChangeMonitorChanged", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryRemovedReason.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryRemovedReason.cs" }, { "DocsId": "F:System.Runtime.Caching.CacheEntryRemovedReason.CacheSpecificEviction", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryRemovedReason.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryRemovedReason.cs" } ], "DocsId": "T:System.Runtime.Caching.CacheEntryRemovedReason", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryRemovedReason.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryRemovedReason.cs" }, { "Members": [ { "DocsId": "M:System.Runtime.Caching.CacheEntryUpdateArguments.#ctor(System.Runtime.Caching.ObjectCache,System.Runtime.Caching.CacheEntryRemovedReason,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryUpdateArguments.cs#L49C9-L64C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryUpdateArguments.cs#L49C9-L64C10" }, { "DocsId": "P:System.Runtime.Caching.CacheEntryUpdateArguments.Key", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryUpdateArguments.cs#L19C19-L19C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryUpdateArguments.cs#L19C19-L19C31" }, { "DocsId": "P:System.Runtime.Caching.CacheEntryUpdateArguments.RemovedReason", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryUpdateArguments.cs#L24C19-L24C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryUpdateArguments.cs#L24C19-L24C34" }, { "DocsId": "P:System.Runtime.Caching.CacheEntryUpdateArguments.RegionName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryUpdateArguments.cs#L29C19-L29C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryUpdateArguments.cs#L29C19-L29C38" }, { "DocsId": "P:System.Runtime.Caching.CacheEntryUpdateArguments.Source", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryUpdateArguments.cs#L34C19-L34C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryUpdateArguments.cs#L34C19-L34C34" }, { "DocsId": "P:System.Runtime.Caching.CacheEntryUpdateArguments.UpdatedCacheItem", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryUpdateArguments.cs#L39C19-L39C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryUpdateArguments.cs#L39C19-L39C44" }, { "DocsId": "P:System.Runtime.Caching.CacheEntryUpdateArguments.UpdatedCacheItemPolicy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryUpdateArguments.cs#L45C19-L45C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryUpdateArguments.cs#L45C19-L45C50" } ], "DocsId": "T:System.Runtime.Caching.CacheEntryUpdateArguments", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryUpdateArguments.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryUpdateArguments.cs" }, { "Members": [ { "DocsId": "M:System.Runtime.Caching.CacheEntryUpdateCallback.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryUpdateCallback.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryUpdateCallback.cs" }, { "DocsId": "M:System.Runtime.Caching.CacheEntryUpdateCallback.Invoke(System.Runtime.Caching.CacheEntryUpdateArguments)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryUpdateCallback.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryUpdateCallback.cs" }, { "DocsId": "M:System.Runtime.Caching.CacheEntryUpdateCallback.BeginInvoke(System.Runtime.Caching.CacheEntryUpdateArguments,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryUpdateCallback.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryUpdateCallback.cs" }, { "DocsId": "M:System.Runtime.Caching.CacheEntryUpdateCallback.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryUpdateCallback.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryUpdateCallback.cs" } ], "DocsId": "T:System.Runtime.Caching.CacheEntryUpdateCallback", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryUpdateCallback.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryUpdateCallback.cs" }, { "Members": [ { "DocsId": "M:System.Runtime.Caching.CacheItem.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheItem.cs#L16C9-L19C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheItem.cs#L16C9-L19C10" }, { "DocsId": "M:System.Runtime.Caching.CacheItem.#ctor(System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheItem.cs#L21C54-L24C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheItem.cs#L21C54-L24C10" }, { "DocsId": "M:System.Runtime.Caching.CacheItem.#ctor(System.String,System.Object,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheItem.cs#L26C73-L29C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheItem.cs#L26C73-L29C10" }, { "DocsId": "P:System.Runtime.Caching.CacheItem.Key", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheItem.cs#L10C29-L10C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheItem.cs#L10C29-L10C33" }, { "DocsId": "P:System.Runtime.Caching.CacheItem.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheItem.cs#L11C31-L11C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheItem.cs#L11C31-L11C35" }, { "DocsId": "P:System.Runtime.Caching.CacheItem.RegionName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheItem.cs#L12C36-L12C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheItem.cs#L12C36-L12C40" } ], "DocsId": "T:System.Runtime.Caching.CacheItem", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheItem.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheItem.cs" }, { "Members": [ { "DocsId": "M:System.Runtime.Caching.CacheItemPolicy.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheItemPolicy.cs#L50C9-L55C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheItemPolicy.cs#L50C9-L55C10" }, { "DocsId": "P:System.Runtime.Caching.CacheItemPolicy.AbsoluteExpiration", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheItemPolicy.cs#L20C19-L20C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheItemPolicy.cs#L20C19-L20C37" }, { "DocsId": "P:System.Runtime.Caching.CacheItemPolicy.ChangeMonitors", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheItemPolicy.cs#L24C60-L24C111" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheItemPolicy.cs#L24C60-L24C111" }, { "DocsId": "P:System.Runtime.Caching.CacheItemPolicy.Priority", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheItemPolicy.cs#L28C19-L28C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheItemPolicy.cs#L28C19-L28C36" }, { "DocsId": "P:System.Runtime.Caching.CacheItemPolicy.RemovedCallback", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheItemPolicy.cs#L34C19-L34C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheItemPolicy.cs#L34C19-L34C43" }, { "DocsId": "P:System.Runtime.Caching.CacheItemPolicy.SlidingExpiration", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheItemPolicy.cs#L40C19-L40C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheItemPolicy.cs#L40C19-L40C37" }, { "DocsId": "P:System.Runtime.Caching.CacheItemPolicy.UpdateCallback", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheItemPolicy.cs#L46C19-L46C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheItemPolicy.cs#L46C19-L46C42" } ], "DocsId": "T:System.Runtime.Caching.CacheItemPolicy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheItemPolicy.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheItemPolicy.cs" }, { "Members": [ { "DocsId": "F:System.Runtime.Caching.CacheItemPriority.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheItemPriority.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheItemPriority.cs" }, { "DocsId": "F:System.Runtime.Caching.CacheItemPriority.Default", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheItemPriority.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheItemPriority.cs" }, { "DocsId": "F:System.Runtime.Caching.CacheItemPriority.NotRemovable", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheItemPriority.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheItemPriority.cs" } ], "DocsId": "T:System.Runtime.Caching.CacheItemPriority", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheItemPriority.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheItemPriority.cs" }, { "Members": [ { "DocsId": "M:System.Runtime.Caching.ChangeMonitor.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ChangeMonitor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ChangeMonitor.cs" }, { "DocsId": "M:System.Runtime.Caching.ChangeMonitor.InitializationComplete", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ChangeMonitor.cs#L142C13-L150C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ChangeMonitor.cs#L142C13-L150C10" }, { "DocsId": "M:System.Runtime.Caching.ChangeMonitor.OnChanged(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ChangeMonitor.cs#L159C13-L167C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ChangeMonitor.cs#L159C13-L167C10" }, { "DocsId": "M:System.Runtime.Caching.ChangeMonitor.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ChangeMonitor.cs#L205C13-L215C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ChangeMonitor.cs#L205C13-L215C10" }, { "DocsId": "M:System.Runtime.Caching.ChangeMonitor.NotifyOnChanged(System.Runtime.Caching.OnChangedCallback)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ChangeMonitor.cs#L224C13-L239C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ChangeMonitor.cs#L224C13-L239C10" }, { "DocsId": "M:System.Runtime.Caching.ChangeMonitor.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ChangeMonitor.cs#L90C9-L90C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ChangeMonitor.cs#L90C9-L90C52" }, { "DocsId": "P:System.Runtime.Caching.ChangeMonitor.HasChanged", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ChangeMonitor.cs#L174C40-L174C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ChangeMonitor.cs#L174C40-L174C63" }, { "DocsId": "P:System.Runtime.Caching.ChangeMonitor.IsDisposed", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ChangeMonitor.cs#L178C40-L178C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ChangeMonitor.cs#L178C40-L178C64" }, { "DocsId": "P:System.Runtime.Caching.ChangeMonitor.UniqueId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ChangeMonitor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ChangeMonitor.cs" } ], "DocsId": "T:System.Runtime.Caching.ChangeMonitor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ChangeMonitor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ChangeMonitor.cs" }, { "Members": [ { "DocsId": "F:System.Runtime.Caching.DefaultCacheCapabilities.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/DefaultCacheCapabilities.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/DefaultCacheCapabilities.cs" }, { "DocsId": "F:System.Runtime.Caching.DefaultCacheCapabilities.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/DefaultCacheCapabilities.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/DefaultCacheCapabilities.cs" }, { "DocsId": "F:System.Runtime.Caching.DefaultCacheCapabilities.InMemoryProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/DefaultCacheCapabilities.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/DefaultCacheCapabilities.cs" }, { "DocsId": "F:System.Runtime.Caching.DefaultCacheCapabilities.OutOfProcessProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/DefaultCacheCapabilities.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/DefaultCacheCapabilities.cs" }, { "DocsId": "F:System.Runtime.Caching.DefaultCacheCapabilities.CacheEntryChangeMonitors", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/DefaultCacheCapabilities.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/DefaultCacheCapabilities.cs" }, { "DocsId": "F:System.Runtime.Caching.DefaultCacheCapabilities.AbsoluteExpirations", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/DefaultCacheCapabilities.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/DefaultCacheCapabilities.cs" }, { "DocsId": "F:System.Runtime.Caching.DefaultCacheCapabilities.SlidingExpirations", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/DefaultCacheCapabilities.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/DefaultCacheCapabilities.cs" }, { "DocsId": "F:System.Runtime.Caching.DefaultCacheCapabilities.CacheEntryUpdateCallback", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/DefaultCacheCapabilities.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/DefaultCacheCapabilities.cs" }, { "DocsId": "F:System.Runtime.Caching.DefaultCacheCapabilities.CacheEntryRemovedCallback", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/DefaultCacheCapabilities.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/DefaultCacheCapabilities.cs" }, { "DocsId": "F:System.Runtime.Caching.DefaultCacheCapabilities.CacheRegions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/DefaultCacheCapabilities.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/DefaultCacheCapabilities.cs" } ], "DocsId": "T:System.Runtime.Caching.DefaultCacheCapabilities", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/DefaultCacheCapabilities.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/DefaultCacheCapabilities.cs" }, { "Members": [ { "DocsId": "M:System.Runtime.Caching.FileChangeMonitor.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/FileChangeMonitor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/FileChangeMonitor.cs" }, { "DocsId": "P:System.Runtime.Caching.FileChangeMonitor.FilePaths", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/FileChangeMonitor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/FileChangeMonitor.cs" }, { "DocsId": "P:System.Runtime.Caching.FileChangeMonitor.LastModified", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/FileChangeMonitor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/FileChangeMonitor.cs" } ], "DocsId": "T:System.Runtime.Caching.FileChangeMonitor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/FileChangeMonitor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/FileChangeMonitor.cs" }, { "Members": [ { "DocsId": "M:System.Runtime.Caching.HostFileChangeMonitor.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/HostFileChangeMonitor.cs#L121C13-L150C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/HostFileChangeMonitor.cs#L121C13-L150C10" }, { "DocsId": "M:System.Runtime.Caching.HostFileChangeMonitor.#ctor(System.Collections.Generic.IList{System.String})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/HostFileChangeMonitor.cs#L160C9-L176C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/HostFileChangeMonitor.cs#L160C9-L176C10" }, { "DocsId": "P:System.Runtime.Caching.HostFileChangeMonitor.FilePaths", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/HostFileChangeMonitor.cs#L156C70-L156C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/HostFileChangeMonitor.cs#L156C70-L156C88" }, { "DocsId": "P:System.Runtime.Caching.HostFileChangeMonitor.UniqueId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/HostFileChangeMonitor.cs#L157C49-L157C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/HostFileChangeMonitor.cs#L157C49-L157C66" }, { "DocsId": "P:System.Runtime.Caching.HostFileChangeMonitor.LastModified", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/HostFileChangeMonitor.cs#L158C61-L158C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/HostFileChangeMonitor.cs#L158C61-L158C82" } ], "DocsId": "T:System.Runtime.Caching.HostFileChangeMonitor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/HostFileChangeMonitor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/HostFileChangeMonitor.cs" }, { "Members": [ { "DocsId": "M:System.Runtime.Caching.MemoryCache.#ctor(System.String,System.Collections.Specialized.NameValueCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L39C9-L362C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L39C9-L362C10" }, { "DocsId": "M:System.Runtime.Caching.MemoryCache.#ctor(System.String,System.Collections.Specialized.NameValueCollection,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L39C9-L384C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L39C9-L384C10" }, { "DocsId": "M:System.Runtime.Caching.MemoryCache.CreateCacheEntryChangeMonitor(System.Collections.Generic.IEnumerable{System.String},System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L445C13-L467C96" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L445C13-L467C96" }, { "DocsId": "M:System.Runtime.Caching.MemoryCache.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L472C13-L494C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L472C13-L494C10" }, { "DocsId": "M:System.Runtime.Caching.MemoryCache.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L536C13-L545C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L536C13-L545C38" }, { "DocsId": "M:System.Runtime.Caching.MemoryCache.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L550C13-L559C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L550C13-L559C38" }, { "DocsId": "M:System.Runtime.Caching.MemoryCache.Trim(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L571C13-L584C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L571C13-L584C28" }, { "DocsId": "M:System.Runtime.Caching.MemoryCache.Contains(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L603C13-L603C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L603C13-L603C59" }, { "DocsId": "M:System.Runtime.Caching.MemoryCache.Add(System.Runtime.Caching.CacheItem,System.Runtime.Caching.CacheItemPolicy)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L608C13-L609C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L608C13-L609C75" }, { "DocsId": "M:System.Runtime.Caching.MemoryCache.AddOrGetExisting(System.String,System.Object,System.DateTimeOffset,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L614C13-L620C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L614C13-L620C65" }, { "DocsId": "M:System.Runtime.Caching.MemoryCache.AddOrGetExisting(System.Runtime.Caching.CacheItem,System.Runtime.Caching.CacheItemPolicy)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L625C13-L630C100" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L625C13-L630C100" }, { "DocsId": "M:System.Runtime.Caching.MemoryCache.AddOrGetExisting(System.String,System.Object,System.Runtime.Caching.CacheItemPolicy,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L635C13-L639C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L635C13-L639C65" }, { "DocsId": "M:System.Runtime.Caching.MemoryCache.Get(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L644C13-L644C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L644C13-L644C49" }, { "DocsId": "M:System.Runtime.Caching.MemoryCache.GetCacheItem(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L649C13-L650C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L649C13-L650C71" }, { "DocsId": "M:System.Runtime.Caching.MemoryCache.Set(System.String,System.Object,System.DateTimeOffset,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L655C13-L662C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L655C13-L662C10" }, { "DocsId": "M:System.Runtime.Caching.MemoryCache.Set(System.Runtime.Caching.CacheItem,System.Runtime.Caching.CacheItemPolicy)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L666C13-L672C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L666C13-L672C10" }, { "DocsId": "M:System.Runtime.Caching.MemoryCache.Set(System.String,System.Object,System.Runtime.Caching.CacheItemPolicy,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L676C13-L720C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L676C13-L720C10" }, { "DocsId": "M:System.Runtime.Caching.MemoryCache.Remove(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L794C13-L794C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L794C13-L794C77" }, { "DocsId": "M:System.Runtime.Caching.MemoryCache.Remove(System.String,System.Runtime.Caching.CacheEntryRemovedReason,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L799C13-L812C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L799C13-L812C33" }, { "DocsId": "M:System.Runtime.Caching.MemoryCache.GetCount(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L817C13-L831C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L817C13-L831C26" }, { "DocsId": "M:System.Runtime.Caching.MemoryCache.GetLastSize(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L836C13-L841C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L836C13-L841C41" }, { "DocsId": "M:System.Runtime.Caching.MemoryCache.GetValues(System.Collections.Generic.IEnumerable{System.String},System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L846C13-L873C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L846C13-L873C27" }, { "DocsId": "P:System.Runtime.Caching.MemoryCache.CacheMemoryLimit", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L281C17-L281C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L281C17-L281C48" }, { "DocsId": "P:System.Runtime.Caching.MemoryCache.Default", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L289C17-L296C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L289C17-L296C39" }, { "DocsId": "P:System.Runtime.Caching.MemoryCache.DefaultCacheCapabilities", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L304C17-L304C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L304C17-L304C37" }, { "DocsId": "P:System.Runtime.Caching.MemoryCache.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L310C19-L310C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L310C19-L310C32" }, { "DocsId": "P:System.Runtime.Caching.MemoryCache.PhysicalMemoryLimit", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L324C17-L324C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L324C17-L324C51" }, { "DocsId": "P:System.Runtime.Caching.MemoryCache.PollingInterval", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L334C17-L334C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L334C17-L334C47" }, { "DocsId": "P:System.Runtime.Caching.MemoryCache.Item(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L592C17-L592C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L592C17-L592C47" } ], "DocsId": "T:System.Runtime.Caching.MemoryCache", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs" }, { "Members": [ { "DocsId": "M:System.Runtime.Caching.ObjectCache.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs#L52C13-L52C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs#L52C13-L52C86" }, { "DocsId": "M:System.Runtime.Caching.ObjectCache.CreateCacheEntryChangeMonitor(System.Collections.Generic.IEnumerable{System.String},System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs" }, { "DocsId": "M:System.Runtime.Caching.ObjectCache.System#Collections#Generic#IEnumerable>#GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs#L59C13-L59C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs#L59C13-L59C36" }, { "DocsId": "M:System.Runtime.Caching.ObjectCache.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs" }, { "DocsId": "M:System.Runtime.Caching.ObjectCache.Contains(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs" }, { "DocsId": "M:System.Runtime.Caching.ObjectCache.Add(System.String,System.Object,System.DateTimeOffset,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs#L70C13-L70C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs#L70C13-L70C91" }, { "DocsId": "M:System.Runtime.Caching.ObjectCache.Add(System.Runtime.Caching.CacheItem,System.Runtime.Caching.CacheItemPolicy)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs#L75C13-L75C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs#L75C13-L75C61" }, { "DocsId": "M:System.Runtime.Caching.ObjectCache.Add(System.String,System.Object,System.Runtime.Caching.CacheItemPolicy,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs#L80C13-L80C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs#L80C13-L80C79" }, { "DocsId": "M:System.Runtime.Caching.ObjectCache.AddOrGetExisting(System.String,System.Object,System.DateTimeOffset,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs" }, { "DocsId": "M:System.Runtime.Caching.ObjectCache.AddOrGetExisting(System.Runtime.Caching.CacheItem,System.Runtime.Caching.CacheItemPolicy)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs" }, { "DocsId": "M:System.Runtime.Caching.ObjectCache.AddOrGetExisting(System.String,System.Object,System.Runtime.Caching.CacheItemPolicy,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs" }, { "DocsId": "M:System.Runtime.Caching.ObjectCache.Get(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs" }, { "DocsId": "M:System.Runtime.Caching.ObjectCache.GetCacheItem(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs" }, { "DocsId": "M:System.Runtime.Caching.ObjectCache.Set(System.String,System.Object,System.DateTimeOffset,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs" }, { "DocsId": "M:System.Runtime.Caching.ObjectCache.Set(System.Runtime.Caching.CacheItem,System.Runtime.Caching.CacheItemPolicy)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs" }, { "DocsId": "M:System.Runtime.Caching.ObjectCache.Set(System.String,System.Object,System.Runtime.Caching.CacheItemPolicy,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs" }, { "DocsId": "M:System.Runtime.Caching.ObjectCache.GetValues(System.Collections.Generic.IEnumerable{System.String},System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs" }, { "DocsId": "M:System.Runtime.Caching.ObjectCache.GetValues(System.String,System.String[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs#L103C13-L103C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs#L103C13-L103C48" }, { "DocsId": "M:System.Runtime.Caching.ObjectCache.Remove(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs" }, { "DocsId": "M:System.Runtime.Caching.ObjectCache.GetCount(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs" }, { "DocsId": "M:System.Runtime.Caching.ObjectCache.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs" }, { "DocsId": "F:System.Runtime.Caching.ObjectCache.InfiniteAbsoluteExpiration", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs" }, { "DocsId": "F:System.Runtime.Caching.ObjectCache.NoSlidingExpiration", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs" }, { "DocsId": "P:System.Runtime.Caching.ObjectCache.Host", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs#L27C17-L27C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs#L27C17-L27C31" }, { "DocsId": "P:System.Runtime.Caching.ObjectCache.DefaultCacheCapabilities", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs" }, { "DocsId": "P:System.Runtime.Caching.ObjectCache.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs" }, { "DocsId": "P:System.Runtime.Caching.ObjectCache.Item(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs" } ], "DocsId": "T:System.Runtime.Caching.ObjectCache", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs" }, { "Members": [ { "DocsId": "M:System.Runtime.Caching.OnChangedCallback.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/OnChangedCallback.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/OnChangedCallback.cs" }, { "DocsId": "M:System.Runtime.Caching.OnChangedCallback.Invoke(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/OnChangedCallback.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/OnChangedCallback.cs" }, { "DocsId": "M:System.Runtime.Caching.OnChangedCallback.BeginInvoke(System.Object,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/OnChangedCallback.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/OnChangedCallback.cs" }, { "DocsId": "M:System.Runtime.Caching.OnChangedCallback.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/OnChangedCallback.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/OnChangedCallback.cs" } ], "DocsId": "T:System.Runtime.Caching.OnChangedCallback", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/OnChangedCallback.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/OnChangedCallback.cs" }, { "Members": [ { "DocsId": "M:System.Runtime.Caching.Hosting.IApplicationIdentifier.GetApplicationId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/Hosting/IApplicationIdentifier.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/Hosting/IApplicationIdentifier.cs" } ], "DocsId": "T:System.Runtime.Caching.Hosting.IApplicationIdentifier", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/Hosting/IApplicationIdentifier.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/Hosting/IApplicationIdentifier.cs" }, { "Members": [ { "DocsId": "M:System.Runtime.Caching.Hosting.IFileChangeNotificationSystem.StartMonitoring(System.String,System.Runtime.Caching.OnChangedCallback,System.Object@,System.DateTimeOffset@,System.Int64@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/Hosting/IFileChangeNotificationSystem.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/Hosting/IFileChangeNotificationSystem.cs" }, { "DocsId": "M:System.Runtime.Caching.Hosting.IFileChangeNotificationSystem.StopMonitoring(System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/Hosting/IFileChangeNotificationSystem.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/Hosting/IFileChangeNotificationSystem.cs" } ], "DocsId": "T:System.Runtime.Caching.Hosting.IFileChangeNotificationSystem", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/Hosting/IFileChangeNotificationSystem.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/Hosting/IFileChangeNotificationSystem.cs" }, { "Members": [ { "DocsId": "M:System.Runtime.Caching.Hosting.IMemoryCacheManager.UpdateCacheSize(System.Int64,System.Runtime.Caching.MemoryCache)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/Hosting/IMemoryCacheManager.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/Hosting/IMemoryCacheManager.cs" }, { "DocsId": "M:System.Runtime.Caching.Hosting.IMemoryCacheManager.ReleaseCache(System.Runtime.Caching.MemoryCache)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/Hosting/IMemoryCacheManager.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/Hosting/IMemoryCacheManager.cs" } ], "DocsId": "T:System.Runtime.Caching.Hosting.IMemoryCacheManager", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/Hosting/IMemoryCacheManager.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/Hosting/IMemoryCacheManager.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/System.Runtime.Serialization.Schema.json b/xml/SourceLinkInformation/net-8.0/System.Runtime.Serialization.Schema.json index 3ee1f974b19..c6d70c86cda 100644 --- a/xml/SourceLinkInformation/net-8.0/System.Runtime.Serialization.Schema.json +++ b/xml/SourceLinkInformation/net-8.0/System.Runtime.Serialization.Schema.json @@ -1,129 +1,128 @@ { "Assembly": "System.Runtime.Serialization.Schema", - "GUID": "CEAC10671AE94C0FB61D7BFC3158DDF6FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "B802C778641B4B0292D2385ADE46B17FFFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:System.Runtime.Serialization.ISerializationCodeDomSurrogateProvider.ProcessImportedType(System.CodeDom.CodeTypeDeclaration,System.CodeDom.CodeCompileUnit)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/ISerializationCodeDomSurrogateProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/ISerializationCodeDomSurrogateProvider.cs" } ], "DocsId": "T:System.Runtime.Serialization.ISerializationCodeDomSurrogateProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/ISerializationCodeDomSurrogateProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/ISerializationCodeDomSurrogateProvider.cs" }, { "Members": [ { "DocsId": "M:System.Runtime.Serialization.ImportOptions.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/ImportOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/ImportOptions.cs" }, { "DocsId": "P:System.Runtime.Serialization.ImportOptions.CodeProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/ImportOptions.cs#L26C48-L26C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/ImportOptions.cs#L26C48-L26C52" }, { "DocsId": "P:System.Runtime.Serialization.ImportOptions.EnableDataBinding", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/ImportOptions.cs#L31C41-L31C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/ImportOptions.cs#L31C41-L31C45" }, { "DocsId": "P:System.Runtime.Serialization.ImportOptions.DataContractSurrogate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/ImportOptions.cs#L40C73-L40C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/ImportOptions.cs#L40C73-L40C77" }, { "DocsId": "P:System.Runtime.Serialization.ImportOptions.GenerateInternal", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/ImportOptions.cs#L45C40-L45C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/ImportOptions.cs#L45C40-L45C44" }, { "DocsId": "P:System.Runtime.Serialization.ImportOptions.GenerateSerializable", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/ImportOptions.cs#L50C44-L50C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/ImportOptions.cs#L50C44-L50C48" }, { "DocsId": "P:System.Runtime.Serialization.ImportOptions.ImportXmlType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/ImportOptions.cs#L55C37-L55C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/ImportOptions.cs#L55C37-L55C41" }, { "DocsId": "P:System.Runtime.Serialization.ImportOptions.Namespaces", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/ImportOptions.cs#L60C58-L60C106" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/ImportOptions.cs#L60C58-L60C106" }, { "DocsId": "P:System.Runtime.Serialization.ImportOptions.ReferencedCollectionTypes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/ImportOptions.cs#L65C63-L65C110" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/ImportOptions.cs#L65C63-L65C110" }, { "DocsId": "P:System.Runtime.Serialization.ImportOptions.ReferencedTypes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/ImportOptions.cs#L70C53-L70C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/ImportOptions.cs#L70C53-L70C90" } ], "DocsId": "T:System.Runtime.Serialization.ImportOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/ImportOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/ImportOptions.cs" }, { "Members": [ { "DocsId": "M:System.Runtime.Serialization.XsdDataContractImporter.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/XsdDataContractImporter.cs#L42C9-L44C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/XsdDataContractImporter.cs#L42C9-L44C10" }, { "DocsId": "M:System.Runtime.Serialization.XsdDataContractImporter.#ctor(System.CodeDom.CodeCompileUnit)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/XsdDataContractImporter.cs#L50C9-L53C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/XsdDataContractImporter.cs#L50C9-L53C10" }, { "DocsId": "M:System.Runtime.Serialization.XsdDataContractImporter.Import(System.Xml.Schema.XmlSchemaSet)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/XsdDataContractImporter.cs#L81C13-L85C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/XsdDataContractImporter.cs#L81C13-L85C10" }, { "DocsId": "M:System.Runtime.Serialization.XsdDataContractImporter.Import(System.Xml.Schema.XmlSchemaSet,System.Collections.Generic.ICollection{System.Xml.XmlQualifiedName})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/XsdDataContractImporter.cs#L95C13-L102C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/XsdDataContractImporter.cs#L95C13-L102C10" }, { "DocsId": "M:System.Runtime.Serialization.XsdDataContractImporter.Import(System.Xml.Schema.XmlSchemaSet,System.Xml.XmlQualifiedName)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/XsdDataContractImporter.cs#L112C13-L120C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/XsdDataContractImporter.cs#L112C13-L120C10" }, { "DocsId": "M:System.Runtime.Serialization.XsdDataContractImporter.Import(System.Xml.Schema.XmlSchemaSet,System.Xml.Schema.XmlSchemaElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/XsdDataContractImporter.cs#L132C13-L141C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/XsdDataContractImporter.cs#L132C13-L141C36" }, { "DocsId": "M:System.Runtime.Serialization.XsdDataContractImporter.CanImport(System.Xml.Schema.XmlSchemaSet)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/XsdDataContractImporter.cs#L152C13-L155C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/XsdDataContractImporter.cs#L152C13-L155C59" }, { "DocsId": "M:System.Runtime.Serialization.XsdDataContractImporter.CanImport(System.Xml.Schema.XmlSchemaSet,System.Collections.Generic.ICollection{System.Xml.XmlQualifiedName})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/XsdDataContractImporter.cs#L167C13-L173C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/XsdDataContractImporter.cs#L167C13-L173C64" }, { "DocsId": "M:System.Runtime.Serialization.XsdDataContractImporter.CanImport(System.Xml.Schema.XmlSchemaSet,System.Xml.XmlQualifiedName)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/XsdDataContractImporter.cs#L185C13-L191C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/XsdDataContractImporter.cs#L185C13-L191C90" }, { "DocsId": "M:System.Runtime.Serialization.XsdDataContractImporter.CanImport(System.Xml.Schema.XmlSchemaSet,System.Xml.Schema.XmlSchemaElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/XsdDataContractImporter.cs#L203C13-L210C89" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/XsdDataContractImporter.cs#L203C13-L210C89" }, { "DocsId": "M:System.Runtime.Serialization.XsdDataContractImporter.GetCodeTypeReference(System.Xml.XmlQualifiedName)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/XsdDataContractImporter.cs#L221C13-L223C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/XsdDataContractImporter.cs#L221C13-L223C68" }, { "DocsId": "M:System.Runtime.Serialization.XsdDataContractImporter.GetCodeTypeReference(System.Xml.XmlQualifiedName,System.Xml.Schema.XmlSchemaElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/XsdDataContractImporter.cs#L235C13-L241C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/XsdDataContractImporter.cs#L235C13-L241C91" }, { "DocsId": "M:System.Runtime.Serialization.XsdDataContractImporter.GetKnownTypeReferences(System.Xml.XmlQualifiedName)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/XsdDataContractImporter.cs#L268C13-L280C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/XsdDataContractImporter.cs#L268C13-L280C70" }, { "DocsId": "P:System.Runtime.Serialization.XsdDataContractImporter.Options", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/XsdDataContractImporter.cs#L58C41-L58C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/XsdDataContractImporter.cs#L58C41-L58C45" }, { "DocsId": "P:System.Runtime.Serialization.XsdDataContractImporter.CodeCompileUnit", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/XsdDataContractImporter.cs#L63C51-L63C93" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/XsdDataContractImporter.cs#L63C51-L63C93" } ], "DocsId": "T:System.Runtime.Serialization.XsdDataContractImporter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/XsdDataContractImporter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/XsdDataContractImporter.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/System.Security.Cryptography.Cose.json b/xml/SourceLinkInformation/net-8.0/System.Security.Cryptography.Cose.json index 300af64071d..5eaebe4ee77 100644 --- a/xml/SourceLinkInformation/net-8.0/System.Security.Cryptography.Cose.json +++ b/xml/SourceLinkInformation/net-8.0/System.Security.Cryptography.Cose.json @@ -1,539 +1,538 @@ { "Assembly": "System.Security.Cryptography.Cose", - "GUID": "B861CDB131E04ABEA1F812A67E43FC30FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "CBB0B731476A4E2589E5F2E962268BBDFFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:System.Security.Cryptography.Cose.CoseHeaderLabel.#ctor(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderLabel.cs#L50C13-L53C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderLabel.cs#L50C13-L53C10" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseHeaderLabel.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderLabel.cs#L62C13-L70C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderLabel.cs#L62C13-L70C10" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseHeaderLabel.Equals(System.Security.Cryptography.Cose.CoseHeaderLabel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderLabel.cs#L79C13-L79C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderLabel.cs#L79C13-L79C95" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseHeaderLabel.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderLabel.cs#L87C73-L87C124" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderLabel.cs#L87C73-L87C124" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseHeaderLabel.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderLabel.cs#L99C13-L104C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderLabel.cs#L99C13-L104C57" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseHeaderLabel.op_Equality(System.Security.Cryptography.Cose.CoseHeaderLabel,System.Security.Cryptography.Cose.CoseHeaderLabel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderLabel.cs#L113C88-L113C106" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderLabel.cs#L113C88-L113C106" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseHeaderLabel.op_Inequality(System.Security.Cryptography.Cose.CoseHeaderLabel,System.Security.Cryptography.Cose.CoseHeaderLabel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderLabel.cs#L121C88-L121C107" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderLabel.cs#L121C88-L121C107" }, { "DocsId": "P:System.Security.Cryptography.Cose.CoseHeaderLabel.Algorithm", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderLabel.cs#L23C52-L23C89" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderLabel.cs#L23C52-L23C89" }, { "DocsId": "P:System.Security.Cryptography.Cose.CoseHeaderLabel.CriticalHeaders", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderLabel.cs#L28C58-L28C96" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderLabel.cs#L28C58-L28C96" }, { "DocsId": "P:System.Security.Cryptography.Cose.CoseHeaderLabel.ContentType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderLabel.cs#L33C54-L33C99" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderLabel.cs#L33C54-L33C99" }, { "DocsId": "P:System.Security.Cryptography.Cose.CoseHeaderLabel.KeyIdentifier", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderLabel.cs#L38C56-L38C93" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderLabel.cs#L38C56-L38C93" } ], "DocsId": "T:System.Security.Cryptography.Cose.CoseHeaderLabel", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderLabel.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderLabel.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Cose.CoseHeaderMap.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L30C34-L30C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L30C34-L30C61" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseHeaderMap.System#Collections#Generic#IReadOnlyDictionary#get_Keys", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L58C100-L58C122" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L58C100-L58C122" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseHeaderMap.System#Collections#Generic#IReadOnlyDictionary#get_Values", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L61C102-L61C126" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L61C102-L61C126" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseHeaderMap.GetValueAsInt32(System.Security.Cryptography.Cose.CoseHeaderLabel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L89C62-L89C104" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L89C62-L89C104" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseHeaderMap.GetValueAsString(System.Security.Cryptography.Cose.CoseHeaderLabel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L98C66-L98C109" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L98C66-L98C109" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseHeaderMap.GetValueAsBytes(System.Security.Cryptography.Cose.CoseHeaderLabel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L106C65-L106C107" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L106C65-L106C107" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseHeaderMap.GetValueAsBytes(System.Security.Cryptography.Cose.CoseHeaderLabel,System.Span{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L117C86-L117C139" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L117C86-L117C139" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseHeaderMap.Add(System.Security.Cryptography.Cose.CoseHeaderLabel,System.Security.Cryptography.Cose.CoseHeaderValue)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L128C13-L131C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L128C13-L131C10" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseHeaderMap.Add(System.Collections.Generic.KeyValuePair{System.Security.Cryptography.Cose.CoseHeaderLabel,System.Security.Cryptography.Cose.CoseHeaderValue})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L139C81-L139C106" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L139C81-L139C106" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseHeaderMap.Add(System.Security.Cryptography.Cose.CoseHeaderLabel,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L147C62-L147C106" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L147C62-L147C106" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseHeaderMap.Add(System.Security.Cryptography.Cose.CoseHeaderLabel,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L155C65-L155C110" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L155C65-L155C110" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseHeaderMap.Add(System.Security.Cryptography.Cose.CoseHeaderLabel,System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L167C65-L167C109" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L167C65-L167C109" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseHeaderMap.Add(System.Security.Cryptography.Cose.CoseHeaderLabel,System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L179C77-L179C121" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L179C77-L179C121" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseHeaderMap.ContainsKey(System.Security.Cryptography.Cose.CoseHeaderLabel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L182C57-L182C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L182C57-L182C91" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseHeaderMap.TryGetValue(System.Security.Cryptography.Cose.CoseHeaderLabel,System.Security.Cryptography.Cose.CoseHeaderValue@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L185C84-L185C129" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L185C84-L185C129" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseHeaderMap.Clear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L193C13-L195C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L193C13-L195C10" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseHeaderMap.Contains(System.Collections.Generic.KeyValuePair{System.Security.Cryptography.Cose.CoseHeaderLabel,System.Security.Cryptography.Cose.CoseHeaderValue})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L199C16-L199C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L199C16-L199C59" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseHeaderMap.CopyTo(System.Collections.Generic.KeyValuePair{System.Security.Cryptography.Cose.CoseHeaderLabel,System.Security.Cryptography.Cose.CoseHeaderValue}[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L203C16-L203C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L203C16-L203C70" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseHeaderMap.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L207C16-L207C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L207C16-L207C49" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseHeaderMap.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L211C16-L211C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L211C16-L211C49" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseHeaderMap.Remove(System.Security.Cryptography.Cose.CoseHeaderLabel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L221C13-L222C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L221C13-L222C52" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseHeaderMap.Remove(System.Collections.Generic.KeyValuePair{System.Security.Cryptography.Cose.CoseHeaderLabel,System.Security.Cryptography.Cose.CoseHeaderValue})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L233C13-L234C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L233C13-L234C62" }, { "DocsId": "P:System.Security.Cryptography.Cose.CoseHeaderMap.IsReadOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L25C34-L25C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L25C34-L25C38" }, { "DocsId": "P:System.Security.Cryptography.Cose.CoseHeaderMap.Keys", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L43C53-L43C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L43C53-L43C75" }, { "DocsId": "P:System.Security.Cryptography.Cose.CoseHeaderMap.Values", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L49C55-L49C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L49C55-L49C79" }, { "DocsId": "P:System.Security.Cryptography.Cose.CoseHeaderMap.Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L55C29-L55C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L55C29-L55C52" }, { "DocsId": "P:System.Security.Cryptography.Cose.CoseHeaderMap.System#Collections#Generic#IReadOnlyDictionary#Keys", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L58C100-L58C122" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L58C100-L58C122" }, { "DocsId": "P:System.Security.Cryptography.Cose.CoseHeaderMap.System#Collections#Generic#IReadOnlyDictionary#Values", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L61C102-L61C126" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L61C102-L61C126" }, { "DocsId": "P:System.Security.Cryptography.Cose.CoseHeaderMap.Item(System.Security.Cryptography.Cose.CoseHeaderLabel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L73C20-L73C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L73C20-L73C42" } ], "DocsId": "T:System.Security.Cryptography.Cose.CoseHeaderMap", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Cose.CoseHeaderValue.FromEncodedValue(System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderValue.cs#L39C13-L40C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderValue.cs#L39C13-L40C55" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseHeaderValue.FromEncodedValue(System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderValue.cs#L51C13-L56C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderValue.cs#L51C13-L56C60" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseHeaderValue.FromInt32(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderValue.cs#L74C13-L77C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderValue.cs#L74C13-L77C53" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseHeaderValue.FromString(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderValue.cs#L88C13-L96C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderValue.cs#L88C13-L96C53" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseHeaderValue.FromBytes(System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderValue.cs#L107C13-L110C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderValue.cs#L107C13-L110C53" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseHeaderValue.FromBytes(System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderValue.cs#L122C13-L127C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderValue.cs#L122C13-L127C46" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseHeaderValue.GetValueAsInt32", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderValue.cs#L137C13-L154C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderValue.cs#L137C13-L154C27" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseHeaderValue.GetValueAsString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderValue.cs#L164C13-L181C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderValue.cs#L164C13-L181C27" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseHeaderValue.GetValueAsBytes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderValue.cs#L191C13-L208C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderValue.cs#L191C13-L208C27" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseHeaderValue.GetValueAsBytes(System.Span{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderValue.cs#L220C13-L240C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderValue.cs#L220C13-L240C33" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseHeaderValue.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderValue.cs#L248C73-L248C124" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderValue.cs#L248C73-L248C124" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseHeaderValue.Equals(System.Security.Cryptography.Cose.CoseHeaderValue)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderValue.cs#L255C54-L255C110" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderValue.cs#L255C54-L255C110" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseHeaderValue.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderValue.cs#L263C13-L272C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderValue.cs#L263C13-L272C42" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseHeaderValue.op_Equality(System.Security.Cryptography.Cose.CoseHeaderValue,System.Security.Cryptography.Cose.CoseHeaderValue)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderValue.cs#L281C88-L281C106" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderValue.cs#L281C88-L281C106" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseHeaderValue.op_Inequality(System.Security.Cryptography.Cose.CoseHeaderValue,System.Security.Cryptography.Cose.CoseHeaderValue)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderValue.cs#L289C88-L289C107" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderValue.cs#L289C88-L289C107" }, { "DocsId": "P:System.Security.Cryptography.Cose.CoseHeaderValue.EncodedValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderValue.cs#L18C61-L18C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderValue.cs#L18C61-L18C65" } ], "DocsId": "T:System.Security.Cryptography.Cose.CoseHeaderValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderValue.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderValue.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Cose.CoseMessage.DecodeSign1(System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMessage.cs#L95C13-L98C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMessage.cs#L95C13-L98C69" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseMessage.DecodeSign1(System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMessage.cs#L110C13-L119C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMessage.cs#L110C13-L119C10" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseMessage.DecodeMultiSign(System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMessage.cs#L181C13-L184C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMessage.cs#L181C13-L184C73" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseMessage.DecodeMultiSign(System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMessage.cs#L196C13-L205C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMessage.cs#L196C13-L205C10" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseMessage.Encode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMessage.cs#L597C13-L601C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMessage.cs#L597C13-L601C27" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseMessage.Encode(System.Span{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMessage.cs#L615C13-L620C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMessage.cs#L615C13-L620C33" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseMessage.TryEncode(System.Span{System.Byte},System.Int32@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMessage.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMessage.cs" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseMessage.GetEncodedLength", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMessage.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMessage.cs" }, { "DocsId": "P:System.Security.Cryptography.Cose.CoseMessage.ProtectedHeaders", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMessage.cs#L41C50-L41C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMessage.cs#L41C50-L41C67" }, { "DocsId": "P:System.Security.Cryptography.Cose.CoseMessage.UnprotectedHeaders", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMessage.cs#L47C52-L47C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMessage.cs#L47C52-L47C71" }, { "DocsId": "P:System.Security.Cryptography.Cose.CoseMessage.RawProtectedHeaders", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMessage.cs#L53C60-L53C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMessage.cs#L53C60-L53C82" }, { "DocsId": "P:System.Security.Cryptography.Cose.CoseMessage.Content", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMessage.cs#L74C17-L79C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMessage.cs#L74C17-L79C33" } ], "DocsId": "T:System.Security.Cryptography.Cose.CoseMessage", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMessage.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMessage.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Cose.CoseMultiSignMessage.SignDetached(System.Byte[],System.Security.Cryptography.Cose.CoseSigner,System.Security.Cryptography.Cose.CoseHeaderMap,System.Security.Cryptography.Cose.CoseHeaderMap,System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMultiSignMessage.cs#L69C13-L72C132" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMultiSignMessage.cs#L69C13-L72C132" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseMultiSignMessage.SignEmbedded(System.Byte[],System.Security.Cryptography.Cose.CoseSigner,System.Security.Cryptography.Cose.CoseHeaderMap,System.Security.Cryptography.Cose.CoseHeaderMap,System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMultiSignMessage.cs#L100C13-L103C133" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMultiSignMessage.cs#L100C13-L103C133" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseMultiSignMessage.SignDetached(System.ReadOnlySpan{System.Byte},System.Security.Cryptography.Cose.CoseSigner,System.Security.Cryptography.Cose.CoseHeaderMap,System.Security.Cryptography.Cose.CoseHeaderMap,System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMultiSignMessage.cs#L130C16-L130C127" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMultiSignMessage.cs#L130C16-L130C127" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseMultiSignMessage.SignEmbedded(System.ReadOnlySpan{System.Byte},System.Security.Cryptography.Cose.CoseSigner,System.Security.Cryptography.Cose.CoseHeaderMap,System.Security.Cryptography.Cose.CoseHeaderMap,System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMultiSignMessage.cs#L157C16-L157C128" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMultiSignMessage.cs#L157C16-L157C128" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseMultiSignMessage.SignDetached(System.IO.Stream,System.Security.Cryptography.Cose.CoseSigner,System.Security.Cryptography.Cose.CoseHeaderMap,System.Security.Cryptography.Cose.CoseHeaderMap,System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMultiSignMessage.cs#L189C13-L198C135" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMultiSignMessage.cs#L189C13-L198C135" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseMultiSignMessage.SignDetachedAsync(System.IO.Stream,System.Security.Cryptography.Cose.CoseSigner,System.Security.Cryptography.Cose.CoseHeaderMap,System.Security.Cryptography.Cose.CoseHeaderMap,System.ReadOnlyMemory{System.Byte},System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMultiSignMessage.cs#L260C13-L275C146" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMultiSignMessage.cs#L260C13-L275C146" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseMultiSignMessage.TrySignDetached(System.ReadOnlySpan{System.Byte},System.Span{System.Byte},System.Security.Cryptography.Cose.CoseSigner,System.Int32@,System.Security.Cryptography.Cose.CoseHeaderMap,System.Security.Cryptography.Cose.CoseHeaderMap,System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMultiSignMessage.cs#L320C16-L320C151" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMultiSignMessage.cs#L320C16-L320C151" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseMultiSignMessage.TrySignEmbedded(System.ReadOnlySpan{System.Byte},System.Span{System.Byte},System.Security.Cryptography.Cose.CoseSigner,System.Int32@,System.Security.Cryptography.Cose.CoseHeaderMap,System.Security.Cryptography.Cose.CoseHeaderMap,System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMultiSignMessage.cs#L348C16-L348C152" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMultiSignMessage.cs#L348C16-L348C152" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseMultiSignMessage.GetEncodedLength", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMultiSignMessage.cs#L543C13-L554C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMultiSignMessage.cs#L543C13-L554C34" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseMultiSignMessage.TryEncode(System.Span{System.Byte},System.Int32@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMultiSignMessage.cs#L576C13-L630C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMultiSignMessage.cs#L576C13-L630C25" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseMultiSignMessage.AddSignatureForEmbedded(System.Security.Cryptography.Cose.CoseSigner,System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMultiSignMessage.cs#L650C16-L650C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMultiSignMessage.cs#L650C16-L650C72" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseMultiSignMessage.AddSignatureForEmbedded(System.Security.Cryptography.Cose.CoseSigner,System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMultiSignMessage.cs#L670C13-L681C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMultiSignMessage.cs#L670C13-L681C10" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseMultiSignMessage.AddSignatureForDetached(System.Byte[],System.Security.Cryptography.Cose.CoseSigner,System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMultiSignMessage.cs#L702C13-L708C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMultiSignMessage.cs#L702C13-L708C10" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseMultiSignMessage.AddSignatureForDetached(System.ReadOnlySpan{System.Byte},System.Security.Cryptography.Cose.CoseSigner,System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMultiSignMessage.cs#L729C13-L740C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMultiSignMessage.cs#L729C13-L740C10" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseMultiSignMessage.AddSignatureForDetached(System.IO.Stream,System.Security.Cryptography.Cose.CoseSigner,System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMultiSignMessage.cs#L765C13-L776C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMultiSignMessage.cs#L765C13-L776C10" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseMultiSignMessage.AddSignatureForDetachedAsync(System.IO.Stream,System.Security.Cryptography.Cose.CoseSigner,System.ReadOnlyMemory{System.Byte},System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMultiSignMessage.cs#L841C13-L851C102" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMultiSignMessage.cs#L841C13-L851C102" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseMultiSignMessage.RemoveSignature(System.Security.Cryptography.Cose.CoseSignature)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMultiSignMessage.cs#L894C13-L900C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMultiSignMessage.cs#L894C13-L900C10" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseMultiSignMessage.RemoveSignature(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMultiSignMessage.cs#L917C16-L917C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMultiSignMessage.cs#L917C16-L917C43" }, { "DocsId": "P:System.Security.Cryptography.Cose.CoseMultiSignMessage.Signatures", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMultiSignMessage.cs#L30C63-L30C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMultiSignMessage.cs#L30C63-L30C67" } ], "DocsId": "T:System.Security.Cryptography.Cose.CoseMultiSignMessage", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMultiSignMessage.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMultiSignMessage.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Cose.CoseSign1Message.SignDetached(System.Byte[],System.Security.Cryptography.Cose.CoseSigner,System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSign1Message.cs#L53C13-L59C103" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSign1Message.cs#L53C13-L59C103" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseSign1Message.SignEmbedded(System.Byte[],System.Security.Cryptography.Cose.CoseSigner,System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSign1Message.cs#L81C13-L87C104" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSign1Message.cs#L81C13-L87C104" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseSign1Message.SignDetached(System.ReadOnlySpan{System.Byte},System.Security.Cryptography.Cose.CoseSigner,System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSign1Message.cs#L109C13-L112C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSign1Message.cs#L109C13-L112C94" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseSign1Message.SignEmbedded(System.ReadOnlySpan{System.Byte},System.Security.Cryptography.Cose.CoseSigner,System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSign1Message.cs#L134C13-L137C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSign1Message.cs#L134C13-L137C95" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseSign1Message.SignDetached(System.IO.Stream,System.Security.Cryptography.Cose.CoseSigner,System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSign1Message.cs#L163C13-L175C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSign1Message.cs#L163C13-L175C97" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseSign1Message.SignDetachedAsync(System.IO.Stream,System.Security.Cryptography.Cose.CoseSigner,System.ReadOnlyMemory{System.Byte},System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSign1Message.cs#L217C13-L232C108" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSign1Message.cs#L217C13-L232C108" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseSign1Message.TrySignDetached(System.ReadOnlySpan{System.Byte},System.Span{System.Byte},System.Security.Cryptography.Cose.CoseSigner,System.Int32@,System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSign1Message.cs#L264C16-L264C113" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSign1Message.cs#L264C16-L264C113" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseSign1Message.TrySignEmbedded(System.ReadOnlySpan{System.Byte},System.Span{System.Byte},System.Security.Cryptography.Cose.CoseSigner,System.Int32@,System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSign1Message.cs#L286C16-L286C114" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSign1Message.cs#L286C16-L286C114" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseSign1Message.VerifyEmbedded(System.Security.Cryptography.AsymmetricAlgorithm,System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSign1Message.cs#L396C13-L406C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSign1Message.cs#L396C13-L406C97" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseSign1Message.VerifyEmbedded(System.Security.Cryptography.AsymmetricAlgorithm,System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSign1Message.cs#L438C13-L448C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSign1Message.cs#L438C13-L448C97" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseSign1Message.VerifyDetached(System.Security.Cryptography.AsymmetricAlgorithm,System.Byte[],System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSign1Message.cs#L482C13-L496C104" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSign1Message.cs#L482C13-L496C104" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseSign1Message.VerifyDetached(System.Security.Cryptography.AsymmetricAlgorithm,System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSign1Message.cs#L530C13-L540C104" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSign1Message.cs#L530C13-L540C104" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseSign1Message.VerifyDetached(System.Security.Cryptography.AsymmetricAlgorithm,System.IO.Stream,System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSign1Message.cs#L582C13-L606C107" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSign1Message.cs#L582C13-L606C107" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseSign1Message.VerifyDetachedAsync(System.Security.Cryptography.AsymmetricAlgorithm,System.IO.Stream,System.ReadOnlyMemory{System.Byte},System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSign1Message.cs#L683C13-L707C122" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSign1Message.cs#L683C13-L707C122" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseSign1Message.GetEncodedLength", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSign1Message.cs#L790C13-L791C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSign1Message.cs#L790C13-L791C68" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseSign1Message.TryEncode(System.Span{System.Byte},System.Int32@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSign1Message.cs#L804C13-L836C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSign1Message.cs#L804C13-L836C25" }, { "DocsId": "P:System.Security.Cryptography.Cose.CoseSign1Message.Signature", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSign1Message.cs#L26C50-L26C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSign1Message.cs#L26C50-L26C60" } ], "DocsId": "T:System.Security.Cryptography.Cose.CoseSign1Message", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSign1Message.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSign1Message.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Cose.CoseSignature.VerifyEmbedded(System.Security.Cryptography.AsymmetricAlgorithm,System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSignature.cs#L102C13-L112C115" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSignature.cs#L102C13-L112C115" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseSignature.VerifyEmbedded(System.Security.Cryptography.AsymmetricAlgorithm,System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSignature.cs#L145C13-L155C115" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSignature.cs#L145C13-L155C115" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseSignature.VerifyDetached(System.Security.Cryptography.AsymmetricAlgorithm,System.Byte[],System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSignature.cs#L189C13-L204C104" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSignature.cs#L189C13-L204C104" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseSignature.VerifyDetached(System.Security.Cryptography.AsymmetricAlgorithm,System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSignature.cs#L238C13-L248C104" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSignature.cs#L238C13-L248C104" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseSignature.VerifyDetached(System.Security.Cryptography.AsymmetricAlgorithm,System.IO.Stream,System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSignature.cs#L290C13-L315C107" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSignature.cs#L290C13-L315C107" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseSignature.VerifyDetachedAsync(System.Security.Cryptography.AsymmetricAlgorithm,System.IO.Stream,System.ReadOnlyMemory{System.Byte},System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSignature.cs#L358C13-L382C122" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSignature.cs#L358C13-L382C122" }, { "DocsId": "P:System.Security.Cryptography.Cose.CoseSignature.ProtectedHeaders", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSignature.cs#L25C49-L25C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSignature.cs#L25C49-L25C53" }, { "DocsId": "P:System.Security.Cryptography.Cose.CoseSignature.UnprotectedHeaders", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSignature.cs#L31C51-L31C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSignature.cs#L31C51-L31C55" }, { "DocsId": "P:System.Security.Cryptography.Cose.CoseSignature.RawProtectedHeaders", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSignature.cs#L37C60-L37C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSignature.cs#L37C60-L37C88" }, { "DocsId": "P:System.Security.Cryptography.Cose.CoseSignature.Signature", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSignature.cs#L43C50-L43C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSignature.cs#L43C50-L43C60" } ], "DocsId": "T:System.Security.Cryptography.Cose.CoseSignature", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSignature.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSignature.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Cose.CoseSigner.#ctor(System.Security.Cryptography.AsymmetricAlgorithm,System.Security.Cryptography.HashAlgorithmName,System.Security.Cryptography.Cose.CoseHeaderMap,System.Security.Cryptography.Cose.CoseHeaderMap)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSigner.cs#L65C9-L80C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSigner.cs#L65C9-L80C10" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseSigner.#ctor(System.Security.Cryptography.RSA,System.Security.Cryptography.RSASignaturePadding,System.Security.Cryptography.HashAlgorithmName,System.Security.Cryptography.Cose.CoseHeaderMap,System.Security.Cryptography.Cose.CoseHeaderMap)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSigner.cs#L104C9-L120C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSigner.cs#L104C9-L120C10" }, { "DocsId": "P:System.Security.Cryptography.Cose.CoseSigner.Key", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSigner.cs#L22C42-L22C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSigner.cs#L22C42-L22C46" }, { "DocsId": "P:System.Security.Cryptography.Cose.CoseSigner.HashAlgorithm", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSigner.cs#L28C50-L28C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSigner.cs#L28C50-L28C54" }, { "DocsId": "P:System.Security.Cryptography.Cose.CoseSigner.RSASignaturePadding", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSigner.cs#L34C59-L34C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSigner.cs#L34C59-L34C63" }, { "DocsId": "P:System.Security.Cryptography.Cose.CoseSigner.ProtectedHeaders", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSigner.cs#L126C50-L126C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSigner.cs#L126C50-L126C91" }, { "DocsId": "P:System.Security.Cryptography.Cose.CoseSigner.UnprotectedHeaders", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSigner.cs#L132C52-L132C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSigner.cs#L132C52-L132C95" } ], "DocsId": "T:System.Security.Cryptography.Cose.CoseSigner", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSigner.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSigner.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/System.Security.Cryptography.Pkcs.json b/xml/SourceLinkInformation/net-8.0/System.Security.Cryptography.Pkcs.json index cba64e8345c..0c5810fafbb 100644 --- a/xml/SourceLinkInformation/net-8.0/System.Security.Cryptography.Pkcs.json +++ b/xml/SourceLinkInformation/net-8.0/System.Security.Cryptography.Pkcs.json @@ -1,1691 +1,1690 @@ { "Assembly": "System.Security.Cryptography.Pkcs", - "GUID": "BB5CC1469851422DA0F574989D5DAEFEFFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "F36633BD7F5B49E789ED1926ADB190B3FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:System.Security.Cryptography.CryptographicAttributeObject.#ctor(System.Security.Cryptography.Oid)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObject.cs#L16C15-L18C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObject.cs#L16C15-L18C10" }, { "DocsId": "M:System.Security.Cryptography.CryptographicAttributeObject.#ctor(System.Security.Cryptography.Oid,System.Security.Cryptography.AsnEncodedDataCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObject.cs#L20C9-L44C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObject.cs#L20C9-L44C10" }, { "DocsId": "P:System.Security.Cryptography.CryptographicAttributeObject.Oid", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObject.cs#L50C27-L50C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObject.cs#L50C27-L50C41" }, { "DocsId": "P:System.Security.Cryptography.CryptographicAttributeObject.Values", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObject.cs#L52C50-L52C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObject.cs#L52C50-L52C54" } ], "DocsId": "T:System.Security.Cryptography.CryptographicAttributeObject", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObject.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObject.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.CryptographicAttributeObjectCollection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObjectCollection.cs#L15C9-L18C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObjectCollection.cs#L15C9-L18C10" }, { "DocsId": "M:System.Security.Cryptography.CryptographicAttributeObjectCollection.#ctor(System.Security.Cryptography.CryptographicAttributeObject)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObjectCollection.cs#L20C9-L24C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObjectCollection.cs#L20C9-L24C10" }, { "DocsId": "M:System.Security.Cryptography.CryptographicAttributeObjectCollection.Add(System.Security.Cryptography.AsnEncodedData)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObjectCollection.cs#L28C13-L33C125" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObjectCollection.cs#L28C13-L33C125" }, { "DocsId": "M:System.Security.Cryptography.CryptographicAttributeObjectCollection.Add(System.Security.Cryptography.CryptographicAttributeObject)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObjectCollection.cs#L38C13-L75C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObjectCollection.cs#L38C13-L75C35" }, { "DocsId": "M:System.Security.Cryptography.CryptographicAttributeObjectCollection.Remove(System.Security.Cryptography.CryptographicAttributeObject)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObjectCollection.cs#L86C13-L92C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObjectCollection.cs#L86C13-L92C10" }, { "DocsId": "M:System.Security.Cryptography.CryptographicAttributeObjectCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObjectCollection.cs#L128C13-L128C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObjectCollection.cs#L128C13-L128C69" }, { "DocsId": "M:System.Security.Cryptography.CryptographicAttributeObjectCollection.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObjectCollection.cs#L133C13-L133C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObjectCollection.cs#L133C13-L133C69" }, { "DocsId": "M:System.Security.Cryptography.CryptographicAttributeObjectCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObjectCollection.cs#L138C13-L155C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObjectCollection.cs#L138C13-L155C10" }, { "DocsId": "M:System.Security.Cryptography.CryptographicAttributeObjectCollection.CopyTo(System.Security.Cryptography.CryptographicAttributeObject[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObjectCollection.cs#L159C13-L170C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObjectCollection.cs#L159C13-L170C10" }, { "DocsId": "P:System.Security.Cryptography.CryptographicAttributeObjectCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObjectCollection.cs#L98C17-L98C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObjectCollection.cs#L98C17-L98C37" }, { "DocsId": "P:System.Security.Cryptography.CryptographicAttributeObjectCollection.Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObjectCollection.cs#L106C17-L106C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObjectCollection.cs#L106C17-L106C36" }, { "DocsId": "P:System.Security.Cryptography.CryptographicAttributeObjectCollection.IsSynchronized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObjectCollection.cs#L114C17-L114C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObjectCollection.cs#L114C17-L114C30" }, { "DocsId": "P:System.Security.Cryptography.CryptographicAttributeObjectCollection.SyncRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObjectCollection.cs#L122C17-L122C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObjectCollection.cs#L122C17-L122C29" } ], "DocsId": "T:System.Security.Cryptography.CryptographicAttributeObjectCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObjectCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObjectCollection.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.CryptographicAttributeObjectEnumerator.System#Collections#IEnumerator#get_Current", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObjectEnumerator.cs#L30C17-L30C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObjectEnumerator.cs#L30C17-L30C46" }, { "DocsId": "M:System.Security.Cryptography.CryptographicAttributeObjectEnumerator.MoveNext", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObjectEnumerator.cs#L36C13-L39C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObjectEnumerator.cs#L36C13-L39C25" }, { "DocsId": "M:System.Security.Cryptography.CryptographicAttributeObjectEnumerator.Reset", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObjectEnumerator.cs#L44C13-L45C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObjectEnumerator.cs#L44C13-L45C10" }, { "DocsId": "P:System.Security.Cryptography.CryptographicAttributeObjectEnumerator.Current", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObjectEnumerator.cs#L22C17-L22C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObjectEnumerator.cs#L22C17-L22C46" }, { "DocsId": "P:System.Security.Cryptography.CryptographicAttributeObjectEnumerator.System#Collections#IEnumerator#Current", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObjectEnumerator.cs#L30C17-L30C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObjectEnumerator.cs#L30C17-L30C46" } ], "DocsId": "T:System.Security.Cryptography.CryptographicAttributeObjectEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObjectEnumerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObjectEnumerator.cs" }, { "Members": [ { "DocsId": "P:System.Security.Cryptography.Xml.X509IssuerSerial.IssuerName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Xml/X509IssuerSerial.cs#L21C36-L21C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Xml/X509IssuerSerial.cs#L21C36-L21C40" }, { "DocsId": "P:System.Security.Cryptography.Xml.X509IssuerSerial.SerialNumber", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Xml/X509IssuerSerial.cs#L22C38-L22C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Xml/X509IssuerSerial.cs#L22C38-L22C42" } ], "DocsId": "T:System.Security.Cryptography.Xml.X509IssuerSerial", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Xml/X509IssuerSerial.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Xml/X509IssuerSerial.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.AlgorithmIdentifier.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/AlgorithmIdentifier.cs#L14C15-L16C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/AlgorithmIdentifier.cs#L14C15-L16C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.AlgorithmIdentifier.#ctor(System.Security.Cryptography.Oid)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/AlgorithmIdentifier.cs#L19C15-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/AlgorithmIdentifier.cs#L19C15-L21C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.AlgorithmIdentifier.#ctor(System.Security.Cryptography.Oid,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/AlgorithmIdentifier.cs#L33C50-L27C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/AlgorithmIdentifier.cs#L33C50-L27C10" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.AlgorithmIdentifier.Oid", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/AlgorithmIdentifier.cs#L29C26-L29C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/AlgorithmIdentifier.cs#L29C26-L29C30" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.AlgorithmIdentifier.KeyLength", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/AlgorithmIdentifier.cs#L31C32-L31C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/AlgorithmIdentifier.cs#L31C32-L31C36" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.AlgorithmIdentifier.Parameters", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/AlgorithmIdentifier.cs#L33C36-L33C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/AlgorithmIdentifier.cs#L33C36-L33C40" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.AlgorithmIdentifier", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/AlgorithmIdentifier.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/AlgorithmIdentifier.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.CmsRecipient.#ctor(System.Security.Cryptography.X509Certificates.X509Certificate2)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipient.cs#L13C15-L15C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipient.cs#L13C15-L15C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.CmsRecipient.#ctor(System.Security.Cryptography.X509Certificates.X509Certificate2,System.Security.Cryptography.RSAEncryptionPadding)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipient.cs#L23C15-L32C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipient.cs#L23C15-L32C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.CmsRecipient.#ctor(System.Security.Cryptography.Pkcs.SubjectIdentifierType,System.Security.Cryptography.X509Certificates.X509Certificate2,System.Security.Cryptography.RSAEncryptionPadding)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipient.cs#L40C15-L49C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipient.cs#L40C15-L49C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.CmsRecipient.#ctor(System.Security.Cryptography.Pkcs.SubjectIdentifierType,System.Security.Cryptography.X509Certificates.X509Certificate2)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipient.cs#L51C9-L73C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipient.cs#L51C9-L73C10" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.CmsRecipient.RSAEncryptionPadding", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipient.cs#L80C54-L80C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipient.cs#L80C54-L80C58" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.CmsRecipient.RecipientIdentifierType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipient.cs#L81C64-L81C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipient.cs#L81C64-L81C68" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.CmsRecipient.Certificate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipient.cs#L82C47-L82C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipient.cs#L82C47-L82C51" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.CmsRecipient", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipient.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipient.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.CmsRecipientCollection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientCollection.cs#L14C9-L17C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientCollection.cs#L14C9-L17C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.CmsRecipientCollection.#ctor(System.Security.Cryptography.Pkcs.CmsRecipient)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientCollection.cs#L19C9-L23C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientCollection.cs#L19C9-L23C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.CmsRecipientCollection.#ctor(System.Security.Cryptography.Pkcs.SubjectIdentifierType,System.Security.Cryptography.X509Certificates.X509Certificate2Collection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientCollection.cs#L25C9-L35C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientCollection.cs#L25C9-L35C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.CmsRecipientCollection.Add(System.Security.Cryptography.Pkcs.CmsRecipient)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientCollection.cs#L58C13-L65C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientCollection.cs#L58C13-L65C35" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.CmsRecipientCollection.Remove(System.Security.Cryptography.Pkcs.CmsRecipient)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientCollection.cs#L70C13-L76C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientCollection.cs#L70C13-L76C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.CmsRecipientCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientCollection.cs#L80C13-L80C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientCollection.cs#L80C13-L80C53" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.CmsRecipientCollection.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientCollection.cs#L85C13-L85C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientCollection.cs#L85C13-L85C53" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.CmsRecipientCollection.CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientCollection.cs#L90C13-L107C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientCollection.cs#L90C13-L107C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.CmsRecipientCollection.CopyTo(System.Security.Cryptography.Pkcs.CmsRecipient[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientCollection.cs#L111C13-L122C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientCollection.cs#L111C13-L122C10" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.CmsRecipientCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientCollection.cs#L41C17-L44C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientCollection.cs#L41C17-L44C43" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.CmsRecipientCollection.Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientCollection.cs#L52C17-L52C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientCollection.cs#L52C17-L52C42" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.CmsRecipientCollection.IsSynchronized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientCollection.cs#L128C17-L128C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientCollection.cs#L128C17-L128C30" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.CmsRecipientCollection.SyncRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientCollection.cs#L136C17-L136C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientCollection.cs#L136C17-L136C29" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.CmsRecipientCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientCollection.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.CmsRecipientEnumerator.System#Collections#IEnumerator#get_Current", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientEnumerator.cs#L30C17-L30C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientEnumerator.cs#L30C17-L30C46" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.CmsRecipientEnumerator.MoveNext", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientEnumerator.cs#L36C13-L39C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientEnumerator.cs#L36C13-L39C25" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.CmsRecipientEnumerator.Reset", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientEnumerator.cs#L44C13-L45C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientEnumerator.cs#L44C13-L45C10" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.CmsRecipientEnumerator.Current", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientEnumerator.cs#L22C17-L22C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientEnumerator.cs#L22C17-L22C46" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.CmsRecipientEnumerator.System#Collections#IEnumerator#Current", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientEnumerator.cs#L30C17-L30C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientEnumerator.cs#L30C17-L30C46" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.CmsRecipientEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientEnumerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientEnumerator.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.ContentInfo.#ctor(System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/ContentInfo.cs#L18C15-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/ContentInfo.cs#L18C15-L20C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.ContentInfo.#ctor(System.Security.Cryptography.Oid,System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/ContentInfo.cs#L22C9-L35C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/ContentInfo.cs#L22C9-L35C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.ContentInfo.GetContentType(System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/ContentInfo.cs#L43C13-L48C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/ContentInfo.cs#L43C13-L48C75" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.ContentInfo.GetContentType(System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/ContentInfo.cs#L53C13-L53C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/ContentInfo.cs#L53C13-L53C75" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.ContentInfo.ContentType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/ContentInfo.cs#L37C34-L37C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/ContentInfo.cs#L37C34-L37C38" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.ContentInfo.Content", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/ContentInfo.cs#L39C33-L39C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/ContentInfo.cs#L39C33-L39C37" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.ContentInfo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/ContentInfo.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/ContentInfo.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.EnvelopedCms.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L19C15-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L19C15-L21C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.EnvelopedCms.#ctor(System.Security.Cryptography.Pkcs.ContentInfo)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L24C15-L26C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L24C15-L26C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.EnvelopedCms.#ctor(System.Security.Cryptography.Pkcs.ContentInfo,System.Security.Cryptography.Pkcs.AlgorithmIdentifier)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L28C9-L46C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L28C9-L46C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.EnvelopedCms.Encrypt(System.Security.Cryptography.Pkcs.CmsRecipient)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L93C13-L99C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L93C13-L99C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.EnvelopedCms.Encrypt(System.Security.Cryptography.Pkcs.CmsRecipientCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L103C13-L119C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L103C13-L119C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.EnvelopedCms.Encode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L126C13-L129C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L126C13-L129C53" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.EnvelopedCms.Decode(System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L137C13-L143C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L137C13-L143C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.EnvelopedCms.Decode(System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L156C13-L178C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L156C13-L178C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.EnvelopedCms.Decrypt", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L185C13-L186C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L185C13-L186C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.EnvelopedCms.Decrypt(System.Security.Cryptography.Pkcs.RecipientInfo)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L190C13-L196C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L190C13-L196C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.EnvelopedCms.Decrypt(System.Security.Cryptography.Pkcs.RecipientInfo,System.Security.Cryptography.X509Certificates.X509Certificate2Collection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L200C13-L210C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L200C13-L210C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.EnvelopedCms.Decrypt(System.Security.Cryptography.X509Certificates.X509Certificate2Collection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L214C13-L220C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L214C13-L220C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.EnvelopedCms.Decrypt(System.Security.Cryptography.Pkcs.RecipientInfo,System.Security.Cryptography.AsymmetricAlgorithm)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L224C13-L244C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L224C13-L244C10" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.EnvelopedCms.Version", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L54C30-L54C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L54C30-L54C34" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.EnvelopedCms.ContentInfo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L55C42-L55C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L55C42-L55C46" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.EnvelopedCms.ContentEncryptionAlgorithm", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L56C65-L56C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L56C65-L56C69" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.EnvelopedCms.Certificates", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L57C58-L57C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L57C58-L57C62" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.EnvelopedCms.UnprotectedAttributes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L58C79-L58C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L58C79-L58C83" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.EnvelopedCms.RecipientInfos", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L68C17-L83C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L68C17-L83C63" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.EnvelopedCms", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs" }, { "Members": [ { "DocsId": "P:System.Security.Cryptography.Pkcs.KeyAgreeRecipientInfo.Version", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/KeyAgreeRecipientInfo.cs#L23C17-L23C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/KeyAgreeRecipientInfo.cs#L23C17-L23C36" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.KeyAgreeRecipientInfo.RecipientIdentifier", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/KeyAgreeRecipientInfo.cs#L31C17-L31C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/KeyAgreeRecipientInfo.cs#L31C17-L31C77" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.KeyAgreeRecipientInfo.KeyEncryptionAlgorithm", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/KeyAgreeRecipientInfo.cs#L39C17-L39C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/KeyAgreeRecipientInfo.cs#L39C17-L39C83" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.KeyAgreeRecipientInfo.EncryptedKey", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/KeyAgreeRecipientInfo.cs#L47C17-L47C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/KeyAgreeRecipientInfo.cs#L47C17-L47C63" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.KeyAgreeRecipientInfo.OriginatorIdentifierOrKey", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/KeyAgreeRecipientInfo.cs#L55C17-L55C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/KeyAgreeRecipientInfo.cs#L55C17-L55C87" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.KeyAgreeRecipientInfo.Date", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/KeyAgreeRecipientInfo.cs#L63C17-L68C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/KeyAgreeRecipientInfo.cs#L63C17-L68C40" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.KeyAgreeRecipientInfo.OtherKeyAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/KeyAgreeRecipientInfo.cs#L76C17-L76C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/KeyAgreeRecipientInfo.cs#L76C17-L76C73" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.KeyAgreeRecipientInfo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/KeyAgreeRecipientInfo.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/KeyAgreeRecipientInfo.cs" }, { "Members": [ { "DocsId": "P:System.Security.Cryptography.Pkcs.KeyTransRecipientInfo.Version", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/KeyTransRecipientInfo.cs#L22C17-L22C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/KeyTransRecipientInfo.cs#L22C17-L22C36" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.KeyTransRecipientInfo.RecipientIdentifier", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/KeyTransRecipientInfo.cs#L30C17-L30C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/KeyTransRecipientInfo.cs#L30C17-L30C77" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.KeyTransRecipientInfo.KeyEncryptionAlgorithm", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/KeyTransRecipientInfo.cs#L38C17-L38C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/KeyTransRecipientInfo.cs#L38C17-L38C83" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.KeyTransRecipientInfo.EncryptedKey", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/KeyTransRecipientInfo.cs#L46C17-L46C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/KeyTransRecipientInfo.cs#L46C17-L46C63" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.KeyTransRecipientInfo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/KeyTransRecipientInfo.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/KeyTransRecipientInfo.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs9AttributeObject.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9AttributeObject.cs#L16C15-L18C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9AttributeObject.cs#L16C15-L18C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs9AttributeObject.#ctor(System.String,System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9AttributeObject.cs#L21C15-L23C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9AttributeObject.cs#L21C15-L23C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs9AttributeObject.#ctor(System.Security.Cryptography.Oid,System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9AttributeObject.cs#L26C15-L28C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9AttributeObject.cs#L26C15-L28C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs9AttributeObject.#ctor(System.Security.Cryptography.AsnEncodedData)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9AttributeObject.cs#L31C15-L40C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9AttributeObject.cs#L31C15-L40C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs9AttributeObject.CopyFrom(System.Security.Cryptography.AsnEncodedData)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9AttributeObject.cs#L70C13-L79C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9AttributeObject.cs#L70C13-L79C10" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Pkcs9AttributeObject.Oid", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9AttributeObject.cs#L64C17-L64C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9AttributeObject.cs#L64C17-L64C33" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.Pkcs9AttributeObject", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9AttributeObject.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9AttributeObject.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs9ContentType.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9ContentType.cs#L18C15-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9ContentType.cs#L18C15-L20C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs9ContentType.CopyFrom(System.Security.Cryptography.AsnEncodedData)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9ContentType.cs#L41C13-L43C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9ContentType.cs#L41C13-L43C10" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Pkcs9ContentType.ContentType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9ContentType.cs#L35C17-L35C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9ContentType.cs#L35C17-L35C61" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.Pkcs9ContentType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9ContentType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9ContentType.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs9DocumentDescription.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9DocumentDescription.cs#L18C15-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9DocumentDescription.cs#L18C15-L20C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs9DocumentDescription.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9DocumentDescription.cs#L23C15-L26C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9DocumentDescription.cs#L23C15-L26C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs9DocumentDescription.#ctor(System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9DocumentDescription.cs#L29C15-L31C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9DocumentDescription.cs#L29C15-L31C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs9DocumentDescription.CopyFrom(System.Security.Cryptography.AsnEncodedData)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9DocumentDescription.cs#L52C13-L54C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9DocumentDescription.cs#L52C13-L54C10" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Pkcs9DocumentDescription.DocumentDescription", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9DocumentDescription.cs#L46C17-L46C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9DocumentDescription.cs#L46C17-L46C69" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.Pkcs9DocumentDescription", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9DocumentDescription.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9DocumentDescription.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs9DocumentName.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9DocumentName.cs#L18C15-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9DocumentName.cs#L18C15-L20C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs9DocumentName.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9DocumentName.cs#L23C15-L26C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9DocumentName.cs#L23C15-L26C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs9DocumentName.#ctor(System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9DocumentName.cs#L29C15-L31C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9DocumentName.cs#L29C15-L31C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs9DocumentName.CopyFrom(System.Security.Cryptography.AsnEncodedData)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9DocumentName.cs#L52C13-L54C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9DocumentName.cs#L52C13-L54C10" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Pkcs9DocumentName.DocumentName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9DocumentName.cs#L46C17-L46C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9DocumentName.cs#L46C17-L46C62" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.Pkcs9DocumentName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9DocumentName.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9DocumentName.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs9MessageDigest.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9MessageDigest.cs#L17C15-L19C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9MessageDigest.cs#L17C15-L19C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs9MessageDigest.CopyFrom(System.Security.Cryptography.AsnEncodedData)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9MessageDigest.cs#L40C13-L42C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9MessageDigest.cs#L40C13-L42C10" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Pkcs9MessageDigest.MessageDigest", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9MessageDigest.cs#L34C17-L34C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9MessageDigest.cs#L34C17-L34C63" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.Pkcs9MessageDigest", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9MessageDigest.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9MessageDigest.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs9SigningTime.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9SigningTime.cs#L19C15-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9SigningTime.cs#L19C15-L21C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs9SigningTime.#ctor(System.DateTime)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9SigningTime.cs#L24C15-L27C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9SigningTime.cs#L24C15-L27C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs9SigningTime.#ctor(System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9SigningTime.cs#L30C15-L32C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9SigningTime.cs#L30C15-L32C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs9SigningTime.CopyFrom(System.Security.Cryptography.AsnEncodedData)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9SigningTime.cs#L58C13-L60C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9SigningTime.cs#L58C13-L60C10" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Pkcs9SigningTime.SigningTime", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9SigningTime.cs#L47C17-L52C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9SigningTime.cs#L47C17-L52C47" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.Pkcs9SigningTime", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9SigningTime.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9SigningTime.cs" }, { "Members": [ { "DocsId": "P:System.Security.Cryptography.Pkcs.PublicKeyInfo.Algorithm", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/PublicKeyInfo.cs#L20C48-L20C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/PublicKeyInfo.cs#L20C48-L20C52" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.PublicKeyInfo.KeyValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/PublicKeyInfo.cs#L22C34-L22C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/PublicKeyInfo.cs#L22C34-L22C38" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.PublicKeyInfo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/PublicKeyInfo.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/PublicKeyInfo.cs" }, { "Members": [ { "DocsId": "P:System.Security.Cryptography.Pkcs.RecipientInfo.Type", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfo.cs#L36C41-L36C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfo.cs#L36C41-L36C45" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.RecipientInfo.Version", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfo.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfo.cs" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.RecipientInfo.RecipientIdentifier", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfo.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfo.cs" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.RecipientInfo.KeyEncryptionAlgorithm", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfo.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfo.cs" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.RecipientInfo.EncryptedKey", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfo.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfo.cs" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.RecipientInfo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfo.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfo.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.RecipientInfoCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoCollection.cs#L49C13-L49C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoCollection.cs#L49C13-L49C54" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.RecipientInfoCollection.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoCollection.cs#L54C13-L54C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoCollection.cs#L54C13-L54C68" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.RecipientInfoCollection.CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoCollection.cs#L59C13-L75C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoCollection.cs#L59C13-L75C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.RecipientInfoCollection.CopyTo(System.Security.Cryptography.Pkcs.RecipientInfo[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoCollection.cs#L79C13-L87C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoCollection.cs#L79C13-L87C10" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.RecipientInfoCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoCollection.cs#L33C17-L35C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoCollection.cs#L33C17-L35C47" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.RecipientInfoCollection.Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoCollection.cs#L43C17-L43C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoCollection.cs#L43C17-L43C47" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.RecipientInfoCollection.IsSynchronized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoCollection.cs#L93C17-L93C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoCollection.cs#L93C17-L93C30" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.RecipientInfoCollection.SyncRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoCollection.cs#L101C17-L101C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoCollection.cs#L101C17-L101C29" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.RecipientInfoCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoCollection.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.RecipientInfoEnumerator.System#Collections#IEnumerator#get_Current", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoEnumerator.cs#L30C17-L30C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoEnumerator.cs#L30C17-L30C50" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.RecipientInfoEnumerator.MoveNext", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoEnumerator.cs#L36C13-L41C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoEnumerator.cs#L36C13-L41C25" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.RecipientInfoEnumerator.Reset", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoEnumerator.cs#L46C13-L47C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoEnumerator.cs#L46C13-L47C10" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.RecipientInfoEnumerator.Current", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoEnumerator.cs#L22C17-L22C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoEnumerator.cs#L22C17-L22C50" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.RecipientInfoEnumerator.System#Collections#IEnumerator#Current", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoEnumerator.cs#L30C17-L30C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoEnumerator.cs#L30C17-L30C50" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.RecipientInfoEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoEnumerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoEnumerator.cs" }, { "Members": [ { "DocsId": "F:System.Security.Cryptography.Pkcs.RecipientInfoType.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoType.cs" }, { "DocsId": "F:System.Security.Cryptography.Pkcs.RecipientInfoType.Unknown", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoType.cs" }, { "DocsId": "F:System.Security.Cryptography.Pkcs.RecipientInfoType.KeyTransport", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoType.cs" }, { "DocsId": "F:System.Security.Cryptography.Pkcs.RecipientInfoType.KeyAgreement", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoType.cs" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.RecipientInfoType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoType.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.SubjectIdentifier.MatchesCertificate(System.Security.Cryptography.X509Certificates.X509Certificate2)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifier.cs#L102C13-L126C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifier.cs#L102C13-L126C56" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.SubjectIdentifier.Type", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifier.cs#L97C45-L97C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifier.cs#L97C45-L97C49" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.SubjectIdentifier.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifier.cs#L98C32-L98C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifier.cs#L98C32-L98C36" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.SubjectIdentifier", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifier.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifier.cs" }, { "Members": [ { "DocsId": "P:System.Security.Cryptography.Pkcs.SubjectIdentifierOrKey.Type", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifierOrKey.cs#L40C50-L40C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifierOrKey.cs#L40C50-L40C54" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.SubjectIdentifierOrKey.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifierOrKey.cs#L42C31-L42C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifierOrKey.cs#L42C31-L42C35" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.SubjectIdentifierOrKey", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifierOrKey.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifierOrKey.cs" }, { "Members": [ { "DocsId": "F:System.Security.Cryptography.Pkcs.SubjectIdentifierOrKeyType.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifierOrKeyType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifierOrKeyType.cs" }, { "DocsId": "F:System.Security.Cryptography.Pkcs.SubjectIdentifierOrKeyType.Unknown", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifierOrKeyType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifierOrKeyType.cs" }, { "DocsId": "F:System.Security.Cryptography.Pkcs.SubjectIdentifierOrKeyType.IssuerAndSerialNumber", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifierOrKeyType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifierOrKeyType.cs" }, { "DocsId": "F:System.Security.Cryptography.Pkcs.SubjectIdentifierOrKeyType.SubjectKeyIdentifier", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifierOrKeyType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifierOrKeyType.cs" }, { "DocsId": "F:System.Security.Cryptography.Pkcs.SubjectIdentifierOrKeyType.PublicKeyInfo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifierOrKeyType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifierOrKeyType.cs" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.SubjectIdentifierOrKeyType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifierOrKeyType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifierOrKeyType.cs" }, { "Members": [ { "DocsId": "F:System.Security.Cryptography.Pkcs.SubjectIdentifierType.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifierType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifierType.cs" }, { "DocsId": "F:System.Security.Cryptography.Pkcs.SubjectIdentifierType.Unknown", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifierType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifierType.cs" }, { "DocsId": "F:System.Security.Cryptography.Pkcs.SubjectIdentifierType.IssuerAndSerialNumber", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifierType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifierType.cs" }, { "DocsId": "F:System.Security.Cryptography.Pkcs.SubjectIdentifierType.SubjectKeyIdentifier", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifierType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifierType.cs" }, { "DocsId": "F:System.Security.Cryptography.Pkcs.SubjectIdentifierType.NoSignature", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifierType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifierType.cs" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.SubjectIdentifierType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifierType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifierType.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.CmsSigner.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L62C15-L64C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L62C15-L64C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.CmsSigner.#ctor(System.Security.Cryptography.Pkcs.SubjectIdentifierType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L67C15-L69C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L67C15-L69C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.CmsSigner.#ctor(System.Security.Cryptography.X509Certificates.X509Certificate2)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L72C15-L74C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L72C15-L74C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.CmsSigner.#ctor(System.Security.Cryptography.CspParameters)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L25C80-L80C96" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L25C67-L80C96" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.CmsSigner.#ctor(System.Security.Cryptography.Pkcs.SubjectIdentifierType,System.Security.Cryptography.X509Certificates.X509Certificate2)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L82C103-L84C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L82C103-L84C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.CmsSigner.#ctor(System.Security.Cryptography.Pkcs.SubjectIdentifierType,System.Security.Cryptography.X509Certificates.X509Certificate2,System.Security.Cryptography.AsymmetricAlgorithm)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L87C15-L89C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L87C15-L89C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.CmsSigner.#ctor(System.Security.Cryptography.Pkcs.SubjectIdentifierType,System.Security.Cryptography.X509Certificates.X509Certificate2,System.Security.Cryptography.RSA,System.Security.Cryptography.RSASignaturePadding)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L113C15-L115C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L113C15-L115C10" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.CmsSigner.Certificate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L23C48-L23C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L23C48-L23C52" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.CmsSigner.PrivateKey", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L24C50-L24C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L24C50-L24C54" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.CmsSigner.Certificates", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L25C58-L25C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L25C58-L25C62" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.CmsSigner.DigestAlgorithm", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L26C38-L26C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L26C38-L26C42" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.CmsSigner.IncludeOption", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L27C50-L27C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L27C50-L27C54" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.CmsSigner.SignedAttributes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L28C74-L28C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L28C74-L28C78" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.CmsSigner.UnsignedAttributes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L29C76-L29C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L29C76-L29C80" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.CmsSigner.SignaturePadding", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L37C20-L37C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L37C20-L37C37" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.CmsSigner.SignerIdentifierType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L52C19-L52C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L52C19-L52C48" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.CmsSigner", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.SignedCms.#ctor(System.Security.Cryptography.Pkcs.SubjectIdentifierType,System.Security.Cryptography.Pkcs.ContentInfo,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L44C9-L74C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L44C9-L74C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignedCms.Encode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L127C13-L163C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L127C13-L163C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignedCms.Decode(System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L167C13-L173C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L167C13-L173C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignedCms.Decode(System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L178C13-L245C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L178C13-L245C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignedCms.ComputeSignature", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L304C43-L304C103" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L304C43-L304C103" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignedCms.ComputeSignature(System.Security.Cryptography.Pkcs.CmsSigner)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L306C59-L306C89" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L306C59-L306C89" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignedCms.ComputeSignature(System.Security.Cryptography.Pkcs.CmsSigner,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L310C13-L396C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L310C13-L396C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignedCms.RemoveSignature(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L400C13-L415C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L400C13-L415C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignedCms.RemoveSignature(System.Security.Cryptography.Pkcs.SignerInfo)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L419C13-L432C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L419C13-L432C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignedCms.CheckSignature(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L615C13-L615C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L615C13-L615C82" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignedCms.CheckSignature(System.Security.Cryptography.X509Certificates.X509Certificate2Collection,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L619C13-L625C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L619C13-L625C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignedCms.CheckHash", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L654C13-L672C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L654C13-L672C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignedCms.AddCertificate(System.Security.Cryptography.X509Certificates.X509Certificate2)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L681C13-L711C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L681C13-L711C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignedCms.RemoveCertificate(System.Security.Cryptography.X509Certificates.X509Certificate2)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L715C13-L735C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L715C13-L735C86" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignedCms.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.CtorOverloads.cs#L14C15-L16C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.CtorOverloads.cs#L14C15-L16C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignedCms.#ctor(System.Security.Cryptography.Pkcs.SubjectIdentifierType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.CtorOverloads.cs#L19C15-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.CtorOverloads.cs#L19C15-L21C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignedCms.#ctor(System.Security.Cryptography.Pkcs.ContentInfo)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.CtorOverloads.cs#L24C15-L26C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.CtorOverloads.cs#L24C15-L26C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignedCms.#ctor(System.Security.Cryptography.Pkcs.SubjectIdentifierType,System.Security.Cryptography.Pkcs.ContentInfo)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.CtorOverloads.cs#L29C15-L31C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.CtorOverloads.cs#L29C15-L31C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignedCms.#ctor(System.Security.Cryptography.Pkcs.ContentInfo,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.CtorOverloads.cs#L34C15-L36C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.CtorOverloads.cs#L34C15-L36C10" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.SignedCms.Version", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L40C30-L40C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L40C30-L40C34" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.SignedCms.ContentInfo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L41C42-L41C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L41C42-L41C46" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.SignedCms.Detached", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L42C32-L42C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L42C32-L42C36" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.SignedCms.Certificates", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L80C17-L108C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L80C17-L108C29" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.SignedCms.SignerInfos", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L116C17-L121C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L116C17-L121C80" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.SignedCms", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.SignerInfo.GetSignature", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L69C41-L69C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L69C41-L69C61" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignerInfo.AddUnsignedAttribute(System.Security.Cryptography.AsnEncodedData)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L172C13-L176C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L16707566C0-L176C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignerInfo.RemoveUnsignedAttribute(System.Security.Cryptography.AsnEncodedData)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L213C13-L217C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L16707566C0-L217C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignerInfo.ComputeCounterSignature", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L271C13-L271C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L271C13-L271C87" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignerInfo.ComputeCounterSignature(System.Security.Cryptography.Pkcs.CmsSigner)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L276C13-L326C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L276C13-L326C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignerInfo.RemoveCounterSignature(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L330C13-L406C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L330C13-L406C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignerInfo.RemoveCounterSignature(System.Security.Cryptography.Pkcs.SignerInfo)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L410C13-L432C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L410C13-L432C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignerInfo.CheckSignature(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L435C13-L435C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L435C13-L435C82" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignerInfo.CheckSignature(System.Security.Cryptography.X509Certificates.X509Certificate2Collection,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L439C13-L457C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L439C13-L457C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignerInfo.CheckHash", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L461C13-L470C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L461C13-L470C10" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.SignerInfo.Version", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L20C30-L20C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L20C30-L20C34" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.SignerInfo.SignerIdentifier", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L21C53-L21C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L21C53-L21C57" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.SignerInfo.SignedAttributes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L62C13-L62C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L62C13-L62C78" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.SignerInfo.UnsignedAttributes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L65C13-L65C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L65C13-L65C82" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.SignerInfo.Certificate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L72C13-L72C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L72C13-L72C59" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.SignerInfo.CounterSignerInfos", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L79C17-L86C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L79C17-L86C63" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.SignerInfo.DigestAlgorithm", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L90C39-L90C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L90C39-L90C70" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.SignerInfo.SignatureAlgorithm", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L92C42-L92C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L92C42-L92C76" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.SignerInfo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.SignerInfoCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfoCollection.cs#L51C56-L51C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfoCollection.cs#L51C56-L51C86" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignerInfoCollection.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfoCollection.cs#L52C52-L52C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfoCollection.cs#L52C52-L52C82" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignerInfoCollection.CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfoCollection.cs#L56C13-L72C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfoCollection.cs#L56C13-L72C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignerInfoCollection.CopyTo(System.Security.Cryptography.Pkcs.SignerInfo[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfoCollection.cs#L76C62-L76C102" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfoCollection.cs#L76C62-L76C102" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.SignerInfoCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfoCollection.cs#L43C17-L45C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfoCollection.cs#L43C17-L45C44" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.SignerInfoCollection.Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfoCollection.cs#L49C29-L49C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfoCollection.cs#L49C29-L49C48" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.SignerInfoCollection.IsSynchronized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfoCollection.cs#L78C39-L78C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfoCollection.cs#L78C39-L78C44" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.SignerInfoCollection.SyncRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfoCollection.cs#L79C35-L79C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfoCollection.cs#L79C35-L79C39" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.SignerInfoCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfoCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfoCollection.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.SignerInfoEnumerator.System#Collections#IEnumerator#get_Current", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfoEnumerator.cs#L23C39-L23C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfoEnumerator.cs#L23C39-L23C62" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignerInfoEnumerator.MoveNext", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfoEnumerator.cs#L27C13-L33C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfoEnumerator.cs#L27C13-L33C25" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignerInfoEnumerator.Reset", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfoEnumerator.cs#L38C13-L39C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfoEnumerator.cs#L38C13-L39C10" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.SignerInfoEnumerator.Current", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfoEnumerator.cs#L22C38-L22C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfoEnumerator.cs#L22C38-L22C61" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.SignerInfoEnumerator.System#Collections#IEnumerator#Current", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfoEnumerator.cs#L23C39-L23C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfoEnumerator.cs#L23C39-L23C62" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.SignerInfoEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfoEnumerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfoEnumerator.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12Builder.AddSafeContentsEncrypted(System.Security.Cryptography.Pkcs.Pkcs12SafeContents,System.Byte[],System.Security.Cryptography.PbeParameters)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12Builder.cs#L25C13-L30C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12Builder.cs#L25C13-L30C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12Builder.AddSafeContentsEncrypted(System.Security.Cryptography.Pkcs.Pkcs12SafeContents,System.ReadOnlySpan{System.Byte},System.Security.Cryptography.PbeParameters)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12Builder.cs#L37C13-L68C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12Builder.cs#L37C13-L68C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12Builder.AddSafeContentsEncrypted(System.Security.Cryptography.Pkcs.Pkcs12SafeContents,System.String,System.Security.Cryptography.PbeParameters)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12Builder.cs#L75C13-L80C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12Builder.cs#L75C13-L80C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12Builder.AddSafeContentsEncrypted(System.Security.Cryptography.Pkcs.Pkcs12SafeContents,System.ReadOnlySpan{System.Char},System.Security.Cryptography.PbeParameters)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12Builder.cs#L87C13-L118C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12Builder.cs#L87C13-L118C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12Builder.AddSafeContentsUnencrypted(System.Security.Cryptography.Pkcs.Pkcs12SafeContents)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12Builder.cs#L122C13-L133C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12Builder.cs#L122C13-L133C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12Builder.Encode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12Builder.cs#L137C13-L142C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12Builder.cs#L137C13-L142C42" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12Builder.SealWithMac(System.String,System.Security.Cryptography.HashAlgorithmName,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12Builder.cs#L150C13-L155C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12Builder.cs#L150C13-L155C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12Builder.SealWithMac(System.ReadOnlySpan{System.Char},System.Security.Cryptography.HashAlgorithmName,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12Builder.cs#L162C13-L311C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12Builder.cs#L162C13-L311C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12Builder.SealWithoutIntegrity", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12Builder.cs#L315C13-L356C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12Builder.cs#L315C13-L356C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12Builder.TryEncode(System.Span{System.Byte},System.Int32@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12Builder.cs#L360C13-L373C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12Builder.cs#L360C13-L373C25" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12Builder.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12Builder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12Builder.cs" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Pkcs12Builder.IsSealed", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12Builder.cs#L18C33-L18C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12Builder.cs#L18C33-L18C53" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.Pkcs12Builder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12Builder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12Builder.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12CertBag.#ctor(System.Security.Cryptography.Oid,System.ReadOnlyMemory{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12CertBag.cs#L38C15-L48C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12CertBag.cs#L38C15-L48C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12CertBag.GetCertificateType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12CertBag.cs#L65C13-L67C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12CertBag.cs#L65C13-L67C43" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12CertBag.GetCertificate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12CertBag.cs#L74C13-L79C92" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12CertBag.cs#L74C13-L79C92" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Pkcs12CertBag.IsX509Certificate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12CertBag.cs#L16C41-L16C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12CertBag.cs#L16C41-L16C45" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Pkcs12CertBag.EncodedCertificate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12CertBag.cs#L70C59-L70C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12CertBag.cs#L70C59-L70C77" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.Pkcs12CertBag", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12CertBag.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12CertBag.cs" }, { "Members": [ { "DocsId": "F:System.Security.Cryptography.Pkcs.Pkcs12ConfidentialityMode.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12ConfidentialityMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12ConfidentialityMode.cs" }, { "DocsId": "F:System.Security.Cryptography.Pkcs.Pkcs12ConfidentialityMode.Unknown", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12ConfidentialityMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12ConfidentialityMode.cs" }, { "DocsId": "F:System.Security.Cryptography.Pkcs.Pkcs12ConfidentialityMode.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12ConfidentialityMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12ConfidentialityMode.cs" }, { "DocsId": "F:System.Security.Cryptography.Pkcs.Pkcs12ConfidentialityMode.Password", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12ConfidentialityMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12ConfidentialityMode.cs" }, { "DocsId": "F:System.Security.Cryptography.Pkcs.Pkcs12ConfidentialityMode.PublicKey", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12ConfidentialityMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12ConfidentialityMode.cs" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.Pkcs12ConfidentialityMode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12ConfidentialityMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12ConfidentialityMode.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12Info.VerifyMac(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12Info.cs#L29C13-L29C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12Info.cs#L29C13-L29C49" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12Info.VerifyMac(System.ReadOnlySpan{System.Char})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12Info.cs#L34C13-L43C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12Info.cs#L34C13-L43C73" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12Info.Decode(System.ReadOnlyMemory{System.Byte},System.Int32@,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12Info.cs#L52C13-L147C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12Info.cs#L52C13-L147C10" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Pkcs12Info.AuthenticatedSafe", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12Info.cs#L19C75-L19C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12Info.cs#L19C75-L19C79" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Pkcs12Info.IntegrityMode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12Info.cs#L20C52-L20C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12Info.cs#L20C52-L20C56" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.Pkcs12Info", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12Info.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12Info.cs" }, { "Members": [ { "DocsId": "F:System.Security.Cryptography.Pkcs.Pkcs12IntegrityMode.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12IntegrityMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12IntegrityMode.cs" }, { "DocsId": "F:System.Security.Cryptography.Pkcs.Pkcs12IntegrityMode.Unknown", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12IntegrityMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12IntegrityMode.cs" }, { "DocsId": "F:System.Security.Cryptography.Pkcs.Pkcs12IntegrityMode.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12IntegrityMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12IntegrityMode.cs" }, { "DocsId": "F:System.Security.Cryptography.Pkcs.Pkcs12IntegrityMode.Password", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12IntegrityMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12IntegrityMode.cs" }, { "DocsId": "F:System.Security.Cryptography.Pkcs.Pkcs12IntegrityMode.PublicKey", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12IntegrityMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12IntegrityMode.cs" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.Pkcs12IntegrityMode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12IntegrityMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12IntegrityMode.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12KeyBag.#ctor(System.ReadOnlyMemory{System.Byte},System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12KeyBag.cs#L9C15-L11C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12KeyBag.cs#L9C15-L11C10" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Pkcs12KeyBag.Pkcs8PrivateKey", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12KeyBag.cs#L13C56-L13C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12KeyBag.cs#L13C56-L13C71" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.Pkcs12KeyBag", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12KeyBag.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12KeyBag.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12SafeBag.#ctor(System.String,System.ReadOnlyMemory{System.Byte},System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeBag.cs#L36C9-L46C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeBag.cs#L36C9-L46C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12SafeBag.Encode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeBag.cs#L50C13-L51C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeBag.cs#L50C13-L51C36" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12SafeBag.GetBagId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeBag.cs#L56C13-L58C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeBag.cs#L56C13-L58C38" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12SafeBag.TryEncode(System.Span{System.Byte},System.Int32@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeBag.cs#L63C13-L64C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeBag.cs#L63C13-L64C68" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Pkcs12SafeBag.EncodedBagValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeBag.cs#L18C55-L18C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeBag.cs#L18C55-L18C59" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Pkcs12SafeBag.Attributes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeBag.cs#L24C17-L26C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeBag.cs#L24C17-L26C36" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.Pkcs12SafeBag", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeBag.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeBag.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12SafeContents.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L23C9-L26C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L23C9-L26C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12SafeContents.AddSafeBag(System.Security.Cryptography.Pkcs.Pkcs12SafeBag)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L60C13-L71C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L60C13-L71C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12SafeContents.AddCertificate(System.Security.Cryptography.X509Certificates.X509Certificate2)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L75C13-L85C24" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L75C13-L85C24" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12SafeContents.AddKeyUnencrypted(System.Security.Cryptography.AsymmetricAlgorithm)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L90C13-L101C24" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L90C13-L101C24" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12SafeContents.AddNestedContents(System.Security.Cryptography.Pkcs.Pkcs12SafeContents)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L106C13-L118C24" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L106C13-L118C24" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12SafeContents.AddShroudedKey(System.Security.Cryptography.AsymmetricAlgorithm,System.Byte[],System.Security.Cryptography.PbeParameters)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L126C13-L130C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L126C13-L130C32" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12SafeContents.AddShroudedKey(System.Security.Cryptography.AsymmetricAlgorithm,System.ReadOnlySpan{System.Byte},System.Security.Cryptography.PbeParameters)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L138C13-L149C24" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L138C13-L149C24" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12SafeContents.AddShroudedKey(System.Security.Cryptography.AsymmetricAlgorithm,System.String,System.Security.Cryptography.PbeParameters)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L157C13-L161C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L157C13-L161C32" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12SafeContents.AddShroudedKey(System.Security.Cryptography.AsymmetricAlgorithm,System.ReadOnlySpan{System.Char},System.Security.Cryptography.PbeParameters)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L169C13-L180C24" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L169C13-L180C24" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12SafeContents.AddSecret(System.Security.Cryptography.Oid,System.ReadOnlyMemory{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L185C13-L195C24" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L185C13-L195C24" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12SafeContents.Decrypt(System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L201C13-L202C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L201C13-L202C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12SafeContents.Decrypt(System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L206C13-L207C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L206C13-L207C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12SafeContents.Decrypt(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L212C13-L213C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L212C13-L213C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12SafeContents.Decrypt(System.ReadOnlySpan{System.Char})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L217C13-L218C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L217C13-L218C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12SafeContents.GetBags", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L283C13-L293C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L283C13-L293C39" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Pkcs12SafeContents.ConfidentialityMode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L20C64-L20C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L20C64-L20C68" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Pkcs12SafeContents.IsReadOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L21C34-L21C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L21C34-L21C38" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.Pkcs12SafeContents", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs" }, { "Members": [ { "DocsId": "P:System.Security.Cryptography.Pkcs.Pkcs12SafeContentsBag.SafeContents", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContentsBag.cs#L11C51-L11C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContentsBag.cs#L11C51-L11C55" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.Pkcs12SafeContentsBag", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContentsBag.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContentsBag.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12SecretBag.GetSecretType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SecretBag.cs#L39C13-L41C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SecretBag.cs#L39C13-L41C45" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Pkcs12SecretBag.SecretValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SecretBag.cs#L16C52-L16C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SecretBag.cs#L16C52-L16C72" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.Pkcs12SecretBag", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SecretBag.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SecretBag.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12ShroudedKeyBag.#ctor(System.ReadOnlyMemory{System.Byte},System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12ShroudedKeyBag.cs#L9C15-L11C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12ShroudedKeyBag.cs#L9C15-L11C10" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Pkcs12ShroudedKeyBag.EncryptedPkcs8PrivateKey", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12ShroudedKeyBag.cs#L13C65-L13C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12ShroudedKeyBag.cs#L13C65-L13C80" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.Pkcs12ShroudedKeyBag", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12ShroudedKeyBag.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12ShroudedKeyBag.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs8PrivateKeyInfo.#ctor(System.Security.Cryptography.Oid,System.Nullable{System.ReadOnlyMemory{System.Byte}},System.ReadOnlyMemory{System.Byte},System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs#L19C9-L40C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs#L19C9-L40C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs8PrivateKeyInfo.Create(System.Security.Cryptography.AsymmetricAlgorithm)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs#L58C13-L64C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs#L58C13-L64C57" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs8PrivateKeyInfo.Decode(System.ReadOnlyMemory{System.Byte},System.Int32@,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs#L74C17-L93C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs#L74C17-L93C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs8PrivateKeyInfo.Encode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs#L97C13-L98C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs#L97C13-L98C36" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs8PrivateKeyInfo.Encrypt(System.ReadOnlySpan{System.Char},System.Security.Cryptography.PbeParameters)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs#L103C13-L116C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs#L103C13-L116C40" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs8PrivateKeyInfo.Encrypt(System.ReadOnlySpan{System.Byte},System.Security.Cryptography.PbeParameters)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs#L122C13-L134C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs#L122C13-L134C36" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs8PrivateKeyInfo.TryEncode(System.Span{System.Byte},System.Int32@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs#L139C13-L140C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs#L139C13-L140C68" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs8PrivateKeyInfo.TryEncrypt(System.ReadOnlySpan{System.Char},System.Security.Cryptography.PbeParameters,System.Span{System.Byte},System.Int32@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs#L149C13-L161C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs#L149C13-L161C68" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs8PrivateKeyInfo.TryEncrypt(System.ReadOnlySpan{System.Byte},System.Security.Cryptography.PbeParameters,System.Span{System.Byte},System.Int32@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs#L170C13-L182C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs#L170C13-L182C68" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs8PrivateKeyInfo.DecryptAndDecode(System.ReadOnlySpan{System.Char},System.ReadOnlyMemory{System.Byte},System.Int32@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs#L190C13-L214C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs#L190C13-L214C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs8PrivateKeyInfo.DecryptAndDecode(System.ReadOnlySpan{System.Byte},System.ReadOnlyMemory{System.Byte},System.Int32@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs#L221C13-L245C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs#L221C13-L245C10" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Pkcs8PrivateKeyInfo.AlgorithmId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs#L14C34-L14C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs#L14C34-L14C38" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Pkcs8PrivateKeyInfo.AlgorithmParameters", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs#L15C60-L15C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs#L15C60-L15C64" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Pkcs8PrivateKeyInfo.Attributes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs#L16C68-L16C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs#L16C68-L16C72" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Pkcs8PrivateKeyInfo.PrivateKeyBytes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs#L17C55-L17C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs#L17C55-L17C59" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.Pkcs8PrivateKeyInfo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs9LocalKeyId.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9LocalKeyId.cs#L15C13-L17C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9LocalKeyId.cs#L15C13-L17C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs9LocalKeyId.#ctor(System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9LocalKeyId.cs#L21C15-L23C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9LocalKeyId.cs#L21C15-L23C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs9LocalKeyId.#ctor(System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9LocalKeyId.cs#L26C15-L31C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9LocalKeyId.cs#L26C15-L31C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs9LocalKeyId.CopyFrom(System.Security.Cryptography.AsnEncodedData)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9LocalKeyId.cs#L38C13-L40C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9LocalKeyId.cs#L38C13-L40C10" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Pkcs9LocalKeyId.KeyId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9LocalKeyId.cs#L34C13-L34C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9LocalKeyId.cs#L34C13-L34C43" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.Pkcs9LocalKeyId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9LocalKeyId.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9LocalKeyId.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.Rfc3161TimestampRequest.GetMessageHash", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L26C57-L26C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L26C57-L26C97" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Rfc3161TimestampRequest.GetNonce", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L30C52-L30C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L30C52-L30C69" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Rfc3161TimestampRequest.GetExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L35C13-L57C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L35C13-L57C25" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Rfc3161TimestampRequest.ProcessResponse(System.ReadOnlyMemory{System.Byte},System.Int32@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L62C13-L70C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L62C13-L70C48" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Rfc3161TimestampRequest.Encode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L148C13-L148C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L148C13-L148C51" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Rfc3161TimestampRequest.TryEncode(System.Span{System.Byte},System.Int32@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L153C13-L161C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L153C13-L161C25" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Rfc3161TimestampRequest.CreateFromSignerInfo(System.Security.Cryptography.Pkcs.SignerInfo,System.Security.Cryptography.HashAlgorithmName,System.Security.Cryptography.Oid,System.Nullable{System.ReadOnlyMemory{System.Byte}},System.Boolean,System.Security.Cryptography.X509Certificates.X509ExtensionCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L172C13-L188C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L172C13-L188C29" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Rfc3161TimestampRequest.CreateFromData(System.ReadOnlySpan{System.Byte},System.Security.Cryptography.HashAlgorithmName,System.Security.Cryptography.Oid,System.Nullable{System.ReadOnlyMemory{System.Byte}},System.Boolean,System.Security.Cryptography.X509Certificates.X509ExtensionCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L199C20-L212C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L199C20-L212C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Rfc3161TimestampRequest.CreateFromHash(System.ReadOnlyMemory{System.Byte},System.Security.Cryptography.HashAlgorithmName,System.Security.Cryptography.Oid,System.Nullable{System.ReadOnlyMemory{System.Byte}},System.Boolean,System.Security.Cryptography.X509Certificates.X509ExtensionCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L222C13-L230C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L222C13-L230C29" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Rfc3161TimestampRequest.CreateFromHash(System.ReadOnlyMemory{System.Byte},System.Security.Cryptography.Oid,System.Security.Cryptography.Oid,System.Nullable{System.ReadOnlyMemory{System.Byte}},System.Boolean,System.Security.Cryptography.X509Certificates.X509ExtensionCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L267C13-L341C15" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L267C13-L341C15" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Rfc3161TimestampRequest.TryDecode(System.ReadOnlyMemory{System.Byte},System.Security.Cryptography.Pkcs.Rfc3161TimestampRequest@,System.Int32@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L359C17-L383C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L359C17-L383C10" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Rfc3161TimestampRequest.Version", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L25C31-L25C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L25C31-L25C50" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Rfc3161TimestampRequest.HashAlgorithmId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L27C39-L27C127" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L27C39-L27C127" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Rfc3161TimestampRequest.RequestedPolicyId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L28C42-L28C142" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L28C42-L28C142" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Rfc3161TimestampRequest.RequestSignerCertificate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L29C49-L29C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L29C49-L29C68" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Rfc3161TimestampRequest.HasExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L31C38-L31C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L31C38-L31C72" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.Rfc3161TimestampRequest", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.Rfc3161TimestampToken.AsSignedCms", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampToken.cs#L40C43-L40C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampToken.cs#L40C43-L40C58" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Rfc3161TimestampToken.VerifySignatureForData(System.ReadOnlySpan{System.Byte},System.Security.Cryptography.X509Certificates.X509Certificate2@,System.Security.Cryptography.X509Certificates.X509Certificate2Collection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampToken.cs#L79C13-L94C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampToken.cs#L79C13-L94C26" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Rfc3161TimestampToken.VerifySignatureForHash(System.ReadOnlySpan{System.Byte},System.Security.Cryptography.HashAlgorithmName,System.Security.Cryptography.X509Certificates.X509Certificate2@,System.Security.Cryptography.X509Certificates.X509Certificate2Collection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampToken.cs#L103C13-L118C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampToken.cs#L103C13-L118C26" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Rfc3161TimestampToken.VerifySignatureForHash(System.ReadOnlySpan{System.Byte},System.Security.Cryptography.Oid,System.Security.Cryptography.X509Certificates.X509Certificate2@,System.Security.Cryptography.X509Certificates.X509Certificate2Collection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampToken.cs#L127C13-L151C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampToken.cs#L127C13-L151C26" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Rfc3161TimestampToken.VerifySignatureForSignerInfo(System.Security.Cryptography.Pkcs.SignerInfo,System.Security.Cryptography.X509Certificates.X509Certificate2@,System.Security.Cryptography.X509Certificates.X509Certificate2Collection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampToken.cs#L159C13-L167C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampToken.cs#L159C13-L167C34" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Rfc3161TimestampToken.TryDecode(System.ReadOnlyMemory{System.Byte},System.Security.Cryptography.Pkcs.Rfc3161TimestampToken@,System.Int32@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampToken.cs#L298C13-L428C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampToken.cs#L298C13-L428C10" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Rfc3161TimestampToken.TokenInfo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampToken.cs#L23C54-L23C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampToken.cs#L23C54-L23C58" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.Rfc3161TimestampToken", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampToken.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampToken.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.#ctor(System.Security.Cryptography.Oid,System.Security.Cryptography.Oid,System.ReadOnlyMemory{System.Byte},System.ReadOnlyMemory{System.Byte},System.DateTimeOffset,System.Nullable{System.Int64},System.Boolean,System.Nullable{System.ReadOnlyMemory{System.Byte}},System.Nullable{System.ReadOnlyMemory{System.Byte}},System.Security.Cryptography.X509Certificates.X509ExtensionCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L40C9-L69C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L40C9-L69C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.GetMessageHash", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L99C57-L99C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L99C57-L99C97" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.GetSerialNumber", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L105C58-L105C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L105C58-L105C82" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.GetNonce", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L130C52-L130C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L130C52-L130C69" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.GetTimestampAuthorityName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L149C13-L164C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L149C13-L164C40" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.GetExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L173C13-L195C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L173C13-L195C25" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.Encode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L204C13-L204C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L204C13-L204C51" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.TryEncode(System.Span{System.Byte},System.Int32@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L215C13-L223C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L215C13-L223C25" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.TryDecode(System.ReadOnlyMemory{System.Byte},System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo@,System.Int32@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L238C13-L246C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L238C13-L246C26" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.Version", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L81C31-L81C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L81C31-L81C50" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.PolicyId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L87C32-L87C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L87C32-L87C82" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.HashAlgorithmId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L93C39-L93C127" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L93C39-L93C127" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.Timestamp", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L111C44-L111C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L111C44-L111C63" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.AccuracyInMicroseconds", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L118C48-L118C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L118C48-L118C81" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.IsOrdering", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L124C35-L124C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L124C35-L124C55" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.HasExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L136C38-L136C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L136C38-L136C72" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/System.Security.Cryptography.ProtectedData.json b/xml/SourceLinkInformation/net-8.0/System.Security.Cryptography.ProtectedData.json index 6cd23d434f9..349275c992e 100644 --- a/xml/SourceLinkInformation/net-8.0/System.Security.Cryptography.ProtectedData.json +++ b/xml/SourceLinkInformation/net-8.0/System.Security.Cryptography.ProtectedData.json @@ -1,39 +1,38 @@ { "Assembly": "System.Security.Cryptography.ProtectedData", - "GUID": "9C8656A352FD4519B7B8388EA18E5144FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "4982C3B60B8947C9B1771CA83F48E0C2FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "F:System.Security.Cryptography.DataProtectionScope.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.ProtectedData/src/System/Security/Cryptography/DataProtectionScope.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.ProtectedData/src/System/Security/Cryptography/DataProtectionScope.cs" }, { "DocsId": "F:System.Security.Cryptography.DataProtectionScope.CurrentUser", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.ProtectedData/src/System/Security/Cryptography/DataProtectionScope.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.ProtectedData/src/System/Security/Cryptography/DataProtectionScope.cs" }, { "DocsId": "F:System.Security.Cryptography.DataProtectionScope.LocalMachine", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.ProtectedData/src/System/Security/Cryptography/DataProtectionScope.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.ProtectedData/src/System/Security/Cryptography/DataProtectionScope.cs" } ], "DocsId": "T:System.Security.Cryptography.DataProtectionScope", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.ProtectedData/src/System/Security/Cryptography/DataProtectionScope.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.ProtectedData/src/System/Security/Cryptography/DataProtectionScope.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.ProtectedData.Protect(System.Byte[],System.Byte[],System.Security.Cryptography.DataProtectionScope)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.ProtectedData/src/System/Security/Cryptography/ProtectedData.cs#L17C13-L22C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.ProtectedData/src/System/Security/Cryptography/ProtectedData.cs#L17C13-L22C88" }, { "DocsId": "M:System.Security.Cryptography.ProtectedData.Unprotect(System.Byte[],System.Byte[],System.Security.Cryptography.DataProtectionScope)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.ProtectedData/src/System/Security/Cryptography/ProtectedData.cs#L27C13-L32C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.ProtectedData/src/System/Security/Cryptography/ProtectedData.cs#L27C13-L32C94" } ], "DocsId": "T:System.Security.Cryptography.ProtectedData", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.ProtectedData/src/System/Security/Cryptography/ProtectedData.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.ProtectedData/src/System/Security/Cryptography/ProtectedData.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/System.Security.Cryptography.Xml.json b/xml/SourceLinkInformation/net-8.0/System.Security.Cryptography.Xml.json index 198f1c93bb2..eec057029d8 100644 --- a/xml/SourceLinkInformation/net-8.0/System.Security.Cryptography.Xml.json +++ b/xml/SourceLinkInformation/net-8.0/System.Security.Cryptography.Xml.json @@ -1,1925 +1,1924 @@ { "Assembly": "System.Security.Cryptography.Xml", - "GUID": "2A8142C3E7A64B32A8FDE5D1CB9518F6FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "52E31B82E01B44579F9696A5926EEF5FFFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.CipherData.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherData.cs#L15C9-L15C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherData.cs#L15C9-L15C32" }, { "DocsId": "M:System.Security.Cryptography.Xml.CipherData.#ctor(System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherData.cs#L17C9-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherData.cs#L17C9-L20C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.CipherData.#ctor(System.Security.Cryptography.Xml.CipherReference)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherData.cs#L22C9-L25C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherData.cs#L22C9-L25C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.CipherData.GetXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherData.cs#L70C13-L74C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherData.cs#L70C13-L74C37" }, { "DocsId": "M:System.Security.Cryptography.Xml.CipherData.LoadXml(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherData.cs#L101C13-L129C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherData.cs#L101C13-L129C10" }, { "DocsId": "P:System.Security.Cryptography.Xml.CipherData.CipherReference", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherData.cs#L39C19-L39C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherData.cs#L39C19-L39C43" }, { "DocsId": "P:System.Security.Cryptography.Xml.CipherData.CipherValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherData.cs#L55C19-L55C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherData.cs#L55C19-L55C39" } ], "DocsId": "T:System.Security.Cryptography.Xml.CipherData", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherData.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherData.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.CipherReference.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherReference.cs#L13C36-L16C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherReference.cs#L13C36-L16C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.CipherReference.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherReference.cs#L18C46-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherReference.cs#L18C46-L21C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.CipherReference.#ctor(System.String,System.Security.Cryptography.Xml.TransformChain)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherReference.cs#L23C77-L26C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherReference.cs#L23C77-L26C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.CipherReference.GetXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherReference.cs#L45C13-L49C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherReference.cs#L45C13-L49C37" }, { "DocsId": "M:System.Security.Cryptography.Xml.CipherReference.LoadXml(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherReference.cs#L73C13-L91C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherReference.cs#L73C13-L91C10" } ], "DocsId": "T:System.Security.Cryptography.Xml.CipherReference", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherReference.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherReference.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.CryptoSignedXmlRecursionException.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CryptoSignedXmlRecursionException.cs#L20C54-L20C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CryptoSignedXmlRecursionException.cs#L20C54-L20C64" }, { "DocsId": "M:System.Security.Cryptography.Xml.CryptoSignedXmlRecursionException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CryptoSignedXmlRecursionException.cs#L21C68-L21C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CryptoSignedXmlRecursionException.cs#L21C68-L21C85" }, { "DocsId": "M:System.Security.Cryptography.Xml.CryptoSignedXmlRecursionException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CryptoSignedXmlRecursionException.cs#L22C85-L22C109" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CryptoSignedXmlRecursionException.cs#L22C85-L22C109" }, { "DocsId": "M:System.Security.Cryptography.Xml.CryptoSignedXmlRecursionException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CryptoSignedXmlRecursionException.cs#L27C105-L27C128" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CryptoSignedXmlRecursionException.cs#L27C105-L27C128" } ], "DocsId": "T:System.Security.Cryptography.Xml.CryptoSignedXmlRecursionException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CryptoSignedXmlRecursionException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CryptoSignedXmlRecursionException.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.DataObject.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataObject.cs#L21C9-L25C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataObject.cs#L21C9-L25C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.DataObject.#ctor(System.String,System.String,System.String,System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataObject.cs#L27C9-L40C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataObject.cs#L27C9-L40C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.DataObject.GetXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataObject.cs#L109C13-L113C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataObject.cs#L109C13-L113C37" }, { "DocsId": "M:System.Security.Cryptography.Xml.DataObject.LoadXml(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataObject.cs#L140C13-L156C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataObject.cs#L140C13-L156C10" }, { "DocsId": "P:System.Security.Cryptography.Xml.DataObject.Id", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataObject.cs#L48C19-L48C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataObject.cs#L48C19-L48C30" }, { "DocsId": "P:System.Security.Cryptography.Xml.DataObject.MimeType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataObject.cs#L58C19-L58C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataObject.cs#L58C19-L58C36" }, { "DocsId": "P:System.Security.Cryptography.Xml.DataObject.Encoding", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataObject.cs#L68C19-L68C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataObject.cs#L68C19-L68C36" }, { "DocsId": "P:System.Security.Cryptography.Xml.DataObject.Data", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataObject.cs#L78C19-L78C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataObject.cs#L78C19-L78C34" } ], "DocsId": "T:System.Security.Cryptography.Xml.DataObject", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataObject.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataObject.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.DataReference.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataReference.cs#L8C34-L11C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataReference.cs#L8C34-L11C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.DataReference.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataReference.cs#L13C44-L16C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataReference.cs#L13C44-L16C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.DataReference.#ctor(System.String,System.Security.Cryptography.Xml.TransformChain)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataReference.cs#L18C75-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataReference.cs#L18C75-L21C10" } ], "DocsId": "T:System.Security.Cryptography.Xml.DataReference", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataReference.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataReference.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.DSAKeyValue.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DSAKeyValue.cs#L21C9-L24C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DSAKeyValue.cs#L21C9-L24C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.DSAKeyValue.#ctor(System.Security.Cryptography.DSA)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DSAKeyValue.cs#L26C9-L34C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DSAKeyValue.cs#L26C9-L34C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.DSAKeyValue.GetXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DSAKeyValue.cs#L69C13-L71C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DSAKeyValue.cs#L69C13-L71C40" }, { "DocsId": "M:System.Security.Cryptography.Xml.DSAKeyValue.LoadXml(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DSAKeyValue.cs#L156C13-L213C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DSAKeyValue.cs#L156C13-L213C10" }, { "DocsId": "P:System.Security.Cryptography.Xml.DSAKeyValue.Key", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DSAKeyValue.cs#L42C20-L42C24" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DSAKeyValue.cs#L42C20-L42C24" } ], "DocsId": "T:System.Security.Cryptography.Xml.DSAKeyValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DSAKeyValue.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DSAKeyValue.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedData.LoadXml(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedData.cs#L15C13-L69C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedData.cs#L15C13-L69C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedData.GetXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedData.cs#L73C13-L77C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedData.cs#L73C13-L77C37" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedData.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedData.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedData.cs" } ], "DocsId": "T:System.Security.Cryptography.Xml.EncryptedData", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedData.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedData.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedKey.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedKey.cs#L15C9-L15C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedKey.cs#L15C9-L15C34" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedKey.AddReference(System.Security.Cryptography.Xml.DataReference)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedKey.cs#L42C13-L43C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedKey.cs#L42C13-L43C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedKey.AddReference(System.Security.Cryptography.Xml.KeyReference)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedKey.cs#L47C13-L48C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedKey.cs#L47C13-L48C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedKey.LoadXml(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedKey.cs#L54C13-L144C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedKey.cs#L54C13-L144C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedKey.GetXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedKey.cs#L148C13-L152C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedKey.cs#L148C13-L152C37" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptedKey.Recipient", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedKey.cs#L20C20-L20C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedKey.cs#L20C20-L20C47" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptedKey.CarriedKeyName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedKey.cs#L30C19-L30C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedKey.cs#L30C19-L30C42" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptedKey.ReferenceList", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedKey.cs#L38C47-L38C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedKey.cs#L38C47-L38C85" } ], "DocsId": "T:System.Security.Cryptography.Xml.EncryptedKey", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedKey.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedKey.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedReference.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedReference.cs#L16C42-L18C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedReference.cs#L16C42-L18C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedReference.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedReference.cs#L20C52-L22C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedReference.cs#L20C52-L22C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedReference.#ctor(System.String,System.Security.Cryptography.Xml.TransformChain)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedReference.cs#L24C9-L29C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedReference.cs#L24C9-L29C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedReference.AddTransform(System.Security.Cryptography.Xml.Transform)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedReference.cs#L57C13-L58C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedReference.cs#L57C13-L58C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedReference.GetXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedReference.cs#L81C13-L85C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedReference.cs#L81C13-L85C37" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedReference.LoadXml(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedReference.cs#L109C13-L130C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedReference.cs#L109C13-L130C10" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptedReference.Uri", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedReference.cs#L33C19-L33C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedReference.cs#L33C19-L33C31" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptedReference.TransformChain", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedReference.cs#L47C20-L47C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedReference.cs#L47C20-L47C60" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptedReference.ReferenceType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedReference.cs#L62C19-L62C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedReference.cs#L62C19-L62C41" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptedReference.CacheValid", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedReference.cs#L75C17-L75C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedReference.cs#L75C17-L75C45" } ], "DocsId": "T:System.Security.Cryptography.Xml.EncryptedReference", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedReference.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedReference.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedType.AddProperty(System.Security.Cryptography.Xml.EncryptionProperty)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs#L91C13-L92C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs#L91C13-L92C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedType.LoadXml(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedType.GetXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedType.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptedType.Id", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs#L32C19-L32C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs#L32C19-L32C30" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptedType.Type", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs#L42C19-L42C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs#L42C19-L42C32" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptedType.MimeType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs#L52C19-L52C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs#L52C19-L52C36" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptedType.Encoding", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs#L62C19-L62C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs#L62C19-L62C36" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptedType.KeyInfo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs#L73C20-L73C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs#L73C20-L73C46" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptedType.EncryptionMethod", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs#L79C19-L79C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs#L79C19-L79C44" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptedType.EncryptionProperties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs#L87C77-L87C122" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs#L87C77-L87C122" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptedType.CipherData", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs#L96C20-L96C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs#L96C20-L96C52" } ], "DocsId": "T:System.Security.Cryptography.Xml.EncryptedType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedXml.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L81C33-L81C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L81C33-L81C60" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedXml.#ctor(System.Xml.XmlDocument)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L85C53-L85C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L85C53-L85C77" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedXml.#ctor(System.Xml.XmlDocument,System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L89C9-L102C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L89C9-L102C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedXml.GetIdElement(System.Xml.XmlDocument,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L266C13-L266C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L266C13-L266C69" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedXml.GetDecryptionIV(System.Security.Cryptography.Xml.EncryptedData,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L272C13-L303C23" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L272C13-L303C23" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedXml.GetDecryptionKey(System.Security.Cryptography.Xml.EncryptedData,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L312C13-L393C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L312C13-L393C25" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedXml.DecryptEncryptedKey(System.Security.Cryptography.Xml.EncryptedKey)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L401C13-L513C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L401C13-L513C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedXml.AddKeyNameMapping(System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L523C13-L535C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L523C13-L535C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedXml.ClearKeyNameMappings", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L539C13-L540C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L539C13-L540C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedXml.Encrypt(System.Xml.XmlElement,System.Security.Cryptography.X509Certificates.X509Certificate2)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L548C13-L585C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L548C13-L585C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedXml.Encrypt(System.Xml.XmlElement,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L594C13-L668C23" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L594C13-L668C23" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedXml.DecryptDocument", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L679C13-L696C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L679C13-L696C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedXml.EncryptData(System.Byte[],System.Security.Cryptography.SymmetricAlgorithm)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L701C13-L742C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L701C13-L742C27" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedXml.EncryptData(System.Xml.XmlElement,System.Security.Cryptography.SymmetricAlgorithm,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L748C13-L758C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L748C13-L758C63" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedXml.DecryptData(System.Security.Cryptography.Xml.EncryptedData,System.Security.Cryptography.SymmetricAlgorithm)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L764C13-L809C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L764C13-L809C27" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedXml.ReplaceData(System.Xml.XmlElement,System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L815C13-L880C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L815C13-L880C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedXml.ReplaceElement(System.Xml.XmlElement,System.Security.Cryptography.Xml.EncryptedData,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L889C13-L914C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L889C13-L914C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedXml.EncryptKey(System.Byte[],System.Security.Cryptography.SymmetricAlgorithm)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L919C13-L941C102" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L919C13-L941C102" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedXml.EncryptKey(System.Byte[],System.Security.Cryptography.RSA,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L949C13-L966C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L949C13-L966C64" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedXml.DecryptKey(System.Byte[],System.Security.Cryptography.SymmetricAlgorithm)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L973C13-L995C102" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L973C13-L995C102" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedXml.DecryptKey(System.Byte[],System.Security.Cryptography.RSA,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L1002C13-L1019C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L1002C13-L1019C67" }, { "DocsId": "F:System.Security.Cryptography.Xml.EncryptedXml.XmlEncNamespaceUrl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.EncryptedXml.XmlEncElementUrl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.EncryptedXml.XmlEncElementContentUrl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.EncryptedXml.XmlEncEncryptedKeyUrl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.EncryptedXml.XmlEncDESUrl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.EncryptedXml.XmlEncTripleDESUrl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.EncryptedXml.XmlEncAES128Url", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.EncryptedXml.XmlEncAES256Url", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.EncryptedXml.XmlEncAES192Url", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.EncryptedXml.XmlEncRSA15Url", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.EncryptedXml.XmlEncRSAOAEPUrl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.EncryptedXml.XmlEncTripleDESKeyWrapUrl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.EncryptedXml.XmlEncAES128KeyWrapUrl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.EncryptedXml.XmlEncAES256KeyWrapUrl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.EncryptedXml.XmlEncAES192KeyWrapUrl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.EncryptedXml.XmlEncSHA256Url", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.EncryptedXml.XmlEncSHA512Url", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptedXml.XmlDSigSearchDepth", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L125C17-L125C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L125C17-L125C44" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptedXml.DocumentEvidence", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L136C19-L136C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L136C19-L136C36" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptedXml.Resolver", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L143C19-L143C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L143C19-L143C39" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptedXml.Padding", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L151C19-L151C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L151C19-L151C35" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptedXml.Mode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L159C19-L159C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L159C19-L159C32" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptedXml.Encoding", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L166C19-L166C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L166C19-L166C36" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptedXml.Recipient", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L175C20-L175C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L175C20-L175C47" } ], "DocsId": "T:System.Security.Cryptography.Xml.EncryptedXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionMethod.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionMethod.cs#L15C9-L18C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionMethod.cs#L15C9-L18C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionMethod.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionMethod.cs#L20C9-L24C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionMethod.cs#L20C9-L24C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionMethod.GetXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionMethod.cs#L59C13-L63C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionMethod.cs#L59C13-L63C37" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionMethod.LoadXml(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionMethod.cs#L84C13-L103C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionMethod.cs#L84C13-L103C10" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptionMethod.KeySize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionMethod.cs#L37C19-L37C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionMethod.cs#L37C19-L37C35" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptionMethod.KeyAlgorithm", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionMethod.cs#L49C19-L49C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionMethod.cs#L49C19-L49C37" } ], "DocsId": "T:System.Security.Cryptography.Xml.EncryptionMethod", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionMethod.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionMethod.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionProperty.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionProperty.cs#L17C9-L17C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionProperty.cs#L17C9-L17C40" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionProperty.#ctor(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionProperty.cs#L19C9-L31C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionProperty.cs#L19C9-L31C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionProperty.GetXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionProperty.cs#L70C13-L74C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionProperty.cs#L70C13-L74C37" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionProperty.LoadXml(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionProperty.cs#L84C13-L97C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionProperty.cs#L84C13-L97C10" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptionProperty.Id", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionProperty.cs#L35C19-L35C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionProperty.cs#L35C19-L35C30" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptionProperty.Target", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionProperty.cs#L40C19-L40C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionProperty.cs#L40C19-L40C34" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptionProperty.PropertyElement", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionProperty.cs#L46C19-L46C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionProperty.cs#L46C19-L46C36" } ], "DocsId": "T:System.Security.Cryptography.Xml.EncryptionProperty", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionProperty.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionProperty.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionPropertyCollection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L12C9-L15C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L12C9-L15C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionPropertyCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L19C13-L19C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L19C13-L19C43" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionPropertyCollection.System#Collections#IList#Add(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L30C13-L33C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L30C13-L33C38" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionPropertyCollection.Add(System.Security.Cryptography.Xml.EncryptionProperty)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L38C13-L38C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L38C13-L38C38" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionPropertyCollection.Clear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L43C13-L44C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L43C13-L44C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionPropertyCollection.System#Collections#IList#Contains(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L49C13-L52C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L49C13-L52C43" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionPropertyCollection.Contains(System.Security.Cryptography.Xml.EncryptionProperty)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L57C13-L57C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L57C13-L57C43" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionPropertyCollection.System#Collections#IList#IndexOf(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L63C13-L66C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L63C13-L66C42" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionPropertyCollection.IndexOf(System.Security.Cryptography.Xml.EncryptionProperty)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L71C13-L71C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L71C13-L71C42" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionPropertyCollection.System#Collections#IList#Insert(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L77C13-L81C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L77C13-L81C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionPropertyCollection.Insert(System.Int32,System.Security.Cryptography.Xml.EncryptionProperty)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L85C13-L86C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L85C13-L86C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionPropertyCollection.System#Collections#IList#Remove(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L91C13-L95C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L91C13-L95C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionPropertyCollection.Remove(System.Security.Cryptography.Xml.EncryptionProperty)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L99C13-L100C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L99C13-L100C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionPropertyCollection.RemoveAt(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L104C13-L105C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L104C13-L105C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionPropertyCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L119C13-L119C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L119C13-L119C55" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionPropertyCollection.System#Collections#IList#get_Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L138C19-L138C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L138C19-L138C40" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionPropertyCollection.System#Collections#IList#set_Item(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L141C17-L145C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L141C17-L145C14" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionPropertyCollection.CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L150C13-L151C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L150C13-L151C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionPropertyCollection.CopyTo(System.Security.Cryptography.Xml.EncryptionProperty[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L155C13-L156C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L155C13-L156C10" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptionPropertyCollection.Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L24C19-L24C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L24C19-L24C39" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptionPropertyCollection.IsFixedSize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L109C19-L109C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L109C19-L109C45" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptionPropertyCollection.IsReadOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L114C19-L114C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L114C19-L114C44" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptionPropertyCollection.ItemOf(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L127C17-L127C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L127C17-L127C66" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptionPropertyCollection.System#Collections#IList#Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L138C19-L138C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L138C19-L138C40" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptionPropertyCollection.SyncRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L160C19-L160C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L160C19-L160C42" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptionPropertyCollection.IsSynchronized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L165C19-L165C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L165C19-L165C48" } ], "DocsId": "T:System.Security.Cryptography.Xml.EncryptionPropertyCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.IRelDecryptor.Decrypt(System.Security.Cryptography.Xml.EncryptionMethod,System.Security.Cryptography.Xml.KeyInfo,System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/IRelDecryptor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/IRelDecryptor.cs" } ], "DocsId": "T:System.Security.Cryptography.Xml.IRelDecryptor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/IRelDecryptor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/IRelDecryptor.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfo.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfo.cs#L19C9-L22C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfo.cs#L19C9-L22C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfo.GetXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfo.cs#L36C13-L38C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfo.cs#L36C13-L38C40" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfo.LoadXml(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfo.cs#L65C13-L113C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfo.cs#L65C13-L113C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfo.AddClause(System.Security.Cryptography.Xml.KeyInfoClause)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfo.cs#L126C13-L127C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfo.cs#L126C13-L127C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfo.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfo.cs#L131C13-L131C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfo.cs#L131C13-L131C52" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfo.GetEnumerator(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfo.cs#L136C13-L148C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfo.cs#L136C13-L148C50" }, { "DocsId": "P:System.Security.Cryptography.Xml.KeyInfo.Id", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfo.cs#L30C19-L30C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfo.cs#L30C19-L30C30" }, { "DocsId": "P:System.Security.Cryptography.Xml.KeyInfo.Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfo.cs#L117C19-L117C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfo.cs#L117C19-L117C48" } ], "DocsId": "T:System.Security.Cryptography.Xml.KeyInfo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfo.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfo.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoClause.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoClause.cs#L14C9-L14C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoClause.cs#L14C9-L14C38" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoClause.GetXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoClause.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoClause.cs" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoClause.LoadXml(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoClause.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoClause.cs" } ], "DocsId": "T:System.Security.Cryptography.Xml.KeyInfoClause", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoClause.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoClause.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoEncryptedKey.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoEncryptedKey.cs#L15C9-L15C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoEncryptedKey.cs#L15C9-L15C41" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoEncryptedKey.#ctor(System.Security.Cryptography.Xml.EncryptedKey)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoEncryptedKey.cs#L17C9-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoEncryptedKey.cs#L17C9-L20C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoEncryptedKey.GetXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoEncryptedKey.cs#L30C13-L32C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoEncryptedKey.cs#L30C13-L32C43" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoEncryptedKey.LoadXml(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoEncryptedKey.cs#L44C13-L46C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoEncryptedKey.cs#L44C13-L46C10" }, { "DocsId": "P:System.Security.Cryptography.Xml.KeyInfoEncryptedKey.EncryptedKey", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoEncryptedKey.cs#L24C19-L24C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoEncryptedKey.cs#L24C19-L24C40" } ], "DocsId": "T:System.Security.Cryptography.Xml.KeyInfoEncryptedKey", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoEncryptedKey.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoEncryptedKey.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoName.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoName.cs#L16C32-L16C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoName.cs#L16C32-L16C46" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoName.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoName.cs#L18C9-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoName.cs#L18C9-L21C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoName.GetXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoName.cs#L39C13-L41C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoName.cs#L39C13-L41C40" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoName.LoadXml(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoName.cs#L53C13-L60C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoName.cs#L53C13-L60C10" }, { "DocsId": "P:System.Security.Cryptography.Xml.KeyInfoName.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoName.cs#L29C19-L29C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoName.cs#L29C19-L29C35" } ], "DocsId": "T:System.Security.Cryptography.Xml.KeyInfoName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoName.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoName.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoNode.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoNode.cs#L17C9-L17C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoNode.cs#L17C9-L17C33" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoNode.#ctor(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoNode.cs#L19C9-L22C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoNode.cs#L19C9-L22C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoNode.GetXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoNode.cs#L40C13-L42C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoNode.cs#L40C13-L42C40" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoNode.LoadXml(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoNode.cs#L52C13-L53C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoNode.cs#L52C13-L53C10" }, { "DocsId": "P:System.Security.Cryptography.Xml.KeyInfoNode.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoNode.cs#L30C19-L30C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoNode.cs#L30C19-L30C32" } ], "DocsId": "T:System.Security.Cryptography.Xml.KeyInfoNode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoNode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoNode.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoRetrievalMethod.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoRetrievalMethod.cs#L17C9-L17C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoRetrievalMethod.cs#L17C9-L17C44" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoRetrievalMethod.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoRetrievalMethod.cs#L19C9-L22C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoRetrievalMethod.cs#L19C9-L22C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoRetrievalMethod.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoRetrievalMethod.cs#L24C9-L28C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoRetrievalMethod.cs#L24C9-L28C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoRetrievalMethod.GetXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoRetrievalMethod.cs#L48C13-L50C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoRetrievalMethod.cs#L48C13-L50C40" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoRetrievalMethod.LoadXml(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoRetrievalMethod.cs#L68C13-L75C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoRetrievalMethod.cs#L68C13-L75C10" }, { "DocsId": "P:System.Security.Cryptography.Xml.KeyInfoRetrievalMethod.Uri", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoRetrievalMethod.cs#L36C19-L36C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoRetrievalMethod.cs#L36C19-L36C31" }, { "DocsId": "P:System.Security.Cryptography.Xml.KeyInfoRetrievalMethod.Type", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoRetrievalMethod.cs#L42C19-L42C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoRetrievalMethod.cs#L42C19-L42C32" } ], "DocsId": "T:System.Security.Cryptography.Xml.KeyInfoRetrievalMethod", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoRetrievalMethod.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoRetrievalMethod.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoX509Data.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L29C9-L29C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L29C9-L29C37" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoX509Data.#ctor(System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L31C9-L35C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L31C9-L35C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoX509Data.#ctor(System.Security.Cryptography.X509Certificates.X509Certificate)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L37C9-L40C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L37C9-L40C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoX509Data.#ctor(System.Security.Cryptography.X509Certificates.X509Certificate,System.Security.Cryptography.X509Certificates.X509IncludeOption)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L42C9-L94C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L42C9-L94C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoX509Data.AddCertificate(System.Security.Cryptography.X509Certificates.X509Certificate)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L107C13-L116C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L107C13-L116C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoX509Data.AddSubjectKeyId(System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L125C13-L127C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L125C13-L127C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoX509Data.AddSubjectKeyId(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L131C13-L133C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L131C13-L133C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoX509Data.AddSubjectName(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L142C13-L144C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L142C13-L144C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoX509Data.AddIssuerSerial(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L153C13-L165C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L153C13-L174C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoX509Data.GetXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L199C13-L201C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L208C13-L210C40" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoX509Data.LoadXml(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L265C13-L312C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L274C13-L321C10" }, { "DocsId": "P:System.Security.Cryptography.Xml.KeyInfoX509Data.Certificates", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L102C19-L102C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L102C19-L102C40" }, { "DocsId": "P:System.Security.Cryptography.Xml.KeyInfoX509Data.SubjectKeyIds", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L120C19-L120C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L120C19-L120C41" }, { "DocsId": "P:System.Security.Cryptography.Xml.KeyInfoX509Data.SubjectNames", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L137C19-L137C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L137C19-L137C40" }, { "DocsId": "P:System.Security.Cryptography.Xml.KeyInfoX509Data.IssuerSerials", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L148C19-L148C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L148C19-L148C41" }, { "DocsId": "P:System.Security.Cryptography.Xml.KeyInfoX509Data.CRL", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L176C19-L176C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L185C19-L185C31" } ], "DocsId": "T:System.Security.Cryptography.Xml.KeyInfoX509Data", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.KeyReference.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyReference.cs#L8C33-L11C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyReference.cs#L8C33-L11C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyReference.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyReference.cs#L13C43-L16C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyReference.cs#L13C43-L16C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyReference.#ctor(System.String,System.Security.Cryptography.Xml.TransformChain)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyReference.cs#L18C74-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyReference.cs#L18C74-L21C10" } ], "DocsId": "T:System.Security.Cryptography.Xml.KeyReference", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyReference.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyReference.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.Reference.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L32C9-L39C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L32C9-L39C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.Reference.#ctor(System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L41C9-L48C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L41C9-L48C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.Reference.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L50C9-L58C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L50C9-L58C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.Reference.GetXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L160C13-L164C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L160C13-L164C37" }, { "DocsId": "M:System.Security.Cryptography.Xml.Reference.LoadXml(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L211C13-L339C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L211C13-L339C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.Reference.AddTransform(System.Security.Cryptography.Xml.Transform)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L343C13-L350C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L343C13-L350C10" }, { "DocsId": "P:System.Security.Cryptography.Xml.Reference.Id", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L75C19-L75C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L75C19-L75C30" }, { "DocsId": "P:System.Security.Cryptography.Xml.Reference.Uri", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L81C19-L81C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L81C19-L81C31" }, { "DocsId": "P:System.Security.Cryptography.Xml.Reference.Type", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L91C19-L91C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L91C19-L91C32" }, { "DocsId": "P:System.Security.Cryptography.Xml.Reference.DigestMethod", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L101C19-L101C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L101C19-L101C40" }, { "DocsId": "P:System.Security.Cryptography.Xml.Reference.DigestValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L111C19-L111C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L111C19-L111C39" }, { "DocsId": "P:System.Security.Cryptography.Xml.Reference.TransformChain", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L121C20-L121C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L121C20-L121C60" } ], "DocsId": "T:System.Security.Cryptography.Xml.Reference", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.ReferenceList.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L12C9-L15C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L12C9-L15C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.ReferenceList.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L19C13-L19C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L19C13-L19C48" }, { "DocsId": "M:System.Security.Cryptography.Xml.ReferenceList.Add(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L30C13-L38C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L30C13-L38C43" }, { "DocsId": "M:System.Security.Cryptography.Xml.ReferenceList.Clear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L44C13-L45C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L44C13-L45C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.ReferenceList.Contains(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L49C13-L49C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L49C13-L49C48" }, { "DocsId": "M:System.Security.Cryptography.Xml.ReferenceList.IndexOf(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L54C13-L54C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L54C13-L54C47" }, { "DocsId": "M:System.Security.Cryptography.Xml.ReferenceList.Insert(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L59C13-L68C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L59C13-L68C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.ReferenceList.Remove(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L73C13-L74C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L73C13-L74C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.ReferenceList.RemoveAt(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L78C13-L79C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L78C13-L79C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.ReferenceList.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L83C13-L83C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L83C13-L83C60" }, { "DocsId": "M:System.Security.Cryptography.Xml.ReferenceList.System#Collections#IList#get_Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L102C19-L102C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L102C19-L102C45" }, { "DocsId": "M:System.Security.Cryptography.Xml.ReferenceList.System#Collections#IList#set_Item(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L105C17-L112C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L105C17-L112C14" }, { "DocsId": "M:System.Security.Cryptography.Xml.ReferenceList.CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L117C13-L118C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L117C13-L118C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.ReferenceList.System#Collections#IList#get_IsFixedSize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L122C19-L122C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L122C19-L122C50" }, { "DocsId": "M:System.Security.Cryptography.Xml.ReferenceList.System#Collections#IList#get_IsReadOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L127C19-L127C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L127C19-L127C49" }, { "DocsId": "P:System.Security.Cryptography.Xml.ReferenceList.Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L24C19-L24C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L24C19-L24C44" }, { "DocsId": "P:System.Security.Cryptography.Xml.ReferenceList.ItemOf(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L91C17-L91C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L91C17-L91C37" }, { "DocsId": "P:System.Security.Cryptography.Xml.ReferenceList.System#Collections#IList#Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L102C19-L102C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L102C19-L102C45" }, { "DocsId": "P:System.Security.Cryptography.Xml.ReferenceList.System#Collections#IList#IsFixedSize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L122C19-L122C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L122C19-L122C50" }, { "DocsId": "P:System.Security.Cryptography.Xml.ReferenceList.System#Collections#IList#IsReadOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L127C19-L127C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L127C19-L127C49" }, { "DocsId": "P:System.Security.Cryptography.Xml.ReferenceList.SyncRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L132C19-L132C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L132C19-L132C47" }, { "DocsId": "P:System.Security.Cryptography.Xml.ReferenceList.IsSynchronized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L137C19-L137C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L137C19-L137C53" } ], "DocsId": "T:System.Security.Cryptography.Xml.ReferenceList", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.RSAKeyValue.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/RSAKeyValue.cs#L16C9-L19C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/RSAKeyValue.cs#L16C9-L19C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.RSAKeyValue.#ctor(System.Security.Cryptography.RSA)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/RSAKeyValue.cs#L21C9-L29C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/RSAKeyValue.cs#L21C9-L29C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.RSAKeyValue.GetXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/RSAKeyValue.cs#L64C13-L66C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/RSAKeyValue.cs#L64C13-L66C40" }, { "DocsId": "M:System.Security.Cryptography.Xml.RSAKeyValue.LoadXml(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/RSAKeyValue.cs#L111C13-L144C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/RSAKeyValue.cs#L111C13-L144C10" }, { "DocsId": "P:System.Security.Cryptography.Xml.RSAKeyValue.Key", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/RSAKeyValue.cs#L37C20-L37C24" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/RSAKeyValue.cs#L37C20-L37C24" } ], "DocsId": "T:System.Security.Cryptography.Xml.RSAKeyValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/RSAKeyValue.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/RSAKeyValue.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.Signature.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Signature.cs#L31C9-L35C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Signature.cs#L31C9-L35C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.Signature.GetXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Signature.cs#L87C13-L89C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Signature.cs#L87C13-L89C37" }, { "DocsId": "M:System.Security.Cryptography.Xml.Signature.LoadXml(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Signature.cs#L136C13-L226C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Signature.cs#L136C13-L226C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.Signature.AddObject(System.Security.Cryptography.Xml.DataObject)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Signature.cs#L230C13-L231C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Signature.cs#L230C13-L231C10" }, { "DocsId": "P:System.Security.Cryptography.Xml.Signature.Id", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Signature.cs#L43C19-L43C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Signature.cs#L43C19-L43C30" }, { "DocsId": "P:System.Security.Cryptography.Xml.Signature.SignedInfo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Signature.cs#L49C19-L49C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Signature.cs#L49C19-L49C38" }, { "DocsId": "P:System.Security.Cryptography.Xml.Signature.SignatureValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Signature.cs#L60C19-L60C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Signature.cs#L60C19-L60C42" }, { "DocsId": "P:System.Security.Cryptography.Xml.Signature.KeyInfo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Signature.cs#L66C20-L66C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Signature.cs#L66C20-L66C46" }, { "DocsId": "P:System.Security.Cryptography.Xml.Signature.ObjectList", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Signature.cs#L72C19-L72C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Signature.cs#L72C19-L72C43" } ], "DocsId": "T:System.Security.Cryptography.Xml.Signature", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Signature.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Signature.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.SignedInfo.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L29C9-L32C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L29C9-L32C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.SignedInfo.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L36C13-L36C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L36C13-L36C47" }, { "DocsId": "M:System.Security.Cryptography.Xml.SignedInfo.CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L41C13-L41C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L41C13-L41C47" }, { "DocsId": "M:System.Security.Cryptography.Xml.SignedInfo.GetXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L157C13-L161C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L157C13-L161C37" }, { "DocsId": "M:System.Security.Cryptography.Xml.SignedInfo.LoadXml(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L207C13-L282C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L207C13-L282C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.SignedInfo.AddReference(System.Security.Cryptography.Xml.Reference)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L286C13-L293C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L286C13-L293C10" }, { "DocsId": "P:System.Security.Cryptography.Xml.SignedInfo.Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L46C19-L46C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L46C19-L46C53" }, { "DocsId": "P:System.Security.Cryptography.Xml.SignedInfo.IsReadOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L51C19-L51C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L51C19-L51C53" }, { "DocsId": "P:System.Security.Cryptography.Xml.SignedInfo.IsSynchronized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L56C19-L56C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L56C19-L56C53" }, { "DocsId": "P:System.Security.Cryptography.Xml.SignedInfo.SyncRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L61C19-L61C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L61C19-L61C53" }, { "DocsId": "P:System.Security.Cryptography.Xml.SignedInfo.Id", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L70C19-L70C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L70C19-L70C30" }, { "DocsId": "P:System.Security.Cryptography.Xml.SignedInfo.CanonicalizationMethod", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L84C17-L86C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L84C17-L86C48" }, { "DocsId": "P:System.Security.Cryptography.Xml.SignedInfo.CanonicalizationMethodObject", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L99C17-L107C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L99C17-L107C57" }, { "DocsId": "P:System.Security.Cryptography.Xml.SignedInfo.SignatureMethod", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L113C19-L113C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L113C19-L113C43" }, { "DocsId": "P:System.Security.Cryptography.Xml.SignedInfo.SignatureLength", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L123C19-L123C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L123C19-L123C43" }, { "DocsId": "P:System.Security.Cryptography.Xml.SignedInfo.References", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L133C19-L133C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L133C19-L133C38" } ], "DocsId": "T:System.Security.Cryptography.Xml.SignedInfo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.SignedXml.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L33C9-L95C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L33C9-L95C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.SignedXml.#ctor(System.Xml.XmlDocument)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L33C9-L107C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L33C9-L107C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.SignedXml.#ctor(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L33C9-L119C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L33C9-L119C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.SignedXml.GetXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L224C13-L227C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L224C13-L227C45" }, { "DocsId": "M:System.Security.Cryptography.Xml.SignedXml.LoadXml(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L234C13-L244C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L234C13-L244C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.SignedXml.AddReference(System.Security.Cryptography.Xml.Reference)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L252C13-L253C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L252C13-L253C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.SignedXml.AddObject(System.Security.Cryptography.Xml.DataObject)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L257C13-L258C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L257C13-L258C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.SignedXml.CheckSignature", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L262C13-L262C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L262C13-L262C54" }, { "DocsId": "M:System.Security.Cryptography.Xml.SignedXml.CheckSignatureReturningKey(System.Security.Cryptography.AsymmetricAlgorithm@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L267C13-L289C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L267C13-L289C25" }, { "DocsId": "M:System.Security.Cryptography.Xml.SignedXml.CheckSignature(System.Security.Cryptography.AsymmetricAlgorithm)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L294C13-L313C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L294C13-L313C25" }, { "DocsId": "M:System.Security.Cryptography.Xml.SignedXml.CheckSignature(System.Security.Cryptography.KeyedHashAlgorithm)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L318C13-L336C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L318C13-L336C25" }, { "DocsId": "M:System.Security.Cryptography.Xml.SignedXml.CheckSignature(System.Security.Cryptography.X509Certificates.X509Certificate2,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L341C13-L387C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L341C13-L387C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.SignedXml.ComputeSignature", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L392C13-L436C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L392C13-L436C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.SignedXml.ComputeSignature(System.Security.Cryptography.KeyedHashAlgorithm)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L440C13-L476C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L440C13-L476C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.SignedXml.GetPublicKey", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L484C13-L520C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L484C13-L520C25" }, { "DocsId": "M:System.Security.Cryptography.Xml.SignedXml.GetIdElement(System.Xml.XmlDocument,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L554C13-L554C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L554C13-L554C59" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.m_signature", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.m_strSigningKeyName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlDsigNamespaceUrl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlDsigMinimalCanonicalizationUrl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlDsigCanonicalizationUrl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlDsigCanonicalizationWithCommentsUrl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlDsigSHA1Url", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlDsigDSAUrl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlDsigRSASHA1Url", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlDsigHMACSHA1Url", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlDsigSHA256Url", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlDsigRSASHA256Url", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlDsigSHA384Url", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlDsigRSASHA384Url", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlDsigSHA512Url", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlDsigRSASHA512Url", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlDsigC14NTransformUrl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlDsigC14NWithCommentsTransformUrl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlDsigExcC14NTransformUrl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlDsigExcC14NWithCommentsTransformUrl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlDsigBase64TransformUrl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlDsigXPathTransformUrl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlDsigXsltTransformUrl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlDsigEnvelopedSignatureTransformUrl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlDecryptionTransformUrl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlLicenseTransformUrl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "P:System.Security.Cryptography.Xml.SignedXml.SigningKeyName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L144C19-L144C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L144C19-L144C46" }, { "DocsId": "P:System.Security.Cryptography.Xml.SignedXml.Resolver", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L154C17-L156C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L154C17-L156C14" }, { "DocsId": "P:System.Security.Cryptography.Xml.SignedXml.SignatureFormatValidator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L166C19-L166C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L166C19-L166C52" }, { "DocsId": "P:System.Security.Cryptography.Xml.SignedXml.SafeCanonicalizationMethods", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L172C19-L172C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L172C19-L172C55" }, { "DocsId": "P:System.Security.Cryptography.Xml.SignedXml.SigningKey", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L177C19-L177C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L177C19-L177C38" }, { "DocsId": "P:System.Security.Cryptography.Xml.SignedXml.EncryptedXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L186C20-L186C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L186C20-L186C68" }, { "DocsId": "P:System.Security.Cryptography.Xml.SignedXml.Signature", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L192C19-L192C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L192C19-L192C38" }, { "DocsId": "P:System.Security.Cryptography.Xml.SignedXml.SignedInfo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L197C19-L197C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L197C19-L197C49" }, { "DocsId": "P:System.Security.Cryptography.Xml.SignedXml.SignatureMethod", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L202C19-L202C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L202C19-L202C66" }, { "DocsId": "P:System.Security.Cryptography.Xml.SignedXml.SignatureLength", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L207C19-L207C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L207C19-L207C66" }, { "DocsId": "P:System.Security.Cryptography.Xml.SignedXml.SignatureValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L212C19-L212C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L212C19-L212C53" }, { "DocsId": "P:System.Security.Cryptography.Xml.SignedXml.KeyInfo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L217C19-L217C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L217C19-L217C46" } ], "DocsId": "T:System.Security.Cryptography.Xml.SignedXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.Transform.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs#L56C9-L56C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs#L56C9-L56C34" }, { "DocsId": "M:System.Security.Cryptography.Xml.Transform.GetXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs#L118C13-L120C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs#L118C13-L120C37" }, { "DocsId": "M:System.Security.Cryptography.Xml.Transform.LoadInnerXml(System.Xml.XmlNodeList)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs" }, { "DocsId": "M:System.Security.Cryptography.Xml.Transform.GetInnerXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs" }, { "DocsId": "M:System.Security.Cryptography.Xml.Transform.LoadInput(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs" }, { "DocsId": "M:System.Security.Cryptography.Xml.Transform.GetOutput", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs" }, { "DocsId": "M:System.Security.Cryptography.Xml.Transform.GetOutput(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs" }, { "DocsId": "M:System.Security.Cryptography.Xml.Transform.GetDigestedOutput(System.Security.Cryptography.HashAlgorithm)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs#L156C13-L156C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs#L156C13-L156C72" }, { "DocsId": "P:System.Security.Cryptography.Xml.Transform.Algorithm", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs#L64C19-L64C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs#L64C19-L64C37" }, { "DocsId": "P:System.Security.Cryptography.Xml.Transform.InputTypes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs" }, { "DocsId": "P:System.Security.Cryptography.Xml.Transform.OutputTypes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs" }, { "DocsId": "P:System.Security.Cryptography.Xml.Transform.Context", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs#L163C17-L171C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs#L163C17-L171C43" }, { "DocsId": "P:System.Security.Cryptography.Xml.Transform.PropagatedNamespaces", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs#L183C17-L218C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs#L183C17-L218C46" } ], "DocsId": "T:System.Security.Cryptography.Xml.Transform", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.TransformChain.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/TransformChain.cs#L29C9-L32C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/TransformChain.cs#L29C9-L32C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.TransformChain.Add(System.Security.Cryptography.Xml.Transform)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/TransformChain.cs#L36C13-L38C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/TransformChain.cs#L36C13-L38C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.TransformChain.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/TransformChain.cs#L42C13-L42C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/TransformChain.cs#L42C13-L42C48" }, { "DocsId": "P:System.Security.Cryptography.Xml.TransformChain.Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/TransformChain.cs#L47C19-L47C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/TransformChain.cs#L47C19-L47C44" }, { "DocsId": "P:System.Security.Cryptography.Xml.TransformChain.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/TransformChain.cs#L54C17-L56C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/TransformChain.cs#L54C17-L56C55" } ], "DocsId": "T:System.Security.Cryptography.Xml.TransformChain", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/TransformChain.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/TransformChain.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.XmlDecryptionTransform.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs#L18C9-L35C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs#L18C9-L35C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDecryptionTransform.IsTargetElement(System.Xml.XmlElement,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs#L41C13-L47C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs#L41C13-L47C26" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDecryptionTransform.AddExceptUri(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs#L81C13-L87C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs#L81C13-L87C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDecryptionTransform.LoadInnerXml(System.Xml.XmlNodeList)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs#L91C13-L118C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs#L91C13-L118C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDecryptionTransform.GetInnerXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs#L122C13-L134C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs#L122C13-L134C39" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDecryptionTransform.LoadInput(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs#L139C13-L147C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs#L139C13-L147C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDecryptionTransform.GetOutput", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs#L266C13-L270C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs#L266C13-L270C40" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDecryptionTransform.GetOutput(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs#L275C13-L278C108" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs#L275C13-L278C108" }, { "DocsId": "P:System.Security.Cryptography.Xml.XmlDecryptionTransform.EncryptedXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs#L54C17-L64C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs#L54C17-L64C30" }, { "DocsId": "P:System.Security.Cryptography.Xml.XmlDecryptionTransform.InputTypes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs#L71C19-L71C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs#L71C19-L71C38" }, { "DocsId": "P:System.Security.Cryptography.Xml.XmlDecryptionTransform.OutputTypes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs#L76C19-L76C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs#L76C19-L76C39" } ], "DocsId": "T:System.Security.Cryptography.Xml.XmlDecryptionTransform", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigBase64Transform.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigBase64Transform.cs#L13C9-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigBase64Transform.cs#L13C9-L20C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigBase64Transform.LoadInnerXml(System.Xml.XmlNodeList)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigBase64Transform.cs#L34C9-L34C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigBase64Transform.cs#L34C9-L34C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigBase64Transform.GetInnerXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigBase64Transform.cs#L38C13-L38C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigBase64Transform.cs#L38C13-L38C25" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigBase64Transform.LoadInput(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigBase64Transform.cs#L43C13-L58C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigBase64Transform.cs#L43C13-L58C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigBase64Transform.GetOutput", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigBase64Transform.cs#L121C13-L121C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigBase64Transform.cs#L121C13-L121C25" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigBase64Transform.GetOutput(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigBase64Transform.cs#L126C13-L128C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigBase64Transform.cs#L126C13-L128C25" }, { "DocsId": "P:System.Security.Cryptography.Xml.XmlDsigBase64Transform.InputTypes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigBase64Transform.cs#L24C19-L24C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigBase64Transform.cs#L24C19-L24C38" }, { "DocsId": "P:System.Security.Cryptography.Xml.XmlDsigBase64Transform.OutputTypes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigBase64Transform.cs#L29C19-L29C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigBase64Transform.cs#L29C19-L29C39" } ], "DocsId": "T:System.Security.Cryptography.Xml.XmlDsigBase64Transform", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigBase64Transform.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigBase64Transform.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigC14NTransform.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NTransform.cs#L11C9-L19C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NTransform.cs#L11C9-L19C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigC14NTransform.#ctor(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NTransform.cs#L11C9-L25C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NTransform.cs#L11C9-L25C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigC14NTransform.LoadInnerXml(System.Xml.XmlNodeList)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NTransform.cs#L39C13-L41C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NTransform.cs#L39C13-L41C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigC14NTransform.GetInnerXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NTransform.cs#L45C13-L45C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NTransform.cs#L45C13-L45C25" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigC14NTransform.LoadInput(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NTransform.cs#L50C13-L67C99" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NTransform.cs#L50C13-L67C99" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigC14NTransform.GetOutput", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NTransform.cs#L73C13-L73C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NTransform.cs#L73C13-L73C56" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigC14NTransform.GetOutput(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NTransform.cs#L78C13-L80C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NTransform.cs#L78C13-L80C56" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigC14NTransform.GetDigestedOutput(System.Security.Cryptography.HashAlgorithm)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NTransform.cs#L85C13-L85C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NTransform.cs#L85C13-L85C50" }, { "DocsId": "P:System.Security.Cryptography.Xml.XmlDsigC14NTransform.InputTypes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NTransform.cs#L29C19-L29C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NTransform.cs#L29C19-L29C38" }, { "DocsId": "P:System.Security.Cryptography.Xml.XmlDsigC14NTransform.OutputTypes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NTransform.cs#L34C19-L34C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NTransform.cs#L34C19-L34C39" } ], "DocsId": "T:System.Security.Cryptography.Xml.XmlDsigC14NTransform", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NTransform.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NTransform.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigC14NWithCommentsTransform.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NWithCommentsTransform.cs#L9C15-L12C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NWithCommentsTransform.cs#L9C15-L12C10" } ], "DocsId": "T:System.Security.Cryptography.Xml.XmlDsigC14NWithCommentsTransform", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NWithCommentsTransform.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NWithCommentsTransform.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigEnvelopedSignatureTransform.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigEnvelopedSignatureTransform.cs#L11C9-L27C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigEnvelopedSignatureTransform.cs#L11C9-L27C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigEnvelopedSignatureTransform.#ctor(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigEnvelopedSignatureTransform.cs#L11C9-L34C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigEnvelopedSignatureTransform.cs#L11C9-L34C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigEnvelopedSignatureTransform.LoadInnerXml(System.Xml.XmlNodeList)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigEnvelopedSignatureTransform.cs#L49C13-L51C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigEnvelopedSignatureTransform.cs#L49C13-L51C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigEnvelopedSignatureTransform.GetInnerXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigEnvelopedSignatureTransform.cs#L56C13-L56C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigEnvelopedSignatureTransform.cs#L56C13-L56C25" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigEnvelopedSignatureTransform.LoadInput(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigEnvelopedSignatureTransform.cs#L61C13-L76C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigEnvelopedSignatureTransform.cs#L61C13-L76C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigEnvelopedSignatureTransform.GetOutput", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigEnvelopedSignatureTransform.cs#L122C13-L174C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigEnvelopedSignatureTransform.cs#L122C13-L174C44" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigEnvelopedSignatureTransform.GetOutput(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigEnvelopedSignatureTransform.cs#L180C13-L192C108" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigEnvelopedSignatureTransform.cs#L180C13-L192C108" }, { "DocsId": "P:System.Security.Cryptography.Xml.XmlDsigEnvelopedSignatureTransform.InputTypes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigEnvelopedSignatureTransform.cs#L38C19-L38C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigEnvelopedSignatureTransform.cs#L38C19-L38C38" }, { "DocsId": "P:System.Security.Cryptography.Xml.XmlDsigEnvelopedSignatureTransform.OutputTypes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigEnvelopedSignatureTransform.cs#L43C19-L43C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigEnvelopedSignatureTransform.cs#L43C19-L43C39" } ], "DocsId": "T:System.Security.Cryptography.Xml.XmlDsigEnvelopedSignatureTransform", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigEnvelopedSignatureTransform.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigEnvelopedSignatureTransform.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigExcC14NTransform.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L17C44-L17C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L17C44-L17C65" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigExcC14NTransform.#ctor(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L19C64-L19C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L19C64-L19C95" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigExcC14NTransform.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L21C80-L21C126" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L21C80-L21C126" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigExcC14NTransform.#ctor(System.Boolean,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L11C9-L28C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L11C9-L28C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigExcC14NTransform.LoadInnerXml(System.Xml.XmlNodeList)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L48C13-L73C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L48C13-L73C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigExcC14NTransform.LoadInput(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L77C13-L91C99" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L77C13-L91C99" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigExcC14NTransform.GetInnerXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L96C13-L105C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L96C13-L105C39" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigExcC14NTransform.GetOutput", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L110C13-L110C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L110C13-L110C67" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigExcC14NTransform.GetOutput(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L115C13-L117C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L115C13-L117C67" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigExcC14NTransform.GetDigestedOutput(System.Security.Cryptography.HashAlgorithm)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L122C13-L122C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L122C13-L122C61" }, { "DocsId": "P:System.Security.Cryptography.Xml.XmlDsigExcC14NTransform.InclusiveNamespacesPrefixList", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L32C19-L32C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L32C19-L32C57" }, { "DocsId": "P:System.Security.Cryptography.Xml.XmlDsigExcC14NTransform.InputTypes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L38C19-L38C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L38C19-L38C38" }, { "DocsId": "P:System.Security.Cryptography.Xml.XmlDsigExcC14NTransform.OutputTypes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L43C19-L43C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L43C19-L43C39" } ], "DocsId": "T:System.Security.Cryptography.Xml.XmlDsigExcC14NTransform", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigExcC14NWithCommentsTransform.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NWithCommentsTransform.cs#L12C56-L15C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NWithCommentsTransform.cs#L12C56-L15C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigExcC14NWithCommentsTransform.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NWithCommentsTransform.cs#L17C92-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NWithCommentsTransform.cs#L17C92-L20C10" } ], "DocsId": "T:System.Security.Cryptography.Xml.XmlDsigExcC14NWithCommentsTransform", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NWithCommentsTransform.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NWithCommentsTransform.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigXPathTransform.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXPathTransform.cs#L14C9-L23C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXPathTransform.cs#L14C9-L23C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigXPathTransform.LoadInnerXml(System.Xml.XmlNodeList)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXPathTransform.cs#L38C13-L84C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXPathTransform.cs#L38C13-L84C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigXPathTransform.GetInnerXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXPathTransform.cs#L88C13-L115C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXPathTransform.cs#L88C13-L115C40" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigXPathTransform.LoadInput(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXPathTransform.cs#L120C13-L132C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXPathTransform.cs#L120C13-L132C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigXPathTransform.GetOutput", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXPathTransform.cs#L161C13-L188C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXPathTransform.cs#L161C13-L188C35" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigXPathTransform.GetOutput(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXPathTransform.cs#L193C13-L195C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXPathTransform.cs#L193C13-L195C45" }, { "DocsId": "P:System.Security.Cryptography.Xml.XmlDsigXPathTransform.InputTypes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXPathTransform.cs#L27C19-L27C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXPathTransform.cs#L27C19-L27C38" }, { "DocsId": "P:System.Security.Cryptography.Xml.XmlDsigXPathTransform.OutputTypes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXPathTransform.cs#L32C19-L32C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXPathTransform.cs#L32C19-L32C39" } ], "DocsId": "T:System.Security.Cryptography.Xml.XmlDsigXPathTransform", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXPathTransform.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXPathTransform.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigXsltTransform.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXsltTransform.cs#L15C9-L25C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXsltTransform.cs#L15C9-L25C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigXsltTransform.#ctor(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXsltTransform.cs#L15C9-L31C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXsltTransform.cs#L15C9-L31C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigXsltTransform.LoadInnerXml(System.Xml.XmlNodeList)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXsltTransform.cs#L51C13-L75C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXsltTransform.cs#L51C13-L75C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigXsltTransform.GetInnerXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXsltTransform.cs#L79C13-L79C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXsltTransform.cs#L79C13-L79C30" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigXsltTransform.LoadInput(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXsltTransform.cs#L84C13-L108C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXsltTransform.cs#L84C13-L108C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigXsltTransform.GetOutput", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXsltTransform.cs#L118C13-L141C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXsltTransform.cs#L118C13-L141C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigXsltTransform.GetOutput(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXsltTransform.cs#L145C13-L147C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXsltTransform.cs#L145C13-L147C40" }, { "DocsId": "P:System.Security.Cryptography.Xml.XmlDsigXsltTransform.InputTypes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXsltTransform.cs#L37C17-L37C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXsltTransform.cs#L37C17-L37C36" }, { "DocsId": "P:System.Security.Cryptography.Xml.XmlDsigXsltTransform.OutputTypes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXsltTransform.cs#L45C17-L45C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXsltTransform.cs#L45C17-L45C37" } ], "DocsId": "T:System.Security.Cryptography.Xml.XmlDsigXsltTransform", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXsltTransform.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXsltTransform.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.XmlLicenseTransform.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlLicenseTransform.cs#L14C9-L30C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlLicenseTransform.cs#L14C9-L30C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlLicenseTransform.GetInnerXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlLicenseTransform.cs#L106C13-L106C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlLicenseTransform.cs#L106C13-L106C25" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlLicenseTransform.GetOutput", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlLicenseTransform.cs#L111C13-L111C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlLicenseTransform.cs#L111C13-L111C30" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlLicenseTransform.GetOutput(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlLicenseTransform.cs#L116C13-L119C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlLicenseTransform.cs#L116C13-L119C32" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlLicenseTransform.LoadInnerXml(System.Xml.XmlNodeList)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlLicenseTransform.cs#L125C13-L127C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlLicenseTransform.cs#L125C13-L127C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlLicenseTransform.LoadInput(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlLicenseTransform.cs#L132C13-L183C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlLicenseTransform.cs#L132C13-L183C10" }, { "DocsId": "P:System.Security.Cryptography.Xml.XmlLicenseTransform.InputTypes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlLicenseTransform.cs#L34C19-L34C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlLicenseTransform.cs#L34C19-L34C38" }, { "DocsId": "P:System.Security.Cryptography.Xml.XmlLicenseTransform.OutputTypes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlLicenseTransform.cs#L39C19-L39C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlLicenseTransform.cs#L39C19-L39C39" }, { "DocsId": "P:System.Security.Cryptography.Xml.XmlLicenseTransform.Decryptor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlLicenseTransform.cs#L44C19-L44C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlLicenseTransform.cs#L44C19-L44C40" } ], "DocsId": "T:System.Security.Cryptography.Xml.XmlLicenseTransform", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlLicenseTransform.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlLicenseTransform.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/System.Security.Permissions.json b/xml/SourceLinkInformation/net-8.0/System.Security.Permissions.json index 33808183373..38843d9b8f0 100644 --- a/xml/SourceLinkInformation/net-8.0/System.Security.Permissions.json +++ b/xml/SourceLinkInformation/net-8.0/System.Security.Permissions.json @@ -1,6613 +1,6612 @@ { "Assembly": "System.Security.Permissions", - "GUID": "F833AED0DDC8474C991D165AFF063C6DFFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "235A2A25A15249B29BE743FDD5EF207BFFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:System.ApplicationIdentity.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/ApplicationIdentity.cs#L12C9-L12C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/ApplicationIdentity.cs#L12C9-L12C75" }, { "DocsId": "M:System.ApplicationIdentity.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/ApplicationIdentity.cs#L15C45-L15C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/ApplicationIdentity.cs#L15C45-L15C57" }, { "DocsId": "M:System.ApplicationIdentity.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/ApplicationIdentity.cs#L18C13-L18C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/ApplicationIdentity.cs#L18C13-L18C55" }, { "DocsId": "P:System.ApplicationIdentity.FullName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/ApplicationIdentity.cs#L13C40-L13C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/ApplicationIdentity.cs#L13C40-L13C52" }, { "DocsId": "P:System.ApplicationIdentity.CodeBase", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/ApplicationIdentity.cs#L14C40-L14C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/ApplicationIdentity.cs#L14C40-L14C52" } ], "DocsId": "T:System.ApplicationIdentity", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/ApplicationIdentity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/ApplicationIdentity.cs" }, { "Members": [ { "DocsId": "M:System.Xaml.Permissions.XamlLoadPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Xaml/Permissions/XamlLoadPermission.cs#L26C77-L18C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Xaml/Permissions/XamlLoadPermission.cs#L26C64-L18C61" }, { "DocsId": "M:System.Xaml.Permissions.XamlLoadPermission.#ctor(System.Xaml.Permissions.XamlAccessLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Xaml/Permissions/XamlLoadPermission.cs#L26C77-L19C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Xaml/Permissions/XamlLoadPermission.cs#L26C64-L19C69" }, { "DocsId": "M:System.Xaml.Permissions.XamlLoadPermission.#ctor(System.Collections.Generic.IEnumerable{System.Xaml.Permissions.XamlAccessLevel})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Xaml/Permissions/XamlLoadPermission.cs#L26C77-L20C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Xaml/Permissions/XamlLoadPermission.cs#L26C64-L20C82" }, { "DocsId": "M:System.Xaml.Permissions.XamlLoadPermission.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Xaml/Permissions/XamlLoadPermission.cs#L22C51-L22C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Xaml/Permissions/XamlLoadPermission.cs#L22C51-L22C85" }, { "DocsId": "M:System.Xaml.Permissions.XamlLoadPermission.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Xaml/Permissions/XamlLoadPermission.cs#L24C45-L24C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Xaml/Permissions/XamlLoadPermission.cs#L24C45-L24C71" }, { "DocsId": "M:System.Xaml.Permissions.XamlLoadPermission.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Xaml/Permissions/XamlLoadPermission.cs#L27C46-L27C106" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Xaml/Permissions/XamlLoadPermission.cs#L27C46-L27C106" }, { "DocsId": "M:System.Xaml.Permissions.XamlLoadPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Xaml/Permissions/XamlLoadPermission.cs#L28C62-L28C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Xaml/Permissions/XamlLoadPermission.cs#L28C62-L28C63" }, { "DocsId": "M:System.Xaml.Permissions.XamlLoadPermission.Includes(System.Xaml.Permissions.XamlAccessLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Xaml/Permissions/XamlLoadPermission.cs#L29C65-L29C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Xaml/Permissions/XamlLoadPermission.cs#L29C65-L29C77" }, { "DocsId": "M:System.Xaml.Permissions.XamlLoadPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Xaml/Permissions/XamlLoadPermission.cs#L30C69-L30C129" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Xaml/Permissions/XamlLoadPermission.cs#L30C69-L30C129" }, { "DocsId": "M:System.Xaml.Permissions.XamlLoadPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Xaml/Permissions/XamlLoadPermission.cs#L31C63-L31C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Xaml/Permissions/XamlLoadPermission.cs#L31C63-L31C75" }, { "DocsId": "M:System.Xaml.Permissions.XamlLoadPermission.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Xaml/Permissions/XamlLoadPermission.cs#L32C51-L32C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Xaml/Permissions/XamlLoadPermission.cs#L32C51-L32C83" }, { "DocsId": "M:System.Xaml.Permissions.XamlLoadPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Xaml/Permissions/XamlLoadPermission.cs#L33C64-L33C124" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Xaml/Permissions/XamlLoadPermission.cs#L33C64-L33C124" }, { "DocsId": "M:System.Xaml.Permissions.XamlLoadPermission.IsUnrestricted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Xaml/Permissions/XamlLoadPermission.cs#L34C40-L34C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Xaml/Permissions/XamlLoadPermission.cs#L34C40-L34C52" }, { "DocsId": "P:System.Xaml.Permissions.XamlLoadPermission.AllowedAccess", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Xaml/Permissions/XamlLoadPermission.cs#L26C55-L26C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Xaml/Permissions/XamlLoadPermission.cs#L26C55-L26C59" } ], "DocsId": "T:System.Xaml.Permissions.XamlLoadPermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Xaml/Permissions/XamlLoadPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Xaml/Permissions/XamlLoadPermission.cs" }, { "Members": [ { "DocsId": "M:System.Web.AspNetHostingPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermission.cs#L14C9-L14C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermission.cs#L14C9-L14C66" }, { "DocsId": "M:System.Web.AspNetHostingPermission.#ctor(System.Web.AspNetHostingPermissionLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermission.cs#L15C9-L15C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermission.cs#L15C9-L15C79" }, { "DocsId": "M:System.Web.AspNetHostingPermission.IsUnrestricted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermission.cs#L17C41-L17C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermission.cs#L17C41-L17C46" }, { "DocsId": "M:System.Web.AspNetHostingPermission.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermission.cs#L18C46-L18C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermission.cs#L18C46-L18C58" }, { "DocsId": "M:System.Web.AspNetHostingPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermission.cs#L19C65-L19C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermission.cs#L19C65-L19C77" }, { "DocsId": "M:System.Web.AspNetHostingPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermission.cs#L20C69-L20C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermission.cs#L20C69-L20C81" }, { "DocsId": "M:System.Web.AspNetHostingPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermission.cs#L21C64-L21C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermission.cs#L21C64-L21C69" }, { "DocsId": "M:System.Web.AspNetHostingPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermission.cs#L22C73-L22C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermission.cs#L22C73-L22C74" }, { "DocsId": "M:System.Web.AspNetHostingPermission.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermission.cs#L23C51-L23C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermission.cs#L23C51-L23C63" }, { "DocsId": "P:System.Web.AspNetHostingPermission.Level", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermission.cs#L16C53-L16C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermission.cs#L16C53-L16C57" } ], "DocsId": "T:System.Web.AspNetHostingPermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermission.cs" }, { "Members": [ { "DocsId": "M:System.Web.AspNetHostingPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermissionAttribute.cs#L15C74-L15C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermissionAttribute.cs#L15C74-L15C90" }, { "DocsId": "M:System.Web.AspNetHostingPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermissionAttribute.cs#L17C58-L17C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermissionAttribute.cs#L17C58-L17C70" }, { "DocsId": "P:System.Web.AspNetHostingPermissionAttribute.Level", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermissionAttribute.cs#L16C53-L16C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermissionAttribute.cs#L16C53-L16C57" } ], "DocsId": "T:System.Web.AspNetHostingPermissionAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermissionAttribute.cs" }, { "Members": [ { "DocsId": "F:System.Web.AspNetHostingPermissionLevel.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermissionLevel.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermissionLevel.cs" }, { "DocsId": "F:System.Web.AspNetHostingPermissionLevel.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermissionLevel.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermissionLevel.cs" }, { "DocsId": "F:System.Web.AspNetHostingPermissionLevel.Minimal", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermissionLevel.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermissionLevel.cs" }, { "DocsId": "F:System.Web.AspNetHostingPermissionLevel.Low", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermissionLevel.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermissionLevel.cs" }, { "DocsId": "F:System.Web.AspNetHostingPermissionLevel.Medium", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermissionLevel.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermissionLevel.cs" }, { "DocsId": "F:System.Web.AspNetHostingPermissionLevel.High", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermissionLevel.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermissionLevel.cs" }, { "DocsId": "F:System.Web.AspNetHostingPermissionLevel.Unrestricted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermissionLevel.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermissionLevel.cs" } ], "DocsId": "T:System.Web.AspNetHostingPermissionLevel", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermissionLevel.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermissionLevel.cs" }, { "Members": [ { "DocsId": "M:System.Transactions.DistributedTransactionPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Transactions/DistributedTransactionPermission.cs#L14C9-L14C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Transactions/DistributedTransactionPermission.cs#L14C9-L14C75" }, { "DocsId": "M:System.Transactions.DistributedTransactionPermission.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Transactions/DistributedTransactionPermission.cs#L15C46-L15C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Transactions/DistributedTransactionPermission.cs#L15C46-L15C58" }, { "DocsId": "M:System.Transactions.DistributedTransactionPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Transactions/DistributedTransactionPermission.cs#L16C73-L16C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Transactions/DistributedTransactionPermission.cs#L16C73-L16C74" }, { "DocsId": "M:System.Transactions.DistributedTransactionPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Transactions/DistributedTransactionPermission.cs#L17C69-L17C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Transactions/DistributedTransactionPermission.cs#L17C69-L17C81" }, { "DocsId": "M:System.Transactions.DistributedTransactionPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Transactions/DistributedTransactionPermission.cs#L18C64-L18C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Transactions/DistributedTransactionPermission.cs#L18C64-L18C69" }, { "DocsId": "M:System.Transactions.DistributedTransactionPermission.IsUnrestricted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Transactions/DistributedTransactionPermission.cs#L19C41-L19C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Transactions/DistributedTransactionPermission.cs#L19C41-L19C46" }, { "DocsId": "M:System.Transactions.DistributedTransactionPermission.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Transactions/DistributedTransactionPermission.cs#L20C51-L20C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Transactions/DistributedTransactionPermission.cs#L20C51-L20C63" }, { "DocsId": "M:System.Transactions.DistributedTransactionPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Transactions/DistributedTransactionPermission.cs#L21C65-L21C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Transactions/DistributedTransactionPermission.cs#L21C65-L21C77" } ], "DocsId": "T:System.Transactions.DistributedTransactionPermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Transactions/DistributedTransactionPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Transactions/DistributedTransactionPermission.cs" }, { "Members": [ { "DocsId": "M:System.Transactions.DistributedTransactionPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Transactions/DistributedTransactionPermissionAttribute.cs#L15C83-L15C99" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Transactions/DistributedTransactionPermissionAttribute.cs#L15C83-L15C99" }, { "DocsId": "M:System.Transactions.DistributedTransactionPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Transactions/DistributedTransactionPermissionAttribute.cs#L17C58-L17C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Transactions/DistributedTransactionPermissionAttribute.cs#L17C58-L17C70" }, { "DocsId": "P:System.Transactions.DistributedTransactionPermissionAttribute.Unrestricted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Transactions/DistributedTransactionPermissionAttribute.cs#L16C40-L16C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Transactions/DistributedTransactionPermissionAttribute.cs#L16C40-L16C44" } ], "DocsId": "T:System.Transactions.DistributedTransactionPermissionAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Transactions/DistributedTransactionPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Transactions/DistributedTransactionPermissionAttribute.cs" }, { "Members": [ { "DocsId": "M:System.ServiceProcess.ServiceControllerPermission.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermission.cs#L13C9-L13C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermission.cs#L13C9-L13C49" }, { "DocsId": "M:System.ServiceProcess.ServiceControllerPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermission.cs#L14C69-L14C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermission.cs#L14C69-L14C84" }, { "DocsId": "M:System.ServiceProcess.ServiceControllerPermission.#ctor(System.ServiceProcess.ServiceControllerPermissionAccess,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermission.cs#L15C9-L15C139" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermission.cs#L15C9-L15C139" }, { "DocsId": "M:System.ServiceProcess.ServiceControllerPermission.#ctor(System.ServiceProcess.ServiceControllerPermissionEntry[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermission.cs#L16C9-L16C107" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermission.cs#L16C9-L16C107" }, { "DocsId": "P:System.ServiceProcess.ServiceControllerPermission.PermissionEntries", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermission.cs#L17C86-L17C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermission.cs#L17C86-L17C90" } ], "DocsId": "T:System.ServiceProcess.ServiceControllerPermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermission.cs" }, { "Members": [ { "DocsId": "F:System.ServiceProcess.ServiceControllerPermissionAccess.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionAccess.cs" }, { "DocsId": "F:System.ServiceProcess.ServiceControllerPermissionAccess.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionAccess.cs" }, { "DocsId": "F:System.ServiceProcess.ServiceControllerPermissionAccess.Browse", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionAccess.cs" }, { "DocsId": "F:System.ServiceProcess.ServiceControllerPermissionAccess.Control", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionAccess.cs" } ], "DocsId": "T:System.ServiceProcess.ServiceControllerPermissionAccess", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionAccess.cs" }, { "Members": [ { "DocsId": "M:System.ServiceProcess.ServiceControllerPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionAttribute.cs#L15C78-L15C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionAttribute.cs#L15C78-L15C94" }, { "DocsId": "M:System.ServiceProcess.ServiceControllerPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionAttribute.cs#L19C58-L19C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionAttribute.cs#L19C58-L19C86" }, { "DocsId": "P:System.ServiceProcess.ServiceControllerPermissionAttribute.MachineName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionAttribute.cs#L16C44-L16C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionAttribute.cs#L16C44-L16C48" }, { "DocsId": "P:System.ServiceProcess.ServiceControllerPermissionAttribute.PermissionAccess", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionAttribute.cs#L17C76-L17C118" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionAttribute.cs#L17C76-L17C118" }, { "DocsId": "P:System.ServiceProcess.ServiceControllerPermissionAttribute.ServiceName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionAttribute.cs#L18C44-L18C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionAttribute.cs#L18C44-L18C48" } ], "DocsId": "T:System.ServiceProcess.ServiceControllerPermissionAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionAttribute.cs" }, { "Members": [ { "DocsId": "M:System.ServiceProcess.ServiceControllerPermissionEntry.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntry.cs#L8C9-L8C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntry.cs#L8C9-L8C54" }, { "DocsId": "M:System.ServiceProcess.ServiceControllerPermissionEntry.#ctor(System.ServiceProcess.ServiceControllerPermissionAccess,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntry.cs#L9C9-L9C144" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntry.cs#L9C9-L9C144" }, { "DocsId": "P:System.ServiceProcess.ServiceControllerPermissionEntry.MachineName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntry.cs#L10C44-L10C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntry.cs#L10C44-L10C48" }, { "DocsId": "P:System.ServiceProcess.ServiceControllerPermissionEntry.PermissionAccess", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntry.cs#L11C76-L11C118" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntry.cs#L11C76-L11C118" }, { "DocsId": "P:System.ServiceProcess.ServiceControllerPermissionEntry.ServiceName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntry.cs#L12C44-L12C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntry.cs#L12C44-L12C48" } ], "DocsId": "T:System.ServiceProcess.ServiceControllerPermissionEntry", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntry.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntry.cs" }, { "Members": [ { "DocsId": "M:System.ServiceProcess.ServiceControllerPermissionEntryCollection.Add(System.ServiceProcess.ServiceControllerPermissionEntry)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntryCollection.cs#L12C66-L12C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntryCollection.cs#L12C66-L12C75" }, { "DocsId": "M:System.ServiceProcess.ServiceControllerPermissionEntryCollection.AddRange(System.ServiceProcess.ServiceControllerPermissionEntry[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntryCollection.cs#L13C74-L13C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntryCollection.cs#L13C74-L13C75" }, { "DocsId": "M:System.ServiceProcess.ServiceControllerPermissionEntryCollection.AddRange(System.ServiceProcess.ServiceControllerPermissionEntryCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntryCollection.cs#L14C82-L14C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntryCollection.cs#L14C82-L14C83" }, { "DocsId": "M:System.ServiceProcess.ServiceControllerPermissionEntryCollection.Contains(System.ServiceProcess.ServiceControllerPermissionEntry)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntryCollection.cs#L15C72-L15C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntryCollection.cs#L15C72-L15C85" }, { "DocsId": "M:System.ServiceProcess.ServiceControllerPermissionEntryCollection.CopyTo(System.ServiceProcess.ServiceControllerPermissionEntry[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntryCollection.cs#L16C83-L16C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntryCollection.cs#L16C83-L16C84" }, { "DocsId": "M:System.ServiceProcess.ServiceControllerPermissionEntryCollection.IndexOf(System.ServiceProcess.ServiceControllerPermissionEntry)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntryCollection.cs#L17C70-L17C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntryCollection.cs#L17C70-L17C79" }, { "DocsId": "M:System.ServiceProcess.ServiceControllerPermissionEntryCollection.Insert(System.Int32,System.ServiceProcess.ServiceControllerPermissionEntry)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntryCollection.cs#L18C81-L18C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntryCollection.cs#L18C81-L18C82" }, { "DocsId": "M:System.ServiceProcess.ServiceControllerPermissionEntryCollection.OnClear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntryCollection.cs#L19C45-L19C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntryCollection.cs#L19C45-L19C46" }, { "DocsId": "M:System.ServiceProcess.ServiceControllerPermissionEntryCollection.OnInsert(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntryCollection.cs#L20C69-L20C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntryCollection.cs#L20C69-L20C70" }, { "DocsId": "M:System.ServiceProcess.ServiceControllerPermissionEntryCollection.OnRemove(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntryCollection.cs#L21C69-L21C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntryCollection.cs#L21C69-L21C70" }, { "DocsId": "M:System.ServiceProcess.ServiceControllerPermissionEntryCollection.OnSet(System.Int32,System.Object,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntryCollection.cs#L22C86-L22C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntryCollection.cs#L22C86-L22C87" }, { "DocsId": "M:System.ServiceProcess.ServiceControllerPermissionEntryCollection.Remove(System.ServiceProcess.ServiceControllerPermissionEntry)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntryCollection.cs#L23C70-L23C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntryCollection.cs#L23C70-L23C71" }, { "DocsId": "P:System.ServiceProcess.ServiceControllerPermissionEntryCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntryCollection.cs#L11C73-L11C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntryCollection.cs#L11C73-L11C85" } ], "DocsId": "T:System.ServiceProcess.ServiceControllerPermissionEntryCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntryCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntryCollection.cs" }, { "Members": [ { "DocsId": "M:System.Security.CodeAccessPermission.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs#L11C9-L11C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs#L11C9-L11C45" }, { "DocsId": "M:System.Security.CodeAccessPermission.Assert", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs#L12C32-L12C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs#L12C32-L12C33" }, { "DocsId": "M:System.Security.CodeAccessPermission.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs" }, { "DocsId": "M:System.Security.CodeAccessPermission.Demand", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs#L14C32-L14C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs#L14C32-L14C33" }, { "DocsId": "M:System.Security.CodeAccessPermission.Deny", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs#L16C30-L16C99" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs#L16C30-L16C99" }, { "DocsId": "M:System.Security.CodeAccessPermission.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs#L17C52-L17C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs#L17C52-L17C68" }, { "DocsId": "M:System.Security.CodeAccessPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs" }, { "DocsId": "M:System.Security.CodeAccessPermission.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs#L19C46-L19C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs#L19C46-L19C64" }, { "DocsId": "M:System.Security.CodeAccessPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs" }, { "DocsId": "M:System.Security.CodeAccessPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs" }, { "DocsId": "M:System.Security.CodeAccessPermission.PermitOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs#L22C36-L22C105" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs#L22C36-L22C105" }, { "DocsId": "M:System.Security.CodeAccessPermission.RevertAll", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs#L23C42-L23C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs#L23C42-L23C43" }, { "DocsId": "M:System.Security.CodeAccessPermission.RevertAssert", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs#L24C45-L24C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs#L24C45-L24C46" }, { "DocsId": "M:System.Security.CodeAccessPermission.RevertDeny", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs#L26C43-L26C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs#L26C43-L26C44" }, { "DocsId": "M:System.Security.CodeAccessPermission.RevertPermitOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs#L27C49-L27C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs#L27C49-L27C50" }, { "DocsId": "M:System.Security.CodeAccessPermission.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs#L28C46-L28C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs#L28C46-L28C61" }, { "DocsId": "M:System.Security.CodeAccessPermission.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs" }, { "DocsId": "M:System.Security.CodeAccessPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs#L30C63-L30C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs#L30C63-L30C91" } ], "DocsId": "T:System.Security.CodeAccessPermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs" }, { "Members": [ { "DocsId": "M:System.Security.HostProtectionException.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/HostProtectionException.cs#L22C44-L27C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/HostProtectionException.cs#L22C44-L27C10" }, { "DocsId": "M:System.Security.HostProtectionException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/HostProtectionException.cs#L29C58-L34C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/HostProtectionException.cs#L29C58-L34C10" }, { "DocsId": "M:System.Security.HostProtectionException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/HostProtectionException.cs#L36C71-L41C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/HostProtectionException.cs#L36C71-L41C10" }, { "DocsId": "M:System.Security.HostProtectionException.#ctor(System.String,System.Security.Permissions.HostProtectionResource,System.Security.Permissions.HostProtectionResource)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/HostProtectionException.cs#L44C15-L49C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/HostProtectionException.cs#L44C15-L49C10" }, { "DocsId": "M:System.Security.HostProtectionException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/HostProtectionException.cs#L56C15-L60C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/HostProtectionException.cs#L56C15-L60C10" }, { "DocsId": "M:System.Security.HostProtectionException.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/HostProtectionException.cs#L80C13-L85C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/HostProtectionException.cs#L80C13-L85C34" }, { "DocsId": "M:System.Security.HostProtectionException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/HostProtectionException.cs#L94C13-L97C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/HostProtectionException.cs#L94C13-L97C10" }, { "DocsId": "P:System.Security.HostProtectionException.DemandedResources", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/HostProtectionException.cs#L62C59-L62C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/HostProtectionException.cs#L62C59-L62C63" }, { "DocsId": "P:System.Security.HostProtectionException.ProtectedResources", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/HostProtectionException.cs#L64C60-L64C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/HostProtectionException.cs#L64C60-L64C64" } ], "DocsId": "T:System.Security.HostProtectionException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/HostProtectionException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/HostProtectionException.cs" }, { "Members": [ { "DocsId": "M:System.Security.HostSecurityManager.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManager.cs#L11C9-L11C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManager.cs#L11C9-L11C41" }, { "DocsId": "M:System.Security.HostSecurityManager.DetermineApplicationTrust(System.Security.Policy.Evidence,System.Security.Policy.Evidence,System.Security.Policy.TrustManagerContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManager.cs#L14C156-L14C189" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManager.cs#L14C156-L14C189" }, { "DocsId": "M:System.Security.HostSecurityManager.ProvideAppDomainEvidence(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManager.cs#L15C84-L15C109" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManager.cs#L15C84-L15C109" }, { "DocsId": "M:System.Security.HostSecurityManager.ProvideAssemblyEvidence(System.Reflection.Assembly,System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManager.cs#L16C126-L16C151" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManager.cs#L16C126-L16C151" }, { "DocsId": "M:System.Security.HostSecurityManager.ResolvePolicy(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManager.cs#L18C73-L18C103" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManager.cs#L18C73-L18C103" }, { "DocsId": "M:System.Security.HostSecurityManager.GenerateAppDomainEvidence(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManager.cs#L19C84-L19C96" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManager.cs#L19C84-L19C96" }, { "DocsId": "M:System.Security.HostSecurityManager.GenerateAssemblyEvidence(System.Type,System.Reflection.Assembly)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManager.cs#L20C102-L20C114" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManager.cs#L20C102-L20C114" }, { "DocsId": "M:System.Security.HostSecurityManager.GetHostSuppliedAppDomainEvidenceTypes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManager.cs#L21C73-L21C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManager.cs#L21C73-L21C85" }, { "DocsId": "M:System.Security.HostSecurityManager.GetHostSuppliedAssemblyEvidenceTypes(System.Reflection.Assembly)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManager.cs#L22C89-L22C101" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManager.cs#L22C89-L22C101" }, { "DocsId": "P:System.Security.HostSecurityManager.DomainPolicy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManager.cs#L12C57-L12C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManager.cs#L12C57-L12C85" }, { "DocsId": "P:System.Security.HostSecurityManager.Flags", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManager.cs#L13C65-L13C108" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManager.cs#L13C65-L13C108" } ], "DocsId": "T:System.Security.HostSecurityManager", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManager.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManager.cs" }, { "Members": [ { "DocsId": "F:System.Security.HostSecurityManagerOptions.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManagerOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManagerOptions.cs" }, { "DocsId": "F:System.Security.HostSecurityManagerOptions.AllFlags", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManagerOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManagerOptions.cs" }, { "DocsId": "F:System.Security.HostSecurityManagerOptions.HostAppDomainEvidence", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManagerOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManagerOptions.cs" }, { "DocsId": "F:System.Security.HostSecurityManagerOptions.HostAssemblyEvidence", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManagerOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManagerOptions.cs" }, { "DocsId": "F:System.Security.HostSecurityManagerOptions.HostDetermineApplicationTrust", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManagerOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManagerOptions.cs" }, { "DocsId": "F:System.Security.HostSecurityManagerOptions.HostPolicyLevel", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManagerOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManagerOptions.cs" }, { "DocsId": "F:System.Security.HostSecurityManagerOptions.HostResolvePolicy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManagerOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManagerOptions.cs" }, { "DocsId": "F:System.Security.HostSecurityManagerOptions.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManagerOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManagerOptions.cs" } ], "DocsId": "T:System.Security.HostSecurityManagerOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManagerOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManagerOptions.cs" }, { "Members": [ { "DocsId": "P:System.Security.IEvidenceFactory.Evidence", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/IEvidenceFactory.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/IEvidenceFactory.cs" } ], "DocsId": "T:System.Security.IEvidenceFactory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/IEvidenceFactory.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/IEvidenceFactory.cs" }, { "Members": [ { "DocsId": "M:System.Security.ISecurityPolicyEncodable.FromXml(System.Security.SecurityElement,System.Security.Policy.PolicyLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/ISecurityPolicyEncodable.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/ISecurityPolicyEncodable.cs" }, { "DocsId": "M:System.Security.ISecurityPolicyEncodable.ToXml(System.Security.Policy.PolicyLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/ISecurityPolicyEncodable.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/ISecurityPolicyEncodable.cs" } ], "DocsId": "T:System.Security.ISecurityPolicyEncodable", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/ISecurityPolicyEncodable.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/ISecurityPolicyEncodable.cs" }, { "Members": [ { "DocsId": "M:System.Security.NamedPermissionSet.#ctor(System.Security.NamedPermissionSet)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/NamedPermissionSet.cs#L13C65-L13C99" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/NamedPermissionSet.cs#L13C65-L13C99" }, { "DocsId": "M:System.Security.NamedPermissionSet.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/NamedPermissionSet.cs#L14C50-L14C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/NamedPermissionSet.cs#L14C50-L14C84" }, { "DocsId": "M:System.Security.NamedPermissionSet.#ctor(System.String,System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/NamedPermissionSet.cs#L15C73-L15C107" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/NamedPermissionSet.cs#L15C73-L15C107" }, { "DocsId": "M:System.Security.NamedPermissionSet.#ctor(System.String,System.Security.PermissionSet)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/NamedPermissionSet.cs#L16C73-L16C107" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/NamedPermissionSet.cs#L16C73-L16C107" }, { "DocsId": "M:System.Security.NamedPermissionSet.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/NamedPermissionSet.cs#L19C48-L19C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/NamedPermissionSet.cs#L19C48-L19C78" }, { "DocsId": "M:System.Security.NamedPermissionSet.Copy(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/NamedPermissionSet.cs#L20C55-L20C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/NamedPermissionSet.cs#L20C55-L20C90" }, { "DocsId": "M:System.Security.NamedPermissionSet.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/NamedPermissionSet.cs#L21C50-L21C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/NamedPermissionSet.cs#L21C50-L21C64" }, { "DocsId": "M:System.Security.NamedPermissionSet.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/NamedPermissionSet.cs#L22C60-L22C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/NamedPermissionSet.cs#L22C60-L22C61" }, { "DocsId": "M:System.Security.NamedPermissionSet.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/NamedPermissionSet.cs#L23C46-L23C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/NamedPermissionSet.cs#L23C46-L23C64" }, { "DocsId": "M:System.Security.NamedPermissionSet.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/NamedPermissionSet.cs#L24C51-L24C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/NamedPermissionSet.cs#L24C51-L24C83" }, { "DocsId": "P:System.Security.NamedPermissionSet.Description", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/NamedPermissionSet.cs#L17C37-L17C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/NamedPermissionSet.cs#L17C37-L17C41" }, { "DocsId": "P:System.Security.NamedPermissionSet.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/NamedPermissionSet.cs#L18C30-L18C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/NamedPermissionSet.cs#L18C30-L18C34" } ], "DocsId": "T:System.Security.NamedPermissionSet", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/NamedPermissionSet.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/NamedPermissionSet.cs" }, { "Members": [ { "DocsId": "F:System.Security.PolicyLevelType.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/PolicyLevelType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/PolicyLevelType.cs" }, { "DocsId": "F:System.Security.PolicyLevelType.AppDomain", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/PolicyLevelType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/PolicyLevelType.cs" }, { "DocsId": "F:System.Security.PolicyLevelType.Enterprise", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/PolicyLevelType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/PolicyLevelType.cs" }, { "DocsId": "F:System.Security.PolicyLevelType.Machine", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/PolicyLevelType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/PolicyLevelType.cs" }, { "DocsId": "F:System.Security.PolicyLevelType.User", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/PolicyLevelType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/PolicyLevelType.cs" } ], "DocsId": "T:System.Security.PolicyLevelType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/PolicyLevelType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/PolicyLevelType.cs" }, { "Members": [ { "DocsId": "M:System.Security.SecurityContext.Capture", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/SecurityContext.cs#L14C51-L14C120" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/SecurityContext.cs#L14C51-L14C120" }, { "DocsId": "M:System.Security.SecurityContext.CreateCopy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/SecurityContext.cs#L15C47-L15C116" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/SecurityContext.cs#L15C47-L15C116" }, { "DocsId": "M:System.Security.SecurityContext.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/SecurityContext.cs#L16C33-L16C102" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/SecurityContext.cs#L16C33-L16C102" }, { "DocsId": "M:System.Security.SecurityContext.IsFlowSuppressed", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/SecurityContext.cs#L17C49-L17C118" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/SecurityContext.cs#L17C49-L17C118" }, { "DocsId": "M:System.Security.SecurityContext.IsWindowsIdentityFlowSuppressed", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/SecurityContext.cs#L18C64-L18C133" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/SecurityContext.cs#L18C64-L18C133" }, { "DocsId": "M:System.Security.SecurityContext.RestoreFlow", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/SecurityContext.cs#L19C44-L19C113" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/SecurityContext.cs#L19C44-L19C113" }, { "DocsId": "M:System.Security.SecurityContext.Run(System.Security.SecurityContext,System.Threading.ContextCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/SecurityContext.cs#L20C107-L20C176" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/SecurityContext.cs#L20C107-L20C176" }, { "DocsId": "M:System.Security.SecurityContext.SuppressFlow", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/SecurityContext.cs#L21C57-L21C126" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/SecurityContext.cs#L21C57-L21C126" }, { "DocsId": "M:System.Security.SecurityContext.SuppressFlowWindowsIdentity", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/SecurityContext.cs#L22C72-L22C141" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/SecurityContext.cs#L22C72-L22C141" } ], "DocsId": "T:System.Security.SecurityContext", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/SecurityContext.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/SecurityContext.cs" }, { "Members": [ { "DocsId": "F:System.Security.SecurityContextSource.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/SecurityContextSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/SecurityContextSource.cs" }, { "DocsId": "F:System.Security.SecurityContextSource.CurrentAppDomain", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/SecurityContextSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/SecurityContextSource.cs" }, { "DocsId": "F:System.Security.SecurityContextSource.CurrentAssembly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/SecurityContextSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/SecurityContextSource.cs" } ], "DocsId": "T:System.Security.SecurityContextSource", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/SecurityContextSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/SecurityContextSource.cs" }, { "Members": [ { "DocsId": "M:System.Security.SecurityManager.CurrentThreadRequiresSecurityContextCapture", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L18C76-L18C89" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L18C76-L18C89" }, { "DocsId": "M:System.Security.SecurityManager.GetStandardSandbox(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L19C77-L19C107" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L19C77-L19C107" }, { "DocsId": "M:System.Security.SecurityManager.GetZoneAndOrigin(System.Collections.ArrayList@,System.Collections.ArrayList@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L20C127-L20C222" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L20C127-L20C222" }, { "DocsId": "M:System.Security.SecurityManager.IsGranted(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L22C58-L22C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L22C58-L22C71" }, { "DocsId": "M:System.Security.SecurityManager.LoadPolicyLevelFromFile(System.String,System.Security.PolicyLevelType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L24C96-L24C124" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L24C96-L24C124" }, { "DocsId": "M:System.Security.SecurityManager.LoadPolicyLevelFromString(System.String,System.Security.PolicyLevelType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L26C97-L26C125" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L26C97-L26C125" }, { "DocsId": "M:System.Security.SecurityManager.PolicyHierarchy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L28C55-L28C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L28C55-L28C83" }, { "DocsId": "M:System.Security.SecurityManager.ResolvePolicy(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L30C72-L30C102" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L30C72-L30C102" }, { "DocsId": "M:System.Security.SecurityManager.ResolvePolicy(System.Security.Policy.Evidence,System.Security.PermissionSet,System.Security.PermissionSet,System.Security.PermissionSet,System.Security.PermissionSet@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L32C192-L32C271" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L32C192-L32C271" }, { "DocsId": "M:System.Security.SecurityManager.ResolvePolicy(System.Security.Policy.Evidence[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L34C98-L34C128" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L34C98-L34C128" }, { "DocsId": "M:System.Security.SecurityManager.ResolvePolicyGroups(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L36C99-L36C127" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L36C99-L36C127" }, { "DocsId": "M:System.Security.SecurityManager.ResolveSystemPolicy(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L38C101-L38C131" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L38C101-L38C131" }, { "DocsId": "M:System.Security.SecurityManager.SavePolicy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L40C43-L40C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L40C43-L40C44" }, { "DocsId": "M:System.Security.SecurityManager.SavePolicyLevel(System.Security.Policy.PolicyLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L42C65-L42C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L42C65-L42C66" }, { "DocsId": "P:System.Security.SecurityManager.CheckExecutionRights", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L15C51-L15C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L15C51-L15C55" }, { "DocsId": "P:System.Security.SecurityManager.SecurityEnabled", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L17C46-L17C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L17C46-L17C50" } ], "DocsId": "T:System.Security.SecurityManager", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs" }, { "Members": [ { "DocsId": "M:System.Security.SecurityState.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/SecurityState.cs#L8C9-L8C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/SecurityState.cs#L8C9-L8C38" }, { "DocsId": "M:System.Security.SecurityState.EnsureState", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/SecurityState.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/SecurityState.cs" }, { "DocsId": "M:System.Security.SecurityState.IsStateAvailable", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/SecurityState.cs#L10C42-L10C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/SecurityState.cs#L10C42-L10C55" } ], "DocsId": "T:System.Security.SecurityState", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/SecurityState.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/SecurityState.cs" }, { "Members": [ { "DocsId": "F:System.Security.SecurityZone.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/SecurityZone.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/SecurityZone.cs" }, { "DocsId": "F:System.Security.SecurityZone.Internet", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/SecurityZone.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/SecurityZone.cs" }, { "DocsId": "F:System.Security.SecurityZone.Intranet", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/SecurityZone.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/SecurityZone.cs" }, { "DocsId": "F:System.Security.SecurityZone.MyComputer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/SecurityZone.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/SecurityZone.cs" }, { "DocsId": "F:System.Security.SecurityZone.NoZone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/SecurityZone.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/SecurityZone.cs" }, { "DocsId": "F:System.Security.SecurityZone.Trusted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/SecurityZone.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/SecurityZone.cs" }, { "DocsId": "F:System.Security.SecurityZone.Untrusted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/SecurityZone.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/SecurityZone.cs" } ], "DocsId": "T:System.Security.SecurityZone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/SecurityZone.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/SecurityZone.cs" }, { "Members": [ { "DocsId": "M:System.Security.XmlSyntaxException.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/XmlSyntaxException.cs#L12C9-L12C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/XmlSyntaxException.cs#L12C9-L12C40" }, { "DocsId": "M:System.Security.XmlSyntaxException.#ctor(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/XmlSyntaxException.cs#L13C9-L13C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/XmlSyntaxException.cs#L13C9-L13C54" }, { "DocsId": "M:System.Security.XmlSyntaxException.#ctor(System.Int32,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/XmlSyntaxException.cs#L14C9-L14C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/XmlSyntaxException.cs#L14C9-L14C70" }, { "DocsId": "M:System.Security.XmlSyntaxException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/XmlSyntaxException.cs#L15C9-L15C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/XmlSyntaxException.cs#L15C9-L15C54" }, { "DocsId": "M:System.Security.XmlSyntaxException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/XmlSyntaxException.cs#L16C9-L16C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/XmlSyntaxException.cs#L16C9-L16C71" } ], "DocsId": "T:System.Security.XmlSyntaxException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/XmlSyntaxException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/XmlSyntaxException.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.AllMembershipCondition.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/AllMembershipCondition.cs#L8C9-L8C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/AllMembershipCondition.cs#L8C9-L8C44" }, { "DocsId": "M:System.Security.Policy.AllMembershipCondition.Check(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/AllMembershipCondition.cs#L9C48-L9C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/AllMembershipCondition.cs#L9C48-L9C61" }, { "DocsId": "M:System.Security.Policy.AllMembershipCondition.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/AllMembershipCondition.cs#L10C46-L10C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/AllMembershipCondition.cs#L10C46-L10C83" }, { "DocsId": "M:System.Security.Policy.AllMembershipCondition.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/AllMembershipCondition.cs#L11C50-L11C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/AllMembershipCondition.cs#L11C50-L11C64" }, { "DocsId": "M:System.Security.Policy.AllMembershipCondition.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/AllMembershipCondition.cs#L12C50-L12C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/AllMembershipCondition.cs#L12C50-L12C51" }, { "DocsId": "M:System.Security.Policy.AllMembershipCondition.FromXml(System.Security.SecurityElement,System.Security.Policy.PolicyLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/AllMembershipCondition.cs#L13C69-L13C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/AllMembershipCondition.cs#L13C69-L13C70" }, { "DocsId": "M:System.Security.Policy.AllMembershipCondition.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/AllMembershipCondition.cs#L14C46-L14C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/AllMembershipCondition.cs#L14C46-L14C64" }, { "DocsId": "M:System.Security.Policy.AllMembershipCondition.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/AllMembershipCondition.cs#L15C46-L15C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/AllMembershipCondition.cs#L15C46-L15C61" }, { "DocsId": "M:System.Security.Policy.AllMembershipCondition.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/AllMembershipCondition.cs#L16C42-L16C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/AllMembershipCondition.cs#L16C42-L16C74" }, { "DocsId": "M:System.Security.Policy.AllMembershipCondition.ToXml(System.Security.Policy.PolicyLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/AllMembershipCondition.cs#L17C59-L17C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/AllMembershipCondition.cs#L17C59-L17C91" } ], "DocsId": "T:System.Security.Policy.AllMembershipCondition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/AllMembershipCondition.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/AllMembershipCondition.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.ApplicationDirectory.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectory.cs#L8C9-L8C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectory.cs#L8C9-L8C53" }, { "DocsId": "M:System.Security.Policy.ApplicationDirectory.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectory.cs#L10C32-L10C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectory.cs#L10C32-L10C44" }, { "DocsId": "M:System.Security.Policy.ApplicationDirectory.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectory.cs#L11C50-L11C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectory.cs#L11C50-L11C64" }, { "DocsId": "M:System.Security.Policy.ApplicationDirectory.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectory.cs#L12C46-L12C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectory.cs#L12C46-L12C64" }, { "DocsId": "M:System.Security.Policy.ApplicationDirectory.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectory.cs#L13C46-L13C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectory.cs#L13C46-L13C61" }, { "DocsId": "P:System.Security.Policy.ApplicationDirectory.Directory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectory.cs#L9C41-L9C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectory.cs#L9C41-L9C53" } ], "DocsId": "T:System.Security.Policy.ApplicationDirectory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectory.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectory.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.ApplicationDirectoryMembershipCondition.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectoryMembershipCondition.cs#L8C9-L8C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectoryMembershipCondition.cs#L8C9-L8C61" }, { "DocsId": "M:System.Security.Policy.ApplicationDirectoryMembershipCondition.Check(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectoryMembershipCondition.cs#L9C48-L9C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectoryMembershipCondition.cs#L9C48-L9C61" }, { "DocsId": "M:System.Security.Policy.ApplicationDirectoryMembershipCondition.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectoryMembershipCondition.cs#L10C46-L10C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectoryMembershipCondition.cs#L10C46-L10C83" }, { "DocsId": "M:System.Security.Policy.ApplicationDirectoryMembershipCondition.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectoryMembershipCondition.cs#L11C50-L11C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectoryMembershipCondition.cs#L11C50-L11C64" }, { "DocsId": "M:System.Security.Policy.ApplicationDirectoryMembershipCondition.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectoryMembershipCondition.cs#L12C50-L12C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectoryMembershipCondition.cs#L12C50-L12C51" }, { "DocsId": "M:System.Security.Policy.ApplicationDirectoryMembershipCondition.FromXml(System.Security.SecurityElement,System.Security.Policy.PolicyLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectoryMembershipCondition.cs#L13C69-L13C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectoryMembershipCondition.cs#L13C69-L13C70" }, { "DocsId": "M:System.Security.Policy.ApplicationDirectoryMembershipCondition.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectoryMembershipCondition.cs#L14C46-L14C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectoryMembershipCondition.cs#L14C46-L14C64" }, { "DocsId": "M:System.Security.Policy.ApplicationDirectoryMembershipCondition.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectoryMembershipCondition.cs#L15C46-L15C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectoryMembershipCondition.cs#L15C46-L15C61" }, { "DocsId": "M:System.Security.Policy.ApplicationDirectoryMembershipCondition.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectoryMembershipCondition.cs#L16C42-L16C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectoryMembershipCondition.cs#L16C42-L16C74" }, { "DocsId": "M:System.Security.Policy.ApplicationDirectoryMembershipCondition.ToXml(System.Security.Policy.PolicyLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectoryMembershipCondition.cs#L17C59-L17C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectoryMembershipCondition.cs#L17C59-L17C91" } ], "DocsId": "T:System.Security.Policy.ApplicationDirectoryMembershipCondition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectoryMembershipCondition.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectoryMembershipCondition.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.ApplicationTrust.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrust.cs#L10C9-L10C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrust.cs#L10C9-L10C38" }, { "DocsId": "M:System.Security.Policy.ApplicationTrust.#ctor(System.ApplicationIdentity)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrust.cs#L11C9-L11C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrust.cs#L11C9-L11C66" }, { "DocsId": "M:System.Security.Policy.ApplicationTrust.#ctor(System.Security.PermissionSet,System.Collections.Generic.IEnumerable{System.Security.Policy.StrongName})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrust.cs#L15C9-L15C112" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrust.cs#L15C9-L15C112" }, { "DocsId": "M:System.Security.Policy.ApplicationTrust.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrust.cs#L25C56-L25C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrust.cs#L25C56-L25C57" }, { "DocsId": "M:System.Security.Policy.ApplicationTrust.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrust.cs#L26C42-L26C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrust.cs#L26C42-L26C74" }, { "DocsId": "P:System.Security.Policy.ApplicationTrust.ApplicationIdentity", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrust.cs#L16C58-L16C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrust.cs#L16C58-L16C62" }, { "DocsId": "P:System.Security.Policy.ApplicationTrust.DefaultGrantSet", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrust.cs#L17C50-L17C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrust.cs#L17C50-L17C54" }, { "DocsId": "P:System.Security.Policy.ApplicationTrust.ExtraInfo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrust.cs#L18C35-L18C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrust.cs#L18C35-L18C39" }, { "DocsId": "P:System.Security.Policy.ApplicationTrust.FullTrustAssemblies", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrust.cs#L22C62-L22C96" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrust.cs#L22C62-L22C96" }, { "DocsId": "P:System.Security.Policy.ApplicationTrust.IsApplicationTrustedToRun", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrust.cs#L23C49-L23C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrust.cs#L23C49-L23C53" }, { "DocsId": "P:System.Security.Policy.ApplicationTrust.Persist", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrust.cs#L24C31-L24C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrust.cs#L24C31-L24C35" } ], "DocsId": "T:System.Security.Policy.ApplicationTrust", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrust.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrust.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.ApplicationTrustCollection.Add(System.Security.Policy.ApplicationTrust)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L16C50-L16C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L16C50-L16C59" }, { "DocsId": "M:System.Security.Policy.ApplicationTrustCollection.AddRange(System.Security.Policy.ApplicationTrust[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L17C59-L17C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L17C59-L17C60" }, { "DocsId": "M:System.Security.Policy.ApplicationTrustCollection.AddRange(System.Security.Policy.ApplicationTrustCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L18C67-L18C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L18C67-L18C68" }, { "DocsId": "M:System.Security.Policy.ApplicationTrustCollection.Clear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L19C31-L19C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L19C31-L19C32" }, { "DocsId": "M:System.Security.Policy.ApplicationTrustCollection.CopyTo(System.Security.Policy.ApplicationTrust[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L20C67-L20C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L20C67-L20C68" }, { "DocsId": "M:System.Security.Policy.ApplicationTrustCollection.Find(System.ApplicationIdentity,System.Security.Policy.ApplicationVersionMatch)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L21C129-L21C172" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L21C129-L21C172" }, { "DocsId": "M:System.Security.Policy.ApplicationTrustCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L22C61-L22C101" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L22C61-L22C101" }, { "DocsId": "M:System.Security.Policy.ApplicationTrustCollection.Remove(System.Security.Policy.ApplicationTrust)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L23C54-L23C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L23C54-L23C55" }, { "DocsId": "M:System.Security.Policy.ApplicationTrustCollection.Remove(System.ApplicationIdentity,System.Security.Policy.ApplicationVersionMatch)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L24C109-L24C110" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L24C109-L24C110" }, { "DocsId": "M:System.Security.Policy.ApplicationTrustCollection.RemoveRange(System.Security.Policy.ApplicationTrust[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L25C62-L25C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L25C62-L25C63" }, { "DocsId": "M:System.Security.Policy.ApplicationTrustCollection.RemoveRange(System.Security.Policy.ApplicationTrustCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L26C70-L26C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L26C70-L26C71" }, { "DocsId": "M:System.Security.Policy.ApplicationTrustCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L27C59-L27C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L27C59-L27C60" }, { "DocsId": "M:System.Security.Policy.ApplicationTrustCollection.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L28C51-L28C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L28C51-L28C74" }, { "DocsId": "P:System.Security.Policy.ApplicationTrustCollection.Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L11C34-L11C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L11C34-L11C43" }, { "DocsId": "P:System.Security.Policy.ApplicationTrustCollection.IsSynchronized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L12C44-L12C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L12C44-L12C57" }, { "DocsId": "P:System.Security.Policy.ApplicationTrustCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L13C57-L13C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L13C57-L13C90" }, { "DocsId": "P:System.Security.Policy.ApplicationTrustCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L14C66-L14C99" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L14C66-L14C99" }, { "DocsId": "P:System.Security.Policy.ApplicationTrustCollection.SyncRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L15C40-L15C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L15C40-L15C52" } ], "DocsId": "T:System.Security.Policy.ApplicationTrustCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.ApplicationTrustEnumerator.System#Collections#IEnumerator#get_Current", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustEnumerator.cs#L12C44-L12C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustEnumerator.cs#L12C44-L12C56" }, { "DocsId": "M:System.Security.Policy.ApplicationTrustEnumerator.MoveNext", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustEnumerator.cs#L13C34-L13C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustEnumerator.cs#L13C34-L13C47" }, { "DocsId": "M:System.Security.Policy.ApplicationTrustEnumerator.Reset", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustEnumerator.cs#L14C31-L14C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustEnumerator.cs#L14C31-L14C32" }, { "DocsId": "P:System.Security.Policy.ApplicationTrustEnumerator.Current", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustEnumerator.cs#L11C49-L11C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustEnumerator.cs#L11C49-L11C82" }, { "DocsId": "P:System.Security.Policy.ApplicationTrustEnumerator.System#Collections#IEnumerator#Current", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustEnumerator.cs#L12C44-L12C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustEnumerator.cs#L12C44-L12C56" } ], "DocsId": "T:System.Security.Policy.ApplicationTrustEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustEnumerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustEnumerator.cs" }, { "Members": [ { "DocsId": "F:System.Security.Policy.ApplicationVersionMatch.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationVersionMatch.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationVersionMatch.cs" }, { "DocsId": "F:System.Security.Policy.ApplicationVersionMatch.MatchAllVersions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationVersionMatch.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationVersionMatch.cs" }, { "DocsId": "F:System.Security.Policy.ApplicationVersionMatch.MatchExactVersion", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationVersionMatch.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationVersionMatch.cs" } ], "DocsId": "T:System.Security.Policy.ApplicationVersionMatch", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationVersionMatch.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationVersionMatch.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.CodeConnectAccess.#ctor(System.String,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeConnectAccess.cs#L12C9-L12C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeConnectAccess.cs#L12C9-L12C72" }, { "DocsId": "M:System.Security.Policy.CodeConnectAccess.CreateAnySchemeAccess(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeConnectAccess.cs#L15C80-L15C114" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeConnectAccess.cs#L15C80-L15C114" }, { "DocsId": "M:System.Security.Policy.CodeConnectAccess.CreateOriginSchemeAccess(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeConnectAccess.cs#L16C83-L16C117" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeConnectAccess.cs#L16C83-L16C117" }, { "DocsId": "M:System.Security.Policy.CodeConnectAccess.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeConnectAccess.cs#L17C50-L17C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeConnectAccess.cs#L17C50-L17C64" }, { "DocsId": "M:System.Security.Policy.CodeConnectAccess.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeConnectAccess.cs#L18C46-L18C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeConnectAccess.cs#L18C46-L18C64" }, { "DocsId": "F:System.Security.Policy.CodeConnectAccess.AnyScheme", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeConnectAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeConnectAccess.cs" }, { "DocsId": "F:System.Security.Policy.CodeConnectAccess.DefaultPort", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeConnectAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeConnectAccess.cs" }, { "DocsId": "F:System.Security.Policy.CodeConnectAccess.OriginPort", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeConnectAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeConnectAccess.cs" }, { "DocsId": "F:System.Security.Policy.CodeConnectAccess.OriginScheme", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeConnectAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeConnectAccess.cs" }, { "DocsId": "P:System.Security.Policy.CodeConnectAccess.Port", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeConnectAccess.cs#L13C33-L13C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeConnectAccess.cs#L13C33-L13C42" }, { "DocsId": "P:System.Security.Policy.CodeConnectAccess.Scheme", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeConnectAccess.cs#L14C38-L14C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeConnectAccess.cs#L14C38-L14C50" } ], "DocsId": "T:System.Security.Policy.CodeConnectAccess", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeConnectAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeConnectAccess.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.CodeGroup.#ctor(System.Security.Policy.IMembershipCondition,System.Security.Policy.PolicyStatement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L10C9-L10C98" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L10C9-L10C98" }, { "DocsId": "M:System.Security.Policy.CodeGroup.AddChild(System.Security.Policy.CodeGroup)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L19C49-L19C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L19C49-L19C50" }, { "DocsId": "M:System.Security.Policy.CodeGroup.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs" }, { "DocsId": "M:System.Security.Policy.CodeGroup.CreateXml(System.Security.SecurityElement,System.Security.Policy.PolicyLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L21C88-L21C89" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L21C88-L21C89" }, { "DocsId": "M:System.Security.Policy.CodeGroup.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L22C50-L22C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L22C50-L22C64" }, { "DocsId": "M:System.Security.Policy.CodeGroup.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L23C50-L23C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L23C50-L23C51" }, { "DocsId": "M:System.Security.Policy.CodeGroup.FromXml(System.Security.SecurityElement,System.Security.Policy.PolicyLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L24C69-L24C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L24C69-L24C70" }, { "DocsId": "M:System.Security.Policy.CodeGroup.Equals(System.Security.Policy.CodeGroup,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L25C66-L25C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L25C66-L25C79" }, { "DocsId": "M:System.Security.Policy.CodeGroup.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L26C46-L26C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L26C46-L26C64" }, { "DocsId": "M:System.Security.Policy.CodeGroup.ParseXml(System.Security.SecurityElement,System.Security.Policy.PolicyLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L27C81-L27C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L27C81-L27C82" }, { "DocsId": "M:System.Security.Policy.CodeGroup.RemoveChild(System.Security.Policy.CodeGroup)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L28C52-L28C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L28C52-L28C53" }, { "DocsId": "M:System.Security.Policy.CodeGroup.Resolve(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs" }, { "DocsId": "M:System.Security.Policy.CodeGroup.ResolveMatchingCodeGroups(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs" }, { "DocsId": "M:System.Security.Policy.CodeGroup.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L31C42-L31C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L31C42-L31C74" }, { "DocsId": "M:System.Security.Policy.CodeGroup.ToXml(System.Security.Policy.PolicyLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L32C59-L32C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L32C59-L32C91" }, { "DocsId": "P:System.Security.Policy.CodeGroup.AttributeString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L11C55-L11C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L11C55-L11C67" }, { "DocsId": "P:System.Security.Policy.CodeGroup.Children", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L12C33-L12C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L12C33-L12C37" }, { "DocsId": "P:System.Security.Policy.CodeGroup.Description", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L13C37-L13C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L13C37-L13C41" }, { "DocsId": "P:System.Security.Policy.CodeGroup.MembershipCondition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L14C59-L14C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L14C59-L14C63" }, { "DocsId": "P:System.Security.Policy.CodeGroup.MergeLogic", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs" }, { "DocsId": "P:System.Security.Policy.CodeGroup.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L16C30-L16C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L16C30-L16C34" }, { "DocsId": "P:System.Security.Policy.CodeGroup.PermissionSetName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L17C57-L17C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L17C57-L17C69" }, { "DocsId": "P:System.Security.Policy.CodeGroup.PolicyStatement", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L18C50-L18C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L18C50-L18C54" } ], "DocsId": "T:System.Security.Policy.CodeGroup", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.FileCodeGroup.#ctor(System.Security.Policy.IMembershipCondition,System.Security.Permissions.FileIOPermissionAccess)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/FileCodeGroup.cs#L11C117-L11C182" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/FileCodeGroup.cs#L11C117-L11C182" }, { "DocsId": "M:System.Security.Policy.FileCodeGroup.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/FileCodeGroup.cs#L15C44-L15C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/FileCodeGroup.cs#L15C44-L15C70" }, { "DocsId": "M:System.Security.Policy.FileCodeGroup.CreateXml(System.Security.SecurityElement,System.Security.Policy.PolicyLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/FileCodeGroup.cs#L16C89-L16C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/FileCodeGroup.cs#L16C89-L16C90" }, { "DocsId": "M:System.Security.Policy.FileCodeGroup.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/FileCodeGroup.cs#L17C50-L17C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/FileCodeGroup.cs#L17C50-L17C64" }, { "DocsId": "M:System.Security.Policy.FileCodeGroup.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/FileCodeGroup.cs#L18C46-L18C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/FileCodeGroup.cs#L18C46-L18C64" }, { "DocsId": "M:System.Security.Policy.FileCodeGroup.ParseXml(System.Security.SecurityElement,System.Security.Policy.PolicyLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/FileCodeGroup.cs#L19C82-L19C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/FileCodeGroup.cs#L19C82-L19C83" }, { "DocsId": "M:System.Security.Policy.FileCodeGroup.Resolve(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/FileCodeGroup.cs#L20C70-L20C102" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/FileCodeGroup.cs#L20C70-L20C102" }, { "DocsId": "M:System.Security.Policy.FileCodeGroup.ResolveMatchingCodeGroups(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/FileCodeGroup.cs#L21C82-L21C108" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/FileCodeGroup.cs#L21C82-L21C108" }, { "DocsId": "P:System.Security.Policy.FileCodeGroup.AttributeString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/FileCodeGroup.cs#L12C56-L12C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/FileCodeGroup.cs#L12C56-L12C68" }, { "DocsId": "P:System.Security.Policy.FileCodeGroup.MergeLogic", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/FileCodeGroup.cs#L13C51-L13C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/FileCodeGroup.cs#L13C51-L13C63" }, { "DocsId": "P:System.Security.Policy.FileCodeGroup.PermissionSetName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/FileCodeGroup.cs#L14C58-L14C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/FileCodeGroup.cs#L14C58-L14C70" } ], "DocsId": "T:System.Security.Policy.FileCodeGroup", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/FileCodeGroup.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/FileCodeGroup.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.FirstMatchCodeGroup.#ctor(System.Security.Policy.IMembershipCondition,System.Security.Policy.PolicyStatement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/FirstMatchCodeGroup.cs#L9C104-L9C169" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/FirstMatchCodeGroup.cs#L9C104-L9C169" }, { "DocsId": "M:System.Security.Policy.FirstMatchCodeGroup.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/FirstMatchCodeGroup.cs#L11C44-L11C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/FirstMatchCodeGroup.cs#L11C44-L11C70" }, { "DocsId": "M:System.Security.Policy.FirstMatchCodeGroup.Resolve(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/FirstMatchCodeGroup.cs#L12C70-L12C102" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/FirstMatchCodeGroup.cs#L12C70-L12C102" }, { "DocsId": "M:System.Security.Policy.FirstMatchCodeGroup.ResolveMatchingCodeGroups(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/FirstMatchCodeGroup.cs#L13C82-L13C108" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/FirstMatchCodeGroup.cs#L13C82-L13C108" }, { "DocsId": "P:System.Security.Policy.FirstMatchCodeGroup.MergeLogic", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/FirstMatchCodeGroup.cs#L10C51-L10C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/FirstMatchCodeGroup.cs#L10C51-L10C63" } ], "DocsId": "T:System.Security.Policy.FirstMatchCodeGroup", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/FirstMatchCodeGroup.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/FirstMatchCodeGroup.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.GacInstalled.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacInstalled.cs#L11C9-L11C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacInstalled.cs#L11C9-L11C34" }, { "DocsId": "M:System.Security.Policy.GacInstalled.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacInstalled.cs#L12C32-L12C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacInstalled.cs#L12C32-L12C44" }, { "DocsId": "M:System.Security.Policy.GacInstalled.CreateIdentityPermission(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacInstalled.cs#L13C74-L13C102" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacInstalled.cs#L13C74-L13C102" }, { "DocsId": "M:System.Security.Policy.GacInstalled.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacInstalled.cs#L14C50-L14C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacInstalled.cs#L14C50-L14C64" }, { "DocsId": "M:System.Security.Policy.GacInstalled.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacInstalled.cs#L15C46-L15C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacInstalled.cs#L15C46-L15C64" }, { "DocsId": "M:System.Security.Policy.GacInstalled.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacInstalled.cs#L16C46-L16C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacInstalled.cs#L16C46-L16C61" } ], "DocsId": "T:System.Security.Policy.GacInstalled", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacInstalled.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacInstalled.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.GacMembershipCondition.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacMembershipCondition.cs#L8C9-L8C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacMembershipCondition.cs#L8C9-L8C44" }, { "DocsId": "M:System.Security.Policy.GacMembershipCondition.Check(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacMembershipCondition.cs#L9C48-L9C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacMembershipCondition.cs#L9C48-L9C61" }, { "DocsId": "M:System.Security.Policy.GacMembershipCondition.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacMembershipCondition.cs#L10C46-L10C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacMembershipCondition.cs#L10C46-L10C83" }, { "DocsId": "M:System.Security.Policy.GacMembershipCondition.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacMembershipCondition.cs#L11C50-L11C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacMembershipCondition.cs#L11C50-L11C64" }, { "DocsId": "M:System.Security.Policy.GacMembershipCondition.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacMembershipCondition.cs#L12C50-L12C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacMembershipCondition.cs#L12C50-L12C51" }, { "DocsId": "M:System.Security.Policy.GacMembershipCondition.FromXml(System.Security.SecurityElement,System.Security.Policy.PolicyLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacMembershipCondition.cs#L13C69-L13C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacMembershipCondition.cs#L13C69-L13C70" }, { "DocsId": "M:System.Security.Policy.GacMembershipCondition.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacMembershipCondition.cs#L14C46-L14C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacMembershipCondition.cs#L14C46-L14C64" }, { "DocsId": "M:System.Security.Policy.GacMembershipCondition.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacMembershipCondition.cs#L15C46-L15C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacMembershipCondition.cs#L15C46-L15C61" }, { "DocsId": "M:System.Security.Policy.GacMembershipCondition.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacMembershipCondition.cs#L16C42-L16C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacMembershipCondition.cs#L16C42-L16C74" }, { "DocsId": "M:System.Security.Policy.GacMembershipCondition.ToXml(System.Security.Policy.PolicyLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacMembershipCondition.cs#L17C59-L17C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacMembershipCondition.cs#L17C59-L17C91" } ], "DocsId": "T:System.Security.Policy.GacMembershipCondition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacMembershipCondition.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacMembershipCondition.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.Hash.#ctor(System.Reflection.Assembly)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/Hash.cs#L12C9-L12C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/Hash.cs#L12C9-L12C61" }, { "DocsId": "M:System.Security.Policy.Hash.CreateMD5(System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/Hash.cs#L16C52-L16C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/Hash.cs#L16C52-L16C73" }, { "DocsId": "M:System.Security.Policy.Hash.CreateSHA1(System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/Hash.cs#L17C54-L17C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/Hash.cs#L17C54-L17C75" }, { "DocsId": "M:System.Security.Policy.Hash.CreateSHA256(System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/Hash.cs#L18C58-L18C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/Hash.cs#L18C58-L18C79" }, { "DocsId": "M:System.Security.Policy.Hash.GenerateHash(System.Security.Cryptography.HashAlgorithm)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/Hash.cs#L19C61-L19C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/Hash.cs#L19C61-L19C73" }, { "DocsId": "M:System.Security.Policy.Hash.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/Hash.cs#L26C13-L26C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/Hash.cs#L26C13-L26C55" }, { "DocsId": "M:System.Security.Policy.Hash.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/Hash.cs#L29C46-L29C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/Hash.cs#L29C46-L29C61" }, { "DocsId": "P:System.Security.Policy.Hash.MD5", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/Hash.cs#L13C35-L13C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/Hash.cs#L13C35-L13C47" }, { "DocsId": "P:System.Security.Policy.Hash.SHA1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/Hash.cs#L14C36-L14C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/Hash.cs#L14C36-L14C48" }, { "DocsId": "P:System.Security.Policy.Hash.SHA256", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/Hash.cs#L15C38-L15C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/Hash.cs#L15C38-L15C50" } ], "DocsId": "T:System.Security.Policy.Hash", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/Hash.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/Hash.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.HashMembershipCondition.#ctor(System.Security.Cryptography.HashAlgorithm,System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/HashMembershipCondition.cs#L11C9-L11C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/HashMembershipCondition.cs#L11C9-L11C80" }, { "DocsId": "M:System.Security.Policy.HashMembershipCondition.Check(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/HashMembershipCondition.cs#L14C48-L14C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/HashMembershipCondition.cs#L14C48-L14C61" }, { "DocsId": "M:System.Security.Policy.HashMembershipCondition.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/HashMembershipCondition.cs#L15C46-L15C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/HashMembershipCondition.cs#L15C46-L15C58" }, { "DocsId": "M:System.Security.Policy.HashMembershipCondition.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/HashMembershipCondition.cs#L16C50-L16C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/HashMembershipCondition.cs#L16C50-L16C64" }, { "DocsId": "M:System.Security.Policy.HashMembershipCondition.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/HashMembershipCondition.cs#L17C50-L17C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/HashMembershipCondition.cs#L17C50-L17C51" }, { "DocsId": "M:System.Security.Policy.HashMembershipCondition.FromXml(System.Security.SecurityElement,System.Security.Policy.PolicyLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/HashMembershipCondition.cs#L18C69-L18C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/HashMembershipCondition.cs#L18C69-L18C70" }, { "DocsId": "M:System.Security.Policy.HashMembershipCondition.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/HashMembershipCondition.cs#L19C46-L19C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/HashMembershipCondition.cs#L19C46-L19C64" }, { "DocsId": "M:System.Security.Policy.HashMembershipCondition.System#Runtime#Serialization#IDeserializationCallback#OnDeserialization(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/HashMembershipCondition.cs#L20C74-L20C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/HashMembershipCondition.cs#L20C74-L20C75" }, { "DocsId": "M:System.Security.Policy.HashMembershipCondition.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/HashMembershipCondition.cs#L23C13-L23C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/HashMembershipCondition.cs#L23C13-L23C55" }, { "DocsId": "M:System.Security.Policy.HashMembershipCondition.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/HashMembershipCondition.cs#L26C46-L26C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/HashMembershipCondition.cs#L26C46-L26C61" }, { "DocsId": "M:System.Security.Policy.HashMembershipCondition.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/HashMembershipCondition.cs#L27C42-L27C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/HashMembershipCondition.cs#L27C42-L27C74" }, { "DocsId": "M:System.Security.Policy.HashMembershipCondition.ToXml(System.Security.Policy.PolicyLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/HashMembershipCondition.cs#L28C59-L28C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/HashMembershipCondition.cs#L28C59-L28C91" }, { "DocsId": "P:System.Security.Policy.HashMembershipCondition.HashAlgorithm", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/HashMembershipCondition.cs#L12C46-L12C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/HashMembershipCondition.cs#L12C46-L12C50" }, { "DocsId": "P:System.Security.Policy.HashMembershipCondition.HashValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/HashMembershipCondition.cs#L13C35-L13C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/HashMembershipCondition.cs#L13C35-L13C39" } ], "DocsId": "T:System.Security.Policy.HashMembershipCondition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/HashMembershipCondition.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/HashMembershipCondition.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.IIdentityPermissionFactory.CreateIdentityPermission(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/IIdentityPermissionFactory.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/IIdentityPermissionFactory.cs" } ], "DocsId": "T:System.Security.Policy.IIdentityPermissionFactory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/IIdentityPermissionFactory.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/IIdentityPermissionFactory.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.IMembershipCondition.Check(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/IMembershipCondition.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/IMembershipCondition.cs" }, { "DocsId": "M:System.Security.Policy.IMembershipCondition.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/IMembershipCondition.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/IMembershipCondition.cs" }, { "DocsId": "M:System.Security.Policy.IMembershipCondition.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/IMembershipCondition.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/IMembershipCondition.cs" }, { "DocsId": "M:System.Security.Policy.IMembershipCondition.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/IMembershipCondition.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/IMembershipCondition.cs" } ], "DocsId": "T:System.Security.Policy.IMembershipCondition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/IMembershipCondition.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/IMembershipCondition.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.NetCodeGroup.#ctor(System.Security.Policy.IMembershipCondition)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs#L10C73-L10C138" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs#L10C73-L10C138" }, { "DocsId": "M:System.Security.Policy.NetCodeGroup.AddConnectAccess(System.String,System.Security.Policy.CodeConnectAccess)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs#L14C94-L14C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs#L14C94-L14C95" }, { "DocsId": "M:System.Security.Policy.NetCodeGroup.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs#L15C44-L15C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs#L15C44-L15C70" }, { "DocsId": "M:System.Security.Policy.NetCodeGroup.CreateXml(System.Security.SecurityElement,System.Security.Policy.PolicyLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs#L16C89-L16C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs#L16C89-L16C90" }, { "DocsId": "M:System.Security.Policy.NetCodeGroup.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs#L17C50-L17C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs#L17C50-L17C64" }, { "DocsId": "M:System.Security.Policy.NetCodeGroup.GetConnectAccessRules", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs#L18C79-L18C132" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs#L18C79-L18C132" }, { "DocsId": "M:System.Security.Policy.NetCodeGroup.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs#L19C46-L19C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs#L19C46-L19C64" }, { "DocsId": "M:System.Security.Policy.NetCodeGroup.ParseXml(System.Security.SecurityElement,System.Security.Policy.PolicyLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs#L20C82-L20C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs#L20C82-L20C83" }, { "DocsId": "M:System.Security.Policy.NetCodeGroup.ResetConnectAccess", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs#L21C44-L21C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs#L21C44-L21C45" }, { "DocsId": "M:System.Security.Policy.NetCodeGroup.Resolve(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs#L22C70-L22C102" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs#L22C70-L22C102" }, { "DocsId": "M:System.Security.Policy.NetCodeGroup.ResolveMatchingCodeGroups(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs#L23C82-L23C108" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs#L23C82-L23C108" }, { "DocsId": "F:System.Security.Policy.NetCodeGroup.AbsentOriginScheme", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs" }, { "DocsId": "F:System.Security.Policy.NetCodeGroup.AnyOtherOriginScheme", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs" }, { "DocsId": "P:System.Security.Policy.NetCodeGroup.AttributeString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs#L11C56-L11C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs#L11C56-L11C68" }, { "DocsId": "P:System.Security.Policy.NetCodeGroup.MergeLogic", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs#L12C51-L12C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs#L12C51-L12C63" }, { "DocsId": "P:System.Security.Policy.NetCodeGroup.PermissionSetName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs#L13C58-L13C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs#L13C58-L13C70" } ], "DocsId": "T:System.Security.Policy.NetCodeGroup", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.PermissionRequestEvidence.#ctor(System.Security.PermissionSet,System.Security.PermissionSet,System.Security.PermissionSet)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PermissionRequestEvidence.cs#L9C9-L9C114" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PermissionRequestEvidence.cs#L9C9-L9C114" }, { "DocsId": "M:System.Security.Policy.PermissionRequestEvidence.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PermissionRequestEvidence.cs#L13C51-L13C93" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PermissionRequestEvidence.cs#L13C51-L13C93" }, { "DocsId": "M:System.Security.Policy.PermissionRequestEvidence.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PermissionRequestEvidence.cs#L14C46-L14C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PermissionRequestEvidence.cs#L14C46-L14C61" }, { "DocsId": "P:System.Security.Policy.PermissionRequestEvidence.DeniedPermissions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PermissionRequestEvidence.cs#L10C56-L10C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PermissionRequestEvidence.cs#L10C56-L10C86" }, { "DocsId": "P:System.Security.Policy.PermissionRequestEvidence.OptionalPermissions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PermissionRequestEvidence.cs#L11C58-L11C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PermissionRequestEvidence.cs#L11C58-L11C88" }, { "DocsId": "P:System.Security.Policy.PermissionRequestEvidence.RequestedPermissions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PermissionRequestEvidence.cs#L12C59-L12C89" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PermissionRequestEvidence.cs#L12C59-L12C89" } ], "DocsId": "T:System.Security.Policy.PermissionRequestEvidence", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PermissionRequestEvidence.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PermissionRequestEvidence.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.PolicyException.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyException.cs#L13C9-L13C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyException.cs#L13C9-L13C37" }, { "DocsId": "M:System.Security.Policy.PolicyException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyException.cs#L18C87-L18C110" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyException.cs#L18C87-L18C110" }, { "DocsId": "M:System.Security.Policy.PolicyException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyException.cs#L19C50-L19C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyException.cs#L19C50-L19C67" }, { "DocsId": "M:System.Security.Policy.PolicyException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyException.cs#L20C71-L20C99" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyException.cs#L20C71-L20C99" } ], "DocsId": "T:System.Security.Policy.PolicyException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyException.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.PolicyLevel.AddFullTrustAssembly(System.Security.Policy.StrongName)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L18C59-L18C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L18C59-L18C60" }, { "DocsId": "M:System.Security.Policy.PolicyLevel.AddFullTrustAssembly(System.Security.Policy.StrongNameMembershipCondition)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L20C80-L20C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L20C80-L20C81" }, { "DocsId": "M:System.Security.Policy.PolicyLevel.AddNamedPermissionSet(System.Security.NamedPermissionSet)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L24C73-L24C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L24C73-L24C74" }, { "DocsId": "M:System.Security.Policy.PolicyLevel.ChangeNamedPermissionSet(System.String,System.Security.PermissionSet)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L28C95-L28C130" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L28C95-L28C130" }, { "DocsId": "M:System.Security.Policy.PolicyLevel.CreateAppDomainLevel", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L30C60-L30C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L30C60-L30C88" }, { "DocsId": "M:System.Security.Policy.PolicyLevel.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L31C50-L31C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L31C50-L31C51" }, { "DocsId": "M:System.Security.Policy.PolicyLevel.GetNamedPermissionSet(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L35C72-L35C107" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L35C72-L35C107" }, { "DocsId": "M:System.Security.Policy.PolicyLevel.Recover", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L36C33-L36C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L36C33-L36C34" }, { "DocsId": "M:System.Security.Policy.PolicyLevel.RemoveFullTrustAssembly(System.Security.Policy.StrongName)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L38C62-L38C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L38C62-L38C63" }, { "DocsId": "M:System.Security.Policy.PolicyLevel.RemoveFullTrustAssembly(System.Security.Policy.StrongNameMembershipCondition)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L40C83-L40C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L40C83-L40C84" }, { "DocsId": "M:System.Security.Policy.PolicyLevel.RemoveNamedPermissionSet(System.Security.NamedPermissionSet)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L44C90-L44C125" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L44C90-L44C125" }, { "DocsId": "M:System.Security.Policy.PolicyLevel.RemoveNamedPermissionSet(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L48C75-L48C110" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L48C75-L48C110" }, { "DocsId": "M:System.Security.Policy.PolicyLevel.Reset", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L49C31-L49C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L49C31-L49C32" }, { "DocsId": "M:System.Security.Policy.PolicyLevel.Resolve(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L50C61-L50C93" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L50C61-L50C93" }, { "DocsId": "M:System.Security.Policy.PolicyLevel.ResolveMatchingCodeGroups(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L51C73-L51C99" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L51C73-L51C99" }, { "DocsId": "M:System.Security.Policy.PolicyLevel.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L52C42-L52C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L52C42-L52C74" }, { "DocsId": "P:System.Security.Policy.PolicyLevel.FullTrustAssemblies", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L11C272-L11C294" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L11C272-L11C294" }, { "DocsId": "P:System.Security.Policy.PolicyLevel.Label", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L12C37-L12C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L12C37-L12C49" }, { "DocsId": "P:System.Security.Policy.PolicyLevel.NamedPermissionSets", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L13C50-L13C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L13C50-L13C72" }, { "DocsId": "P:System.Security.Policy.PolicyLevel.RootCodeGroup", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L14C42-L14C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L14C42-L14C46" }, { "DocsId": "P:System.Security.Policy.PolicyLevel.StoreLocation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L15C45-L15C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L15C45-L15C57" }, { "DocsId": "P:System.Security.Policy.PolicyLevel.Type", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L16C45-L16C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L16C45-L16C77" } ], "DocsId": "T:System.Security.Policy.PolicyLevel", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.PolicyStatement.#ctor(System.Security.PermissionSet)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatement.cs#L11C9-L11C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatement.cs#L11C9-L11C58" }, { "DocsId": "M:System.Security.Policy.PolicyStatement.#ctor(System.Security.PermissionSet,System.Security.Policy.PolicyStatementAttribute)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatement.cs#L15C9-L15C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatement.cs#L15C9-L15C95" }, { "DocsId": "M:System.Security.Policy.PolicyStatement.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatement.cs#L22C41-L22C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatement.cs#L22C41-L22C53" }, { "DocsId": "M:System.Security.Policy.PolicyStatement.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatement.cs#L23C50-L23C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatement.cs#L23C50-L23C64" }, { "DocsId": "M:System.Security.Policy.PolicyStatement.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatement.cs#L24C51-L24C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatement.cs#L24C51-L24C52" }, { "DocsId": "M:System.Security.Policy.PolicyStatement.FromXml(System.Security.SecurityElement,System.Security.Policy.PolicyLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatement.cs#L25C70-L25C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatement.cs#L25C70-L25C71" }, { "DocsId": "M:System.Security.Policy.PolicyStatement.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatement.cs#L26C46-L26C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatement.cs#L26C46-L26C64" }, { "DocsId": "M:System.Security.Policy.PolicyStatement.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatement.cs#L27C42-L27C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatement.cs#L27C42-L27C74" }, { "DocsId": "M:System.Security.Policy.PolicyStatement.ToXml(System.Security.Policy.PolicyLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatement.cs#L28C59-L28C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatement.cs#L28C59-L28C91" }, { "DocsId": "P:System.Security.Policy.PolicyStatement.Attributes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatement.cs#L16C54-L16C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatement.cs#L16C54-L16C58" }, { "DocsId": "P:System.Security.Policy.PolicyStatement.AttributeString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatement.cs#L17C47-L17C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatement.cs#L17C47-L17C59" }, { "DocsId": "P:System.Security.Policy.PolicyStatement.PermissionSet", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatement.cs#L21C46-L21C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatement.cs#L21C46-L21C50" } ], "DocsId": "T:System.Security.Policy.PolicyStatement", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatement.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatement.cs" }, { "Members": [ { "DocsId": "F:System.Security.Policy.PolicyStatementAttribute.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatementAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatementAttribute.cs" }, { "DocsId": "F:System.Security.Policy.PolicyStatementAttribute.All", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatementAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatementAttribute.cs" }, { "DocsId": "F:System.Security.Policy.PolicyStatementAttribute.Exclusive", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatementAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatementAttribute.cs" }, { "DocsId": "F:System.Security.Policy.PolicyStatementAttribute.LevelFinal", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatementAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatementAttribute.cs" }, { "DocsId": "F:System.Security.Policy.PolicyStatementAttribute.Nothing", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatementAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatementAttribute.cs" } ], "DocsId": "T:System.Security.Policy.PolicyStatementAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatementAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatementAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.Publisher.#ctor(System.Security.Cryptography.X509Certificates.X509Certificate)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/Publisher.cs#L13C9-L13C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/Publisher.cs#L13C9-L13C51" }, { "DocsId": "M:System.Security.Policy.Publisher.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/Publisher.cs#L15C32-L15C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/Publisher.cs#L15C32-L15C44" }, { "DocsId": "M:System.Security.Policy.Publisher.CreateIdentityPermission(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/Publisher.cs#L16C74-L16C102" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/Publisher.cs#L16C74-L16C102" }, { "DocsId": "M:System.Security.Policy.Publisher.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/Publisher.cs#L17C50-L17C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/Publisher.cs#L17C50-L17C64" }, { "DocsId": "M:System.Security.Policy.Publisher.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/Publisher.cs#L18C46-L18C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/Publisher.cs#L18C46-L18C64" }, { "DocsId": "M:System.Security.Policy.Publisher.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/Publisher.cs#L19C46-L19C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/Publisher.cs#L19C46-L19C61" }, { "DocsId": "P:System.Security.Policy.Publisher.Certificate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/Publisher.cs#L14C52-L14C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/Publisher.cs#L14C52-L14C84" } ], "DocsId": "T:System.Security.Policy.Publisher", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/Publisher.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/Publisher.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.PublisherMembershipCondition.#ctor(System.Security.Cryptography.X509Certificates.X509Certificate)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PublisherMembershipCondition.cs#L10C9-L10C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PublisherMembershipCondition.cs#L10C9-L10C77" }, { "DocsId": "M:System.Security.Policy.PublisherMembershipCondition.Check(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PublisherMembershipCondition.cs#L12C48-L12C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PublisherMembershipCondition.cs#L12C48-L12C61" }, { "DocsId": "M:System.Security.Policy.PublisherMembershipCondition.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PublisherMembershipCondition.cs#L13C46-L13C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PublisherMembershipCondition.cs#L13C46-L13C58" }, { "DocsId": "M:System.Security.Policy.PublisherMembershipCondition.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PublisherMembershipCondition.cs#L14C50-L14C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PublisherMembershipCondition.cs#L14C50-L14C64" }, { "DocsId": "M:System.Security.Policy.PublisherMembershipCondition.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PublisherMembershipCondition.cs#L15C50-L15C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PublisherMembershipCondition.cs#L15C50-L15C51" }, { "DocsId": "M:System.Security.Policy.PublisherMembershipCondition.FromXml(System.Security.SecurityElement,System.Security.Policy.PolicyLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PublisherMembershipCondition.cs#L16C69-L16C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PublisherMembershipCondition.cs#L16C69-L16C70" }, { "DocsId": "M:System.Security.Policy.PublisherMembershipCondition.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PublisherMembershipCondition.cs#L17C46-L17C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PublisherMembershipCondition.cs#L17C46-L17C64" }, { "DocsId": "M:System.Security.Policy.PublisherMembershipCondition.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PublisherMembershipCondition.cs#L18C46-L18C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PublisherMembershipCondition.cs#L18C46-L18C61" }, { "DocsId": "M:System.Security.Policy.PublisherMembershipCondition.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PublisherMembershipCondition.cs#L19C42-L19C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PublisherMembershipCondition.cs#L19C42-L19C74" }, { "DocsId": "M:System.Security.Policy.PublisherMembershipCondition.ToXml(System.Security.Policy.PolicyLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PublisherMembershipCondition.cs#L20C59-L20C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PublisherMembershipCondition.cs#L20C59-L20C91" }, { "DocsId": "P:System.Security.Policy.PublisherMembershipCondition.Certificate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PublisherMembershipCondition.cs#L11C46-L11C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PublisherMembershipCondition.cs#L11C46-L11C50" } ], "DocsId": "T:System.Security.Policy.PublisherMembershipCondition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PublisherMembershipCondition.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PublisherMembershipCondition.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.Site.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/Site.cs#L11C9-L11C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/Site.cs#L11C9-L11C37" }, { "DocsId": "M:System.Security.Policy.Site.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/Site.cs#L13C32-L13C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/Site.cs#L13C32-L13C44" }, { "DocsId": "M:System.Security.Policy.Site.CreateFromUrl(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/Site.cs#L14C56-L14C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/Site.cs#L14C56-L14C77" }, { "DocsId": "M:System.Security.Policy.Site.CreateIdentityPermission(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/Site.cs#L15C74-L15C102" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/Site.cs#L15C74-L15C102" }, { "DocsId": "M:System.Security.Policy.Site.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/Site.cs#L16C50-L16C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/Site.cs#L16C50-L16C64" }, { "DocsId": "M:System.Security.Policy.Site.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/Site.cs#L17C46-L17C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/Site.cs#L17C46-L17C64" }, { "DocsId": "M:System.Security.Policy.Site.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/Site.cs#L18C46-L18C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/Site.cs#L18C46-L18C61" }, { "DocsId": "P:System.Security.Policy.Site.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/Site.cs#L12C36-L12C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/Site.cs#L12C36-L12C48" } ], "DocsId": "T:System.Security.Policy.Site", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/Site.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/Site.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.SiteMembershipCondition.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/SiteMembershipCondition.cs#L8C9-L8C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/SiteMembershipCondition.cs#L8C9-L8C56" }, { "DocsId": "M:System.Security.Policy.SiteMembershipCondition.Check(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/SiteMembershipCondition.cs#L10C48-L10C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/SiteMembershipCondition.cs#L10C48-L10C61" }, { "DocsId": "M:System.Security.Policy.SiteMembershipCondition.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/SiteMembershipCondition.cs#L11C46-L11C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/SiteMembershipCondition.cs#L11C46-L11C83" }, { "DocsId": "M:System.Security.Policy.SiteMembershipCondition.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/SiteMembershipCondition.cs#L12C50-L12C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/SiteMembershipCondition.cs#L12C50-L12C64" }, { "DocsId": "M:System.Security.Policy.SiteMembershipCondition.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/SiteMembershipCondition.cs#L13C50-L13C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/SiteMembershipCondition.cs#L13C50-L13C51" }, { "DocsId": "M:System.Security.Policy.SiteMembershipCondition.FromXml(System.Security.SecurityElement,System.Security.Policy.PolicyLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/SiteMembershipCondition.cs#L14C69-L14C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/SiteMembershipCondition.cs#L14C69-L14C70" }, { "DocsId": "M:System.Security.Policy.SiteMembershipCondition.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/SiteMembershipCondition.cs#L15C46-L15C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/SiteMembershipCondition.cs#L15C46-L15C64" }, { "DocsId": "M:System.Security.Policy.SiteMembershipCondition.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/SiteMembershipCondition.cs#L16C46-L16C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/SiteMembershipCondition.cs#L16C46-L16C61" }, { "DocsId": "M:System.Security.Policy.SiteMembershipCondition.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/SiteMembershipCondition.cs#L17C42-L17C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/SiteMembershipCondition.cs#L17C42-L17C74" }, { "DocsId": "M:System.Security.Policy.SiteMembershipCondition.ToXml(System.Security.Policy.PolicyLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/SiteMembershipCondition.cs#L18C59-L18C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/SiteMembershipCondition.cs#L18C59-L18C91" }, { "DocsId": "P:System.Security.Policy.SiteMembershipCondition.Site", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/SiteMembershipCondition.cs#L9C30-L9C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/SiteMembershipCondition.cs#L9C30-L9C34" } ], "DocsId": "T:System.Security.Policy.SiteMembershipCondition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/SiteMembershipCondition.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/SiteMembershipCondition.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.StrongName.#ctor(System.Security.Permissions.StrongNamePublicKeyBlob,System.String,System.Version)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongName.cs#L13C9-L13C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongName.cs#L13C9-L13C90" }, { "DocsId": "M:System.Security.Policy.StrongName.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongName.cs#L17C32-L17C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongName.cs#L17C32-L17C44" }, { "DocsId": "M:System.Security.Policy.StrongName.CreateIdentityPermission(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongName.cs#L18C74-L18C102" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongName.cs#L18C74-L18C102" }, { "DocsId": "M:System.Security.Policy.StrongName.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongName.cs#L19C50-L19C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongName.cs#L19C50-L19C64" }, { "DocsId": "M:System.Security.Policy.StrongName.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongName.cs#L20C46-L20C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongName.cs#L20C46-L20C64" }, { "DocsId": "M:System.Security.Policy.StrongName.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongName.cs#L21C46-L21C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongName.cs#L21C46-L21C61" }, { "DocsId": "P:System.Security.Policy.StrongName.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongName.cs#L14C36-L14C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongName.cs#L14C36-L14C48" }, { "DocsId": "P:System.Security.Policy.StrongName.PublicKey", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongName.cs#L15C58-L15C98" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongName.cs#L15C58-L15C98" }, { "DocsId": "P:System.Security.Policy.StrongName.Version", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongName.cs#L16C40-L16C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongName.cs#L16C40-L16C64" } ], "DocsId": "T:System.Security.Policy.StrongName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongName.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongName.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.StrongNameMembershipCondition.#ctor(System.Security.Permissions.StrongNamePublicKeyBlob,System.String,System.Version)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongNameMembershipCondition.cs#L13C9-L13C109" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongNameMembershipCondition.cs#L13C9-L13C109" }, { "DocsId": "M:System.Security.Policy.StrongNameMembershipCondition.Check(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongNameMembershipCondition.cs#L17C48-L17C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongNameMembershipCondition.cs#L17C48-L17C61" }, { "DocsId": "M:System.Security.Policy.StrongNameMembershipCondition.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongNameMembershipCondition.cs#L18C46-L18C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongNameMembershipCondition.cs#L18C46-L18C58" }, { "DocsId": "M:System.Security.Policy.StrongNameMembershipCondition.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongNameMembershipCondition.cs#L19C50-L19C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongNameMembershipCondition.cs#L19C50-L19C64" }, { "DocsId": "M:System.Security.Policy.StrongNameMembershipCondition.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongNameMembershipCondition.cs#L20C50-L20C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongNameMembershipCondition.cs#L20C50-L20C51" }, { "DocsId": "M:System.Security.Policy.StrongNameMembershipCondition.FromXml(System.Security.SecurityElement,System.Security.Policy.PolicyLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongNameMembershipCondition.cs#L21C69-L21C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongNameMembershipCondition.cs#L21C69-L21C70" }, { "DocsId": "M:System.Security.Policy.StrongNameMembershipCondition.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongNameMembershipCondition.cs#L22C46-L22C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongNameMembershipCondition.cs#L22C46-L22C64" }, { "DocsId": "M:System.Security.Policy.StrongNameMembershipCondition.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongNameMembershipCondition.cs#L23C46-L23C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongNameMembershipCondition.cs#L23C46-L23C61" }, { "DocsId": "M:System.Security.Policy.StrongNameMembershipCondition.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongNameMembershipCondition.cs#L24C42-L24C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongNameMembershipCondition.cs#L24C42-L24C74" }, { "DocsId": "M:System.Security.Policy.StrongNameMembershipCondition.ToXml(System.Security.Policy.PolicyLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongNameMembershipCondition.cs#L25C59-L25C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongNameMembershipCondition.cs#L25C59-L25C91" }, { "DocsId": "P:System.Security.Policy.StrongNameMembershipCondition.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongNameMembershipCondition.cs#L14C30-L14C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongNameMembershipCondition.cs#L14C30-L14C34" }, { "DocsId": "P:System.Security.Policy.StrongNameMembershipCondition.PublicKey", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongNameMembershipCondition.cs#L15C52-L15C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongNameMembershipCondition.cs#L15C52-L15C56" }, { "DocsId": "P:System.Security.Policy.StrongNameMembershipCondition.Version", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongNameMembershipCondition.cs#L16C34-L16C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongNameMembershipCondition.cs#L16C34-L16C38" } ], "DocsId": "T:System.Security.Policy.StrongNameMembershipCondition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongNameMembershipCondition.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongNameMembershipCondition.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.TrustManagerContext.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/TrustManagerContext.cs#L8C9-L8C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/TrustManagerContext.cs#L8C9-L8C41" }, { "DocsId": "M:System.Security.Policy.TrustManagerContext.#ctor(System.Security.Policy.TrustManagerUIContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/TrustManagerContext.cs#L9C9-L9C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/TrustManagerContext.cs#L9C9-L9C72" }, { "DocsId": "P:System.Security.Policy.TrustManagerContext.IgnorePersistedDecision", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/TrustManagerContext.cs#L10C55-L10C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/TrustManagerContext.cs#L10C55-L10C59" }, { "DocsId": "P:System.Security.Policy.TrustManagerContext.KeepAlive", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/TrustManagerContext.cs#L11C41-L11C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/TrustManagerContext.cs#L11C41-L11C45" }, { "DocsId": "P:System.Security.Policy.TrustManagerContext.NoPrompt", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/TrustManagerContext.cs#L12C40-L12C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/TrustManagerContext.cs#L12C40-L12C44" }, { "DocsId": "P:System.Security.Policy.TrustManagerContext.Persist", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/TrustManagerContext.cs#L13C39-L13C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/TrustManagerContext.cs#L13C39-L13C43" }, { "DocsId": "P:System.Security.Policy.TrustManagerContext.UIContext", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/TrustManagerContext.cs#L14C58-L14C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/TrustManagerContext.cs#L14C58-L14C62" }, { "DocsId": "P:System.Security.Policy.TrustManagerContext.PreviousApplicationIdentity", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/TrustManagerContext.cs#L15C74-L15C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/TrustManagerContext.cs#L15C74-L15C78" } ], "DocsId": "T:System.Security.Policy.TrustManagerContext", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/TrustManagerContext.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/TrustManagerContext.cs" }, { "Members": [ { "DocsId": "F:System.Security.Policy.TrustManagerUIContext.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/TrustManagerContext.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/TrustManagerContext.cs" }, { "DocsId": "F:System.Security.Policy.TrustManagerUIContext.Install", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/TrustManagerContext.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/TrustManagerContext.cs" }, { "DocsId": "F:System.Security.Policy.TrustManagerUIContext.Run", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/TrustManagerContext.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/TrustManagerContext.cs" }, { "DocsId": "F:System.Security.Policy.TrustManagerUIContext.Upgrade", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/TrustManagerContext.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/TrustManagerContext.cs" } ], "DocsId": "T:System.Security.Policy.TrustManagerUIContext", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/TrustManagerContext.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/TrustManagerContext.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.UnionCodeGroup.#ctor(System.Security.Policy.IMembershipCondition,System.Security.Policy.PolicyStatement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/UnionCodeGroup.cs#L9C99-L9C164" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/UnionCodeGroup.cs#L9C99-L9C164" }, { "DocsId": "M:System.Security.Policy.UnionCodeGroup.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/UnionCodeGroup.cs#L11C44-L11C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/UnionCodeGroup.cs#L11C44-L11C70" }, { "DocsId": "M:System.Security.Policy.UnionCodeGroup.Resolve(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/UnionCodeGroup.cs#L12C70-L12C102" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/UnionCodeGroup.cs#L12C70-L12C102" }, { "DocsId": "M:System.Security.Policy.UnionCodeGroup.ResolveMatchingCodeGroups(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/UnionCodeGroup.cs#L13C82-L13C108" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/UnionCodeGroup.cs#L13C82-L13C108" }, { "DocsId": "P:System.Security.Policy.UnionCodeGroup.MergeLogic", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/UnionCodeGroup.cs#L10C51-L10C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/UnionCodeGroup.cs#L10C51-L10C63" } ], "DocsId": "T:System.Security.Policy.UnionCodeGroup", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/UnionCodeGroup.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/UnionCodeGroup.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.Url.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/Url.cs#L11C9-L11C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/Url.cs#L11C9-L11C36" }, { "DocsId": "M:System.Security.Policy.Url.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/Url.cs#L13C32-L13C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/Url.cs#L13C32-L13C44" }, { "DocsId": "M:System.Security.Policy.Url.CreateIdentityPermission(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/Url.cs#L14C74-L14C102" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/Url.cs#L14C74-L14C102" }, { "DocsId": "M:System.Security.Policy.Url.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/Url.cs#L15C50-L15C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/Url.cs#L15C50-L15C64" }, { "DocsId": "M:System.Security.Policy.Url.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/Url.cs#L16C46-L16C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/Url.cs#L16C46-L16C64" }, { "DocsId": "M:System.Security.Policy.Url.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/Url.cs#L17C46-L17C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/Url.cs#L17C46-L17C61" }, { "DocsId": "P:System.Security.Policy.Url.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/Url.cs#L12C37-L12C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/Url.cs#L12C37-L12C49" } ], "DocsId": "T:System.Security.Policy.Url", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/Url.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/Url.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.UrlMembershipCondition.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/UrlMembershipCondition.cs#L8C9-L8C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/UrlMembershipCondition.cs#L8C9-L8C54" }, { "DocsId": "M:System.Security.Policy.UrlMembershipCondition.Check(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/UrlMembershipCondition.cs#L10C48-L10C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/UrlMembershipCondition.cs#L10C48-L10C61" }, { "DocsId": "M:System.Security.Policy.UrlMembershipCondition.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/UrlMembershipCondition.cs#L11C46-L11C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/UrlMembershipCondition.cs#L11C46-L11C83" }, { "DocsId": "M:System.Security.Policy.UrlMembershipCondition.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/UrlMembershipCondition.cs#L12C52-L12C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/UrlMembershipCondition.cs#L12C52-L12C68" }, { "DocsId": "M:System.Security.Policy.UrlMembershipCondition.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/UrlMembershipCondition.cs#L13C50-L13C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/UrlMembershipCondition.cs#L13C50-L13C51" }, { "DocsId": "M:System.Security.Policy.UrlMembershipCondition.FromXml(System.Security.SecurityElement,System.Security.Policy.PolicyLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/UrlMembershipCondition.cs#L14C69-L14C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/UrlMembershipCondition.cs#L14C69-L14C70" }, { "DocsId": "M:System.Security.Policy.UrlMembershipCondition.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/UrlMembershipCondition.cs#L15C46-L15C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/UrlMembershipCondition.cs#L15C46-L15C64" }, { "DocsId": "M:System.Security.Policy.UrlMembershipCondition.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/UrlMembershipCondition.cs#L16C46-L16C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/UrlMembershipCondition.cs#L16C46-L16C61" }, { "DocsId": "M:System.Security.Policy.UrlMembershipCondition.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/UrlMembershipCondition.cs#L17C42-L17C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/UrlMembershipCondition.cs#L17C42-L17C74" }, { "DocsId": "M:System.Security.Policy.UrlMembershipCondition.ToXml(System.Security.Policy.PolicyLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/UrlMembershipCondition.cs#L18C59-L18C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/UrlMembershipCondition.cs#L18C59-L18C91" }, { "DocsId": "P:System.Security.Policy.UrlMembershipCondition.Url", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/UrlMembershipCondition.cs#L9C29-L9C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/UrlMembershipCondition.cs#L9C29-L9C33" } ], "DocsId": "T:System.Security.Policy.UrlMembershipCondition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/UrlMembershipCondition.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/UrlMembershipCondition.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.Zone.#ctor(System.Security.SecurityZone)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/Zone.cs#L11C9-L11C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/Zone.cs#L11C9-L11C43" }, { "DocsId": "M:System.Security.Policy.Zone.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/Zone.cs#L13C32-L13C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/Zone.cs#L13C32-L13C44" }, { "DocsId": "M:System.Security.Policy.Zone.CreateFromUrl(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/Zone.cs#L14C56-L14C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/Zone.cs#L14C56-L14C77" }, { "DocsId": "M:System.Security.Policy.Zone.CreateIdentityPermission(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/Zone.cs#L15C74-L15C102" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/Zone.cs#L15C74-L15C102" }, { "DocsId": "M:System.Security.Policy.Zone.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/Zone.cs#L16C50-L16C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/Zone.cs#L16C50-L16C64" }, { "DocsId": "M:System.Security.Policy.Zone.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/Zone.cs#L17C46-L17C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/Zone.cs#L17C46-L17C64" }, { "DocsId": "M:System.Security.Policy.Zone.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/Zone.cs#L18C46-L18C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/Zone.cs#L18C46-L18C61" }, { "DocsId": "P:System.Security.Policy.Zone.SecurityZone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/Zone.cs#L12C50-L12C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/Zone.cs#L12C50-L12C79" } ], "DocsId": "T:System.Security.Policy.Zone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/Zone.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/Zone.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.ZoneMembershipCondition.#ctor(System.Security.SecurityZone)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ZoneMembershipCondition.cs#L8C9-L8C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ZoneMembershipCondition.cs#L8C9-L8C62" }, { "DocsId": "M:System.Security.Policy.ZoneMembershipCondition.Check(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ZoneMembershipCondition.cs#L10C48-L10C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ZoneMembershipCondition.cs#L10C48-L10C61" }, { "DocsId": "M:System.Security.Policy.ZoneMembershipCondition.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ZoneMembershipCondition.cs#L11C46-L11C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ZoneMembershipCondition.cs#L11C46-L11C58" }, { "DocsId": "M:System.Security.Policy.ZoneMembershipCondition.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ZoneMembershipCondition.cs#L12C50-L12C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ZoneMembershipCondition.cs#L12C50-L12C64" }, { "DocsId": "M:System.Security.Policy.ZoneMembershipCondition.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ZoneMembershipCondition.cs#L13C50-L13C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ZoneMembershipCondition.cs#L13C50-L13C51" }, { "DocsId": "M:System.Security.Policy.ZoneMembershipCondition.FromXml(System.Security.SecurityElement,System.Security.Policy.PolicyLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ZoneMembershipCondition.cs#L14C69-L14C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ZoneMembershipCondition.cs#L14C69-L14C70" }, { "DocsId": "M:System.Security.Policy.ZoneMembershipCondition.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ZoneMembershipCondition.cs#L15C46-L15C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ZoneMembershipCondition.cs#L15C46-L15C64" }, { "DocsId": "M:System.Security.Policy.ZoneMembershipCondition.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ZoneMembershipCondition.cs#L16C46-L16C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ZoneMembershipCondition.cs#L16C46-L16C61" }, { "DocsId": "M:System.Security.Policy.ZoneMembershipCondition.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ZoneMembershipCondition.cs#L17C42-L17C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ZoneMembershipCondition.cs#L17C42-L17C74" }, { "DocsId": "M:System.Security.Policy.ZoneMembershipCondition.ToXml(System.Security.Policy.PolicyLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ZoneMembershipCondition.cs#L18C59-L18C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ZoneMembershipCondition.cs#L18C59-L18C91" }, { "DocsId": "P:System.Security.Policy.ZoneMembershipCondition.SecurityZone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ZoneMembershipCondition.cs#L9C44-L9C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ZoneMembershipCondition.cs#L9C44-L9C48" } ], "DocsId": "T:System.Security.Policy.ZoneMembershipCondition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ZoneMembershipCondition.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ZoneMembershipCondition.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.DataProtectionPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermission.cs#L11C9-L11C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermission.cs#L11C9-L11C67" }, { "DocsId": "M:System.Security.Permissions.DataProtectionPermission.#ctor(System.Security.Permissions.DataProtectionPermissionFlags)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermission.cs#L12C9-L12C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermission.cs#L12C9-L12C80" }, { "DocsId": "M:System.Security.Permissions.DataProtectionPermission.IsUnrestricted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermission.cs#L13C41-L13C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermission.cs#L13C41-L13C46" }, { "DocsId": "M:System.Security.Permissions.DataProtectionPermission.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermission.cs#L15C46-L15C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermission.cs#L15C46-L15C58" }, { "DocsId": "M:System.Security.Permissions.DataProtectionPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermission.cs#L16C65-L16C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermission.cs#L16C65-L16C77" }, { "DocsId": "M:System.Security.Permissions.DataProtectionPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermission.cs#L17C69-L17C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermission.cs#L17C69-L17C81" }, { "DocsId": "M:System.Security.Permissions.DataProtectionPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermission.cs#L18C64-L18C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermission.cs#L18C64-L18C69" }, { "DocsId": "M:System.Security.Permissions.DataProtectionPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermission.cs#L19C73-L19C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermission.cs#L19C73-L19C74" }, { "DocsId": "M:System.Security.Permissions.DataProtectionPermission.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermission.cs#L20C51-L20C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermission.cs#L20C51-L20C63" }, { "DocsId": "P:System.Security.Permissions.DataProtectionPermission.Flags", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermission.cs#L14C54-L14C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermission.cs#L14C54-L14C58" } ], "DocsId": "T:System.Security.Permissions.DataProtectionPermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermission.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.DataProtectionPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionAttribute.cs#L13C75-L13C108" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionAttribute.cs#L13C75-L13C108" }, { "DocsId": "M:System.Security.Permissions.DataProtectionPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionAttribute.cs#L19C58-L19C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionAttribute.cs#L19C58-L19C86" }, { "DocsId": "P:System.Security.Permissions.DataProtectionPermissionAttribute.Flags", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionAttribute.cs#L14C54-L14C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionAttribute.cs#L14C54-L14C58" }, { "DocsId": "P:System.Security.Permissions.DataProtectionPermissionAttribute.ProtectData", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionAttribute.cs#L15C35-L15C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionAttribute.cs#L15C35-L15C39" }, { "DocsId": "P:System.Security.Permissions.DataProtectionPermissionAttribute.UnprotectData", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionAttribute.cs#L16C37-L16C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionAttribute.cs#L16C37-L16C41" }, { "DocsId": "P:System.Security.Permissions.DataProtectionPermissionAttribute.ProtectMemory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionAttribute.cs#L17C37-L17C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionAttribute.cs#L17C37-L17C41" }, { "DocsId": "P:System.Security.Permissions.DataProtectionPermissionAttribute.UnprotectMemory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionAttribute.cs#L18C39-L18C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionAttribute.cs#L18C39-L18C43" } ], "DocsId": "T:System.Security.Permissions.DataProtectionPermissionAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionAttribute.cs" }, { "Members": [ { "DocsId": "F:System.Security.Permissions.DataProtectionPermissionFlags.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionFlags.cs" }, { "DocsId": "F:System.Security.Permissions.DataProtectionPermissionFlags.NoFlags", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionFlags.cs" }, { "DocsId": "F:System.Security.Permissions.DataProtectionPermissionFlags.ProtectData", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionFlags.cs" }, { "DocsId": "F:System.Security.Permissions.DataProtectionPermissionFlags.UnprotectData", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionFlags.cs" }, { "DocsId": "F:System.Security.Permissions.DataProtectionPermissionFlags.ProtectMemory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionFlags.cs" }, { "DocsId": "F:System.Security.Permissions.DataProtectionPermissionFlags.UnprotectMemory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionFlags.cs" }, { "DocsId": "F:System.Security.Permissions.DataProtectionPermissionFlags.AllFlags", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionFlags.cs" } ], "DocsId": "T:System.Security.Permissions.DataProtectionPermissionFlags", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionFlags.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.EnvironmentPermission.#ctor(System.Security.Permissions.EnvironmentPermissionAccess,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermission.cs#L11C9-L11C92" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermission.cs#L11C9-L11C92" }, { "DocsId": "M:System.Security.Permissions.EnvironmentPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermission.cs#L12C9-L12C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermission.cs#L12C9-L12C64" }, { "DocsId": "M:System.Security.Permissions.EnvironmentPermission.AddPathList(System.Security.Permissions.EnvironmentPermissionAccess,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermission.cs#L13C86-L13C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermission.cs#L13C86-L13C87" }, { "DocsId": "M:System.Security.Permissions.EnvironmentPermission.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermission.cs#L14C46-L14C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermission.cs#L14C46-L14C74" }, { "DocsId": "M:System.Security.Permissions.EnvironmentPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermission.cs#L15C61-L15C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermission.cs#L15C61-L15C62" }, { "DocsId": "M:System.Security.Permissions.EnvironmentPermission.GetPathList(System.Security.Permissions.EnvironmentPermissionAccess)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermission.cs#L16C71-L16C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermission.cs#L16C71-L16C83" }, { "DocsId": "M:System.Security.Permissions.EnvironmentPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermission.cs#L17C69-L17C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermission.cs#L17C69-L17C97" }, { "DocsId": "M:System.Security.Permissions.EnvironmentPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermission.cs#L18C63-L18C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermission.cs#L18C63-L18C76" }, { "DocsId": "M:System.Security.Permissions.EnvironmentPermission.IsUnrestricted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermission.cs#L19C40-L19C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermission.cs#L19C40-L19C53" }, { "DocsId": "M:System.Security.Permissions.EnvironmentPermission.SetPathList(System.Security.Permissions.EnvironmentPermissionAccess,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermission.cs#L20C86-L20C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermission.cs#L20C86-L20C87" }, { "DocsId": "M:System.Security.Permissions.EnvironmentPermission.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermission.cs#L21C51-L21C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermission.cs#L21C51-L21C83" }, { "DocsId": "M:System.Security.Permissions.EnvironmentPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermission.cs#L22C64-L22C92" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermission.cs#L22C64-L22C92" } ], "DocsId": "T:System.Security.Permissions.EnvironmentPermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermission.cs" }, { "Members": [ { "DocsId": "F:System.Security.Permissions.EnvironmentPermissionAccess.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermissionAccess.cs" }, { "DocsId": "F:System.Security.Permissions.EnvironmentPermissionAccess.AllAccess", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermissionAccess.cs" }, { "DocsId": "F:System.Security.Permissions.EnvironmentPermissionAccess.NoAccess", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermissionAccess.cs" }, { "DocsId": "F:System.Security.Permissions.EnvironmentPermissionAccess.Read", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermissionAccess.cs" }, { "DocsId": "F:System.Security.Permissions.EnvironmentPermissionAccess.Write", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermissionAccess.cs" } ], "DocsId": "T:System.Security.Permissions.EnvironmentPermissionAccess", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermissionAccess.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.EnvironmentPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermissionAttribute.cs#L12C72-L12C105" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermissionAttribute.cs#L12C72-L12C105" }, { "DocsId": "M:System.Security.Permissions.EnvironmentPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermissionAttribute.cs#L16C58-L16C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermissionAttribute.cs#L16C58-L16C86" }, { "DocsId": "P:System.Security.Permissions.EnvironmentPermissionAttribute.All", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermissionAttribute.cs#L13C29-L13C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermissionAttribute.cs#L13C29-L13C33" }, { "DocsId": "P:System.Security.Permissions.EnvironmentPermissionAttribute.Read", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermissionAttribute.cs#L14C30-L14C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermissionAttribute.cs#L14C30-L14C34" }, { "DocsId": "P:System.Security.Permissions.EnvironmentPermissionAttribute.Write", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermissionAttribute.cs#L15C31-L15C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermissionAttribute.cs#L15C31-L15C35" } ], "DocsId": "T:System.Security.Permissions.EnvironmentPermissionAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermissionAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.FileDialogPermission.#ctor(System.Security.Permissions.FileDialogPermissionAccess)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermission.cs#L11C9-L11C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermission.cs#L11C9-L11C75" }, { "DocsId": "M:System.Security.Permissions.FileDialogPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermission.cs#L12C9-L12C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermission.cs#L12C9-L12C63" }, { "DocsId": "M:System.Security.Permissions.FileDialogPermission.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermission.cs#L14C46-L14C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermission.cs#L14C46-L14C58" }, { "DocsId": "M:System.Security.Permissions.FileDialogPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermission.cs#L15C61-L15C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermission.cs#L15C61-L15C62" }, { "DocsId": "M:System.Security.Permissions.FileDialogPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermission.cs#L16C69-L16C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermission.cs#L16C69-L16C97" }, { "DocsId": "M:System.Security.Permissions.FileDialogPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermission.cs#L17C63-L17C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermission.cs#L17C63-L17C76" }, { "DocsId": "M:System.Security.Permissions.FileDialogPermission.IsUnrestricted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermission.cs#L18C40-L18C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermission.cs#L18C40-L18C53" }, { "DocsId": "M:System.Security.Permissions.FileDialogPermission.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermission.cs#L19C51-L19C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermission.cs#L19C51-L19C83" }, { "DocsId": "M:System.Security.Permissions.FileDialogPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermission.cs#L20C65-L20C93" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermission.cs#L20C65-L20C93" }, { "DocsId": "P:System.Security.Permissions.FileDialogPermission.Access", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermission.cs#L13C52-L13C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermission.cs#L13C52-L13C56" } ], "DocsId": "T:System.Security.Permissions.FileDialogPermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermission.cs" }, { "Members": [ { "DocsId": "F:System.Security.Permissions.FileDialogPermissionAccess.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermissionAccess.cs" }, { "DocsId": "F:System.Security.Permissions.FileDialogPermissionAccess.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermissionAccess.cs" }, { "DocsId": "F:System.Security.Permissions.FileDialogPermissionAccess.Open", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermissionAccess.cs" }, { "DocsId": "F:System.Security.Permissions.FileDialogPermissionAccess.OpenSave", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermissionAccess.cs" }, { "DocsId": "F:System.Security.Permissions.FileDialogPermissionAccess.Save", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermissionAccess.cs" } ], "DocsId": "T:System.Security.Permissions.FileDialogPermissionAccess", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermissionAccess.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.FileDialogPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermissionAttribute.cs#L12C71-L12C104" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermissionAttribute.cs#L12C71-L12C104" }, { "DocsId": "M:System.Security.Permissions.FileDialogPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermissionAttribute.cs#L15C58-L15C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermissionAttribute.cs#L15C58-L15C86" }, { "DocsId": "P:System.Security.Permissions.FileDialogPermissionAttribute.Open", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermissionAttribute.cs#L13C28-L13C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermissionAttribute.cs#L13C28-L13C32" }, { "DocsId": "P:System.Security.Permissions.FileDialogPermissionAttribute.Save", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermissionAttribute.cs#L14C28-L14C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermissionAttribute.cs#L14C28-L14C32" } ], "DocsId": "T:System.Security.Permissions.FileDialogPermissionAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermissionAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.FileIOPermission.#ctor(System.Security.Permissions.FileIOPermissionAccess,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L11C9-L11C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L11C9-L11C80" }, { "DocsId": "M:System.Security.Permissions.FileIOPermission.#ctor(System.Security.Permissions.FileIOPermissionAccess,System.String[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L12C9-L12C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L12C9-L12C86" }, { "DocsId": "M:System.Security.Permissions.FileIOPermission.#ctor(System.Security.Permissions.FileIOPermissionAccess,System.Security.AccessControl.AccessControlActions,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L13C9-L13C124" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L13C9-L13C124" }, { "DocsId": "M:System.Security.Permissions.FileIOPermission.#ctor(System.Security.Permissions.FileIOPermissionAccess,System.Security.AccessControl.AccessControlActions,System.String[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L14C9-L14C130" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L14C9-L14C130" }, { "DocsId": "M:System.Security.Permissions.FileIOPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L15C9-L15C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L15C9-L15C59" }, { "DocsId": "M:System.Security.Permissions.FileIOPermission.AddPathList(System.Security.Permissions.FileIOPermissionAccess,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L18C79-L18C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L18C79-L18C80" }, { "DocsId": "M:System.Security.Permissions.FileIOPermission.AddPathList(System.Security.Permissions.FileIOPermissionAccess,System.String[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L19C85-L19C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L19C85-L19C86" }, { "DocsId": "M:System.Security.Permissions.FileIOPermission.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L20C46-L20C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L20C46-L20C58" }, { "DocsId": "M:System.Security.Permissions.FileIOPermission.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L21C50-L21C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L21C50-L21C64" }, { "DocsId": "M:System.Security.Permissions.FileIOPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L22C61-L22C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L22C61-L22C62" }, { "DocsId": "M:System.Security.Permissions.FileIOPermission.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L23C46-L23C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L23C46-L23C64" }, { "DocsId": "M:System.Security.Permissions.FileIOPermission.GetPathList(System.Security.Permissions.FileIOPermissionAccess)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L24C70-L24C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L24C70-L24C82" }, { "DocsId": "M:System.Security.Permissions.FileIOPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L25C69-L25C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L25C69-L25C97" }, { "DocsId": "M:System.Security.Permissions.FileIOPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L26C63-L26C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L26C63-L26C76" }, { "DocsId": "M:System.Security.Permissions.FileIOPermission.IsUnrestricted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L27C40-L27C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L27C40-L27C53" }, { "DocsId": "M:System.Security.Permissions.FileIOPermission.SetPathList(System.Security.Permissions.FileIOPermissionAccess,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L28C79-L28C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L28C79-L28C80" }, { "DocsId": "M:System.Security.Permissions.FileIOPermission.SetPathList(System.Security.Permissions.FileIOPermissionAccess,System.String[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L29C85-L29C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L29C85-L29C86" }, { "DocsId": "M:System.Security.Permissions.FileIOPermission.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L30C51-L30C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L30C51-L30C83" }, { "DocsId": "M:System.Security.Permissions.FileIOPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L31C64-L31C92" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L31C64-L31C92" }, { "DocsId": "P:System.Security.Permissions.FileIOPermission.AllFiles", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L16C50-L16C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L16C50-L16C54" }, { "DocsId": "P:System.Security.Permissions.FileIOPermission.AllLocalFiles", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L17C55-L17C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L17C55-L17C59" } ], "DocsId": "T:System.Security.Permissions.FileIOPermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs" }, { "Members": [ { "DocsId": "F:System.Security.Permissions.FileIOPermissionAccess.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAccess.cs" }, { "DocsId": "F:System.Security.Permissions.FileIOPermissionAccess.AllAccess", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAccess.cs" }, { "DocsId": "F:System.Security.Permissions.FileIOPermissionAccess.Append", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAccess.cs" }, { "DocsId": "F:System.Security.Permissions.FileIOPermissionAccess.NoAccess", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAccess.cs" }, { "DocsId": "F:System.Security.Permissions.FileIOPermissionAccess.PathDiscovery", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAccess.cs" }, { "DocsId": "F:System.Security.Permissions.FileIOPermissionAccess.Read", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAccess.cs" }, { "DocsId": "F:System.Security.Permissions.FileIOPermissionAccess.Write", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAccess.cs" } ], "DocsId": "T:System.Security.Permissions.FileIOPermissionAccess", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAccess.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.FileIOPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAttribute.cs#L12C67-L12C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAttribute.cs#L12C67-L12C83" }, { "DocsId": "M:System.Security.Permissions.FileIOPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAttribute.cs#L24C58-L24C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAttribute.cs#L24C58-L24C70" }, { "DocsId": "P:System.Security.Permissions.FileIOPermissionAttribute.Read", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAttribute.cs#L13C30-L13C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAttribute.cs#L13C30-L13C34" }, { "DocsId": "P:System.Security.Permissions.FileIOPermissionAttribute.Write", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAttribute.cs#L14C31-L14C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAttribute.cs#L14C31-L14C35" }, { "DocsId": "P:System.Security.Permissions.FileIOPermissionAttribute.Append", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAttribute.cs#L15C32-L15C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAttribute.cs#L15C32-L15C36" }, { "DocsId": "P:System.Security.Permissions.FileIOPermissionAttribute.PathDiscovery", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAttribute.cs#L16C39-L16C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAttribute.cs#L16C39-L16C43" }, { "DocsId": "P:System.Security.Permissions.FileIOPermissionAttribute.ViewAccessControl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAttribute.cs#L17C43-L17C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAttribute.cs#L17C43-L17C47" }, { "DocsId": "P:System.Security.Permissions.FileIOPermissionAttribute.ChangeAccessControl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAttribute.cs#L18C45-L18C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAttribute.cs#L18C45-L18C49" }, { "DocsId": "P:System.Security.Permissions.FileIOPermissionAttribute.All", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAttribute.cs#L20C29-L20C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAttribute.cs#L20C29-L20C33" }, { "DocsId": "P:System.Security.Permissions.FileIOPermissionAttribute.ViewAndModify", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAttribute.cs#L21C39-L21C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAttribute.cs#L21C39-L21C43" }, { "DocsId": "P:System.Security.Permissions.FileIOPermissionAttribute.AllFiles", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAttribute.cs#L22C50-L22C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAttribute.cs#L22C50-L22C54" }, { "DocsId": "P:System.Security.Permissions.FileIOPermissionAttribute.AllLocalFiles", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAttribute.cs#L23C55-L23C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAttribute.cs#L23C55-L23C59" } ], "DocsId": "T:System.Security.Permissions.FileIOPermissionAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.GacIdentityPermission.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/GacIdentityPermission.cs#L11C9-L11C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/GacIdentityPermission.cs#L11C9-L11C43" }, { "DocsId": "M:System.Security.Permissions.GacIdentityPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/GacIdentityPermission.cs#L12C9-L12C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/GacIdentityPermission.cs#L12C9-L12C64" }, { "DocsId": "M:System.Security.Permissions.GacIdentityPermission.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/GacIdentityPermission.cs#L13C46-L13C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/GacIdentityPermission.cs#L13C46-L13C74" }, { "DocsId": "M:System.Security.Permissions.GacIdentityPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/GacIdentityPermission.cs#L14C73-L14C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/GacIdentityPermission.cs#L14C73-L14C74" }, { "DocsId": "M:System.Security.Permissions.GacIdentityPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/GacIdentityPermission.cs#L15C69-L15C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/GacIdentityPermission.cs#L15C69-L15C97" }, { "DocsId": "M:System.Security.Permissions.GacIdentityPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/GacIdentityPermission.cs#L16C63-L16C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/GacIdentityPermission.cs#L16C63-L16C76" }, { "DocsId": "M:System.Security.Permissions.GacIdentityPermission.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/GacIdentityPermission.cs#L17C51-L17C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/GacIdentityPermission.cs#L17C51-L17C83" }, { "DocsId": "M:System.Security.Permissions.GacIdentityPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/GacIdentityPermission.cs#L18C65-L18C93" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/GacIdentityPermission.cs#L18C65-L18C93" } ], "DocsId": "T:System.Security.Permissions.GacIdentityPermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/GacIdentityPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/GacIdentityPermission.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.GacIdentityPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/GacIdentityPermissionAttribute.cs#L12C72-L12C105" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/GacIdentityPermissionAttribute.cs#L12C72-L12C105" }, { "DocsId": "M:System.Security.Permissions.GacIdentityPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/GacIdentityPermissionAttribute.cs#L13C58-L13C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/GacIdentityPermissionAttribute.cs#L13C58-L13C86" } ], "DocsId": "T:System.Security.Permissions.GacIdentityPermissionAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/GacIdentityPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/GacIdentityPermissionAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.HostProtectionAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionAttribute.cs#L12C44-L12C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionAttribute.cs#L12C44-L12C77" }, { "DocsId": "M:System.Security.Permissions.HostProtectionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionAttribute.cs#L13C65-L13C98" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionAttribute.cs#L13C65-L13C98" }, { "DocsId": "M:System.Security.Permissions.HostProtectionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionAttribute.cs#L24C58-L24C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionAttribute.cs#L24C58-L24C86" }, { "DocsId": "P:System.Security.Permissions.HostProtectionAttribute.ExternalProcessMgmt", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionAttribute.cs#L14C43-L14C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionAttribute.cs#L14C43-L14C47" }, { "DocsId": "P:System.Security.Permissions.HostProtectionAttribute.ExternalThreading", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionAttribute.cs#L15C41-L15C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionAttribute.cs#L15C41-L15C45" }, { "DocsId": "P:System.Security.Permissions.HostProtectionAttribute.MayLeakOnAbort", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionAttribute.cs#L16C38-L16C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionAttribute.cs#L16C38-L16C42" }, { "DocsId": "P:System.Security.Permissions.HostProtectionAttribute.Resources", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionAttribute.cs#L17C51-L17C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionAttribute.cs#L17C51-L17C55" }, { "DocsId": "P:System.Security.Permissions.HostProtectionAttribute.SecurityInfrastructure", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionAttribute.cs#L18C46-L18C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionAttribute.cs#L18C46-L18C50" }, { "DocsId": "P:System.Security.Permissions.HostProtectionAttribute.SelfAffectingProcessMgmt", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionAttribute.cs#L19C48-L19C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionAttribute.cs#L19C48-L19C52" }, { "DocsId": "P:System.Security.Permissions.HostProtectionAttribute.SelfAffectingThreading", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionAttribute.cs#L20C46-L20C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionAttribute.cs#L20C46-L20C50" }, { "DocsId": "P:System.Security.Permissions.HostProtectionAttribute.SharedState", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionAttribute.cs#L21C35-L21C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionAttribute.cs#L21C35-L21C39" }, { "DocsId": "P:System.Security.Permissions.HostProtectionAttribute.Synchronization", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionAttribute.cs#L22C39-L22C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionAttribute.cs#L22C39-L22C43" }, { "DocsId": "P:System.Security.Permissions.HostProtectionAttribute.UI", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionAttribute.cs#L23C26-L23C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionAttribute.cs#L23C26-L23C30" } ], "DocsId": "T:System.Security.Permissions.HostProtectionAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionAttribute.cs" }, { "Members": [ { "DocsId": "F:System.Security.Permissions.HostProtectionResource.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionResource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionResource.cs" }, { "DocsId": "F:System.Security.Permissions.HostProtectionResource.All", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionResource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionResource.cs" }, { "DocsId": "F:System.Security.Permissions.HostProtectionResource.ExternalProcessMgmt", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionResource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionResource.cs" }, { "DocsId": "F:System.Security.Permissions.HostProtectionResource.ExternalThreading", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionResource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionResource.cs" }, { "DocsId": "F:System.Security.Permissions.HostProtectionResource.MayLeakOnAbort", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionResource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionResource.cs" }, { "DocsId": "F:System.Security.Permissions.HostProtectionResource.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionResource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionResource.cs" }, { "DocsId": "F:System.Security.Permissions.HostProtectionResource.SecurityInfrastructure", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionResource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionResource.cs" }, { "DocsId": "F:System.Security.Permissions.HostProtectionResource.SelfAffectingProcessMgmt", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionResource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionResource.cs" }, { "DocsId": "F:System.Security.Permissions.HostProtectionResource.SelfAffectingThreading", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionResource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionResource.cs" }, { "DocsId": "F:System.Security.Permissions.HostProtectionResource.SharedState", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionResource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionResource.cs" }, { "DocsId": "F:System.Security.Permissions.HostProtectionResource.Synchronization", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionResource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionResource.cs" }, { "DocsId": "F:System.Security.Permissions.HostProtectionResource.UI", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionResource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionResource.cs" } ], "DocsId": "T:System.Security.Permissions.HostProtectionResource", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionResource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionResource.cs" }, { "Members": [ { "DocsId": "F:System.Security.Permissions.IsolatedStorageContainment.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageContainment.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageContainment.cs" }, { "DocsId": "F:System.Security.Permissions.IsolatedStorageContainment.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageContainment.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageContainment.cs" }, { "DocsId": "F:System.Security.Permissions.IsolatedStorageContainment.DomainIsolationByUser", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageContainment.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageContainment.cs" }, { "DocsId": "F:System.Security.Permissions.IsolatedStorageContainment.ApplicationIsolationByUser", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageContainment.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageContainment.cs" }, { "DocsId": "F:System.Security.Permissions.IsolatedStorageContainment.AssemblyIsolationByUser", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageContainment.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageContainment.cs" }, { "DocsId": "F:System.Security.Permissions.IsolatedStorageContainment.DomainIsolationByMachine", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageContainment.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageContainment.cs" }, { "DocsId": "F:System.Security.Permissions.IsolatedStorageContainment.AssemblyIsolationByMachine", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageContainment.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageContainment.cs" }, { "DocsId": "F:System.Security.Permissions.IsolatedStorageContainment.ApplicationIsolationByMachine", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageContainment.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageContainment.cs" }, { "DocsId": "F:System.Security.Permissions.IsolatedStorageContainment.DomainIsolationByRoamingUser", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageContainment.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageContainment.cs" }, { "DocsId": "F:System.Security.Permissions.IsolatedStorageContainment.AssemblyIsolationByRoamingUser", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageContainment.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageContainment.cs" }, { "DocsId": "F:System.Security.Permissions.IsolatedStorageContainment.ApplicationIsolationByRoamingUser", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageContainment.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageContainment.cs" }, { "DocsId": "F:System.Security.Permissions.IsolatedStorageContainment.AdministerIsolatedStorageByUser", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageContainment.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageContainment.cs" }, { "DocsId": "F:System.Security.Permissions.IsolatedStorageContainment.UnrestrictedIsolatedStorage", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageContainment.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageContainment.cs" } ], "DocsId": "T:System.Security.Permissions.IsolatedStorageContainment", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageContainment.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageContainment.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.IsolatedStorageFilePermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageFilePermission.cs#L11C71-L11C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageFilePermission.cs#L11C71-L11C86" }, { "DocsId": "M:System.Security.Permissions.IsolatedStorageFilePermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageFilePermission.cs#L12C65-L12C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageFilePermission.cs#L12C65-L12C77" }, { "DocsId": "M:System.Security.Permissions.IsolatedStorageFilePermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageFilePermission.cs#L13C63-L13C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageFilePermission.cs#L13C63-L13C76" }, { "DocsId": "M:System.Security.Permissions.IsolatedStorageFilePermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageFilePermission.cs#L14C69-L14C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageFilePermission.cs#L14C69-L14C81" }, { "DocsId": "M:System.Security.Permissions.IsolatedStorageFilePermission.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageFilePermission.cs#L15C46-L15C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageFilePermission.cs#L15C46-L15C58" }, { "DocsId": "M:System.Security.Permissions.IsolatedStorageFilePermission.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageFilePermission.cs#L16C51-L16C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageFilePermission.cs#L16C51-L16C63" } ], "DocsId": "T:System.Security.Permissions.IsolatedStorageFilePermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageFilePermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageFilePermission.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.IsolatedStorageFilePermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageFilePermissionAttribute.cs#L14C80-L14C96" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageFilePermissionAttribute.cs#L14C80-L14C96" }, { "DocsId": "M:System.Security.Permissions.IsolatedStorageFilePermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageFilePermissionAttribute.cs#L15C58-L15C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageFilePermissionAttribute.cs#L15C58-L15C70" } ], "DocsId": "T:System.Security.Permissions.IsolatedStorageFilePermissionAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageFilePermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageFilePermissionAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.IsolatedStoragePermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStoragePermission.cs#L11C9-L11C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStoragePermission.cs#L11C9-L11C71" }, { "DocsId": "M:System.Security.Permissions.IsolatedStoragePermission.IsUnrestricted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStoragePermission.cs#L14C40-L14C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStoragePermission.cs#L14C40-L14C53" }, { "DocsId": "M:System.Security.Permissions.IsolatedStoragePermission.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStoragePermission.cs#L15C51-L15C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStoragePermission.cs#L15C51-L15C83" }, { "DocsId": "M:System.Security.Permissions.IsolatedStoragePermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStoragePermission.cs#L16C61-L16C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStoragePermission.cs#L16C61-L16C62" }, { "DocsId": "P:System.Security.Permissions.IsolatedStoragePermission.UserQuota", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStoragePermission.cs#L12C33-L12C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStoragePermission.cs#L12C33-L12C37" }, { "DocsId": "P:System.Security.Permissions.IsolatedStoragePermission.UsageAllowed", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStoragePermission.cs#L13C58-L13C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStoragePermission.cs#L13C58-L13C62" } ], "DocsId": "T:System.Security.Permissions.IsolatedStoragePermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStoragePermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStoragePermission.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.IsolatedStoragePermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStoragePermissionAttribute.cs#L11C79-L11C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStoragePermissionAttribute.cs#L11C79-L11C95" }, { "DocsId": "P:System.Security.Permissions.IsolatedStoragePermissionAttribute.UserQuota", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStoragePermissionAttribute.cs#L12C33-L12C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStoragePermissionAttribute.cs#L12C33-L12C37" }, { "DocsId": "P:System.Security.Permissions.IsolatedStoragePermissionAttribute.UsageAllowed", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStoragePermissionAttribute.cs#L13C58-L13C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStoragePermissionAttribute.cs#L13C58-L13C62" } ], "DocsId": "T:System.Security.Permissions.IsolatedStoragePermissionAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStoragePermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStoragePermissionAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.IUnrestrictedPermission.IsUnrestricted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IUnrestrictedPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IUnrestrictedPermission.cs" } ], "DocsId": "T:System.Security.Permissions.IUnrestrictedPermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IUnrestrictedPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IUnrestrictedPermission.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.KeyContainerPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermission.cs#L11C9-L11C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermission.cs#L11C9-L11C65" }, { "DocsId": "M:System.Security.Permissions.KeyContainerPermission.#ctor(System.Security.Permissions.KeyContainerPermissionFlags)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermission.cs#L12C9-L12C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermission.cs#L12C9-L12C77" }, { "DocsId": "M:System.Security.Permissions.KeyContainerPermission.#ctor(System.Security.Permissions.KeyContainerPermissionFlags,System.Security.Permissions.KeyContainerPermissionAccessEntry[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermission.cs#L13C9-L13C125" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermission.cs#L13C9-L13C125" }, { "DocsId": "M:System.Security.Permissions.KeyContainerPermission.IsUnrestricted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermission.cs#L16C40-L16C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermission.cs#L16C40-L16C53" }, { "DocsId": "M:System.Security.Permissions.KeyContainerPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermission.cs#L17C63-L17C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermission.cs#L17C63-L17C76" }, { "DocsId": "M:System.Security.Permissions.KeyContainerPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermission.cs#L18C69-L18C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermission.cs#L18C69-L18C81" }, { "DocsId": "M:System.Security.Permissions.KeyContainerPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermission.cs#L19C65-L19C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermission.cs#L19C65-L19C77" }, { "DocsId": "M:System.Security.Permissions.KeyContainerPermission.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermission.cs#L20C46-L20C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermission.cs#L20C46-L20C58" }, { "DocsId": "M:System.Security.Permissions.KeyContainerPermission.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermission.cs#L21C51-L21C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermission.cs#L21C51-L21C63" }, { "DocsId": "M:System.Security.Permissions.KeyContainerPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermission.cs#L22C73-L22C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermission.cs#L22C73-L22C74" }, { "DocsId": "P:System.Security.Permissions.KeyContainerPermission.Flags", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermission.cs#L14C52-L14C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermission.cs#L14C52-L14C56" }, { "DocsId": "P:System.Security.Permissions.KeyContainerPermission.AccessEntries", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermission.cs#L15C76-L15C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermission.cs#L15C76-L15C80" } ], "DocsId": "T:System.Security.Permissions.KeyContainerPermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermission.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.KeyContainerPermissionAccessEntry.#ctor(System.String,System.Security.Permissions.KeyContainerPermissionFlags)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntry.cs#L13C9-L13C113" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntry.cs#L13C9-L13C113" }, { "DocsId": "M:System.Security.Permissions.KeyContainerPermissionAccessEntry.#ctor(System.Security.Cryptography.CspParameters,System.Security.Permissions.KeyContainerPermissionFlags)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntry.cs#L14C9-L14C114" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntry.cs#L14C9-L14C114" }, { "DocsId": "M:System.Security.Permissions.KeyContainerPermissionAccessEntry.#ctor(System.String,System.String,System.Int32,System.String,System.Int32,System.Security.Permissions.KeyContainerPermissionFlags)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntry.cs#L15C9-L17C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntry.cs#L15C9-L17C12" }, { "DocsId": "M:System.Security.Permissions.KeyContainerPermissionAccessEntry.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntry.cs#L24C49-L24C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntry.cs#L24C49-L24C62" }, { "DocsId": "M:System.Security.Permissions.KeyContainerPermissionAccessEntry.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntry.cs#L25C45-L25C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntry.cs#L25C45-L25C54" }, { "DocsId": "P:System.Security.Permissions.KeyContainerPermissionAccessEntry.KeyStore", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntry.cs#L18C34-L18C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntry.cs#L18C34-L18C38" }, { "DocsId": "P:System.Security.Permissions.KeyContainerPermissionAccessEntry.ProviderName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntry.cs#L19C38-L19C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntry.cs#L19C38-L19C42" }, { "DocsId": "P:System.Security.Permissions.KeyContainerPermissionAccessEntry.ProviderType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntry.cs#L20C35-L20C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntry.cs#L20C35-L20C39" }, { "DocsId": "P:System.Security.Permissions.KeyContainerPermissionAccessEntry.KeyContainerName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntry.cs#L21C42-L21C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntry.cs#L21C42-L21C46" }, { "DocsId": "P:System.Security.Permissions.KeyContainerPermissionAccessEntry.KeySpec", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntry.cs#L22C30-L22C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntry.cs#L22C30-L22C34" }, { "DocsId": "P:System.Security.Permissions.KeyContainerPermissionAccessEntry.Flags", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntry.cs#L23C52-L23C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntry.cs#L23C52-L23C56" } ], "DocsId": "T:System.Security.Permissions.KeyContainerPermissionAccessEntry", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntry.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntry.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.KeyContainerPermissionAccessEntryCollection.Add(System.Security.Permissions.KeyContainerPermissionAccessEntry)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryCollection.cs#L15C73-L15C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryCollection.cs#L15C73-L15C82" }, { "DocsId": "M:System.Security.Permissions.KeyContainerPermissionAccessEntryCollection.Clear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryCollection.cs#L16C31-L16C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryCollection.cs#L16C31-L16C32" }, { "DocsId": "M:System.Security.Permissions.KeyContainerPermissionAccessEntryCollection.IndexOf(System.Security.Permissions.KeyContainerPermissionAccessEntry)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryCollection.cs#L17C77-L17C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryCollection.cs#L17C77-L17C86" }, { "DocsId": "M:System.Security.Permissions.KeyContainerPermissionAccessEntryCollection.Remove(System.Security.Permissions.KeyContainerPermissionAccessEntry)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryCollection.cs#L18C77-L18C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryCollection.cs#L18C77-L18C78" }, { "DocsId": "M:System.Security.Permissions.KeyContainerPermissionAccessEntryCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryCollection.cs#L19C78-L19C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryCollection.cs#L19C78-L19C90" }, { "DocsId": "M:System.Security.Permissions.KeyContainerPermissionAccessEntryCollection.CopyTo(System.Security.Permissions.KeyContainerPermissionAccessEntry[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryCollection.cs#L20C84-L20C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryCollection.cs#L20C84-L20C85" }, { "DocsId": "M:System.Security.Permissions.KeyContainerPermissionAccessEntryCollection.CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryCollection.cs#L21C54-L21C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryCollection.cs#L21C54-L21C90" }, { "DocsId": "M:System.Security.Permissions.KeyContainerPermissionAccessEntryCollection.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryCollection.cs#L22C51-L22C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryCollection.cs#L22C51-L22C87" }, { "DocsId": "M:System.Security.Permissions.KeyContainerPermissionAccessEntryCollection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryCollection.cs" }, { "DocsId": "P:System.Security.Permissions.KeyContainerPermissionAccessEntryCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryCollection.cs#L13C74-L13C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryCollection.cs#L13C74-L13C86" }, { "DocsId": "P:System.Security.Permissions.KeyContainerPermissionAccessEntryCollection.Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryCollection.cs#L14C28-L14C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryCollection.cs#L14C28-L14C32" }, { "DocsId": "P:System.Security.Permissions.KeyContainerPermissionAccessEntryCollection.IsSynchronized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryCollection.cs#L23C38-L23C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryCollection.cs#L23C38-L23C42" }, { "DocsId": "P:System.Security.Permissions.KeyContainerPermissionAccessEntryCollection.SyncRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryCollection.cs#L24C34-L24C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryCollection.cs#L24C34-L24C38" } ], "DocsId": "T:System.Security.Permissions.KeyContainerPermissionAccessEntryCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryCollection.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.KeyContainerPermissionAccessEntryEnumerator.System#Collections#IEnumerator#get_Current", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryEnumerator.cs#L14C38-L14C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryEnumerator.cs#L14C38-L14C42" }, { "DocsId": "M:System.Security.Permissions.KeyContainerPermissionAccessEntryEnumerator.MoveNext", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryEnumerator.cs#L15C34-L15C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryEnumerator.cs#L15C34-L15C47" }, { "DocsId": "M:System.Security.Permissions.KeyContainerPermissionAccessEntryEnumerator.Reset", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryEnumerator.cs#L16C31-L16C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryEnumerator.cs#L16C31-L16C32" }, { "DocsId": "M:System.Security.Permissions.KeyContainerPermissionAccessEntryEnumerator.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryEnumerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryEnumerator.cs" }, { "DocsId": "P:System.Security.Permissions.KeyContainerPermissionAccessEntryEnumerator.Current", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryEnumerator.cs#L13C60-L13C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryEnumerator.cs#L13C60-L13C64" }, { "DocsId": "P:System.Security.Permissions.KeyContainerPermissionAccessEntryEnumerator.System#Collections#IEnumerator#Current", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryEnumerator.cs#L14C38-L14C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryEnumerator.cs#L14C38-L14C42" } ], "DocsId": "T:System.Security.Permissions.KeyContainerPermissionAccessEntryEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryEnumerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryEnumerator.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.KeyContainerPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAttribute.cs#L12C73-L12C89" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAttribute.cs#L12C73-L12C89" }, { "DocsId": "M:System.Security.Permissions.KeyContainerPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAttribute.cs#L19C58-L19C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAttribute.cs#L19C58-L19C70" }, { "DocsId": "P:System.Security.Permissions.KeyContainerPermissionAttribute.KeyStore", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAttribute.cs#L13C34-L13C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAttribute.cs#L13C34-L13C38" }, { "DocsId": "P:System.Security.Permissions.KeyContainerPermissionAttribute.ProviderName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAttribute.cs#L14C38-L14C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAttribute.cs#L14C38-L14C42" }, { "DocsId": "P:System.Security.Permissions.KeyContainerPermissionAttribute.ProviderType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAttribute.cs#L15C35-L15C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAttribute.cs#L15C35-L15C39" }, { "DocsId": "P:System.Security.Permissions.KeyContainerPermissionAttribute.KeyContainerName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAttribute.cs#L16C42-L16C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAttribute.cs#L16C42-L16C46" }, { "DocsId": "P:System.Security.Permissions.KeyContainerPermissionAttribute.KeySpec", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAttribute.cs#L17C30-L17C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAttribute.cs#L17C30-L17C34" }, { "DocsId": "P:System.Security.Permissions.KeyContainerPermissionAttribute.Flags", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAttribute.cs#L18C52-L18C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAttribute.cs#L18C52-L18C56" } ], "DocsId": "T:System.Security.Permissions.KeyContainerPermissionAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAttribute.cs" }, { "Members": [ { "DocsId": "F:System.Security.Permissions.KeyContainerPermissionFlags.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionFlags.cs" }, { "DocsId": "F:System.Security.Permissions.KeyContainerPermissionFlags.NoFlags", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionFlags.cs" }, { "DocsId": "F:System.Security.Permissions.KeyContainerPermissionFlags.Create", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionFlags.cs" }, { "DocsId": "F:System.Security.Permissions.KeyContainerPermissionFlags.Open", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionFlags.cs" }, { "DocsId": "F:System.Security.Permissions.KeyContainerPermissionFlags.Delete", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionFlags.cs" }, { "DocsId": "F:System.Security.Permissions.KeyContainerPermissionFlags.Import", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionFlags.cs" }, { "DocsId": "F:System.Security.Permissions.KeyContainerPermissionFlags.Export", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionFlags.cs" }, { "DocsId": "F:System.Security.Permissions.KeyContainerPermissionFlags.Sign", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionFlags.cs" }, { "DocsId": "F:System.Security.Permissions.KeyContainerPermissionFlags.Decrypt", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionFlags.cs" }, { "DocsId": "F:System.Security.Permissions.KeyContainerPermissionFlags.ViewAcl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionFlags.cs" }, { "DocsId": "F:System.Security.Permissions.KeyContainerPermissionFlags.ChangeAcl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionFlags.cs" }, { "DocsId": "F:System.Security.Permissions.KeyContainerPermissionFlags.AllFlags", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionFlags.cs" } ], "DocsId": "T:System.Security.Permissions.KeyContainerPermissionFlags", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionFlags.cs" }, { "Members": [ { "DocsId": "F:System.Security.Permissions.MediaPermissionAudio.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" }, { "DocsId": "F:System.Security.Permissions.MediaPermissionAudio.NoAudio", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" }, { "DocsId": "F:System.Security.Permissions.MediaPermissionAudio.SiteOfOriginAudio", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" }, { "DocsId": "F:System.Security.Permissions.MediaPermissionAudio.SafeAudio", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" }, { "DocsId": "F:System.Security.Permissions.MediaPermissionAudio.AllAudio", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" } ], "DocsId": "T:System.Security.Permissions.MediaPermissionAudio", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" }, { "Members": [ { "DocsId": "F:System.Security.Permissions.MediaPermissionVideo.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" }, { "DocsId": "F:System.Security.Permissions.MediaPermissionVideo.NoVideo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" }, { "DocsId": "F:System.Security.Permissions.MediaPermissionVideo.SiteOfOriginVideo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" }, { "DocsId": "F:System.Security.Permissions.MediaPermissionVideo.SafeVideo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" }, { "DocsId": "F:System.Security.Permissions.MediaPermissionVideo.AllVideo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" } ], "DocsId": "T:System.Security.Permissions.MediaPermissionVideo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" }, { "Members": [ { "DocsId": "F:System.Security.Permissions.MediaPermissionImage.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" }, { "DocsId": "F:System.Security.Permissions.MediaPermissionImage.NoImage", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" }, { "DocsId": "F:System.Security.Permissions.MediaPermissionImage.SiteOfOriginImage", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" }, { "DocsId": "F:System.Security.Permissions.MediaPermissionImage.SafeImage", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" }, { "DocsId": "F:System.Security.Permissions.MediaPermissionImage.AllImage", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" } ], "DocsId": "T:System.Security.Permissions.MediaPermissionImage", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.MediaPermission.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L43C9-L43C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L43C9-L43C37" }, { "DocsId": "M:System.Security.Permissions.MediaPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L44C9-L44C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L44C9-L44C58" }, { "DocsId": "M:System.Security.Permissions.MediaPermission.#ctor(System.Security.Permissions.MediaPermissionAudio)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L45C9-L45C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L45C9-L45C73" }, { "DocsId": "M:System.Security.Permissions.MediaPermission.#ctor(System.Security.Permissions.MediaPermissionVideo)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L46C9-L46C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L46C9-L46C73" }, { "DocsId": "M:System.Security.Permissions.MediaPermission.#ctor(System.Security.Permissions.MediaPermissionImage)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L47C9-L47C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L47C9-L47C73" }, { "DocsId": "M:System.Security.Permissions.MediaPermission.#ctor(System.Security.Permissions.MediaPermissionAudio,System.Security.Permissions.MediaPermissionVideo,System.Security.Permissions.MediaPermissionImage)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L48C9-L51C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L48C9-L51C12" }, { "DocsId": "M:System.Security.Permissions.MediaPermission.IsUnrestricted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L52C40-L52C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L52C40-L52C52" }, { "DocsId": "M:System.Security.Permissions.MediaPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L53C63-L53C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L53C63-L53C75" }, { "DocsId": "M:System.Security.Permissions.MediaPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L54C69-L54C98" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L54C69-L54C98" }, { "DocsId": "M:System.Security.Permissions.MediaPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L55C65-L55C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L55C65-L55C94" }, { "DocsId": "M:System.Security.Permissions.MediaPermission.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L56C46-L56C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L56C46-L56C75" }, { "DocsId": "M:System.Security.Permissions.MediaPermission.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L57C51-L57C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L57C51-L57C83" }, { "DocsId": "M:System.Security.Permissions.MediaPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L58C73-L58C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L58C73-L58C74" }, { "DocsId": "P:System.Security.Permissions.MediaPermission.Audio", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L59C51-L59C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L59C51-L59C88" }, { "DocsId": "P:System.Security.Permissions.MediaPermission.Video", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L60C51-L60C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L60C51-L60C88" }, { "DocsId": "P:System.Security.Permissions.MediaPermission.Image", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L61C51-L61C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L61C51-L61C88" } ], "DocsId": "T:System.Security.Permissions.MediaPermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.MediaPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L70C66-L70C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L70C66-L70C82" }, { "DocsId": "M:System.Security.Permissions.MediaPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L71C58-L71C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L71C58-L71C87" }, { "DocsId": "P:System.Security.Permissions.MediaPermissionAttribute.Audio", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L72C51-L72C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L72C51-L72C88" }, { "DocsId": "P:System.Security.Permissions.MediaPermissionAttribute.Video", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L73C51-L73C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L73C51-L73C88" }, { "DocsId": "P:System.Security.Permissions.MediaPermissionAttribute.Image", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L74C51-L74C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L74C51-L74C88" } ], "DocsId": "T:System.Security.Permissions.MediaPermissionAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.PermissionSetAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PermissionSetAttribute.cs#L12C64-L12C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PermissionSetAttribute.cs#L12C64-L12C97" }, { "DocsId": "M:System.Security.Permissions.PermissionSetAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PermissionSetAttribute.cs#L18C58-L18C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PermissionSetAttribute.cs#L18C58-L18C86" }, { "DocsId": "M:System.Security.Permissions.PermissionSetAttribute.CreatePermissionSet", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PermissionSetAttribute.cs#L19C54-L19C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PermissionSetAttribute.cs#L19C54-L19C84" }, { "DocsId": "P:System.Security.Permissions.PermissionSetAttribute.File", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PermissionSetAttribute.cs#L13C30-L13C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PermissionSetAttribute.cs#L13C30-L13C34" }, { "DocsId": "P:System.Security.Permissions.PermissionSetAttribute.Hex", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PermissionSetAttribute.cs#L14C29-L14C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PermissionSetAttribute.cs#L14C29-L14C33" }, { "DocsId": "P:System.Security.Permissions.PermissionSetAttribute.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PermissionSetAttribute.cs#L15C30-L15C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PermissionSetAttribute.cs#L15C30-L15C34" }, { "DocsId": "P:System.Security.Permissions.PermissionSetAttribute.UnicodeEncoded", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PermissionSetAttribute.cs#L16C38-L16C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PermissionSetAttribute.cs#L16C38-L16C42" }, { "DocsId": "P:System.Security.Permissions.PermissionSetAttribute.XML", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PermissionSetAttribute.cs#L17C29-L17C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PermissionSetAttribute.cs#L17C29-L17C33" } ], "DocsId": "T:System.Security.Permissions.PermissionSetAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PermissionSetAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PermissionSetAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.PrincipalPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermission.cs#L18C9-L30C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermission.cs#L18C9-L30C81" }, { "DocsId": "M:System.Security.Permissions.PrincipalPermission.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermission.cs#L34C9-L37C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermission.cs#L34C9-L37C10" }, { "DocsId": "M:System.Security.Permissions.PrincipalPermission.#ctor(System.String,System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermission.cs#L39C9-L42C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermission.cs#L39C9-L42C10" }, { "DocsId": "M:System.Security.Permissions.PrincipalPermission.IsUnrestricted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermission.cs#L67C39-L72C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermission.cs#L67C39-L72C25" }, { "DocsId": "M:System.Security.Permissions.PrincipalPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermission.cs#L77C13-L115C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermission.cs#L77C13-L115C25" }, { "DocsId": "M:System.Security.Permissions.PrincipalPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermission.cs#L120C13-L171C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermission.cs#L120C13-L171C90" }, { "DocsId": "M:System.Security.Permissions.PrincipalPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermission.cs#L176C13-L196C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermission.cs#L176C13-L196C58" }, { "DocsId": "M:System.Security.Permissions.PrincipalPermission.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermission.cs#L201C13-L208C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermission.cs#L201C13-L208C25" }, { "DocsId": "M:System.Security.Permissions.PrincipalPermission.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermission.cs#L213C13-L216C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermission.cs#L213C13-L216C25" }, { "DocsId": "M:System.Security.Permissions.PrincipalPermission.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermission.cs#L221C13-L221C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermission.cs#L221C13-L221C54" }, { "DocsId": "M:System.Security.Permissions.PrincipalPermission.Demand", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermission.cs#L226C13-L248C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermission.cs#L226C13-L248C74" }, { "DocsId": "M:System.Security.Permissions.PrincipalPermission.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermission.cs#L253C13-L267C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermission.cs#L253C13-L267C25" }, { "DocsId": "M:System.Security.Permissions.PrincipalPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermission.cs#L272C13-L298C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermission.cs#L272C13-L298C10" }, { "DocsId": "M:System.Security.Permissions.PrincipalPermission.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermission.cs#L302C13-L302C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermission.cs#L302C13-L302C39" } ], "DocsId": "T:System.Security.Permissions.PrincipalPermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermission.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.PrincipalPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermissionAttribute.cs#L15C70-L15C103" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermissionAttribute.cs#L15C70-L15C103" }, { "DocsId": "M:System.Security.Permissions.PrincipalPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermissionAttribute.cs#L19C58-L19C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermissionAttribute.cs#L19C58-L19C86" }, { "DocsId": "P:System.Security.Permissions.PrincipalPermissionAttribute.Authenticated", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermissionAttribute.cs#L16C37-L16C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermissionAttribute.cs#L16C37-L16C41" }, { "DocsId": "P:System.Security.Permissions.PrincipalPermissionAttribute.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermissionAttribute.cs#L17C30-L17C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermissionAttribute.cs#L17C30-L17C34" }, { "DocsId": "P:System.Security.Permissions.PrincipalPermissionAttribute.Role", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermissionAttribute.cs#L18C30-L18C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermissionAttribute.cs#L18C30-L18C34" } ], "DocsId": "T:System.Security.Permissions.PrincipalPermissionAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermissionAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.PublisherIdentityPermission.#ctor(System.Security.Cryptography.X509Certificates.X509Certificate)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermission.cs#L13C9-L13C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermission.cs#L13C9-L13C76" }, { "DocsId": "M:System.Security.Permissions.PublisherIdentityPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermission.cs#L14C9-L14C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermission.cs#L14C9-L14C70" }, { "DocsId": "M:System.Security.Permissions.PublisherIdentityPermission.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermission.cs#L16C46-L16C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermission.cs#L16C46-L16C58" }, { "DocsId": "M:System.Security.Permissions.PublisherIdentityPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermission.cs#L17C61-L17C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermission.cs#L17C61-L17C62" }, { "DocsId": "M:System.Security.Permissions.PublisherIdentityPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermission.cs#L18C69-L18C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermission.cs#L18C69-L18C97" }, { "DocsId": "M:System.Security.Permissions.PublisherIdentityPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermission.cs#L19C63-L19C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermission.cs#L19C63-L19C76" }, { "DocsId": "M:System.Security.Permissions.PublisherIdentityPermission.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermission.cs#L20C51-L20C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermission.cs#L20C51-L20C83" }, { "DocsId": "M:System.Security.Permissions.PublisherIdentityPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermission.cs#L21C65-L21C93" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermission.cs#L21C65-L21C93" }, { "DocsId": "P:System.Security.Permissions.PublisherIdentityPermission.Certificate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermission.cs#L15C46-L15C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermission.cs#L15C46-L15C50" } ], "DocsId": "T:System.Security.Permissions.PublisherIdentityPermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermission.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.PublisherIdentityPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermissionAttribute.cs#L12C78-L12C111" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermissionAttribute.cs#L12C78-L12C111" }, { "DocsId": "M:System.Security.Permissions.PublisherIdentityPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermissionAttribute.cs#L16C58-L16C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermissionAttribute.cs#L16C58-L16C86" }, { "DocsId": "P:System.Security.Permissions.PublisherIdentityPermissionAttribute.CertFile", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermissionAttribute.cs#L13C34-L13C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermissionAttribute.cs#L13C34-L13C38" }, { "DocsId": "P:System.Security.Permissions.PublisherIdentityPermissionAttribute.SignedFile", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermissionAttribute.cs#L14C36-L14C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermissionAttribute.cs#L14C36-L14C40" }, { "DocsId": "P:System.Security.Permissions.PublisherIdentityPermissionAttribute.X509Certificate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermissionAttribute.cs#L15C41-L15C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermissionAttribute.cs#L15C41-L15C45" } ], "DocsId": "T:System.Security.Permissions.PublisherIdentityPermissionAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermissionAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.ReflectionPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermission.cs#L11C9-L11C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermission.cs#L11C9-L11C63" }, { "DocsId": "M:System.Security.Permissions.ReflectionPermission.#ctor(System.Security.Permissions.ReflectionPermissionFlag)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermission.cs#L12C9-L12C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermission.cs#L12C9-L12C71" }, { "DocsId": "M:System.Security.Permissions.ReflectionPermission.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermission.cs#L14C46-L14C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermission.cs#L14C46-L14C58" }, { "DocsId": "M:System.Security.Permissions.ReflectionPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermission.cs#L15C61-L15C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermission.cs#L15C61-L15C62" }, { "DocsId": "M:System.Security.Permissions.ReflectionPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermission.cs#L16C69-L16C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermission.cs#L16C69-L16C97" }, { "DocsId": "M:System.Security.Permissions.ReflectionPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermission.cs#L17C63-L17C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermission.cs#L17C63-L17C76" }, { "DocsId": "M:System.Security.Permissions.ReflectionPermission.IsUnrestricted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermission.cs#L18C40-L18C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermission.cs#L18C40-L18C53" }, { "DocsId": "M:System.Security.Permissions.ReflectionPermission.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermission.cs#L19C51-L19C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermission.cs#L19C51-L19C83" }, { "DocsId": "M:System.Security.Permissions.ReflectionPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermission.cs#L20C64-L20C92" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermission.cs#L20C64-L20C92" }, { "DocsId": "P:System.Security.Permissions.ReflectionPermission.Flags", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermission.cs#L13C49-L13C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermission.cs#L13C49-L13C53" } ], "DocsId": "T:System.Security.Permissions.ReflectionPermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermission.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.ReflectionPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionAttribute.cs#L12C71-L12C104" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionAttribute.cs#L12C71-L12C104" }, { "DocsId": "M:System.Security.Permissions.ReflectionPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionAttribute.cs#L20C58-L20C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionAttribute.cs#L20C58-L20C86" }, { "DocsId": "P:System.Security.Permissions.ReflectionPermissionAttribute.Flags", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionAttribute.cs#L13C49-L13C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionAttribute.cs#L13C49-L13C53" }, { "DocsId": "P:System.Security.Permissions.ReflectionPermissionAttribute.MemberAccess", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionAttribute.cs#L14C36-L14C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionAttribute.cs#L14C36-L14C40" }, { "DocsId": "P:System.Security.Permissions.ReflectionPermissionAttribute.ReflectionEmit", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionAttribute.cs#L16C38-L16C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionAttribute.cs#L16C38-L16C42" }, { "DocsId": "P:System.Security.Permissions.ReflectionPermissionAttribute.RestrictedMemberAccess", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionAttribute.cs#L17C46-L17C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionAttribute.cs#L17C46-L17C50" }, { "DocsId": "P:System.Security.Permissions.ReflectionPermissionAttribute.TypeInformation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionAttribute.cs#L19C39-L19C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionAttribute.cs#L19C39-L19C43" } ], "DocsId": "T:System.Security.Permissions.ReflectionPermissionAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionAttribute.cs" }, { "Members": [ { "DocsId": "F:System.Security.Permissions.ReflectionPermissionFlag.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionFlag.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionFlag.cs" }, { "DocsId": "F:System.Security.Permissions.ReflectionPermissionFlag.AllFlags", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionFlag.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionFlag.cs" }, { "DocsId": "F:System.Security.Permissions.ReflectionPermissionFlag.MemberAccess", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionFlag.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionFlag.cs" }, { "DocsId": "F:System.Security.Permissions.ReflectionPermissionFlag.NoFlags", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionFlag.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionFlag.cs" }, { "DocsId": "F:System.Security.Permissions.ReflectionPermissionFlag.ReflectionEmit", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionFlag.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionFlag.cs" }, { "DocsId": "F:System.Security.Permissions.ReflectionPermissionFlag.RestrictedMemberAccess", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionFlag.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionFlag.cs" }, { "DocsId": "F:System.Security.Permissions.ReflectionPermissionFlag.TypeInformation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionFlag.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionFlag.cs" } ], "DocsId": "T:System.Security.Permissions.ReflectionPermissionFlag", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionFlag.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionFlag.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.RegistryPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermission.cs#L13C9-L13C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermission.cs#L13C9-L13C61" }, { "DocsId": "M:System.Security.Permissions.RegistryPermission.#ctor(System.Security.Permissions.RegistryPermissionAccess,System.Security.AccessControl.AccessControlActions,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermission.cs#L14C9-L14C118" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermission.cs#L14C9-L14C118" }, { "DocsId": "M:System.Security.Permissions.RegistryPermission.#ctor(System.Security.Permissions.RegistryPermissionAccess,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermission.cs#L15C9-L15C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermission.cs#L15C9-L15C88" }, { "DocsId": "M:System.Security.Permissions.RegistryPermission.AddPathList(System.Security.Permissions.RegistryPermissionAccess,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermission.cs#L16C85-L16C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermission.cs#L16C85-L16C86" }, { "DocsId": "M:System.Security.Permissions.RegistryPermission.AddPathList(System.Security.Permissions.RegistryPermissionAccess,System.Security.AccessControl.AccessControlActions,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermission.cs#L17C115-L17C116" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermission.cs#L17C115-L17C116" }, { "DocsId": "M:System.Security.Permissions.RegistryPermission.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermission.cs#L18C46-L18C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermission.cs#L18C46-L18C74" }, { "DocsId": "M:System.Security.Permissions.RegistryPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermission.cs#L19C62-L19C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermission.cs#L19C62-L19C63" }, { "DocsId": "M:System.Security.Permissions.RegistryPermission.GetPathList(System.Security.Permissions.RegistryPermissionAccess)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermission.cs#L20C70-L20C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermission.cs#L20C70-L20C82" }, { "DocsId": "M:System.Security.Permissions.RegistryPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermission.cs#L21C69-L21C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermission.cs#L21C69-L21C97" }, { "DocsId": "M:System.Security.Permissions.RegistryPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermission.cs#L22C63-L22C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermission.cs#L22C63-L22C76" }, { "DocsId": "M:System.Security.Permissions.RegistryPermission.IsUnrestricted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermission.cs#L23C40-L23C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermission.cs#L23C40-L23C53" }, { "DocsId": "M:System.Security.Permissions.RegistryPermission.SetPathList(System.Security.Permissions.RegistryPermissionAccess,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermission.cs#L24C85-L24C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermission.cs#L24C85-L24C86" }, { "DocsId": "M:System.Security.Permissions.RegistryPermission.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermission.cs#L25C51-L25C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermission.cs#L25C51-L25C83" }, { "DocsId": "M:System.Security.Permissions.RegistryPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermission.cs#L26C64-L26C92" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermission.cs#L26C64-L26C92" } ], "DocsId": "T:System.Security.Permissions.RegistryPermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermission.cs" }, { "Members": [ { "DocsId": "F:System.Security.Permissions.RegistryPermissionAccess.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAccess.cs" }, { "DocsId": "F:System.Security.Permissions.RegistryPermissionAccess.AllAccess", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAccess.cs" }, { "DocsId": "F:System.Security.Permissions.RegistryPermissionAccess.Create", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAccess.cs" }, { "DocsId": "F:System.Security.Permissions.RegistryPermissionAccess.NoAccess", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAccess.cs" }, { "DocsId": "F:System.Security.Permissions.RegistryPermissionAccess.Read", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAccess.cs" }, { "DocsId": "F:System.Security.Permissions.RegistryPermissionAccess.Write", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAccess.cs" } ], "DocsId": "T:System.Security.Permissions.RegistryPermissionAccess", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAccess.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.RegistryPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAttribute.cs#L12C69-L12C102" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAttribute.cs#L12C69-L12C102" }, { "DocsId": "M:System.Security.Permissions.RegistryPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAttribute.cs#L21C58-L21C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAttribute.cs#L21C58-L21C86" }, { "DocsId": "P:System.Security.Permissions.RegistryPermissionAttribute.All", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAttribute.cs#L14C29-L14C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAttribute.cs#L14C29-L14C33" }, { "DocsId": "P:System.Security.Permissions.RegistryPermissionAttribute.ChangeAccessControl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAttribute.cs#L15C45-L15C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAttribute.cs#L15C45-L15C49" }, { "DocsId": "P:System.Security.Permissions.RegistryPermissionAttribute.Create", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAttribute.cs#L16C32-L16C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAttribute.cs#L16C32-L16C36" }, { "DocsId": "P:System.Security.Permissions.RegistryPermissionAttribute.Read", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAttribute.cs#L17C30-L17C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAttribute.cs#L17C30-L17C34" }, { "DocsId": "P:System.Security.Permissions.RegistryPermissionAttribute.ViewAccessControl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAttribute.cs#L18C43-L18C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAttribute.cs#L18C43-L18C47" }, { "DocsId": "P:System.Security.Permissions.RegistryPermissionAttribute.ViewAndModify", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAttribute.cs#L19C39-L19C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAttribute.cs#L19C39-L19C43" }, { "DocsId": "P:System.Security.Permissions.RegistryPermissionAttribute.Write", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAttribute.cs#L20C31-L20C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAttribute.cs#L20C31-L20C35" } ], "DocsId": "T:System.Security.Permissions.RegistryPermissionAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.ResourcePermissionBase.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs#L15C9-L15C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs#L15C9-L15C47" }, { "DocsId": "M:System.Security.Permissions.ResourcePermissionBase.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs#L16C9-L16C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs#L16C9-L16C68" }, { "DocsId": "M:System.Security.Permissions.ResourcePermissionBase.AddPermissionAccess(System.Security.Permissions.ResourcePermissionBaseEntry)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs#L22C81-L22C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs#L22C81-L22C82" }, { "DocsId": "M:System.Security.Permissions.ResourcePermissionBase.Clear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs#L23C34-L23C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs#L23C34-L23C35" }, { "DocsId": "M:System.Security.Permissions.ResourcePermissionBase.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs#L24C46-L24C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs#L24C46-L24C58" }, { "DocsId": "M:System.Security.Permissions.ResourcePermissionBase.GetPermissionEntries", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs#L25C74-L25C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs#L25C74-L25C86" }, { "DocsId": "M:System.Security.Permissions.ResourcePermissionBase.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs#L26C73-L26C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs#L26C73-L26C74" }, { "DocsId": "M:System.Security.Permissions.ResourcePermissionBase.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs#L27C69-L27C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs#L27C69-L27C81" }, { "DocsId": "M:System.Security.Permissions.ResourcePermissionBase.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs#L28C63-L28C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs#L28C63-L28C76" }, { "DocsId": "M:System.Security.Permissions.ResourcePermissionBase.IsUnrestricted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs#L29C40-L29C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs#L29C40-L29C53" }, { "DocsId": "M:System.Security.Permissions.ResourcePermissionBase.RemovePermissionAccess(System.Security.Permissions.ResourcePermissionBaseEntry)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs#L30C84-L30C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs#L30C84-L30C85" }, { "DocsId": "M:System.Security.Permissions.ResourcePermissionBase.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs#L31C51-L31C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs#L31C51-L31C63" }, { "DocsId": "M:System.Security.Permissions.ResourcePermissionBase.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs#L32C65-L32C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs#L32C65-L32C77" }, { "DocsId": "F:System.Security.Permissions.ResourcePermissionBase.Any", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs" }, { "DocsId": "F:System.Security.Permissions.ResourcePermissionBase.Local", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs" }, { "DocsId": "P:System.Security.Permissions.ResourcePermissionBase.PermissionAccessType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs#L20C47-L20C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs#L20C47-L20C51" }, { "DocsId": "P:System.Security.Permissions.ResourcePermissionBase.TagNames", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs#L21C39-L21C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs#L21C39-L21C43" } ], "DocsId": "T:System.Security.Permissions.ResourcePermissionBase", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.ResourcePermissionBaseEntry.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBaseEntry.cs#L11C9-L11C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBaseEntry.cs#L11C9-L11C49" }, { "DocsId": "M:System.Security.Permissions.ResourcePermissionBaseEntry.#ctor(System.Int32,System.String[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBaseEntry.cs#L12C9-L12C100" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBaseEntry.cs#L12C9-L12C100" }, { "DocsId": "P:System.Security.Permissions.ResourcePermissionBaseEntry.PermissionAccess", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBaseEntry.cs#L13C39-L13C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBaseEntry.cs#L13C39-L13C43" }, { "DocsId": "P:System.Security.Permissions.ResourcePermissionBaseEntry.PermissionAccessPath", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBaseEntry.cs#L14C48-L14C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBaseEntry.cs#L14C48-L14C52" } ], "DocsId": "T:System.Security.Permissions.ResourcePermissionBaseEntry", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBaseEntry.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBaseEntry.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.SecurityPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SecurityPermission.cs#L11C9-L11C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SecurityPermission.cs#L11C9-L11C61" }, { "DocsId": "M:System.Security.Permissions.SecurityPermission.#ctor(System.Security.Permissions.SecurityPermissionFlag)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SecurityPermission.cs#L12C9-L12C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SecurityPermission.cs#L12C9-L12C67" }, { "DocsId": "M:System.Security.Permissions.SecurityPermission.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SecurityPermission.cs#L14C46-L14C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SecurityPermission.cs#L14C46-L14C58" }, { "DocsId": "M:System.Security.Permissions.SecurityPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SecurityPermission.cs#L15C61-L15C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SecurityPermission.cs#L15C61-L15C62" }, { "DocsId": "M:System.Security.Permissions.SecurityPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SecurityPermission.cs#L16C69-L16C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SecurityPermission.cs#L16C69-L16C97" }, { "DocsId": "M:System.Security.Permissions.SecurityPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SecurityPermission.cs#L17C63-L17C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SecurityPermission.cs#L17C63-L17C76" }, { "DocsId": "M:System.Security.Permissions.SecurityPermission.IsUnrestricted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SecurityPermission.cs#L18C40-L18C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SecurityPermission.cs#L18C40-L18C53" }, { "DocsId": "M:System.Security.Permissions.SecurityPermission.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SecurityPermission.cs#L19C51-L19C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SecurityPermission.cs#L19C51-L19C83" }, { "DocsId": "M:System.Security.Permissions.SecurityPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SecurityPermission.cs#L20C65-L20C93" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SecurityPermission.cs#L20C65-L20C93" }, { "DocsId": "P:System.Security.Permissions.SecurityPermission.Flags", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SecurityPermission.cs#L13C47-L13C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SecurityPermission.cs#L13C47-L13C51" } ], "DocsId": "T:System.Security.Permissions.SecurityPermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SecurityPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SecurityPermission.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.SiteIdentityPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SiteIdentityPermission.cs#L11C9-L11C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SiteIdentityPermission.cs#L11C9-L11C65" }, { "DocsId": "M:System.Security.Permissions.SiteIdentityPermission.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SiteIdentityPermission.cs#L12C9-L12C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SiteIdentityPermission.cs#L12C9-L12C55" }, { "DocsId": "M:System.Security.Permissions.SiteIdentityPermission.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SiteIdentityPermission.cs#L14C46-L14C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SiteIdentityPermission.cs#L14C46-L14C74" }, { "DocsId": "M:System.Security.Permissions.SiteIdentityPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SiteIdentityPermission.cs#L15C61-L15C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SiteIdentityPermission.cs#L15C61-L15C62" }, { "DocsId": "M:System.Security.Permissions.SiteIdentityPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SiteIdentityPermission.cs#L16C69-L16C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SiteIdentityPermission.cs#L16C69-L16C97" }, { "DocsId": "M:System.Security.Permissions.SiteIdentityPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SiteIdentityPermission.cs#L17C63-L17C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SiteIdentityPermission.cs#L17C63-L17C76" }, { "DocsId": "M:System.Security.Permissions.SiteIdentityPermission.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SiteIdentityPermission.cs#L18C51-L18C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SiteIdentityPermission.cs#L18C51-L18C83" }, { "DocsId": "M:System.Security.Permissions.SiteIdentityPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SiteIdentityPermission.cs#L19C65-L19C93" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SiteIdentityPermission.cs#L19C65-L19C93" }, { "DocsId": "P:System.Security.Permissions.SiteIdentityPermission.Site", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SiteIdentityPermission.cs#L13C30-L13C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SiteIdentityPermission.cs#L13C30-L13C34" } ], "DocsId": "T:System.Security.Permissions.SiteIdentityPermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SiteIdentityPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SiteIdentityPermission.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.SiteIdentityPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SiteIdentityPermissionAttribute.cs#L12C73-L12C106" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SiteIdentityPermissionAttribute.cs#L12C73-L12C106" }, { "DocsId": "M:System.Security.Permissions.SiteIdentityPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SiteIdentityPermissionAttribute.cs#L14C58-L14C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SiteIdentityPermissionAttribute.cs#L14C58-L14C86" }, { "DocsId": "P:System.Security.Permissions.SiteIdentityPermissionAttribute.Site", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SiteIdentityPermissionAttribute.cs#L13C30-L13C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SiteIdentityPermissionAttribute.cs#L13C30-L13C34" } ], "DocsId": "T:System.Security.Permissions.SiteIdentityPermissionAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SiteIdentityPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SiteIdentityPermissionAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.StorePermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermission.cs#L11C9-L11C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermission.cs#L11C9-L11C58" }, { "DocsId": "M:System.Security.Permissions.StorePermission.#ctor(System.Security.Permissions.StorePermissionFlags)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermission.cs#L12C9-L12C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermission.cs#L12C9-L12C62" }, { "DocsId": "M:System.Security.Permissions.StorePermission.IsUnrestricted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermission.cs#L14C40-L14C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermission.cs#L14C40-L14C53" }, { "DocsId": "M:System.Security.Permissions.StorePermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermission.cs#L15C65-L15C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermission.cs#L15C65-L15C77" }, { "DocsId": "M:System.Security.Permissions.StorePermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermission.cs#L16C63-L16C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermission.cs#L16C63-L16C76" }, { "DocsId": "M:System.Security.Permissions.StorePermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermission.cs#L17C69-L17C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermission.cs#L17C69-L17C81" }, { "DocsId": "M:System.Security.Permissions.StorePermission.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermission.cs#L18C46-L18C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermission.cs#L18C46-L18C58" }, { "DocsId": "M:System.Security.Permissions.StorePermission.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermission.cs#L19C51-L19C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermission.cs#L19C51-L19C63" }, { "DocsId": "M:System.Security.Permissions.StorePermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermission.cs#L20C73-L20C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermission.cs#L20C73-L20C74" }, { "DocsId": "P:System.Security.Permissions.StorePermission.Flags", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermission.cs#L13C45-L13C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermission.cs#L13C45-L13C49" } ], "DocsId": "T:System.Security.Permissions.StorePermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermission.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.StorePermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionAttribute.cs#L12C66-L12C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionAttribute.cs#L12C66-L12C82" }, { "DocsId": "M:System.Security.Permissions.StorePermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionAttribute.cs#L21C58-L21C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionAttribute.cs#L21C58-L21C70" }, { "DocsId": "P:System.Security.Permissions.StorePermissionAttribute.Flags", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionAttribute.cs#L13C45-L13C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionAttribute.cs#L13C45-L13C49" }, { "DocsId": "P:System.Security.Permissions.StorePermissionAttribute.CreateStore", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionAttribute.cs#L14C35-L14C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionAttribute.cs#L14C35-L14C39" }, { "DocsId": "P:System.Security.Permissions.StorePermissionAttribute.DeleteStore", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionAttribute.cs#L15C35-L15C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionAttribute.cs#L15C35-L15C39" }, { "DocsId": "P:System.Security.Permissions.StorePermissionAttribute.EnumerateStores", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionAttribute.cs#L16C39-L16C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionAttribute.cs#L16C39-L16C43" }, { "DocsId": "P:System.Security.Permissions.StorePermissionAttribute.OpenStore", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionAttribute.cs#L17C33-L17C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionAttribute.cs#L17C33-L17C37" }, { "DocsId": "P:System.Security.Permissions.StorePermissionAttribute.AddToStore", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionAttribute.cs#L18C34-L18C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionAttribute.cs#L18C34-L18C38" }, { "DocsId": "P:System.Security.Permissions.StorePermissionAttribute.RemoveFromStore", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionAttribute.cs#L19C39-L19C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionAttribute.cs#L19C39-L19C43" }, { "DocsId": "P:System.Security.Permissions.StorePermissionAttribute.EnumerateCertificates", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionAttribute.cs#L20C45-L20C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionAttribute.cs#L20C45-L20C49" } ], "DocsId": "T:System.Security.Permissions.StorePermissionAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionAttribute.cs" }, { "Members": [ { "DocsId": "F:System.Security.Permissions.StorePermissionFlags.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionFlags.cs" }, { "DocsId": "F:System.Security.Permissions.StorePermissionFlags.NoFlags", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionFlags.cs" }, { "DocsId": "F:System.Security.Permissions.StorePermissionFlags.CreateStore", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionFlags.cs" }, { "DocsId": "F:System.Security.Permissions.StorePermissionFlags.DeleteStore", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionFlags.cs" }, { "DocsId": "F:System.Security.Permissions.StorePermissionFlags.EnumerateStores", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionFlags.cs" }, { "DocsId": "F:System.Security.Permissions.StorePermissionFlags.OpenStore", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionFlags.cs" }, { "DocsId": "F:System.Security.Permissions.StorePermissionFlags.AddToStore", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionFlags.cs" }, { "DocsId": "F:System.Security.Permissions.StorePermissionFlags.RemoveFromStore", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionFlags.cs" }, { "DocsId": "F:System.Security.Permissions.StorePermissionFlags.EnumerateCertificates", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionFlags.cs" }, { "DocsId": "F:System.Security.Permissions.StorePermissionFlags.AllFlags", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionFlags.cs" } ], "DocsId": "T:System.Security.Permissions.StorePermissionFlags", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionFlags.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.StrongNameIdentityPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermission.cs#L11C9-L11C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermission.cs#L11C9-L11C71" }, { "DocsId": "M:System.Security.Permissions.StrongNameIdentityPermission.#ctor(System.Security.Permissions.StrongNamePublicKeyBlob,System.String,System.Version)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermission.cs#L12C9-L12C108" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermission.cs#L12C9-L12C108" }, { "DocsId": "M:System.Security.Permissions.StrongNameIdentityPermission.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermission.cs#L16C46-L16C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermission.cs#L16C46-L16C58" }, { "DocsId": "M:System.Security.Permissions.StrongNameIdentityPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermission.cs#L17C59-L17C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermission.cs#L17C59-L17C60" }, { "DocsId": "M:System.Security.Permissions.StrongNameIdentityPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermission.cs#L18C69-L18C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermission.cs#L18C69-L18C97" }, { "DocsId": "M:System.Security.Permissions.StrongNameIdentityPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermission.cs#L19C63-L19C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermission.cs#L19C63-L19C76" }, { "DocsId": "M:System.Security.Permissions.StrongNameIdentityPermission.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermission.cs#L20C51-L20C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermission.cs#L20C51-L20C83" }, { "DocsId": "M:System.Security.Permissions.StrongNameIdentityPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermission.cs#L21C65-L21C93" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermission.cs#L21C65-L21C93" }, { "DocsId": "P:System.Security.Permissions.StrongNameIdentityPermission.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermission.cs#L13C30-L13C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermission.cs#L13C30-L13C34" }, { "DocsId": "P:System.Security.Permissions.StrongNameIdentityPermission.PublicKey", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermission.cs#L14C52-L14C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermission.cs#L14C52-L14C56" }, { "DocsId": "P:System.Security.Permissions.StrongNameIdentityPermission.Version", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermission.cs#L15C34-L15C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermission.cs#L15C34-L15C38" } ], "DocsId": "T:System.Security.Permissions.StrongNameIdentityPermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermission.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.StrongNameIdentityPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermissionAttribute.cs#L12C79-L12C112" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermissionAttribute.cs#L12C79-L12C112" }, { "DocsId": "M:System.Security.Permissions.StrongNameIdentityPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermissionAttribute.cs#L16C58-L16C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermissionAttribute.cs#L16C58-L16C86" }, { "DocsId": "P:System.Security.Permissions.StrongNameIdentityPermissionAttribute.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermissionAttribute.cs#L13C30-L13C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermissionAttribute.cs#L13C30-L13C34" }, { "DocsId": "P:System.Security.Permissions.StrongNameIdentityPermissionAttribute.PublicKey", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermissionAttribute.cs#L14C35-L14C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermissionAttribute.cs#L14C35-L14C39" }, { "DocsId": "P:System.Security.Permissions.StrongNameIdentityPermissionAttribute.Version", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermissionAttribute.cs#L15C33-L15C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermissionAttribute.cs#L15C33-L15C37" } ], "DocsId": "T:System.Security.Permissions.StrongNameIdentityPermissionAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermissionAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.StrongNamePublicKeyBlob.#ctor(System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNamePublicKeyBlob.cs#L11C9-L11C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNamePublicKeyBlob.cs#L11C9-L11C61" }, { "DocsId": "M:System.Security.Permissions.StrongNamePublicKeyBlob.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNamePublicKeyBlob.cs#L12C50-L12C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNamePublicKeyBlob.cs#L12C50-L12C64" }, { "DocsId": "M:System.Security.Permissions.StrongNamePublicKeyBlob.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNamePublicKeyBlob.cs#L13C46-L13C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNamePublicKeyBlob.cs#L13C46-L13C64" }, { "DocsId": "M:System.Security.Permissions.StrongNamePublicKeyBlob.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNamePublicKeyBlob.cs#L14C46-L14C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNamePublicKeyBlob.cs#L14C46-L14C61" } ], "DocsId": "T:System.Security.Permissions.StrongNamePublicKeyBlob", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNamePublicKeyBlob.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNamePublicKeyBlob.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.TypeDescriptorPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermission.cs#L11C9-L11C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermission.cs#L11C9-L11C67" }, { "DocsId": "M:System.Security.Permissions.TypeDescriptorPermission.#ctor(System.Security.Permissions.TypeDescriptorPermissionFlags)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermission.cs#L12C9-L12C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermission.cs#L12C9-L12C80" }, { "DocsId": "M:System.Security.Permissions.TypeDescriptorPermission.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermission.cs#L14C46-L14C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermission.cs#L14C46-L14C58" }, { "DocsId": "M:System.Security.Permissions.TypeDescriptorPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermission.cs#L15C73-L15C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermission.cs#L15C73-L15C74" }, { "DocsId": "M:System.Security.Permissions.TypeDescriptorPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermission.cs#L16C69-L16C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermission.cs#L16C69-L16C97" }, { "DocsId": "M:System.Security.Permissions.TypeDescriptorPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermission.cs#L17C63-L17C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermission.cs#L17C63-L17C76" }, { "DocsId": "M:System.Security.Permissions.TypeDescriptorPermission.IsUnrestricted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermission.cs#L18C40-L18C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermission.cs#L18C40-L18C53" }, { "DocsId": "M:System.Security.Permissions.TypeDescriptorPermission.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermission.cs#L19C51-L19C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermission.cs#L19C51-L19C83" }, { "DocsId": "M:System.Security.Permissions.TypeDescriptorPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermission.cs#L20C65-L20C93" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermission.cs#L20C65-L20C93" }, { "DocsId": "P:System.Security.Permissions.TypeDescriptorPermission.Flags", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermission.cs#L13C54-L13C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermission.cs#L13C54-L13C58" } ], "DocsId": "T:System.Security.Permissions.TypeDescriptorPermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermission.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.TypeDescriptorPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermissionAttribute.cs#L12C75-L12C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermissionAttribute.cs#L12C75-L12C91" }, { "DocsId": "M:System.Security.Permissions.TypeDescriptorPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermissionAttribute.cs#L15C58-L15C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermissionAttribute.cs#L15C58-L15C70" }, { "DocsId": "P:System.Security.Permissions.TypeDescriptorPermissionAttribute.Flags", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermissionAttribute.cs#L13C54-L13C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermissionAttribute.cs#L13C54-L13C58" }, { "DocsId": "P:System.Security.Permissions.TypeDescriptorPermissionAttribute.RestrictedRegistrationAccess", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermissionAttribute.cs#L14C52-L14C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermissionAttribute.cs#L14C52-L14C56" } ], "DocsId": "T:System.Security.Permissions.TypeDescriptorPermissionAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermissionAttribute.cs" }, { "Members": [ { "DocsId": "F:System.Security.Permissions.TypeDescriptorPermissionFlags.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermissionFlags.cs" }, { "DocsId": "F:System.Security.Permissions.TypeDescriptorPermissionFlags.NoFlags", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermissionFlags.cs" }, { "DocsId": "F:System.Security.Permissions.TypeDescriptorPermissionFlags.RestrictedRegistrationAccess", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermissionFlags.cs" } ], "DocsId": "T:System.Security.Permissions.TypeDescriptorPermissionFlags", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermissionFlags.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.UIPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermission.cs#L11C9-L11C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermission.cs#L11C9-L11C55" }, { "DocsId": "M:System.Security.Permissions.UIPermission.#ctor(System.Security.Permissions.UIPermissionClipboard)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermission.cs#L12C9-L12C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermission.cs#L12C9-L12C69" }, { "DocsId": "M:System.Security.Permissions.UIPermission.#ctor(System.Security.Permissions.UIPermissionWindow)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermission.cs#L13C9-L13C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermission.cs#L13C9-L13C63" }, { "DocsId": "M:System.Security.Permissions.UIPermission.#ctor(System.Security.Permissions.UIPermissionWindow,System.Security.Permissions.UIPermissionClipboard)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermission.cs#L14C9-L14C100" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermission.cs#L14C9-L14C100" }, { "DocsId": "M:System.Security.Permissions.UIPermission.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermission.cs#L17C46-L17C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermission.cs#L17C46-L17C58" }, { "DocsId": "M:System.Security.Permissions.UIPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermission.cs#L18C61-L18C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermission.cs#L18C61-L18C62" }, { "DocsId": "M:System.Security.Permissions.UIPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermission.cs#L19C69-L19C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermission.cs#L19C69-L19C97" }, { "DocsId": "M:System.Security.Permissions.UIPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermission.cs#L20C63-L20C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermission.cs#L20C63-L20C76" }, { "DocsId": "M:System.Security.Permissions.UIPermission.IsUnrestricted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermission.cs#L21C40-L21C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermission.cs#L21C40-L21C53" }, { "DocsId": "M:System.Security.Permissions.UIPermission.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermission.cs#L22C51-L22C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermission.cs#L22C51-L22C83" }, { "DocsId": "M:System.Security.Permissions.UIPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermission.cs#L23C65-L23C93" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermission.cs#L23C65-L23C93" }, { "DocsId": "P:System.Security.Permissions.UIPermission.Clipboard", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermission.cs#L15C50-L15C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermission.cs#L15C50-L15C54" }, { "DocsId": "P:System.Security.Permissions.UIPermission.Window", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermission.cs#L16C44-L16C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermission.cs#L16C44-L16C48" } ], "DocsId": "T:System.Security.Permissions.UIPermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermission.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.UIPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionAttribute.cs#L12C63-L12C96" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionAttribute.cs#L12C63-L12C96" }, { "DocsId": "M:System.Security.Permissions.UIPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionAttribute.cs#L15C58-L15C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionAttribute.cs#L15C58-L15C86" }, { "DocsId": "P:System.Security.Permissions.UIPermissionAttribute.Clipboard", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionAttribute.cs#L13C50-L13C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionAttribute.cs#L13C50-L13C54" }, { "DocsId": "P:System.Security.Permissions.UIPermissionAttribute.Window", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionAttribute.cs#L14C44-L14C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionAttribute.cs#L14C44-L14C48" } ], "DocsId": "T:System.Security.Permissions.UIPermissionAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionAttribute.cs" }, { "Members": [ { "DocsId": "F:System.Security.Permissions.UIPermissionClipboard.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionClipboard.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionClipboard.cs" }, { "DocsId": "F:System.Security.Permissions.UIPermissionClipboard.AllClipboard", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionClipboard.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionClipboard.cs" }, { "DocsId": "F:System.Security.Permissions.UIPermissionClipboard.NoClipboard", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionClipboard.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionClipboard.cs" }, { "DocsId": "F:System.Security.Permissions.UIPermissionClipboard.OwnClipboard", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionClipboard.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionClipboard.cs" } ], "DocsId": "T:System.Security.Permissions.UIPermissionClipboard", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionClipboard.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionClipboard.cs" }, { "Members": [ { "DocsId": "F:System.Security.Permissions.UIPermissionWindow.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionWindow.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionWindow.cs" }, { "DocsId": "F:System.Security.Permissions.UIPermissionWindow.AllWindows", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionWindow.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionWindow.cs" }, { "DocsId": "F:System.Security.Permissions.UIPermissionWindow.NoWindows", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionWindow.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionWindow.cs" }, { "DocsId": "F:System.Security.Permissions.UIPermissionWindow.SafeSubWindows", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionWindow.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionWindow.cs" }, { "DocsId": "F:System.Security.Permissions.UIPermissionWindow.SafeTopLevelWindows", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionWindow.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionWindow.cs" } ], "DocsId": "T:System.Security.Permissions.UIPermissionWindow", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionWindow.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionWindow.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.UrlIdentityPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UrlIdentityPermission.cs#L11C9-L11C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UrlIdentityPermission.cs#L11C9-L11C64" }, { "DocsId": "M:System.Security.Permissions.UrlIdentityPermission.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UrlIdentityPermission.cs#L12C9-L12C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UrlIdentityPermission.cs#L12C9-L12C54" }, { "DocsId": "M:System.Security.Permissions.UrlIdentityPermission.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UrlIdentityPermission.cs#L14C46-L14C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UrlIdentityPermission.cs#L14C46-L14C74" }, { "DocsId": "M:System.Security.Permissions.UrlIdentityPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UrlIdentityPermission.cs#L15C61-L15C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UrlIdentityPermission.cs#L15C61-L15C62" }, { "DocsId": "M:System.Security.Permissions.UrlIdentityPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UrlIdentityPermission.cs#L16C69-L16C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UrlIdentityPermission.cs#L16C69-L16C97" }, { "DocsId": "M:System.Security.Permissions.UrlIdentityPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UrlIdentityPermission.cs#L17C63-L17C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UrlIdentityPermission.cs#L17C63-L17C76" }, { "DocsId": "M:System.Security.Permissions.UrlIdentityPermission.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UrlIdentityPermission.cs#L18C51-L18C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UrlIdentityPermission.cs#L18C51-L18C83" }, { "DocsId": "M:System.Security.Permissions.UrlIdentityPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UrlIdentityPermission.cs#L19C65-L19C93" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UrlIdentityPermission.cs#L19C65-L19C93" }, { "DocsId": "P:System.Security.Permissions.UrlIdentityPermission.Url", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UrlIdentityPermission.cs#L13C29-L13C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UrlIdentityPermission.cs#L13C29-L13C33" } ], "DocsId": "T:System.Security.Permissions.UrlIdentityPermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UrlIdentityPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UrlIdentityPermission.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.UrlIdentityPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UrlIdentityPermissionAttribute.cs#L12C72-L12C105" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UrlIdentityPermissionAttribute.cs#L12C72-L12C105" }, { "DocsId": "M:System.Security.Permissions.UrlIdentityPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UrlIdentityPermissionAttribute.cs#L14C58-L14C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UrlIdentityPermissionAttribute.cs#L14C58-L14C86" }, { "DocsId": "P:System.Security.Permissions.UrlIdentityPermissionAttribute.Url", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UrlIdentityPermissionAttribute.cs#L13C29-L13C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UrlIdentityPermissionAttribute.cs#L13C29-L13C33" } ], "DocsId": "T:System.Security.Permissions.UrlIdentityPermissionAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UrlIdentityPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UrlIdentityPermissionAttribute.cs" }, { "Members": [ { "DocsId": "F:System.Security.Permissions.WebBrowserPermissionLevel.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs" }, { "DocsId": "F:System.Security.Permissions.WebBrowserPermissionLevel.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs" }, { "DocsId": "F:System.Security.Permissions.WebBrowserPermissionLevel.Safe", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs" }, { "DocsId": "F:System.Security.Permissions.WebBrowserPermissionLevel.Unrestricted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs" } ], "DocsId": "T:System.Security.Permissions.WebBrowserPermissionLevel", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.WebBrowserPermission.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs#L20C9-L20C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs#L20C9-L20C42" }, { "DocsId": "M:System.Security.Permissions.WebBrowserPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs#L21C9-L21C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs#L21C9-L21C63" }, { "DocsId": "M:System.Security.Permissions.WebBrowserPermission.#ctor(System.Security.Permissions.WebBrowserPermissionLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs#L22C9-L22C93" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs#L22C9-L22C93" }, { "DocsId": "M:System.Security.Permissions.WebBrowserPermission.IsUnrestricted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs#L23C40-L23C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs#L23C40-L23C52" }, { "DocsId": "M:System.Security.Permissions.WebBrowserPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs#L24C63-L24C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs#L24C63-L24C75" }, { "DocsId": "M:System.Security.Permissions.WebBrowserPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs#L25C69-L25C103" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs#L25C69-L25C103" }, { "DocsId": "M:System.Security.Permissions.WebBrowserPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs#L26C65-L26C99" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs#L26C65-L26C99" }, { "DocsId": "M:System.Security.Permissions.WebBrowserPermission.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs#L27C46-L27C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs#L27C46-L27C80" }, { "DocsId": "M:System.Security.Permissions.WebBrowserPermission.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs#L28C51-L28C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs#L28C51-L28C83" }, { "DocsId": "M:System.Security.Permissions.WebBrowserPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs#L29C73-L29C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs#L29C73-L29C74" }, { "DocsId": "P:System.Security.Permissions.WebBrowserPermission.Level", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs#L30C56-L30C102" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs#L30C56-L30C102" } ], "DocsId": "T:System.Security.Permissions.WebBrowserPermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.WebBrowserPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs#L39C71-L39C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs#L39C71-L39C87" }, { "DocsId": "M:System.Security.Permissions.WebBrowserPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs#L40C58-L40C92" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs#L40C58-L40C92" }, { "DocsId": "P:System.Security.Permissions.WebBrowserPermissionAttribute.Level", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs#L41C56-L41C102" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs#L41C56-L41C102" } ], "DocsId": "T:System.Security.Permissions.WebBrowserPermissionAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.ZoneIdentityPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ZoneIdentityPermission.cs#L11C9-L11C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ZoneIdentityPermission.cs#L11C9-L11C65" }, { "DocsId": "M:System.Security.Permissions.ZoneIdentityPermission.#ctor(System.Security.SecurityZone)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ZoneIdentityPermission.cs#L12C9-L12C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ZoneIdentityPermission.cs#L12C9-L12C61" }, { "DocsId": "M:System.Security.Permissions.ZoneIdentityPermission.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ZoneIdentityPermission.cs#L14C46-L14C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ZoneIdentityPermission.cs#L14C46-L14C58" }, { "DocsId": "M:System.Security.Permissions.ZoneIdentityPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ZoneIdentityPermission.cs#L15C61-L15C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ZoneIdentityPermission.cs#L15C61-L15C62" }, { "DocsId": "M:System.Security.Permissions.ZoneIdentityPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ZoneIdentityPermission.cs#L16C69-L16C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ZoneIdentityPermission.cs#L16C69-L16C97" }, { "DocsId": "M:System.Security.Permissions.ZoneIdentityPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ZoneIdentityPermission.cs#L17C63-L17C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ZoneIdentityPermission.cs#L17C63-L17C76" }, { "DocsId": "M:System.Security.Permissions.ZoneIdentityPermission.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ZoneIdentityPermission.cs#L18C51-L18C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ZoneIdentityPermission.cs#L18C51-L18C83" }, { "DocsId": "M:System.Security.Permissions.ZoneIdentityPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ZoneIdentityPermission.cs#L19C65-L19C93" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ZoneIdentityPermission.cs#L19C65-L19C93" }, { "DocsId": "P:System.Security.Permissions.ZoneIdentityPermission.SecurityZone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ZoneIdentityPermission.cs#L13C44-L13C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ZoneIdentityPermission.cs#L13C44-L13C48" } ], "DocsId": "T:System.Security.Permissions.ZoneIdentityPermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ZoneIdentityPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ZoneIdentityPermission.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.ZoneIdentityPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ZoneIdentityPermissionAttribute.cs#L12C73-L12C106" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ZoneIdentityPermissionAttribute.cs#L12C73-L12C106" }, { "DocsId": "M:System.Security.Permissions.ZoneIdentityPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ZoneIdentityPermissionAttribute.cs#L14C58-L14C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ZoneIdentityPermissionAttribute.cs#L14C58-L14C86" }, { "DocsId": "P:System.Security.Permissions.ZoneIdentityPermissionAttribute.Zone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ZoneIdentityPermissionAttribute.cs#L13C36-L13C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ZoneIdentityPermissionAttribute.cs#L13C36-L13C40" } ], "DocsId": "T:System.Security.Permissions.ZoneIdentityPermissionAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ZoneIdentityPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ZoneIdentityPermissionAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Net.DnsPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/DnsPermission.cs#L14C9-L14C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/DnsPermission.cs#L14C9-L14C56" }, { "DocsId": "M:System.Net.DnsPermission.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/DnsPermission.cs#L15C46-L15C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/DnsPermission.cs#L15C46-L15C58" }, { "DocsId": "M:System.Net.DnsPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/DnsPermission.cs#L16C73-L16C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/DnsPermission.cs#L16C73-L16C74" }, { "DocsId": "M:System.Net.DnsPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/DnsPermission.cs#L17C69-L17C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/DnsPermission.cs#L17C69-L17C81" }, { "DocsId": "M:System.Net.DnsPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/DnsPermission.cs#L18C64-L18C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/DnsPermission.cs#L18C64-L18C69" }, { "DocsId": "M:System.Net.DnsPermission.IsUnrestricted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/DnsPermission.cs#L19C41-L19C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/DnsPermission.cs#L19C41-L19C46" }, { "DocsId": "M:System.Net.DnsPermission.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/DnsPermission.cs#L20C51-L20C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/DnsPermission.cs#L20C51-L20C63" }, { "DocsId": "M:System.Net.DnsPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/DnsPermission.cs#L21C65-L21C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/DnsPermission.cs#L21C65-L21C77" } ], "DocsId": "T:System.Net.DnsPermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/DnsPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/DnsPermission.cs" }, { "Members": [ { "DocsId": "M:System.Net.DnsPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/DnsPermissionAttribute.cs#L16C64-L16C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/DnsPermissionAttribute.cs#L16C64-L16C80" }, { "DocsId": "M:System.Net.DnsPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/DnsPermissionAttribute.cs#L17C58-L17C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/DnsPermissionAttribute.cs#L17C58-L17C70" } ], "DocsId": "T:System.Net.DnsPermissionAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/DnsPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/DnsPermissionAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Net.EndpointPermission.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/EndpointPermission.cs#L12C51-L12C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/EndpointPermission.cs#L12C51-L12C64" }, { "DocsId": "M:System.Net.EndpointPermission.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/EndpointPermission.cs#L13C45-L13C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/EndpointPermission.cs#L13C45-L13C54" }, { "DocsId": "P:System.Net.EndpointPermission.Hostname", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/EndpointPermission.cs#L9C40-L9C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/EndpointPermission.cs#L9C40-L9C52" }, { "DocsId": "P:System.Net.EndpointPermission.Port", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/EndpointPermission.cs#L10C33-L10C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/EndpointPermission.cs#L10C33-L10C42" }, { "DocsId": "P:System.Net.EndpointPermission.Transport", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/EndpointPermission.cs#L11C42-L11C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/EndpointPermission.cs#L11C42-L11C46" } ], "DocsId": "T:System.Net.EndpointPermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/EndpointPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/EndpointPermission.cs" }, { "Members": [ { "DocsId": "F:System.Net.NetworkAccess.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/NetworkAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/NetworkAccess.cs" }, { "DocsId": "F:System.Net.NetworkAccess.Accept", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/NetworkAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/NetworkAccess.cs" }, { "DocsId": "F:System.Net.NetworkAccess.Connect", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/NetworkAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/NetworkAccess.cs" } ], "DocsId": "T:System.Net.NetworkAccess", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/NetworkAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/NetworkAccess.cs" }, { "Members": [ { "DocsId": "M:System.Net.SocketPermission.#ctor(System.Net.NetworkAccess,System.Net.TransportType,System.String,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/SocketPermission.cs#L15C9-L15C116" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/SocketPermission.cs#L15C9-L15C116" }, { "DocsId": "M:System.Net.SocketPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/SocketPermission.cs#L16C9-L16C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/SocketPermission.cs#L16C9-L16C59" }, { "DocsId": "M:System.Net.SocketPermission.AddPermission(System.Net.NetworkAccess,System.Net.TransportType,System.String,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/SocketPermission.cs#L19C117-L19C118" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/SocketPermission.cs#L19C117-L19C118" }, { "DocsId": "M:System.Net.SocketPermission.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/SocketPermission.cs#L20C46-L20C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/SocketPermission.cs#L20C46-L20C58" }, { "DocsId": "M:System.Net.SocketPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/SocketPermission.cs#L21C73-L21C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/SocketPermission.cs#L21C73-L21C74" }, { "DocsId": "M:System.Net.SocketPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/SocketPermission.cs#L22C69-L22C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/SocketPermission.cs#L22C69-L22C81" }, { "DocsId": "M:System.Net.SocketPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/SocketPermission.cs#L23C64-L23C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/SocketPermission.cs#L23C64-L23C69" }, { "DocsId": "M:System.Net.SocketPermission.IsUnrestricted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/SocketPermission.cs#L24C41-L24C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/SocketPermission.cs#L24C41-L24C46" }, { "DocsId": "M:System.Net.SocketPermission.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/SocketPermission.cs#L25C51-L25C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/SocketPermission.cs#L25C51-L25C63" }, { "DocsId": "M:System.Net.SocketPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/SocketPermission.cs#L26C65-L26C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/SocketPermission.cs#L26C65-L26C77" }, { "DocsId": "F:System.Net.SocketPermission.AllPorts", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/SocketPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/SocketPermission.cs" }, { "DocsId": "P:System.Net.SocketPermission.AcceptList", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/SocketPermission.cs#L17C66-L17C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/SocketPermission.cs#L17C66-L17C78" }, { "DocsId": "P:System.Net.SocketPermission.ConnectList", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/SocketPermission.cs#L18C67-L18C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/SocketPermission.cs#L18C67-L18C79" } ], "DocsId": "T:System.Net.SocketPermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/SocketPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/SocketPermission.cs" }, { "Members": [ { "DocsId": "M:System.Net.SocketPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/SocketPermissionAttribute.cs#L16C67-L16C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/SocketPermissionAttribute.cs#L16C67-L16C83" }, { "DocsId": "M:System.Net.SocketPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/SocketPermissionAttribute.cs#L21C58-L21C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/SocketPermissionAttribute.cs#L21C58-L21C70" }, { "DocsId": "P:System.Net.SocketPermissionAttribute.Access", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/SocketPermissionAttribute.cs#L17C38-L17C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/SocketPermissionAttribute.cs#L17C38-L17C50" }, { "DocsId": "P:System.Net.SocketPermissionAttribute.Host", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/SocketPermissionAttribute.cs#L18C36-L18C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/SocketPermissionAttribute.cs#L18C36-L18C48" }, { "DocsId": "P:System.Net.SocketPermissionAttribute.Port", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/SocketPermissionAttribute.cs#L19C36-L19C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/SocketPermissionAttribute.cs#L19C36-L19C48" }, { "DocsId": "P:System.Net.SocketPermissionAttribute.Transport", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/SocketPermissionAttribute.cs#L20C41-L20C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/SocketPermissionAttribute.cs#L20C41-L20C53" } ], "DocsId": "T:System.Net.SocketPermissionAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/SocketPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/SocketPermissionAttribute.cs" }, { "Members": [ { "DocsId": "F:System.Net.TransportType.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/TransportType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/TransportType.cs" }, { "DocsId": "F:System.Net.TransportType.All", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/TransportType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/TransportType.cs" }, { "DocsId": "F:System.Net.TransportType.Connectionless", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/TransportType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/TransportType.cs" }, { "DocsId": "F:System.Net.TransportType.ConnectionOriented", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/TransportType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/TransportType.cs" }, { "DocsId": "F:System.Net.TransportType.Tcp", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/TransportType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/TransportType.cs" }, { "DocsId": "F:System.Net.TransportType.Udp", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/TransportType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/TransportType.cs" } ], "DocsId": "T:System.Net.TransportType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/TransportType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/TransportType.cs" }, { "Members": [ { "DocsId": "M:System.Net.WebPermission.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs#L16C9-L16C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs#L16C9-L16C35" }, { "DocsId": "M:System.Net.WebPermission.#ctor(System.Net.NetworkAccess,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs#L17C9-L17C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs#L17C9-L17C73" }, { "DocsId": "M:System.Net.WebPermission.#ctor(System.Net.NetworkAccess,System.Text.RegularExpressions.Regex)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs#L18C9-L18C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs#L18C9-L18C71" }, { "DocsId": "M:System.Net.WebPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs#L19C9-L19C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs#L19C9-L19C56" }, { "DocsId": "M:System.Net.WebPermission.AddPermission(System.Net.NetworkAccess,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs#L22C77-L22C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs#L22C77-L22C78" }, { "DocsId": "M:System.Net.WebPermission.AddPermission(System.Net.NetworkAccess,System.Text.RegularExpressions.Regex)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs#L23C75-L23C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs#L23C75-L23C76" }, { "DocsId": "M:System.Net.WebPermission.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs#L24C46-L24C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs#L24C46-L24C58" }, { "DocsId": "M:System.Net.WebPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs#L25C73-L25C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs#L25C73-L25C74" }, { "DocsId": "M:System.Net.WebPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs#L26C69-L26C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs#L26C69-L26C81" }, { "DocsId": "M:System.Net.WebPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs#L27C64-L27C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs#L27C64-L27C69" }, { "DocsId": "M:System.Net.WebPermission.IsUnrestricted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs#L28C41-L28C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs#L28C41-L28C46" }, { "DocsId": "M:System.Net.WebPermission.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs#L29C51-L29C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs#L29C51-L29C63" }, { "DocsId": "M:System.Net.WebPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs#L30C65-L30C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs#L30C65-L30C77" }, { "DocsId": "P:System.Net.WebPermission.AcceptList", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs#L20C47-L20C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs#L20C47-L20C59" }, { "DocsId": "P:System.Net.WebPermission.ConnectList", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs#L21C48-L21C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs#L21C48-L21C60" } ], "DocsId": "T:System.Net.WebPermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs" }, { "Members": [ { "DocsId": "M:System.Net.WebPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/WebPermissionAttribute.cs#L16C64-L16C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/WebPermissionAttribute.cs#L16C64-L16C80" }, { "DocsId": "M:System.Net.WebPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/WebPermissionAttribute.cs#L21C58-L21C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/WebPermissionAttribute.cs#L21C58-L21C70" }, { "DocsId": "P:System.Net.WebPermissionAttribute.Accept", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/WebPermissionAttribute.cs#L17C38-L17C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/WebPermissionAttribute.cs#L17C38-L17C50" }, { "DocsId": "P:System.Net.WebPermissionAttribute.AcceptPattern", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/WebPermissionAttribute.cs#L18C45-L18C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/WebPermissionAttribute.cs#L18C45-L18C57" }, { "DocsId": "P:System.Net.WebPermissionAttribute.Connect", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/WebPermissionAttribute.cs#L19C39-L19C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/WebPermissionAttribute.cs#L19C39-L19C51" }, { "DocsId": "P:System.Net.WebPermissionAttribute.ConnectPattern", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/WebPermissionAttribute.cs#L20C46-L20C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/WebPermissionAttribute.cs#L20C46-L20C58" } ], "DocsId": "T:System.Net.WebPermissionAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/WebPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/WebPermissionAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Net.PeerToPeer.PnrpPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpPermission.cs#L14C9-L14C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpPermission.cs#L14C9-L14C57" }, { "DocsId": "M:System.Net.PeerToPeer.PnrpPermission.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpPermission.cs#L15C46-L15C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpPermission.cs#L15C46-L15C58" }, { "DocsId": "M:System.Net.PeerToPeer.PnrpPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpPermission.cs#L16C59-L16C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpPermission.cs#L16C59-L16C60" }, { "DocsId": "M:System.Net.PeerToPeer.PnrpPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpPermission.cs#L17C69-L17C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpPermission.cs#L17C69-L17C81" }, { "DocsId": "M:System.Net.PeerToPeer.PnrpPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpPermission.cs#L18C64-L18C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpPermission.cs#L18C64-L18C69" }, { "DocsId": "M:System.Net.PeerToPeer.PnrpPermission.IsUnrestricted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpPermission.cs#L19C41-L19C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpPermission.cs#L19C41-L19C46" }, { "DocsId": "M:System.Net.PeerToPeer.PnrpPermission.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpPermission.cs#L20C51-L20C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpPermission.cs#L20C51-L20C63" }, { "DocsId": "M:System.Net.PeerToPeer.PnrpPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpPermission.cs#L21C65-L21C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpPermission.cs#L21C65-L21C77" } ], "DocsId": "T:System.Net.PeerToPeer.PnrpPermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpPermission.cs" }, { "Members": [ { "DocsId": "M:System.Net.PeerToPeer.PnrpPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpPermissionAttribute.cs#L16C65-L16C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpPermissionAttribute.cs#L16C65-L16C81" }, { "DocsId": "M:System.Net.PeerToPeer.PnrpPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpPermissionAttribute.cs#L17C58-L17C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpPermissionAttribute.cs#L17C58-L17C70" } ], "DocsId": "T:System.Net.PeerToPeer.PnrpPermissionAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpPermissionAttribute.cs" }, { "Members": [ { "DocsId": "F:System.Net.PeerToPeer.PnrpScope.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpScope.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpScope.cs" }, { "DocsId": "F:System.Net.PeerToPeer.PnrpScope.All", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpScope.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpScope.cs" }, { "DocsId": "F:System.Net.PeerToPeer.PnrpScope.Global", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpScope.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpScope.cs" }, { "DocsId": "F:System.Net.PeerToPeer.PnrpScope.LinkLocal", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpScope.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpScope.cs" }, { "DocsId": "F:System.Net.PeerToPeer.PnrpScope.SiteLocal", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpScope.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpScope.cs" } ], "DocsId": "T:System.Net.PeerToPeer.PnrpScope", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpScope.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpScope.cs" }, { "Members": [ { "DocsId": "M:System.Net.PeerToPeer.Collaboration.PeerCollaborationPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/Collaboration/PeerCollaborationPermission.cs#L14C9-L14C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/Collaboration/PeerCollaborationPermission.cs#L14C9-L14C70" }, { "DocsId": "M:System.Net.PeerToPeer.Collaboration.PeerCollaborationPermission.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/Collaboration/PeerCollaborationPermission.cs#L15C46-L15C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/Collaboration/PeerCollaborationPermission.cs#L15C46-L15C58" }, { "DocsId": "M:System.Net.PeerToPeer.Collaboration.PeerCollaborationPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/Collaboration/PeerCollaborationPermission.cs#L16C59-L16C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/Collaboration/PeerCollaborationPermission.cs#L16C59-L16C60" }, { "DocsId": "M:System.Net.PeerToPeer.Collaboration.PeerCollaborationPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/Collaboration/PeerCollaborationPermission.cs#L17C69-L17C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/Collaboration/PeerCollaborationPermission.cs#L17C69-L17C81" }, { "DocsId": "M:System.Net.PeerToPeer.Collaboration.PeerCollaborationPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/Collaboration/PeerCollaborationPermission.cs#L18C64-L18C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/Collaboration/PeerCollaborationPermission.cs#L18C64-L18C69" }, { "DocsId": "M:System.Net.PeerToPeer.Collaboration.PeerCollaborationPermission.IsUnrestricted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/Collaboration/PeerCollaborationPermission.cs#L19C41-L19C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/Collaboration/PeerCollaborationPermission.cs#L19C41-L19C46" }, { "DocsId": "M:System.Net.PeerToPeer.Collaboration.PeerCollaborationPermission.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/Collaboration/PeerCollaborationPermission.cs#L20C51-L20C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/Collaboration/PeerCollaborationPermission.cs#L20C51-L20C63" }, { "DocsId": "M:System.Net.PeerToPeer.Collaboration.PeerCollaborationPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/Collaboration/PeerCollaborationPermission.cs#L21C65-L21C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/Collaboration/PeerCollaborationPermission.cs#L21C65-L21C77" } ], "DocsId": "T:System.Net.PeerToPeer.Collaboration.PeerCollaborationPermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/Collaboration/PeerCollaborationPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/Collaboration/PeerCollaborationPermission.cs" }, { "Members": [ { "DocsId": "M:System.Net.PeerToPeer.Collaboration.PeerCollaborationPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/Collaboration/PeerCollaborationPermissionAttribute.cs#L16C78-L16C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/Collaboration/PeerCollaborationPermissionAttribute.cs#L16C78-L16C94" }, { "DocsId": "M:System.Net.PeerToPeer.Collaboration.PeerCollaborationPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/Collaboration/PeerCollaborationPermissionAttribute.cs#L17C58-L17C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/Collaboration/PeerCollaborationPermissionAttribute.cs#L17C58-L17C70" } ], "DocsId": "T:System.Net.PeerToPeer.Collaboration.PeerCollaborationPermissionAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/Collaboration/PeerCollaborationPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/Collaboration/PeerCollaborationPermissionAttribute.cs" }, { "Members": [ { "DocsId": "F:System.Net.NetworkInformation.NetworkInformationAccess.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationAccess.cs" }, { "DocsId": "F:System.Net.NetworkInformation.NetworkInformationAccess.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationAccess.cs" }, { "DocsId": "F:System.Net.NetworkInformation.NetworkInformationAccess.Read", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationAccess.cs" }, { "DocsId": "F:System.Net.NetworkInformation.NetworkInformationAccess.Ping", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationAccess.cs" } ], "DocsId": "T:System.Net.NetworkInformation.NetworkInformationAccess", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationAccess.cs" }, { "Members": [ { "DocsId": "M:System.Net.NetworkInformation.NetworkInformationPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermission.cs#L14C9-L14C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermission.cs#L14C9-L14C71" }, { "DocsId": "M:System.Net.NetworkInformation.NetworkInformationPermission.#ctor(System.Net.NetworkInformation.NetworkInformationAccess)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermission.cs#L15C9-L15C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermission.cs#L15C9-L15C81" }, { "DocsId": "M:System.Net.NetworkInformation.NetworkInformationPermission.AddPermission(System.Net.NetworkInformation.NetworkInformationAccess)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermission.cs#L17C70-L17C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermission.cs#L17C70-L17C71" }, { "DocsId": "M:System.Net.NetworkInformation.NetworkInformationPermission.IsUnrestricted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermission.cs#L18C41-L18C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermission.cs#L18C41-L18C45" }, { "DocsId": "M:System.Net.NetworkInformation.NetworkInformationPermission.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermission.cs#L19C47-L19C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermission.cs#L19C47-L19C51" }, { "DocsId": "M:System.Net.NetworkInformation.NetworkInformationPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermission.cs#L20C66-L20C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermission.cs#L20C66-L20C70" }, { "DocsId": "M:System.Net.NetworkInformation.NetworkInformationPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermission.cs#L21C70-L21C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermission.cs#L21C70-L21C74" }, { "DocsId": "M:System.Net.NetworkInformation.NetworkInformationPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermission.cs#L22C64-L22C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermission.cs#L22C64-L22C69" }, { "DocsId": "M:System.Net.NetworkInformation.NetworkInformationPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermission.cs#L23C73-L23C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermission.cs#L23C73-L23C74" }, { "DocsId": "M:System.Net.NetworkInformation.NetworkInformationPermission.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermission.cs#L24C52-L24C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermission.cs#L24C52-L24C56" }, { "DocsId": "P:System.Net.NetworkInformation.NetworkInformationPermission.Access", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermission.cs#L16C50-L16C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermission.cs#L16C50-L16C54" } ], "DocsId": "T:System.Net.NetworkInformation.NetworkInformationPermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermission.cs" }, { "Members": [ { "DocsId": "M:System.Net.NetworkInformation.NetworkInformationPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermissionAttribute.cs#L15C79-L15C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermissionAttribute.cs#L15C79-L15C95" }, { "DocsId": "M:System.Net.NetworkInformation.NetworkInformationPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermissionAttribute.cs#L17C59-L17C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermissionAttribute.cs#L17C59-L17C63" }, { "DocsId": "P:System.Net.NetworkInformation.NetworkInformationPermissionAttribute.Access", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermissionAttribute.cs#L16C32-L16C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermissionAttribute.cs#L16C32-L16C36" } ], "DocsId": "T:System.Net.NetworkInformation.NetworkInformationPermissionAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermissionAttribute.cs" }, { "Members": [ { "DocsId": "F:System.Net.Mail.SmtpAccess.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpAccess.cs" }, { "DocsId": "F:System.Net.Mail.SmtpAccess.Connect", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpAccess.cs" }, { "DocsId": "F:System.Net.Mail.SmtpAccess.ConnectToUnrestrictedPort", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpAccess.cs" }, { "DocsId": "F:System.Net.Mail.SmtpAccess.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpAccess.cs" } ], "DocsId": "T:System.Net.Mail.SmtpAccess", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpAccess.cs" }, { "Members": [ { "DocsId": "M:System.Net.Mail.SmtpPermission.#ctor(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermission.cs#L14C9-L14C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermission.cs#L14C9-L14C53" }, { "DocsId": "M:System.Net.Mail.SmtpPermission.#ctor(System.Net.Mail.SmtpAccess)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermission.cs#L15C9-L15C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermission.cs#L15C9-L15C53" }, { "DocsId": "M:System.Net.Mail.SmtpPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermission.cs#L16C9-L16C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermission.cs#L16C9-L16C57" }, { "DocsId": "M:System.Net.Mail.SmtpPermission.AddPermission(System.Net.Mail.SmtpAccess)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermission.cs#L18C56-L18C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermission.cs#L18C56-L18C57" }, { "DocsId": "M:System.Net.Mail.SmtpPermission.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermission.cs#L19C46-L19C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermission.cs#L19C46-L19C58" }, { "DocsId": "M:System.Net.Mail.SmtpPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermission.cs#L20C73-L20C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermission.cs#L20C73-L20C74" }, { "DocsId": "M:System.Net.Mail.SmtpPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermission.cs#L21C69-L21C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermission.cs#L21C69-L21C81" }, { "DocsId": "M:System.Net.Mail.SmtpPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermission.cs#L22C64-L22C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermission.cs#L22C64-L22C69" }, { "DocsId": "M:System.Net.Mail.SmtpPermission.IsUnrestricted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermission.cs#L23C41-L23C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermission.cs#L23C41-L23C46" }, { "DocsId": "M:System.Net.Mail.SmtpPermission.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermission.cs#L24C51-L24C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermission.cs#L24C51-L24C63" }, { "DocsId": "M:System.Net.Mail.SmtpPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermission.cs#L25C65-L25C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermission.cs#L25C65-L25C77" }, { "DocsId": "P:System.Net.Mail.SmtpPermission.Access", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermission.cs#L17C36-L17C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermission.cs#L17C36-L17C40" } ], "DocsId": "T:System.Net.Mail.SmtpPermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermission.cs" }, { "Members": [ { "DocsId": "M:System.Net.Mail.SmtpPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermissionAttribute.cs#L16C65-L16C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermissionAttribute.cs#L16C65-L16C81" }, { "DocsId": "M:System.Net.Mail.SmtpPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermissionAttribute.cs#L18C58-L18C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermissionAttribute.cs#L18C58-L18C70" }, { "DocsId": "P:System.Net.Mail.SmtpPermissionAttribute.Access", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermissionAttribute.cs#L17C38-L17C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermissionAttribute.cs#L17C38-L17C50" } ], "DocsId": "T:System.Net.Mail.SmtpPermissionAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermissionAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.PrintingPermission.#ctor(System.Drawing.Printing.PrintingPermissionLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermission.cs#L14C9-L14C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermission.cs#L14C9-L14C77" }, { "DocsId": "M:System.Drawing.Printing.PrintingPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermission.cs#L15C9-L15C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermission.cs#L15C9-L15C61" }, { "DocsId": "M:System.Drawing.Printing.PrintingPermission.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermission.cs#L17C47-L17C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermission.cs#L17C47-L17C51" }, { "DocsId": "M:System.Drawing.Printing.PrintingPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermission.cs#L18C65-L18C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermission.cs#L18C65-L18C66" }, { "DocsId": "M:System.Drawing.Printing.PrintingPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermission.cs#L19C70-L19C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermission.cs#L19C70-L19C74" }, { "DocsId": "M:System.Drawing.Printing.PrintingPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermission.cs#L20C64-L20C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermission.cs#L20C64-L20C69" }, { "DocsId": "M:System.Drawing.Printing.PrintingPermission.IsUnrestricted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermission.cs#L21C41-L21C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermission.cs#L21C41-L21C46" }, { "DocsId": "M:System.Drawing.Printing.PrintingPermission.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermission.cs#L22C52-L22C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermission.cs#L22C52-L22C56" }, { "DocsId": "M:System.Drawing.Printing.PrintingPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermission.cs#L23C66-L23C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermission.cs#L23C66-L23C70" }, { "DocsId": "P:System.Drawing.Printing.PrintingPermission.Level", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermission.cs#L16C48-L16C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermission.cs#L16C48-L16C52" } ], "DocsId": "T:System.Drawing.Printing.PrintingPermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermission.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.PrintingPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermissionAttribute.cs#L14C69-L14C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermissionAttribute.cs#L14C69-L14C85" }, { "DocsId": "M:System.Drawing.Printing.PrintingPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermissionAttribute.cs#L16C74-L16C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermissionAttribute.cs#L16C74-L16C86" }, { "DocsId": "P:System.Drawing.Printing.PrintingPermissionAttribute.Level", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermissionAttribute.cs#L15C48-L15C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermissionAttribute.cs#L15C48-L15C52" } ], "DocsId": "T:System.Drawing.Printing.PrintingPermissionAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermissionAttribute.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Printing.PrintingPermissionLevel.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermissionLevel.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermissionLevel.cs" }, { "DocsId": "F:System.Drawing.Printing.PrintingPermissionLevel.AllPrinting", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermissionLevel.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermissionLevel.cs" }, { "DocsId": "F:System.Drawing.Printing.PrintingPermissionLevel.DefaultPrinting", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermissionLevel.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermissionLevel.cs" }, { "DocsId": "F:System.Drawing.Printing.PrintingPermissionLevel.NoPrinting", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermissionLevel.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermissionLevel.cs" }, { "DocsId": "F:System.Drawing.Printing.PrintingPermissionLevel.SafePrinting", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermissionLevel.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermissionLevel.cs" } ], "DocsId": "T:System.Drawing.Printing.PrintingPermissionLevel", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermissionLevel.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermissionLevel.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.DirectoryServicesPermission.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermission.cs#L11C9-L11C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermission.cs#L11C9-L11C49" }, { "DocsId": "M:System.DirectoryServices.DirectoryServicesPermission.#ctor(System.DirectoryServices.DirectoryServicesPermissionEntry[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermission.cs#L12C9-L12C108" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermission.cs#L12C9-L12C108" }, { "DocsId": "M:System.DirectoryServices.DirectoryServicesPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermission.cs#L13C9-L13C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermission.cs#L13C9-L13C70" }, { "DocsId": "M:System.DirectoryServices.DirectoryServicesPermission.#ctor(System.DirectoryServices.DirectoryServicesPermissionAccess,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermission.cs#L14C9-L14C113" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermission.cs#L14C9-L14C113" }, { "DocsId": "P:System.DirectoryServices.DirectoryServicesPermission.PermissionEntries", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermission.cs#L15C80-L15C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermission.cs#L15C80-L15C84" } ], "DocsId": "T:System.DirectoryServices.DirectoryServicesPermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermission.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.DirectoryServicesPermissionAccess.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionAccess.cs" }, { "DocsId": "F:System.DirectoryServices.DirectoryServicesPermissionAccess.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionAccess.cs" }, { "DocsId": "F:System.DirectoryServices.DirectoryServicesPermissionAccess.Browse", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionAccess.cs" }, { "DocsId": "F:System.DirectoryServices.DirectoryServicesPermissionAccess.Write", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionAccess.cs" } ], "DocsId": "T:System.DirectoryServices.DirectoryServicesPermissionAccess", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionAccess.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.DirectoryServicesPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionAttribute.cs#L15C78-L15C111" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionAttribute.cs#L15C78-L15C111" }, { "DocsId": "M:System.DirectoryServices.DirectoryServicesPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionAttribute.cs#L18C59-L18C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionAttribute.cs#L18C59-L18C87" }, { "DocsId": "P:System.DirectoryServices.DirectoryServicesPermissionAttribute.PermissionAccess", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionAttribute.cs#L16C69-L16C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionAttribute.cs#L16C69-L16C73" }, { "DocsId": "P:System.DirectoryServices.DirectoryServicesPermissionAttribute.Path", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionAttribute.cs#L17C31-L17C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionAttribute.cs#L17C31-L17C35" } ], "DocsId": "T:System.DirectoryServices.DirectoryServicesPermissionAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionAttribute.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.DirectoryServicesPermissionEntry.#ctor(System.DirectoryServices.DirectoryServicesPermissionAccess,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntry.cs#L8C9-L8C118" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntry.cs#L8C9-L8C118" }, { "DocsId": "P:System.DirectoryServices.DirectoryServicesPermissionEntry.Path", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntry.cs#L9C31-L9C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntry.cs#L9C31-L9C35" }, { "DocsId": "P:System.DirectoryServices.DirectoryServicesPermissionEntry.PermissionAccess", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntry.cs#L10C69-L10C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntry.cs#L10C69-L10C73" } ], "DocsId": "T:System.DirectoryServices.DirectoryServicesPermissionEntry", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntry.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntry.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.DirectoryServicesPermissionEntryCollection.Add(System.DirectoryServices.DirectoryServicesPermissionEntry)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntryCollection.cs#L12C66-L12C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntryCollection.cs#L12C66-L12C75" }, { "DocsId": "M:System.DirectoryServices.DirectoryServicesPermissionEntryCollection.AddRange(System.DirectoryServices.DirectoryServicesPermissionEntryCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntryCollection.cs#L13C82-L13C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntryCollection.cs#L13C82-L13C83" }, { "DocsId": "M:System.DirectoryServices.DirectoryServicesPermissionEntryCollection.AddRange(System.DirectoryServices.DirectoryServicesPermissionEntry[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntryCollection.cs#L14C74-L14C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntryCollection.cs#L14C74-L14C75" }, { "DocsId": "M:System.DirectoryServices.DirectoryServicesPermissionEntryCollection.Contains(System.DirectoryServices.DirectoryServicesPermissionEntry)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntryCollection.cs#L15C72-L15C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntryCollection.cs#L15C72-L15C85" }, { "DocsId": "M:System.DirectoryServices.DirectoryServicesPermissionEntryCollection.CopyTo(System.DirectoryServices.DirectoryServicesPermissionEntry[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntryCollection.cs#L16C83-L16C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntryCollection.cs#L16C83-L16C84" }, { "DocsId": "M:System.DirectoryServices.DirectoryServicesPermissionEntryCollection.IndexOf(System.DirectoryServices.DirectoryServicesPermissionEntry)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntryCollection.cs#L17C70-L17C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntryCollection.cs#L17C70-L17C79" }, { "DocsId": "M:System.DirectoryServices.DirectoryServicesPermissionEntryCollection.Insert(System.Int32,System.DirectoryServices.DirectoryServicesPermissionEntry)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntryCollection.cs#L18C81-L18C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntryCollection.cs#L18C81-L18C82" }, { "DocsId": "M:System.DirectoryServices.DirectoryServicesPermissionEntryCollection.OnClear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntryCollection.cs#L19C45-L19C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntryCollection.cs#L19C45-L19C46" }, { "DocsId": "M:System.DirectoryServices.DirectoryServicesPermissionEntryCollection.OnInsert(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntryCollection.cs#L20C70-L20C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntryCollection.cs#L20C70-L20C71" }, { "DocsId": "M:System.DirectoryServices.DirectoryServicesPermissionEntryCollection.OnRemove(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntryCollection.cs#L21C70-L21C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntryCollection.cs#L21C70-L21C71" }, { "DocsId": "M:System.DirectoryServices.DirectoryServicesPermissionEntryCollection.OnSet(System.Int32,System.Object,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntryCollection.cs#L22C88-L22C89" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntryCollection.cs#L22C88-L22C89" }, { "DocsId": "M:System.DirectoryServices.DirectoryServicesPermissionEntryCollection.Remove(System.DirectoryServices.DirectoryServicesPermissionEntry)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntryCollection.cs#L23C71-L23C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntryCollection.cs#L23C71-L23C72" }, { "DocsId": "P:System.DirectoryServices.DirectoryServicesPermissionEntryCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntryCollection.cs#L11C74-L11C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntryCollection.cs#L11C74-L11C86" } ], "DocsId": "T:System.DirectoryServices.DirectoryServicesPermissionEntryCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntryCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntryCollection.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.EventLogPermission.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermission.cs#L13C9-L13C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermission.cs#L13C9-L13C40" }, { "DocsId": "M:System.Diagnostics.EventLogPermission.#ctor(System.Diagnostics.EventLogPermissionAccess,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermission.cs#L14C9-L14C101" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermission.cs#L14C9-L14C101" }, { "DocsId": "M:System.Diagnostics.EventLogPermission.#ctor(System.Diagnostics.EventLogPermissionEntry[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermission.cs#L15C9-L15C89" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermission.cs#L15C9-L15C89" }, { "DocsId": "M:System.Diagnostics.EventLogPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermission.cs#L16C9-L16C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermission.cs#L16C9-L16C61" }, { "DocsId": "P:System.Diagnostics.EventLogPermission.PermissionEntries", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermission.cs#L17C70-L17C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermission.cs#L17C70-L17C74" } ], "DocsId": "T:System.Diagnostics.EventLogPermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermission.cs" }, { "Members": [ { "DocsId": "F:System.Diagnostics.EventLogPermissionAccess.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionAccess.cs" }, { "DocsId": "F:System.Diagnostics.EventLogPermissionAccess.Administer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionAccess.cs" }, { "DocsId": "F:System.Diagnostics.EventLogPermissionAccess.Audit", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionAccess.cs" }, { "DocsId": "F:System.Diagnostics.EventLogPermissionAccess.Browse", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionAccess.cs" }, { "DocsId": "F:System.Diagnostics.EventLogPermissionAccess.Instrument", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionAccess.cs" }, { "DocsId": "F:System.Diagnostics.EventLogPermissionAccess.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionAccess.cs" }, { "DocsId": "F:System.Diagnostics.EventLogPermissionAccess.Write", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionAccess.cs" } ], "DocsId": "T:System.Diagnostics.EventLogPermissionAccess", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionAccess.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.EventLogPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionAttribute.cs#L16C69-L16C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionAttribute.cs#L16C69-L16C85" }, { "DocsId": "M:System.Diagnostics.EventLogPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionAttribute.cs#L19C58-L19C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionAttribute.cs#L19C58-L19C70" }, { "DocsId": "P:System.Diagnostics.EventLogPermissionAttribute.MachineName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionAttribute.cs#L17C43-L17C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionAttribute.cs#L17C43-L17C55" }, { "DocsId": "P:System.Diagnostics.EventLogPermissionAttribute.PermissionAccess", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionAttribute.cs#L18C60-L18C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionAttribute.cs#L18C60-L18C64" } ], "DocsId": "T:System.Diagnostics.EventLogPermissionAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.EventLogPermissionEntry.#ctor(System.Diagnostics.EventLogPermissionAccess,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntry.cs#L8C9-L8C106" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntry.cs#L8C9-L8C106" }, { "DocsId": "P:System.Diagnostics.EventLogPermissionEntry.MachineName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntry.cs#L9C43-L9C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntry.cs#L9C43-L9C55" }, { "DocsId": "P:System.Diagnostics.EventLogPermissionEntry.PermissionAccess", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntry.cs#L10C60-L10C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntry.cs#L10C60-L10C64" } ], "DocsId": "T:System.Diagnostics.EventLogPermissionEntry", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntry.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntry.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.EventLogPermissionEntryCollection.Add(System.Diagnostics.EventLogPermissionEntry)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntryCollection.cs#L12C57-L12C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntryCollection.cs#L12C57-L12C66" }, { "DocsId": "M:System.Diagnostics.EventLogPermissionEntryCollection.AddRange(System.Diagnostics.EventLogPermissionEntryCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntryCollection.cs#L13C73-L13C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntryCollection.cs#L13C73-L13C74" }, { "DocsId": "M:System.Diagnostics.EventLogPermissionEntryCollection.AddRange(System.Diagnostics.EventLogPermissionEntry[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntryCollection.cs#L14C65-L14C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntryCollection.cs#L14C65-L14C66" }, { "DocsId": "M:System.Diagnostics.EventLogPermissionEntryCollection.Contains(System.Diagnostics.EventLogPermissionEntry)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntryCollection.cs#L15C63-L15C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntryCollection.cs#L15C63-L15C76" }, { "DocsId": "M:System.Diagnostics.EventLogPermissionEntryCollection.CopyTo(System.Diagnostics.EventLogPermissionEntry[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntryCollection.cs#L16C74-L16C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntryCollection.cs#L16C74-L16C75" }, { "DocsId": "M:System.Diagnostics.EventLogPermissionEntryCollection.IndexOf(System.Diagnostics.EventLogPermissionEntry)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntryCollection.cs#L17C61-L17C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntryCollection.cs#L17C61-L17C70" }, { "DocsId": "M:System.Diagnostics.EventLogPermissionEntryCollection.Insert(System.Int32,System.Diagnostics.EventLogPermissionEntry)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntryCollection.cs#L18C72-L18C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntryCollection.cs#L18C72-L18C73" }, { "DocsId": "M:System.Diagnostics.EventLogPermissionEntryCollection.OnClear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntryCollection.cs#L19C45-L19C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntryCollection.cs#L19C45-L19C46" }, { "DocsId": "M:System.Diagnostics.EventLogPermissionEntryCollection.OnInsert(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntryCollection.cs#L20C69-L20C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntryCollection.cs#L20C69-L20C70" }, { "DocsId": "M:System.Diagnostics.EventLogPermissionEntryCollection.OnRemove(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntryCollection.cs#L21C69-L21C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntryCollection.cs#L21C69-L21C70" }, { "DocsId": "M:System.Diagnostics.EventLogPermissionEntryCollection.OnSet(System.Int32,System.Object,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntryCollection.cs#L22C86-L22C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntryCollection.cs#L22C86-L22C87" }, { "DocsId": "M:System.Diagnostics.EventLogPermissionEntryCollection.Remove(System.Diagnostics.EventLogPermissionEntry)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntryCollection.cs#L23C61-L23C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntryCollection.cs#L23C61-L23C62" }, { "DocsId": "P:System.Diagnostics.EventLogPermissionEntryCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntryCollection.cs#L11C64-L11C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntryCollection.cs#L11C64-L11C76" } ], "DocsId": "T:System.Diagnostics.EventLogPermissionEntryCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntryCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntryCollection.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.PerformanceCounterPermission.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermission.cs#L13C9-L13C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermission.cs#L13C9-L13C50" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterPermission.#ctor(System.Diagnostics.PerformanceCounterPermissionAccess,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermission.cs#L14C9-L14C142" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermission.cs#L14C9-L14C142" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterPermission.#ctor(System.Diagnostics.PerformanceCounterPermissionEntry[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermission.cs#L15C9-L15C109" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermission.cs#L15C9-L15C109" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermission.cs#L16C9-L16C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermission.cs#L16C9-L16C71" }, { "DocsId": "P:System.Diagnostics.PerformanceCounterPermission.PermissionEntries", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermission.cs#L17C86-L17C98" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermission.cs#L17C86-L17C98" } ], "DocsId": "T:System.Diagnostics.PerformanceCounterPermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermission.cs" }, { "Members": [ { "DocsId": "F:System.Diagnostics.PerformanceCounterPermissionAccess.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionAccess.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterPermissionAccess.Administer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionAccess.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterPermissionAccess.Browse", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionAccess.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterPermissionAccess.Instrument", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionAccess.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterPermissionAccess.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionAccess.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterPermissionAccess.Read", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionAccess.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterPermissionAccess.Write", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionAccess.cs" } ], "DocsId": "T:System.Diagnostics.PerformanceCounterPermissionAccess", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionAccess.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.PerformanceCounterPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionAttribute.cs#L15C79-L15C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionAttribute.cs#L15C79-L15C95" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionAttribute.cs#L19C58-L19C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionAttribute.cs#L19C58-L19C70" }, { "DocsId": "P:System.Diagnostics.PerformanceCounterPermissionAttribute.CategoryName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionAttribute.cs#L16C44-L16C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionAttribute.cs#L16C44-L16C56" }, { "DocsId": "P:System.Diagnostics.PerformanceCounterPermissionAttribute.MachineName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionAttribute.cs#L17C43-L17C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionAttribute.cs#L17C43-L17C55" }, { "DocsId": "P:System.Diagnostics.PerformanceCounterPermissionAttribute.PermissionAccess", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionAttribute.cs#L18C70-L18C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionAttribute.cs#L18C70-L18C74" } ], "DocsId": "T:System.Diagnostics.PerformanceCounterPermissionAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.PerformanceCounterPermissionEntry.#ctor(System.Diagnostics.PerformanceCounterPermissionAccess,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntry.cs#L8C9-L8C147" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntry.cs#L8C9-L8C147" }, { "DocsId": "P:System.Diagnostics.PerformanceCounterPermissionEntry.CategoryName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntry.cs#L9C44-L9C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntry.cs#L9C44-L9C56" }, { "DocsId": "P:System.Diagnostics.PerformanceCounterPermissionEntry.MachineName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntry.cs#L10C43-L10C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntry.cs#L10C43-L10C55" }, { "DocsId": "P:System.Diagnostics.PerformanceCounterPermissionEntry.PermissionAccess", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntry.cs#L11C70-L11C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntry.cs#L11C70-L11C74" } ], "DocsId": "T:System.Diagnostics.PerformanceCounterPermissionEntry", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntry.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntry.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.PerformanceCounterPermissionEntryCollection.Add(System.Diagnostics.PerformanceCounterPermissionEntry)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntryCollection.cs#L12C67-L12C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntryCollection.cs#L12C67-L12C76" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterPermissionEntryCollection.AddRange(System.Diagnostics.PerformanceCounterPermissionEntryCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntryCollection.cs#L13C83-L13C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntryCollection.cs#L13C83-L13C84" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterPermissionEntryCollection.AddRange(System.Diagnostics.PerformanceCounterPermissionEntry[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntryCollection.cs#L14C75-L14C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntryCollection.cs#L14C75-L14C76" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterPermissionEntryCollection.Contains(System.Diagnostics.PerformanceCounterPermissionEntry)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntryCollection.cs#L15C73-L15C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntryCollection.cs#L15C73-L15C86" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterPermissionEntryCollection.CopyTo(System.Diagnostics.PerformanceCounterPermissionEntry[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntryCollection.cs#L16C84-L16C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntryCollection.cs#L16C84-L16C85" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterPermissionEntryCollection.IndexOf(System.Diagnostics.PerformanceCounterPermissionEntry)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntryCollection.cs#L17C71-L17C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntryCollection.cs#L17C71-L17C80" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterPermissionEntryCollection.Insert(System.Int32,System.Diagnostics.PerformanceCounterPermissionEntry)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntryCollection.cs#L18C82-L18C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntryCollection.cs#L18C82-L18C83" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterPermissionEntryCollection.OnClear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntryCollection.cs#L19C45-L19C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntryCollection.cs#L19C45-L19C46" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterPermissionEntryCollection.OnInsert(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntryCollection.cs#L20C69-L20C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntryCollection.cs#L20C69-L20C70" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterPermissionEntryCollection.OnRemove(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntryCollection.cs#L21C69-L21C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntryCollection.cs#L21C69-L21C70" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterPermissionEntryCollection.OnSet(System.Int32,System.Object,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntryCollection.cs#L22C86-L22C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntryCollection.cs#L22C86-L22C87" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterPermissionEntryCollection.Remove(System.Diagnostics.PerformanceCounterPermissionEntry)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntryCollection.cs#L23C71-L23C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntryCollection.cs#L23C71-L23C72" }, { "DocsId": "P:System.Diagnostics.PerformanceCounterPermissionEntryCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntryCollection.cs#L11C74-L11C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntryCollection.cs#L11C74-L11C86" } ], "DocsId": "T:System.Diagnostics.PerformanceCounterPermissionEntryCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntryCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntryCollection.cs" }, { "Members": [ { "DocsId": "M:System.Data.SqlClient.SqlClientPermission.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/SqlClient/SqlClientPermission.cs#L14C40-L14C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/SqlClient/SqlClientPermission.cs#L14C40-L14C74" }, { "DocsId": "M:System.Data.SqlClient.SqlClientPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/SqlClient/SqlClientPermission.cs#L15C61-L15C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/SqlClient/SqlClientPermission.cs#L15C61-L15C95" }, { "DocsId": "M:System.Data.SqlClient.SqlClientPermission.#ctor(System.Security.Permissions.PermissionState,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/SqlClient/SqlClientPermission.cs#L16C86-L16C120" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/SqlClient/SqlClientPermission.cs#L16C86-L16C120" }, { "DocsId": "M:System.Data.SqlClient.SqlClientPermission.Add(System.String,System.String,System.Data.KeyRestrictionBehavior)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/SqlClient/SqlClientPermission.cs#L17C115-L17C116" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/SqlClient/SqlClientPermission.cs#L17C115-L17C116" }, { "DocsId": "M:System.Data.SqlClient.SqlClientPermission.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/SqlClient/SqlClientPermission.cs#L18C62-L18C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/SqlClient/SqlClientPermission.cs#L18C62-L18C74" } ], "DocsId": "T:System.Data.SqlClient.SqlClientPermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/SqlClient/SqlClientPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/SqlClient/SqlClientPermission.cs" }, { "Members": [ { "DocsId": "M:System.Data.SqlClient.SqlClientPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/SqlClient/SqlClientPermissionAttribute.cs#L17C70-L17C103" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/SqlClient/SqlClientPermissionAttribute.cs#L17C70-L17C103" }, { "DocsId": "M:System.Data.SqlClient.SqlClientPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/SqlClient/SqlClientPermissionAttribute.cs#L18C58-L18C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/SqlClient/SqlClientPermissionAttribute.cs#L18C58-L18C70" } ], "DocsId": "T:System.Data.SqlClient.SqlClientPermissionAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/SqlClient/SqlClientPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/SqlClient/SqlClientPermissionAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Data.OracleClient.OraclePermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermission.cs#L14C9-L14C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermission.cs#L14C9-L14C59" }, { "DocsId": "M:System.Data.OracleClient.OraclePermission.Add(System.String,System.String,System.Data.KeyRestrictionBehavior)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermission.cs#L16C106-L16C107" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermission.cs#L16C106-L16C107" }, { "DocsId": "M:System.Data.OracleClient.OraclePermission.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermission.cs#L17C46-L17C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermission.cs#L17C46-L17C58" }, { "DocsId": "M:System.Data.OracleClient.OraclePermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermission.cs#L18C73-L18C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermission.cs#L18C73-L18C74" }, { "DocsId": "M:System.Data.OracleClient.OraclePermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermission.cs#L19C69-L19C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermission.cs#L19C69-L19C81" }, { "DocsId": "M:System.Data.OracleClient.OraclePermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermission.cs#L20C64-L20C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermission.cs#L20C64-L20C69" }, { "DocsId": "M:System.Data.OracleClient.OraclePermission.IsUnrestricted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermission.cs#L21C41-L21C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermission.cs#L21C41-L21C46" }, { "DocsId": "M:System.Data.OracleClient.OraclePermission.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermission.cs#L22C51-L22C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermission.cs#L22C51-L22C63" }, { "DocsId": "M:System.Data.OracleClient.OraclePermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermission.cs#L23C65-L23C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermission.cs#L23C65-L23C77" }, { "DocsId": "P:System.Data.OracleClient.OraclePermission.AllowBlankPassword", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermission.cs#L15C42-L15C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermission.cs#L15C42-L15C46" } ], "DocsId": "T:System.Data.OracleClient.OraclePermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermission.cs" }, { "Members": [ { "DocsId": "M:System.Data.OracleClient.OraclePermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermissionAttribute.cs#L15C67-L15C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermissionAttribute.cs#L15C67-L15C83" }, { "DocsId": "M:System.Data.OracleClient.OraclePermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermissionAttribute.cs#L20C67-L20C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermissionAttribute.cs#L20C67-L20C79" }, { "DocsId": "M:System.Data.OracleClient.OraclePermissionAttribute.ShouldSerializeConnectionString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermissionAttribute.cs#L22C58-L22C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermissionAttribute.cs#L22C58-L22C63" }, { "DocsId": "M:System.Data.OracleClient.OraclePermissionAttribute.ShouldSerializeKeyRestrictions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermissionAttribute.cs#L24C57-L24C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermissionAttribute.cs#L24C57-L24C62" }, { "DocsId": "P:System.Data.OracleClient.OraclePermissionAttribute.AllowBlankPassword", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermissionAttribute.cs#L16C42-L16C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermissionAttribute.cs#L16C42-L16C46" }, { "DocsId": "P:System.Data.OracleClient.OraclePermissionAttribute.ConnectionString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermissionAttribute.cs#L17C48-L17C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermissionAttribute.cs#L17C48-L17C60" }, { "DocsId": "P:System.Data.OracleClient.OraclePermissionAttribute.KeyRestrictionBehavior", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermissionAttribute.cs#L18C64-L18C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermissionAttribute.cs#L18C64-L18C68" }, { "DocsId": "P:System.Data.OracleClient.OraclePermissionAttribute.KeyRestrictions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermissionAttribute.cs#L19C47-L19C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermissionAttribute.cs#L19C47-L19C59" } ], "DocsId": "T:System.Data.OracleClient.OraclePermissionAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermissionAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Data.OleDb.OleDbPermission.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/OleDb/OleDbPermission.cs#L15C36-L15C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/OleDb/OleDbPermission.cs#L15C36-L15C70" }, { "DocsId": "M:System.Data.OleDb.OleDbPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/OleDb/OleDbPermission.cs#L16C57-L16C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/OleDb/OleDbPermission.cs#L16C57-L16C91" }, { "DocsId": "M:System.Data.OleDb.OleDbPermission.#ctor(System.Security.Permissions.PermissionState,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/OleDb/OleDbPermission.cs#L17C82-L17C116" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/OleDb/OleDbPermission.cs#L17C82-L17C116" }, { "DocsId": "M:System.Data.OleDb.OleDbPermission.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/OleDb/OleDbPermission.cs#L21C46-L21C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/OleDb/OleDbPermission.cs#L21C46-L21C58" }, { "DocsId": "P:System.Data.OleDb.OleDbPermission.Provider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/OleDb/OleDbPermission.cs#L20C40-L20C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/OleDb/OleDbPermission.cs#L20C40-L20C52" } ], "DocsId": "T:System.Data.OleDb.OleDbPermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/OleDb/OleDbPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/OleDb/OleDbPermission.cs" }, { "Members": [ { "DocsId": "M:System.Data.OleDb.OleDbPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/OleDb/OleDbPermissionAttribute.cs#L17C66-L17C99" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/OleDb/OleDbPermissionAttribute.cs#L17C66-L17C99" }, { "DocsId": "M:System.Data.OleDb.OleDbPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/OleDb/OleDbPermissionAttribute.cs#L21C58-L21C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/OleDb/OleDbPermissionAttribute.cs#L21C58-L21C70" }, { "DocsId": "P:System.Data.OleDb.OleDbPermissionAttribute.Provider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/OleDb/OleDbPermissionAttribute.cs#L20C40-L20C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/OleDb/OleDbPermissionAttribute.cs#L20C40-L20C52" } ], "DocsId": "T:System.Data.OleDb.OleDbPermissionAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/OleDb/OleDbPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/OleDb/OleDbPermissionAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Data.Odbc.OdbcPermission.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/Odbc/OdbcPermission.cs#L15C35-L15C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/Odbc/OdbcPermission.cs#L15C35-L15C69" }, { "DocsId": "M:System.Data.Odbc.OdbcPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/Odbc/OdbcPermission.cs#L16C56-L16C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/Odbc/OdbcPermission.cs#L16C56-L16C90" }, { "DocsId": "M:System.Data.Odbc.OdbcPermission.#ctor(System.Security.Permissions.PermissionState,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/Odbc/OdbcPermission.cs#L17C81-L17C115" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/Odbc/OdbcPermission.cs#L17C81-L17C115" }, { "DocsId": "M:System.Data.Odbc.OdbcPermission.Add(System.String,System.String,System.Data.KeyRestrictionBehavior)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/Odbc/OdbcPermission.cs#L18C115-L18C116" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/Odbc/OdbcPermission.cs#L18C115-L18C116" }, { "DocsId": "M:System.Data.Odbc.OdbcPermission.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/Odbc/OdbcPermission.cs#L19C46-L19C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/Odbc/OdbcPermission.cs#L19C46-L19C58" } ], "DocsId": "T:System.Data.Odbc.OdbcPermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/Odbc/OdbcPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/Odbc/OdbcPermission.cs" }, { "Members": [ { "DocsId": "M:System.Data.Odbc.OdbcPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/Odbc/OdbcPermissionAttribute.cs#L17C65-L17C98" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/Odbc/OdbcPermissionAttribute.cs#L17C65-L17C98" }, { "DocsId": "M:System.Data.Odbc.OdbcPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/Odbc/OdbcPermissionAttribute.cs#L18C58-L18C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/Odbc/OdbcPermissionAttribute.cs#L18C58-L18C70" } ], "DocsId": "T:System.Data.Odbc.OdbcPermissionAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/Odbc/OdbcPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/Odbc/OdbcPermissionAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Data.Common.DBDataPermission.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L14C9-L14C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L14C9-L14C41" }, { "DocsId": "M:System.Data.Common.DBDataPermission.#ctor(System.Data.Common.DBDataPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L15C9-L15C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L15C9-L15C68" }, { "DocsId": "M:System.Data.Common.DBDataPermission.#ctor(System.Data.Common.DBDataPermissionAttribute)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L16C9-L16C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L16C9-L16C86" }, { "DocsId": "M:System.Data.Common.DBDataPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L17C9-L17C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L17C9-L17C62" }, { "DocsId": "M:System.Data.Common.DBDataPermission.#ctor(System.Security.Permissions.PermissionState,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L18C9-L18C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L18C9-L18C87" }, { "DocsId": "M:System.Data.Common.DBDataPermission.Add(System.String,System.String,System.Data.KeyRestrictionBehavior)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L20C114-L20C115" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L20C114-L20C115" }, { "DocsId": "M:System.Data.Common.DBDataPermission.Clear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L21C34-L21C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L21C34-L21C35" }, { "DocsId": "M:System.Data.Common.DBDataPermission.CreateInstance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L22C64-L22C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L22C64-L22C68" }, { "DocsId": "M:System.Data.Common.DBDataPermission.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L23C47-L23C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L23C47-L23C51" }, { "DocsId": "M:System.Data.Common.DBDataPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L24C73-L24C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L24C73-L24C74" }, { "DocsId": "M:System.Data.Common.DBDataPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L25C70-L25C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L25C70-L25C74" }, { "DocsId": "M:System.Data.Common.DBDataPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L26C64-L26C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L26C64-L26C69" }, { "DocsId": "M:System.Data.Common.DBDataPermission.IsUnrestricted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L27C41-L27C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L27C41-L27C46" }, { "DocsId": "M:System.Data.Common.DBDataPermission.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L28C52-L28C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L28C52-L28C56" }, { "DocsId": "M:System.Data.Common.DBDataPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L29C65-L29C93" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L29C65-L29C93" }, { "DocsId": "P:System.Data.Common.DBDataPermission.AllowBlankPassword", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L19C42-L19C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L19C42-L19C46" } ], "DocsId": "T:System.Data.Common.DBDataPermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs" }, { "Members": [ { "DocsId": "M:System.Data.Common.DBDataPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermissionAttribute.cs#L15C70-L15C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermissionAttribute.cs#L15C70-L15C86" }, { "DocsId": "M:System.Data.Common.DBDataPermissionAttribute.ShouldSerializeConnectionString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermissionAttribute.cs#L21C57-L21C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermissionAttribute.cs#L21C57-L21C70" }, { "DocsId": "M:System.Data.Common.DBDataPermissionAttribute.ShouldSerializeKeyRestrictions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermissionAttribute.cs#L23C56-L23C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermissionAttribute.cs#L23C56-L23C69" }, { "DocsId": "P:System.Data.Common.DBDataPermissionAttribute.AllowBlankPassword", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermissionAttribute.cs#L16C42-L16C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermissionAttribute.cs#L16C42-L16C46" }, { "DocsId": "P:System.Data.Common.DBDataPermissionAttribute.ConnectionString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermissionAttribute.cs#L17C42-L17C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermissionAttribute.cs#L17C42-L17C46" }, { "DocsId": "P:System.Data.Common.DBDataPermissionAttribute.KeyRestrictionBehavior", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermissionAttribute.cs#L18C64-L18C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermissionAttribute.cs#L18C64-L18C68" }, { "DocsId": "P:System.Data.Common.DBDataPermissionAttribute.KeyRestrictions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermissionAttribute.cs#L19C41-L19C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermissionAttribute.cs#L19C41-L19C45" } ], "DocsId": "T:System.Data.Common.DBDataPermissionAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermissionAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ConfigurationPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Configuration/ConfigurationPermission.cs#L14C9-L14C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Configuration/ConfigurationPermission.cs#L14C9-L14C66" }, { "DocsId": "M:System.Configuration.ConfigurationPermission.IsUnrestricted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Configuration/ConfigurationPermission.cs#L15C41-L15C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Configuration/ConfigurationPermission.cs#L15C41-L15C46" }, { "DocsId": "M:System.Configuration.ConfigurationPermission.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Configuration/ConfigurationPermission.cs#L16C46-L16C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Configuration/ConfigurationPermission.cs#L16C46-L16C74" }, { "DocsId": "M:System.Configuration.ConfigurationPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Configuration/ConfigurationPermission.cs#L17C65-L17C93" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Configuration/ConfigurationPermission.cs#L17C65-L17C93" }, { "DocsId": "M:System.Configuration.ConfigurationPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Configuration/ConfigurationPermission.cs#L18C69-L18C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Configuration/ConfigurationPermission.cs#L18C69-L18C97" }, { "DocsId": "M:System.Configuration.ConfigurationPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Configuration/ConfigurationPermission.cs#L19C64-L19C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Configuration/ConfigurationPermission.cs#L19C64-L19C69" }, { "DocsId": "M:System.Configuration.ConfigurationPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Configuration/ConfigurationPermission.cs#L20C73-L20C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Configuration/ConfigurationPermission.cs#L20C73-L20C74" }, { "DocsId": "M:System.Configuration.ConfigurationPermission.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Configuration/ConfigurationPermission.cs#L21C51-L21C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Configuration/ConfigurationPermission.cs#L21C51-L21C83" } ], "DocsId": "T:System.Configuration.ConfigurationPermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Configuration/ConfigurationPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Configuration/ConfigurationPermission.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ConfigurationPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Configuration/ConfigurationPermissionAttribute.cs#L15C74-L15C107" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Configuration/ConfigurationPermissionAttribute.cs#L15C74-L15C107" }, { "DocsId": "M:System.Configuration.ConfigurationPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Configuration/ConfigurationPermissionAttribute.cs#L16C58-L16C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Configuration/ConfigurationPermissionAttribute.cs#L16C58-L16C86" } ], "DocsId": "T:System.Configuration.ConfigurationPermissionAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Configuration/ConfigurationPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Configuration/ConfigurationPermissionAttribute.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/System.ServiceModel.Syndication.json b/xml/SourceLinkInformation/net-8.0/System.ServiceModel.Syndication.json index d81b86445fa..61fedc9531c 100644 --- a/xml/SourceLinkInformation/net-8.0/System.ServiceModel.Syndication.json +++ b/xml/SourceLinkInformation/net-8.0/System.ServiceModel.Syndication.json @@ -1,2357 +1,2356 @@ { "Assembly": "System.ServiceModel.Syndication", - "GUID": "FA171BCE11AC41EF8B3A7164DB861960FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "D4A1D5D7AC88479CBF12EDA167A3558CFFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:System.ServiceModel.Syndication.Atom10FeedFormatter.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10FeedFormatter.cs#L34C40-L36C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10FeedFormatter.cs#L34C40-L36C10" }, { "DocsId": "M:System.ServiceModel.Syndication.Atom10FeedFormatter.#ctor(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10FeedFormatter.cs#L66C65-L52C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10FeedFormatter.cs#L66C65-L52C10" }, { "DocsId": "M:System.ServiceModel.Syndication.Atom10FeedFormatter.#ctor(System.ServiceModel.Syndication.SyndicationFeed)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10FeedFormatter.cs#L66C65-L59C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10FeedFormatter.cs#L66C65-L59C10" }, { "DocsId": "M:System.ServiceModel.Syndication.Atom10FeedFormatter.CanRead(System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10FeedFormatter.cs#L76C13-L81C100" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10FeedFormatter.cs#L76C13-L81C100" }, { "DocsId": "M:System.ServiceModel.Syndication.Atom10FeedFormatter.System#Xml#Serialization#IXmlSerializable#GetSchema", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10FeedFormatter.cs#L84C51-L84C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10FeedFormatter.cs#L84C51-L84C55" }, { "DocsId": "M:System.ServiceModel.Syndication.Atom10FeedFormatter.System#Xml#Serialization#IXmlSerializable#ReadXml(System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10FeedFormatter.cs#L88C13-L94C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10FeedFormatter.cs#L88C13-L94C10" }, { "DocsId": "M:System.ServiceModel.Syndication.Atom10FeedFormatter.System#Xml#Serialization#IXmlSerializable#WriteXml(System.Xml.XmlWriter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10FeedFormatter.cs#L98C13-L104C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10FeedFormatter.cs#L98C13-L104C10" }, { "DocsId": "M:System.ServiceModel.Syndication.Atom10FeedFormatter.ReadFrom(System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10FeedFormatter.cs#L108C13-L114C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10FeedFormatter.cs#L108C13-L114C10" }, { "DocsId": "M:System.ServiceModel.Syndication.Atom10FeedFormatter.WriteTo(System.Xml.XmlWriter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10FeedFormatter.cs#L118C13-L126C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10FeedFormatter.cs#L118C13-L126C10" }, { "DocsId": "M:System.ServiceModel.Syndication.Atom10FeedFormatter.CreateFeedInstance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10FeedFormatter.cs#L492C68-L492C96" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10FeedFormatter.cs#L492C68-L492C96" }, { "DocsId": "M:System.ServiceModel.Syndication.Atom10FeedFormatter.ReadItem(System.Xml.XmlReader,System.ServiceModel.Syndication.SyndicationFeed)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10FeedFormatter.cs#L496C13-L507C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10FeedFormatter.cs#L496C13-L507C25" }, { "DocsId": "M:System.ServiceModel.Syndication.Atom10FeedFormatter.ReadItems(System.Xml.XmlReader,System.ServiceModel.Syndication.SyndicationFeed,System.Boolean@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10FeedFormatter.cs#L512C13-L527C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10FeedFormatter.cs#L512C13-L527C26" }, { "DocsId": "M:System.ServiceModel.Syndication.Atom10FeedFormatter.WriteItem(System.Xml.XmlWriter,System.ServiceModel.Syndication.SyndicationItem,System.Uri)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10FeedFormatter.cs#L532C13-L535C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10FeedFormatter.cs#L532C13-L535C10" }, { "DocsId": "M:System.ServiceModel.Syndication.Atom10FeedFormatter.WriteItems(System.Xml.XmlWriter,System.Collections.Generic.IEnumerable{System.ServiceModel.Syndication.SyndicationItem},System.Uri)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10FeedFormatter.cs#L539C13-L547C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10FeedFormatter.cs#L539C13-L547C10" }, { "DocsId": "P:System.ServiceModel.Syndication.Atom10FeedFormatter.PreserveAttributeExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10FeedFormatter.cs#L66C51-L66C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10FeedFormatter.cs#L66C51-L66C55" }, { "DocsId": "P:System.ServiceModel.Syndication.Atom10FeedFormatter.PreserveElementExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10FeedFormatter.cs#L68C49-L68C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10FeedFormatter.cs#L68C49-L68C53" }, { "DocsId": "P:System.ServiceModel.Syndication.Atom10FeedFormatter.Version", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10FeedFormatter.cs#L70C43-L70C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10FeedFormatter.cs#L70C43-L70C69" }, { "DocsId": "P:System.ServiceModel.Syndication.Atom10FeedFormatter.FeedType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10FeedFormatter.cs#L72C35-L72C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10FeedFormatter.cs#L72C35-L72C39" } ], "DocsId": "T:System.ServiceModel.Syndication.Atom10FeedFormatter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10FeedFormatter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10FeedFormatter.cs" }, { "Members": [ { "DocsId": "M:System.ServiceModel.Syndication.Atom10FeedFormatter`1.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10FeedFormatter.cs#L1225C40-L1227C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10FeedFormatter.cs#L1225C40-L1227C10" }, { "DocsId": "M:System.ServiceModel.Syndication.Atom10FeedFormatter`1.#ctor(`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10FeedFormatter.cs#L1229C68-L1231C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10FeedFormatter.cs#L1229C68-L1231C10" }, { "DocsId": "M:System.ServiceModel.Syndication.Atom10FeedFormatter`1.CreateFeedInstance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10FeedFormatter.cs#L1233C68-L1233C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10FeedFormatter.cs#L1233C68-L1233C90" } ], "DocsId": "T:System.ServiceModel.Syndication.Atom10FeedFormatter`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10FeedFormatter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10FeedFormatter.cs" }, { "Members": [ { "DocsId": "M:System.ServiceModel.Syndication.Atom10ItemFormatter.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10ItemFormatter.cs#L18C40-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10ItemFormatter.cs#L18C40-L20C10" }, { "DocsId": "M:System.ServiceModel.Syndication.Atom10ItemFormatter.#ctor(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10ItemFormatter.cs#L14C9-L35C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10ItemFormatter.cs#L14C9-L35C10" }, { "DocsId": "M:System.ServiceModel.Syndication.Atom10ItemFormatter.#ctor(System.ServiceModel.Syndication.SyndicationItem)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10ItemFormatter.cs#L14C9-L40C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10ItemFormatter.cs#L14C9-L40C10" }, { "DocsId": "M:System.ServiceModel.Syndication.Atom10ItemFormatter.CanRead(System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10ItemFormatter.cs#L68C13-L73C101" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10ItemFormatter.cs#L68C13-L73C101" }, { "DocsId": "M:System.ServiceModel.Syndication.Atom10ItemFormatter.System#Xml#Serialization#IXmlSerializable#GetSchema", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10ItemFormatter.cs#L76C51-L76C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10ItemFormatter.cs#L76C51-L76C55" }, { "DocsId": "M:System.ServiceModel.Syndication.Atom10ItemFormatter.System#Xml#Serialization#IXmlSerializable#ReadXml(System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10ItemFormatter.cs#L80C13-L86C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10ItemFormatter.cs#L80C13-L86C10" }, { "DocsId": "M:System.ServiceModel.Syndication.Atom10ItemFormatter.System#Xml#Serialization#IXmlSerializable#WriteXml(System.Xml.XmlWriter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10ItemFormatter.cs#L90C13-L96C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10ItemFormatter.cs#L90C13-L96C10" }, { "DocsId": "M:System.ServiceModel.Syndication.Atom10ItemFormatter.ReadFrom(System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10ItemFormatter.cs#L100C13-L106C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10ItemFormatter.cs#L100C13-L106C10" }, { "DocsId": "M:System.ServiceModel.Syndication.Atom10ItemFormatter.WriteTo(System.Xml.XmlWriter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10ItemFormatter.cs#L110C13-L118C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10ItemFormatter.cs#L110C13-L118C10" }, { "DocsId": "M:System.ServiceModel.Syndication.Atom10ItemFormatter.CreateItemInstance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10ItemFormatter.cs#L120C68-L120C96" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10ItemFormatter.cs#L120C68-L120C96" }, { "DocsId": "P:System.ServiceModel.Syndication.Atom10ItemFormatter.PreserveAttributeExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10ItemFormatter.cs#L44C20-L44C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10ItemFormatter.cs#L44C20-L44C48" }, { "DocsId": "P:System.ServiceModel.Syndication.Atom10ItemFormatter.PreserveElementExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10ItemFormatter.cs#L54C20-L54C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10ItemFormatter.cs#L54C20-L54C46" }, { "DocsId": "P:System.ServiceModel.Syndication.Atom10ItemFormatter.Version", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10ItemFormatter.cs#L62C43-L62C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10ItemFormatter.cs#L62C43-L62C69" }, { "DocsId": "P:System.ServiceModel.Syndication.Atom10ItemFormatter.ItemType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10ItemFormatter.cs#L64C35-L64C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10ItemFormatter.cs#L64C35-L64C39" } ], "DocsId": "T:System.ServiceModel.Syndication.Atom10ItemFormatter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10ItemFormatter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10ItemFormatter.cs" }, { "Members": [ { "DocsId": "M:System.ServiceModel.Syndication.Atom10ItemFormatter`1.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10ItemFormatter.cs#L143C40-L145C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10ItemFormatter.cs#L143C40-L145C10" }, { "DocsId": "M:System.ServiceModel.Syndication.Atom10ItemFormatter`1.#ctor(`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10ItemFormatter.cs#L147C68-L149C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10ItemFormatter.cs#L147C68-L149C10" }, { "DocsId": "M:System.ServiceModel.Syndication.Atom10ItemFormatter`1.CreateItemInstance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10ItemFormatter.cs#L151C68-L151C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10ItemFormatter.cs#L151C68-L151C90" } ], "DocsId": "T:System.ServiceModel.Syndication.Atom10ItemFormatter`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10ItemFormatter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10ItemFormatter.cs" }, { "Members": [ { "DocsId": "M:System.ServiceModel.Syndication.AtomPub10CategoriesDocumentFormatter.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10CategoriesDocumentFormatter.cs#L18C57-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10CategoriesDocumentFormatter.cs#L18C57-L20C10" }, { "DocsId": "M:System.ServiceModel.Syndication.AtomPub10CategoriesDocumentFormatter.#ctor(System.Type,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10CategoriesDocumentFormatter.cs#L22C109-L44C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10CategoriesDocumentFormatter.cs#L22C109-L44C10" }, { "DocsId": "M:System.ServiceModel.Syndication.AtomPub10CategoriesDocumentFormatter.#ctor(System.ServiceModel.Syndication.CategoriesDocument)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10CategoriesDocumentFormatter.cs#L46C91-L59C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10CategoriesDocumentFormatter.cs#L46C91-L59C10" }, { "DocsId": "M:System.ServiceModel.Syndication.AtomPub10CategoriesDocumentFormatter.CanRead(System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10CategoriesDocumentFormatter.cs#L65C13-L70C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10CategoriesDocumentFormatter.cs#L65C13-L70C95" }, { "DocsId": "M:System.ServiceModel.Syndication.AtomPub10CategoriesDocumentFormatter.System#Xml#Serialization#IXmlSerializable#GetSchema", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10CategoriesDocumentFormatter.cs#L73C51-L73C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10CategoriesDocumentFormatter.cs#L73C51-L73C55" }, { "DocsId": "M:System.ServiceModel.Syndication.AtomPub10CategoriesDocumentFormatter.System#Xml#Serialization#IXmlSerializable#ReadXml(System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10CategoriesDocumentFormatter.cs#L77C13-L83C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10CategoriesDocumentFormatter.cs#L77C13-L83C10" }, { "DocsId": "M:System.ServiceModel.Syndication.AtomPub10CategoriesDocumentFormatter.System#Xml#Serialization#IXmlSerializable#WriteXml(System.Xml.XmlWriter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10CategoriesDocumentFormatter.cs#L87C13-L98C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10CategoriesDocumentFormatter.cs#L87C13-L98C10" }, { "DocsId": "M:System.ServiceModel.Syndication.AtomPub10CategoriesDocumentFormatter.ReadFrom(System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10CategoriesDocumentFormatter.cs#L102C13-L113C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10CategoriesDocumentFormatter.cs#L102C13-L113C10" }, { "DocsId": "M:System.ServiceModel.Syndication.AtomPub10CategoriesDocumentFormatter.WriteTo(System.Xml.XmlWriter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10CategoriesDocumentFormatter.cs#L117C13-L130C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10CategoriesDocumentFormatter.cs#L117C13-L130C10" }, { "DocsId": "M:System.ServiceModel.Syndication.AtomPub10CategoriesDocumentFormatter.CreateInlineCategoriesDocument", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10CategoriesDocumentFormatter.cs#L134C13-L140C96" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10CategoriesDocumentFormatter.cs#L134C13-L140C96" }, { "DocsId": "M:System.ServiceModel.Syndication.AtomPub10CategoriesDocumentFormatter.CreateReferencedCategoriesDocument", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10CategoriesDocumentFormatter.cs#L146C13-L152C104" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10CategoriesDocumentFormatter.cs#L146C13-L152C104" }, { "DocsId": "P:System.ServiceModel.Syndication.AtomPub10CategoriesDocumentFormatter.Version", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10CategoriesDocumentFormatter.cs#L61C43-L61C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10CategoriesDocumentFormatter.cs#L61C43-L61C67" } ], "DocsId": "T:System.ServiceModel.Syndication.AtomPub10CategoriesDocumentFormatter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10CategoriesDocumentFormatter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10CategoriesDocumentFormatter.cs" }, { "Members": [ { "DocsId": "M:System.ServiceModel.Syndication.AtomPub10ServiceDocumentFormatter.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10ServiceDocumentFormatter.cs#L21C54-L23C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10ServiceDocumentFormatter.cs#L21C54-L23C10" }, { "DocsId": "M:System.ServiceModel.Syndication.AtomPub10ServiceDocumentFormatter.#ctor(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10ServiceDocumentFormatter.cs#L25C79-L39C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10ServiceDocumentFormatter.cs#L25C79-L39C10" }, { "DocsId": "M:System.ServiceModel.Syndication.AtomPub10ServiceDocumentFormatter.#ctor(System.ServiceModel.Syndication.ServiceDocument)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10ServiceDocumentFormatter.cs#L41C85-L45C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10ServiceDocumentFormatter.cs#L41C85-L45C10" }, { "DocsId": "M:System.ServiceModel.Syndication.AtomPub10ServiceDocumentFormatter.CanRead(System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10ServiceDocumentFormatter.cs#L51C13-L56C92" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10ServiceDocumentFormatter.cs#L51C13-L56C92" }, { "DocsId": "M:System.ServiceModel.Syndication.AtomPub10ServiceDocumentFormatter.System#Xml#Serialization#IXmlSerializable#GetSchema", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10ServiceDocumentFormatter.cs#L59C51-L59C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10ServiceDocumentFormatter.cs#L59C51-L59C55" }, { "DocsId": "M:System.ServiceModel.Syndication.AtomPub10ServiceDocumentFormatter.System#Xml#Serialization#IXmlSerializable#ReadXml(System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10ServiceDocumentFormatter.cs#L63C13-L69C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10ServiceDocumentFormatter.cs#L63C13-L69C10" }, { "DocsId": "M:System.ServiceModel.Syndication.AtomPub10ServiceDocumentFormatter.System#Xml#Serialization#IXmlSerializable#WriteXml(System.Xml.XmlWriter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10ServiceDocumentFormatter.cs#L73C13-L84C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10ServiceDocumentFormatter.cs#L73C13-L84C10" }, { "DocsId": "M:System.ServiceModel.Syndication.AtomPub10ServiceDocumentFormatter.ReadFrom(System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10ServiceDocumentFormatter.cs#L88C13-L100C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10ServiceDocumentFormatter.cs#L88C13-L100C10" }, { "DocsId": "M:System.ServiceModel.Syndication.AtomPub10ServiceDocumentFormatter.WriteTo(System.Xml.XmlWriter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10ServiceDocumentFormatter.cs#L104C13-L117C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10ServiceDocumentFormatter.cs#L104C13-L117C10" }, { "DocsId": "M:System.ServiceModel.Syndication.AtomPub10ServiceDocumentFormatter.CreateDocumentInstance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10ServiceDocumentFormatter.cs#L159C13-L165C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10ServiceDocumentFormatter.cs#L159C13-L165C81" }, { "DocsId": "P:System.ServiceModel.Syndication.AtomPub10ServiceDocumentFormatter.Version", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10ServiceDocumentFormatter.cs#L47C43-L47C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10ServiceDocumentFormatter.cs#L47C43-L47C67" } ], "DocsId": "T:System.ServiceModel.Syndication.AtomPub10ServiceDocumentFormatter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10ServiceDocumentFormatter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10ServiceDocumentFormatter.cs" }, { "Members": [ { "DocsId": "M:System.ServiceModel.Syndication.AtomPub10ServiceDocumentFormatter`1.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10ServiceDocumentFormatter.cs#L638C54-L640C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10ServiceDocumentFormatter.cs#L638C54-L640C10" }, { "DocsId": "M:System.ServiceModel.Syndication.AtomPub10ServiceDocumentFormatter`1.#ctor(`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10ServiceDocumentFormatter.cs#L642C86-L644C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10ServiceDocumentFormatter.cs#L642C86-L644C10" }, { "DocsId": "M:System.ServiceModel.Syndication.AtomPub10ServiceDocumentFormatter`1.CreateDocumentInstance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10ServiceDocumentFormatter.cs#L646C72-L646C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10ServiceDocumentFormatter.cs#L646C72-L646C94" } ], "DocsId": "T:System.ServiceModel.Syndication.AtomPub10ServiceDocumentFormatter`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10ServiceDocumentFormatter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10ServiceDocumentFormatter.cs" }, { "Members": [ { "DocsId": "M:System.ServiceModel.Syndication.CategoriesDocument.Create(System.Collections.ObjectModel.Collection{System.ServiceModel.Syndication.SyndicationCategory})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocument.cs#L30C13-L30C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocument.cs#L30C13-L30C61" }, { "DocsId": "M:System.ServiceModel.Syndication.CategoriesDocument.Create(System.Collections.ObjectModel.Collection{System.ServiceModel.Syndication.SyndicationCategory},System.Boolean,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocument.cs#L35C13-L35C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocument.cs#L35C13-L35C78" }, { "DocsId": "M:System.ServiceModel.Syndication.CategoriesDocument.Create(System.Uri)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocument.cs#L40C13-L40C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocument.cs#L40C13-L40C79" }, { "DocsId": "M:System.ServiceModel.Syndication.CategoriesDocument.Load(System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocument.cs#L45C13-L47C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocument.cs#L45C13-L47C39" }, { "DocsId": "M:System.ServiceModel.Syndication.CategoriesDocument.GetFormatter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocument.cs#L50C62-L50C108" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocument.cs#L50C62-L50C108" }, { "DocsId": "M:System.ServiceModel.Syndication.CategoriesDocument.Save(System.Xml.XmlWriter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocument.cs#L54C13-L55C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocument.cs#L54C13-L55C10" }, { "DocsId": "M:System.ServiceModel.Syndication.CategoriesDocument.TryParseAttribute(System.String,System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocument.cs#L59C13-L59C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocument.cs#L59C13-L59C26" }, { "DocsId": "M:System.ServiceModel.Syndication.CategoriesDocument.TryParseElement(System.Xml.XmlReader,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocument.cs#L64C13-L64C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocument.cs#L64C13-L64C26" }, { "DocsId": "M:System.ServiceModel.Syndication.CategoriesDocument.WriteAttributeExtensions(System.Xml.XmlWriter,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocument.cs#L69C13-L70C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocument.cs#L69C13-L70C10" }, { "DocsId": "M:System.ServiceModel.Syndication.CategoriesDocument.WriteElementExtensions(System.Xml.XmlWriter,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocument.cs#L74C13-L75C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocument.cs#L74C13-L75C10" }, { "DocsId": "P:System.ServiceModel.Syndication.CategoriesDocument.AttributeExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocument.cs#L18C76-L18C107" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocument.cs#L18C76-L18C107" }, { "DocsId": "P:System.ServiceModel.Syndication.CategoriesDocument.BaseUri", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocument.cs#L20C30-L20C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocument.cs#L20C30-L20C34" }, { "DocsId": "P:System.ServiceModel.Syndication.CategoriesDocument.ElementExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocument.cs#L22C75-L22C104" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocument.cs#L22C75-L22C104" }, { "DocsId": "P:System.ServiceModel.Syndication.CategoriesDocument.Language", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocument.cs#L24C34-L24C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocument.cs#L24C34-L24C38" } ], "DocsId": "T:System.ServiceModel.Syndication.CategoriesDocument", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocument.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocument.cs" }, { "Members": [ { "DocsId": "M:System.ServiceModel.Syndication.CategoriesDocumentFormatter.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocumentFormatter.cs#L14C9-L16C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocumentFormatter.cs#L14C9-L16C10" }, { "DocsId": "M:System.ServiceModel.Syndication.CategoriesDocumentFormatter.#ctor(System.ServiceModel.Syndication.CategoriesDocument)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocumentFormatter.cs#L18C9-L26C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocumentFormatter.cs#L18C9-L26C10" }, { "DocsId": "M:System.ServiceModel.Syndication.CategoriesDocumentFormatter.CanRead(System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocumentFormatter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocumentFormatter.cs" }, { "DocsId": "M:System.ServiceModel.Syndication.CategoriesDocumentFormatter.ReadFrom(System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocumentFormatter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocumentFormatter.cs" }, { "DocsId": "M:System.ServiceModel.Syndication.CategoriesDocumentFormatter.WriteTo(System.Xml.XmlWriter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocumentFormatter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocumentFormatter.cs" }, { "DocsId": "M:System.ServiceModel.Syndication.CategoriesDocumentFormatter.CreateInlineCategoriesDocument", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocumentFormatter.cs#L38C13-L38C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocumentFormatter.cs#L38C13-L38C51" }, { "DocsId": "M:System.ServiceModel.Syndication.CategoriesDocumentFormatter.CreateReferencedCategoriesDocument", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocumentFormatter.cs#L43C13-L43C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocumentFormatter.cs#L43C13-L43C55" }, { "DocsId": "M:System.ServiceModel.Syndication.CategoriesDocumentFormatter.SetDocument(System.ServiceModel.Syndication.CategoriesDocument)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocumentFormatter.cs#L46C76-L46C96" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocumentFormatter.cs#L46C76-L46C96" }, { "DocsId": "P:System.ServiceModel.Syndication.CategoriesDocumentFormatter.Document", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocumentFormatter.cs#L28C47-L28C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocumentFormatter.cs#L28C47-L28C56" }, { "DocsId": "P:System.ServiceModel.Syndication.CategoriesDocumentFormatter.Version", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocumentFormatter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocumentFormatter.cs" } ], "DocsId": "T:System.ServiceModel.Syndication.CategoriesDocumentFormatter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocumentFormatter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocumentFormatter.cs" }, { "Members": [ { "DocsId": "M:System.ServiceModel.Syndication.InlineCategoriesDocument.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/InlineCategoriesDocument.cs#L13C9-L15C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/InlineCategoriesDocument.cs#L13C9-L15C10" }, { "DocsId": "M:System.ServiceModel.Syndication.InlineCategoriesDocument.#ctor(System.Collections.Generic.IEnumerable{System.ServiceModel.Syndication.SyndicationCategory})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/InlineCategoriesDocument.cs#L17C88-L19C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/InlineCategoriesDocument.cs#L17C88-L19C10" }, { "DocsId": "M:System.ServiceModel.Syndication.InlineCategoriesDocument.#ctor(System.Collections.Generic.IEnumerable{System.ServiceModel.Syndication.SyndicationCategory},System.Boolean,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/InlineCategoriesDocument.cs#L21C9-L34C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/InlineCategoriesDocument.cs#L21C9-L34C10" }, { "DocsId": "M:System.ServiceModel.Syndication.InlineCategoriesDocument.CreateCategory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/InlineCategoriesDocument.cs#L47C76-L47C101" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/InlineCategoriesDocument.cs#L47C76-L47C101" }, { "DocsId": "P:System.ServiceModel.Syndication.InlineCategoriesDocument.Categories", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/InlineCategoriesDocument.cs#L38C20-L38C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/InlineCategoriesDocument.cs#L38C20-L38C87" }, { "DocsId": "P:System.ServiceModel.Syndication.InlineCategoriesDocument.IsFixed", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/InlineCategoriesDocument.cs#L41C31-L41C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/InlineCategoriesDocument.cs#L41C31-L41C35" }, { "DocsId": "P:System.ServiceModel.Syndication.InlineCategoriesDocument.Scheme", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/InlineCategoriesDocument.cs#L43C32-L43C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/InlineCategoriesDocument.cs#L43C32-L43C36" } ], "DocsId": "T:System.ServiceModel.Syndication.InlineCategoriesDocument", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/InlineCategoriesDocument.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/InlineCategoriesDocument.cs" }, { "Members": [ { "DocsId": "M:System.ServiceModel.Syndication.ReferencedCategoriesDocument.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ReferencedCategoriesDocument.cs#L8C9-L10C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ReferencedCategoriesDocument.cs#L8C9-L10C10" }, { "DocsId": "M:System.ServiceModel.Syndication.ReferencedCategoriesDocument.#ctor(System.Uri)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ReferencedCategoriesDocument.cs#L12C57-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ReferencedCategoriesDocument.cs#L12C57-L20C10" }, { "DocsId": "P:System.ServiceModel.Syndication.ReferencedCategoriesDocument.Link", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ReferencedCategoriesDocument.cs#L22C27-L22C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ReferencedCategoriesDocument.cs#L22C27-L22C31" } ], "DocsId": "T:System.ServiceModel.Syndication.ReferencedCategoriesDocument", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ReferencedCategoriesDocument.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ReferencedCategoriesDocument.cs" }, { "Members": [ { "DocsId": "M:System.ServiceModel.Syndication.ResourceCollectionInfo.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ResourceCollectionInfo.cs#L17C9-L19C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ResourceCollectionInfo.cs#L17C9-L19C10" }, { "DocsId": "M:System.ServiceModel.Syndication.ResourceCollectionInfo.#ctor(System.String,System.Uri)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ResourceCollectionInfo.cs#L21C65-L23C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ResourceCollectionInfo.cs#L21C65-L23C10" }, { "DocsId": "M:System.ServiceModel.Syndication.ResourceCollectionInfo.#ctor(System.ServiceModel.Syndication.TextSyndicationContent,System.Uri)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ResourceCollectionInfo.cs#L25C81-L27C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ResourceCollectionInfo.cs#L25C81-L27C10" }, { "DocsId": "M:System.ServiceModel.Syndication.ResourceCollectionInfo.#ctor(System.ServiceModel.Syndication.TextSyndicationContent,System.Uri,System.Collections.Generic.IEnumerable{System.ServiceModel.Syndication.CategoriesDocument},System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ResourceCollectionInfo.cs#L30C15-L32C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ResourceCollectionInfo.cs#L30C15-L32C10" }, { "DocsId": "M:System.ServiceModel.Syndication.ResourceCollectionInfo.#ctor(System.ServiceModel.Syndication.TextSyndicationContent,System.Uri,System.Collections.Generic.IEnumerable{System.ServiceModel.Syndication.CategoriesDocument},System.Collections.Generic.IEnumerable{System.String})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ResourceCollectionInfo.cs#L34C9-L65C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ResourceCollectionInfo.cs#L34C9-L65C10" }, { "DocsId": "M:System.ServiceModel.Syndication.ResourceCollectionInfo.CreateInlineCategoriesDocument", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ResourceCollectionInfo.cs#L89C13-L89C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ResourceCollectionInfo.cs#L89C13-L89C51" }, { "DocsId": "M:System.ServiceModel.Syndication.ResourceCollectionInfo.CreateReferencedCategoriesDocument", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ResourceCollectionInfo.cs#L94C13-L94C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ResourceCollectionInfo.cs#L94C13-L94C55" }, { "DocsId": "M:System.ServiceModel.Syndication.ResourceCollectionInfo.TryParseAttribute(System.String,System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ResourceCollectionInfo.cs#L99C13-L99C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ResourceCollectionInfo.cs#L99C13-L99C26" }, { "DocsId": "M:System.ServiceModel.Syndication.ResourceCollectionInfo.TryParseElement(System.Xml.XmlReader,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ResourceCollectionInfo.cs#L104C13-L104C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ResourceCollectionInfo.cs#L104C13-L104C26" }, { "DocsId": "M:System.ServiceModel.Syndication.ResourceCollectionInfo.WriteAttributeExtensions(System.Xml.XmlWriter,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ResourceCollectionInfo.cs#L109C13-L110C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ResourceCollectionInfo.cs#L109C13-L110C10" }, { "DocsId": "M:System.ServiceModel.Syndication.ResourceCollectionInfo.WriteElementExtensions(System.Xml.XmlWriter,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ResourceCollectionInfo.cs#L114C13-L115C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ResourceCollectionInfo.cs#L114C13-L115C10" }, { "DocsId": "P:System.ServiceModel.Syndication.ResourceCollectionInfo.Accepts", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ResourceCollectionInfo.cs#L69C20-L69C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ResourceCollectionInfo.cs#L69C20-L69C71" }, { "DocsId": "P:System.ServiceModel.Syndication.ResourceCollectionInfo.AttributeExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ResourceCollectionInfo.cs#L72C76-L72C107" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ResourceCollectionInfo.cs#L72C76-L72C107" }, { "DocsId": "P:System.ServiceModel.Syndication.ResourceCollectionInfo.BaseUri", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ResourceCollectionInfo.cs#L74C30-L74C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ResourceCollectionInfo.cs#L74C30-L74C34" }, { "DocsId": "P:System.ServiceModel.Syndication.ResourceCollectionInfo.Categories", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ResourceCollectionInfo.cs#L78C20-L78C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ResourceCollectionInfo.cs#L78C20-L78C86" }, { "DocsId": "P:System.ServiceModel.Syndication.ResourceCollectionInfo.ElementExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ResourceCollectionInfo.cs#L81C75-L81C104" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ResourceCollectionInfo.cs#L81C75-L81C104" }, { "DocsId": "P:System.ServiceModel.Syndication.ResourceCollectionInfo.Link", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ResourceCollectionInfo.cs#L83C27-L83C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ResourceCollectionInfo.cs#L83C27-L83C31" }, { "DocsId": "P:System.ServiceModel.Syndication.ResourceCollectionInfo.Title", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ResourceCollectionInfo.cs#L85C47-L85C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ResourceCollectionInfo.cs#L85C47-L85C51" } ], "DocsId": "T:System.ServiceModel.Syndication.ResourceCollectionInfo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ResourceCollectionInfo.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ResourceCollectionInfo.cs" }, { "Members": [ { "DocsId": "M:System.ServiceModel.Syndication.Rss20FeedFormatter.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L27C39-L29C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L27C39-L29C10" }, { "DocsId": "M:System.ServiceModel.Syndication.Rss20FeedFormatter.#ctor(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L64C65-L47C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L64C65-L47C10" }, { "DocsId": "M:System.ServiceModel.Syndication.Rss20FeedFormatter.#ctor(System.ServiceModel.Syndication.SyndicationFeed)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L49C66-L51C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L49C66-L51C10" }, { "DocsId": "M:System.ServiceModel.Syndication.Rss20FeedFormatter.#ctor(System.ServiceModel.Syndication.SyndicationFeed,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L64C65-L60C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L64C65-L60C10" }, { "DocsId": "M:System.ServiceModel.Syndication.Rss20FeedFormatter.CanRead(System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L76C13-L81C96" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L76C13-L81C96" }, { "DocsId": "M:System.ServiceModel.Syndication.Rss20FeedFormatter.System#Xml#Serialization#IXmlSerializable#GetSchema", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L84C51-L84C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L84C51-L84C55" }, { "DocsId": "M:System.ServiceModel.Syndication.Rss20FeedFormatter.System#Xml#Serialization#IXmlSerializable#ReadXml(System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L88C13-L94C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L88C13-L94C10" }, { "DocsId": "M:System.ServiceModel.Syndication.Rss20FeedFormatter.System#Xml#Serialization#IXmlSerializable#WriteXml(System.Xml.XmlWriter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L98C13-L104C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L98C13-L104C10" }, { "DocsId": "M:System.ServiceModel.Syndication.Rss20FeedFormatter.ReadFrom(System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L108C13-L114C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L108C13-L114C10" }, { "DocsId": "M:System.ServiceModel.Syndication.Rss20FeedFormatter.WriteTo(System.Xml.XmlWriter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L118C13-L126C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L118C13-L126C10" }, { "DocsId": "M:System.ServiceModel.Syndication.Rss20FeedFormatter.SetFeed(System.ServiceModel.Syndication.SyndicationFeed)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L130C13-L132C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L130C13-L132C10" }, { "DocsId": "M:System.ServiceModel.Syndication.Rss20FeedFormatter.CreateFeedInstance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L144C68-L144C96" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L144C68-L144C96" }, { "DocsId": "M:System.ServiceModel.Syndication.Rss20FeedFormatter.ReadItem(System.Xml.XmlReader,System.ServiceModel.Syndication.SyndicationFeed)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L148C13-L159C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L148C13-L159C25" }, { "DocsId": "M:System.ServiceModel.Syndication.Rss20FeedFormatter.ReadItems(System.Xml.XmlReader,System.ServiceModel.Syndication.SyndicationFeed,System.Boolean@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L164C13-L179C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L164C13-L179C26" }, { "DocsId": "M:System.ServiceModel.Syndication.Rss20FeedFormatter.WriteItem(System.Xml.XmlWriter,System.ServiceModel.Syndication.SyndicationItem,System.Uri)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L184C13-L187C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L184C13-L187C10" }, { "DocsId": "M:System.ServiceModel.Syndication.Rss20FeedFormatter.WriteItems(System.Xml.XmlWriter,System.Collections.Generic.IEnumerable{System.ServiceModel.Syndication.SyndicationItem},System.Uri)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L191C13-L200C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L191C13-L200C10" }, { "DocsId": "P:System.ServiceModel.Syndication.Rss20FeedFormatter.PreserveAttributeExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L64C51-L64C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L64C51-L64C55" }, { "DocsId": "P:System.ServiceModel.Syndication.Rss20FeedFormatter.PreserveElementExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L66C49-L66C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L66C49-L66C53" }, { "DocsId": "P:System.ServiceModel.Syndication.Rss20FeedFormatter.SerializeExtensionsAsAtom", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L68C49-L68C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L68C49-L68C53" }, { "DocsId": "P:System.ServiceModel.Syndication.Rss20FeedFormatter.Version", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L70C43-L70C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L70C43-L70C68" }, { "DocsId": "P:System.ServiceModel.Syndication.Rss20FeedFormatter.FeedType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L72C35-L72C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L72C35-L72C39" } ], "DocsId": "T:System.ServiceModel.Syndication.Rss20FeedFormatter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs" }, { "Members": [ { "DocsId": "M:System.ServiceModel.Syndication.Rss20FeedFormatter`1.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L1202C39-L1204C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L1202C39-L1204C10" }, { "DocsId": "M:System.ServiceModel.Syndication.Rss20FeedFormatter`1.#ctor(`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L1206C67-L1208C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L1206C67-L1208C10" }, { "DocsId": "M:System.ServiceModel.Syndication.Rss20FeedFormatter`1.#ctor(`0,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L1210C99-L1212C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L1210C99-L1212C10" }, { "DocsId": "M:System.ServiceModel.Syndication.Rss20FeedFormatter`1.CreateFeedInstance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L1214C68-L1214C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L1214C68-L1214C90" } ], "DocsId": "T:System.ServiceModel.Syndication.Rss20FeedFormatter`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs" }, { "Members": [ { "DocsId": "M:System.ServiceModel.Syndication.Rss20ItemFormatter.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20ItemFormatter.cs#L19C39-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20ItemFormatter.cs#L19C39-L21C10" }, { "DocsId": "M:System.ServiceModel.Syndication.Rss20ItemFormatter.#ctor(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20ItemFormatter.cs#L15C9-L40C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20ItemFormatter.cs#L15C9-L40C10" }, { "DocsId": "M:System.ServiceModel.Syndication.Rss20ItemFormatter.#ctor(System.ServiceModel.Syndication.SyndicationItem)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20ItemFormatter.cs#L42C66-L44C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20ItemFormatter.cs#L42C66-L44C10" }, { "DocsId": "M:System.ServiceModel.Syndication.Rss20ItemFormatter.#ctor(System.ServiceModel.Syndication.SyndicationItem,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20ItemFormatter.cs#L15C9-L53C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20ItemFormatter.cs#L15C9-L53C10" }, { "DocsId": "M:System.ServiceModel.Syndication.Rss20ItemFormatter.CanRead(System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20ItemFormatter.cs#L91C13-L96C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20ItemFormatter.cs#L91C13-L96C97" }, { "DocsId": "M:System.ServiceModel.Syndication.Rss20ItemFormatter.System#Xml#Serialization#IXmlSerializable#GetSchema", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20ItemFormatter.cs#L99C51-L99C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20ItemFormatter.cs#L99C51-L99C55" }, { "DocsId": "M:System.ServiceModel.Syndication.Rss20ItemFormatter.System#Xml#Serialization#IXmlSerializable#ReadXml(System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20ItemFormatter.cs#L103C13-L109C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20ItemFormatter.cs#L103C13-L109C10" }, { "DocsId": "M:System.ServiceModel.Syndication.Rss20ItemFormatter.System#Xml#Serialization#IXmlSerializable#WriteXml(System.Xml.XmlWriter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20ItemFormatter.cs#L113C13-L119C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20ItemFormatter.cs#L113C13-L119C10" }, { "DocsId": "M:System.ServiceModel.Syndication.Rss20ItemFormatter.ReadFrom(System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20ItemFormatter.cs#L123C13-L129C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20ItemFormatter.cs#L123C13-L129C10" }, { "DocsId": "M:System.ServiceModel.Syndication.Rss20ItemFormatter.WriteTo(System.Xml.XmlWriter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20ItemFormatter.cs#L133C13-L141C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20ItemFormatter.cs#L133C13-L141C10" }, { "DocsId": "M:System.ServiceModel.Syndication.Rss20ItemFormatter.CreateItemInstance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20ItemFormatter.cs#L143C68-L143C96" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20ItemFormatter.cs#L143C68-L143C96" }, { "DocsId": "P:System.ServiceModel.Syndication.Rss20ItemFormatter.PreserveAttributeExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20ItemFormatter.cs#L57C20-L57C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20ItemFormatter.cs#L57C20-L57C48" }, { "DocsId": "P:System.ServiceModel.Syndication.Rss20ItemFormatter.PreserveElementExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20ItemFormatter.cs#L67C20-L67C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20ItemFormatter.cs#L67C20-L67C46" }, { "DocsId": "P:System.ServiceModel.Syndication.Rss20ItemFormatter.SerializeExtensionsAsAtom", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20ItemFormatter.cs#L77C20-L77C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20ItemFormatter.cs#L77C20-L77C46" }, { "DocsId": "P:System.ServiceModel.Syndication.Rss20ItemFormatter.Version", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20ItemFormatter.cs#L85C43-L85C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20ItemFormatter.cs#L85C43-L85C68" }, { "DocsId": "P:System.ServiceModel.Syndication.Rss20ItemFormatter.ItemType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20ItemFormatter.cs#L87C35-L87C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20ItemFormatter.cs#L87C35-L87C39" } ], "DocsId": "T:System.ServiceModel.Syndication.Rss20ItemFormatter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20ItemFormatter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20ItemFormatter.cs" }, { "Members": [ { "DocsId": "M:System.ServiceModel.Syndication.Rss20ItemFormatter`1.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20ItemFormatter.cs#L166C39-L168C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20ItemFormatter.cs#L166C39-L168C10" }, { "DocsId": "M:System.ServiceModel.Syndication.Rss20ItemFormatter`1.#ctor(`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20ItemFormatter.cs#L170C67-L172C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20ItemFormatter.cs#L170C67-L172C10" }, { "DocsId": "M:System.ServiceModel.Syndication.Rss20ItemFormatter`1.#ctor(`0,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20ItemFormatter.cs#L174C99-L176C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20ItemFormatter.cs#L174C99-L176C10" }, { "DocsId": "M:System.ServiceModel.Syndication.Rss20ItemFormatter`1.CreateItemInstance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20ItemFormatter.cs#L178C68-L178C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20ItemFormatter.cs#L178C68-L178C90" } ], "DocsId": "T:System.ServiceModel.Syndication.Rss20ItemFormatter`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20ItemFormatter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20ItemFormatter.cs" }, { "Members": [ { "DocsId": "M:System.ServiceModel.Syndication.ServiceDocument.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocument.cs#L15C36-L17C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocument.cs#L15C36-L17C10" }, { "DocsId": "M:System.ServiceModel.Syndication.ServiceDocument.#ctor(System.Collections.Generic.IEnumerable{System.ServiceModel.Syndication.Workspace})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocument.cs#L19C9-L29C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocument.cs#L19C9-L29C10" }, { "DocsId": "M:System.ServiceModel.Syndication.ServiceDocument.Load(System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocument.cs#L46C13-L46C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocument.cs#L46C13-L46C50" }, { "DocsId": "M:System.ServiceModel.Syndication.ServiceDocument.Load``1(System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocument.cs#L51C13-L53C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocument.cs#L51C13-L53C57" }, { "DocsId": "M:System.ServiceModel.Syndication.ServiceDocument.GetFormatter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocument.cs#L58C13-L58C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocument.cs#L58C13-L58C64" }, { "DocsId": "M:System.ServiceModel.Syndication.ServiceDocument.Save(System.Xml.XmlWriter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocument.cs#L63C13-L64C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocument.cs#L63C13-L64C10" }, { "DocsId": "M:System.ServiceModel.Syndication.ServiceDocument.CreateWorkspace", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocument.cs#L68C13-L68C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocument.cs#L68C13-L68C36" }, { "DocsId": "M:System.ServiceModel.Syndication.ServiceDocument.TryParseAttribute(System.String,System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocument.cs#L73C13-L73C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocument.cs#L73C13-L73C26" }, { "DocsId": "M:System.ServiceModel.Syndication.ServiceDocument.TryParseElement(System.Xml.XmlReader,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocument.cs#L78C13-L78C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocument.cs#L78C13-L78C26" }, { "DocsId": "M:System.ServiceModel.Syndication.ServiceDocument.WriteAttributeExtensions(System.Xml.XmlWriter,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocument.cs#L83C13-L84C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocument.cs#L83C13-L84C10" }, { "DocsId": "M:System.ServiceModel.Syndication.ServiceDocument.WriteElementExtensions(System.Xml.XmlWriter,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocument.cs#L88C13-L89C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocument.cs#L88C13-L89C10" }, { "DocsId": "P:System.ServiceModel.Syndication.ServiceDocument.AttributeExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocument.cs#L31C76-L31C107" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocument.cs#L31C76-L31C107" }, { "DocsId": "P:System.ServiceModel.Syndication.ServiceDocument.BaseUri", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocument.cs#L33C30-L33C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocument.cs#L33C30-L33C34" }, { "DocsId": "P:System.ServiceModel.Syndication.ServiceDocument.ElementExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocument.cs#L35C75-L35C104" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocument.cs#L35C75-L35C104" }, { "DocsId": "P:System.ServiceModel.Syndication.ServiceDocument.Language", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocument.cs#L37C34-L37C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocument.cs#L37C34-L37C38" }, { "DocsId": "P:System.ServiceModel.Syndication.ServiceDocument.Workspaces", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocument.cs#L41C20-L41C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocument.cs#L41C20-L41C77" } ], "DocsId": "T:System.ServiceModel.Syndication.ServiceDocument", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocument.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocument.cs" }, { "Members": [ { "DocsId": "M:System.ServiceModel.Syndication.ServiceDocumentFormatter.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L15C9-L17C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L15C9-L17C10" }, { "DocsId": "M:System.ServiceModel.Syndication.ServiceDocumentFormatter.#ctor(System.ServiceModel.Syndication.ServiceDocument)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L19C9-L27C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L19C9-L27C10" }, { "DocsId": "M:System.ServiceModel.Syndication.ServiceDocumentFormatter.CanRead(System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs" }, { "DocsId": "M:System.ServiceModel.Syndication.ServiceDocumentFormatter.ReadFrom(System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs" }, { "DocsId": "M:System.ServiceModel.Syndication.ServiceDocumentFormatter.WriteTo(System.Xml.XmlWriter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs" }, { "DocsId": "M:System.ServiceModel.Syndication.ServiceDocumentFormatter.CreateCategory(System.ServiceModel.Syndication.InlineCategoriesDocument)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L74C13-L79C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L74C13-L79C54" }, { "DocsId": "M:System.ServiceModel.Syndication.ServiceDocumentFormatter.CreateCollection(System.ServiceModel.Syndication.Workspace)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L84C13-L89C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L84C13-L89C57" }, { "DocsId": "M:System.ServiceModel.Syndication.ServiceDocumentFormatter.CreateInlineCategories(System.ServiceModel.Syndication.ResourceCollectionInfo)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L94C13-L94C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L94C13-L94C64" }, { "DocsId": "M:System.ServiceModel.Syndication.ServiceDocumentFormatter.CreateReferencedCategories(System.ServiceModel.Syndication.ResourceCollectionInfo)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L99C13-L99C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L99C13-L99C68" }, { "DocsId": "M:System.ServiceModel.Syndication.ServiceDocumentFormatter.CreateWorkspace(System.ServiceModel.Syndication.ServiceDocument)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L104C13-L109C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L104C13-L109C47" }, { "DocsId": "M:System.ServiceModel.Syndication.ServiceDocumentFormatter.LoadElementExtensions(System.Xml.XmlReader,System.ServiceModel.Syndication.CategoriesDocument,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L114C13-L120C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L114C13-L120C10" }, { "DocsId": "M:System.ServiceModel.Syndication.ServiceDocumentFormatter.LoadElementExtensions(System.Xml.XmlReader,System.ServiceModel.Syndication.ResourceCollectionInfo,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L124C13-L130C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L124C13-L130C10" }, { "DocsId": "M:System.ServiceModel.Syndication.ServiceDocumentFormatter.LoadElementExtensions(System.Xml.XmlReader,System.ServiceModel.Syndication.Workspace,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L134C13-L140C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L134C13-L140C10" }, { "DocsId": "M:System.ServiceModel.Syndication.ServiceDocumentFormatter.LoadElementExtensions(System.Xml.XmlReader,System.ServiceModel.Syndication.ServiceDocument,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L144C13-L150C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L144C13-L150C10" }, { "DocsId": "M:System.ServiceModel.Syndication.ServiceDocumentFormatter.TryParseAttribute(System.String,System.String,System.String,System.ServiceModel.Syndication.ServiceDocument,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L154C13-L159C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L154C13-L159C73" }, { "DocsId": "M:System.ServiceModel.Syndication.ServiceDocumentFormatter.TryParseAttribute(System.String,System.String,System.String,System.ServiceModel.Syndication.ResourceCollectionInfo,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L164C13-L169C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L164C13-L169C75" }, { "DocsId": "M:System.ServiceModel.Syndication.ServiceDocumentFormatter.TryParseAttribute(System.String,System.String,System.String,System.ServiceModel.Syndication.CategoriesDocument,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L174C13-L179C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L174C13-L179C75" }, { "DocsId": "M:System.ServiceModel.Syndication.ServiceDocumentFormatter.TryParseAttribute(System.String,System.String,System.String,System.ServiceModel.Syndication.Workspace,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L184C13-L189C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L184C13-L189C74" }, { "DocsId": "M:System.ServiceModel.Syndication.ServiceDocumentFormatter.TryParseElement(System.Xml.XmlReader,System.ServiceModel.Syndication.ResourceCollectionInfo,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L194C13-L199C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L194C13-L199C64" }, { "DocsId": "M:System.ServiceModel.Syndication.ServiceDocumentFormatter.TryParseElement(System.Xml.XmlReader,System.ServiceModel.Syndication.ServiceDocument,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L204C13-L209C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L204C13-L209C62" }, { "DocsId": "M:System.ServiceModel.Syndication.ServiceDocumentFormatter.TryParseElement(System.Xml.XmlReader,System.ServiceModel.Syndication.Workspace,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L214C13-L219C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L214C13-L219C63" }, { "DocsId": "M:System.ServiceModel.Syndication.ServiceDocumentFormatter.TryParseElement(System.Xml.XmlReader,System.ServiceModel.Syndication.CategoriesDocument,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L224C13-L229C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L224C13-L229C64" }, { "DocsId": "M:System.ServiceModel.Syndication.ServiceDocumentFormatter.WriteAttributeExtensions(System.Xml.XmlWriter,System.ServiceModel.Syndication.ServiceDocument,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L234C13-L240C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L234C13-L240C10" }, { "DocsId": "M:System.ServiceModel.Syndication.ServiceDocumentFormatter.WriteAttributeExtensions(System.Xml.XmlWriter,System.ServiceModel.Syndication.Workspace,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L244C13-L250C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L244C13-L250C10" }, { "DocsId": "M:System.ServiceModel.Syndication.ServiceDocumentFormatter.WriteAttributeExtensions(System.Xml.XmlWriter,System.ServiceModel.Syndication.ResourceCollectionInfo,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L254C13-L260C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L254C13-L260C10" }, { "DocsId": "M:System.ServiceModel.Syndication.ServiceDocumentFormatter.WriteAttributeExtensions(System.Xml.XmlWriter,System.ServiceModel.Syndication.CategoriesDocument,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L264C13-L270C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L264C13-L270C10" }, { "DocsId": "M:System.ServiceModel.Syndication.ServiceDocumentFormatter.WriteElementExtensions(System.Xml.XmlWriter,System.ServiceModel.Syndication.ServiceDocument,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L274C13-L280C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L274C13-L280C10" }, { "DocsId": "M:System.ServiceModel.Syndication.ServiceDocumentFormatter.WriteElementExtensions(System.Xml.XmlWriter,System.ServiceModel.Syndication.Workspace,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L284C13-L290C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L284C13-L290C10" }, { "DocsId": "M:System.ServiceModel.Syndication.ServiceDocumentFormatter.WriteElementExtensions(System.Xml.XmlWriter,System.ServiceModel.Syndication.ResourceCollectionInfo,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L294C13-L300C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L294C13-L300C10" }, { "DocsId": "M:System.ServiceModel.Syndication.ServiceDocumentFormatter.WriteElementExtensions(System.Xml.XmlWriter,System.ServiceModel.Syndication.CategoriesDocument,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L304C13-L310C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L304C13-L310C10" }, { "DocsId": "M:System.ServiceModel.Syndication.ServiceDocumentFormatter.CreateDocumentInstance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L312C71-L312C92" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L312C71-L312C92" }, { "DocsId": "M:System.ServiceModel.Syndication.ServiceDocumentFormatter.SetDocument(System.ServiceModel.Syndication.ServiceDocument)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L314C73-L314C93" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L314C73-L314C93" }, { "DocsId": "P:System.ServiceModel.Syndication.ServiceDocumentFormatter.Document", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L29C44-L29C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L29C44-L29C53" }, { "DocsId": "P:System.ServiceModel.Syndication.ServiceDocumentFormatter.Version", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs" } ], "DocsId": "T:System.ServiceModel.Syndication.ServiceDocumentFormatter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs" }, { "Members": [ { "DocsId": "M:System.ServiceModel.Syndication.SyndicationCategory.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationCategory.cs#L14C40-L16C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationCategory.cs#L14C40-L16C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationCategory.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationCategory.cs#L18C51-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationCategory.cs#L18C51-L20C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationCategory.#ctor(System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationCategory.cs#L22C9-L27C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationCategory.cs#L22C9-L27C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationCategory.#ctor(System.ServiceModel.Syndication.SyndicationCategory)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationCategory.cs#L29C9-L40C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationCategory.cs#L29C9-L40C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationCategory.Clone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationCategory.cs#L52C55-L52C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationCategory.cs#L52C55-L52C84" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationCategory.TryParseAttribute(System.String,System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationCategory.cs#L56C13-L56C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationCategory.cs#L56C13-L56C26" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationCategory.TryParseElement(System.Xml.XmlReader,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationCategory.cs#L61C13-L61C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationCategory.cs#L61C13-L61C26" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationCategory.WriteAttributeExtensions(System.Xml.XmlWriter,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationCategory.cs#L66C13-L67C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationCategory.cs#L66C13-L67C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationCategory.WriteElementExtensions(System.Xml.XmlWriter,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationCategory.cs#L71C13-L72C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationCategory.cs#L71C13-L72C10" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationCategory.AttributeExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationCategory.cs#L42C76-L42C107" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationCategory.cs#L42C76-L42C107" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationCategory.ElementExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationCategory.cs#L44C75-L44C104" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationCategory.cs#L44C75-L44C104" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationCategory.Label", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationCategory.cs#L46C31-L46C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationCategory.cs#L46C31-L46C35" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationCategory.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationCategory.cs#L48C30-L48C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationCategory.cs#L48C30-L48C34" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationCategory.Scheme", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationCategory.cs#L50C32-L50C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationCategory.cs#L50C32-L50C36" } ], "DocsId": "T:System.ServiceModel.Syndication.SyndicationCategory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationCategory.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationCategory.cs" }, { "Members": [ { "DocsId": "M:System.ServiceModel.Syndication.SyndicationContent.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationContent.cs#L15C9-L17C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationContent.cs#L15C9-L17C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationContent.#ctor(System.ServiceModel.Syndication.SyndicationContent)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationContent.cs#L19C9-L19C99" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationContent.cs#L19C9-L19C99" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationContent.CreateHtmlContent(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationContent.cs#L30C13-L30C89" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationContent.cs#L30C13-L30C89" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationContent.CreatePlaintextContent(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationContent.cs#L35C13-L35C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationContent.cs#L35C13-L35C56" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationContent.CreateUrlContent(System.Uri,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationContent.cs#L40C13-L40C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationContent.cs#L40C13-L40C62" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationContent.CreateXhtmlContent(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationContent.cs#L45C13-L45C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationContent.cs#L45C13-L45C90" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationContent.CreateXmlContent(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationContent.cs#L50C13-L50C126" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationContent.cs#L50C13-L50C126" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationContent.CreateXmlContent(System.Object,System.Runtime.Serialization.XmlObjectSerializer)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationContent.cs#L55C13-L55C120" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationContent.cs#L55C13-L55C120" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationContent.CreateXmlContent(System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationContent.cs#L60C13-L60C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationContent.cs#L60C13-L60C57" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationContent.CreateXmlContent(System.Object,System.Xml.Serialization.XmlSerializer)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationContent.cs#L65C13-L65C109" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationContent.cs#L65C13-L65C109" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationContent.Clone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationContent.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationContent.cs" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationContent.WriteTo(System.Xml.XmlWriter,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationContent.cs#L72C13-L98C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationContent.cs#L72C13-L98C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationContent.WriteContentsTo(System.Xml.XmlWriter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationContent.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationContent.cs" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationContent.AttributeExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationContent.cs#L23C20-L23C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationContent.cs#L23C20-L23C87" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationContent.Type", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationContent.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationContent.cs" } ], "DocsId": "T:System.ServiceModel.Syndication.SyndicationContent", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationContent.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationContent.cs" }, { "Members": [ { "DocsId": "M:System.ServiceModel.Syndication.SyndicationElementExtension.#ctor(System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtension.cs#L22C9-L42C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtension.cs#L22C9-L42C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationElementExtension.#ctor(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtension.cs#L44C76-L46C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtension.cs#L44C76-L46C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationElementExtension.#ctor(System.Object,System.Runtime.Serialization.XmlObjectSerializer)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtension.cs#L49C15-L51C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtension.cs#L49C15-L51C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationElementExtension.#ctor(System.String,System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtension.cs#L54C15-L56C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtension.cs#L54C15-L56C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationElementExtension.#ctor(System.String,System.String,System.Object,System.Runtime.Serialization.XmlObjectSerializer)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtension.cs#L58C9-L75C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtension.cs#L58C9-L75C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationElementExtension.#ctor(System.Object,System.Xml.Serialization.XmlSerializer)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtension.cs#L77C9-L87C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtension.cs#L77C9-L87C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationElementExtension.GetObject``1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtension.cs#L123C54-L123C123" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtension.cs#L123C54-L123C123" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationElementExtension.GetObject``1(System.Runtime.Serialization.XmlObjectSerializer)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtension.cs#L127C13-L140C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtension.cs#L127C13-L140C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationElementExtension.GetObject``1(System.Xml.Serialization.XmlSerializer)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtension.cs#L144C13-L157C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtension.cs#L144C13-L157C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationElementExtension.GetReader", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtension.cs#L161C13-L174C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtension.cs#L161C13-L174C27" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationElementExtension.WriteTo(System.Xml.XmlWriter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtension.cs#L179C13-L195C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtension.cs#L179C13-L195C10" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationElementExtension.OuterName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtension.cs#L101C17-L106C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtension.cs#L101C17-L106C35" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationElementExtension.OuterNamespace", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtension.cs#L114C17-L119C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtension.cs#L114C17-L119C40" } ], "DocsId": "T:System.ServiceModel.Syndication.SyndicationElementExtension", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtension.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtension.cs" }, { "Members": [ { "DocsId": "M:System.ServiceModel.Syndication.SyndicationElementExtensionCollection.Add(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtensionCollection.cs#L44C13-L52C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtensionCollection.cs#L44C13-L52C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationElementExtensionCollection.Add(System.String,System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtensionCollection.cs#L56C13-L57C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtensionCollection.cs#L56C13-L57C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationElementExtensionCollection.Add(System.Object,System.Runtime.Serialization.DataContractSerializer)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtensionCollection.cs#L61C13-L62C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtensionCollection.cs#L61C13-L62C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationElementExtensionCollection.Add(System.String,System.String,System.Object,System.Runtime.Serialization.XmlObjectSerializer)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtensionCollection.cs#L66C13-L73C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtensionCollection.cs#L66C13-L73C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationElementExtensionCollection.Add(System.Object,System.Xml.Serialization.XmlSerializer)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtensionCollection.cs#L77C13-L84C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtensionCollection.cs#L77C13-L84C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationElementExtensionCollection.Add(System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtensionCollection.cs#L88C13-L94C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtensionCollection.cs#L88C13-L94C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationElementExtensionCollection.GetReaderAtElementExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtensionCollection.cs#L98C13-L101C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtensionCollection.cs#L98C13-L101C27" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationElementExtensionCollection.ReadElementExtensions``1(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtensionCollection.cs#L106C13-L106C137" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtensionCollection.cs#L106C13-L106C137" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationElementExtensionCollection.ReadElementExtensions``1(System.String,System.String,System.Runtime.Serialization.XmlObjectSerializer)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtensionCollection.cs#L111C13-L116C100" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtensionCollection.cs#L111C13-L116C100" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationElementExtensionCollection.ReadElementExtensions``1(System.String,System.String,System.Xml.Serialization.XmlSerializer)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtensionCollection.cs#L121C13-L126C100" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtensionCollection.cs#L121C13-L126C100" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationElementExtensionCollection.ClearItems", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtensionCollection.cs#L159C13-L163C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtensionCollection.cs#L159C13-L163C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationElementExtensionCollection.InsertItem(System.Int32,System.ServiceModel.Syndication.SyndicationElementExtension)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtensionCollection.cs#L167C13-L178C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtensionCollection.cs#L167C13-L178C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationElementExtensionCollection.RemoveItem(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtensionCollection.cs#L182C13-L186C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtensionCollection.cs#L182C13-L186C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationElementExtensionCollection.SetItem(System.Int32,System.ServiceModel.Syndication.SyndicationElementExtension)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtensionCollection.cs#L190C13-L198C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtensionCollection.cs#L190C13-L198C10" } ], "DocsId": "T:System.ServiceModel.Syndication.SyndicationElementExtensionCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtensionCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtensionCollection.cs" }, { "Members": [ { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeed.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L28C36-L30C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L28C36-L30C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeed.#ctor(System.Collections.Generic.IEnumerable{System.ServiceModel.Syndication.SyndicationItem})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L32C70-L34C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L32C70-L34C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeed.#ctor(System.String,System.String,System.Uri)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L37C15-L39C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L37C15-L39C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeed.#ctor(System.String,System.String,System.Uri,System.Collections.Generic.IEnumerable{System.ServiceModel.Syndication.SyndicationItem})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L42C15-L44C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L42C15-L44C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeed.#ctor(System.String,System.String,System.Uri,System.String,System.DateTimeOffset)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L47C15-L49C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L47C15-L49C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeed.#ctor(System.String,System.String,System.Uri,System.String,System.DateTimeOffset,System.Collections.Generic.IEnumerable{System.ServiceModel.Syndication.SyndicationItem})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L51C9-L68C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L51C9-L68C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeed.#ctor(System.ServiceModel.Syndication.SyndicationFeed,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L70C9-L109C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L70C9-L109C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeed.Load(System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L410C65-L410C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L410C65-L410C94" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeed.Load``1(System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L414C13-L432C105" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L414C13-L432C105" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeed.Clone(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L437C13-L437C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L437C13-L437C58" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeed.GetAtom10Formatter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L440C60-L440C89" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L440C60-L440C89" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeed.GetRss20Formatter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L442C58-L442C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L442C58-L442C81" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeed.GetRss20Formatter(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L446C13-L446C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L446C13-L446C76" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeed.SaveAsAtom10(System.Xml.XmlWriter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L451C13-L452C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L451C13-L452C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeed.SaveAsRss20(System.Xml.XmlWriter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L456C13-L457C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L456C13-L457C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeed.CreateCategory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L461C13-L461C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L461C13-L461C46" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeed.CreateItem", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L466C13-L466C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L466C13-L466C42" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeed.CreateLink", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L471C13-L471C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L471C13-L471C42" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeed.CreatePerson", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L476C13-L476C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L476C13-L476C44" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeed.TryParseAttribute(System.String,System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L481C13-L481C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L481C13-L481C26" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeed.TryParseElement(System.Xml.XmlReader,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L486C13-L486C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L486C13-L486C26" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeed.WriteAttributeExtensions(System.Xml.XmlWriter,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L491C13-L492C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L491C13-L492C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeed.WriteElementExtensions(System.Xml.XmlWriter,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L496C13-L497C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L496C13-L497C10" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationFeed.AttributeExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L111C76-L111C107" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L111C76-L111C107" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationFeed.Authors", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L115C20-L115C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L115C20-L115C82" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationFeed.BaseUri", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L119C30-L119C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L119C30-L119C34" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationFeed.Categories", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L123C20-L123C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L123C20-L123C87" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationFeed.Contributors", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L128C20-L128C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L128C20-L128C87" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationFeed.Copyright", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L131C51-L131C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L131C51-L131C55" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationFeed.Description", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L133C53-L133C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L133C53-L133C57" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationFeed.ElementExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L135C75-L135C104" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L135C75-L135C104" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationFeed.Generator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L137C35-L137C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L137C35-L137C39" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationFeed.Id", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L139C28-L139C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L139C28-L139C32" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationFeed.ImageUrl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L141C31-L141C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L141C31-L141C35" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationFeed.Items", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L145C20-L145C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L145C20-L145C78" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationFeed.Language", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L149C34-L149C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L149C34-L149C38" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationFeed.LastUpdatedTime", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L157C17-L162C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L157C17-L162C41" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationFeed.Links", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L173C20-L173C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L173C20-L173C78" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationFeed.Title", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L176C47-L176C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L176C47-L176C51" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationFeed.Documentation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L182C20-L182C98" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L182C20-L182C98" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationFeed.TimeToLive", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L190C20-L190C92" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L190C20-L190C92" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationFeed.SkipHours", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L208C17-L215C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L208C17-L215C42" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationFeed.SkipDays", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L225C17-L232C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L225C17-L232C41" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationFeed.TextInput", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L240C20-L240C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L240C20-L240C90" } ], "DocsId": "T:System.ServiceModel.Syndication.SyndicationFeed", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs" }, { "Members": [ { "DocsId": "M:System.ServiceModel.Syndication.TryParseDateTimeCallback.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs" }, { "DocsId": "M:System.ServiceModel.Syndication.TryParseDateTimeCallback.Invoke(System.ServiceModel.Syndication.XmlDateTimeData,System.DateTimeOffset@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs" }, { "DocsId": "M:System.ServiceModel.Syndication.TryParseDateTimeCallback.BeginInvoke(System.ServiceModel.Syndication.XmlDateTimeData,System.DateTimeOffset@,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs" }, { "DocsId": "M:System.ServiceModel.Syndication.TryParseDateTimeCallback.EndInvoke(System.DateTimeOffset@,System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs" } ], "DocsId": "T:System.ServiceModel.Syndication.TryParseDateTimeCallback", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs" }, { "Members": [ { "DocsId": "M:System.ServiceModel.Syndication.TryParseUriCallback.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs" }, { "DocsId": "M:System.ServiceModel.Syndication.TryParseUriCallback.Invoke(System.ServiceModel.Syndication.XmlUriData,System.Uri@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs" }, { "DocsId": "M:System.ServiceModel.Syndication.TryParseUriCallback.BeginInvoke(System.ServiceModel.Syndication.XmlUriData,System.Uri@,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs" }, { "DocsId": "M:System.ServiceModel.Syndication.TryParseUriCallback.EndInvoke(System.Uri@,System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs" } ], "DocsId": "T:System.ServiceModel.Syndication.TryParseUriCallback", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs" }, { "Members": [ { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeedFormatter.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L38C62-L23C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L38C62-L23C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeedFormatter.#ctor(System.ServiceModel.Syndication.SyndicationFeed)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L38C62-L34C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L38C62-L34C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeedFormatter.CanRead(System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeedFormatter.ReadFrom(System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeedFormatter.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L57C46-L57C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L57C46-L57C90" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeedFormatter.WriteTo(System.Xml.XmlWriter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeedFormatter.CreateCategory(System.ServiceModel.Syndication.SyndicationFeed)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L63C13-L68C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L63C13-L68C87" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeedFormatter.CreateCategory(System.ServiceModel.Syndication.SyndicationItem)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L73C13-L78C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L73C13-L78C87" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeedFormatter.CreateItem(System.ServiceModel.Syndication.SyndicationFeed)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L83C13-L88C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L83C13-L88C79" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeedFormatter.CreateLink(System.ServiceModel.Syndication.SyndicationFeed)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L93C13-L98C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L93C13-L98C81" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeedFormatter.CreateLink(System.ServiceModel.Syndication.SyndicationItem)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L103C13-L108C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L103C13-L108C81" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeedFormatter.CreatePerson(System.ServiceModel.Syndication.SyndicationFeed)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L113C13-L118C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L113C13-L118C83" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeedFormatter.CreatePerson(System.ServiceModel.Syndication.SyndicationItem)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L123C13-L128C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L123C13-L128C83" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeedFormatter.LoadElementExtensions(System.Xml.XmlReader,System.ServiceModel.Syndication.SyndicationFeed,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L133C13-L139C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L133C13-L139C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeedFormatter.LoadElementExtensions(System.Xml.XmlReader,System.ServiceModel.Syndication.SyndicationItem,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L143C13-L149C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L143C13-L149C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeedFormatter.LoadElementExtensions(System.Xml.XmlReader,System.ServiceModel.Syndication.SyndicationCategory,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L153C13-L159C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L153C13-L159C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeedFormatter.LoadElementExtensions(System.Xml.XmlReader,System.ServiceModel.Syndication.SyndicationLink,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L163C13-L169C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L163C13-L169C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeedFormatter.LoadElementExtensions(System.Xml.XmlReader,System.ServiceModel.Syndication.SyndicationPerson,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L173C13-L179C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L173C13-L179C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeedFormatter.TryParseAttribute(System.String,System.String,System.String,System.ServiceModel.Syndication.SyndicationFeed,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L183C13-L192C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L183C13-L192C69" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeedFormatter.TryParseAttribute(System.String,System.String,System.String,System.ServiceModel.Syndication.SyndicationItem,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L197C13-L206C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L197C13-L206C69" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeedFormatter.TryParseAttribute(System.String,System.String,System.String,System.ServiceModel.Syndication.SyndicationCategory,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L211C13-L220C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L211C13-L220C73" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeedFormatter.TryParseAttribute(System.String,System.String,System.String,System.ServiceModel.Syndication.SyndicationLink,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L225C13-L234C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L225C13-L234C69" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeedFormatter.TryParseAttribute(System.String,System.String,System.String,System.ServiceModel.Syndication.SyndicationPerson,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L239C13-L248C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L239C13-L248C71" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeedFormatter.TryParseContent(System.Xml.XmlReader,System.ServiceModel.Syndication.SyndicationItem,System.String,System.String,System.ServiceModel.Syndication.SyndicationContent@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L253C13-L253C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L253C13-L253C84" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeedFormatter.TryParseElement(System.Xml.XmlReader,System.ServiceModel.Syndication.SyndicationFeed,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L258C13-L263C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L258C13-L263C58" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeedFormatter.TryParseElement(System.Xml.XmlReader,System.ServiceModel.Syndication.SyndicationItem,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L268C13-L273C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L268C13-L273C58" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeedFormatter.TryParseElement(System.Xml.XmlReader,System.ServiceModel.Syndication.SyndicationCategory,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L278C13-L283C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L278C13-L283C62" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeedFormatter.TryParseElement(System.Xml.XmlReader,System.ServiceModel.Syndication.SyndicationLink,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L288C13-L293C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L288C13-L293C58" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeedFormatter.TryParseElement(System.Xml.XmlReader,System.ServiceModel.Syndication.SyndicationPerson,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L298C13-L303C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L298C13-L303C60" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeedFormatter.WriteAttributeExtensions(System.Xml.XmlWriter,System.ServiceModel.Syndication.SyndicationFeed,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L308C13-L314C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L308C13-L314C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeedFormatter.WriteAttributeExtensions(System.Xml.XmlWriter,System.ServiceModel.Syndication.SyndicationItem,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L318C13-L324C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L318C13-L324C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeedFormatter.WriteAttributeExtensions(System.Xml.XmlWriter,System.ServiceModel.Syndication.SyndicationCategory,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L328C13-L334C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L328C13-L334C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeedFormatter.WriteAttributeExtensions(System.Xml.XmlWriter,System.ServiceModel.Syndication.SyndicationLink,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L338C13-L344C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L338C13-L344C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeedFormatter.WriteAttributeExtensions(System.Xml.XmlWriter,System.ServiceModel.Syndication.SyndicationPerson,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L348C13-L354C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L348C13-L354C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeedFormatter.WriteElementExtensions(System.Xml.XmlWriter,System.ServiceModel.Syndication.SyndicationFeed,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L358C13-L364C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L358C13-L364C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeedFormatter.WriteElementExtensions(System.Xml.XmlWriter,System.ServiceModel.Syndication.SyndicationItem,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L368C13-L374C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L368C13-L374C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeedFormatter.WriteElementExtensions(System.Xml.XmlWriter,System.ServiceModel.Syndication.SyndicationCategory,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L378C13-L384C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L378C13-L384C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeedFormatter.WriteElementExtensions(System.Xml.XmlWriter,System.ServiceModel.Syndication.SyndicationLink,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L388C13-L394C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L388C13-L394C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeedFormatter.WriteElementExtensions(System.Xml.XmlWriter,System.ServiceModel.Syndication.SyndicationPerson,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L398C13-L404C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L398C13-L404C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeedFormatter.SetFeed(System.ServiceModel.Syndication.SyndicationFeed)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L408C13-L414C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L408C13-L414C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeedFormatter.CreateFeedInstance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationFeedFormatter.Feed", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L36C40-L36C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L36C40-L36C45" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationFeedFormatter.UriParser", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L38C48-L38C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L38C48-L38C52" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationFeedFormatter.DateTimeParser", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L41C58-L41C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L41C58-L41C62" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationFeedFormatter.Version", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs" } ], "DocsId": "T:System.ServiceModel.Syndication.SyndicationFeedFormatter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs" }, { "Members": [ { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItem.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L22C36-L24C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L22C36-L24C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItem.#ctor(System.String,System.String,System.Uri)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L27C15-L29C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L27C15-L29C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItem.#ctor(System.String,System.String,System.Uri,System.String,System.DateTimeOffset)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L32C15-L34C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L32C15-L34C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItem.#ctor(System.String,System.ServiceModel.Syndication.SyndicationContent,System.Uri,System.String,System.DateTimeOffset)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L36C9-L49C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L36C9-L49C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItem.#ctor(System.ServiceModel.Syndication.SyndicationItem)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L51C9-L76C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L51C9-L76C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItem.Load(System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L156C65-L156C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L156C65-L156C94" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItem.Load``1(System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L160C13-L178C105" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L160C13-L178C105" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItem.AddPermalink(System.Uri)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L184C13-L191C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L184C13-L191C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItem.Clone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L193C51-L193C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L193C51-L193C76" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItem.GetAtom10Formatter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L195C60-L195C89" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L195C60-L195C89" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItem.GetRss20Formatter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L197C58-L197C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L197C58-L197C81" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItem.GetRss20Formatter(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L201C13-L201C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L201C13-L201C76" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItem.SaveAsAtom10(System.Xml.XmlWriter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L206C13-L207C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L206C13-L207C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItem.SaveAsRss20(System.Xml.XmlWriter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L211C13-L212C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L211C13-L212C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItem.CreateCategory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L216C13-L216C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L216C13-L216C46" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItem.CreateLink", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L221C13-L221C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L221C13-L221C42" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItem.CreatePerson", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L226C13-L226C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L226C13-L226C44" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItem.TryParseAttribute(System.String,System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L231C13-L231C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L231C13-L231C26" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItem.TryParseContent(System.Xml.XmlReader,System.String,System.String,System.ServiceModel.Syndication.SyndicationContent@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L236C13-L237C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L236C13-L237C26" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItem.TryParseElement(System.Xml.XmlReader,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L242C13-L242C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L242C13-L242C26" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItem.WriteAttributeExtensions(System.Xml.XmlWriter,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L247C13-L248C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L247C13-L248C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItem.WriteElementExtensions(System.Xml.XmlWriter,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L252C13-L253C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L252C13-L253C10" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationItem.AttributeExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L78C76-L78C107" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L78C76-L78C107" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationItem.Authors", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L82C20-L82C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L82C20-L82C82" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationItem.BaseUri", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L85C30-L85C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L85C30-L85C34" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationItem.Categories", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L89C20-L89C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L89C20-L89C87" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationItem.Content", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L92C45-L92C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L92C45-L92C49" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationItem.Contributors", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L96C20-L96C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L96C20-L96C87" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationItem.Copyright", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L99C51-L99C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L99C51-L99C55" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationItem.ElementExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L101C75-L101C104" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L101C75-L101C104" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationItem.Id", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L103C28-L103C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L103C28-L103C32" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationItem.LastUpdatedTime", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L111C17-L116C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L111C17-L116C41" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationItem.Links", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L127C20-L127C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L127C20-L127C78" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationItem.PublishDate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L136C17-L141C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L136C17-L141C37" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationItem.SourceFeed", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L150C45-L150C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L150C45-L150C49" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationItem.Summary", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L152C49-L152C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L152C49-L152C53" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationItem.Title", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L154C47-L154C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L154C47-L154C51" } ], "DocsId": "T:System.ServiceModel.Syndication.SyndicationItem", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs" }, { "Members": [ { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItemFormatter.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L14C9-L17C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L14C9-L17C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItemFormatter.#ctor(System.ServiceModel.Syndication.SyndicationItem)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L19C9-L27C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L19C9-L27C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItemFormatter.CanRead(System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItemFormatter.ReadFrom(System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItemFormatter.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L37C46-L37C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L37C46-L37C90" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItemFormatter.WriteTo(System.Xml.XmlWriter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItemFormatter.SetItem(System.ServiceModel.Syndication.SyndicationItem)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L43C13-L49C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L43C13-L49C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItemFormatter.CreateCategory(System.ServiceModel.Syndication.SyndicationItem)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L63C86-L63C131" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L63C86-L63C131" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItemFormatter.CreateLink(System.ServiceModel.Syndication.SyndicationItem)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L65C78-L65C119" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L65C78-L65C119" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItemFormatter.CreatePerson(System.ServiceModel.Syndication.SyndicationItem)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L67C82-L67C125" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L67C82-L67C125" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItemFormatter.LoadElementExtensions(System.Xml.XmlReader,System.ServiceModel.Syndication.SyndicationItem,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L71C13-L72C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L71C13-L72C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItemFormatter.LoadElementExtensions(System.Xml.XmlReader,System.ServiceModel.Syndication.SyndicationCategory,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L76C13-L77C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L76C13-L77C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItemFormatter.LoadElementExtensions(System.Xml.XmlReader,System.ServiceModel.Syndication.SyndicationLink,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L81C13-L82C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L81C13-L82C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItemFormatter.LoadElementExtensions(System.Xml.XmlReader,System.ServiceModel.Syndication.SyndicationPerson,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L86C13-L87C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L86C13-L87C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItemFormatter.TryParseAttribute(System.String,System.String,System.String,System.ServiceModel.Syndication.SyndicationItem,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L91C13-L91C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L91C13-L91C95" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItemFormatter.TryParseAttribute(System.String,System.String,System.String,System.ServiceModel.Syndication.SyndicationCategory,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L96C13-L96C99" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L96C13-L96C99" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItemFormatter.TryParseAttribute(System.String,System.String,System.String,System.ServiceModel.Syndication.SyndicationLink,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L101C13-L101C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L101C13-L101C95" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItemFormatter.TryParseAttribute(System.String,System.String,System.String,System.ServiceModel.Syndication.SyndicationPerson,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L106C13-L106C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L106C13-L106C97" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItemFormatter.TryParseContent(System.Xml.XmlReader,System.ServiceModel.Syndication.SyndicationItem,System.String,System.String,System.ServiceModel.Syndication.SyndicationContent@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L111C13-L111C110" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L111C13-L111C110" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItemFormatter.TryParseElement(System.Xml.XmlReader,System.ServiceModel.Syndication.SyndicationItem,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L116C13-L116C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L116C13-L116C84" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItemFormatter.TryParseElement(System.Xml.XmlReader,System.ServiceModel.Syndication.SyndicationCategory,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L121C13-L121C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L121C13-L121C88" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItemFormatter.TryParseElement(System.Xml.XmlReader,System.ServiceModel.Syndication.SyndicationLink,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L126C13-L126C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L126C13-L126C84" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItemFormatter.TryParseElement(System.Xml.XmlReader,System.ServiceModel.Syndication.SyndicationPerson,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L131C13-L131C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L131C13-L131C86" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItemFormatter.WriteAttributeExtensions(System.Xml.XmlWriter,System.ServiceModel.Syndication.SyndicationItem,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L136C13-L137C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L136C13-L137C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItemFormatter.WriteAttributeExtensions(System.Xml.XmlWriter,System.ServiceModel.Syndication.SyndicationCategory,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L141C13-L142C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L141C13-L142C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItemFormatter.WriteAttributeExtensions(System.Xml.XmlWriter,System.ServiceModel.Syndication.SyndicationLink,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L146C13-L147C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L146C13-L147C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItemFormatter.WriteAttributeExtensions(System.Xml.XmlWriter,System.ServiceModel.Syndication.SyndicationPerson,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L151C13-L152C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L151C13-L152C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItemFormatter.WriteElementExtensions(System.Xml.XmlWriter,System.ServiceModel.Syndication.SyndicationItem,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L156C13-L157C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L156C13-L157C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItemFormatter.CreateItemInstance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItemFormatter.WriteElementExtensions(System.Xml.XmlWriter,System.ServiceModel.Syndication.SyndicationCategory,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L163C13-L164C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L163C13-L164C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItemFormatter.WriteElementExtensions(System.Xml.XmlWriter,System.ServiceModel.Syndication.SyndicationLink,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L168C13-L169C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L168C13-L169C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItemFormatter.WriteElementExtensions(System.Xml.XmlWriter,System.ServiceModel.Syndication.SyndicationPerson,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L173C13-L174C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L173C13-L174C10" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationItemFormatter.Item", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L29C40-L29C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L29C40-L29C45" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationItemFormatter.Version", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs" } ], "DocsId": "T:System.ServiceModel.Syndication.SyndicationItemFormatter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs" }, { "Members": [ { "DocsId": "M:System.ServiceModel.Syndication.SyndicationLink.#ctor(System.Uri)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs#L15C43-L17C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs#L15C43-L17C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationLink.#ctor(System.Uri,System.String,System.String,System.String,System.Int64)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs#L19C9-L32C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs#L19C9-L32C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationLink.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs#L34C36-L36C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs#L34C36-L36C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationLink.#ctor(System.ServiceModel.Syndication.SyndicationLink)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs#L38C9-L52C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs#L38C9-L52C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationLink.CreateAlternateLink(System.Uri)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs#L84C13-L84C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs#L84C13-L84C51" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationLink.CreateAlternateLink(System.Uri,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs#L89C13-L89C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs#L89C13-L89C95" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationLink.CreateMediaEnclosureLink(System.Uri,System.String,System.Int64)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs#L94C13-L94C99" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs#L94C13-L94C99" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationLink.CreateSelfLink(System.Uri)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs#L99C13-L99C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs#L99C13-L99C46" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationLink.CreateSelfLink(System.Uri,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs#L104C13-L104C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs#L104C13-L104C90" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationLink.Clone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs#L107C51-L107C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs#L107C51-L107C76" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationLink.GetAbsoluteUri", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs#L111C13-L128C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs#L111C13-L128C29" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationLink.TryParseAttribute(System.String,System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs#L134C13-L134C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs#L134C13-L134C26" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationLink.TryParseElement(System.Xml.XmlReader,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs#L139C13-L139C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs#L139C13-L139C26" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationLink.WriteAttributeExtensions(System.Xml.XmlWriter,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs#L144C13-L145C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs#L144C13-L145C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationLink.WriteElementExtensions(System.Xml.XmlWriter,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs#L149C13-L150C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs#L149C13-L150C10" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationLink.AttributeExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs#L54C76-L54C107" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs#L54C76-L54C107" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationLink.BaseUri", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs#L56C30-L56C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs#L56C30-L56C34" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationLink.ElementExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs#L58C75-L58C104" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs#L58C75-L58C104" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationLink.Length", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs#L62C20-L62C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs#L62C20-L62C27" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationLink.MediaType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs#L74C35-L74C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs#L74C35-L74C39" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationLink.RelationshipType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs#L76C42-L76C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs#L76C42-L76C46" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationLink.Title", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs#L78C31-L78C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs#L78C31-L78C35" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationLink.Uri", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs#L80C26-L80C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs#L80C26-L80C30" } ], "DocsId": "T:System.ServiceModel.Syndication.SyndicationLink", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs" }, { "Members": [ { "DocsId": "M:System.ServiceModel.Syndication.SyndicationPerson.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationPerson.cs#L15C38-L17C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationPerson.cs#L15C38-L17C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationPerson.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationPerson.cs#L19C50-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationPerson.cs#L19C50-L21C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationPerson.#ctor(System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationPerson.cs#L23C9-L28C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationPerson.cs#L23C9-L28C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationPerson.#ctor(System.ServiceModel.Syndication.SyndicationPerson)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationPerson.cs#L30C9-L41C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationPerson.cs#L30C9-L41C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationPerson.Clone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationPerson.cs#L53C53-L53C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationPerson.cs#L53C53-L53C80" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationPerson.TryParseAttribute(System.String,System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationPerson.cs#L57C13-L57C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationPerson.cs#L57C13-L57C26" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationPerson.TryParseElement(System.Xml.XmlReader,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationPerson.cs#L62C13-L62C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationPerson.cs#L62C13-L62C26" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationPerson.WriteAttributeExtensions(System.Xml.XmlWriter,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationPerson.cs#L67C13-L68C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationPerson.cs#L67C13-L68C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationPerson.WriteElementExtensions(System.Xml.XmlWriter,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationPerson.cs#L72C13-L73C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationPerson.cs#L72C13-L73C10" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationPerson.AttributeExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationPerson.cs#L43C76-L43C107" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationPerson.cs#L43C76-L43C107" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationPerson.ElementExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationPerson.cs#L45C75-L45C104" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationPerson.cs#L45C75-L45C104" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationPerson.Email", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationPerson.cs#L47C31-L47C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationPerson.cs#L47C31-L47C35" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationPerson.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationPerson.cs#L49C30-L49C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationPerson.cs#L49C30-L49C34" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationPerson.Uri", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationPerson.cs#L51C29-L51C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationPerson.cs#L51C29-L51C33" } ], "DocsId": "T:System.ServiceModel.Syndication.SyndicationPerson", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationPerson.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationPerson.cs" }, { "Members": [ { "DocsId": "M:System.ServiceModel.Syndication.SyndicationTextInput.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationTextInput.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationTextInput.cs" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationTextInput.Description", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationTextInput.cs#L8C37-L8C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationTextInput.cs#L8C37-L8C41" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationTextInput.Title", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationTextInput.cs#L9C31-L9C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationTextInput.cs#L9C31-L9C35" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationTextInput.Link", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationTextInput.cs#L10C39-L10C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationTextInput.cs#L10C39-L10C43" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationTextInput.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationTextInput.cs#L11C30-L11C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationTextInput.cs#L11C30-L11C34" } ], "DocsId": "T:System.ServiceModel.Syndication.SyndicationTextInput", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationTextInput.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationTextInput.cs" }, { "Members": [ { "DocsId": "F:System.ServiceModel.Syndication.SyndicationVersions.Atom10", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationVersions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationVersions.cs" }, { "DocsId": "F:System.ServiceModel.Syndication.SyndicationVersions.Rss20", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationVersions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationVersions.cs" } ], "DocsId": "T:System.ServiceModel.Syndication.SyndicationVersions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationVersions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationVersions.cs" }, { "Members": [ { "DocsId": "M:System.ServiceModel.Syndication.TextSyndicationContent.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/TextSyndicationContent.cs#L14C54-L16C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/TextSyndicationContent.cs#L14C54-L16C10" }, { "DocsId": "M:System.ServiceModel.Syndication.TextSyndicationContent.#ctor(System.String,System.ServiceModel.Syndication.TextSyndicationContentKind)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/TextSyndicationContent.cs#L18C9-L27C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/TextSyndicationContent.cs#L18C9-L27C10" }, { "DocsId": "M:System.ServiceModel.Syndication.TextSyndicationContent.#ctor(System.ServiceModel.Syndication.TextSyndicationContent)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/TextSyndicationContent.cs#L29C75-L34C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/TextSyndicationContent.cs#L29C75-L34C10" }, { "DocsId": "M:System.ServiceModel.Syndication.TextSyndicationContent.Clone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/TextSyndicationContent.cs#L46C55-L46C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/TextSyndicationContent.cs#L46C55-L46C87" }, { "DocsId": "M:System.ServiceModel.Syndication.TextSyndicationContent.WriteContentsTo(System.Xml.XmlWriter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/TextSyndicationContent.cs#L50C13-L59C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/TextSyndicationContent.cs#L50C13-L59C10" }, { "DocsId": "P:System.ServiceModel.Syndication.TextSyndicationContent.Text", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/TextSyndicationContent.cs#L36C30-L36C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/TextSyndicationContent.cs#L36C30-L36C34" }, { "DocsId": "P:System.ServiceModel.Syndication.TextSyndicationContent.Type", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/TextSyndicationContent.cs#L39C13-L43C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/TextSyndicationContent.cs#L39C13-L16707566C0" } ], "DocsId": "T:System.ServiceModel.Syndication.TextSyndicationContent", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/TextSyndicationContent.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/TextSyndicationContent.cs" }, { "Members": [ { "DocsId": "F:System.ServiceModel.Syndication.TextSyndicationContentKind.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/TextSyndicationContentKind.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/TextSyndicationContentKind.cs" }, { "DocsId": "F:System.ServiceModel.Syndication.TextSyndicationContentKind.Plaintext", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/TextSyndicationContentKind.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/TextSyndicationContentKind.cs" }, { "DocsId": "F:System.ServiceModel.Syndication.TextSyndicationContentKind.Html", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/TextSyndicationContentKind.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/TextSyndicationContentKind.cs" }, { "DocsId": "F:System.ServiceModel.Syndication.TextSyndicationContentKind.XHtml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/TextSyndicationContentKind.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/TextSyndicationContentKind.cs" } ], "DocsId": "T:System.ServiceModel.Syndication.TextSyndicationContentKind", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/TextSyndicationContentKind.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/TextSyndicationContentKind.cs" }, { "Members": [ { "DocsId": "M:System.ServiceModel.Syndication.UrlSyndicationContent.#ctor(System.Uri,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/UrlSyndicationContent.cs#L14C67-L23C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/UrlSyndicationContent.cs#L14C67-L23C10" }, { "DocsId": "M:System.ServiceModel.Syndication.UrlSyndicationContent.#ctor(System.ServiceModel.Syndication.UrlSyndicationContent)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/UrlSyndicationContent.cs#L25C73-L30C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/UrlSyndicationContent.cs#L25C73-L30C10" }, { "DocsId": "M:System.ServiceModel.Syndication.UrlSyndicationContent.Clone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/UrlSyndicationContent.cs#L36C55-L36C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/UrlSyndicationContent.cs#L36C55-L36C86" }, { "DocsId": "M:System.ServiceModel.Syndication.UrlSyndicationContent.WriteContentsTo(System.Xml.XmlWriter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/UrlSyndicationContent.cs#L40C13-L41C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/UrlSyndicationContent.cs#L40C13-L41C10" }, { "DocsId": "P:System.ServiceModel.Syndication.UrlSyndicationContent.Type", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/UrlSyndicationContent.cs#L32C40-L32C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/UrlSyndicationContent.cs#L32C40-L32C50" }, { "DocsId": "P:System.ServiceModel.Syndication.UrlSyndicationContent.Url", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/UrlSyndicationContent.cs#L34C26-L34C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/UrlSyndicationContent.cs#L34C26-L34C30" } ], "DocsId": "T:System.ServiceModel.Syndication.UrlSyndicationContent", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/UrlSyndicationContent.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/UrlSyndicationContent.cs" }, { "Members": [ { "DocsId": "M:System.ServiceModel.Syndication.Workspace.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Workspace.cs#L15C9-L17C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Workspace.cs#L15C9-L17C10" }, { "DocsId": "M:System.ServiceModel.Syndication.Workspace.#ctor(System.String,System.Collections.Generic.IEnumerable{System.ServiceModel.Syndication.ResourceCollectionInfo})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Workspace.cs#L19C91-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Workspace.cs#L19C91-L21C10" }, { "DocsId": "M:System.ServiceModel.Syndication.Workspace.#ctor(System.ServiceModel.Syndication.TextSyndicationContent,System.Collections.Generic.IEnumerable{System.ServiceModel.Syndication.ResourceCollectionInfo})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Workspace.cs#L23C9-L34C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Workspace.cs#L23C9-L34C10" }, { "DocsId": "M:System.ServiceModel.Syndication.Workspace.CreateResourceCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Workspace.cs#L51C13-L51C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Workspace.cs#L51C13-L51C49" }, { "DocsId": "M:System.ServiceModel.Syndication.Workspace.TryParseAttribute(System.String,System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Workspace.cs#L56C13-L56C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Workspace.cs#L56C13-L56C26" }, { "DocsId": "M:System.ServiceModel.Syndication.Workspace.TryParseElement(System.Xml.XmlReader,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Workspace.cs#L61C13-L61C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Workspace.cs#L61C13-L61C26" }, { "DocsId": "M:System.ServiceModel.Syndication.Workspace.WriteAttributeExtensions(System.Xml.XmlWriter,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Workspace.cs#L66C13-L67C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Workspace.cs#L66C13-L67C10" }, { "DocsId": "M:System.ServiceModel.Syndication.Workspace.WriteElementExtensions(System.Xml.XmlWriter,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Workspace.cs#L71C13-L72C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Workspace.cs#L71C13-L72C10" }, { "DocsId": "P:System.ServiceModel.Syndication.Workspace.AttributeExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Workspace.cs#L36C76-L36C107" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Workspace.cs#L36C76-L36C107" }, { "DocsId": "P:System.ServiceModel.Syndication.Workspace.BaseUri", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Workspace.cs#L38C30-L38C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Workspace.cs#L38C30-L38C34" }, { "DocsId": "P:System.ServiceModel.Syndication.Workspace.Collections", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Workspace.cs#L42C20-L42C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Workspace.cs#L42C20-L42C91" }, { "DocsId": "P:System.ServiceModel.Syndication.Workspace.ElementExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Workspace.cs#L45C75-L45C104" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Workspace.cs#L45C75-L45C104" }, { "DocsId": "P:System.ServiceModel.Syndication.Workspace.Title", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Workspace.cs#L47C47-L47C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Workspace.cs#L47C47-L47C51" } ], "DocsId": "T:System.ServiceModel.Syndication.Workspace", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Workspace.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Workspace.cs" }, { "Members": [ { "DocsId": "M:System.ServiceModel.Syndication.XmlDateTimeData.#ctor(System.String,System.Xml.XmlQualifiedName)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/XmlDateTimeData.cs#L12C13-L14C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/XmlDateTimeData.cs#L12C13-L14C10" }, { "DocsId": "P:System.ServiceModel.Syndication.XmlDateTimeData.DateTimeString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/XmlDateTimeData.cs#L16C40-L16C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/XmlDateTimeData.cs#L16C40-L16C44" }, { "DocsId": "P:System.ServiceModel.Syndication.XmlDateTimeData.ElementQualifiedName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/XmlDateTimeData.cs#L18C56-L18C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/XmlDateTimeData.cs#L18C56-L18C60" } ], "DocsId": "T:System.ServiceModel.Syndication.XmlDateTimeData", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/XmlDateTimeData.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/XmlDateTimeData.cs" }, { "Members": [ { "DocsId": "M:System.ServiceModel.Syndication.XmlSyndicationContent.#ctor(System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/XmlSyndicationContent.cs#L20C9-L54C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/XmlSyndicationContent.cs#L20C9-L54C10" }, { "DocsId": "M:System.ServiceModel.Syndication.XmlSyndicationContent.#ctor(System.String,System.Object,System.Runtime.Serialization.XmlObjectSerializer)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/XmlSyndicationContent.cs#L56C9-L60C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/XmlSyndicationContent.cs#L56C9-L60C10" }, { "DocsId": "M:System.ServiceModel.Syndication.XmlSyndicationContent.#ctor(System.String,System.Object,System.Xml.Serialization.XmlSerializer)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/XmlSyndicationContent.cs#L62C9-L66C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/XmlSyndicationContent.cs#L62C9-L66C10" }, { "DocsId": "M:System.ServiceModel.Syndication.XmlSyndicationContent.#ctor(System.String,System.ServiceModel.Syndication.SyndicationElementExtension)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/XmlSyndicationContent.cs#L68C9-L77C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/XmlSyndicationContent.cs#L68C9-L77C10" }, { "DocsId": "M:System.ServiceModel.Syndication.XmlSyndicationContent.#ctor(System.ServiceModel.Syndication.XmlSyndicationContent)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/XmlSyndicationContent.cs#L79C73-L85C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/XmlSyndicationContent.cs#L79C73-L85C10" }, { "DocsId": "M:System.ServiceModel.Syndication.XmlSyndicationContent.Clone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/XmlSyndicationContent.cs#L91C55-L91C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/XmlSyndicationContent.cs#L91C55-L91C86" }, { "DocsId": "M:System.ServiceModel.Syndication.XmlSyndicationContent.GetReaderAtContent", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/XmlSyndicationContent.cs#L95C13-L96C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/XmlSyndicationContent.cs#L95C13-L96C48" }, { "DocsId": "M:System.ServiceModel.Syndication.XmlSyndicationContent.ReadContent``1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/XmlSyndicationContent.cs#L99C52-L99C103" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/XmlSyndicationContent.cs#L99C52-L99C103" }, { "DocsId": "M:System.ServiceModel.Syndication.XmlSyndicationContent.ReadContent``1(System.Runtime.Serialization.XmlObjectSerializer)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/XmlSyndicationContent.cs#L103C13-L118C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/XmlSyndicationContent.cs#L103C13-L118C10" }, { "DocsId": "M:System.ServiceModel.Syndication.XmlSyndicationContent.ReadContent``1(System.Xml.Serialization.XmlSerializer)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/XmlSyndicationContent.cs#L122C13-L137C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/XmlSyndicationContent.cs#L122C13-L137C10" }, { "DocsId": "M:System.ServiceModel.Syndication.XmlSyndicationContent.WriteContentsTo(System.Xml.XmlWriter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/XmlSyndicationContent.cs#L142C13-L167C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/XmlSyndicationContent.cs#L142C13-L167C10" }, { "DocsId": "P:System.ServiceModel.Syndication.XmlSyndicationContent.Extension", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/XmlSyndicationContent.cs#L87C56-L87C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/XmlSyndicationContent.cs#L87C56-L87C60" }, { "DocsId": "P:System.ServiceModel.Syndication.XmlSyndicationContent.Type", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/XmlSyndicationContent.cs#L89C40-L89C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/XmlSyndicationContent.cs#L89C40-L89C45" } ], "DocsId": "T:System.ServiceModel.Syndication.XmlSyndicationContent", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/XmlSyndicationContent.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/XmlSyndicationContent.cs" }, { "Members": [ { "DocsId": "M:System.ServiceModel.Syndication.XmlUriData.#ctor(System.String,System.UriKind,System.Xml.XmlQualifiedName)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/XmlUriData.cs#L12C13-L15C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/XmlUriData.cs#L12C13-L15C10" }, { "DocsId": "P:System.ServiceModel.Syndication.XmlUriData.ElementQualifiedName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/XmlUriData.cs#L17C56-L17C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/XmlUriData.cs#L17C56-L17C60" }, { "DocsId": "P:System.ServiceModel.Syndication.XmlUriData.UriKind", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/XmlUriData.cs#L19C34-L19C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/XmlUriData.cs#L19C34-L19C38" }, { "DocsId": "P:System.ServiceModel.Syndication.XmlUriData.UriString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/XmlUriData.cs#L21C35-L21C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/XmlUriData.cs#L21C35-L21C39" } ], "DocsId": "T:System.ServiceModel.Syndication.XmlUriData", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/XmlUriData.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/XmlUriData.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/System.ServiceProcess.ServiceController.json b/xml/SourceLinkInformation/net-8.0/System.ServiceProcess.ServiceController.json index 1c7595870b0..dd96c9783fa 100644 --- a/xml/SourceLinkInformation/net-8.0/System.ServiceProcess.ServiceController.json +++ b/xml/SourceLinkInformation/net-8.0/System.ServiceProcess.ServiceController.json @@ -1,519 +1,518 @@ { "Assembly": "System.ServiceProcess.ServiceController", - "GUID": "429473A0B21D4801BF787AC9B29128C3FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "FECE4983F09B4E61B3C9EDCD5F38F0EEFFFFFFFF", "Types": [ { "Members": [ { "DocsId": "F:System.ServiceProcess.PowerBroadcastStatus.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/PowerBroadcastStatus.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/PowerBroadcastStatus.cs" }, { "DocsId": "F:System.ServiceProcess.PowerBroadcastStatus.BatteryLow", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/PowerBroadcastStatus.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/PowerBroadcastStatus.cs" }, { "DocsId": "F:System.ServiceProcess.PowerBroadcastStatus.OemEvent", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/PowerBroadcastStatus.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/PowerBroadcastStatus.cs" }, { "DocsId": "F:System.ServiceProcess.PowerBroadcastStatus.PowerStatusChange", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/PowerBroadcastStatus.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/PowerBroadcastStatus.cs" }, { "DocsId": "F:System.ServiceProcess.PowerBroadcastStatus.QuerySuspend", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/PowerBroadcastStatus.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/PowerBroadcastStatus.cs" }, { "DocsId": "F:System.ServiceProcess.PowerBroadcastStatus.QuerySuspendFailed", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/PowerBroadcastStatus.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/PowerBroadcastStatus.cs" }, { "DocsId": "F:System.ServiceProcess.PowerBroadcastStatus.ResumeAutomatic", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/PowerBroadcastStatus.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/PowerBroadcastStatus.cs" }, { "DocsId": "F:System.ServiceProcess.PowerBroadcastStatus.ResumeCritical", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/PowerBroadcastStatus.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/PowerBroadcastStatus.cs" }, { "DocsId": "F:System.ServiceProcess.PowerBroadcastStatus.ResumeSuspend", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/PowerBroadcastStatus.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/PowerBroadcastStatus.cs" }, { "DocsId": "F:System.ServiceProcess.PowerBroadcastStatus.Suspend", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/PowerBroadcastStatus.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/PowerBroadcastStatus.cs" } ], "DocsId": "T:System.ServiceProcess.PowerBroadcastStatus", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/PowerBroadcastStatus.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/PowerBroadcastStatus.cs" }, { "Members": [ { "DocsId": "M:System.ServiceProcess.ServiceBase.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L34C9-L50C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L34C9-L50C10" }, { "DocsId": "M:System.ServiceProcess.ServiceBase.RequestAdditionalTime(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L59C9-L74C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L59C9-L74C10" }, { "DocsId": "M:System.ServiceProcess.ServiceBase.RequestAdditionalTime(System.TimeSpan)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L83C61-L83C107" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L83C61-L83C107" }, { "DocsId": "M:System.ServiceProcess.ServiceBase.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L304C13-L308C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L304C13-L308C10" }, { "DocsId": "M:System.ServiceProcess.ServiceBase.OnContinue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L320C9-L320C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L320C9-L320C10" }, { "DocsId": "M:System.ServiceProcess.ServiceBase.OnPause", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L331C9-L331C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L331C9-L331C10" }, { "DocsId": "M:System.ServiceProcess.ServiceBase.OnPowerEvent(System.ServiceProcess.PowerBroadcastStatus)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L341C13-L341C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L341C13-L341C25" }, { "DocsId": "M:System.ServiceProcess.ServiceBase.OnSessionChange(System.ServiceProcess.SessionChangeDescription)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L350C9-L350C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L350C9-L350C10" }, { "DocsId": "M:System.ServiceProcess.ServiceBase.OnShutdown", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L361C9-L361C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L361C9-L361C10" }, { "DocsId": "M:System.ServiceProcess.ServiceBase.OnStart(System.String[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L380C9-L380C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L380C9-L380C10" }, { "DocsId": "M:System.ServiceProcess.ServiceBase.OnStop", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L391C9-L391C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L391C9-L391C10" }, { "DocsId": "M:System.ServiceProcess.ServiceBase.OnCustomCommand(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L572C9-L572C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L572C9-L572C10" }, { "DocsId": "M:System.ServiceProcess.ServiceBase.Run(System.ServiceProcess.ServiceBase[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L581C13-L643C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L581C13-L643C10" }, { "DocsId": "M:System.ServiceProcess.ServiceBase.Run(System.ServiceProcess.ServiceBase)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L653C13-L657C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L653C13-L657C10" }, { "DocsId": "M:System.ServiceProcess.ServiceBase.Stop", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L661C13-L662C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L661C13-L662C10" }, { "DocsId": "M:System.ServiceProcess.ServiceBase.ServiceMainCallback(System.Int32,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L854C9-L947C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L854C9-L947C10" }, { "DocsId": "F:System.ServiceProcess.ServiceBase.MaxNameLength", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs" }, { "DocsId": "P:System.ServiceProcess.ServiceBase.AutoLog", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L100C31-L100C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L100C31-L100C35" }, { "DocsId": "P:System.ServiceProcess.ServiceBase.ExitCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L110C17-L110C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L110C17-L110C46" }, { "DocsId": "P:System.ServiceProcess.ServiceBase.CanHandlePowerEvent", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L127C17-L127C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L127C17-L127C83" }, { "DocsId": "P:System.ServiceProcess.ServiceBase.CanHandleSessionChangeEvent", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L153C17-L153C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L153C17-L153C86" }, { "DocsId": "P:System.ServiceProcess.ServiceBase.CanPauseAndContinue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L179C17-L179C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L179C17-L179C87" }, { "DocsId": "P:System.ServiceProcess.ServiceBase.CanShutdown", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L205C17-L205C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L205C17-L205C81" }, { "DocsId": "P:System.ServiceProcess.ServiceBase.CanStop", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L231C17-L231C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L231C17-L231C77" }, { "DocsId": "P:System.ServiceProcess.ServiceBase.EventLog", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L254C13-L257C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L254C13-L257C14" }, { "DocsId": "P:System.ServiceProcess.ServiceBase.ServiceHandle", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L264C17-L264C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L264C17-L264C38" }, { "DocsId": "P:System.ServiceProcess.ServiceBase.ServiceName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L275C17-L275C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L275C17-L275C37" } ], "DocsId": "T:System.ServiceProcess.ServiceBase", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs" }, { "Members": [ { "DocsId": "M:System.ServiceProcess.ServiceController.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L42C9-L46C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L42C9-L46C10" }, { "DocsId": "M:System.ServiceProcess.ServiceController.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L53C15-L55C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L53C15-L55C10" }, { "DocsId": "M:System.ServiceProcess.ServiceController.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L63C9-L80C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L63C9-L80C10" }, { "DocsId": "M:System.ServiceProcess.ServiceController.Close", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L474C13-L483C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L474C13-L483C10" }, { "DocsId": "M:System.ServiceProcess.ServiceController.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L490C13-L493C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L490C13-L493C10" }, { "DocsId": "M:System.ServiceProcess.ServiceController.GetDevices", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L667C13-L667C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L667C13-L667C51" }, { "DocsId": "M:System.ServiceProcess.ServiceController.GetDevices(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L677C13-L677C103" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L677C13-L677C103" }, { "DocsId": "M:System.ServiceProcess.ServiceController.GetServices", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L707C13-L707C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L707C13-L707C52" }, { "DocsId": "M:System.ServiceProcess.ServiceController.GetServices(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L717C13-L717C102" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L717C13-L717C102" }, { "DocsId": "M:System.ServiceProcess.ServiceController.Pause", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L809C13-L818C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L809C13-L818C10" }, { "DocsId": "M:System.ServiceProcess.ServiceController.Continue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L825C13-L833C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L825C13-L833C10" }, { "DocsId": "M:System.ServiceProcess.ServiceController.ExecuteCommand(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L841C13-L849C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L841C13-L849C10" }, { "DocsId": "M:System.ServiceProcess.ServiceController.Refresh", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L856C13-L860C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L856C13-L860C10" }, { "DocsId": "M:System.ServiceProcess.ServiceController.Start", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L867C13-L868C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L867C13-L868C10" }, { "DocsId": "M:System.ServiceProcess.ServiceController.Start(System.String[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L875C13-L915C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L875C13-L915C10" }, { "DocsId": "M:System.ServiceProcess.ServiceController.Stop", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L924C13-L925C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L924C13-L925C10" }, { "DocsId": "M:System.ServiceProcess.ServiceController.Stop(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L944C13-L968C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L944C13-L968C10" }, { "DocsId": "M:System.ServiceProcess.ServiceController.WaitForStatus(System.ServiceProcess.ServiceControllerStatus)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L976C13-L977C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L976C13-L977C10" }, { "DocsId": "M:System.ServiceProcess.ServiceController.WaitForStatus(System.ServiceProcess.ServiceControllerStatus,System.TimeSpan)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L986C13-L999C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L986C13-L999C10" }, { "DocsId": "P:System.ServiceProcess.ServiceController.CanPauseAndContinue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L122C17-L123C104" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L122C17-L123C104" }, { "DocsId": "P:System.ServiceProcess.ServiceController.CanShutdown", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L134C17-L135C98" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L134C17-L135C98" }, { "DocsId": "P:System.ServiceProcess.ServiceController.CanStop", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L146C17-L147C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L146C17-L147C94" }, { "DocsId": "P:System.ServiceProcess.ServiceController.DisplayName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L158C17-L160C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L158C17-L160C37" }, { "DocsId": "P:System.ServiceProcess.ServiceController.DependentServices", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L187C17-L234C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L187C17-L234C14" }, { "DocsId": "P:System.ServiceProcess.ServiceController.MachineName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L244C17-L244C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L244C17-L244C37" }, { "DocsId": "P:System.ServiceProcess.ServiceController.ServiceName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L271C17-L273C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L271C17-L273C30" }, { "DocsId": "P:System.ServiceProcess.ServiceController.ServicesDependedOn", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L304C17-L381C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L304C17-L381C14" }, { "DocsId": "P:System.ServiceProcess.ServiceController.StartType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L388C17-L418C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L388C17-L418C14" }, { "DocsId": "P:System.ServiceProcess.ServiceController.ServiceHandle", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L425C17-L425C93" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L425C17-L425C93" }, { "DocsId": "P:System.ServiceProcess.ServiceController.Status", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L439C17-L440C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L439C17-L440C32" }, { "DocsId": "P:System.ServiceProcess.ServiceController.ServiceType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L454C17-L455C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L454C17-L455C43" } ], "DocsId": "T:System.ServiceProcess.ServiceController", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs" }, { "Members": [ { "DocsId": "F:System.ServiceProcess.ServiceControllerStatus.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceControllerStatus.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceControllerStatus.cs" }, { "DocsId": "F:System.ServiceProcess.ServiceControllerStatus.ContinuePending", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceControllerStatus.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceControllerStatus.cs" }, { "DocsId": "F:System.ServiceProcess.ServiceControllerStatus.Paused", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceControllerStatus.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceControllerStatus.cs" }, { "DocsId": "F:System.ServiceProcess.ServiceControllerStatus.PausePending", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceControllerStatus.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceControllerStatus.cs" }, { "DocsId": "F:System.ServiceProcess.ServiceControllerStatus.Running", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceControllerStatus.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceControllerStatus.cs" }, { "DocsId": "F:System.ServiceProcess.ServiceControllerStatus.StartPending", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceControllerStatus.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceControllerStatus.cs" }, { "DocsId": "F:System.ServiceProcess.ServiceControllerStatus.Stopped", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceControllerStatus.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceControllerStatus.cs" }, { "DocsId": "F:System.ServiceProcess.ServiceControllerStatus.StopPending", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceControllerStatus.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceControllerStatus.cs" } ], "DocsId": "T:System.ServiceProcess.ServiceControllerStatus", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceControllerStatus.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceControllerStatus.cs" }, { "Members": [ { "DocsId": "F:System.ServiceProcess.ServiceStartMode.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceStartMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceStartMode.cs" }, { "DocsId": "F:System.ServiceProcess.ServiceStartMode.Manual", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceStartMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceStartMode.cs" }, { "DocsId": "F:System.ServiceProcess.ServiceStartMode.Automatic", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceStartMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceStartMode.cs" }, { "DocsId": "F:System.ServiceProcess.ServiceStartMode.Disabled", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceStartMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceStartMode.cs" }, { "DocsId": "F:System.ServiceProcess.ServiceStartMode.Boot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceStartMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceStartMode.cs" }, { "DocsId": "F:System.ServiceProcess.ServiceStartMode.System", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceStartMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceStartMode.cs" } ], "DocsId": "T:System.ServiceProcess.ServiceStartMode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceStartMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceStartMode.cs" }, { "Members": [ { "DocsId": "M:System.ServiceProcess.ServiceProcessDescriptionAttribute.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceProcessDescriptionAttribute.cs#L21C73-L23C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceProcessDescriptionAttribute.cs#L21C73-L23C10" }, { "DocsId": "P:System.ServiceProcess.ServiceProcessDescriptionAttribute.Description", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceProcessDescriptionAttribute.cs#L32C17-L37C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceProcessDescriptionAttribute.cs#L32C17-L37C41" } ], "DocsId": "T:System.ServiceProcess.ServiceProcessDescriptionAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceProcessDescriptionAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceProcessDescriptionAttribute.cs" }, { "Members": [ { "DocsId": "F:System.ServiceProcess.ServiceType.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceType.cs" }, { "DocsId": "F:System.ServiceProcess.ServiceType.Adapter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceType.cs" }, { "DocsId": "F:System.ServiceProcess.ServiceType.FileSystemDriver", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceType.cs" }, { "DocsId": "F:System.ServiceProcess.ServiceType.InteractiveProcess", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceType.cs" }, { "DocsId": "F:System.ServiceProcess.ServiceType.KernelDriver", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceType.cs" }, { "DocsId": "F:System.ServiceProcess.ServiceType.RecognizerDriver", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceType.cs" }, { "DocsId": "F:System.ServiceProcess.ServiceType.Win32OwnProcess", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceType.cs" }, { "DocsId": "F:System.ServiceProcess.ServiceType.Win32ShareProcess", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceType.cs" } ], "DocsId": "T:System.ServiceProcess.ServiceType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceType.cs" }, { "Members": [ { "DocsId": "M:System.ServiceProcess.SessionChangeDescription.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/SessionChangeDescription.cs#L24C13-L24C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/SessionChangeDescription.cs#L24C13-L24C36" }, { "DocsId": "M:System.ServiceProcess.SessionChangeDescription.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/SessionChangeDescription.cs#L27C13-L27C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/SessionChangeDescription.cs#L27C13-L27C67" }, { "DocsId": "M:System.ServiceProcess.SessionChangeDescription.Equals(System.ServiceProcess.SessionChangeDescription)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/SessionChangeDescription.cs#L30C13-L31C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/SessionChangeDescription.cs#L30C13-L31C55" }, { "DocsId": "M:System.ServiceProcess.SessionChangeDescription.op_Equality(System.ServiceProcess.SessionChangeDescription,System.ServiceProcess.SessionChangeDescription)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/SessionChangeDescription.cs#L34C13-L34C24" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/SessionChangeDescription.cs#L34C13-L34C24" }, { "DocsId": "M:System.ServiceProcess.SessionChangeDescription.op_Inequality(System.ServiceProcess.SessionChangeDescription,System.ServiceProcess.SessionChangeDescription)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/SessionChangeDescription.cs#L37C13-L37C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/SessionChangeDescription.cs#L37C13-L37C25" }, { "DocsId": "P:System.ServiceProcess.SessionChangeDescription.Reason", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/SessionChangeDescription.cs#L19C45-L19C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/SessionChangeDescription.cs#L19C45-L19C49" }, { "DocsId": "P:System.ServiceProcess.SessionChangeDescription.SessionId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/SessionChangeDescription.cs#L21C32-L21C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/SessionChangeDescription.cs#L21C32-L21C36" } ], "DocsId": "T:System.ServiceProcess.SessionChangeDescription", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/SessionChangeDescription.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/SessionChangeDescription.cs" }, { "Members": [ { "DocsId": "F:System.ServiceProcess.SessionChangeReason.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/SessionChangeReason.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/SessionChangeReason.cs" }, { "DocsId": "F:System.ServiceProcess.SessionChangeReason.ConsoleConnect", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/SessionChangeReason.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/SessionChangeReason.cs" }, { "DocsId": "F:System.ServiceProcess.SessionChangeReason.ConsoleDisconnect", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/SessionChangeReason.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/SessionChangeReason.cs" }, { "DocsId": "F:System.ServiceProcess.SessionChangeReason.RemoteConnect", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/SessionChangeReason.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/SessionChangeReason.cs" }, { "DocsId": "F:System.ServiceProcess.SessionChangeReason.RemoteDisconnect", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/SessionChangeReason.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/SessionChangeReason.cs" }, { "DocsId": "F:System.ServiceProcess.SessionChangeReason.SessionLogon", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/SessionChangeReason.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/SessionChangeReason.cs" }, { "DocsId": "F:System.ServiceProcess.SessionChangeReason.SessionLogoff", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/SessionChangeReason.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/SessionChangeReason.cs" }, { "DocsId": "F:System.ServiceProcess.SessionChangeReason.SessionLock", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/SessionChangeReason.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/SessionChangeReason.cs" }, { "DocsId": "F:System.ServiceProcess.SessionChangeReason.SessionUnlock", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/SessionChangeReason.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/SessionChangeReason.cs" }, { "DocsId": "F:System.ServiceProcess.SessionChangeReason.SessionRemoteControl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/SessionChangeReason.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/SessionChangeReason.cs" } ], "DocsId": "T:System.ServiceProcess.SessionChangeReason", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/SessionChangeReason.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/SessionChangeReason.cs" }, { "Members": [ { "DocsId": "M:System.ServiceProcess.TimeoutException.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/TimeoutException.cs#L15C9-L18C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/TimeoutException.cs#L15C9-L18C10" }, { "DocsId": "M:System.ServiceProcess.TimeoutException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/TimeoutException.cs#L20C52-L23C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/TimeoutException.cs#L20C52-L23C10" }, { "DocsId": "M:System.ServiceProcess.TimeoutException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/TimeoutException.cs#L26C15-L29C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/TimeoutException.cs#L26C15-L29C10" }, { "DocsId": "M:System.ServiceProcess.TimeoutException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/TimeoutException.cs#L36C15-L38C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/TimeoutException.cs#L36C15-L38C10" } ], "DocsId": "T:System.ServiceProcess.TimeoutException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/TimeoutException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/TimeoutException.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/System.Speech.json b/xml/SourceLinkInformation/net-8.0/System.Speech.json index b7bada8f3f2..5633f82fade 100644 --- a/xml/SourceLinkInformation/net-8.0/System.Speech.json +++ b/xml/SourceLinkInformation/net-8.0/System.Speech.json @@ -1,3730 +1,3729 @@ { "Assembly": "System.Speech", - "GUID": "240C1E4B4F8F451D868910FD143C7EEAFFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "BF425D4706044904B5EA8504DBD28D99FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "P:System.Speech.Synthesis.BookmarkReachedEventArgs.Bookmark", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/BookmarkEventArgs.cs#L23C17-L23C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/BookmarkEventArgs.cs#L23C17-L23C34" }, { "DocsId": "P:System.Speech.Synthesis.BookmarkReachedEventArgs.AudioPosition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/BookmarkEventArgs.cs#L30C17-L30C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/BookmarkEventArgs.cs#L30C17-L30C39" } ], "DocsId": "T:System.Speech.Synthesis.BookmarkReachedEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/BookmarkEventArgs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/BookmarkEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Speech.Synthesis.FilePrompt.#ctor(System.String,System.Speech.Synthesis.SynthesisMediaType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/FilePrompt.cs#L13C15-L15C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/FilePrompt.cs#L13C15-L15C10" }, { "DocsId": "M:System.Speech.Synthesis.FilePrompt.#ctor(System.Uri,System.Speech.Synthesis.SynthesisMediaType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/FilePrompt.cs#L17C15-L19C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/FilePrompt.cs#L17C15-L19C10" } ], "DocsId": "T:System.Speech.Synthesis.FilePrompt", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/FilePrompt.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/FilePrompt.cs" }, { "Members": [ { "DocsId": "M:System.Speech.Synthesis.InstalledVoice.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/InstalledVoice.cs#L51C13-L57C190" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/InstalledVoice.cs#L51C13-L57C190" }, { "DocsId": "M:System.Speech.Synthesis.InstalledVoice.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/InstalledVoice.cs#L61C13-L61C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/InstalledVoice.cs#L61C13-L61C49" }, { "DocsId": "P:System.Speech.Synthesis.InstalledVoice.VoiceInfo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/InstalledVoice.cs#L31C17-L31C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/InstalledVoice.cs#L31C17-L31C31" }, { "DocsId": "P:System.Speech.Synthesis.InstalledVoice.Enabled", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/InstalledVoice.cs#L38C17-L38C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/InstalledVoice.cs#L38C17-L38C33" } ], "DocsId": "T:System.Speech.Synthesis.InstalledVoice", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/InstalledVoice.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/InstalledVoice.cs" }, { "Members": [ { "DocsId": "P:System.Speech.Synthesis.PhonemeReachedEventArgs.Phoneme", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PhonemeEventArgs.cs#L23C19-L23C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PhonemeEventArgs.cs#L23C19-L23C42" }, { "DocsId": "P:System.Speech.Synthesis.PhonemeReachedEventArgs.AudioPosition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PhonemeEventArgs.cs#L27C19-L27C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PhonemeEventArgs.cs#L27C19-L27C41" }, { "DocsId": "P:System.Speech.Synthesis.PhonemeReachedEventArgs.Duration", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PhonemeEventArgs.cs#L31C19-L31C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PhonemeEventArgs.cs#L31C19-L31C36" }, { "DocsId": "P:System.Speech.Synthesis.PhonemeReachedEventArgs.Emphasis", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PhonemeEventArgs.cs#L35C19-L35C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PhonemeEventArgs.cs#L35C19-L35C36" }, { "DocsId": "P:System.Speech.Synthesis.PhonemeReachedEventArgs.NextPhoneme", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PhonemeEventArgs.cs#L39C19-L39C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PhonemeEventArgs.cs#L39C19-L39C39" } ], "DocsId": "T:System.Speech.Synthesis.PhonemeReachedEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PhonemeEventArgs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PhonemeEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Speech.Synthesis.Prompt.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/Prompt.cs#L15C15-L17C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/Prompt.cs#L15C15-L17C10" }, { "DocsId": "M:System.Speech.Synthesis.Prompt.#ctor(System.Speech.Synthesis.PromptBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/Prompt.cs#L18C9-L24C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/Prompt.cs#L18C9-L24C10" }, { "DocsId": "M:System.Speech.Synthesis.Prompt.#ctor(System.String,System.Speech.Synthesis.SynthesisTextFormat)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/Prompt.cs#L27C9-L39C106" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/Prompt.cs#L27C9-L39C106" }, { "DocsId": "P:System.Speech.Synthesis.Prompt.IsCompleted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/Prompt.cs#L87C17-L87C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/Prompt.cs#L87C17-L87C35" } ], "DocsId": "T:System.Speech.Synthesis.Prompt", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/Prompt.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/Prompt.cs" }, { "Members": [ { "DocsId": "F:System.Speech.Synthesis.SynthesisMediaType.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/Prompt.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/Prompt.cs" }, { "DocsId": "F:System.Speech.Synthesis.SynthesisMediaType.Text", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/Prompt.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/Prompt.cs" }, { "DocsId": "F:System.Speech.Synthesis.SynthesisMediaType.Ssml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/Prompt.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/Prompt.cs" }, { "DocsId": "F:System.Speech.Synthesis.SynthesisMediaType.WaveAudio", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/Prompt.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/Prompt.cs" } ], "DocsId": "T:System.Speech.Synthesis.SynthesisMediaType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/Prompt.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/Prompt.cs" }, { "Members": [ { "DocsId": "F:System.Speech.Synthesis.SynthesisTextFormat.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/Prompt.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/Prompt.cs" }, { "DocsId": "F:System.Speech.Synthesis.SynthesisTextFormat.Text", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/Prompt.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/Prompt.cs" }, { "DocsId": "F:System.Speech.Synthesis.SynthesisTextFormat.Ssml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/Prompt.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/Prompt.cs" } ], "DocsId": "T:System.Speech.Synthesis.SynthesisTextFormat", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/Prompt.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/Prompt.cs" }, { "Members": [ { "DocsId": "M:System.Speech.Synthesis.PromptBuilder.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L20C15-L22C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L20C15-L22C10" }, { "DocsId": "M:System.Speech.Synthesis.PromptBuilder.#ctor(System.Globalization.CultureInfo)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L985C9-L35C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L985C9-L35C10" }, { "DocsId": "M:System.Speech.Synthesis.PromptBuilder.ClearContent", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L48C13-L50C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L48C13-L50C10" }, { "DocsId": "M:System.Speech.Synthesis.PromptBuilder.AppendText(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L57C13-L63C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L57C13-L63C10" }, { "DocsId": "M:System.Speech.Synthesis.PromptBuilder.AppendText(System.String,System.Speech.Synthesis.PromptRate)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L66C13-L101C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L66C13-L101C10" }, { "DocsId": "M:System.Speech.Synthesis.PromptBuilder.AppendText(System.String,System.Speech.Synthesis.PromptVolume)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L104C13-L141C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L104C13-L141C10" }, { "DocsId": "M:System.Speech.Synthesis.PromptBuilder.AppendText(System.String,System.Speech.Synthesis.PromptEmphasis)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L144C13-L162C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L144C13-L162C10" }, { "DocsId": "M:System.Speech.Synthesis.PromptBuilder.StartStyle(System.Speech.Synthesis.PromptStyle)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L165C13-L249C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L165C13-L249C10" }, { "DocsId": "M:System.Speech.Synthesis.PromptBuilder.EndStyle", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L252C13-L268C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L252C13-L268C10" }, { "DocsId": "M:System.Speech.Synthesis.PromptBuilder.StartVoice(System.Speech.Synthesis.VoiceInfo)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L271C13-L318C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L271C13-L318C10" }, { "DocsId": "M:System.Speech.Synthesis.PromptBuilder.StartVoice(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L321C13-L324C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L321C13-L324C10" }, { "DocsId": "M:System.Speech.Synthesis.PromptBuilder.StartVoice(System.Speech.Synthesis.VoiceGender)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L327C13-L328C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L327C13-L328C10" }, { "DocsId": "M:System.Speech.Synthesis.PromptBuilder.StartVoice(System.Speech.Synthesis.VoiceGender,System.Speech.Synthesis.VoiceAge)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L331C13-L332C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L331C13-L332C10" }, { "DocsId": "M:System.Speech.Synthesis.PromptBuilder.StartVoice(System.Speech.Synthesis.VoiceGender,System.Speech.Synthesis.VoiceAge,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L335C13-L336C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L335C13-L336C10" }, { "DocsId": "M:System.Speech.Synthesis.PromptBuilder.StartVoice(System.Globalization.CultureInfo)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L339C13-L340C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L339C13-L340C10" }, { "DocsId": "M:System.Speech.Synthesis.PromptBuilder.EndVoice", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L343C13-L349C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L343C13-L349C10" }, { "DocsId": "M:System.Speech.Synthesis.PromptBuilder.StartParagraph", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L354C13-L355C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L354C13-L355C10" }, { "DocsId": "M:System.Speech.Synthesis.PromptBuilder.StartParagraph(System.Globalization.CultureInfo)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L359C13-L379C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L359C13-L379C10" }, { "DocsId": "M:System.Speech.Synthesis.PromptBuilder.EndParagraph", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L382C13-L387C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L382C13-L387C10" }, { "DocsId": "M:System.Speech.Synthesis.PromptBuilder.StartSentence", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L390C13-L391C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L390C13-L391C10" }, { "DocsId": "M:System.Speech.Synthesis.PromptBuilder.StartSentence(System.Globalization.CultureInfo)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L395C13-L416C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L395C13-L416C10" }, { "DocsId": "M:System.Speech.Synthesis.PromptBuilder.EndSentence", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L419C13-L424C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L419C13-L424C10" }, { "DocsId": "M:System.Speech.Synthesis.PromptBuilder.AppendTextWithHint(System.String,System.Speech.Synthesis.SayAs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L427C13-L543C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L427C13-L543C10" }, { "DocsId": "M:System.Speech.Synthesis.PromptBuilder.AppendTextWithHint(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L546C13-L557C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L546C13-L557C10" }, { "DocsId": "M:System.Speech.Synthesis.PromptBuilder.AppendTextWithPronunciation(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L560C13-L574C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L560C13-L574C10" }, { "DocsId": "M:System.Speech.Synthesis.PromptBuilder.AppendTextWithAlias(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L577C13-L588C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L577C13-L588C10" }, { "DocsId": "M:System.Speech.Synthesis.PromptBuilder.AppendBreak", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L592C13-L595C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L592C13-L595C10" }, { "DocsId": "M:System.Speech.Synthesis.PromptBuilder.AppendBreak(System.Speech.Synthesis.PromptBreak)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L599C13-L638C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L599C13-L638C10" }, { "DocsId": "M:System.Speech.Synthesis.PromptBuilder.AppendBreak(System.TimeSpan)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L642C13-L654C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L642C13-L654C10" }, { "DocsId": "M:System.Speech.Synthesis.PromptBuilder.AppendAudio(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L659C13-L675C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L659C13-L675C10" }, { "DocsId": "M:System.Speech.Synthesis.PromptBuilder.AppendAudio(System.Uri)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L678C13-L688C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L678C13-L688C10" }, { "DocsId": "M:System.Speech.Synthesis.PromptBuilder.AppendAudio(System.Uri,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L691C13-L702C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L691C13-L702C10" }, { "DocsId": "M:System.Speech.Synthesis.PromptBuilder.AppendBookmark(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L707C13-L717C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L707C13-L717C10" }, { "DocsId": "M:System.Speech.Synthesis.PromptBuilder.AppendPromptBuilder(System.Speech.Synthesis.PromptBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L720C13-L727C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L720C13-L727C10" }, { "DocsId": "M:System.Speech.Synthesis.PromptBuilder.AppendSsml(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L730C13-L733C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L730C13-L733C10" }, { "DocsId": "M:System.Speech.Synthesis.PromptBuilder.AppendSsml(System.Uri)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L736C13-L751C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L736C13-L751C10" }, { "DocsId": "M:System.Speech.Synthesis.PromptBuilder.AppendSsml(System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L754C13-L757C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L754C13-L757C10" }, { "DocsId": "M:System.Speech.Synthesis.PromptBuilder.AppendSsmlMarkup(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L763C13-L766C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L763C13-L766C10" }, { "DocsId": "M:System.Speech.Synthesis.PromptBuilder.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L770C20-L815C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L770C20-L815C10" }, { "DocsId": "P:System.Speech.Synthesis.PromptBuilder.IsEmpty", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L824C17-L824C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L824C17-L824C45" }, { "DocsId": "P:System.Speech.Synthesis.PromptBuilder.Culture", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L831C17-L831C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L831C17-L831C33" } ], "DocsId": "T:System.Speech.Synthesis.PromptBuilder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs" }, { "Members": [ { "DocsId": "P:System.Speech.Synthesis.PromptEventArgs.Prompt", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptEventArgs.cs#L25C17-L25C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptEventArgs.cs#L25C17-L25C32" } ], "DocsId": "T:System.Speech.Synthesis.PromptEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptEventArgs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptEventArgs.cs" }, { "Members": [], "DocsId": "T:System.Speech.Synthesis.SpeakStartedEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptEventArgs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Speech.Synthesis.PromptStyle.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs#L10C9-L12C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs#L10C9-L12C10" }, { "DocsId": "M:System.Speech.Synthesis.PromptStyle.#ctor(System.Speech.Synthesis.PromptRate)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs#L13C9-L16C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs#L13C9-L16C10" }, { "DocsId": "M:System.Speech.Synthesis.PromptStyle.#ctor(System.Speech.Synthesis.PromptVolume)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs#L17C9-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs#L17C9-L20C10" }, { "DocsId": "M:System.Speech.Synthesis.PromptStyle.#ctor(System.Speech.Synthesis.PromptEmphasis)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs#L21C9-L24C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs#L21C9-L24C10" }, { "DocsId": "P:System.Speech.Synthesis.PromptStyle.Rate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs#L35C17-L35C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs#L35C17-L35C30" }, { "DocsId": "P:System.Speech.Synthesis.PromptStyle.Volume", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs#L46C17-L46C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs#L46C17-L46C32" }, { "DocsId": "P:System.Speech.Synthesis.PromptStyle.Emphasis", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs#L57C17-L57C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs#L57C17-L57C34" } ], "DocsId": "T:System.Speech.Synthesis.PromptStyle", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "Members": [ { "DocsId": "F:System.Speech.Synthesis.SayAs.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.SayAs.SpellOut", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.SayAs.NumberOrdinal", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.SayAs.NumberCardinal", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.SayAs.Date", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.SayAs.DayMonthYear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.SayAs.MonthDayYear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.SayAs.YearMonthDay", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.SayAs.YearMonth", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.SayAs.MonthYear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.SayAs.MonthDay", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.SayAs.DayMonth", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.SayAs.Year", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.SayAs.Month", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.SayAs.Day", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.SayAs.Time", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.SayAs.Time24", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.SayAs.Time12", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.SayAs.Telephone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.SayAs.Text", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" } ], "DocsId": "T:System.Speech.Synthesis.SayAs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "Members": [ { "DocsId": "F:System.Speech.Synthesis.VoiceGender.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.VoiceGender.NotSet", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.VoiceGender.Male", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.VoiceGender.Female", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.VoiceGender.Neutral", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" } ], "DocsId": "T:System.Speech.Synthesis.VoiceGender", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "Members": [ { "DocsId": "F:System.Speech.Synthesis.VoiceAge.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.VoiceAge.NotSet", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.VoiceAge.Child", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.VoiceAge.Teen", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.VoiceAge.Adult", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.VoiceAge.Senior", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" } ], "DocsId": "T:System.Speech.Synthesis.VoiceAge", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "Members": [ { "DocsId": "F:System.Speech.Synthesis.PromptRate.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.PromptRate.NotSet", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.PromptRate.ExtraFast", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.PromptRate.Fast", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.PromptRate.Medium", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.PromptRate.Slow", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.PromptRate.ExtraSlow", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" } ], "DocsId": "T:System.Speech.Synthesis.PromptRate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "Members": [ { "DocsId": "F:System.Speech.Synthesis.PromptVolume.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.PromptVolume.NotSet", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.PromptVolume.Silent", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.PromptVolume.ExtraSoft", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.PromptVolume.Soft", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.PromptVolume.Medium", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.PromptVolume.Loud", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.PromptVolume.ExtraLoud", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.PromptVolume.Default", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" } ], "DocsId": "T:System.Speech.Synthesis.PromptVolume", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "Members": [ { "DocsId": "F:System.Speech.Synthesis.PromptEmphasis.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.PromptEmphasis.NotSet", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.PromptEmphasis.Strong", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.PromptEmphasis.Moderate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.PromptEmphasis.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.PromptEmphasis.Reduced", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" } ], "DocsId": "T:System.Speech.Synthesis.PromptEmphasis", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "Members": [ { "DocsId": "F:System.Speech.Synthesis.PromptBreak.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.PromptBreak.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.PromptBreak.ExtraSmall", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.PromptBreak.Small", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.PromptBreak.Medium", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.PromptBreak.Large", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.PromptBreak.ExtraLarge", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" } ], "DocsId": "T:System.Speech.Synthesis.PromptBreak", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "Members": [], "DocsId": "T:System.Speech.Synthesis.SpeakCompletedEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeakCompletedEventArgs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeakCompletedEventArgs.cs" }, { "Members": [ { "DocsId": "P:System.Speech.Synthesis.SpeakProgressEventArgs.AudioPosition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeakProgressEventArgs.cs#L22C17-L22C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeakProgressEventArgs.cs#L22C17-L22C39" }, { "DocsId": "P:System.Speech.Synthesis.SpeakProgressEventArgs.CharacterPosition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeakProgressEventArgs.cs#L29C17-L29C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeakProgressEventArgs.cs#L29C17-L29C34" }, { "DocsId": "P:System.Speech.Synthesis.SpeakProgressEventArgs.CharacterCount", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeakProgressEventArgs.cs#L36C17-L36C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeakProgressEventArgs.cs#L36C17-L36C34" }, { "DocsId": "P:System.Speech.Synthesis.SpeakProgressEventArgs.Text", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeakProgressEventArgs.cs#L47C17-L47C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeakProgressEventArgs.cs#L47C17-L47C30" } ], "DocsId": "T:System.Speech.Synthesis.SpeakProgressEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeakProgressEventArgs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeakProgressEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Speech.Synthesis.SpeechSynthesizer.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L18C9-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L18C9-L20C10" }, { "DocsId": "M:System.Speech.Synthesis.SpeechSynthesizer.Finalize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L24C13-L25C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L24C13-L25C10" }, { "DocsId": "M:System.Speech.Synthesis.SpeechSynthesizer.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L28C13-L30C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L28C13-L30C10" }, { "DocsId": "M:System.Speech.Synthesis.SpeechSynthesizer.SelectVoice(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L37C13-L46C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L37C13-L46C10" }, { "DocsId": "M:System.Speech.Synthesis.SpeechSynthesizer.SelectVoiceByHints(System.Speech.Synthesis.VoiceGender)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L49C13-L50C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L49C13-L50C10" }, { "DocsId": "M:System.Speech.Synthesis.SpeechSynthesizer.SelectVoiceByHints(System.Speech.Synthesis.VoiceGender,System.Speech.Synthesis.VoiceAge)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L53C13-L54C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L53C13-L54C10" }, { "DocsId": "M:System.Speech.Synthesis.SpeechSynthesizer.SelectVoiceByHints(System.Speech.Synthesis.VoiceGender,System.Speech.Synthesis.VoiceAge,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L57C13-L58C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L57C13-L58C10" }, { "DocsId": "M:System.Speech.Synthesis.SpeechSynthesizer.SelectVoiceByHints(System.Speech.Synthesis.VoiceGender,System.Speech.Synthesis.VoiceAge,System.Int32,System.Globalization.CultureInfo)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L61C13-L85C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L61C13-L85C10" }, { "DocsId": "M:System.Speech.Synthesis.SpeechSynthesizer.SpeakAsync(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L88C13-L92C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L88C13-L92C27" }, { "DocsId": "M:System.Speech.Synthesis.SpeechSynthesizer.SpeakAsync(System.Speech.Synthesis.Prompt)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L96C13-L100C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L96C13-L100C10" }, { "DocsId": "M:System.Speech.Synthesis.SpeechSynthesizer.SpeakSsmlAsync(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L103C13-L107C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L103C13-L107C27" }, { "DocsId": "M:System.Speech.Synthesis.SpeechSynthesizer.SpeakAsync(System.Speech.Synthesis.PromptBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L111C13-L115C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L111C13-L115C27" }, { "DocsId": "M:System.Speech.Synthesis.SpeechSynthesizer.Speak(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L119C13-L120C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L119C13-L120C10" }, { "DocsId": "M:System.Speech.Synthesis.SpeechSynthesizer.Speak(System.Speech.Synthesis.Prompt)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L123C13-L134C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L123C13-L134C10" }, { "DocsId": "M:System.Speech.Synthesis.SpeechSynthesizer.Speak(System.Speech.Synthesis.PromptBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L137C13-L138C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L137C13-L138C10" }, { "DocsId": "M:System.Speech.Synthesis.SpeechSynthesizer.SpeakSsml(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L141C13-L142C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L141C13-L142C10" }, { "DocsId": "M:System.Speech.Synthesis.SpeechSynthesizer.Pause", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L150C13-L155C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L150C13-L155C10" }, { "DocsId": "M:System.Speech.Synthesis.SpeechSynthesizer.Resume", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L162C13-L167C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L162C13-L167C10" }, { "DocsId": "M:System.Speech.Synthesis.SpeechSynthesizer.SpeakAsyncCancel(System.Speech.Synthesis.Prompt)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L174C13-L177C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L174C13-L177C10" }, { "DocsId": "M:System.Speech.Synthesis.SpeechSynthesizer.SpeakAsyncCancelAll", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L184C13-L185C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L184C13-L185C10" }, { "DocsId": "M:System.Speech.Synthesis.SpeechSynthesizer.SetOutputToWaveFile(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L189C13-L193C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L189C13-L193C10" }, { "DocsId": "M:System.Speech.Synthesis.SpeechSynthesizer.SetOutputToWaveFile(System.String,System.Speech.AudioFormat.SpeechAudioFormatInfo)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L197C13-L202C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L197C13-L202C10" }, { "DocsId": "M:System.Speech.Synthesis.SpeechSynthesizer.SetOutputToWaveStream(System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L205C13-L208C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L205C13-L208C10" }, { "DocsId": "M:System.Speech.Synthesis.SpeechSynthesizer.SetOutputToAudioStream(System.IO.Stream,System.Speech.AudioFormat.SpeechAudioFormatInfo)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L211C13-L215C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L211C13-L215C10" }, { "DocsId": "M:System.Speech.Synthesis.SpeechSynthesizer.SetOutputToDefaultAudioDevice", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L218C13-L219C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L218C13-L219C10" }, { "DocsId": "M:System.Speech.Synthesis.SpeechSynthesizer.SetOutputToNull", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L224C13-L237C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L224C13-L237C10" }, { "DocsId": "M:System.Speech.Synthesis.SpeechSynthesizer.GetCurrentlySpokenPrompt", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L241C13-L241C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L241C13-L241C44" }, { "DocsId": "M:System.Speech.Synthesis.SpeechSynthesizer.GetInstalledVoices", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L245C13-L245C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L245C13-L245C62" }, { "DocsId": "M:System.Speech.Synthesis.SpeechSynthesizer.GetInstalledVoices(System.Globalization.CultureInfo)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L249C13-L256C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L249C13-L256C65" }, { "DocsId": "M:System.Speech.Synthesis.SpeechSynthesizer.AddLexicon(System.Uri,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L260C13-L263C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L260C13-L263C10" }, { "DocsId": "M:System.Speech.Synthesis.SpeechSynthesizer.RemoveLexicon(System.Uri)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L266C13-L269C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L266C13-L269C10" }, { "DocsId": "E:System.Speech.Synthesis.SpeechSynthesizer.SpeakStarted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L277C17-L279C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L277C17-L279C14" }, { "DocsId": "E:System.Speech.Synthesis.SpeechSynthesizer.SpeakCompleted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L292C17-L294C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L292C17-L294C14" }, { "DocsId": "E:System.Speech.Synthesis.SpeechSynthesizer.SpeakProgress", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L307C17-L309C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L307C17-L309C14" }, { "DocsId": "E:System.Speech.Synthesis.SpeechSynthesizer.BookmarkReached", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L322C17-L324C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L322C17-L324C14" }, { "DocsId": "E:System.Speech.Synthesis.SpeechSynthesizer.VoiceChange", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L337C17-L339C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L337C17-L339C14" }, { "DocsId": "E:System.Speech.Synthesis.SpeechSynthesizer.PhonemeReached", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L354C17-L356C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L354C17-L356C14" }, { "DocsId": "E:System.Speech.Synthesis.SpeechSynthesizer.VisemeReached", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L369C17-L371C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L369C17-L371C14" }, { "DocsId": "E:System.Speech.Synthesis.SpeechSynthesizer.StateChanged", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L386C17-L388C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L386C17-L388C14" }, { "DocsId": "P:System.Speech.Synthesis.SpeechSynthesizer.State", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L406C17-L406C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L406C17-L406C47" }, { "DocsId": "P:System.Speech.Synthesis.SpeechSynthesizer.Rate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L413C17-L413C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L413C17-L413C46" }, { "DocsId": "P:System.Speech.Synthesis.SpeechSynthesizer.Volume", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L428C17-L428C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L428C17-L428C48" }, { "DocsId": "P:System.Speech.Synthesis.SpeechSynthesizer.Voice", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L444C17-L444C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L444C17-L444C70" } ], "DocsId": "T:System.Speech.Synthesis.SpeechSynthesizer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs" }, { "Members": [ { "DocsId": "F:System.Speech.Synthesis.SynthesizerState.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs" }, { "DocsId": "F:System.Speech.Synthesis.SynthesizerState.Ready", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs" }, { "DocsId": "F:System.Speech.Synthesis.SynthesizerState.Speaking", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs" }, { "DocsId": "F:System.Speech.Synthesis.SynthesizerState.Paused", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs" } ], "DocsId": "T:System.Speech.Synthesis.SynthesizerState", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs" }, { "Members": [ { "DocsId": "F:System.Speech.Synthesis.SynthesizerEmphasis.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs" }, { "DocsId": "F:System.Speech.Synthesis.SynthesizerEmphasis.Stressed", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs" }, { "DocsId": "F:System.Speech.Synthesis.SynthesizerEmphasis.Emphasized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs" } ], "DocsId": "T:System.Speech.Synthesis.SynthesizerEmphasis", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs" }, { "Members": [ { "DocsId": "P:System.Speech.Synthesis.StateChangedEventArgs.State", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SynthesizerStateChangedEventArgs.cs#L24C17-L24C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SynthesizerStateChangedEventArgs.cs#L24C17-L24C31" }, { "DocsId": "P:System.Speech.Synthesis.StateChangedEventArgs.PreviousState", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SynthesizerStateChangedEventArgs.cs#L31C17-L31C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SynthesizerStateChangedEventArgs.cs#L31C17-L31C39" } ], "DocsId": "T:System.Speech.Synthesis.StateChangedEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SynthesizerStateChangedEventArgs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SynthesizerStateChangedEventArgs.cs" }, { "Members": [ { "DocsId": "P:System.Speech.Synthesis.VisemeReachedEventArgs.Viseme", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/VisemeEventArgs.cs#L23C19-L23C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/VisemeEventArgs.cs#L23C19-L23C41" }, { "DocsId": "P:System.Speech.Synthesis.VisemeReachedEventArgs.AudioPosition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/VisemeEventArgs.cs#L27C19-L27C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/VisemeEventArgs.cs#L27C19-L27C41" }, { "DocsId": "P:System.Speech.Synthesis.VisemeReachedEventArgs.Duration", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/VisemeEventArgs.cs#L31C19-L31C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/VisemeEventArgs.cs#L31C19-L31C36" }, { "DocsId": "P:System.Speech.Synthesis.VisemeReachedEventArgs.Emphasis", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/VisemeEventArgs.cs#L35C19-L35C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/VisemeEventArgs.cs#L35C19-L35C36" }, { "DocsId": "P:System.Speech.Synthesis.VisemeReachedEventArgs.NextViseme", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/VisemeEventArgs.cs#L39C19-L39C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/VisemeEventArgs.cs#L39C19-L39C38" } ], "DocsId": "T:System.Speech.Synthesis.VisemeReachedEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/VisemeEventArgs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/VisemeEventArgs.cs" }, { "Members": [ { "DocsId": "P:System.Speech.Synthesis.VoiceChangeEventArgs.Voice", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/VoiceChangeEventArgs.cs#L21C17-L21C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/VoiceChangeEventArgs.cs#L21C17-L21C31" } ], "DocsId": "T:System.Speech.Synthesis.VoiceChangeEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/VoiceChangeEventArgs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/VoiceChangeEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Speech.Synthesis.VoiceInfo.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/VoiceInfo.cs#L127C13-L132C100" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/VoiceInfo.cs#L127C13-L132C100" }, { "DocsId": "M:System.Speech.Synthesis.VoiceInfo.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/VoiceInfo.cs#L141C13-L141C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/VoiceInfo.cs#L141C13-L141C40" }, { "DocsId": "P:System.Speech.Synthesis.VoiceInfo.Gender", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/VoiceInfo.cs#L151C17-L151C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/VoiceInfo.cs#L151C17-L151C32" }, { "DocsId": "P:System.Speech.Synthesis.VoiceInfo.Age", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/VoiceInfo.cs#L158C17-L158C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/VoiceInfo.cs#L158C17-L158C29" }, { "DocsId": "P:System.Speech.Synthesis.VoiceInfo.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/VoiceInfo.cs#L165C17-L165C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/VoiceInfo.cs#L165C17-L165C30" }, { "DocsId": "P:System.Speech.Synthesis.VoiceInfo.Culture", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/VoiceInfo.cs#L178C17-L178C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/VoiceInfo.cs#L178C17-L178C33" }, { "DocsId": "P:System.Speech.Synthesis.VoiceInfo.Id", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/VoiceInfo.cs#L185C17-L185C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/VoiceInfo.cs#L185C17-L185C28" }, { "DocsId": "P:System.Speech.Synthesis.VoiceInfo.Description", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/VoiceInfo.cs#L192C17-L192C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/VoiceInfo.cs#L192C17-L192C53" }, { "DocsId": "P:System.Speech.Synthesis.VoiceInfo.SupportedAudioFormats", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/VoiceInfo.cs#L200C17-L200C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/VoiceInfo.cs#L200C17-L200C38" }, { "DocsId": "P:System.Speech.Synthesis.VoiceInfo.AdditionalInfo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/VoiceInfo.cs#L204C62-L204C151" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/VoiceInfo.cs#L204C62-L204C151" } ], "DocsId": "T:System.Speech.Synthesis.VoiceInfo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/VoiceInfo.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/VoiceInfo.cs" }, { "Members": [ { "DocsId": "M:System.Speech.Synthesis.TtsEngine.TtsEngineSsml.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L22C9-L22C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L22C9-L22C56" }, { "DocsId": "M:System.Speech.Synthesis.TtsEngine.TtsEngineSsml.GetOutputFormat(System.Speech.Synthesis.TtsEngine.SpeakOutputFormat,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "M:System.Speech.Synthesis.TtsEngine.TtsEngineSsml.AddLexicon(System.Uri,System.String,System.Speech.Synthesis.TtsEngine.ITtsEngineSite)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "M:System.Speech.Synthesis.TtsEngine.TtsEngineSsml.RemoveLexicon(System.Uri,System.Speech.Synthesis.TtsEngine.ITtsEngineSite)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "M:System.Speech.Synthesis.TtsEngine.TtsEngineSsml.Speak(System.Speech.Synthesis.TtsEngine.TextFragment[],System.IntPtr,System.Speech.Synthesis.TtsEngine.ITtsEngineSite)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" } ], "DocsId": "T:System.Speech.Synthesis.TtsEngine.TtsEngineSsml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "Members": [ { "DocsId": "M:System.Speech.Synthesis.TtsEngine.SpeechEventInfo.#ctor(System.Int16,System.Int16,System.Int32,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L80C13-L84C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L80C13-L84C10" }, { "DocsId": "M:System.Speech.Synthesis.TtsEngine.SpeechEventInfo.op_Equality(System.Speech.Synthesis.TtsEngine.SpeechEventInfo,System.Speech.Synthesis.TtsEngine.SpeechEventInfo)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L87C13-L87C169" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L87C13-L87C169" }, { "DocsId": "M:System.Speech.Synthesis.TtsEngine.SpeechEventInfo.op_Inequality(System.Speech.Synthesis.TtsEngine.SpeechEventInfo,System.Speech.Synthesis.TtsEngine.SpeechEventInfo)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L91C13-L91C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L91C13-L91C40" }, { "DocsId": "M:System.Speech.Synthesis.TtsEngine.SpeechEventInfo.Equals(System.Speech.Synthesis.TtsEngine.SpeechEventInfo)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L95C13-L95C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L95C13-L95C34" }, { "DocsId": "M:System.Speech.Synthesis.TtsEngine.SpeechEventInfo.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L99C13-L104C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L99C13-L104C49" }, { "DocsId": "M:System.Speech.Synthesis.TtsEngine.SpeechEventInfo.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L108C13-L108C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L108C13-L108C39" }, { "DocsId": "P:System.Speech.Synthesis.TtsEngine.SpeechEventInfo.EventId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L62C38-L62C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L62C38-L62C54" }, { "DocsId": "P:System.Speech.Synthesis.TtsEngine.SpeechEventInfo.ParameterType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L63C44-L63C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L63C44-L63C66" }, { "DocsId": "P:System.Speech.Synthesis.TtsEngine.SpeechEventInfo.Param1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L68C35-L68C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L68C35-L68C50" }, { "DocsId": "P:System.Speech.Synthesis.TtsEngine.SpeechEventInfo.Param2", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L73C38-L73C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L73C38-L73C53" } ], "DocsId": "T:System.Speech.Synthesis.TtsEngine.SpeechEventInfo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "Members": [ { "DocsId": "M:System.Speech.Synthesis.TtsEngine.ITtsEngineSite.AddEvents(System.Speech.Synthesis.TtsEngine.SpeechEventInfo[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "M:System.Speech.Synthesis.TtsEngine.ITtsEngineSite.Write(System.IntPtr,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "M:System.Speech.Synthesis.TtsEngine.ITtsEngineSite.GetSkipInfo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "M:System.Speech.Synthesis.TtsEngine.ITtsEngineSite.CompleteSkip(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "M:System.Speech.Synthesis.TtsEngine.ITtsEngineSite.LoadResource(System.Uri,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "P:System.Speech.Synthesis.TtsEngine.ITtsEngineSite.EventInterest", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "P:System.Speech.Synthesis.TtsEngine.ITtsEngineSite.Actions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "P:System.Speech.Synthesis.TtsEngine.ITtsEngineSite.Rate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "P:System.Speech.Synthesis.TtsEngine.ITtsEngineSite.Volume", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" } ], "DocsId": "T:System.Speech.Synthesis.TtsEngine.ITtsEngineSite", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "Members": [ { "DocsId": "M:System.Speech.Synthesis.TtsEngine.SkipInfo.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L157C9-L159C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L157C9-L159C10" }, { "DocsId": "P:System.Speech.Synthesis.TtsEngine.SkipInfo.Type", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L139C17-L139C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L139C17-L139C30" }, { "DocsId": "P:System.Speech.Synthesis.TtsEngine.SkipInfo.Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L150C17-L150C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L150C17-L150C31" } ], "DocsId": "T:System.Speech.Synthesis.TtsEngine.SkipInfo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "Members": [ { "DocsId": "M:System.Speech.Synthesis.TtsEngine.TextFragment.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L207C9-L174C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L207C9-L174C10" }, { "DocsId": "P:System.Speech.Synthesis.TtsEngine.TextFragment.State", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L175C44-L175C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L175C44-L175C58" }, { "DocsId": "P:System.Speech.Synthesis.TtsEngine.TextFragment.TextToSpeak", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L176C43-L176C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L176C43-L176C63" }, { "DocsId": "P:System.Speech.Synthesis.TtsEngine.TextFragment.TextOffset", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L177C39-L177C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L177C39-L177C58" }, { "DocsId": "P:System.Speech.Synthesis.TtsEngine.TextFragment.TextLength", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L178C39-L178C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L178C39-L178C58" } ], "DocsId": "T:System.Speech.Synthesis.TtsEngine.TextFragment", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "Members": [ { "DocsId": "M:System.Speech.Synthesis.TtsEngine.FragmentState.#ctor(System.Speech.Synthesis.TtsEngine.TtsEngineAction,System.Int32,System.Int32,System.Int32,System.Speech.Synthesis.TtsEngine.SayAs,System.Speech.Synthesis.TtsEngine.Prosody,System.Char[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L230C13-L237C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L230C13-L237C10" }, { "DocsId": "M:System.Speech.Synthesis.TtsEngine.FragmentState.op_Equality(System.Speech.Synthesis.TtsEngine.FragmentState,System.Speech.Synthesis.TtsEngine.FragmentState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L240C13-L240C277" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L240C13-L240C277" }, { "DocsId": "M:System.Speech.Synthesis.TtsEngine.FragmentState.op_Inequality(System.Speech.Synthesis.TtsEngine.FragmentState,System.Speech.Synthesis.TtsEngine.FragmentState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L244C13-L244C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L244C13-L244C40" }, { "DocsId": "M:System.Speech.Synthesis.TtsEngine.FragmentState.Equals(System.Speech.Synthesis.TtsEngine.FragmentState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L248C13-L248C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L248C13-L248C34" }, { "DocsId": "M:System.Speech.Synthesis.TtsEngine.FragmentState.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L252C13-L257C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L252C13-L257C47" }, { "DocsId": "M:System.Speech.Synthesis.TtsEngine.FragmentState.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L261C13-L261C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L261C13-L261C39" }, { "DocsId": "P:System.Speech.Synthesis.TtsEngine.FragmentState.Action", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L215C47-L215C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L215C47-L215C62" }, { "DocsId": "P:System.Speech.Synthesis.TtsEngine.FragmentState.LangId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L216C35-L216C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L216C35-L216C50" }, { "DocsId": "P:System.Speech.Synthesis.TtsEngine.FragmentState.Emphasis", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L217C37-L217C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L217C37-L217C54" }, { "DocsId": "P:System.Speech.Synthesis.TtsEngine.FragmentState.Duration", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L218C37-L218C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L218C37-L218C54" }, { "DocsId": "P:System.Speech.Synthesis.TtsEngine.FragmentState.SayAs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L219C36-L219C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L219C36-L219C50" }, { "DocsId": "P:System.Speech.Synthesis.TtsEngine.FragmentState.Prosody", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L220C40-L220C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L220C40-L220C56" }, { "DocsId": "P:System.Speech.Synthesis.TtsEngine.FragmentState.Phoneme", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L221C39-L221C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L221C39-L221C55" } ], "DocsId": "T:System.Speech.Synthesis.TtsEngine.FragmentState", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "Members": [ { "DocsId": "M:System.Speech.Synthesis.TtsEngine.Prosody.GetContourPoints", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L280C52-L280C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L280C52-L280C74" }, { "DocsId": "M:System.Speech.Synthesis.TtsEngine.Prosody.SetContourPoints(System.Speech.Synthesis.TtsEngine.ContourPoint[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L283C13-L286C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L283C13-L286C10" }, { "DocsId": "M:System.Speech.Synthesis.TtsEngine.Prosody.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L287C9-L293C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L287C9-L293C10" }, { "DocsId": "P:System.Speech.Synthesis.TtsEngine.Prosody.Pitch", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L275C44-L275C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L275C44-L275C58" }, { "DocsId": "P:System.Speech.Synthesis.TtsEngine.Prosody.Range", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L276C44-L276C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L276C44-L276C58" }, { "DocsId": "P:System.Speech.Synthesis.TtsEngine.Prosody.Rate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L277C43-L277C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L277C43-L277C56" }, { "DocsId": "P:System.Speech.Synthesis.TtsEngine.Prosody.Duration", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L278C37-L278C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L278C37-L278C54" }, { "DocsId": "P:System.Speech.Synthesis.TtsEngine.Prosody.Volume", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L279C45-L279C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L279C45-L279C60" } ], "DocsId": "T:System.Speech.Synthesis.TtsEngine.Prosody", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "Members": [ { "DocsId": "M:System.Speech.Synthesis.TtsEngine.ContourPoint.#ctor(System.Single,System.Single,System.Speech.Synthesis.TtsEngine.ContourPointChangeType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L322C13-L325C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L322C13-L325C10" }, { "DocsId": "M:System.Speech.Synthesis.TtsEngine.ContourPoint.op_Equality(System.Speech.Synthesis.TtsEngine.ContourPoint,System.Speech.Synthesis.TtsEngine.ContourPoint)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L328C13-L328C140" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L328C13-L328C140" }, { "DocsId": "M:System.Speech.Synthesis.TtsEngine.ContourPoint.op_Inequality(System.Speech.Synthesis.TtsEngine.ContourPoint,System.Speech.Synthesis.TtsEngine.ContourPoint)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L332C13-L332C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L332C13-L332C40" }, { "DocsId": "M:System.Speech.Synthesis.TtsEngine.ContourPoint.Equals(System.Speech.Synthesis.TtsEngine.ContourPoint)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L336C13-L336C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L336C13-L336C34" }, { "DocsId": "M:System.Speech.Synthesis.TtsEngine.ContourPoint.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L340C13-L345C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L340C13-L345C46" }, { "DocsId": "M:System.Speech.Synthesis.TtsEngine.ContourPoint.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L349C13-L349C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L349C13-L349C39" }, { "DocsId": "P:System.Speech.Synthesis.TtsEngine.ContourPoint.Start", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L317C36-L317C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L317C36-L317C50" }, { "DocsId": "P:System.Speech.Synthesis.TtsEngine.ContourPoint.Change", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L318C37-L318C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L318C37-L318C52" }, { "DocsId": "P:System.Speech.Synthesis.TtsEngine.ContourPoint.ChangeType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L319C58-L319C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L319C58-L319C77" } ], "DocsId": "T:System.Speech.Synthesis.TtsEngine.ContourPoint", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "Members": [ { "DocsId": "M:System.Speech.Synthesis.TtsEngine.ProsodyNumber.#ctor(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L366C13-L370C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L366C13-L370C10" }, { "DocsId": "M:System.Speech.Synthesis.TtsEngine.ProsodyNumber.#ctor(System.Single)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L373C13-L377C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L373C13-L377C10" }, { "DocsId": "M:System.Speech.Synthesis.TtsEngine.ProsodyNumber.op_Equality(System.Speech.Synthesis.TtsEngine.ProsodyNumber,System.Speech.Synthesis.TtsEngine.ProsodyNumber)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L380C13-L380C256" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L380C13-L380C256" }, { "DocsId": "M:System.Speech.Synthesis.TtsEngine.ProsodyNumber.op_Inequality(System.Speech.Synthesis.TtsEngine.ProsodyNumber,System.Speech.Synthesis.TtsEngine.ProsodyNumber)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L384C13-L384C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L384C13-L384C56" }, { "DocsId": "M:System.Speech.Synthesis.TtsEngine.ProsodyNumber.Equals(System.Speech.Synthesis.TtsEngine.ProsodyNumber)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L388C13-L388C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L388C13-L388C34" }, { "DocsId": "M:System.Speech.Synthesis.TtsEngine.ProsodyNumber.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L392C13-L397C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L392C13-L397C47" }, { "DocsId": "M:System.Speech.Synthesis.TtsEngine.ProsodyNumber.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L401C13-L401C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L401C13-L401C39" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.ProsodyNumber.AbsoluteNumber", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "P:System.Speech.Synthesis.TtsEngine.ProsodyNumber.SsmlAttributeId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L359C44-L359C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L359C44-L359C68" }, { "DocsId": "P:System.Speech.Synthesis.TtsEngine.ProsodyNumber.IsNumberPercent", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L360C45-L360C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L360C45-L360C63" }, { "DocsId": "P:System.Speech.Synthesis.TtsEngine.ProsodyNumber.Number", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L361C37-L361C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L361C37-L361C52" }, { "DocsId": "P:System.Speech.Synthesis.TtsEngine.ProsodyNumber.Unit", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L362C41-L362C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L362C41-L362C54" } ], "DocsId": "T:System.Speech.Synthesis.TtsEngine.ProsodyNumber", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "Members": [ { "DocsId": "M:System.Speech.Synthesis.TtsEngine.SayAs.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "P:System.Speech.Synthesis.TtsEngine.SayAs.InterpretAs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L412C43-L412C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L412C43-L412C63" }, { "DocsId": "P:System.Speech.Synthesis.TtsEngine.SayAs.Format", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L413C38-L413C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L413C38-L413C53" }, { "DocsId": "P:System.Speech.Synthesis.TtsEngine.SayAs.Detail", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L414C38-L414C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L414C38-L414C53" } ], "DocsId": "T:System.Speech.Synthesis.TtsEngine.SayAs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "Members": [ { "DocsId": "F:System.Speech.Synthesis.TtsEngine.TtsEngineAction.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.TtsEngineAction.Speak", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.TtsEngineAction.Silence", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.TtsEngineAction.Pronounce", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.TtsEngineAction.Bookmark", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.TtsEngineAction.SpellOut", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.TtsEngineAction.StartSentence", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.TtsEngineAction.StartParagraph", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.TtsEngineAction.ParseUnknownTag", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" } ], "DocsId": "T:System.Speech.Synthesis.TtsEngine.TtsEngineAction", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "Members": [ { "DocsId": "F:System.Speech.Synthesis.TtsEngine.EmphasisWord.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.EmphasisWord.Default", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.EmphasisWord.Strong", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.EmphasisWord.Moderate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.EmphasisWord.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.EmphasisWord.Reduced", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" } ], "DocsId": "T:System.Speech.Synthesis.TtsEngine.EmphasisWord", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "Members": [ { "DocsId": "F:System.Speech.Synthesis.TtsEngine.EmphasisBreak.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.EmphasisBreak.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.EmphasisBreak.ExtraWeak", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.EmphasisBreak.Weak", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.EmphasisBreak.Medium", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.EmphasisBreak.Strong", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.EmphasisBreak.ExtraStrong", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.EmphasisBreak.Default", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" } ], "DocsId": "T:System.Speech.Synthesis.TtsEngine.EmphasisBreak", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "Members": [ { "DocsId": "F:System.Speech.Synthesis.TtsEngine.ProsodyPitch.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.ProsodyPitch.Default", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.ProsodyPitch.ExtraLow", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.ProsodyPitch.Low", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.ProsodyPitch.Medium", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.ProsodyPitch.High", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.ProsodyPitch.ExtraHigh", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" } ], "DocsId": "T:System.Speech.Synthesis.TtsEngine.ProsodyPitch", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "Members": [ { "DocsId": "F:System.Speech.Synthesis.TtsEngine.ProsodyRange.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.ProsodyRange.Default", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.ProsodyRange.ExtraLow", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.ProsodyRange.Low", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.ProsodyRange.Medium", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.ProsodyRange.High", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.ProsodyRange.ExtraHigh", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" } ], "DocsId": "T:System.Speech.Synthesis.TtsEngine.ProsodyRange", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "Members": [ { "DocsId": "F:System.Speech.Synthesis.TtsEngine.ProsodyRate.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.ProsodyRate.Default", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.ProsodyRate.ExtraSlow", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.ProsodyRate.Slow", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.ProsodyRate.Medium", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.ProsodyRate.Fast", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.ProsodyRate.ExtraFast", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" } ], "DocsId": "T:System.Speech.Synthesis.TtsEngine.ProsodyRate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "Members": [ { "DocsId": "F:System.Speech.Synthesis.TtsEngine.ProsodyVolume.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.ProsodyVolume.Default", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.ProsodyVolume.Silent", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.ProsodyVolume.ExtraSoft", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.ProsodyVolume.Soft", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.ProsodyVolume.Medium", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.ProsodyVolume.Loud", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.ProsodyVolume.ExtraLoud", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" } ], "DocsId": "T:System.Speech.Synthesis.TtsEngine.ProsodyVolume", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "Members": [ { "DocsId": "F:System.Speech.Synthesis.TtsEngine.ProsodyUnit.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.ProsodyUnit.Default", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.ProsodyUnit.Hz", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.ProsodyUnit.Semitone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" } ], "DocsId": "T:System.Speech.Synthesis.TtsEngine.ProsodyUnit", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "Members": [ { "DocsId": "F:System.Speech.Synthesis.TtsEngine.TtsEventId.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.TtsEventId.StartInputStream", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.TtsEventId.EndInputStream", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.TtsEventId.VoiceChange", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.TtsEventId.Bookmark", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.TtsEventId.WordBoundary", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.TtsEventId.Phoneme", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.TtsEventId.SentenceBoundary", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.TtsEventId.Viseme", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.TtsEventId.AudioLevel", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" } ], "DocsId": "T:System.Speech.Synthesis.TtsEngine.TtsEventId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "Members": [ { "DocsId": "F:System.Speech.Synthesis.TtsEngine.EventParameterType.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.EventParameterType.Undefined", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.EventParameterType.Token", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.EventParameterType.Object", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.EventParameterType.Pointer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.EventParameterType.String", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" } ], "DocsId": "T:System.Speech.Synthesis.TtsEngine.EventParameterType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "Members": [ { "DocsId": "F:System.Speech.Synthesis.TtsEngine.SpeakOutputFormat.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.SpeakOutputFormat.WaveFormat", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.SpeakOutputFormat.Text", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" } ], "DocsId": "T:System.Speech.Synthesis.TtsEngine.SpeakOutputFormat", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "Members": [ { "DocsId": "F:System.Speech.Synthesis.TtsEngine.ContourPointChangeType.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.ContourPointChangeType.Hz", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.ContourPointChangeType.Percentage", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" } ], "DocsId": "T:System.Speech.Synthesis.TtsEngine.ContourPointChangeType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "Members": [ { "DocsId": "P:System.Speech.Recognition.AudioLevelUpdatedEventArgs.AudioLevel", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/AudioLevelUpdatedEventArgs.cs#L22C19-L22C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/AudioLevelUpdatedEventArgs.cs#L22C19-L22C38" } ], "DocsId": "T:System.Speech.Recognition.AudioLevelUpdatedEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/AudioLevelUpdatedEventArgs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/AudioLevelUpdatedEventArgs.cs" }, { "Members": [ { "DocsId": "F:System.Speech.Recognition.AudioSignalProblem.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/AudioSignalProblem.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/AudioSignalProblem.cs" }, { "DocsId": "F:System.Speech.Recognition.AudioSignalProblem.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/AudioSignalProblem.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/AudioSignalProblem.cs" }, { "DocsId": "F:System.Speech.Recognition.AudioSignalProblem.TooNoisy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/AudioSignalProblem.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/AudioSignalProblem.cs" }, { "DocsId": "F:System.Speech.Recognition.AudioSignalProblem.NoSignal", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/AudioSignalProblem.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/AudioSignalProblem.cs" }, { "DocsId": "F:System.Speech.Recognition.AudioSignalProblem.TooLoud", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/AudioSignalProblem.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/AudioSignalProblem.cs" }, { "DocsId": "F:System.Speech.Recognition.AudioSignalProblem.TooSoft", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/AudioSignalProblem.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/AudioSignalProblem.cs" }, { "DocsId": "F:System.Speech.Recognition.AudioSignalProblem.TooFast", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/AudioSignalProblem.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/AudioSignalProblem.cs" }, { "DocsId": "F:System.Speech.Recognition.AudioSignalProblem.TooSlow", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/AudioSignalProblem.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/AudioSignalProblem.cs" } ], "DocsId": "T:System.Speech.Recognition.AudioSignalProblem", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/AudioSignalProblem.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/AudioSignalProblem.cs" }, { "Members": [ { "DocsId": "P:System.Speech.Recognition.AudioSignalProblemOccurredEventArgs.AudioSignalProblem", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/AudioSignalProblemOccurredEventArgs.cs#L25C19-L25C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/AudioSignalProblemOccurredEventArgs.cs#L25C19-L25C46" }, { "DocsId": "P:System.Speech.Recognition.AudioSignalProblemOccurredEventArgs.AudioLevel", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/AudioSignalProblemOccurredEventArgs.cs#L29C19-L29C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/AudioSignalProblemOccurredEventArgs.cs#L29C19-L29C38" }, { "DocsId": "P:System.Speech.Recognition.AudioSignalProblemOccurredEventArgs.AudioPosition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/AudioSignalProblemOccurredEventArgs.cs#L33C19-L33C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/AudioSignalProblemOccurredEventArgs.cs#L33C19-L33C41" }, { "DocsId": "P:System.Speech.Recognition.AudioSignalProblemOccurredEventArgs.RecognizerAudioPosition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/AudioSignalProblemOccurredEventArgs.cs#L37C19-L37C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/AudioSignalProblemOccurredEventArgs.cs#L37C19-L37C46" } ], "DocsId": "T:System.Speech.Recognition.AudioSignalProblemOccurredEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/AudioSignalProblemOccurredEventArgs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/AudioSignalProblemOccurredEventArgs.cs" }, { "Members": [ { "DocsId": "F:System.Speech.Recognition.AudioState.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/AudioState.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/AudioState.cs" }, { "DocsId": "F:System.Speech.Recognition.AudioState.Stopped", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/AudioState.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/AudioState.cs" }, { "DocsId": "F:System.Speech.Recognition.AudioState.Silence", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/AudioState.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/AudioState.cs" }, { "DocsId": "F:System.Speech.Recognition.AudioState.Speech", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/AudioState.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/AudioState.cs" } ], "DocsId": "T:System.Speech.Recognition.AudioState", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/AudioState.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/AudioState.cs" }, { "Members": [ { "DocsId": "P:System.Speech.Recognition.AudioStateChangedEventArgs.AudioState", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/AudioStateChangedEventArgs.cs#L22C19-L22C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/AudioStateChangedEventArgs.cs#L22C19-L22C38" } ], "DocsId": "T:System.Speech.Recognition.AudioStateChangedEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/AudioStateChangedEventArgs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/AudioStateChangedEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Speech.Recognition.Choices.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/Choices.cs#L81C9-L17C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/Choices.cs#L81C9-L17C10" }, { "DocsId": "M:System.Speech.Recognition.Choices.#ctor(System.String[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/Choices.cs#L81C9-L24C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/Choices.cs#L81C9-L24C10" }, { "DocsId": "M:System.Speech.Recognition.Choices.#ctor(System.Speech.Recognition.GrammarBuilder[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/Choices.cs#L81C9-L31C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/Choices.cs#L81C9-L31C10" }, { "DocsId": "M:System.Speech.Recognition.Choices.Add(System.String[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/Choices.cs#L39C13-L47C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/Choices.cs#L39C13-L47C10" }, { "DocsId": "M:System.Speech.Recognition.Choices.Add(System.Speech.Recognition.GrammarBuilder[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/Choices.cs#L51C13-L59C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/Choices.cs#L51C13-L59C10" }, { "DocsId": "M:System.Speech.Recognition.Choices.ToGrammarBuilder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/Choices.cs#L62C13-L62C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/Choices.cs#L62C13-L62C45" } ], "DocsId": "T:System.Speech.Recognition.Choices", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/Choices.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/Choices.cs" }, { "Members": [ { "DocsId": "M:System.Speech.Recognition.DictationGrammar.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/DictationGrammar.cs#L20C37-L22C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/DictationGrammar.cs#L20C37-L22C10" }, { "DocsId": "M:System.Speech.Recognition.DictationGrammar.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/DictationGrammar.cs#L25C49-L27C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/DictationGrammar.cs#L25C49-L27C10" }, { "DocsId": "M:System.Speech.Recognition.DictationGrammar.SetDictationContext(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/DictationGrammar.cs#L34C13-L43C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/DictationGrammar.cs#L34C13-L43C10" } ], "DocsId": "T:System.Speech.Recognition.DictationGrammar", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/DictationGrammar.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/DictationGrammar.cs" }, { "Members": [ { "DocsId": "P:System.Speech.Recognition.EmulateRecognizeCompletedEventArgs.Result", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/EmulateRecognizeCompletedEventArgs.cs#L23C19-L23C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/EmulateRecognizeCompletedEventArgs.cs#L23C19-L23C34" } ], "DocsId": "T:System.Speech.Recognition.EmulateRecognizeCompletedEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/EmulateRecognizeCompletedEventArgs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/EmulateRecognizeCompletedEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Speech.Recognition.Grammar.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/Grammar.cs#L37C15-L39C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/Grammar.cs#L37C15-L39C10" }, { "DocsId": "M:System.Speech.Recognition.Grammar.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/Grammar.cs#L41C15-L43C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/Grammar.cs#L41C15-L43C10" }, { "DocsId": "M:System.Speech.Recognition.Grammar.#ctor(System.String,System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/Grammar.cs#L1115C9-L56C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/Grammar.cs#L1115C9-L56C10" }, { "DocsId": "M:System.Speech.Recognition.Grammar.#ctor(System.Speech.Recognition.SrgsGrammar.SrgsDocument)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/Grammar.cs#L58C15-L60C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/Grammar.cs#L58C15-L60C10" }, { "DocsId": "M:System.Speech.Recognition.Grammar.#ctor(System.Speech.Recognition.SrgsGrammar.SrgsDocument,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/Grammar.cs#L62C15-L64C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/Grammar.cs#L62C15-L64C10" }, { "DocsId": "M:System.Speech.Recognition.Grammar.#ctor(System.Speech.Recognition.SrgsGrammar.SrgsDocument,System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/Grammar.cs#L66C15-L68C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/Grammar.cs#L66C15-L68C10" }, { "DocsId": "M:System.Speech.Recognition.Grammar.#ctor(System.Speech.Recognition.SrgsGrammar.SrgsDocument,System.String,System.Uri)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/Grammar.cs#L71C15-L73C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/Grammar.cs#L71C15-L73C10" }, { "DocsId": "M:System.Speech.Recognition.Grammar.#ctor(System.Speech.Recognition.SrgsGrammar.SrgsDocument,System.String,System.Uri,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/Grammar.cs#L1115C9-L83C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/Grammar.cs#L1115C9-L83C10" }, { "DocsId": "M:System.Speech.Recognition.Grammar.#ctor(System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/Grammar.cs#L85C15-L87C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/Grammar.cs#L85C15-L87C10" }, { "DocsId": "M:System.Speech.Recognition.Grammar.#ctor(System.IO.Stream,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/Grammar.cs#L89C15-L91C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/Grammar.cs#L89C15-L91C10" }, { "DocsId": "M:System.Speech.Recognition.Grammar.#ctor(System.IO.Stream,System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/Grammar.cs#L93C15-L95C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/Grammar.cs#L93C15-L95C10" }, { "DocsId": "M:System.Speech.Recognition.Grammar.#ctor(System.IO.Stream,System.String,System.Uri)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/Grammar.cs#L98C15-L100C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/Grammar.cs#L98C15-L100C10" }, { "DocsId": "M:System.Speech.Recognition.Grammar.#ctor(System.IO.Stream,System.String,System.Uri,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/Grammar.cs#L1115C9-L113C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/Grammar.cs#L1115C9-L113C10" }, { "DocsId": "M:System.Speech.Recognition.Grammar.#ctor(System.Speech.Recognition.GrammarBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/Grammar.cs#L1115C9-L121C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/Grammar.cs#L1115C9-L121C10" }, { "DocsId": "M:System.Speech.Recognition.Grammar.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/Grammar.cs#L1115C9-L131C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/Grammar.cs#L1115C9-L131C10" }, { "DocsId": "M:System.Speech.Recognition.Grammar.StgInit(System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/Grammar.cs#L134C13-L136C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/Grammar.cs#L134C13-L136C10" }, { "DocsId": "M:System.Speech.Recognition.Grammar.LoadLocalizedGrammarFromType(System.Type,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/Grammar.cs#L146C13-L189C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/Grammar.cs#L146C13-L189C10" }, { "DocsId": "E:System.Speech.Recognition.Grammar.SpeechRecognized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/Grammar.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/Grammar.cs" }, { "DocsId": "P:System.Speech.Recognition.Grammar.Enabled", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/Grammar.cs#L200C19-L200C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/Grammar.cs#L200C19-L200C35" }, { "DocsId": "P:System.Speech.Recognition.Grammar.Weight", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/Grammar.cs#L216C19-L216C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/Grammar.cs#L216C19-L216C34" }, { "DocsId": "P:System.Speech.Recognition.Grammar.Priority", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/Grammar.cs#L239C19-L239C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/Grammar.cs#L239C19-L239C36" }, { "DocsId": "P:System.Speech.Recognition.Grammar.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/Grammar.cs#L259C19-L259C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/Grammar.cs#L259C19-L259C39" }, { "DocsId": "P:System.Speech.Recognition.Grammar.RuleName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/Grammar.cs#L264C19-L264C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/Grammar.cs#L264C19-L264C36" }, { "DocsId": "P:System.Speech.Recognition.Grammar.Loaded", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/Grammar.cs#L268C19-L268C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/Grammar.cs#L268C19-L268C63" }, { "DocsId": "P:System.Speech.Recognition.Grammar.IsStg", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/Grammar.cs#L375C19-L375C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/Grammar.cs#L375C19-L375C33" }, { "DocsId": "P:System.Speech.Recognition.Grammar.ResourceName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/Grammar.cs#L583C17-L583C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/Grammar.cs#L583C17-L583C35" } ], "DocsId": "T:System.Speech.Recognition.Grammar", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/Grammar.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/Grammar.cs" }, { "Members": [ { "DocsId": "M:System.Speech.Recognition.GrammarBuilder.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L459C9-L25C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L459C9-L25C10" }, { "DocsId": "M:System.Speech.Recognition.GrammarBuilder.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L28C15-L31C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L28C15-L31C10" }, { "DocsId": "M:System.Speech.Recognition.GrammarBuilder.#ctor(System.String,System.Speech.Recognition.SubsetMatchingMode)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L34C15-L37C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L34C15-L37C10" }, { "DocsId": "M:System.Speech.Recognition.GrammarBuilder.#ctor(System.String,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L40C15-L43C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L40C15-L43C10" }, { "DocsId": "M:System.Speech.Recognition.GrammarBuilder.#ctor(System.Speech.Recognition.GrammarBuilder,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L46C15-L49C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L46C15-L49C10" }, { "DocsId": "M:System.Speech.Recognition.GrammarBuilder.#ctor(System.Speech.Recognition.Choices)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L52C15-L55C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L52C15-L55C10" }, { "DocsId": "M:System.Speech.Recognition.GrammarBuilder.#ctor(System.Speech.Recognition.SemanticResultKey)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L58C15-L61C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L58C15-L61C10" }, { "DocsId": "M:System.Speech.Recognition.GrammarBuilder.#ctor(System.Speech.Recognition.SemanticResultValue)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L64C15-L67C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L64C15-L67C10" }, { "DocsId": "M:System.Speech.Recognition.GrammarBuilder.Append(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L77C13-L80C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L77C13-L80C10" }, { "DocsId": "M:System.Speech.Recognition.GrammarBuilder.Append(System.String,System.Speech.Recognition.SubsetMatchingMode)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L84C13-L88C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L84C13-L88C10" }, { "DocsId": "M:System.Speech.Recognition.GrammarBuilder.Append(System.String,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L92C13-L105C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L92C13-L105C10" }, { "DocsId": "M:System.Speech.Recognition.GrammarBuilder.Append(System.Speech.Recognition.GrammarBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L111C13-L134C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L111C13-L134C10" }, { "DocsId": "M:System.Speech.Recognition.GrammarBuilder.Append(System.Speech.Recognition.Choices)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L140C13-L143C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L140C13-L143C10" }, { "DocsId": "M:System.Speech.Recognition.GrammarBuilder.Append(System.Speech.Recognition.SemanticResultKey)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L147C13-L150C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L147C13-L150C10" }, { "DocsId": "M:System.Speech.Recognition.GrammarBuilder.Append(System.Speech.Recognition.SemanticResultValue)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L154C13-L157C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L154C13-L157C10" }, { "DocsId": "M:System.Speech.Recognition.GrammarBuilder.Append(System.Speech.Recognition.GrammarBuilder,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L161C13-L176C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L161C13-L176C10" }, { "DocsId": "M:System.Speech.Recognition.GrammarBuilder.AppendDictation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L182C13-L183C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L182C13-L183C10" }, { "DocsId": "M:System.Speech.Recognition.GrammarBuilder.AppendDictation(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L187C13-L190C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L187C13-L190C10" }, { "DocsId": "M:System.Speech.Recognition.GrammarBuilder.AppendWildcard", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L196C13-L197C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L196C13-L197C10" }, { "DocsId": "M:System.Speech.Recognition.GrammarBuilder.AppendRuleReference(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L204C13-L217C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L204C13-L217C10" }, { "DocsId": "M:System.Speech.Recognition.GrammarBuilder.AppendRuleReference(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L224C13-L238C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L224C13-L238C10" }, { "DocsId": "M:System.Speech.Recognition.GrammarBuilder.op_Addition(System.String,System.Speech.Recognition.GrammarBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L273C13-L273C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L273C13-L273C41" }, { "DocsId": "M:System.Speech.Recognition.GrammarBuilder.Add(System.String,System.Speech.Recognition.GrammarBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L278C13-L282C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L278C13-L282C28" }, { "DocsId": "M:System.Speech.Recognition.GrammarBuilder.op_Addition(System.Speech.Recognition.GrammarBuilder,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L287C13-L287C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L287C13-L287C41" }, { "DocsId": "M:System.Speech.Recognition.GrammarBuilder.Add(System.Speech.Recognition.GrammarBuilder,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L292C13-L296C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L292C13-L296C28" }, { "DocsId": "M:System.Speech.Recognition.GrammarBuilder.op_Addition(System.Speech.Recognition.Choices,System.Speech.Recognition.GrammarBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L301C13-L301C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L301C13-L301C42" }, { "DocsId": "M:System.Speech.Recognition.GrammarBuilder.Add(System.Speech.Recognition.Choices,System.Speech.Recognition.GrammarBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L306C13-L311C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L306C13-L311C28" }, { "DocsId": "M:System.Speech.Recognition.GrammarBuilder.op_Addition(System.Speech.Recognition.GrammarBuilder,System.Speech.Recognition.Choices)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L316C13-L316C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L316C13-L316C42" }, { "DocsId": "M:System.Speech.Recognition.GrammarBuilder.Add(System.Speech.Recognition.GrammarBuilder,System.Speech.Recognition.Choices)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L321C13-L326C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L321C13-L326C28" }, { "DocsId": "M:System.Speech.Recognition.GrammarBuilder.op_Addition(System.Speech.Recognition.GrammarBuilder,System.Speech.Recognition.GrammarBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L331C13-L331C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L331C13-L331C44" }, { "DocsId": "M:System.Speech.Recognition.GrammarBuilder.Add(System.Speech.Recognition.GrammarBuilder,System.Speech.Recognition.GrammarBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L336C13-L341C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L336C13-L341C28" }, { "DocsId": "M:System.Speech.Recognition.GrammarBuilder.op_Implicit(System.String)~System.Speech.Recognition.GrammarBuilder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L343C73-L343C107" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L343C73-L343C107" }, { "DocsId": "M:System.Speech.Recognition.GrammarBuilder.op_Implicit(System.Speech.Recognition.Choices)~System.Speech.Recognition.GrammarBuilder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L344C75-L344C110" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L344C75-L344C110" }, { "DocsId": "M:System.Speech.Recognition.GrammarBuilder.op_Implicit(System.Speech.Recognition.SemanticResultKey)~System.Speech.Recognition.GrammarBuilder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L345C89-L345C128" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L345C89-L345C128" }, { "DocsId": "M:System.Speech.Recognition.GrammarBuilder.op_Implicit(System.Speech.Recognition.SemanticResultValue)~System.Speech.Recognition.GrammarBuilder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L346C93-L346C134" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L346C93-L346C134" }, { "DocsId": "P:System.Speech.Recognition.GrammarBuilder.DebugShowPhrases", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L243C17-L243C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L243C17-L243C37" }, { "DocsId": "P:System.Speech.Recognition.GrammarBuilder.Culture", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L254C17-L254C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L254C17-L254C33" } ], "DocsId": "T:System.Speech.Recognition.GrammarBuilder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs" }, { "Members": [ { "DocsId": "P:System.Speech.Recognition.LoadGrammarCompletedEventArgs.Grammar", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/LoadGrammarCompletedEventArgs.cs#L25C19-L25C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/LoadGrammarCompletedEventArgs.cs#L25C19-L25C35" } ], "DocsId": "T:System.Speech.Recognition.LoadGrammarCompletedEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/LoadGrammarCompletedEventArgs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/LoadGrammarCompletedEventArgs.cs" }, { "Members": [ { "DocsId": "P:System.Speech.Recognition.RecognizeCompletedEventArgs.Result", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/RecognizeCompletedEventArgs.cs#L29C19-L29C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/RecognizeCompletedEventArgs.cs#L29C19-L29C34" }, { "DocsId": "P:System.Speech.Recognition.RecognizeCompletedEventArgs.InitialSilenceTimeout", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/RecognizeCompletedEventArgs.cs#L33C19-L33C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/RecognizeCompletedEventArgs.cs#L33C19-L33C49" }, { "DocsId": "P:System.Speech.Recognition.RecognizeCompletedEventArgs.BabbleTimeout", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/RecognizeCompletedEventArgs.cs#L37C19-L37C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/RecognizeCompletedEventArgs.cs#L37C19-L37C41" }, { "DocsId": "P:System.Speech.Recognition.RecognizeCompletedEventArgs.InputStreamEnded", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/RecognizeCompletedEventArgs.cs#L41C19-L41C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/RecognizeCompletedEventArgs.cs#L41C19-L41C44" }, { "DocsId": "P:System.Speech.Recognition.RecognizeCompletedEventArgs.AudioPosition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/RecognizeCompletedEventArgs.cs#L45C19-L45C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/RecognizeCompletedEventArgs.cs#L45C19-L45C41" } ], "DocsId": "T:System.Speech.Recognition.RecognizeCompletedEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/RecognizeCompletedEventArgs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/RecognizeCompletedEventArgs.cs" }, { "Members": [ { "DocsId": "F:System.Speech.Recognition.RecognizeMode.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/RecognizeMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/RecognizeMode.cs" }, { "DocsId": "F:System.Speech.Recognition.RecognizeMode.Single", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/RecognizeMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/RecognizeMode.cs" }, { "DocsId": "F:System.Speech.Recognition.RecognizeMode.Multiple", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/RecognizeMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/RecognizeMode.cs" } ], "DocsId": "T:System.Speech.Recognition.RecognizeMode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/RecognizeMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/RecognizeMode.cs" }, { "Members": [ { "DocsId": "M:System.Speech.Recognition.RecognizerInfo.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/RecognizerInfo.cs#L100C13-L102C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/RecognizerInfo.cs#L100C13-L102C10" }, { "DocsId": "P:System.Speech.Recognition.RecognizerInfo.Id", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/RecognizerInfo.cs#L109C19-L109C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/RecognizerInfo.cs#L109C19-L109C30" }, { "DocsId": "P:System.Speech.Recognition.RecognizerInfo.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/RecognizerInfo.cs#L113C19-L113C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/RecognizerInfo.cs#L113C19-L113C32" }, { "DocsId": "P:System.Speech.Recognition.RecognizerInfo.Description", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/RecognizerInfo.cs#L117C19-L117C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/RecognizerInfo.cs#L117C19-L117C39" }, { "DocsId": "P:System.Speech.Recognition.RecognizerInfo.Culture", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/RecognizerInfo.cs#L121C19-L121C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/RecognizerInfo.cs#L121C19-L121C35" }, { "DocsId": "P:System.Speech.Recognition.RecognizerInfo.SupportedAudioFormats", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/RecognizerInfo.cs#L125C19-L125C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/RecognizerInfo.cs#L125C19-L125C49" }, { "DocsId": "P:System.Speech.Recognition.RecognizerInfo.AdditionalInfo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/RecognizerInfo.cs#L129C19-L129C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/RecognizerInfo.cs#L129C19-L129C38" } ], "DocsId": "T:System.Speech.Recognition.RecognizerInfo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/RecognizerInfo.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/RecognizerInfo.cs" }, { "Members": [ { "DocsId": "F:System.Speech.Recognition.RecognizerState.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/RecognizerState.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/RecognizerState.cs" }, { "DocsId": "F:System.Speech.Recognition.RecognizerState.Stopped", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/RecognizerState.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/RecognizerState.cs" }, { "DocsId": "F:System.Speech.Recognition.RecognizerState.Listening", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/RecognizerState.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/RecognizerState.cs" } ], "DocsId": "T:System.Speech.Recognition.RecognizerState", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/RecognizerState.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/RecognizerState.cs" }, { "Members": [ { "DocsId": "P:System.Speech.Recognition.StateChangedEventArgs.RecognizerState", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/RecognizerStateChangedEventArgs.cs#L22C19-L22C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/RecognizerStateChangedEventArgs.cs#L22C19-L22C43" } ], "DocsId": "T:System.Speech.Recognition.StateChangedEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/RecognizerStateChangedEventArgs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/RecognizerStateChangedEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Speech.Recognition.SemanticResultKey.#ctor(System.String,System.String[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SemanticResultKey.cs#L24C15-L34C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SemanticResultKey.cs#L24C15-L34C10" }, { "DocsId": "M:System.Speech.Recognition.SemanticResultKey.#ctor(System.String,System.Speech.Recognition.GrammarBuilder[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SemanticResultKey.cs#L37C15-L47C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SemanticResultKey.cs#L37C15-L47C10" }, { "DocsId": "M:System.Speech.Recognition.SemanticResultKey.ToGrammarBuilder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SemanticResultKey.cs#L54C13-L54C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SemanticResultKey.cs#L54C13-L54C45" } ], "DocsId": "T:System.Speech.Recognition.SemanticResultKey", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SemanticResultKey.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SemanticResultKey.cs" }, { "Members": [ { "DocsId": "M:System.Speech.Recognition.SemanticResultValue.#ctor(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SemanticResultValue.cs#L14C9-L19C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SemanticResultValue.cs#L14C9-L19C10" }, { "DocsId": "M:System.Speech.Recognition.SemanticResultValue.#ctor(System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SemanticResultValue.cs#L20C9-L26C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SemanticResultValue.cs#L20C9-L26C10" }, { "DocsId": "M:System.Speech.Recognition.SemanticResultValue.#ctor(System.Speech.Recognition.GrammarBuilder,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SemanticResultValue.cs#L27C9-L33C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SemanticResultValue.cs#L27C9-L33C10" }, { "DocsId": "M:System.Speech.Recognition.SemanticResultValue.ToGrammarBuilder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SemanticResultValue.cs#L40C13-L40C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SemanticResultValue.cs#L40C13-L40C45" } ], "DocsId": "T:System.Speech.Recognition.SemanticResultValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SemanticResultValue.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SemanticResultValue.cs" }, { "Members": [ { "DocsId": "P:System.Speech.Recognition.SpeechDetectedEventArgs.AudioPosition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechDetectedEventArgs.cs#L22C19-L22C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechDetectedEventArgs.cs#L22C19-L22C41" } ], "DocsId": "T:System.Speech.Recognition.SpeechDetectedEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechDetectedEventArgs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechDetectedEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Speech.Recognition.SpeechRecognitionEngine.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L21C9-L24C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L21C9-L24C10" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognitionEngine.#ctor(System.Globalization.CultureInfo)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L25C9-L55C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L25C9-L55C10" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognitionEngine.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L56C9-L70C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L56C9-L70C10" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognitionEngine.#ctor(System.Speech.Recognition.RecognizerInfo)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L71C9-L76C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L71C9-L76C10" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognitionEngine.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L79C13-L81C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L79C13-L81C10" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognitionEngine.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L84C13-L98C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L84C13-L98C10" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognitionEngine.InstalledRecognizers", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L107C13-L130C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L107C13-L130C72" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognitionEngine.SetInputToWaveFile(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L227C13-L230C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L227C13-L230C10" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognitionEngine.SetInputToWaveStream(System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L233C13-L234C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L233C13-L234C10" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognitionEngine.SetInputToAudioStream(System.IO.Stream,System.Speech.AudioFormat.SpeechAudioFormatInfo)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L237C13-L241C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L237C13-L241C10" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognitionEngine.SetInputToNull", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L246C13-L247C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L246C13-L247C10" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognitionEngine.SetInputToDefaultAudioDevice", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L252C13-L253C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L252C13-L253C10" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognitionEngine.Recognize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L261C13-L261C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L261C13-L261C71" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognitionEngine.Recognize(System.TimeSpan)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L265C13-L270C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L265C13-L270C62" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognitionEngine.RecognizeAsync", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L276C13-L277C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L276C13-L277C10" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognitionEngine.RecognizeAsync(System.Speech.Recognition.RecognizeMode)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L282C13-L288C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L282C13-L288C10" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognitionEngine.RecognizeAsyncCancel", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L293C13-L294C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L293C13-L294C10" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognitionEngine.RecognizeAsyncStop", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L299C13-L300C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L299C13-L300C10" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognitionEngine.QueryRecognizerSetting(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L305C13-L305C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L305C13-L305C65" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognitionEngine.UpdateRecognizerSetting(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L309C13-L310C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L309C13-L310C10" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognitionEngine.UpdateRecognizerSetting(System.String,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L313C13-L314C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L313C13-L314C10" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognitionEngine.LoadGrammar(System.Speech.Recognition.Grammar)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L317C13-L318C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L317C13-L318C10" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognitionEngine.LoadGrammarAsync(System.Speech.Recognition.Grammar)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L321C13-L322C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L321C13-L322C10" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognitionEngine.UnloadGrammar(System.Speech.Recognition.Grammar)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L325C13-L326C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L325C13-L326C10" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognitionEngine.UnloadAllGrammars", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L329C13-L330C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L329C13-L330C10" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognitionEngine.EmulateRecognize(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L333C13-L333C136" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L333C13-L333C136" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognitionEngine.EmulateRecognize(System.String,System.Globalization.CompareOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L337C13-L342C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L337C13-L342C73" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognitionEngine.EmulateRecognize(System.Speech.Recognition.RecognizedWordUnit[],System.Globalization.CompareOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L346C13-L351C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L346C13-L351C73" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognitionEngine.EmulateRecognizeAsync(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L355C13-L356C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L355C13-L356C10" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognitionEngine.EmulateRecognizeAsync(System.String,System.Globalization.CompareOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L359C13-L365C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L359C13-L365C10" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognitionEngine.EmulateRecognizeAsync(System.Speech.Recognition.RecognizedWordUnit[],System.Globalization.CompareOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L368C13-L374C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L368C13-L374C10" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognitionEngine.RequestRecognizerUpdate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L379C13-L380C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L379C13-L380C10" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognitionEngine.RequestRecognizerUpdate(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L383C13-L384C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L383C13-L384C10" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognitionEngine.RequestRecognizerUpdate(System.Object,System.TimeSpan)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L387C13-L388C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L387C13-L388C10" }, { "DocsId": "E:System.Speech.Recognition.SpeechRecognitionEngine.RecognizeCompleted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs" }, { "DocsId": "E:System.Speech.Recognition.SpeechRecognitionEngine.EmulateRecognizeCompleted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs" }, { "DocsId": "E:System.Speech.Recognition.SpeechRecognitionEngine.LoadGrammarCompleted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs" }, { "DocsId": "E:System.Speech.Recognition.SpeechRecognitionEngine.SpeechDetected", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs" }, { "DocsId": "E:System.Speech.Recognition.SpeechRecognitionEngine.SpeechRecognized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs" }, { "DocsId": "E:System.Speech.Recognition.SpeechRecognitionEngine.SpeechRecognitionRejected", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs" }, { "DocsId": "E:System.Speech.Recognition.SpeechRecognitionEngine.RecognizerUpdateReached", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs" }, { "DocsId": "E:System.Speech.Recognition.SpeechRecognitionEngine.SpeechHypothesized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L417C17-L423C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L417C17-L423C14" }, { "DocsId": "E:System.Speech.Recognition.SpeechRecognitionEngine.AudioSignalProblemOccurred", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L441C17-L447C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L441C17-L447C14" }, { "DocsId": "E:System.Speech.Recognition.SpeechRecognitionEngine.AudioLevelUpdated", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L465C17-L471C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L465C17-L471C14" }, { "DocsId": "E:System.Speech.Recognition.SpeechRecognitionEngine.AudioStateChanged", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L489C17-L495C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L489C17-L495C14" }, { "DocsId": "P:System.Speech.Recognition.SpeechRecognitionEngine.InitialSilenceTimeout", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L141C19-L141C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L141C19-L141C57" }, { "DocsId": "P:System.Speech.Recognition.SpeechRecognitionEngine.BabbleTimeout", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L147C19-L147C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L147C19-L147C49" }, { "DocsId": "P:System.Speech.Recognition.SpeechRecognitionEngine.EndSilenceTimeout", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L153C19-L153C127" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L153C19-L153C127" }, { "DocsId": "P:System.Speech.Recognition.SpeechRecognitionEngine.EndSilenceTimeoutAmbiguous", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L166C19-L166C135" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L166C19-L166C135" }, { "DocsId": "P:System.Speech.Recognition.SpeechRecognitionEngine.Grammars", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L180C19-L180C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L180C19-L180C44" }, { "DocsId": "P:System.Speech.Recognition.SpeechRecognitionEngine.RecognizerInfo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L186C19-L186C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L186C19-L186C50" }, { "DocsId": "P:System.Speech.Recognition.SpeechRecognitionEngine.AudioState", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L192C19-L192C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L192C19-L192C46" }, { "DocsId": "P:System.Speech.Recognition.SpeechRecognitionEngine.AudioLevel", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L198C19-L198C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L198C19-L198C46" }, { "DocsId": "P:System.Speech.Recognition.SpeechRecognitionEngine.RecognizerAudioPosition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L204C19-L204C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L204C19-L204C59" }, { "DocsId": "P:System.Speech.Recognition.SpeechRecognitionEngine.AudioPosition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L210C19-L210C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L210C19-L210C49" }, { "DocsId": "P:System.Speech.Recognition.SpeechRecognitionEngine.AudioFormat", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L214C19-L214C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L214C19-L214C47" }, { "DocsId": "P:System.Speech.Recognition.SpeechRecognitionEngine.MaxAlternates", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L218C19-L218C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L218C19-L218C49" } ], "DocsId": "T:System.Speech.Recognition.SpeechRecognitionEngine", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs" }, { "Members": [ { "DocsId": "M:System.Speech.Recognition.SpeechRecognizer.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L17C9-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L17C9-L20C10" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognizer.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L23C13-L25C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L23C13-L25C10" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognizer.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L28C13-L42C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L28C13-L42C10" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognizer.LoadGrammar(System.Speech.Recognition.Grammar)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L116C13-L117C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L116C13-L117C10" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognizer.LoadGrammarAsync(System.Speech.Recognition.Grammar)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L120C13-L121C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L120C13-L121C10" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognizer.UnloadGrammar(System.Speech.Recognition.Grammar)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L124C13-L125C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L124C13-L125C10" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognizer.UnloadAllGrammars", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L128C13-L129C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L128C13-L129C10" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognizer.EmulateRecognize(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L132C13-L138C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L132C13-L138C88" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognizer.EmulateRecognize(System.String,System.Globalization.CompareOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L143C13-L149C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L143C13-L149C88" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognizer.EmulateRecognize(System.Speech.Recognition.RecognizedWordUnit[],System.Globalization.CompareOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L154C13-L160C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L154C13-L160C88" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognizer.EmulateRecognizeAsync(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L165C13-L171C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L165C13-L171C88" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognizer.EmulateRecognizeAsync(System.String,System.Globalization.CompareOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L176C13-L182C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L176C13-L182C88" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognizer.EmulateRecognizeAsync(System.Speech.Recognition.RecognizedWordUnit[],System.Globalization.CompareOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L187C13-L193C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L187C13-L193C88" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognizer.RequestRecognizerUpdate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L200C13-L201C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L200C13-L201C10" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognizer.RequestRecognizerUpdate(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L204C13-L205C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L204C13-L205C10" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognizer.RequestRecognizerUpdate(System.Object,System.TimeSpan)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L208C13-L209C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L208C13-L209C10" }, { "DocsId": "E:System.Speech.Recognition.SpeechRecognizer.StateChanged", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs" }, { "DocsId": "E:System.Speech.Recognition.SpeechRecognizer.EmulateRecognizeCompleted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs" }, { "DocsId": "E:System.Speech.Recognition.SpeechRecognizer.LoadGrammarCompleted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs" }, { "DocsId": "E:System.Speech.Recognition.SpeechRecognizer.SpeechDetected", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs" }, { "DocsId": "E:System.Speech.Recognition.SpeechRecognizer.SpeechRecognized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs" }, { "DocsId": "E:System.Speech.Recognition.SpeechRecognizer.SpeechRecognitionRejected", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs" }, { "DocsId": "E:System.Speech.Recognition.SpeechRecognizer.RecognizerUpdateReached", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs" }, { "DocsId": "E:System.Speech.Recognition.SpeechRecognizer.SpeechHypothesized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L236C17-L242C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L236C17-L242C14" }, { "DocsId": "E:System.Speech.Recognition.SpeechRecognizer.AudioSignalProblemOccurred", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L260C17-L266C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L260C17-L266C14" }, { "DocsId": "E:System.Speech.Recognition.SpeechRecognizer.AudioLevelUpdated", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L284C17-L290C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L284C17-L290C14" }, { "DocsId": "E:System.Speech.Recognition.SpeechRecognizer.AudioStateChanged", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L308C17-L314C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L308C17-L314C14" }, { "DocsId": "P:System.Speech.Recognition.SpeechRecognizer.State", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L51C19-L51C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L51C19-L51C41" }, { "DocsId": "P:System.Speech.Recognition.SpeechRecognizer.Enabled", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L57C19-L57C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L57C19-L57C43" }, { "DocsId": "P:System.Speech.Recognition.SpeechRecognizer.PauseRecognizerOnRecognition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L62C19-L62C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L62C19-L62C64" }, { "DocsId": "P:System.Speech.Recognition.SpeechRecognizer.Grammars", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L69C19-L69C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L69C19-L69C44" }, { "DocsId": "P:System.Speech.Recognition.SpeechRecognizer.RecognizerInfo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L75C19-L75C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L75C19-L75C50" }, { "DocsId": "P:System.Speech.Recognition.SpeechRecognizer.AudioState", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L81C19-L81C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L81C19-L81C46" }, { "DocsId": "P:System.Speech.Recognition.SpeechRecognizer.AudioLevel", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L87C19-L87C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L87C19-L87C46" }, { "DocsId": "P:System.Speech.Recognition.SpeechRecognizer.AudioPosition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L93C19-L93C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L93C19-L93C49" }, { "DocsId": "P:System.Speech.Recognition.SpeechRecognizer.RecognizerAudioPosition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L99C19-L99C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L99C19-L99C59" }, { "DocsId": "P:System.Speech.Recognition.SpeechRecognizer.AudioFormat", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L103C19-L103C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L103C19-L103C47" }, { "DocsId": "P:System.Speech.Recognition.SpeechRecognizer.MaxAlternates", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L107C19-L107C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L107C19-L107C49" } ], "DocsId": "T:System.Speech.Recognition.SpeechRecognizer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs" }, { "Members": [ { "DocsId": "M:System.Speech.Recognition.SpeechUI.SendTextFeedback(System.Speech.Recognition.RecognitionResult,System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechUI.cs#L15C13-L18C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechUI.cs#L15C13-L18C73" } ], "DocsId": "T:System.Speech.Recognition.SpeechUI", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechUI.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechUI.cs" }, { "Members": [ { "DocsId": "F:System.Speech.Recognition.SubsetMatchingMode.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SubsetMatchingMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SubsetMatchingMode.cs" }, { "DocsId": "F:System.Speech.Recognition.SubsetMatchingMode.Subsequence", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SubsetMatchingMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SubsetMatchingMode.cs" }, { "DocsId": "F:System.Speech.Recognition.SubsetMatchingMode.OrderedSubset", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SubsetMatchingMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SubsetMatchingMode.cs" }, { "DocsId": "F:System.Speech.Recognition.SubsetMatchingMode.SubsequenceContentRequired", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SubsetMatchingMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SubsetMatchingMode.cs" }, { "DocsId": "F:System.Speech.Recognition.SubsetMatchingMode.OrderedSubsetContentRequired", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SubsetMatchingMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SubsetMatchingMode.cs" } ], "DocsId": "T:System.Speech.Recognition.SubsetMatchingMode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SubsetMatchingMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SubsetMatchingMode.cs" }, { "Members": [ { "DocsId": "P:System.Speech.Recognition.RecognizerUpdateReachedEventArgs.UserToken", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/UpdateEventArgs.cs#L25C19-L25C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/UpdateEventArgs.cs#L25C19-L25C37" }, { "DocsId": "P:System.Speech.Recognition.RecognizerUpdateReachedEventArgs.AudioPosition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/UpdateEventArgs.cs#L29C19-L29C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/UpdateEventArgs.cs#L29C19-L29C41" } ], "DocsId": "T:System.Speech.Recognition.RecognizerUpdateReachedEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/UpdateEventArgs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/UpdateEventArgs.cs" }, { "Members": [ { "DocsId": "P:System.Speech.Recognition.RecognitionEventArgs.Result", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/RecognitionEventArgs.cs#L20C19-L20C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/RecognitionEventArgs.cs#L20C19-L20C34" } ], "DocsId": "T:System.Speech.Recognition.RecognitionEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/RecognitionEventArgs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/RecognitionEventArgs.cs" }, { "Members": [], "DocsId": "T:System.Speech.Recognition.SpeechRecognizedEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/RecognitionEventArgs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/RecognitionEventArgs.cs" }, { "Members": [], "DocsId": "T:System.Speech.Recognition.SpeechRecognitionRejectedEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/RecognitionEventArgs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/RecognitionEventArgs.cs" }, { "Members": [], "DocsId": "T:System.Speech.Recognition.SpeechHypothesizedEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/RecognitionEventArgs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/RecognitionEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Speech.Recognition.RecognitionResult.GetAudioForWordRange(System.Speech.Recognition.RecognizedWordUnit,System.Speech.Recognition.RecognizedWordUnit)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/RecognitionResult.cs#L65C13-L68C139" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/RecognitionResult.cs#L65C13-L68C139" }, { "DocsId": "M:System.Speech.Recognition.RecognitionResult.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/RecognitionResult.cs#L74C13-L113C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/RecognitionResult.cs#L74C13-L113C10" }, { "DocsId": "P:System.Speech.Recognition.RecognitionResult.Audio", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/RecognitionResult.cs#L150C17-L193C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/RecognitionResult.cs#L150C17-L193C31" }, { "DocsId": "P:System.Speech.Recognition.RecognitionResult.Alternates", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/RecognitionResult.cs#L203C17-L203C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/RecognitionResult.cs#L203C17-L203C82" } ], "DocsId": "T:System.Speech.Recognition.RecognitionResult", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/RecognitionResult.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/RecognitionResult.cs" }, { "Members": [ { "DocsId": "M:System.Speech.Recognition.RecognizedAudio.WriteToWaveStream(System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/RecognizedAudio.cs#L48C13-L59C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/RecognizedAudio.cs#L48C13-L59C10" }, { "DocsId": "M:System.Speech.Recognition.RecognizedAudio.WriteToAudioStream(System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/RecognizedAudio.cs#L64C13-L70C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/RecognizedAudio.cs#L64C13-L70C10" }, { "DocsId": "M:System.Speech.Recognition.RecognizedAudio.GetRange(System.TimeSpan,System.TimeSpan)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/RecognizedAudio.cs#L75C13-L104C119" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/RecognizedAudio.cs#L75C13-L104C119" }, { "DocsId": "P:System.Speech.Recognition.RecognizedAudio.Format", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/RecognizedAudio.cs#L23C19-L23C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/RecognizedAudio.cs#L23C19-L23C39" }, { "DocsId": "P:System.Speech.Recognition.RecognizedAudio.StartTime", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/RecognizedAudio.cs#L29C19-L29C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/RecognizedAudio.cs#L29C19-L29C37" }, { "DocsId": "P:System.Speech.Recognition.RecognizedAudio.AudioPosition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/RecognizedAudio.cs#L36C19-L36C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/RecognizedAudio.cs#L36C19-L36C41" }, { "DocsId": "P:System.Speech.Recognition.RecognizedAudio.Duration", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/RecognizedAudio.cs#L42C19-L42C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/RecognizedAudio.cs#L42C19-L42C41" } ], "DocsId": "T:System.Speech.Recognition.RecognizedAudio", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/RecognizedAudio.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/RecognizedAudio.cs" }, { "Members": [ { "DocsId": "M:System.Speech.Recognition.RecognizedPhrase.ConstructSmlFromSemantics", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/RecognizedPhrase.cs#L37C13-L78C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/RecognizedPhrase.cs#L37C13-L78C29" }, { "DocsId": "P:System.Speech.Recognition.RecognizedPhrase.Text", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/RecognizedPhrase.cs#L88C17-L142C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/RecognizedPhrase.cs#L88C17-L142C30" }, { "DocsId": "P:System.Speech.Recognition.RecognizedPhrase.Confidence", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/RecognizedPhrase.cs#L149C17-L149C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/RecognizedPhrase.cs#L149C17-L149C36" }, { "DocsId": "P:System.Speech.Recognition.RecognizedPhrase.Words", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/RecognizedPhrase.cs#L156C17-L211C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/RecognizedPhrase.cs#L156C17-L211C31" }, { "DocsId": "P:System.Speech.Recognition.RecognizedPhrase.Semantics", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/RecognizedPhrase.cs#L220C17-L233C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/RecognizedPhrase.cs#L220C17-L233C35" }, { "DocsId": "P:System.Speech.Recognition.RecognizedPhrase.Homophones", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/RecognizedPhrase.cs#L242C17-L260C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/RecognizedPhrase.cs#L242C17-L260C36" }, { "DocsId": "P:System.Speech.Recognition.RecognizedPhrase.Grammar", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/RecognizedPhrase.cs#L268C17-L277C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/RecognizedPhrase.cs#L268C17-L277C33" }, { "DocsId": "P:System.Speech.Recognition.RecognizedPhrase.ReplacementWordUnits", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/RecognizedPhrase.cs#L284C17-L308C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/RecognizedPhrase.cs#L284C17-L308C41" }, { "DocsId": "P:System.Speech.Recognition.RecognizedPhrase.HomophoneGroupId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/RecognizedPhrase.cs#L315C17-L315C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/RecognizedPhrase.cs#L315C17-L315C42" } ], "DocsId": "T:System.Speech.Recognition.RecognizedPhrase", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/RecognizedPhrase.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/RecognizedPhrase.cs" }, { "Members": [ { "DocsId": "M:System.Speech.Recognition.RecognizedWordUnit.#ctor(System.String,System.Single,System.String,System.String,System.Speech.Recognition.DisplayAttributes,System.TimeSpan,System.TimeSpan)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/RecognizedWordUnit.cs#L19C9-L35C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/RecognizedWordUnit.cs#L19C9-L35C10" }, { "DocsId": "P:System.Speech.Recognition.RecognizedWordUnit.Text", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/RecognizedWordUnit.cs#L46C19-L46C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/RecognizedWordUnit.cs#L46C19-L46C32" }, { "DocsId": "P:System.Speech.Recognition.RecognizedWordUnit.Confidence", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/RecognizedWordUnit.cs#L52C19-L52C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/RecognizedWordUnit.cs#L52C19-L52C38" }, { "DocsId": "P:System.Speech.Recognition.RecognizedWordUnit.Pronunciation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/RecognizedWordUnit.cs#L58C17-L58C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/RecognizedWordUnit.cs#L58C17-L58C39" }, { "DocsId": "P:System.Speech.Recognition.RecognizedWordUnit.LexicalForm", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/RecognizedWordUnit.cs#L63C19-L63C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/RecognizedWordUnit.cs#L63C19-L63C39" }, { "DocsId": "P:System.Speech.Recognition.RecognizedWordUnit.DisplayAttributes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/RecognizedWordUnit.cs#L67C19-L67C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/RecognizedWordUnit.cs#L67C19-L67C45" } ], "DocsId": "T:System.Speech.Recognition.RecognizedWordUnit", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/RecognizedWordUnit.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/RecognizedWordUnit.cs" }, { "Members": [ { "DocsId": "F:System.Speech.Recognition.DisplayAttributes.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/RecognizedWordUnit.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/RecognizedWordUnit.cs" }, { "DocsId": "F:System.Speech.Recognition.DisplayAttributes.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/RecognizedWordUnit.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/RecognizedWordUnit.cs" }, { "DocsId": "F:System.Speech.Recognition.DisplayAttributes.ZeroTrailingSpaces", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/RecognizedWordUnit.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/RecognizedWordUnit.cs" }, { "DocsId": "F:System.Speech.Recognition.DisplayAttributes.OneTrailingSpace", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/RecognizedWordUnit.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/RecognizedWordUnit.cs" }, { "DocsId": "F:System.Speech.Recognition.DisplayAttributes.TwoTrailingSpaces", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/RecognizedWordUnit.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/RecognizedWordUnit.cs" }, { "DocsId": "F:System.Speech.Recognition.DisplayAttributes.ConsumeLeadingSpaces", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/RecognizedWordUnit.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/RecognizedWordUnit.cs" } ], "DocsId": "T:System.Speech.Recognition.DisplayAttributes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/RecognizedWordUnit.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/RecognizedWordUnit.cs" }, { "Members": [ { "DocsId": "P:System.Speech.Recognition.ReplacementText.DisplayAttributes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/ReplacementText.cs#L30C17-L30C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/ReplacementText.cs#L30C17-L30C43" }, { "DocsId": "P:System.Speech.Recognition.ReplacementText.Text", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/ReplacementText.cs#L37C17-L37C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/ReplacementText.cs#L37C17-L37C30" }, { "DocsId": "P:System.Speech.Recognition.ReplacementText.FirstWordIndex", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/ReplacementText.cs#L44C17-L44C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/ReplacementText.cs#L44C17-L44C35" }, { "DocsId": "P:System.Speech.Recognition.ReplacementText.CountOfWords", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/ReplacementText.cs#L51C17-L51C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/ReplacementText.cs#L51C17-L51C38" } ], "DocsId": "T:System.Speech.Recognition.ReplacementText", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/ReplacementText.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/ReplacementText.cs" }, { "Members": [ { "DocsId": "M:System.Speech.Recognition.SemanticValue.#ctor(System.String,System.Object,System.Single)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/SemanticValue.cs#L19C9-L27C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/SemanticValue.cs#L19C9-L27C10" }, { "DocsId": "M:System.Speech.Recognition.SemanticValue.#ctor(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/SemanticValue.cs#L30C15-L32C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/SemanticValue.cs#L30C15-L32C10" }, { "DocsId": "M:System.Speech.Recognition.SemanticValue.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/SemanticValue.cs#L39C13-L53C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/SemanticValue.cs#L39C13-L53C10" }, { "DocsId": "M:System.Speech.Recognition.SemanticValue.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/SemanticValue.cs#L56C13-L56C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/SemanticValue.cs#L56C13-L56C26" }, { "DocsId": "M:System.Speech.Recognition.SemanticValue.Contains(System.Collections.Generic.KeyValuePair{System.String,System.Speech.Recognition.SemanticValue})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/SemanticValue.cs#L97C13-L97C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/SemanticValue.cs#L97C13-L97C97" }, { "DocsId": "M:System.Speech.Recognition.SemanticValue.ContainsKey(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/SemanticValue.cs#L101C13-L101C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/SemanticValue.cs#L101C13-L101C49" }, { "DocsId": "M:System.Speech.Recognition.SemanticValue.System#Collections#Generic#ICollection>#Add(System.Collections.Generic.KeyValuePair{System.String,System.Speech.Recognition.SemanticValue})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/SemanticValue.cs#L113C13-L113C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/SemanticValue.cs#L113C13-L113C78" }, { "DocsId": "M:System.Speech.Recognition.SemanticValue.System#Collections#Generic#IDictionary#Add(System.String,System.Speech.Recognition.SemanticValue)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/SemanticValue.cs#L118C13-L118C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/SemanticValue.cs#L118C13-L118C78" }, { "DocsId": "M:System.Speech.Recognition.SemanticValue.System#Collections#Generic#ICollection>#Clear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/SemanticValue.cs#L123C13-L123C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/SemanticValue.cs#L123C13-L123C78" }, { "DocsId": "M:System.Speech.Recognition.SemanticValue.System#Collections#Generic#ICollection>#Remove(System.Collections.Generic.KeyValuePair{System.String,System.Speech.Recognition.SemanticValue})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/SemanticValue.cs#L128C13-L128C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/SemanticValue.cs#L128C13-L128C78" }, { "DocsId": "M:System.Speech.Recognition.SemanticValue.System#Collections#Generic#IDictionary#Remove(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/SemanticValue.cs#L133C13-L133C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/SemanticValue.cs#L133C13-L133C78" }, { "DocsId": "M:System.Speech.Recognition.SemanticValue.System#Collections#Generic#ICollection>#CopyTo(System.Collections.Generic.KeyValuePair{System.String,System.Speech.Recognition.SemanticValue}[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/SemanticValue.cs#L137C13-L138C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/SemanticValue.cs#L137C13-L138C10" }, { "DocsId": "M:System.Speech.Recognition.SemanticValue.System#Collections#Generic#IEnumerable>#GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/SemanticValue.cs#L141C13-L141C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/SemanticValue.cs#L141C13-L141C48" }, { "DocsId": "M:System.Speech.Recognition.SemanticValue.System#Collections#Generic#ICollection>#get_IsReadOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/SemanticValue.cs#L146C19-L146C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/SemanticValue.cs#L146C19-L146C31" }, { "DocsId": "M:System.Speech.Recognition.SemanticValue.System#Collections#Generic#IDictionary#get_Keys", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/SemanticValue.cs#L151C19-L151C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/SemanticValue.cs#L151C19-L151C43" }, { "DocsId": "M:System.Speech.Recognition.SemanticValue.System#Collections#Generic#IDictionary#get_Values", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/SemanticValue.cs#L156C19-L156C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/SemanticValue.cs#L156C19-L156C45" }, { "DocsId": "M:System.Speech.Recognition.SemanticValue.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/SemanticValue.cs#L160C13-L160C93" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/SemanticValue.cs#L160C13-L160C93" }, { "DocsId": "M:System.Speech.Recognition.SemanticValue.System#Collections#Generic#IDictionary#TryGetValue(System.String,System.Speech.Recognition.SemanticValue@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/SemanticValue.cs#L165C13-L165C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/SemanticValue.cs#L165C13-L165C60" }, { "DocsId": "P:System.Speech.Recognition.SemanticValue.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/SemanticValue.cs#L69C17-L69C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/SemanticValue.cs#L69C17-L69C31" }, { "DocsId": "P:System.Speech.Recognition.SemanticValue.Confidence", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/SemanticValue.cs#L82C17-L82C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/SemanticValue.cs#L82C17-L82C36" }, { "DocsId": "P:System.Speech.Recognition.SemanticValue.Item(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/SemanticValue.cs#L92C19-L92C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/SemanticValue.cs#L92C19-L92C43" }, { "DocsId": "P:System.Speech.Recognition.SemanticValue.Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/SemanticValue.cs#L105C19-L105C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/SemanticValue.cs#L105C19-L105C44" }, { "DocsId": "P:System.Speech.Recognition.SemanticValue.System#Collections#Generic#ICollection>#IsReadOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/SemanticValue.cs#L146C19-L146C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/SemanticValue.cs#L146C19-L146C31" }, { "DocsId": "P:System.Speech.Recognition.SemanticValue.System#Collections#Generic#IDictionary#Keys", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/SemanticValue.cs#L151C19-L151C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/SemanticValue.cs#L151C19-L151C43" }, { "DocsId": "P:System.Speech.Recognition.SemanticValue.System#Collections#Generic#IDictionary#Values", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/SemanticValue.cs#L156C19-L156C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/SemanticValue.cs#L156C19-L156C45" } ], "DocsId": "T:System.Speech.Recognition.SemanticValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/SemanticValue.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/SemanticValue.cs" }, { "Members": [ { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsDocument.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs#L26C9-L29C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs#L26C9-L29C10" }, { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsDocument.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs#L31C9-L39C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs#L31C9-L39C10" }, { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsDocument.#ctor(System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs#L40C9-L45C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs#L40C9-L45C10" }, { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsDocument.#ctor(System.Speech.Recognition.GrammarBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs#L46C9-L63C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs#L46C9-L63C10" }, { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsDocument.#ctor(System.Speech.Recognition.SrgsGrammar.SrgsRule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs#L65C57-L71C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs#L65C57-L71C10" }, { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsDocument.WriteSrgs(System.Xml.XmlWriter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs#L78C13-L85C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs#L78C13-L85C10" }, { "DocsId": "P:System.Speech.Recognition.SrgsGrammar.SrgsDocument.XmlBase", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs#L98C17-L98C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs#L98C17-L98C41" }, { "DocsId": "P:System.Speech.Recognition.SrgsGrammar.SrgsDocument.Culture", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs#L116C17-L116C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs#L116C17-L116C41" }, { "DocsId": "P:System.Speech.Recognition.SrgsGrammar.SrgsDocument.Root", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs#L136C17-L136C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs#L136C17-L136C38" }, { "DocsId": "P:System.Speech.Recognition.SrgsGrammar.SrgsDocument.Mode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs#L154C17-L154C113" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs#L154C17-L154C113" }, { "DocsId": "P:System.Speech.Recognition.SrgsGrammar.SrgsDocument.PhoneticAlphabet", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs#L169C17-L169C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs#L169C17-L169C72" }, { "DocsId": "P:System.Speech.Recognition.SrgsGrammar.SrgsDocument.Rules", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs#L186C17-L186C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs#L186C17-L186C39" }, { "DocsId": "P:System.Speech.Recognition.SrgsGrammar.SrgsDocument.Language", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs#L197C17-L197C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs#L197C17-L197C42" }, { "DocsId": "P:System.Speech.Recognition.SrgsGrammar.SrgsDocument.Namespace", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs#L215C17-L215C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs#L215C17-L215C43" }, { "DocsId": "P:System.Speech.Recognition.SrgsGrammar.SrgsDocument.CodeBehind", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs#L233C17-L233C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs#L233C17-L233C44" }, { "DocsId": "P:System.Speech.Recognition.SrgsGrammar.SrgsDocument.Debug", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs#L244C17-L244C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs#L244C17-L244C39" }, { "DocsId": "P:System.Speech.Recognition.SrgsGrammar.SrgsDocument.Script", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs#L259C17-L259C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs#L259C17-L259C40" }, { "DocsId": "P:System.Speech.Recognition.SrgsGrammar.SrgsDocument.ImportNamespaces", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs#L275C17-L275C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs#L275C17-L275C50" }, { "DocsId": "P:System.Speech.Recognition.SrgsGrammar.SrgsDocument.AssemblyReferences", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs#L286C17-L286C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs#L286C17-L286C52" } ], "DocsId": "T:System.Speech.Recognition.SrgsGrammar.SrgsDocument", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs" }, { "Members": [ { "DocsId": "F:System.Speech.Recognition.SrgsGrammar.SrgsGrammarMode.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs" }, { "DocsId": "F:System.Speech.Recognition.SrgsGrammar.SrgsGrammarMode.Voice", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs" }, { "DocsId": "F:System.Speech.Recognition.SrgsGrammar.SrgsGrammarMode.Dtmf", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs" } ], "DocsId": "T:System.Speech.Recognition.SrgsGrammar.SrgsGrammarMode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs" }, { "Members": [ { "DocsId": "F:System.Speech.Recognition.SrgsGrammar.SrgsPhoneticAlphabet.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs" }, { "DocsId": "F:System.Speech.Recognition.SrgsGrammar.SrgsPhoneticAlphabet.Sapi", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs" }, { "DocsId": "F:System.Speech.Recognition.SrgsGrammar.SrgsPhoneticAlphabet.Ipa", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs" }, { "DocsId": "F:System.Speech.Recognition.SrgsGrammar.SrgsPhoneticAlphabet.Ups", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs" } ], "DocsId": "T:System.Speech.Recognition.SrgsGrammar.SrgsPhoneticAlphabet", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs" }, { "Members": [ { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsElement.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsElement.cs#L18C9-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsElement.cs#L18C9-L20C10" }, { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsElement.System#Speech#Internal#SrgsParser#IElement#PostParse(System.Speech.Internal.SrgsParser.IElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsElement.cs#L48C9-L48C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsElement.cs#L48C9-L48C10" } ], "DocsId": "T:System.Speech.Recognition.SrgsGrammar.SrgsElement", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsElement.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsElement.cs" }, { "Members": [ { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsGrammarCompiler.Compile(System.String,System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsGrammarCompiler.cs#L24C13-L31C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsGrammarCompiler.cs#L24C13-L31C10" }, { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsGrammarCompiler.Compile(System.Speech.Recognition.SrgsGrammar.SrgsDocument,System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsGrammarCompiler.cs#L38C13-L42C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsGrammarCompiler.cs#L38C13-L42C10" }, { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsGrammarCompiler.Compile(System.Xml.XmlReader,System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsGrammarCompiler.cs#L49C13-L53C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsGrammarCompiler.cs#L49C13-L53C10" }, { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsGrammarCompiler.CompileClassLibrary(System.String[],System.String,System.String[],System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsGrammarCompiler.cs#L60C13-L87C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsGrammarCompiler.cs#L60C13-L87C10" }, { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsGrammarCompiler.CompileClassLibrary(System.Speech.Recognition.SrgsGrammar.SrgsDocument,System.String,System.String[],System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsGrammarCompiler.cs#L94C13-L98C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsGrammarCompiler.cs#L94C13-L98C10" }, { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsGrammarCompiler.CompileClassLibrary(System.Xml.XmlReader,System.String,System.String[],System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsGrammarCompiler.cs#L105C13-L109C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsGrammarCompiler.cs#L105C13-L109C10" } ], "DocsId": "T:System.Speech.Recognition.SrgsGrammar.SrgsGrammarCompiler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsGrammarCompiler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsGrammarCompiler.cs" }, { "Members": [ { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsItem.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsItem.cs#L306C9-L23C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsItem.cs#L306C9-L23C10" }, { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsItem.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsItem.cs#L25C15-L30C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsItem.cs#L25C15-L30C10" }, { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsItem.#ctor(System.Speech.Recognition.SrgsGrammar.SrgsElement[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsItem.cs#L32C15-L44C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsItem.cs#L32C15-L44C10" }, { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsItem.#ctor(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsItem.cs#L46C15-L49C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsItem.cs#L46C15-L49C10" }, { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsItem.#ctor(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsItem.cs#L51C15-L54C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsItem.cs#L51C15-L54C10" }, { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsItem.#ctor(System.Int32,System.Int32,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsItem.cs#L58C15-L61C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsItem.cs#L58C15-L61C10" }, { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsItem.#ctor(System.Int32,System.Int32,System.Speech.Recognition.SrgsGrammar.SrgsElement[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsItem.cs#L63C15-L66C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsItem.cs#L63C15-L66C10" }, { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsItem.SetRepeat(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsItem.cs#L74C13-L79C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsItem.cs#L74C13-L79C10" }, { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsItem.SetRepeat(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsItem.cs#L83C13-L99C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsItem.cs#L83C13-L99C10" }, { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsItem.Add(System.Speech.Recognition.SrgsGrammar.SrgsElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsItem.cs#L102C13-L105C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsItem.cs#L102C13-L105C10" }, { "DocsId": "P:System.Speech.Recognition.SrgsGrammar.SrgsItem.Elements", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsItem.cs#L114C17-L114C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsItem.cs#L114C17-L114C34" }, { "DocsId": "P:System.Speech.Recognition.SrgsGrammar.SrgsItem.RepeatProbability", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsItem.cs#L122C17-L122C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsItem.cs#L122C17-L122C43" }, { "DocsId": "P:System.Speech.Recognition.SrgsGrammar.SrgsItem.MinRepeat", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsItem.cs#L139C17-L139C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsItem.cs#L139C17-L139C62" }, { "DocsId": "P:System.Speech.Recognition.SrgsGrammar.SrgsItem.MaxRepeat", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsItem.cs#L147C17-L147C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsItem.cs#L147C17-L147C62" }, { "DocsId": "P:System.Speech.Recognition.SrgsGrammar.SrgsItem.Weight", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsItem.cs#L154C17-L154C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsItem.cs#L154C17-L154C32" } ], "DocsId": "T:System.Speech.Recognition.SrgsGrammar.SrgsItem", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsItem.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsItem.cs" }, { "Members": [ { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsNameValueTag.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsNameValueTag.cs#L18C9-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsNameValueTag.cs#L18C9-L20C10" }, { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsNameValueTag.#ctor(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsNameValueTag.cs#L21C9-L26C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsNameValueTag.cs#L21C9-L26C10" }, { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsNameValueTag.#ctor(System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsNameValueTag.cs#L28C15-L31C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsNameValueTag.cs#L28C15-L31C10" }, { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsNameValueTag.System#Speech#Internal#SrgsParser#IPropertyTag#NameValue(System.Speech.Internal.SrgsParser.IElement,System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsNameValueTag.cs#L128C13-L130C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsNameValueTag.cs#L128C13-L130C10" }, { "DocsId": "P:System.Speech.Recognition.SrgsGrammar.SrgsNameValueTag.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsNameValueTag.cs#L41C17-L41C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsNameValueTag.cs#L41C17-L41C30" }, { "DocsId": "P:System.Speech.Recognition.SrgsGrammar.SrgsNameValueTag.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsNameValueTag.cs#L54C19-L54C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsNameValueTag.cs#L54C19-L54C33" } ], "DocsId": "T:System.Speech.Recognition.SrgsGrammar.SrgsNameValueTag", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsNameValueTag.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsNameValueTag.cs" }, { "Members": [ { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsOneOf.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsOneOf.cs#L126C9-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsOneOf.cs#L126C9-L21C10" }, { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsOneOf.#ctor(System.String[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsOneOf.cs#L23C15-L36C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsOneOf.cs#L23C15-L36C10" }, { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsOneOf.#ctor(System.Speech.Recognition.SrgsGrammar.SrgsItem[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsOneOf.cs#L38C15-L52C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsOneOf.cs#L38C15-L52C10" }, { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsOneOf.Add(System.Speech.Recognition.SrgsGrammar.SrgsItem)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsOneOf.cs#L59C13-L62C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsOneOf.cs#L59C13-L62C10" }, { "DocsId": "P:System.Speech.Recognition.SrgsGrammar.SrgsOneOf.Items", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsOneOf.cs#L73C17-L73C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsOneOf.cs#L73C17-L73C31" } ], "DocsId": "T:System.Speech.Recognition.SrgsGrammar.SrgsOneOf", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsOneOf.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsOneOf.cs" }, { "Members": [ { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsRule.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRule.cs#L26C15-L30C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRule.cs#L26C15-L30C10" }, { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsRule.#ctor(System.String,System.Speech.Recognition.SrgsGrammar.SrgsElement[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRule.cs#L32C15-L47C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRule.cs#L32C15-L47C10" }, { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsRule.Add(System.Speech.Recognition.SrgsGrammar.SrgsElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRule.cs#L54C13-L57C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRule.cs#L54C13-L57C10" }, { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsRule.System#Speech#Internal#SrgsParser#IElement#PostParse(System.Speech.Internal.SrgsParser.IElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRule.cs#L315C13-L316C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRule.cs#L315C13-L316C10" }, { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsRule.System#Speech#Internal#SrgsParser#IRule#CreateScript(System.Speech.Internal.SrgsParser.IGrammar,System.String,System.String,System.Speech.Internal.SrgsParser.RuleMethodScript)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRule.cs#L323C21-L343C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRule.cs#L16707566C0-L343C10" }, { "DocsId": "P:System.Speech.Recognition.SrgsGrammar.SrgsRule.Elements", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRule.cs#L66C17-L66C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRule.cs#L66C17-L66C34" }, { "DocsId": "P:System.Speech.Recognition.SrgsGrammar.SrgsRule.Id", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRule.cs#L73C17-L73C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRule.cs#L73C17-L73C28" }, { "DocsId": "P:System.Speech.Recognition.SrgsGrammar.SrgsRule.Scope", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRule.cs#L85C17-L85C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRule.cs#L85C17-L85C31" }, { "DocsId": "P:System.Speech.Recognition.SrgsGrammar.SrgsRule.BaseClass", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRule.cs#L101C17-L101C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRule.cs#L101C17-L101C35" }, { "DocsId": "P:System.Speech.Recognition.SrgsGrammar.SrgsRule.Script", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRule.cs#L119C17-L119C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRule.cs#L119C17-L119C32" }, { "DocsId": "P:System.Speech.Recognition.SrgsGrammar.SrgsRule.OnInit", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRule.cs#L135C17-L135C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRule.cs#L135C17-L135C32" }, { "DocsId": "P:System.Speech.Recognition.SrgsGrammar.SrgsRule.OnParse", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRule.cs#L151C17-L151C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRule.cs#L151C17-L151C33" }, { "DocsId": "P:System.Speech.Recognition.SrgsGrammar.SrgsRule.OnError", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRule.cs#L167C17-L167C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRule.cs#L167C17-L167C33" }, { "DocsId": "P:System.Speech.Recognition.SrgsGrammar.SrgsRule.OnRecognition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRule.cs#L183C17-L183C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRule.cs#L183C17-L183C39" } ], "DocsId": "T:System.Speech.Recognition.SrgsGrammar.SrgsRule", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRule.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRule.cs" }, { "Members": [ { "DocsId": "F:System.Speech.Recognition.SrgsGrammar.SrgsRuleScope.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRule.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRule.cs" }, { "DocsId": "F:System.Speech.Recognition.SrgsGrammar.SrgsRuleScope.Public", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRule.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRule.cs" }, { "DocsId": "F:System.Speech.Recognition.SrgsGrammar.SrgsRuleScope.Private", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRule.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRule.cs" } ], "DocsId": "T:System.Speech.Recognition.SrgsGrammar.SrgsRuleScope", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRule.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRule.cs" }, { "Members": [ { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsRuleRef.#ctor(System.Uri)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRuleRef.cs#L19C9-L22C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRuleRef.cs#L19C9-L22C10" }, { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsRuleRef.#ctor(System.Uri,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRuleRef.cs#L23C9-L28C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRuleRef.cs#L23C9-L28C10" }, { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsRuleRef.#ctor(System.Uri,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRuleRef.cs#L29C9-L34C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRuleRef.cs#L29C9-L34C10" }, { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsRuleRef.#ctor(System.Uri,System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRuleRef.cs#L35C9-L40C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRuleRef.cs#L35C9-L40C10" }, { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsRuleRef.#ctor(System.Speech.Recognition.SrgsGrammar.SrgsRule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRuleRef.cs#L41C9-L46C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRuleRef.cs#L41C9-L46C10" }, { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsRuleRef.#ctor(System.Speech.Recognition.SrgsGrammar.SrgsRule,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRuleRef.cs#L48C15-L53C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRuleRef.cs#L48C15-L53C10" }, { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsRuleRef.#ctor(System.Speech.Recognition.SrgsGrammar.SrgsRule,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRuleRef.cs#L55C15-L61C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRuleRef.cs#L55C15-L61C10" }, { "DocsId": "F:System.Speech.Recognition.SrgsGrammar.SrgsRuleRef.Null", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRuleRef.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRuleRef.cs" }, { "DocsId": "F:System.Speech.Recognition.SrgsGrammar.SrgsRuleRef.Void", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRuleRef.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRuleRef.cs" }, { "DocsId": "F:System.Speech.Recognition.SrgsGrammar.SrgsRuleRef.Garbage", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRuleRef.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRuleRef.cs" }, { "DocsId": "F:System.Speech.Recognition.SrgsGrammar.SrgsRuleRef.Dictation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRuleRef.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRuleRef.cs" }, { "DocsId": "F:System.Speech.Recognition.SrgsGrammar.SrgsRuleRef.MnemonicSpelling", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRuleRef.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRuleRef.cs" }, { "DocsId": "P:System.Speech.Recognition.SrgsGrammar.SrgsRuleRef.Uri", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRuleRef.cs#L86C17-L86C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRuleRef.cs#L86C17-L86C29" }, { "DocsId": "P:System.Speech.Recognition.SrgsGrammar.SrgsRuleRef.SemanticKey", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRuleRef.cs#L97C17-L97C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRuleRef.cs#L97C17-L97C37" }, { "DocsId": "P:System.Speech.Recognition.SrgsGrammar.SrgsRuleRef.Params", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRuleRef.cs#L108C17-L108C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRuleRef.cs#L108C17-L108C32" } ], "DocsId": "T:System.Speech.Recognition.SrgsGrammar.SrgsRuleRef", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRuleRef.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRuleRef.cs" }, { "Members": [ { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsRulesCollection.Add(System.Speech.Recognition.SrgsGrammar.SrgsRule[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRulesCollection.cs#L14C13-L24C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRulesCollection.cs#L14C13-L24C10" }, { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsRulesCollection.GetKeyForItem(System.Speech.Recognition.SrgsGrammar.SrgsRule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRulesCollection.cs#L27C13-L29C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRulesCollection.cs#L27C13-L29C28" }, { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsRulesCollection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRulesCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRulesCollection.cs" } ], "DocsId": "T:System.Speech.Recognition.SrgsGrammar.SrgsRulesCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRulesCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRulesCollection.cs" }, { "Members": [ { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsSemanticInterpretationTag.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsSemanticInterpretationTag.cs#L98C9-L19C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsSemanticInterpretationTag.cs#L98C9-L19C10" }, { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsSemanticInterpretationTag.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsSemanticInterpretationTag.cs#L98C9-L25C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsSemanticInterpretationTag.cs#L98C9-L25C10" }, { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsSemanticInterpretationTag.System#Speech#Internal#SrgsParser#ISemanticTag#Content(System.Speech.Internal.SrgsParser.IElement,System.String,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsSemanticInterpretationTag.cs#L91C13-L92C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsSemanticInterpretationTag.cs#L91C13-L92C10" }, { "DocsId": "P:System.Speech.Recognition.SrgsGrammar.SrgsSemanticInterpretationTag.Script", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsSemanticInterpretationTag.cs#L34C17-L34C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsSemanticInterpretationTag.cs#L34C17-L34C32" } ], "DocsId": "T:System.Speech.Recognition.SrgsGrammar.SrgsSemanticInterpretationTag", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsSemanticInterpretationTag.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsSemanticInterpretationTag.cs" }, { "Members": [ { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsSubset.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsSubset.cs#L19C15-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsSubset.cs#L19C15-L21C10" }, { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsSubset.#ctor(System.String,System.Speech.Recognition.SubsetMatchingMode)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsSubset.cs#L22C9-L35C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsSubset.cs#L22C9-L35C10" }, { "DocsId": "P:System.Speech.Recognition.SrgsGrammar.SrgsSubset.MatchingMode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsSubset.cs#L44C17-L44C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsSubset.cs#L44C17-L44C35" }, { "DocsId": "P:System.Speech.Recognition.SrgsGrammar.SrgsSubset.Text", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsSubset.cs#L60C17-L60C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsSubset.cs#L60C17-L60C30" } ], "DocsId": "T:System.Speech.Recognition.SrgsGrammar.SrgsSubset", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsSubset.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsSubset.cs" }, { "Members": [ { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsText.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsText.cs#L67C9-L18C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsText.cs#L67C9-L18C10" }, { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsText.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsText.cs#L67C9-L24C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsText.cs#L67C9-L24C10" }, { "DocsId": "P:System.Speech.Recognition.SrgsGrammar.SrgsText.Text", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsText.cs#L33C17-L33C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsText.cs#L33C17-L33C30" } ], "DocsId": "T:System.Speech.Recognition.SrgsGrammar.SrgsText", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsText.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsText.cs" }, { "Members": [ { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsToken.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsToken.cs#L161C9-L23C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsToken.cs#L161C9-L23C10" }, { "DocsId": "P:System.Speech.Recognition.SrgsGrammar.SrgsToken.Text", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsToken.cs#L32C17-L32C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsToken.cs#L32C17-L32C30" }, { "DocsId": "P:System.Speech.Recognition.SrgsGrammar.SrgsToken.Pronunciation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsToken.cs#L51C17-L51C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsToken.cs#L51C17-L51C39" }, { "DocsId": "P:System.Speech.Recognition.SrgsGrammar.SrgsToken.Display", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsToken.cs#L63C17-L63C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsToken.cs#L63C17-L63C33" } ], "DocsId": "T:System.Speech.Recognition.SrgsGrammar.SrgsToken", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsToken.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsToken.cs" }, { "Members": [ { "DocsId": "F:System.Speech.AudioFormat.EncodingFormat.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/AudioFormat/EncodingFormat.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/AudioFormat/EncodingFormat.cs" }, { "DocsId": "F:System.Speech.AudioFormat.EncodingFormat.Pcm", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/AudioFormat/EncodingFormat.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/AudioFormat/EncodingFormat.cs" }, { "DocsId": "F:System.Speech.AudioFormat.EncodingFormat.ALaw", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/AudioFormat/EncodingFormat.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/AudioFormat/EncodingFormat.cs" }, { "DocsId": "F:System.Speech.AudioFormat.EncodingFormat.ULaw", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/AudioFormat/EncodingFormat.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/AudioFormat/EncodingFormat.cs" } ], "DocsId": "T:System.Speech.AudioFormat.EncodingFormat", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/AudioFormat/EncodingFormat.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/AudioFormat/EncodingFormat.cs" }, { "Members": [ { "DocsId": "M:System.Speech.AudioFormat.SpeechAudioFormatInfo.#ctor(System.Speech.AudioFormat.EncodingFormat,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/AudioFormat/SpeechAudioFormatInfo.cs#L63C15-L76C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/AudioFormat/SpeechAudioFormatInfo.cs#L63C15-L76C10" }, { "DocsId": "M:System.Speech.AudioFormat.SpeechAudioFormatInfo.#ctor(System.Int32,System.Speech.AudioFormat.AudioBitsPerSample,System.Speech.AudioFormat.AudioChannel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/AudioFormat/SpeechAudioFormatInfo.cs#L78C15-L83C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/AudioFormat/SpeechAudioFormatInfo.cs#L78C15-L83C10" }, { "DocsId": "M:System.Speech.AudioFormat.SpeechAudioFormatInfo.FormatSpecificData", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/AudioFormat/SpeechAudioFormatInfo.cs#L101C46-L101C89" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/AudioFormat/SpeechAudioFormatInfo.cs#L101C46-L101C89" }, { "DocsId": "M:System.Speech.AudioFormat.SpeechAudioFormatInfo.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/AudioFormat/SpeechAudioFormatInfo.cs#L104C13-L130C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/AudioFormat/SpeechAudioFormatInfo.cs#L104C13-L130C25" }, { "DocsId": "M:System.Speech.AudioFormat.SpeechAudioFormatInfo.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/AudioFormat/SpeechAudioFormatInfo.cs#L134C13-L134C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/AudioFormat/SpeechAudioFormatInfo.cs#L134C13-L134C57" }, { "DocsId": "P:System.Speech.AudioFormat.SpeechAudioFormatInfo.AverageBytesPerSecond", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/AudioFormat/SpeechAudioFormatInfo.cs#L89C50-L89C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/AudioFormat/SpeechAudioFormatInfo.cs#L89C50-L89C80" }, { "DocsId": "P:System.Speech.AudioFormat.SpeechAudioFormatInfo.BitsPerSample", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/AudioFormat/SpeechAudioFormatInfo.cs#L91C42-L91C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/AudioFormat/SpeechAudioFormatInfo.cs#L91C42-L91C64" }, { "DocsId": "P:System.Speech.AudioFormat.SpeechAudioFormatInfo.BlockAlign", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/AudioFormat/SpeechAudioFormatInfo.cs#L93C39-L93C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/AudioFormat/SpeechAudioFormatInfo.cs#L93C39-L93C58" }, { "DocsId": "P:System.Speech.AudioFormat.SpeechAudioFormatInfo.EncodingFormat", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/AudioFormat/SpeechAudioFormatInfo.cs#L94C54-L94C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/AudioFormat/SpeechAudioFormatInfo.cs#L94C54-L94C77" }, { "DocsId": "P:System.Speech.AudioFormat.SpeechAudioFormatInfo.ChannelCount", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/AudioFormat/SpeechAudioFormatInfo.cs#L95C41-L95C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/AudioFormat/SpeechAudioFormatInfo.cs#L95C41-L95C62" }, { "DocsId": "P:System.Speech.AudioFormat.SpeechAudioFormatInfo.SamplesPerSecond", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/AudioFormat/SpeechAudioFormatInfo.cs#L96C45-L96C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/AudioFormat/SpeechAudioFormatInfo.cs#L96C45-L96C70" } ], "DocsId": "T:System.Speech.AudioFormat.SpeechAudioFormatInfo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/AudioFormat/SpeechAudioFormatInfo.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/AudioFormat/SpeechAudioFormatInfo.cs" }, { "Members": [ { "DocsId": "F:System.Speech.AudioFormat.AudioChannel.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/AudioFormat/SpeechAudioFormatInfo.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/AudioFormat/SpeechAudioFormatInfo.cs" }, { "DocsId": "F:System.Speech.AudioFormat.AudioChannel.Mono", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/AudioFormat/SpeechAudioFormatInfo.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/AudioFormat/SpeechAudioFormatInfo.cs" }, { "DocsId": "F:System.Speech.AudioFormat.AudioChannel.Stereo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/AudioFormat/SpeechAudioFormatInfo.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/AudioFormat/SpeechAudioFormatInfo.cs" } ], "DocsId": "T:System.Speech.AudioFormat.AudioChannel", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/AudioFormat/SpeechAudioFormatInfo.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/AudioFormat/SpeechAudioFormatInfo.cs" }, { "Members": [ { "DocsId": "F:System.Speech.AudioFormat.AudioBitsPerSample.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/AudioFormat/SpeechAudioFormatInfo.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/AudioFormat/SpeechAudioFormatInfo.cs" }, { "DocsId": "F:System.Speech.AudioFormat.AudioBitsPerSample.Eight", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/AudioFormat/SpeechAudioFormatInfo.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/AudioFormat/SpeechAudioFormatInfo.cs" }, { "DocsId": "F:System.Speech.AudioFormat.AudioBitsPerSample.Sixteen", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/AudioFormat/SpeechAudioFormatInfo.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/AudioFormat/SpeechAudioFormatInfo.cs" } ], "DocsId": "T:System.Speech.AudioFormat.AudioBitsPerSample", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/AudioFormat/SpeechAudioFormatInfo.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/AudioFormat/SpeechAudioFormatInfo.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/System.Threading.AccessControl.json b/xml/SourceLinkInformation/net-8.0/System.Threading.AccessControl.json index 3730077166b..2abf99ee69c 100644 --- a/xml/SourceLinkInformation/net-8.0/System.Threading.AccessControl.json +++ b/xml/SourceLinkInformation/net-8.0/System.Threading.AccessControl.json @@ -1,531 +1,530 @@ { "Assembly": "System.Threading.AccessControl", - "GUID": "8833478CE7DA4D409E38D784FF4FC637FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "A9E8EC195F5041EB885C7A30C9501FC0FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "F:System.Security.AccessControl.MutexRights.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs" }, { "DocsId": "F:System.Security.AccessControl.MutexRights.Modify", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs" }, { "DocsId": "F:System.Security.AccessControl.MutexRights.Delete", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs" }, { "DocsId": "F:System.Security.AccessControl.MutexRights.ReadPermissions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs" }, { "DocsId": "F:System.Security.AccessControl.MutexRights.ChangePermissions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs" }, { "DocsId": "F:System.Security.AccessControl.MutexRights.TakeOwnership", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs" }, { "DocsId": "F:System.Security.AccessControl.MutexRights.Synchronize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs" }, { "DocsId": "F:System.Security.AccessControl.MutexRights.FullControl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs" } ], "DocsId": "T:System.Security.AccessControl.MutexRights", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs" }, { "Members": [ { "DocsId": "M:System.Security.AccessControl.MutexAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.MutexRights,System.Security.AccessControl.AccessControlType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs#L48C15-L50C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs#L48C15-L50C10" }, { "DocsId": "M:System.Security.AccessControl.MutexAccessRule.#ctor(System.String,System.Security.AccessControl.MutexRights,System.Security.AccessControl.AccessControlType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs#L53C15-L55C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs#L53C15-L55C10" }, { "DocsId": "P:System.Security.AccessControl.MutexAccessRule.MutexRights", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs#L80C19-L80C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs#L80C19-L80C55" } ], "DocsId": "T:System.Security.AccessControl.MutexAccessRule", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs" }, { "Members": [ { "DocsId": "M:System.Security.AccessControl.MutexAuditRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.MutexRights,System.Security.AccessControl.AuditFlags)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs#L88C15-L90C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs#L88C15-L90C10" }, { "DocsId": "P:System.Security.AccessControl.MutexAuditRule.MutexRights", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs#L99C19-L99C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs#L99C19-L99C55" } ], "DocsId": "T:System.Security.AccessControl.MutexAuditRule", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs" }, { "Members": [ { "DocsId": "M:System.Security.AccessControl.MutexSecurity.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs#L107C15-L109C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs#L107C15-L109C10" }, { "DocsId": "M:System.Security.AccessControl.MutexSecurity.#ctor(System.String,System.Security.AccessControl.AccessControlSections)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs#L112C15-L115C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs#L112C15-L115C10" }, { "DocsId": "M:System.Security.AccessControl.MutexSecurity.AccessRuleFactory(System.Security.Principal.IdentityReference,System.Int32,System.Boolean,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Security.AccessControl.AccessControlType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs#L144C13-L144C126" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs#L144C13-L144C126" }, { "DocsId": "M:System.Security.AccessControl.MutexSecurity.AuditRuleFactory(System.Security.Principal.IdentityReference,System.Int32,System.Boolean,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Security.AccessControl.AuditFlags)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs#L149C13-L149C126" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs#L149C13-L149C126" }, { "DocsId": "M:System.Security.AccessControl.MutexSecurity.AddAccessRule(System.Security.AccessControl.MutexAccessRule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs#L189C13-L190C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs#L189C13-L190C10" }, { "DocsId": "M:System.Security.AccessControl.MutexSecurity.SetAccessRule(System.Security.AccessControl.MutexAccessRule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs#L194C13-L195C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs#L194C13-L195C10" }, { "DocsId": "M:System.Security.AccessControl.MutexSecurity.ResetAccessRule(System.Security.AccessControl.MutexAccessRule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs#L199C13-L200C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs#L199C13-L200C10" }, { "DocsId": "M:System.Security.AccessControl.MutexSecurity.RemoveAccessRule(System.Security.AccessControl.MutexAccessRule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs#L204C13-L204C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs#L204C13-L204C48" }, { "DocsId": "M:System.Security.AccessControl.MutexSecurity.RemoveAccessRuleAll(System.Security.AccessControl.MutexAccessRule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs#L209C13-L210C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs#L209C13-L210C10" }, { "DocsId": "M:System.Security.AccessControl.MutexSecurity.RemoveAccessRuleSpecific(System.Security.AccessControl.MutexAccessRule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs#L214C13-L215C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs#L214C13-L215C10" }, { "DocsId": "M:System.Security.AccessControl.MutexSecurity.AddAuditRule(System.Security.AccessControl.MutexAuditRule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs#L219C13-L220C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs#L219C13-L220C10" }, { "DocsId": "M:System.Security.AccessControl.MutexSecurity.SetAuditRule(System.Security.AccessControl.MutexAuditRule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs#L224C13-L225C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs#L224C13-L225C10" }, { "DocsId": "M:System.Security.AccessControl.MutexSecurity.RemoveAuditRule(System.Security.AccessControl.MutexAuditRule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs#L229C13-L229C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs#L229C13-L229C47" }, { "DocsId": "M:System.Security.AccessControl.MutexSecurity.RemoveAuditRuleAll(System.Security.AccessControl.MutexAuditRule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs#L234C13-L235C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs#L234C13-L235C10" }, { "DocsId": "M:System.Security.AccessControl.MutexSecurity.RemoveAuditRuleSpecific(System.Security.AccessControl.MutexAuditRule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs#L239C13-L240C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs#L239C13-L240C10" }, { "DocsId": "P:System.Security.AccessControl.MutexSecurity.AccessRightType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs#L244C19-L244C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs#L244C19-L244C46" }, { "DocsId": "P:System.Security.AccessControl.MutexSecurity.AccessRuleType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs#L249C19-L249C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs#L249C19-L249C50" }, { "DocsId": "P:System.Security.AccessControl.MutexSecurity.AuditRuleType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs#L254C19-L254C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs#L254C19-L254C49" } ], "DocsId": "T:System.Security.AccessControl.MutexSecurity", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs" }, { "Members": [ { "DocsId": "F:System.Security.AccessControl.EventWaitHandleRights.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs" }, { "DocsId": "F:System.Security.AccessControl.EventWaitHandleRights.Modify", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs" }, { "DocsId": "F:System.Security.AccessControl.EventWaitHandleRights.Delete", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs" }, { "DocsId": "F:System.Security.AccessControl.EventWaitHandleRights.ReadPermissions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs" }, { "DocsId": "F:System.Security.AccessControl.EventWaitHandleRights.ChangePermissions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs" }, { "DocsId": "F:System.Security.AccessControl.EventWaitHandleRights.TakeOwnership", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs" }, { "DocsId": "F:System.Security.AccessControl.EventWaitHandleRights.Synchronize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs" }, { "DocsId": "F:System.Security.AccessControl.EventWaitHandleRights.FullControl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs" } ], "DocsId": "T:System.Security.AccessControl.EventWaitHandleRights", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs" }, { "Members": [ { "DocsId": "M:System.Security.AccessControl.EventWaitHandleAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.EventWaitHandleRights,System.Security.AccessControl.AccessControlType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs#L47C15-L49C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs#L47C15-L49C10" }, { "DocsId": "M:System.Security.AccessControl.EventWaitHandleAccessRule.#ctor(System.String,System.Security.AccessControl.EventWaitHandleRights,System.Security.AccessControl.AccessControlType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs#L52C15-L54C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs#L52C15-L54C10" }, { "DocsId": "P:System.Security.AccessControl.EventWaitHandleAccessRule.EventWaitHandleRights", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs#L79C19-L79C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs#L79C19-L79C65" } ], "DocsId": "T:System.Security.AccessControl.EventWaitHandleAccessRule", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs" }, { "Members": [ { "DocsId": "M:System.Security.AccessControl.EventWaitHandleAuditRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.EventWaitHandleRights,System.Security.AccessControl.AuditFlags)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs#L87C15-L89C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs#L87C15-L89C10" }, { "DocsId": "P:System.Security.AccessControl.EventWaitHandleAuditRule.EventWaitHandleRights", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs#L105C19-L105C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs#L105C19-L105C65" } ], "DocsId": "T:System.Security.AccessControl.EventWaitHandleAuditRule", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs" }, { "Members": [ { "DocsId": "M:System.Security.AccessControl.EventWaitHandleSecurity.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs#L113C15-L115C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs#L113C15-L115C10" }, { "DocsId": "M:System.Security.AccessControl.EventWaitHandleSecurity.AccessRuleFactory(System.Security.Principal.IdentityReference,System.Int32,System.Boolean,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Security.AccessControl.AccessControlType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs#L150C13-L150C136" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs#L150C13-L150C136" }, { "DocsId": "M:System.Security.AccessControl.EventWaitHandleSecurity.AuditRuleFactory(System.Security.Principal.IdentityReference,System.Int32,System.Boolean,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Security.AccessControl.AuditFlags)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs#L155C13-L155C136" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs#L155C13-L155C136" }, { "DocsId": "M:System.Security.AccessControl.EventWaitHandleSecurity.AddAccessRule(System.Security.AccessControl.EventWaitHandleAccessRule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs#L199C13-L200C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs#L199C13-L200C10" }, { "DocsId": "M:System.Security.AccessControl.EventWaitHandleSecurity.SetAccessRule(System.Security.AccessControl.EventWaitHandleAccessRule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs#L204C13-L205C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs#L204C13-L205C10" }, { "DocsId": "M:System.Security.AccessControl.EventWaitHandleSecurity.ResetAccessRule(System.Security.AccessControl.EventWaitHandleAccessRule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs#L209C13-L210C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs#L209C13-L210C10" }, { "DocsId": "M:System.Security.AccessControl.EventWaitHandleSecurity.RemoveAccessRule(System.Security.AccessControl.EventWaitHandleAccessRule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs#L214C13-L214C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs#L214C13-L214C48" }, { "DocsId": "M:System.Security.AccessControl.EventWaitHandleSecurity.RemoveAccessRuleAll(System.Security.AccessControl.EventWaitHandleAccessRule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs#L219C13-L220C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs#L219C13-L220C10" }, { "DocsId": "M:System.Security.AccessControl.EventWaitHandleSecurity.RemoveAccessRuleSpecific(System.Security.AccessControl.EventWaitHandleAccessRule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs#L224C13-L225C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs#L224C13-L225C10" }, { "DocsId": "M:System.Security.AccessControl.EventWaitHandleSecurity.AddAuditRule(System.Security.AccessControl.EventWaitHandleAuditRule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs#L229C13-L230C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs#L229C13-L230C10" }, { "DocsId": "M:System.Security.AccessControl.EventWaitHandleSecurity.SetAuditRule(System.Security.AccessControl.EventWaitHandleAuditRule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs#L234C13-L235C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs#L234C13-L235C10" }, { "DocsId": "M:System.Security.AccessControl.EventWaitHandleSecurity.RemoveAuditRule(System.Security.AccessControl.EventWaitHandleAuditRule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs#L239C13-L239C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs#L239C13-L239C47" }, { "DocsId": "M:System.Security.AccessControl.EventWaitHandleSecurity.RemoveAuditRuleAll(System.Security.AccessControl.EventWaitHandleAuditRule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs#L244C13-L245C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs#L244C13-L245C10" }, { "DocsId": "M:System.Security.AccessControl.EventWaitHandleSecurity.RemoveAuditRuleSpecific(System.Security.AccessControl.EventWaitHandleAuditRule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs#L249C13-L250C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs#L249C13-L250C10" }, { "DocsId": "P:System.Security.AccessControl.EventWaitHandleSecurity.AccessRightType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs#L254C19-L254C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs#L254C19-L254C56" }, { "DocsId": "P:System.Security.AccessControl.EventWaitHandleSecurity.AccessRuleType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs#L259C19-L259C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs#L259C19-L259C60" }, { "DocsId": "P:System.Security.AccessControl.EventWaitHandleSecurity.AuditRuleType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs#L264C19-L264C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs#L264C19-L264C59" } ], "DocsId": "T:System.Security.AccessControl.EventWaitHandleSecurity", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs" }, { "Members": [ { "DocsId": "F:System.Security.AccessControl.SemaphoreRights.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs" }, { "DocsId": "F:System.Security.AccessControl.SemaphoreRights.Modify", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs" }, { "DocsId": "F:System.Security.AccessControl.SemaphoreRights.Delete", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs" }, { "DocsId": "F:System.Security.AccessControl.SemaphoreRights.ReadPermissions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs" }, { "DocsId": "F:System.Security.AccessControl.SemaphoreRights.ChangePermissions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs" }, { "DocsId": "F:System.Security.AccessControl.SemaphoreRights.TakeOwnership", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs" }, { "DocsId": "F:System.Security.AccessControl.SemaphoreRights.Synchronize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs" }, { "DocsId": "F:System.Security.AccessControl.SemaphoreRights.FullControl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs" } ], "DocsId": "T:System.Security.AccessControl.SemaphoreRights", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs" }, { "Members": [ { "DocsId": "M:System.Security.AccessControl.SemaphoreAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.SemaphoreRights,System.Security.AccessControl.AccessControlType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs#L44C15-L46C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs#L44C15-L46C10" }, { "DocsId": "M:System.Security.AccessControl.SemaphoreAccessRule.#ctor(System.String,System.Security.AccessControl.SemaphoreRights,System.Security.AccessControl.AccessControlType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs#L49C15-L51C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs#L49C15-L51C10" }, { "DocsId": "P:System.Security.AccessControl.SemaphoreAccessRule.SemaphoreRights", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs#L76C19-L76C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs#L76C19-L76C59" } ], "DocsId": "T:System.Security.AccessControl.SemaphoreAccessRule", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs" }, { "Members": [ { "DocsId": "M:System.Security.AccessControl.SemaphoreAuditRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.SemaphoreRights,System.Security.AccessControl.AuditFlags)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs#L83C15-L85C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs#L83C15-L85C10" }, { "DocsId": "P:System.Security.AccessControl.SemaphoreAuditRule.SemaphoreRights", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs#L94C19-L94C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs#L94C19-L94C59" } ], "DocsId": "T:System.Security.AccessControl.SemaphoreAuditRule", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs" }, { "Members": [ { "DocsId": "M:System.Security.AccessControl.SemaphoreSecurity.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs#L101C15-L103C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs#L101C15-L103C10" }, { "DocsId": "M:System.Security.AccessControl.SemaphoreSecurity.#ctor(System.String,System.Security.AccessControl.AccessControlSections)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs#L106C15-L109C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs#L106C15-L109C10" }, { "DocsId": "M:System.Security.AccessControl.SemaphoreSecurity.AccessRuleFactory(System.Security.Principal.IdentityReference,System.Int32,System.Boolean,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Security.AccessControl.AccessControlType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs#L138C13-L138C130" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs#L138C13-L138C130" }, { "DocsId": "M:System.Security.AccessControl.SemaphoreSecurity.AuditRuleFactory(System.Security.Principal.IdentityReference,System.Int32,System.Boolean,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Security.AccessControl.AuditFlags)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs#L143C13-L143C130" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs#L143C13-L143C130" }, { "DocsId": "M:System.Security.AccessControl.SemaphoreSecurity.AddAccessRule(System.Security.AccessControl.SemaphoreAccessRule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs#L183C13-L184C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs#L183C13-L184C10" }, { "DocsId": "M:System.Security.AccessControl.SemaphoreSecurity.SetAccessRule(System.Security.AccessControl.SemaphoreAccessRule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs#L188C13-L189C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs#L188C13-L189C10" }, { "DocsId": "M:System.Security.AccessControl.SemaphoreSecurity.ResetAccessRule(System.Security.AccessControl.SemaphoreAccessRule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs#L193C13-L194C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs#L193C13-L194C10" }, { "DocsId": "M:System.Security.AccessControl.SemaphoreSecurity.RemoveAccessRule(System.Security.AccessControl.SemaphoreAccessRule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs#L198C13-L198C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs#L198C13-L198C48" }, { "DocsId": "M:System.Security.AccessControl.SemaphoreSecurity.RemoveAccessRuleAll(System.Security.AccessControl.SemaphoreAccessRule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs#L203C13-L204C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs#L203C13-L204C10" }, { "DocsId": "M:System.Security.AccessControl.SemaphoreSecurity.RemoveAccessRuleSpecific(System.Security.AccessControl.SemaphoreAccessRule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs#L208C13-L209C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs#L208C13-L209C10" }, { "DocsId": "M:System.Security.AccessControl.SemaphoreSecurity.AddAuditRule(System.Security.AccessControl.SemaphoreAuditRule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs#L213C13-L214C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs#L213C13-L214C10" }, { "DocsId": "M:System.Security.AccessControl.SemaphoreSecurity.SetAuditRule(System.Security.AccessControl.SemaphoreAuditRule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs#L218C13-L219C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs#L218C13-L219C10" }, { "DocsId": "M:System.Security.AccessControl.SemaphoreSecurity.RemoveAuditRule(System.Security.AccessControl.SemaphoreAuditRule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs#L223C13-L223C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs#L223C13-L223C47" }, { "DocsId": "M:System.Security.AccessControl.SemaphoreSecurity.RemoveAuditRuleAll(System.Security.AccessControl.SemaphoreAuditRule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs#L228C13-L229C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs#L228C13-L229C10" }, { "DocsId": "M:System.Security.AccessControl.SemaphoreSecurity.RemoveAuditRuleSpecific(System.Security.AccessControl.SemaphoreAuditRule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs#L233C13-L234C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs#L233C13-L234C10" }, { "DocsId": "P:System.Security.AccessControl.SemaphoreSecurity.AccessRightType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs#L238C19-L238C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs#L238C19-L238C50" }, { "DocsId": "P:System.Security.AccessControl.SemaphoreSecurity.AccessRuleType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs#L243C19-L243C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs#L243C19-L243C54" }, { "DocsId": "P:System.Security.AccessControl.SemaphoreSecurity.AuditRuleType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs#L248C19-L248C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs#L248C19-L248C53" } ], "DocsId": "T:System.Security.AccessControl.SemaphoreSecurity", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs" }, { "Members": [ { "DocsId": "M:System.Threading.EventWaitHandleAcl.Create(System.Boolean,System.Threading.EventResetMode,System.String,System.Boolean@,System.Security.AccessControl.EventWaitHandleSecurity)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Threading/EventWaitHandleAcl.cs#L31C13-L77C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Threading/EventWaitHandleAcl.cs#L31C13-L77C55" }, { "DocsId": "M:System.Threading.EventWaitHandleAcl.OpenExisting(System.String,System.Security.AccessControl.EventWaitHandleRights)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Threading/EventWaitHandleAcl.cs#L95C13-L109C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Threading/EventWaitHandleAcl.cs#L95C13-L109C35" }, { "DocsId": "M:System.Threading.EventWaitHandleAcl.TryOpenExisting(System.String,System.Security.AccessControl.EventWaitHandleRights,System.Threading.EventWaitHandle@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Threading/EventWaitHandleAcl.cs#L125C13-L125C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Threading/EventWaitHandleAcl.cs#L125C13-L125C87" } ], "DocsId": "T:System.Threading.EventWaitHandleAcl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Threading/EventWaitHandleAcl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Threading/EventWaitHandleAcl.cs" }, { "Members": [ { "DocsId": "M:System.Threading.MutexAcl.Create(System.Boolean,System.String,System.Boolean@,System.Security.AccessControl.MutexSecurity)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Threading/MutexAcl.cs#L25C13-L68C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Threading/MutexAcl.cs#L25C13-L68C55" }, { "DocsId": "M:System.Threading.MutexAcl.OpenExisting(System.String,System.Security.AccessControl.MutexRights)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Threading/MutexAcl.cs#L86C13-L100C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Threading/MutexAcl.cs#L86C13-L100C35" }, { "DocsId": "M:System.Threading.MutexAcl.TryOpenExisting(System.String,System.Security.AccessControl.MutexRights,System.Threading.Mutex@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Threading/MutexAcl.cs#L116C13-L116C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Threading/MutexAcl.cs#L116C13-L116C87" } ], "DocsId": "T:System.Threading.MutexAcl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Threading/MutexAcl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Threading/MutexAcl.cs" }, { "Members": [ { "DocsId": "M:System.Threading.SemaphoreAcl.Create(System.Int32,System.Int32,System.String,System.Boolean@,System.Security.AccessControl.SemaphoreSecurity)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Threading/SemaphoreAcl.cs#L29C13-L82C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Threading/SemaphoreAcl.cs#L29C13-L82C55" }, { "DocsId": "M:System.Threading.SemaphoreAcl.OpenExisting(System.String,System.Security.AccessControl.SemaphoreRights)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Threading/SemaphoreAcl.cs#L101C13-L115C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Threading/SemaphoreAcl.cs#L101C13-L115C35" }, { "DocsId": "M:System.Threading.SemaphoreAcl.TryOpenExisting(System.String,System.Security.AccessControl.SemaphoreRights,System.Threading.Semaphore@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Threading/SemaphoreAcl.cs#L131C13-L131C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Threading/SemaphoreAcl.cs#L131C13-L131C87" } ], "DocsId": "T:System.Threading.SemaphoreAcl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Threading/SemaphoreAcl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Threading/SemaphoreAcl.cs" }, { "Members": [ { "DocsId": "M:System.Threading.ThreadingAclExtensions.GetAccessControl(System.Threading.EventWaitHandle)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Threading/ThreadingAclExtensions.cs#L16C13-L16C166" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Threading/ThreadingAclExtensions.cs#L16C13-L16C166" }, { "DocsId": "M:System.Threading.ThreadingAclExtensions.SetAccessControl(System.Threading.EventWaitHandle,System.Security.AccessControl.EventWaitHandleSecurity)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Threading/ThreadingAclExtensions.cs#L21C13-L24C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Threading/ThreadingAclExtensions.cs#L21C13-L24C10" }, { "DocsId": "M:System.Threading.ThreadingAclExtensions.GetAccessControl(System.Threading.Mutex)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Threading/ThreadingAclExtensions.cs#L28C13-L28C155" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Threading/ThreadingAclExtensions.cs#L28C13-L28C155" }, { "DocsId": "M:System.Threading.ThreadingAclExtensions.SetAccessControl(System.Threading.Mutex,System.Security.AccessControl.MutexSecurity)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Threading/ThreadingAclExtensions.cs#L33C13-L36C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Threading/ThreadingAclExtensions.cs#L33C13-L36C10" }, { "DocsId": "M:System.Threading.ThreadingAclExtensions.GetAccessControl(System.Threading.Semaphore)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Threading/ThreadingAclExtensions.cs#L40C13-L40C163" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Threading/ThreadingAclExtensions.cs#L40C13-L40C163" }, { "DocsId": "M:System.Threading.ThreadingAclExtensions.SetAccessControl(System.Threading.Semaphore,System.Security.AccessControl.SemaphoreSecurity)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Threading/ThreadingAclExtensions.cs#L45C13-L48C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Threading/ThreadingAclExtensions.cs#L45C13-L48C10" } ], "DocsId": "T:System.Threading.ThreadingAclExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Threading/ThreadingAclExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Threading/ThreadingAclExtensions.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-8.0/System.Windows.Extensions.json b/xml/SourceLinkInformation/net-8.0/System.Windows.Extensions.json index aad152605ad..d3e904876ef 100644 --- a/xml/SourceLinkInformation/net-8.0/System.Windows.Extensions.json +++ b/xml/SourceLinkInformation/net-8.0/System.Windows.Extensions.json @@ -1,211 +1,210 @@ { "Assembly": "System.Windows.Extensions", - "GUID": "723B9B587811491CAE984C0603494177FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "2C1AC19179364DFB9C89DEE3F5C08E37FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:System.Xaml.Permissions.XamlAccessLevel.AssemblyAccessTo(System.Reflection.Assembly)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Xaml/Permissions/XamlAccessLevel.cs#L19C13-L19C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Xaml/Permissions/XamlAccessLevel.cs#L19C13-L19C66" }, { "DocsId": "M:System.Xaml.Permissions.XamlAccessLevel.AssemblyAccessTo(System.Reflection.AssemblyName)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Xaml/Permissions/XamlAccessLevel.cs#L24C13-L24C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Xaml/Permissions/XamlAccessLevel.cs#L24C13-L24C69" }, { "DocsId": "M:System.Xaml.Permissions.XamlAccessLevel.PrivateAccessTo(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Xaml/Permissions/XamlAccessLevel.cs#L29C13-L29C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Xaml/Permissions/XamlAccessLevel.cs#L29C13-L29C80" }, { "DocsId": "M:System.Xaml.Permissions.XamlAccessLevel.PrivateAccessTo(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Xaml/Permissions/XamlAccessLevel.cs#L34C13-L38C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Xaml/Permissions/XamlAccessLevel.cs#L34C13-L38C73" }, { "DocsId": "P:System.Xaml.Permissions.XamlAccessLevel.AssemblyAccessToAssemblyName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Xaml/Permissions/XamlAccessLevel.cs#L43C19-L43C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Xaml/Permissions/XamlAccessLevel.cs#L43C19-L43C63" }, { "DocsId": "P:System.Xaml.Permissions.XamlAccessLevel.PrivateAccessToTypeName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Xaml/Permissions/XamlAccessLevel.cs#L46C50-L46C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Xaml/Permissions/XamlAccessLevel.cs#L46C50-L46C54" } ], "DocsId": "T:System.Xaml.Permissions.XamlAccessLevel", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Xaml/Permissions/XamlAccessLevel.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Xaml/Permissions/XamlAccessLevel.cs" }, { "Members": [ { "DocsId": "M:System.Media.SoundPlayer.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L23C9-L52C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L23C9-L52C10" }, { "DocsId": "M:System.Media.SoundPlayer.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L54C52-L57C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L54C52-L57C10" }, { "DocsId": "M:System.Media.SoundPlayer.#ctor(System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L59C46-L62C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L59C46-L62C10" }, { "DocsId": "M:System.Media.SoundPlayer.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L23C9-L70C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L23C9-L70C55" }, { "DocsId": "M:System.Media.SoundPlayer.LoadAsync", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L137C13-L164C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L137C13-L164C10" }, { "DocsId": "M:System.Media.SoundPlayer.Load", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L189C13-L203C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L189C13-L203C10" }, { "DocsId": "M:System.Media.SoundPlayer.Play", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L347C13-L348C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L347C13-L348C10" }, { "DocsId": "M:System.Media.SoundPlayer.PlaySync", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L352C13-L353C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L352C13-L353C10" }, { "DocsId": "M:System.Media.SoundPlayer.PlayLooping", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L357C13-L358C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L357C13-L358C10" }, { "DocsId": "M:System.Media.SoundPlayer.Stop", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L441C13-L442C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L441C13-L442C10" }, { "DocsId": "M:System.Media.SoundPlayer.OnLoadCompleted(System.ComponentModel.AsyncCompletedEventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L482C13-L483C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L482C13-L483C10" }, { "DocsId": "M:System.Media.SoundPlayer.OnSoundLocationChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L487C13-L488C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L487C13-L488C10" }, { "DocsId": "M:System.Media.SoundPlayer.OnStreamChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L492C13-L493C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L492C13-L493C10" }, { "DocsId": "M:System.Media.SoundPlayer.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L739C13-L739C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L739C13-L739C55" }, { "DocsId": "E:System.Media.SoundPlayer.LoadCompleted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L448C17-L449C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L448C17-L449C14" }, { "DocsId": "E:System.Media.SoundPlayer.SoundLocationChanged", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L460C17-L461C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L460C17-L461C14" }, { "DocsId": "E:System.Media.SoundPlayer.StreamChanged", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L472C17-L473C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L472C17-L473C14" }, { "DocsId": "P:System.Media.SoundPlayer.LoadTimeout", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L75C20-L75C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L75C20-L75C32" }, { "DocsId": "P:System.Media.SoundPlayer.SoundLocation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L89C20-L89C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L89C20-L89C34" }, { "DocsId": "P:System.Media.SoundPlayer.Stream", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L110C17-L115C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L110C17-L115C32" }, { "DocsId": "P:System.Media.SoundPlayer.IsLoadCompleted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L129C39-L129C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L129C39-L129C43" }, { "DocsId": "P:System.Media.SoundPlayer.Tag", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L131C30-L131C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L131C30-L131C34" } ], "DocsId": "T:System.Media.SoundPlayer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs" }, { "Members": [ { "DocsId": "M:System.Media.SystemSound.Play", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Media/SystemSound.cs#L17C13-L18C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Media/SystemSound.cs#L17C13-L18C10" } ], "DocsId": "T:System.Media.SystemSound", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Media/SystemSound.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Media/SystemSound.cs" }, { "Members": [ { "DocsId": "P:System.Media.SystemSounds.Asterisk", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Media/SystemSounds.cs#L16C20-L16C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Media/SystemSounds.cs#L16C20-L16C82" }, { "DocsId": "P:System.Media.SystemSounds.Beep", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Media/SystemSounds.cs#L21C20-L21C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Media/SystemSounds.cs#L21C20-L21C68" }, { "DocsId": "P:System.Media.SystemSounds.Exclamation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Media/SystemSounds.cs#L26C20-L26C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Media/SystemSounds.cs#L26C20-L26C88" }, { "DocsId": "P:System.Media.SystemSounds.Hand", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Media/SystemSounds.cs#L31C20-L31C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Media/SystemSounds.cs#L31C20-L31C74" }, { "DocsId": "P:System.Media.SystemSounds.Question", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Media/SystemSounds.cs#L36C20-L36C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Media/SystemSounds.cs#L36C20-L36C82" } ], "DocsId": "T:System.Media.SystemSounds", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Media/SystemSounds.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Media/SystemSounds.cs" }, { "Members": [ { "DocsId": "F:System.Security.Cryptography.X509Certificates.X509SelectionFlag.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Security/Cryptography/X509Certificates/X509Certificate2UI.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Security/Cryptography/X509Certificates/X509Certificate2UI.cs" }, { "DocsId": "F:System.Security.Cryptography.X509Certificates.X509SelectionFlag.SingleSelection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Security/Cryptography/X509Certificates/X509Certificate2UI.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Security/Cryptography/X509Certificates/X509Certificate2UI.cs" }, { "DocsId": "F:System.Security.Cryptography.X509Certificates.X509SelectionFlag.MultiSelection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Security/Cryptography/X509Certificates/X509Certificate2UI.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Security/Cryptography/X509Certificates/X509Certificate2UI.cs" } ], "DocsId": "T:System.Security.Cryptography.X509Certificates.X509SelectionFlag", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Security/Cryptography/X509Certificates/X509Certificate2UI.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Security/Cryptography/X509Certificates/X509Certificate2UI.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.X509Certificates.X509Certificate2UI.DisplayCertificate(System.Security.Cryptography.X509Certificates.X509Certificate2)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Security/Cryptography/X509Certificates/X509Certificate2UI.cs#L23C13-L26C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Security/Cryptography/X509Certificates/X509Certificate2UI.cs#L23C13-L26C10" }, { "DocsId": "M:System.Security.Cryptography.X509Certificates.X509Certificate2UI.DisplayCertificate(System.Security.Cryptography.X509Certificates.X509Certificate2,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Security/Cryptography/X509Certificates/X509Certificate2UI.cs#L30C13-L33C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Security/Cryptography/X509Certificates/X509Certificate2UI.cs#L30C13-L33C10" }, { "DocsId": "M:System.Security.Cryptography.X509Certificates.X509Certificate2UI.SelectFromCollection(System.Security.Cryptography.X509Certificates.X509Certificate2Collection,System.String,System.String,System.Security.Cryptography.X509Certificates.X509SelectionFlag)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Security/Cryptography/X509Certificates/X509Certificate2UI.cs#L37C13-L37C105" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Security/Cryptography/X509Certificates/X509Certificate2UI.cs#L37C13-L37C105" }, { "DocsId": "M:System.Security.Cryptography.X509Certificates.X509Certificate2UI.SelectFromCollection(System.Security.Cryptography.X509Certificates.X509Certificate2Collection,System.String,System.String,System.Security.Cryptography.X509Certificates.X509SelectionFlag,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Security/Cryptography/X509Certificates/X509Certificate2UI.cs#L42C13-L42C104" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Security/Cryptography/X509Certificates/X509Certificate2UI.cs#L42C13-L42C104" }, { "DocsId": "M:System.Security.Cryptography.X509Certificates.X509Certificate2UI.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Security/Cryptography/X509Certificates/X509Certificate2UI.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Security/Cryptography/X509Certificates/X509Certificate2UI.cs" } ], "DocsId": "T:System.Security.Cryptography.X509Certificates.X509Certificate2UI", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Security/Cryptography/X509Certificates/X509Certificate2UI.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Security/Cryptography/X509Certificates/X509Certificate2UI.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.AmbientMetadata.Application.json b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.AmbientMetadata.Application.json index cfa253fba84..91afff1a5be 100644 --- a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.AmbientMetadata.Application.json +++ b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.AmbientMetadata.Application.json @@ -1,67 +1,66 @@ { "Assembly": "Microsoft.Extensions.AmbientMetadata.Application", - "GUID": "4CA72879BF674A3DB2AF582E6EBCAD04FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "263447F242AF49ADA9AA34E4E6CFA727FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ApplicationMetadataServiceCollectionExtensions.AddApplicationMetadata(Microsoft.Extensions.DependencyInjection.IServiceCollection,Microsoft.Extensions.Configuration.IConfigurationSection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.AmbientMetadata.Application/ApplicationMetadataServiceCollectionExtensions.cs#L25C9-L30C25" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.AmbientMetadata.Application/ApplicationMetadataServiceCollectionExtensions.cs#L25C9-L30C25" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ApplicationMetadataServiceCollectionExtensions.AddApplicationMetadata(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{Microsoft.Extensions.AmbientMetadata.ApplicationMetadata})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.AmbientMetadata.Application/ApplicationMetadataServiceCollectionExtensions.cs#L42C9-L47C25" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.AmbientMetadata.Application/ApplicationMetadataServiceCollectionExtensions.cs#L42C9-L47C25" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.ApplicationMetadataServiceCollectionExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.AmbientMetadata.Application/ApplicationMetadataServiceCollectionExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.AmbientMetadata.Application/ApplicationMetadataServiceCollectionExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Hosting.ApplicationMetadataHostBuilderExtensions.UseApplicationMetadata(Microsoft.Extensions.Hosting.IHostBuilder,System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.AmbientMetadata.Application/ApplicationMetadataHostBuilderExtensions.cs#L28C9-L33C175" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.AmbientMetadata.Application/ApplicationMetadataHostBuilderExtensions.cs#L16707566C0-L33C175" } ], "DocsId": "T:Microsoft.Extensions.Hosting.ApplicationMetadataHostBuilderExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.AmbientMetadata.Application/ApplicationMetadataHostBuilderExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.AmbientMetadata.Application/ApplicationMetadataHostBuilderExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.ApplicationMetadataConfigurationBuilderExtensions.AddApplicationMetadata(Microsoft.Extensions.Configuration.IConfigurationBuilder,Microsoft.Extensions.Hosting.IHostEnvironment,System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.AmbientMetadata.Application/ApplicationMetadataConfigurationBuilderExtensions.cs#L29C9-L33C89" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.AmbientMetadata.Application/ApplicationMetadataConfigurationBuilderExtensions.cs#L29C9-L33C89" } ], "DocsId": "T:Microsoft.Extensions.Configuration.ApplicationMetadataConfigurationBuilderExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.AmbientMetadata.Application/ApplicationMetadataConfigurationBuilderExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.AmbientMetadata.Application/ApplicationMetadataConfigurationBuilderExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AmbientMetadata.ApplicationMetadata.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.AmbientMetadata.Application/ApplicationMetadata.cs#L27C51-L33C63" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.AmbientMetadata.Application/ApplicationMetadata.cs#L27C51-L33C63" }, { "DocsId": "P:Microsoft.Extensions.AmbientMetadata.ApplicationMetadata.DeploymentRing", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.AmbientMetadata.Application/ApplicationMetadata.cs#L16C37-L16C41" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.AmbientMetadata.Application/ApplicationMetadata.cs#L16C37-L16C41" }, { "DocsId": "P:Microsoft.Extensions.AmbientMetadata.ApplicationMetadata.BuildVersion", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.AmbientMetadata.Application/ApplicationMetadata.cs#L21C35-L21C39" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.AmbientMetadata.Application/ApplicationMetadata.cs#L21C35-L21C39" }, { "DocsId": "P:Microsoft.Extensions.AmbientMetadata.ApplicationMetadata.ApplicationName", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.AmbientMetadata.Application/ApplicationMetadata.cs#L27C37-L27C41" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.AmbientMetadata.Application/ApplicationMetadata.cs#L27C37-L27C41" }, { "DocsId": "P:Microsoft.Extensions.AmbientMetadata.ApplicationMetadata.EnvironmentName", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.AmbientMetadata.Application/ApplicationMetadata.cs#L33C37-L33C41" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.AmbientMetadata.Application/ApplicationMetadata.cs#L33C37-L33C41" } ], "DocsId": "T:Microsoft.Extensions.AmbientMetadata.ApplicationMetadata", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.AmbientMetadata.Application/ApplicationMetadata.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.AmbientMetadata.Application/ApplicationMetadata.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.AsyncState.json b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.AsyncState.json index 473c311eaa5..19e1189b50b 100644 --- a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.AsyncState.json +++ b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.AsyncState.json @@ -1,96 +1,95 @@ { "Assembly": "Microsoft.Extensions.AsyncState", - "GUID": "2DADF78053F74354B12104CD9787089DFFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "67605DC5DC644C479B00D34DEF026525FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.AsyncStateExtensions.AddAsyncState(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.AsyncState/AsyncStateExtensions.cs#L25C9-L31C25" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.AsyncState/AsyncStateExtensions.cs#L25C9-L31C25" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.AsyncStateExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.AsyncState/AsyncStateExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.AsyncState/AsyncStateExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AsyncState.AsyncStateToken.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.AsyncState/AsyncStateToken.cs#L27C9-L27C62" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.AsyncState/AsyncStateToken.cs#L27C9-L27C62" }, { "DocsId": "M:Microsoft.Extensions.AsyncState.AsyncStateToken.Equals(Microsoft.Extensions.AsyncState.AsyncStateToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.AsyncState/AsyncStateToken.cs#L37C9-L37C37" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.AsyncState/AsyncStateToken.cs#L37C9-L37C37" }, { "DocsId": "M:Microsoft.Extensions.AsyncState.AsyncStateToken.GetHashCode", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.AsyncState/AsyncStateToken.cs#L46C9-L46C36" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.AsyncState/AsyncStateToken.cs#L46C9-L46C36" }, { "DocsId": "M:Microsoft.Extensions.AsyncState.AsyncStateToken.op_Equality(Microsoft.Extensions.AsyncState.AsyncStateToken,Microsoft.Extensions.AsyncState.AsyncStateToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.AsyncState/AsyncStateToken.cs#L57C9-L57C35" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.AsyncState/AsyncStateToken.cs#L57C9-L57C35" }, { "DocsId": "M:Microsoft.Extensions.AsyncState.AsyncStateToken.op_Inequality(Microsoft.Extensions.AsyncState.AsyncStateToken,Microsoft.Extensions.AsyncState.AsyncStateToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.AsyncState/AsyncStateToken.cs#L68C9-L68C33" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.AsyncState/AsyncStateToken.cs#L68C9-L68C33" } ], "DocsId": "T:Microsoft.Extensions.AsyncState.AsyncStateToken", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.AsyncState/AsyncStateToken.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.AsyncState/AsyncStateToken.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AsyncState.IAsyncContext`1.Get", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.AsyncState/IAsyncContext.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.AsyncState/IAsyncContext.cs" }, { "DocsId": "M:Microsoft.Extensions.AsyncState.IAsyncContext`1.Set(`0)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.AsyncState/IAsyncContext.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.AsyncState/IAsyncContext.cs" }, { "DocsId": "M:Microsoft.Extensions.AsyncState.IAsyncContext`1.TryGet(`0@)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.AsyncState/IAsyncContext.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.AsyncState/IAsyncContext.cs" } ], "DocsId": "T:Microsoft.Extensions.AsyncState.IAsyncContext`1", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.AsyncState/IAsyncContext.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.AsyncState/IAsyncContext.cs" }, { "Members": [], "DocsId": "T:Microsoft.Extensions.AsyncState.IAsyncLocalContext`1", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.AsyncState/IAsyncLocalContext.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.AsyncState/IAsyncLocalContext.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.AsyncState.IAsyncState.Initialize", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.AsyncState/IAsyncState.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.AsyncState/IAsyncState.cs" }, { "DocsId": "M:Microsoft.Extensions.AsyncState.IAsyncState.Reset", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.AsyncState/IAsyncState.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.AsyncState/IAsyncState.cs" }, { "DocsId": "M:Microsoft.Extensions.AsyncState.IAsyncState.TryGet(Microsoft.Extensions.AsyncState.AsyncStateToken,System.Object@)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.AsyncState/IAsyncState.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.AsyncState/IAsyncState.cs" }, { "DocsId": "M:Microsoft.Extensions.AsyncState.IAsyncState.Get(Microsoft.Extensions.AsyncState.AsyncStateToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.AsyncState/IAsyncState.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.AsyncState/IAsyncState.cs" }, { "DocsId": "M:Microsoft.Extensions.AsyncState.IAsyncState.Set(Microsoft.Extensions.AsyncState.AsyncStateToken,System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.AsyncState/IAsyncState.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.AsyncState/IAsyncState.cs" }, { "DocsId": "M:Microsoft.Extensions.AsyncState.IAsyncState.RegisterAsyncContext", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.AsyncState/IAsyncState.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.AsyncState/IAsyncState.cs" } ], "DocsId": "T:Microsoft.Extensions.AsyncState.IAsyncState", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.AsyncState/IAsyncState.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.AsyncState/IAsyncState.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Caching.Abstractions.json b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Caching.Abstractions.json index 6481d73cc8c..b64d0217ac0 100644 --- a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Caching.Abstractions.json +++ b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Caching.Abstractions.json @@ -1,513 +1,512 @@ { "Assembly": "Microsoft.Extensions.Caching.Abstractions", - "GUID": "D09E562F862646BCA1DB38922AC6387DFFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "690C29E47BEE4F50AC86D84DD72D8A88FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "P:Microsoft.Extensions.Internal.ISystemClock.UtcNow", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/Internal/ISystemClock.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/Internal/ISystemClock.cs" } ], "DocsId": "T:Microsoft.Extensions.Internal.ISystemClock", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/Internal/ISystemClock.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/Internal/ISystemClock.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Internal.SystemClock.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/Internal/SystemClock.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/Internal/SystemClock.cs" }, { "DocsId": "P:Microsoft.Extensions.Internal.SystemClock.UtcNow", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/Internal/SystemClock.cs#L20C17-L20C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/Internal/SystemClock.cs#L20C17-L20C46" } ], "DocsId": "T:Microsoft.Extensions.Internal.SystemClock", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/Internal/SystemClock.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/Internal/SystemClock.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Caching.Distributed.DistributedCacheEntryExtensions.SetAbsoluteExpiration(Microsoft.Extensions.Caching.Distributed.DistributedCacheEntryOptions,System.TimeSpan)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/DistributedCacheEntryExtensions.cs#L22C13-L23C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/DistributedCacheEntryExtensions.cs#L22C13-L23C28" }, { "DocsId": "M:Microsoft.Extensions.Caching.Distributed.DistributedCacheEntryExtensions.SetAbsoluteExpiration(Microsoft.Extensions.Caching.Distributed.DistributedCacheEntryOptions,System.DateTimeOffset)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/DistributedCacheEntryExtensions.cs#L35C13-L36C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/DistributedCacheEntryExtensions.cs#L35C13-L36C28" }, { "DocsId": "M:Microsoft.Extensions.Caching.Distributed.DistributedCacheEntryExtensions.SetSlidingExpiration(Microsoft.Extensions.Caching.Distributed.DistributedCacheEntryOptions,System.TimeSpan)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/DistributedCacheEntryExtensions.cs#L49C13-L50C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/DistributedCacheEntryExtensions.cs#L49C13-L50C28" } ], "DocsId": "T:Microsoft.Extensions.Caching.Distributed.DistributedCacheEntryExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/DistributedCacheEntryExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/DistributedCacheEntryExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Caching.Distributed.DistributedCacheEntryOptions.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/DistributedCacheEntryOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/DistributedCacheEntryOptions.cs" }, { "DocsId": "P:Microsoft.Extensions.Caching.Distributed.DistributedCacheEntryOptions.AbsoluteExpiration", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/DistributedCacheEntryOptions.cs#L24C17-L24C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/DistributedCacheEntryOptions.cs#L24C17-L24C44" }, { "DocsId": "P:Microsoft.Extensions.Caching.Distributed.DistributedCacheEntryOptions.AbsoluteExpirationRelativeToNow", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/DistributedCacheEntryOptions.cs#L39C17-L39C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/DistributedCacheEntryOptions.cs#L39C17-L39C57" }, { "DocsId": "P:Microsoft.Extensions.Caching.Distributed.DistributedCacheEntryOptions.SlidingExpiration", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/DistributedCacheEntryOptions.cs#L63C17-L63C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/DistributedCacheEntryOptions.cs#L63C17-L63C43" } ], "DocsId": "T:Microsoft.Extensions.Caching.Distributed.DistributedCacheEntryOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/DistributedCacheEntryOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/DistributedCacheEntryOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Caching.Distributed.DistributedCacheExtensions.Set(Microsoft.Extensions.Caching.Distributed.IDistributedCache,System.String,System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/DistributedCacheExtensions.cs#L25C13-L29C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/DistributedCacheExtensions.cs#L25C13-L29C10" }, { "DocsId": "M:Microsoft.Extensions.Caching.Distributed.DistributedCacheExtensions.SetAsync(Microsoft.Extensions.Caching.Distributed.IDistributedCache,System.String,System.Byte[],System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/DistributedCacheExtensions.cs#L42C13-L45C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/DistributedCacheExtensions.cs#L42C13-L45C90" }, { "DocsId": "M:Microsoft.Extensions.Caching.Distributed.DistributedCacheExtensions.SetString(Microsoft.Extensions.Caching.Distributed.IDistributedCache,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/DistributedCacheExtensions.cs#L57C13-L58C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/DistributedCacheExtensions.cs#L57C13-L58C10" }, { "DocsId": "M:Microsoft.Extensions.Caching.Distributed.DistributedCacheExtensions.SetString(Microsoft.Extensions.Caching.Distributed.IDistributedCache,System.String,System.String,Microsoft.Extensions.Caching.Distributed.DistributedCacheEntryOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/DistributedCacheExtensions.cs#L70C13-L74C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/DistributedCacheExtensions.cs#L70C13-L74C10" }, { "DocsId": "M:Microsoft.Extensions.Caching.Distributed.DistributedCacheExtensions.SetStringAsync(Microsoft.Extensions.Caching.Distributed.IDistributedCache,System.String,System.String,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/DistributedCacheExtensions.cs#L87C13-L87C96" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/DistributedCacheExtensions.cs#L87C13-L87C96" }, { "DocsId": "M:Microsoft.Extensions.Caching.Distributed.DistributedCacheExtensions.SetStringAsync(Microsoft.Extensions.Caching.Distributed.IDistributedCache,System.String,System.String,Microsoft.Extensions.Caching.Distributed.DistributedCacheEntryOptions,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/DistributedCacheExtensions.cs#L102C13-L105C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/DistributedCacheExtensions.cs#L102C13-L105C87" }, { "DocsId": "M:Microsoft.Extensions.Caching.Distributed.DistributedCacheExtensions.GetString(Microsoft.Extensions.Caching.Distributed.IDistributedCache,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/DistributedCacheExtensions.cs#L116C13-L121C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/DistributedCacheExtensions.cs#L116C13-L121C66" }, { "DocsId": "M:Microsoft.Extensions.Caching.Distributed.DistributedCacheExtensions.GetStringAsync(Microsoft.Extensions.Caching.Distributed.IDistributedCache,System.String,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/DistributedCacheExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/DistributedCacheExtensions.cs" } ], "DocsId": "T:Microsoft.Extensions.Caching.Distributed.DistributedCacheExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/DistributedCacheExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/DistributedCacheExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Caching.Distributed.IDistributedCache.Get(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/IDistributedCache.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/IDistributedCache.cs" }, { "DocsId": "M:Microsoft.Extensions.Caching.Distributed.IDistributedCache.GetAsync(System.String,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/IDistributedCache.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/IDistributedCache.cs" }, { "DocsId": "M:Microsoft.Extensions.Caching.Distributed.IDistributedCache.Set(System.String,System.Byte[],Microsoft.Extensions.Caching.Distributed.DistributedCacheEntryOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/IDistributedCache.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/IDistributedCache.cs" }, { "DocsId": "M:Microsoft.Extensions.Caching.Distributed.IDistributedCache.SetAsync(System.String,System.Byte[],Microsoft.Extensions.Caching.Distributed.DistributedCacheEntryOptions,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/IDistributedCache.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/IDistributedCache.cs" }, { "DocsId": "M:Microsoft.Extensions.Caching.Distributed.IDistributedCache.Refresh(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/IDistributedCache.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/IDistributedCache.cs" }, { "DocsId": "M:Microsoft.Extensions.Caching.Distributed.IDistributedCache.RefreshAsync(System.String,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/IDistributedCache.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/IDistributedCache.cs" }, { "DocsId": "M:Microsoft.Extensions.Caching.Distributed.IDistributedCache.Remove(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/IDistributedCache.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/IDistributedCache.cs" }, { "DocsId": "M:Microsoft.Extensions.Caching.Distributed.IDistributedCache.RemoveAsync(System.String,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/IDistributedCache.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/IDistributedCache.cs" } ], "DocsId": "T:Microsoft.Extensions.Caching.Distributed.IDistributedCache", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/IDistributedCache.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/IDistributedCache.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Caching.Memory.CacheEntryExtensions.SetPriority(Microsoft.Extensions.Caching.Memory.ICacheEntry,Microsoft.Extensions.Caching.Memory.CacheItemPriority)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/CacheEntryExtensions.cs#L25C13-L26C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/CacheEntryExtensions.cs#L25C13-L26C26" }, { "DocsId": "M:Microsoft.Extensions.Caching.Memory.CacheEntryExtensions.AddExpirationToken(Microsoft.Extensions.Caching.Memory.ICacheEntry,Microsoft.Extensions.Primitives.IChangeToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/CacheEntryExtensions.cs#L39C13-L42C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/CacheEntryExtensions.cs#L39C13-L42C26" }, { "DocsId": "M:Microsoft.Extensions.Caching.Memory.CacheEntryExtensions.SetAbsoluteExpiration(Microsoft.Extensions.Caching.Memory.ICacheEntry,System.TimeSpan)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/CacheEntryExtensions.cs#L55C13-L56C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/CacheEntryExtensions.cs#L55C13-L56C26" }, { "DocsId": "M:Microsoft.Extensions.Caching.Memory.CacheEntryExtensions.SetAbsoluteExpiration(Microsoft.Extensions.Caching.Memory.ICacheEntry,System.DateTimeOffset)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/CacheEntryExtensions.cs#L69C13-L70C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/CacheEntryExtensions.cs#L69C13-L70C26" }, { "DocsId": "M:Microsoft.Extensions.Caching.Memory.CacheEntryExtensions.SetSlidingExpiration(Microsoft.Extensions.Caching.Memory.ICacheEntry,System.TimeSpan)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/CacheEntryExtensions.cs#L84C13-L85C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/CacheEntryExtensions.cs#L84C13-L85C26" }, { "DocsId": "M:Microsoft.Extensions.Caching.Memory.CacheEntryExtensions.RegisterPostEvictionCallback(Microsoft.Extensions.Caching.Memory.ICacheEntry,Microsoft.Extensions.Caching.Memory.PostEvictionDelegate)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/CacheEntryExtensions.cs#L98C13-L100C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/CacheEntryExtensions.cs#L98C13-L100C90" }, { "DocsId": "M:Microsoft.Extensions.Caching.Memory.CacheEntryExtensions.RegisterPostEvictionCallback(Microsoft.Extensions.Caching.Memory.ICacheEntry,Microsoft.Extensions.Caching.Memory.PostEvictionDelegate,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/CacheEntryExtensions.cs#L115C13-L117C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/CacheEntryExtensions.cs#L115C13-L117C84" }, { "DocsId": "M:Microsoft.Extensions.Caching.Memory.CacheEntryExtensions.SetValue(Microsoft.Extensions.Caching.Memory.ICacheEntry,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/CacheEntryExtensions.cs#L143C13-L144C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/CacheEntryExtensions.cs#L143C13-L144C26" }, { "DocsId": "M:Microsoft.Extensions.Caching.Memory.CacheEntryExtensions.SetSize(Microsoft.Extensions.Caching.Memory.ICacheEntry,System.Int64)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/CacheEntryExtensions.cs#L157C13-L163C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/CacheEntryExtensions.cs#L157C13-L163C26" }, { "DocsId": "M:Microsoft.Extensions.Caching.Memory.CacheEntryExtensions.SetOptions(Microsoft.Extensions.Caching.Memory.ICacheEntry,Microsoft.Extensions.Caching.Memory.MemoryCacheEntryOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/CacheEntryExtensions.cs#L174C13-L196C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/CacheEntryExtensions.cs#L174C13-L196C26" } ], "DocsId": "T:Microsoft.Extensions.Caching.Memory.CacheEntryExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/CacheEntryExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/CacheEntryExtensions.cs" }, { "Members": [ { "DocsId": "F:Microsoft.Extensions.Caching.Memory.CacheItemPriority.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/CacheItemPriority.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/CacheItemPriority.cs" }, { "DocsId": "F:Microsoft.Extensions.Caching.Memory.CacheItemPriority.Low", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/CacheItemPriority.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/CacheItemPriority.cs" }, { "DocsId": "F:Microsoft.Extensions.Caching.Memory.CacheItemPriority.Normal", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/CacheItemPriority.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/CacheItemPriority.cs" }, { "DocsId": "F:Microsoft.Extensions.Caching.Memory.CacheItemPriority.High", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/CacheItemPriority.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/CacheItemPriority.cs" }, { "DocsId": "F:Microsoft.Extensions.Caching.Memory.CacheItemPriority.NeverRemove", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/CacheItemPriority.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/CacheItemPriority.cs" } ], "DocsId": "T:Microsoft.Extensions.Caching.Memory.CacheItemPriority", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/CacheItemPriority.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/CacheItemPriority.cs" }, { "Members": [ { "DocsId": "F:Microsoft.Extensions.Caching.Memory.EvictionReason.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/EvictionReason.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/EvictionReason.cs" }, { "DocsId": "F:Microsoft.Extensions.Caching.Memory.EvictionReason.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/EvictionReason.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/EvictionReason.cs" }, { "DocsId": "F:Microsoft.Extensions.Caching.Memory.EvictionReason.Removed", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/EvictionReason.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/EvictionReason.cs" }, { "DocsId": "F:Microsoft.Extensions.Caching.Memory.EvictionReason.Replaced", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/EvictionReason.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/EvictionReason.cs" }, { "DocsId": "F:Microsoft.Extensions.Caching.Memory.EvictionReason.Expired", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/EvictionReason.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/EvictionReason.cs" }, { "DocsId": "F:Microsoft.Extensions.Caching.Memory.EvictionReason.TokenExpired", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/EvictionReason.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/EvictionReason.cs" }, { "DocsId": "F:Microsoft.Extensions.Caching.Memory.EvictionReason.Capacity", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/EvictionReason.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/EvictionReason.cs" } ], "DocsId": "T:Microsoft.Extensions.Caching.Memory.EvictionReason", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/EvictionReason.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/EvictionReason.cs" }, { "Members": [ { "DocsId": "P:Microsoft.Extensions.Caching.Memory.ICacheEntry.Key", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/ICacheEntry.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/ICacheEntry.cs" }, { "DocsId": "P:Microsoft.Extensions.Caching.Memory.ICacheEntry.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/ICacheEntry.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/ICacheEntry.cs" }, { "DocsId": "P:Microsoft.Extensions.Caching.Memory.ICacheEntry.AbsoluteExpiration", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/ICacheEntry.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/ICacheEntry.cs" }, { "DocsId": "P:Microsoft.Extensions.Caching.Memory.ICacheEntry.AbsoluteExpirationRelativeToNow", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/ICacheEntry.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/ICacheEntry.cs" }, { "DocsId": "P:Microsoft.Extensions.Caching.Memory.ICacheEntry.SlidingExpiration", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/ICacheEntry.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/ICacheEntry.cs" }, { "DocsId": "P:Microsoft.Extensions.Caching.Memory.ICacheEntry.ExpirationTokens", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/ICacheEntry.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/ICacheEntry.cs" }, { "DocsId": "P:Microsoft.Extensions.Caching.Memory.ICacheEntry.PostEvictionCallbacks", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/ICacheEntry.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/ICacheEntry.cs" }, { "DocsId": "P:Microsoft.Extensions.Caching.Memory.ICacheEntry.Priority", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/ICacheEntry.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/ICacheEntry.cs" }, { "DocsId": "P:Microsoft.Extensions.Caching.Memory.ICacheEntry.Size", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/ICacheEntry.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/ICacheEntry.cs" } ], "DocsId": "T:Microsoft.Extensions.Caching.Memory.ICacheEntry", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/ICacheEntry.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/ICacheEntry.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Caching.Memory.IMemoryCache.TryGetValue(System.Object,System.Object@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/IMemoryCache.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/IMemoryCache.cs" }, { "DocsId": "M:Microsoft.Extensions.Caching.Memory.IMemoryCache.CreateEntry(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/IMemoryCache.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/IMemoryCache.cs" }, { "DocsId": "M:Microsoft.Extensions.Caching.Memory.IMemoryCache.Remove(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/IMemoryCache.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/IMemoryCache.cs" }, { "DocsId": "M:Microsoft.Extensions.Caching.Memory.IMemoryCache.GetCurrentStatistics", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/IMemoryCache.cs#L39C58-L39C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/IMemoryCache.cs#L39C58-L39C62" } ], "DocsId": "T:Microsoft.Extensions.Caching.Memory.IMemoryCache", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/IMemoryCache.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/IMemoryCache.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Caching.Memory.MemoryCacheEntryExtensions.SetPriority(Microsoft.Extensions.Caching.Memory.MemoryCacheEntryOptions,Microsoft.Extensions.Caching.Memory.CacheItemPriority)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/MemoryCacheEntryExtensions.cs#L24C13-L25C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/MemoryCacheEntryExtensions.cs#L24C13-L25C28" }, { "DocsId": "M:Microsoft.Extensions.Caching.Memory.MemoryCacheEntryExtensions.SetSize(Microsoft.Extensions.Caching.Memory.MemoryCacheEntryOptions,System.Int64)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/MemoryCacheEntryExtensions.cs#L38C13-L44C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/MemoryCacheEntryExtensions.cs#L38C13-L44C28" }, { "DocsId": "M:Microsoft.Extensions.Caching.Memory.MemoryCacheEntryExtensions.AddExpirationToken(Microsoft.Extensions.Caching.Memory.MemoryCacheEntryOptions,Microsoft.Extensions.Primitives.IChangeToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/MemoryCacheEntryExtensions.cs#L57C13-L60C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/MemoryCacheEntryExtensions.cs#L57C13-L60C28" }, { "DocsId": "M:Microsoft.Extensions.Caching.Memory.MemoryCacheEntryExtensions.SetAbsoluteExpiration(Microsoft.Extensions.Caching.Memory.MemoryCacheEntryOptions,System.TimeSpan)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/MemoryCacheEntryExtensions.cs#L73C13-L74C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/MemoryCacheEntryExtensions.cs#L73C13-L74C28" }, { "DocsId": "M:Microsoft.Extensions.Caching.Memory.MemoryCacheEntryExtensions.SetAbsoluteExpiration(Microsoft.Extensions.Caching.Memory.MemoryCacheEntryOptions,System.DateTimeOffset)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/MemoryCacheEntryExtensions.cs#L87C13-L88C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/MemoryCacheEntryExtensions.cs#L87C13-L88C28" }, { "DocsId": "M:Microsoft.Extensions.Caching.Memory.MemoryCacheEntryExtensions.SetSlidingExpiration(Microsoft.Extensions.Caching.Memory.MemoryCacheEntryOptions,System.TimeSpan)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/MemoryCacheEntryExtensions.cs#L102C13-L103C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/MemoryCacheEntryExtensions.cs#L102C13-L103C28" }, { "DocsId": "M:Microsoft.Extensions.Caching.Memory.MemoryCacheEntryExtensions.RegisterPostEvictionCallback(Microsoft.Extensions.Caching.Memory.MemoryCacheEntryOptions,Microsoft.Extensions.Caching.Memory.PostEvictionDelegate)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/MemoryCacheEntryExtensions.cs#L116C13-L118C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/MemoryCacheEntryExtensions.cs#L116C13-L118C80" }, { "DocsId": "M:Microsoft.Extensions.Caching.Memory.MemoryCacheEntryExtensions.RegisterPostEvictionCallback(Microsoft.Extensions.Caching.Memory.MemoryCacheEntryOptions,Microsoft.Extensions.Caching.Memory.PostEvictionDelegate,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/MemoryCacheEntryExtensions.cs#L133C13-L140C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/MemoryCacheEntryExtensions.cs#L133C13-L140C28" } ], "DocsId": "T:Microsoft.Extensions.Caching.Memory.MemoryCacheEntryExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/MemoryCacheEntryExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/MemoryCacheEntryExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Caching.Memory.MemoryCacheEntryOptions.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/MemoryCacheEntryOptions.cs#L84C64-L96C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/MemoryCacheEntryOptions.cs#L84C64-L96C83" }, { "DocsId": "P:Microsoft.Extensions.Caching.Memory.MemoryCacheEntryOptions.AbsoluteExpiration", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/MemoryCacheEntryOptions.cs#L27C17-L27C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/MemoryCacheEntryOptions.cs#L27C17-L27C44" }, { "DocsId": "P:Microsoft.Extensions.Caching.Memory.MemoryCacheEntryOptions.AbsoluteExpirationRelativeToNow", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/MemoryCacheEntryOptions.cs#L42C17-L42C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/MemoryCacheEntryOptions.cs#L42C17-L42C57" }, { "DocsId": "P:Microsoft.Extensions.Caching.Memory.MemoryCacheEntryOptions.SlidingExpiration", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/MemoryCacheEntryOptions.cs#L66C17-L66C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/MemoryCacheEntryOptions.cs#L66C17-L66C43" }, { "DocsId": "P:Microsoft.Extensions.Caching.Memory.MemoryCacheEntryOptions.ExpirationTokens", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/MemoryCacheEntryOptions.cs#L84C55-L84C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/MemoryCacheEntryOptions.cs#L84C55-L84C59" }, { "DocsId": "P:Microsoft.Extensions.Caching.Memory.MemoryCacheEntryOptions.PostEvictionCallbacks", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/MemoryCacheEntryOptions.cs#L89C80-L89C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/MemoryCacheEntryOptions.cs#L89C80-L89C84" }, { "DocsId": "P:Microsoft.Extensions.Caching.Memory.MemoryCacheEntryOptions.Priority", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/MemoryCacheEntryOptions.cs#L96C45-L96C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/MemoryCacheEntryOptions.cs#L96C45-L96C49" }, { "DocsId": "P:Microsoft.Extensions.Caching.Memory.MemoryCacheEntryOptions.Size", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/MemoryCacheEntryOptions.cs#L103C20-L103C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/MemoryCacheEntryOptions.cs#L103C20-L103C25" } ], "DocsId": "T:Microsoft.Extensions.Caching.Memory.MemoryCacheEntryOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/MemoryCacheEntryOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/MemoryCacheEntryOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Caching.Memory.CacheExtensions.Get(Microsoft.Extensions.Caching.Memory.IMemoryCache,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/MemoryCacheExtensions.cs#L23C13-L24C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/MemoryCacheExtensions.cs#L23C13-L24C26" }, { "DocsId": "M:Microsoft.Extensions.Caching.Memory.CacheExtensions.Get``1(Microsoft.Extensions.Caching.Memory.IMemoryCache,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/MemoryCacheExtensions.cs#L36C13-L36C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/MemoryCacheExtensions.cs#L36C13-L36C63" }, { "DocsId": "M:Microsoft.Extensions.Caching.Memory.CacheExtensions.TryGetValue``1(Microsoft.Extensions.Caching.Memory.IMemoryCache,System.Object,``0@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/MemoryCacheExtensions.cs#L49C13-L65C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/MemoryCacheExtensions.cs#L49C13-L65C26" }, { "DocsId": "M:Microsoft.Extensions.Caching.Memory.CacheExtensions.Set``1(Microsoft.Extensions.Caching.Memory.IMemoryCache,System.Object,``0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/MemoryCacheExtensions.cs#L78C13-L82C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/MemoryCacheExtensions.cs#L78C13-L82C10" }, { "DocsId": "M:Microsoft.Extensions.Caching.Memory.CacheExtensions.Set``1(Microsoft.Extensions.Caching.Memory.IMemoryCache,System.Object,``0,System.DateTimeOffset)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/MemoryCacheExtensions.cs#L95C13-L100C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/MemoryCacheExtensions.cs#L95C13-L100C10" }, { "DocsId": "M:Microsoft.Extensions.Caching.Memory.CacheExtensions.Set``1(Microsoft.Extensions.Caching.Memory.IMemoryCache,System.Object,``0,System.TimeSpan)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/MemoryCacheExtensions.cs#L113C13-L118C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/MemoryCacheExtensions.cs#L113C13-L118C10" }, { "DocsId": "M:Microsoft.Extensions.Caching.Memory.CacheExtensions.Set``1(Microsoft.Extensions.Caching.Memory.IMemoryCache,System.Object,``0,Microsoft.Extensions.Primitives.IChangeToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/MemoryCacheExtensions.cs#L131C13-L136C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/MemoryCacheExtensions.cs#L131C13-L136C10" }, { "DocsId": "M:Microsoft.Extensions.Caching.Memory.CacheExtensions.Set``1(Microsoft.Extensions.Caching.Memory.IMemoryCache,System.Object,``0,Microsoft.Extensions.Caching.Memory.MemoryCacheEntryOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/MemoryCacheExtensions.cs#L149C13-L158C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/MemoryCacheExtensions.cs#L149C13-L158C10" }, { "DocsId": "M:Microsoft.Extensions.Caching.Memory.CacheExtensions.GetOrCreate``1(Microsoft.Extensions.Caching.Memory.IMemoryCache,System.Object,System.Func{Microsoft.Extensions.Caching.Memory.ICacheEntry,``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/MemoryCacheExtensions.cs#L170C13-L170C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/MemoryCacheExtensions.cs#L170C13-L170C59" }, { "DocsId": "M:Microsoft.Extensions.Caching.Memory.CacheExtensions.GetOrCreate``1(Microsoft.Extensions.Caching.Memory.IMemoryCache,System.Object,System.Func{Microsoft.Extensions.Caching.Memory.ICacheEntry,``0},Microsoft.Extensions.Caching.Memory.MemoryCacheEntryOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/MemoryCacheExtensions.cs#L184C13-L197C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/MemoryCacheExtensions.cs#L184C13-L197C35" }, { "DocsId": "M:Microsoft.Extensions.Caching.Memory.CacheExtensions.GetOrCreateAsync``1(Microsoft.Extensions.Caching.Memory.IMemoryCache,System.Object,System.Func{Microsoft.Extensions.Caching.Memory.ICacheEntry,System.Threading.Tasks.Task{``0}})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/MemoryCacheExtensions.cs#L210C13-L210C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/MemoryCacheExtensions.cs#L210C13-L210C71" }, { "DocsId": "M:Microsoft.Extensions.Caching.Memory.CacheExtensions.GetOrCreateAsync``1(Microsoft.Extensions.Caching.Memory.IMemoryCache,System.Object,System.Func{Microsoft.Extensions.Caching.Memory.ICacheEntry,System.Threading.Tasks.Task{``0}},Microsoft.Extensions.Caching.Memory.MemoryCacheEntryOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/MemoryCacheExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/MemoryCacheExtensions.cs" } ], "DocsId": "T:Microsoft.Extensions.Caching.Memory.CacheExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/MemoryCacheExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/MemoryCacheExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Caching.Memory.MemoryCacheStatistics.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/MemoryCacheStatistics.cs#L16C9-L16C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/MemoryCacheStatistics.cs#L16C9-L16C43" }, { "DocsId": "P:Microsoft.Extensions.Caching.Memory.MemoryCacheStatistics.CurrentEntryCount", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/MemoryCacheStatistics.cs#L21C41-L21C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/MemoryCacheStatistics.cs#L21C41-L21C45" }, { "DocsId": "P:Microsoft.Extensions.Caching.Memory.MemoryCacheStatistics.CurrentEstimatedSize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/MemoryCacheStatistics.cs#L27C45-L27C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/MemoryCacheStatistics.cs#L27C45-L27C49" }, { "DocsId": "P:Microsoft.Extensions.Caching.Memory.MemoryCacheStatistics.TotalMisses", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/MemoryCacheStatistics.cs#L32C35-L32C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/MemoryCacheStatistics.cs#L32C35-L32C39" }, { "DocsId": "P:Microsoft.Extensions.Caching.Memory.MemoryCacheStatistics.TotalHits", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/MemoryCacheStatistics.cs#L37C33-L37C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/MemoryCacheStatistics.cs#L37C33-L37C37" } ], "DocsId": "T:Microsoft.Extensions.Caching.Memory.MemoryCacheStatistics", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/MemoryCacheStatistics.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/MemoryCacheStatistics.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Caching.Memory.PostEvictionCallbackRegistration.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/PostEvictionCallbackRegistration.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/PostEvictionCallbackRegistration.cs" }, { "DocsId": "P:Microsoft.Extensions.Caching.Memory.PostEvictionCallbackRegistration.EvictionCallback", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/PostEvictionCallbackRegistration.cs#L14C57-L14C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/PostEvictionCallbackRegistration.cs#L14C57-L14C61" }, { "DocsId": "P:Microsoft.Extensions.Caching.Memory.PostEvictionCallbackRegistration.State", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/PostEvictionCallbackRegistration.cs#L19C32-L19C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/PostEvictionCallbackRegistration.cs#L19C32-L19C36" } ], "DocsId": "T:Microsoft.Extensions.Caching.Memory.PostEvictionCallbackRegistration", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/PostEvictionCallbackRegistration.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/PostEvictionCallbackRegistration.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Caching.Memory.PostEvictionDelegate.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/PostEvictionDelegate.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/PostEvictionDelegate.cs" }, { "DocsId": "M:Microsoft.Extensions.Caching.Memory.PostEvictionDelegate.Invoke(System.Object,System.Object,Microsoft.Extensions.Caching.Memory.EvictionReason,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/PostEvictionDelegate.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/PostEvictionDelegate.cs" }, { "DocsId": "M:Microsoft.Extensions.Caching.Memory.PostEvictionDelegate.BeginInvoke(System.Object,System.Object,Microsoft.Extensions.Caching.Memory.EvictionReason,System.Object,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/PostEvictionDelegate.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/PostEvictionDelegate.cs" }, { "DocsId": "M:Microsoft.Extensions.Caching.Memory.PostEvictionDelegate.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/PostEvictionDelegate.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/PostEvictionDelegate.cs" } ], "DocsId": "T:Microsoft.Extensions.Caching.Memory.PostEvictionDelegate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/PostEvictionDelegate.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Abstractions/src/PostEvictionDelegate.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Caching.Hybrid.json b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Caching.Hybrid.json new file mode 100644 index 00000000000..739ce8d3e58 --- /dev/null +++ b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Caching.Hybrid.json @@ -0,0 +1,234 @@ +{ + "Assembly": "Microsoft.Extensions.Caching.Hybrid", + "GUID": "EB0E938DC57F4715AA4B6DFEB791FCF2FFFFFFFF", + "Types": [ + { + "Members": [ + { + "DocsId": "M:Microsoft.Extensions.Caching.Distributed.IBufferDistributedCache.TryGet(System.String,System.Buffers.IBufferWriter{System.Byte})", + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/Hybrid/src/Runtime/IBufferDistributedCache.cs" + }, + { + "DocsId": "M:Microsoft.Extensions.Caching.Distributed.IBufferDistributedCache.TryGetAsync(System.String,System.Buffers.IBufferWriter{System.Byte},System.Threading.CancellationToken)", + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/Hybrid/src/Runtime/IBufferDistributedCache.cs" + }, + { + "DocsId": "M:Microsoft.Extensions.Caching.Distributed.IBufferDistributedCache.Set(System.String,System.Buffers.ReadOnlySequence{System.Byte},Microsoft.Extensions.Caching.Distributed.DistributedCacheEntryOptions)", + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/Hybrid/src/Runtime/IBufferDistributedCache.cs" + }, + { + "DocsId": "M:Microsoft.Extensions.Caching.Distributed.IBufferDistributedCache.SetAsync(System.String,System.Buffers.ReadOnlySequence{System.Byte},Microsoft.Extensions.Caching.Distributed.DistributedCacheEntryOptions,System.Threading.CancellationToken)", + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/Hybrid/src/Runtime/IBufferDistributedCache.cs" + } + ], + "DocsId": "T:Microsoft.Extensions.Caching.Distributed.IBufferDistributedCache", + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/Hybrid/src/Runtime/IBufferDistributedCache.cs" + }, + { + "Members": [ + { + "DocsId": "M:Microsoft.Extensions.Caching.Hybrid.HybridCacheBuilderExtensions.WithSerializer``1(Microsoft.Extensions.Caching.Hybrid.IHybridCacheBuilder,Microsoft.Extensions.Caching.Hybrid.IHybridCacheSerializer{``0})", + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/Hybrid/src/HybridCacheBuilderExtensions.cs#L19C9-L20C24" + }, + { + "DocsId": "M:Microsoft.Extensions.Caching.Hybrid.HybridCacheBuilderExtensions.WithSerializer``2(Microsoft.Extensions.Caching.Hybrid.IHybridCacheBuilder)", + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/Hybrid/src/HybridCacheBuilderExtensions.cs#L33C9-L34C24" + }, + { + "DocsId": "M:Microsoft.Extensions.Caching.Hybrid.HybridCacheBuilderExtensions.WithSerializerFactory(Microsoft.Extensions.Caching.Hybrid.IHybridCacheBuilder,Microsoft.Extensions.Caching.Hybrid.IHybridCacheSerializerFactory)", + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/Hybrid/src/HybridCacheBuilderExtensions.cs#L42C9-L43C24" + }, + { + "DocsId": "M:Microsoft.Extensions.Caching.Hybrid.HybridCacheBuilderExtensions.WithSerializerFactory``1(Microsoft.Extensions.Caching.Hybrid.IHybridCacheBuilder)", + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/Hybrid/src/HybridCacheBuilderExtensions.cs#L56C9-L57C24" + } + ], + "DocsId": "T:Microsoft.Extensions.Caching.Hybrid.HybridCacheBuilderExtensions", + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/Hybrid/src/HybridCacheBuilderExtensions.cs" + }, + { + "Members": [ + { + "DocsId": "M:Microsoft.Extensions.Caching.Hybrid.HybridCacheOptions.#ctor", + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/Hybrid/src/HybridCacheOptions.cs#L31C53-L37C53" + }, + { + "DocsId": "P:Microsoft.Extensions.Caching.Hybrid.HybridCacheOptions.DefaultEntryOptions", + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/Hybrid/src/HybridCacheOptions.cs#L19C59-L19C63" + }, + { + "DocsId": "P:Microsoft.Extensions.Caching.Hybrid.HybridCacheOptions.DisableCompression", + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/Hybrid/src/HybridCacheOptions.cs#L24C38-L24C42" + }, + { + "DocsId": "P:Microsoft.Extensions.Caching.Hybrid.HybridCacheOptions.MaximumPayloadBytes", + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/Hybrid/src/HybridCacheOptions.cs#L31C39-L31C43" + }, + { + "DocsId": "P:Microsoft.Extensions.Caching.Hybrid.HybridCacheOptions.MaximumKeyLength", + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/Hybrid/src/HybridCacheOptions.cs#L37C35-L37C39" + }, + { + "DocsId": "P:Microsoft.Extensions.Caching.Hybrid.HybridCacheOptions.ReportTagMetrics", + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/Hybrid/src/HybridCacheOptions.cs#L43C36-L43C40" + } + ], + "DocsId": "T:Microsoft.Extensions.Caching.Hybrid.HybridCacheOptions", + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/Hybrid/src/HybridCacheOptions.cs" + }, + { + "Members": [ + { + "DocsId": "M:Microsoft.Extensions.Caching.Hybrid.HybridCacheServiceExtensions.AddHybridCache(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{Microsoft.Extensions.Caching.Hybrid.HybridCacheOptions})", + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/Hybrid/src/HybridCacheServiceExtensions.cs#L23C9-L29C49" + }, + { + "DocsId": "M:Microsoft.Extensions.Caching.Hybrid.HybridCacheServiceExtensions.AddHybridCache(Microsoft.Extensions.DependencyInjection.IServiceCollection)", + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/Hybrid/src/HybridCacheServiceExtensions.cs#L39C9-L51C49" + } + ], + "DocsId": "T:Microsoft.Extensions.Caching.Hybrid.HybridCacheServiceExtensions", + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/Hybrid/src/HybridCacheServiceExtensions.cs" + }, + { + "Members": [ + { + "DocsId": "P:Microsoft.Extensions.Caching.Hybrid.IHybridCacheBuilder.Services", + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/Hybrid/src/IHybridCacheBuilder.cs" + } + ], + "DocsId": "T:Microsoft.Extensions.Caching.Hybrid.IHybridCacheBuilder", + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/Hybrid/src/IHybridCacheBuilder.cs" + }, + { + "Members": [ + { + "DocsId": "M:Microsoft.Extensions.Caching.Hybrid.HybridCache.GetOrCreateAsync``2(System.String,``0,System.Func{``0,System.Threading.CancellationToken,System.Threading.Tasks.ValueTask{``1}},Microsoft.Extensions.Caching.Hybrid.HybridCacheEntryOptions,System.Collections.Generic.IReadOnlyCollection{System.String},System.Threading.CancellationToken)", + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/Hybrid/src/Runtime/HybridCache.cs" + }, + { + "DocsId": "M:Microsoft.Extensions.Caching.Hybrid.HybridCache.GetOrCreateAsync``1(System.String,System.Func{System.Threading.CancellationToken,System.Threading.Tasks.ValueTask{``0}},Microsoft.Extensions.Caching.Hybrid.HybridCacheEntryOptions,System.Collections.Generic.IReadOnlyCollection{System.String},System.Threading.CancellationToken)", + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/Hybrid/src/Runtime/HybridCache.cs#L48C12-L48C98" + }, + { + "DocsId": "M:Microsoft.Extensions.Caching.Hybrid.HybridCache.SetAsync``1(System.String,``0,Microsoft.Extensions.Caching.Hybrid.HybridCacheEntryOptions,System.Collections.Generic.IReadOnlyCollection{System.String},System.Threading.CancellationToken)", + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/Hybrid/src/Runtime/HybridCache.cs" + }, + { + "DocsId": "M:Microsoft.Extensions.Caching.Hybrid.HybridCache.RemoveKeyAsync(System.String,System.Threading.CancellationToken)", + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/Hybrid/src/Runtime/HybridCache.cs" + }, + { + "DocsId": "M:Microsoft.Extensions.Caching.Hybrid.HybridCache.RemoveKeysAsync(System.Collections.Generic.IEnumerable{System.String},System.Threading.CancellationToken)", + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/Hybrid/src/Runtime/HybridCache.cs#L78C9-L16707566C0" + }, + { + "DocsId": "M:Microsoft.Extensions.Caching.Hybrid.HybridCache.RemoveTagsAsync(System.Collections.Generic.IEnumerable{System.String},System.Threading.CancellationToken)", + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/Hybrid/src/Runtime/HybridCache.cs#L102C9-L16707566C0" + }, + { + "DocsId": "M:Microsoft.Extensions.Caching.Hybrid.HybridCache.RemoveTagAsync(System.String,System.Threading.CancellationToken)", + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/Hybrid/src/Runtime/HybridCache.cs" + }, + { + "DocsId": "M:Microsoft.Extensions.Caching.Hybrid.HybridCache.#ctor", + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/Hybrid/src/Runtime/HybridCache.cs" + } + ], + "DocsId": "T:Microsoft.Extensions.Caching.Hybrid.HybridCache", + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/Hybrid/src/Runtime/HybridCache.cs" + }, + { + "Members": [ + { + "DocsId": "F:Microsoft.Extensions.Caching.Hybrid.HybridCacheEntryFlags.value__", + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/Hybrid/src/Runtime/HybridCacheEntryFlags.cs" + }, + { + "DocsId": "F:Microsoft.Extensions.Caching.Hybrid.HybridCacheEntryFlags.None", + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/Hybrid/src/Runtime/HybridCacheEntryFlags.cs" + }, + { + "DocsId": "F:Microsoft.Extensions.Caching.Hybrid.HybridCacheEntryFlags.DisableLocalCacheRead", + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/Hybrid/src/Runtime/HybridCacheEntryFlags.cs" + }, + { + "DocsId": "F:Microsoft.Extensions.Caching.Hybrid.HybridCacheEntryFlags.DisableLocalCacheWrite", + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/Hybrid/src/Runtime/HybridCacheEntryFlags.cs" + }, + { + "DocsId": "F:Microsoft.Extensions.Caching.Hybrid.HybridCacheEntryFlags.DisableLocalCache", + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/Hybrid/src/Runtime/HybridCacheEntryFlags.cs" + }, + { + "DocsId": "F:Microsoft.Extensions.Caching.Hybrid.HybridCacheEntryFlags.DisableDistributedCacheRead", + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/Hybrid/src/Runtime/HybridCacheEntryFlags.cs" + }, + { + "DocsId": "F:Microsoft.Extensions.Caching.Hybrid.HybridCacheEntryFlags.DisableDistributedCacheWrite", + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/Hybrid/src/Runtime/HybridCacheEntryFlags.cs" + }, + { + "DocsId": "F:Microsoft.Extensions.Caching.Hybrid.HybridCacheEntryFlags.DisableDistributedCache", + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/Hybrid/src/Runtime/HybridCacheEntryFlags.cs" + }, + { + "DocsId": "F:Microsoft.Extensions.Caching.Hybrid.HybridCacheEntryFlags.DisableUnderlyingData", + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/Hybrid/src/Runtime/HybridCacheEntryFlags.cs" + }, + { + "DocsId": "F:Microsoft.Extensions.Caching.Hybrid.HybridCacheEntryFlags.DisableCompression", + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/Hybrid/src/Runtime/HybridCacheEntryFlags.cs" + } + ], + "DocsId": "T:Microsoft.Extensions.Caching.Hybrid.HybridCacheEntryFlags", + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/Hybrid/src/Runtime/HybridCacheEntryFlags.cs" + }, + { + "Members": [ + { + "DocsId": "M:Microsoft.Extensions.Caching.Hybrid.HybridCacheEntryOptions.#ctor", + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/Hybrid/src/Runtime/HybridCacheEntryOptions.cs" + }, + { + "DocsId": "P:Microsoft.Extensions.Caching.Hybrid.HybridCacheEntryOptions.Expiration", + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/Hybrid/src/Runtime/HybridCacheEntryOptions.cs#L20C35-L20C39" + }, + { + "DocsId": "P:Microsoft.Extensions.Caching.Hybrid.HybridCacheEntryOptions.LocalCacheExpiration", + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/Hybrid/src/Runtime/HybridCacheEntryOptions.cs#L27C45-L27C49" + }, + { + "DocsId": "P:Microsoft.Extensions.Caching.Hybrid.HybridCacheEntryOptions.Flags", + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/Hybrid/src/Runtime/HybridCacheEntryOptions.cs#L32C43-L32C47" + } + ], + "DocsId": "T:Microsoft.Extensions.Caching.Hybrid.HybridCacheEntryOptions", + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/Hybrid/src/Runtime/HybridCacheEntryOptions.cs" + }, + { + "Members": [ + { + "DocsId": "M:Microsoft.Extensions.Caching.Hybrid.IHybridCacheSerializer`1.Deserialize(System.Buffers.ReadOnlySequence{System.Byte})", + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/Hybrid/src/Runtime/IHybridCacheSerializer.cs" + }, + { + "DocsId": "M:Microsoft.Extensions.Caching.Hybrid.IHybridCacheSerializer`1.Serialize(`0,System.Buffers.IBufferWriter{System.Byte})", + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/Hybrid/src/Runtime/IHybridCacheSerializer.cs" + } + ], + "DocsId": "T:Microsoft.Extensions.Caching.Hybrid.IHybridCacheSerializer`1", + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/Hybrid/src/Runtime/IHybridCacheSerializer.cs" + }, + { + "Members": [ + { + "DocsId": "M:Microsoft.Extensions.Caching.Hybrid.IHybridCacheSerializerFactory.TryCreateSerializer``1(Microsoft.Extensions.Caching.Hybrid.IHybridCacheSerializer{``0}@)", + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/Hybrid/src/Runtime/IHybridCacheSerializerFactory.cs" + } + ], + "DocsId": "T:Microsoft.Extensions.Caching.Hybrid.IHybridCacheSerializerFactory", + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/Hybrid/src/Runtime/IHybridCacheSerializerFactory.cs" + } + ] +} \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Caching.Memory.json b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Caching.Memory.json index 3b3229c02ed..d86909411a9 100644 --- a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Caching.Memory.json +++ b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Caching.Memory.json @@ -1,189 +1,188 @@ { "Assembly": "Microsoft.Extensions.Caching.Memory", - "GUID": "9F3A5F170A9E4C58917F6C4FE1FB4E4EFFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "D02346E600F54A41B21003C0A892BE6DFFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.MemoryCacheServiceCollectionExtensions.AddMemoryCache(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCacheServiceCollectionExtensions.cs#L24C13-L29C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCacheServiceCollectionExtensions.cs#L24C13-L29C29" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.MemoryCacheServiceCollectionExtensions.AddMemoryCache(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{Microsoft.Extensions.Caching.Memory.MemoryCacheOptions})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCacheServiceCollectionExtensions.cs#L43C13-L49C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCacheServiceCollectionExtensions.cs#L43C13-L49C29" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.MemoryCacheServiceCollectionExtensions.AddDistributedMemoryCache(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCacheServiceCollectionExtensions.cs#L68C13-L73C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCacheServiceCollectionExtensions.cs#L68C13-L73C29" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.MemoryCacheServiceCollectionExtensions.AddDistributedMemoryCache(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{Microsoft.Extensions.Caching.Memory.MemoryDistributedCacheOptions})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCacheServiceCollectionExtensions.cs#L95C13-L101C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCacheServiceCollectionExtensions.cs#L95C13-L101C29" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.MemoryCacheServiceCollectionExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCacheServiceCollectionExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCacheServiceCollectionExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Caching.Distributed.MemoryDistributedCache.#ctor(Microsoft.Extensions.Options.IOptions{Microsoft.Extensions.Caching.Memory.MemoryDistributedCacheOptions})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryDistributedCache.cs#L26C15-L26C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryDistributedCache.cs#L26C15-L26C68" }, { "DocsId": "M:Microsoft.Extensions.Caching.Distributed.MemoryDistributedCache.#ctor(Microsoft.Extensions.Options.IOptions{Microsoft.Extensions.Caching.Memory.MemoryDistributedCacheOptions},Microsoft.Extensions.Logging.ILoggerFactory)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryDistributedCache.cs#L33C9-L39C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryDistributedCache.cs#L33C9-L39C10" }, { "DocsId": "M:Microsoft.Extensions.Caching.Distributed.MemoryDistributedCache.Get(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryDistributedCache.cs#L48C13-L50C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryDistributedCache.cs#L48C13-L50C48" }, { "DocsId": "M:Microsoft.Extensions.Caching.Distributed.MemoryDistributedCache.GetAsync(System.String,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryDistributedCache.cs#L61C13-L63C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryDistributedCache.cs#L61C13-L63C46" }, { "DocsId": "M:Microsoft.Extensions.Caching.Distributed.MemoryDistributedCache.Set(System.String,System.Byte[],Microsoft.Extensions.Caching.Distributed.DistributedCacheEntryOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryDistributedCache.cs#L74C13-L85C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryDistributedCache.cs#L74C13-L85C10" }, { "DocsId": "M:Microsoft.Extensions.Caching.Distributed.MemoryDistributedCache.SetAsync(System.String,System.Byte[],Microsoft.Extensions.Caching.Distributed.DistributedCacheEntryOptions,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryDistributedCache.cs#L97C13-L102C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryDistributedCache.cs#L97C13-L102C39" }, { "DocsId": "M:Microsoft.Extensions.Caching.Distributed.MemoryDistributedCache.Refresh(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryDistributedCache.cs#L111C13-L114C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryDistributedCache.cs#L111C13-L114C10" }, { "DocsId": "M:Microsoft.Extensions.Caching.Distributed.MemoryDistributedCache.RefreshAsync(System.String,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryDistributedCache.cs#L124C13-L127C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryDistributedCache.cs#L124C13-L127C39" }, { "DocsId": "M:Microsoft.Extensions.Caching.Distributed.MemoryDistributedCache.Remove(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryDistributedCache.cs#L136C13-L139C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryDistributedCache.cs#L136C13-L139C10" }, { "DocsId": "M:Microsoft.Extensions.Caching.Distributed.MemoryDistributedCache.RemoveAsync(System.String,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryDistributedCache.cs#L149C13-L152C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryDistributedCache.cs#L149C13-L152C39" } ], "DocsId": "T:Microsoft.Extensions.Caching.Distributed.MemoryDistributedCache", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryDistributedCache.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryDistributedCache.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Caching.Memory.MemoryCache.#ctor(Microsoft.Extensions.Options.IOptions{Microsoft.Extensions.Caching.Memory.MemoryCacheOptions})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCache.cs#L39C15-L39C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCache.cs#L39C15-L39C68" }, { "DocsId": "M:Microsoft.Extensions.Caching.Memory.MemoryCache.#ctor(Microsoft.Extensions.Options.IOptions{Microsoft.Extensions.Caching.Memory.MemoryCacheOptions},Microsoft.Extensions.Logging.ILoggerFactory)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCache.cs#L46C9-L65C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCache.cs#L46C9-L65C10" }, { "DocsId": "M:Microsoft.Extensions.Caching.Memory.MemoryCache.Finalize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCache.cs#L72C27-L72C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCache.cs#L72C27-L16707566C0" }, { "DocsId": "M:Microsoft.Extensions.Caching.Memory.MemoryCache.CreateEntry(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCache.cs#L106C13-L109C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCache.cs#L106C13-L109C46" }, { "DocsId": "M:Microsoft.Extensions.Caching.Memory.MemoryCache.TryGetValue(System.Object,System.Object@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCache.cs#L220C13-L275C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCache.cs#L220C13-L275C26" }, { "DocsId": "M:Microsoft.Extensions.Caching.Memory.MemoryCache.Remove(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCache.cs#L281C13-L298C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCache.cs#L281C13-L298C10" }, { "DocsId": "M:Microsoft.Extensions.Caching.Memory.MemoryCache.Clear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCache.cs#L305C13-L313C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCache.cs#L305C13-L313C10" }, { "DocsId": "M:Microsoft.Extensions.Caching.Memory.MemoryCache.GetCurrentStatistics", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCache.cs#L321C13-L333C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCache.cs#L321C13-L333C25" }, { "DocsId": "M:Microsoft.Extensions.Caching.Memory.MemoryCache.Compact(System.Double)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCache.cs#L517C13-L520C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCache.cs#L517C13-L520C10" }, { "DocsId": "M:Microsoft.Extensions.Caching.Memory.MemoryCache.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCache.cs#L607C13-L608C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCache.cs#L607C13-L608C10" }, { "DocsId": "M:Microsoft.Extensions.Caching.Memory.MemoryCache.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCache.cs#L616C13-L626C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCache.cs#L616C13-L626C10" }, { "DocsId": "P:Microsoft.Extensions.Caching.Memory.MemoryCache.Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCache.cs#L77C29-L77C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCache.cs#L77C29-L77C49" }, { "DocsId": "P:Microsoft.Extensions.Caching.Memory.MemoryCache.Keys", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCache.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCache.cs" } ], "DocsId": "T:Microsoft.Extensions.Caching.Memory.MemoryCache", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCache.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCache.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Caching.Memory.MemoryCacheOptions.Microsoft#Extensions#Options#IOptions#get_Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCacheOptions.cs#L89C19-L89C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCacheOptions.cs#L89C19-L89C31" }, { "DocsId": "M:Microsoft.Extensions.Caching.Memory.MemoryCacheOptions.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCacheOptions.cs#L16C9-L29C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCacheOptions.cs#L16C9-L29C88" }, { "DocsId": "P:Microsoft.Extensions.Caching.Memory.MemoryCacheOptions.Clock", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCacheOptions.cs#L24C38-L24C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCacheOptions.cs#L24C38-L24C42" }, { "DocsId": "P:Microsoft.Extensions.Caching.Memory.MemoryCacheOptions.ExpirationScanFrequency", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCacheOptions.cs#L29C51-L29C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCacheOptions.cs#L29C51-L29C55" }, { "DocsId": "P:Microsoft.Extensions.Caching.Memory.MemoryCacheOptions.SizeLimit", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCacheOptions.cs#L40C20-L40C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCacheOptions.cs#L40C20-L40C54" }, { "DocsId": "P:Microsoft.Extensions.Caching.Memory.MemoryCacheOptions.CompactOnMemoryPressure", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCacheOptions.cs#L57C47-L57C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCacheOptions.cs#L57C47-L57C51" }, { "DocsId": "P:Microsoft.Extensions.Caching.Memory.MemoryCacheOptions.CompactionPercentage", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCacheOptions.cs#L64C20-L64C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCacheOptions.cs#L64C20-L64C41" }, { "DocsId": "P:Microsoft.Extensions.Caching.Memory.MemoryCacheOptions.TrackLinkedCacheEntries", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCacheOptions.cs#L80C47-L80C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCacheOptions.cs#L80C47-L80C51" }, { "DocsId": "P:Microsoft.Extensions.Caching.Memory.MemoryCacheOptions.TrackStatistics", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCacheOptions.cs#L85C39-L85C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCacheOptions.cs#L85C39-L85C43" }, { "DocsId": "P:Microsoft.Extensions.Caching.Memory.MemoryCacheOptions.Microsoft#Extensions#Options#IOptions#Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCacheOptions.cs#L89C19-L89C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCacheOptions.cs#L89C19-L89C31" } ], "DocsId": "T:Microsoft.Extensions.Caching.Memory.MemoryCacheOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCacheOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryCacheOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Caching.Memory.MemoryDistributedCacheOptions.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryDistributedCacheOptions.cs#L15C15-L19C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryDistributedCacheOptions.cs#L15C15-L19C10" } ], "DocsId": "T:Microsoft.Extensions.Caching.Memory.MemoryDistributedCacheOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryDistributedCacheOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Caching.Memory/src/MemoryDistributedCacheOptions.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Caching.SqlServer.json b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Caching.SqlServer.json index e71927addb9..719896f7cdf 100644 --- a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Caching.SqlServer.json +++ b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Caching.SqlServer.json @@ -1,101 +1,116 @@ { "Assembly": "Microsoft.Extensions.Caching.SqlServer", - "GUID": "5D14C84FE11645AA9253D9C47F585A58FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "964C1E5C32484CBB82225106DFE683D7FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.SqlServerCachingServicesExtensions.AddDistributedSqlServerCache(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{Microsoft.Extensions.Caching.SqlServer.SqlServerCacheOptions})", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Caching/SqlServer/src/SqlServerCachingServicesExtensions.cs#L24C9-L31C25" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/SqlServer/src/SqlServerCachingServicesExtensions.cs#L24C9-L31C25" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.SqlServerCachingServicesExtensions", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Caching/SqlServer/src/SqlServerCachingServicesExtensions.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/SqlServer/src/SqlServerCachingServicesExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Caching.SqlServer.SqlServerCache.#ctor(Microsoft.Extensions.Options.IOptions{Microsoft.Extensions.Caching.SqlServer.SqlServerCacheOptions})", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Caching/SqlServer/src/SqlServerCache.cs#L28C5-L70C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/SqlServer/src/SqlServerCache.cs#L30C5-L72C6" }, { "DocsId": "M:Microsoft.Extensions.Caching.SqlServer.SqlServerCache.Get(System.String)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Caching/SqlServer/src/SqlServerCache.cs#L75C9-L81C22" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/SqlServer/src/SqlServerCache.cs#L77C9-L83C22" + }, + { + "DocsId": "M:Microsoft.Extensions.Caching.SqlServer.SqlServerCache.Microsoft#Extensions#Caching#Distributed#IBufferDistributedCache#TryGet(System.String,System.Buffers.IBufferWriter{System.Byte})", + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/SqlServer/src/SqlServerCache.cs#L88C9-L95C22" }, { "DocsId": "M:Microsoft.Extensions.Caching.SqlServer.SqlServerCache.GetAsync(System.String,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Caching/SqlServer/src/SqlServerCache.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/SqlServer/src/SqlServerCache.cs" + }, + { + "DocsId": "M:Microsoft.Extensions.Caching.SqlServer.SqlServerCache.Microsoft#Extensions#Caching#Distributed#IBufferDistributedCache#TryGetAsync(System.String,System.Buffers.IBufferWriter{System.Byte},System.Threading.CancellationToken)", + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/SqlServer/src/SqlServerCache.cs" }, { "DocsId": "M:Microsoft.Extensions.Caching.SqlServer.SqlServerCache.Refresh(System.String)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Caching/SqlServer/src/SqlServerCache.cs#L101C9-L106C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/SqlServer/src/SqlServerCache.cs#L127C9-L132C6" }, { "DocsId": "M:Microsoft.Extensions.Caching.SqlServer.SqlServerCache.RefreshAsync(System.String,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Caching/SqlServer/src/SqlServerCache.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/SqlServer/src/SqlServerCache.cs" }, { "DocsId": "M:Microsoft.Extensions.Caching.SqlServer.SqlServerCache.Remove(System.String)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Caching/SqlServer/src/SqlServerCache.cs#L123C9-L128C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/SqlServer/src/SqlServerCache.cs#L149C9-L154C6" }, { "DocsId": "M:Microsoft.Extensions.Caching.SqlServer.SqlServerCache.RemoveAsync(System.String,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Caching/SqlServer/src/SqlServerCache.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/SqlServer/src/SqlServerCache.cs" }, { "DocsId": "M:Microsoft.Extensions.Caching.SqlServer.SqlServerCache.Set(System.String,System.Byte[],Microsoft.Extensions.Caching.Distributed.DistributedCacheEntryOptions)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Caching/SqlServer/src/SqlServerCache.cs#L145C9-L154C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/SqlServer/src/SqlServerCache.cs#L171C9-L180C6" + }, + { + "DocsId": "M:Microsoft.Extensions.Caching.SqlServer.SqlServerCache.Microsoft#Extensions#Caching#Distributed#IBufferDistributedCache#Set(System.String,System.Buffers.ReadOnlySequence{System.Byte},Microsoft.Extensions.Caching.Distributed.DistributedCacheEntryOptions)", + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/SqlServer/src/SqlServerCache.cs#L184C9-L193C6" }, { "DocsId": "M:Microsoft.Extensions.Caching.SqlServer.SqlServerCache.SetAsync(System.String,System.Byte[],Microsoft.Extensions.Caching.Distributed.DistributedCacheEntryOptions,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Caching/SqlServer/src/SqlServerCache.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/SqlServer/src/SqlServerCache.cs" + }, + { + "DocsId": "M:Microsoft.Extensions.Caching.SqlServer.SqlServerCache.Microsoft#Extensions#Caching#Distributed#IBufferDistributedCache#SetAsync(System.String,System.Buffers.ReadOnlySequence{System.Byte},Microsoft.Extensions.Caching.Distributed.DistributedCacheEntryOptions,System.Threading.CancellationToken)", + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/SqlServer/src/SqlServerCache.cs" } ], "DocsId": "T:Microsoft.Extensions.Caching.SqlServer.SqlServerCache", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Caching/SqlServer/src/SqlServerCache.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/SqlServer/src/SqlServerCache.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Caching.SqlServer.SqlServerCacheOptions.Microsoft#Extensions#Options#IOptions#get_Value", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Caching/SqlServer/src/SqlServerCacheOptions.cs#L50C13-L50C25" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/SqlServer/src/SqlServerCacheOptions.cs#L50C13-L50C25" }, { "DocsId": "M:Microsoft.Extensions.Caching.SqlServer.SqlServerCacheOptions.#ctor", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Caching/SqlServer/src/SqlServerCacheOptions.cs#L18C53-L44C86" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/SqlServer/src/SqlServerCacheOptions.cs#L18C53-L44C86" }, { "DocsId": "P:Microsoft.Extensions.Caching.SqlServer.SqlServerCacheOptions.SystemClock", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Caching/SqlServer/src/SqlServerCacheOptions.cs#L18C39-L18C43" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/SqlServer/src/SqlServerCacheOptions.cs#L18C39-L18C43" }, { "DocsId": "P:Microsoft.Extensions.Caching.SqlServer.SqlServerCacheOptions.ExpiredItemsDeletionInterval", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Caching/SqlServer/src/SqlServerCacheOptions.cs#L23C53-L23C57" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/SqlServer/src/SqlServerCacheOptions.cs#L23C53-L23C57" }, { "DocsId": "P:Microsoft.Extensions.Caching.SqlServer.SqlServerCacheOptions.ConnectionString", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Caching/SqlServer/src/SqlServerCacheOptions.cs#L28C39-L28C43" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/SqlServer/src/SqlServerCacheOptions.cs#L28C39-L28C43" }, { "DocsId": "P:Microsoft.Extensions.Caching.SqlServer.SqlServerCacheOptions.SchemaName", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Caching/SqlServer/src/SqlServerCacheOptions.cs#L33C33-L33C37" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/SqlServer/src/SqlServerCacheOptions.cs#L33C33-L33C37" }, { "DocsId": "P:Microsoft.Extensions.Caching.SqlServer.SqlServerCacheOptions.TableName", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Caching/SqlServer/src/SqlServerCacheOptions.cs#L38C32-L38C36" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/SqlServer/src/SqlServerCacheOptions.cs#L38C32-L38C36" }, { "DocsId": "P:Microsoft.Extensions.Caching.SqlServer.SqlServerCacheOptions.DefaultSlidingExpiration", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Caching/SqlServer/src/SqlServerCacheOptions.cs#L44C48-L44C52" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/SqlServer/src/SqlServerCacheOptions.cs#L44C48-L44C52" }, { "DocsId": "P:Microsoft.Extensions.Caching.SqlServer.SqlServerCacheOptions.Microsoft#Extensions#Options#IOptions#Value", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Caching/SqlServer/src/SqlServerCacheOptions.cs#L50C13-L50C25" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/SqlServer/src/SqlServerCacheOptions.cs#L50C13-L50C25" } ], "DocsId": "T:Microsoft.Extensions.Caching.SqlServer.SqlServerCacheOptions", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Caching/SqlServer/src/SqlServerCacheOptions.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/SqlServer/src/SqlServerCacheOptions.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Caching.StackExchangeRedis.json b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Caching.StackExchangeRedis.json index 4dccafeac72..126fa098209 100644 --- a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Caching.StackExchangeRedis.json +++ b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Caching.StackExchangeRedis.json @@ -1,101 +1,116 @@ { "Assembly": "Microsoft.Extensions.Caching.StackExchangeRedis", - "GUID": "9B50D0D2C86845B7B5A4F96CB958D997FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "EBDB36588D0344FF9B1466D2437942E9FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.StackExchangeRedisCacheServiceCollectionExtensions.AddStackExchangeRedisCache(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{Microsoft.Extensions.Caching.StackExchangeRedis.RedisCacheOptions})", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Caching/StackExchangeRedis/src/StackExchangeRedisCacheServiceCollectionExtensions.cs#L26C9-L34C25" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/StackExchangeRedis/src/StackExchangeRedisCacheServiceCollectionExtensions.cs#L26C9-L34C25" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.StackExchangeRedisCacheServiceCollectionExtensions", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Caching/StackExchangeRedis/src/StackExchangeRedisCacheServiceCollectionExtensions.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/StackExchangeRedis/src/StackExchangeRedisCacheServiceCollectionExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Caching.StackExchangeRedis.RedisCache.#ctor(Microsoft.Extensions.Options.IOptions{Microsoft.Extensions.Caching.StackExchangeRedis.RedisCacheOptions})", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Caching/StackExchangeRedis/src/RedisCache.cs#L111C11-L113C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/StackExchangeRedis/src/RedisCache.cs#L83C11-L85C6" }, { "DocsId": "M:Microsoft.Extensions.Caching.StackExchangeRedis.RedisCache.Get(System.String)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Caching/StackExchangeRedis/src/RedisCache.cs#L142C9-L144C50" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/StackExchangeRedis/src/RedisCache.cs#L114C9-L116C50" }, { "DocsId": "M:Microsoft.Extensions.Caching.StackExchangeRedis.RedisCache.GetAsync(System.String,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Caching/StackExchangeRedis/src/RedisCache.Log.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/StackExchangeRedis/src/RedisCache.Log.cs" }, { "DocsId": "M:Microsoft.Extensions.Caching.StackExchangeRedis.RedisCache.Set(System.String,System.Byte[],Microsoft.Extensions.Caching.Distributed.DistributedCacheEntryOptions)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Caching/StackExchangeRedis/src/RedisCache.cs#L160C9-L186C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/StackExchangeRedis/src/RedisCache.cs#L154C12-L154C45" + }, + { + "DocsId": "M:Microsoft.Extensions.Caching.StackExchangeRedis.RedisCache.Microsoft#Extensions#Caching#Distributed#IBufferDistributedCache#Set(System.String,System.Buffers.ReadOnlySequence{System.Byte},Microsoft.Extensions.Caching.Distributed.DistributedCacheEntryOptions)", + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/StackExchangeRedis/src/RedisCache.cs#L157C12-L157C40" }, { "DocsId": "M:Microsoft.Extensions.Caching.StackExchangeRedis.RedisCache.SetAsync(System.String,System.Byte[],Microsoft.Extensions.Caching.Distributed.DistributedCacheEntryOptions,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Caching/StackExchangeRedis/src/RedisCache.Log.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/StackExchangeRedis/src/RedisCache.cs#L201C12-L201C57" + }, + { + "DocsId": "M:Microsoft.Extensions.Caching.StackExchangeRedis.RedisCache.Microsoft#Extensions#Caching#Distributed#IBufferDistributedCache#SetAsync(System.String,System.Buffers.ReadOnlySequence{System.Byte},Microsoft.Extensions.Caching.Distributed.DistributedCacheEntryOptions,System.Threading.CancellationToken)", + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/StackExchangeRedis/src/RedisCache.cs#L204C12-L204C57" }, { "DocsId": "M:Microsoft.Extensions.Caching.StackExchangeRedis.RedisCache.Refresh(System.String)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Caching/StackExchangeRedis/src/RedisCache.cs#L225C9-L228C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/StackExchangeRedis/src/RedisCache.cs#L257C9-L260C6" }, { "DocsId": "M:Microsoft.Extensions.Caching.StackExchangeRedis.RedisCache.RefreshAsync(System.String,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Caching/StackExchangeRedis/src/RedisCache.Log.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/StackExchangeRedis/src/RedisCache.Log.cs" }, { "DocsId": "M:Microsoft.Extensions.Caching.StackExchangeRedis.RedisCache.Remove(System.String)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Caching/StackExchangeRedis/src/RedisCache.cs#L451C9-L463C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/StackExchangeRedis/src/RedisCache.cs#L463C9-L475C6" }, { "DocsId": "M:Microsoft.Extensions.Caching.StackExchangeRedis.RedisCache.RemoveAsync(System.String,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Caching/StackExchangeRedis/src/RedisCache.Log.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/StackExchangeRedis/src/RedisCache.Log.cs" }, { "DocsId": "M:Microsoft.Extensions.Caching.StackExchangeRedis.RedisCache.Dispose", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Caching/StackExchangeRedis/src/RedisCache.cs#L602C9-L610C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/StackExchangeRedis/src/RedisCache.cs#L611C9-L619C6" + }, + { + "DocsId": "M:Microsoft.Extensions.Caching.StackExchangeRedis.RedisCache.Microsoft#Extensions#Caching#Distributed#IBufferDistributedCache#TryGet(System.String,System.Buffers.IBufferWriter{System.Byte})", + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/StackExchangeRedis/src/RedisCache.cs#L696C9-L737C22" + }, + { + "DocsId": "M:Microsoft.Extensions.Caching.StackExchangeRedis.RedisCache.Microsoft#Extensions#Caching#Distributed#IBufferDistributedCache#TryGetAsync(System.String,System.Buffers.IBufferWriter{System.Byte},System.Threading.CancellationToken)", + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/StackExchangeRedis/src/RedisCache.Log.cs" } ], "DocsId": "T:Microsoft.Extensions.Caching.StackExchangeRedis.RedisCache", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Caching/StackExchangeRedis/src/RedisCache.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/StackExchangeRedis/src/RedisCache.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Caching.StackExchangeRedis.RedisCacheOptions.Microsoft#Extensions#Options#IOptions#get_Value", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Caching/StackExchangeRedis/src/RedisCacheOptions.cs#L47C15-L47C27" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/StackExchangeRedis/src/RedisCacheOptions.cs#L47C15-L47C27" }, { "DocsId": "M:Microsoft.Extensions.Caching.StackExchangeRedis.RedisCacheOptions.#ctor", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Caching/StackExchangeRedis/src/RedisCacheOptions.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/StackExchangeRedis/src/RedisCacheOptions.cs" }, { "DocsId": "P:Microsoft.Extensions.Caching.StackExchangeRedis.RedisCacheOptions.Configuration", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Caching/StackExchangeRedis/src/RedisCacheOptions.cs#L21C36-L21C40" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/StackExchangeRedis/src/RedisCacheOptions.cs#L21C36-L21C40" }, { "DocsId": "P:Microsoft.Extensions.Caching.StackExchangeRedis.RedisCacheOptions.ConfigurationOptions", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Caching/StackExchangeRedis/src/RedisCacheOptions.cs#L27C57-L27C61" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/StackExchangeRedis/src/RedisCacheOptions.cs#L27C57-L27C61" }, { "DocsId": "P:Microsoft.Extensions.Caching.StackExchangeRedis.RedisCacheOptions.ConnectionMultiplexerFactory", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Caching/StackExchangeRedis/src/RedisCacheOptions.cs#L32C79-L32C83" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/StackExchangeRedis/src/RedisCacheOptions.cs#L32C79-L32C83" }, { "DocsId": "P:Microsoft.Extensions.Caching.StackExchangeRedis.RedisCacheOptions.InstanceName", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Caching/StackExchangeRedis/src/RedisCacheOptions.cs#L38C35-L38C39" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/StackExchangeRedis/src/RedisCacheOptions.cs#L38C35-L38C39" }, { "DocsId": "P:Microsoft.Extensions.Caching.StackExchangeRedis.RedisCacheOptions.ProfilingSession", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Caching/StackExchangeRedis/src/RedisCacheOptions.cs#L43C55-L43C59" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/StackExchangeRedis/src/RedisCacheOptions.cs#L43C55-L43C59" }, { "DocsId": "P:Microsoft.Extensions.Caching.StackExchangeRedis.RedisCacheOptions.Microsoft#Extensions#Options#IOptions#Value", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Caching/StackExchangeRedis/src/RedisCacheOptions.cs#L47C15-L47C27" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/StackExchangeRedis/src/RedisCacheOptions.cs#L47C15-L47C27" } ], "DocsId": "T:Microsoft.Extensions.Caching.StackExchangeRedis.RedisCacheOptions", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Caching/StackExchangeRedis/src/RedisCacheOptions.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Caching/StackExchangeRedis/src/RedisCacheOptions.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Compliance.Abstractions.json b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Compliance.Abstractions.json index 6b95b50d16d..3fa3a356ade 100644 --- a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Compliance.Abstractions.json +++ b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Compliance.Abstractions.json @@ -1,273 +1,272 @@ { "Assembly": "Microsoft.Extensions.Compliance.Abstractions", - "GUID": "DFB4F01B07E840C9A19C37D9F67E8460FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "1389804C217342F0B855526BE95F277FFFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:System.Text.RedactionStringBuilderExtensions.AppendRedacted(System.Text.StringBuilder,Microsoft.Extensions.Compliance.Redaction.Redactor,System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/RedactionStringBuilderExtensions.cs#L34C12-L34C66" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/RedactionStringBuilderExtensions.cs#L34C12-L34C66" }, { "DocsId": "M:System.Text.RedactionStringBuilderExtensions.AppendRedacted(System.Text.StringBuilder,Microsoft.Extensions.Compliance.Redaction.Redactor,System.ReadOnlySpan{System.Char})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/RedactionStringBuilderExtensions.cs#L48C9-L66C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/RedactionStringBuilderExtensions.cs#L48C9-L66C6" } ], "DocsId": "T:System.Text.RedactionStringBuilderExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/RedactionStringBuilderExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/RedactionStringBuilderExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Compliance.Redaction.IRedactionBuilder.SetRedactor``1(Microsoft.Extensions.Compliance.Classification.DataClassificationSet[])", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/IRedactionBuilder.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/IRedactionBuilder.cs" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Redaction.IRedactionBuilder.SetFallbackRedactor``1", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/IRedactionBuilder.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/IRedactionBuilder.cs" }, { "DocsId": "P:Microsoft.Extensions.Compliance.Redaction.IRedactionBuilder.Services", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/IRedactionBuilder.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/IRedactionBuilder.cs" } ], "DocsId": "T:Microsoft.Extensions.Compliance.Redaction.IRedactionBuilder", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/IRedactionBuilder.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/IRedactionBuilder.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Compliance.Redaction.IRedactorProvider.GetRedactor(Microsoft.Extensions.Compliance.Classification.DataClassificationSet)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/IRedactorProvider.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/IRedactorProvider.cs" } ], "DocsId": "T:Microsoft.Extensions.Compliance.Redaction.IRedactorProvider", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/IRedactorProvider.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/IRedactorProvider.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Compliance.Redaction.NullRedactor.GetRedactedLength(System.ReadOnlySpan{System.Char})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/NullRedactor.cs#L20C72-L20C84" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/NullRedactor.cs#L20C72-L20C84" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Redaction.NullRedactor.Redact(System.ReadOnlySpan{System.Char},System.Span{System.Char})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/NullRedactor.cs#L25C9-L31C30" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/NullRedactor.cs#L25C9-L31C30" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Redaction.NullRedactor.Redact(System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/NullRedactor.cs#L35C54-L35C76" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/NullRedactor.cs#L35C54-L35C76" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Redaction.NullRedactor.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/NullRedactor.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/NullRedactor.cs" }, { "DocsId": "P:Microsoft.Extensions.Compliance.Redaction.NullRedactor.Instance", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/NullRedactor.cs#L17C43-L17C47" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/NullRedactor.cs#L17C43-L17C47" } ], "DocsId": "T:Microsoft.Extensions.Compliance.Redaction.NullRedactor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/NullRedactor.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/NullRedactor.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Compliance.Redaction.NullRedactorProvider.GetRedactor(Microsoft.Extensions.Compliance.Classification.DataClassificationSet)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/NullRedactorProvider.cs#L19C75-L19C96" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/NullRedactorProvider.cs#L19C75-L19C96" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Redaction.NullRedactorProvider.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/NullRedactorProvider.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/NullRedactorProvider.cs" }, { "DocsId": "P:Microsoft.Extensions.Compliance.Redaction.NullRedactorProvider.Instance", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/NullRedactorProvider.cs#L16C51-L16C55" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/NullRedactorProvider.cs#L16C51-L16C55" } ], "DocsId": "T:Microsoft.Extensions.Compliance.Redaction.NullRedactorProvider", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/NullRedactorProvider.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/NullRedactorProvider.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Compliance.Redaction.Redactor.Redact(System.ReadOnlySpan{System.Char})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/Redactor.cs#L30C9-L44C116" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/Redactor.cs#L30C9-L44C116" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Redaction.Redactor.Redact(System.ReadOnlySpan{System.Char},System.Span{System.Char})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/Redactor.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/Redactor.cs" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Redaction.Redactor.Redact(System.String,System.Span{System.Char})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/Redactor.cs#L83C66-L83C102" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/Redactor.cs#L83C66-L83C102" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Redaction.Redactor.Redact(System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/Redactor.cs#L94C53-L94C76" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/Redactor.cs#L94C53-L94C76" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Redaction.Redactor.Redact``1(``0,System.String,System.IFormatProvider)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/Redactor.cs#L112C9-L153C42" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/Redactor.cs#L112C9-L153C42" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Redaction.Redactor.Redact``1(``0,System.Span{System.Char},System.String,System.IFormatProvider)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/Redactor.cs#L174C9-L204C55" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/Redactor.cs#L174C9-L204C55" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Redaction.Redactor.TryRedact``1(``0,System.Span{System.Char},System.Int32@,System.ReadOnlySpan{System.Char},System.IFormatProvider)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/Redactor.cs#L225C9-L284C21" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/Redactor.cs#L225C9-L284C21" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Redaction.Redactor.GetRedactedLength(System.ReadOnlySpan{System.Char})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/Redactor.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/Redactor.cs" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Redaction.Redactor.GetRedactedLength(System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/Redactor.cs#L299C52-L299C85" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/Redactor.cs#L299C52-L299C85" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Redaction.Redactor.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/Redactor.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/Redactor.cs" } ], "DocsId": "T:Microsoft.Extensions.Compliance.Redaction.Redactor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/Redactor.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Redaction/Redactor.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Compliance.Classification.DataClassification.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassification.cs#L41C9-L43C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassification.cs#L41C9-L43C6" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Classification.DataClassification.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassification.cs#L56C49-L56C93" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassification.cs#L56C49-L56C93" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Classification.DataClassification.Equals(Microsoft.Extensions.Compliance.Classification.DataClassification)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassification.cs#L63C53-L63C111" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassification.cs#L63C53-L63C111" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Classification.DataClassification.GetHashCode", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassification.cs#L69C42-L69C79" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassification.cs#L69C42-L69C79" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Classification.DataClassification.op_Equality(Microsoft.Extensions.Compliance.Classification.DataClassification,Microsoft.Extensions.Compliance.Classification.DataClassification)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassification.cs#L79C9-L79C35" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassification.cs#L79C9-L79C35" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Classification.DataClassification.op_Inequality(Microsoft.Extensions.Compliance.Classification.DataClassification,Microsoft.Extensions.Compliance.Classification.DataClassification)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassification.cs#L90C9-L90C36" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassification.cs#L90C9-L90C36" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Classification.DataClassification.ToString", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassification.cs#L97C42-L97C117" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassification.cs#L97C42-L97C117" }, { "DocsId": "P:Microsoft.Extensions.Compliance.Classification.DataClassification.None", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassification.cs#L17C46-L17C63" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassification.cs#L17C46-L17C63" }, { "DocsId": "P:Microsoft.Extensions.Compliance.Classification.DataClassification.Unknown", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassification.cs#L22C49-L22C69" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassification.cs#L22C49-L22C69" }, { "DocsId": "P:Microsoft.Extensions.Compliance.Classification.DataClassification.TaxonomyName", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassification.cs#L27C34-L27C38" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassification.cs#L27C34-L27C38" }, { "DocsId": "P:Microsoft.Extensions.Compliance.Classification.DataClassification.Value", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassification.cs#L32C27-L32C31" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassification.cs#L32C27-L32C31" } ], "DocsId": "T:Microsoft.Extensions.Compliance.Classification.DataClassification", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassification.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassification.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Compliance.Classification.DataClassificationAttribute.#ctor(Microsoft.Extensions.Compliance.Classification.DataClassification)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassificationAttribute.cs#L29C41-L43C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassificationAttribute.cs#L29C41-L43C6" }, { "DocsId": "P:Microsoft.Extensions.Compliance.Classification.DataClassificationAttribute.Notes", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassificationAttribute.cs#L29C27-L29C31" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassificationAttribute.cs#L29C27-L29C31" }, { "DocsId": "P:Microsoft.Extensions.Compliance.Classification.DataClassificationAttribute.Classification", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassificationAttribute.cs#L34C48-L34C52" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassificationAttribute.cs#L34C48-L34C52" } ], "DocsId": "T:Microsoft.Extensions.Compliance.Classification.DataClassificationAttribute", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassificationAttribute.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassificationAttribute.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Compliance.Classification.DataClassificationSet.#ctor(Microsoft.Extensions.Compliance.Classification.DataClassification)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassificationSet.cs#L17C5-L28C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassificationSet.cs#L17C5-L28C6" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Classification.DataClassificationSet.#ctor(System.Collections.Generic.IEnumerable{Microsoft.Extensions.Compliance.Classification.DataClassification})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassificationSet.cs#L17C5-L39C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassificationSet.cs#L17C5-L39C6" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Classification.DataClassificationSet.#ctor(Microsoft.Extensions.Compliance.Classification.DataClassification[])", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassificationSet.cs#L17C5-L50C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassificationSet.cs#L17C5-L50C6" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Classification.DataClassificationSet.op_Implicit(Microsoft.Extensions.Compliance.Classification.DataClassification)~Microsoft.Extensions.Compliance.Classification.DataClassificationSet", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassificationSet.cs#L58C9-L58C55" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassificationSet.cs#L58C9-L58C55" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Classification.DataClassificationSet.FromDataClassification(Microsoft.Extensions.Compliance.Classification.DataClassification)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassificationSet.cs#L66C102-L66C121" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassificationSet.cs#L66C102-L66C121" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Classification.DataClassificationSet.Union(Microsoft.Extensions.Compliance.Classification.DataClassificationSet)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassificationSet.cs#L78C9-L83C67" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassificationSet.cs#L78C9-L83C67" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Classification.DataClassificationSet.GetHashCode", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassificationSet.cs#L90C42-L90C57" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassificationSet.cs#L90C42-L90C57" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Classification.DataClassificationSet.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassificationSet.cs#L97C49-L97C85" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassificationSet.cs#L97C49-L97C85" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Classification.DataClassificationSet.Equals(Microsoft.Extensions.Compliance.Classification.DataClassificationSet)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassificationSet.cs#L104C57-L104C124" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassificationSet.cs#L104C57-L104C124" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Classification.DataClassificationSet.ToString", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassificationSet.cs#L112C9-L136C23" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassificationSet.cs#L112C9-L136C23" } ], "DocsId": "T:Microsoft.Extensions.Compliance.Classification.DataClassificationSet", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassificationSet.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/DataClassificationSet.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Compliance.Classification.NoDataClassificationAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/NoDataClassificationAttribute.cs#L15C11-L17C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/NoDataClassificationAttribute.cs#L15C11-L17C6" } ], "DocsId": "T:Microsoft.Extensions.Compliance.Classification.NoDataClassificationAttribute", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/NoDataClassificationAttribute.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/NoDataClassificationAttribute.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Compliance.Classification.UnknownDataClassificationAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/UnknownDataClassificationAttribute.cs#L15C11-L17C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/UnknownDataClassificationAttribute.cs#L15C11-L17C6" } ], "DocsId": "T:Microsoft.Extensions.Compliance.Classification.UnknownDataClassificationAttribute", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/UnknownDataClassificationAttribute.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Abstractions/Classification/UnknownDataClassificationAttribute.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Compliance.Redaction.json b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Compliance.Redaction.json index eb628a452c1..8743622ef36 100644 --- a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Compliance.Redaction.json +++ b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Compliance.Redaction.json @@ -1,93 +1,92 @@ { "Assembly": "Microsoft.Extensions.Compliance.Redaction", - "GUID": "9DB8B0EB9A3943D58A2E04565F9FC288FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "BDB535C0936546C8922787AE49D9C6AFFFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.RedactionServiceCollectionExtensions.AddRedaction(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Redaction/RedactionServiceCollectionExtensions.cs#L23C12-L23C57" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Redaction/RedactionServiceCollectionExtensions.cs#L23C12-L23C57" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.RedactionServiceCollectionExtensions.AddRedaction(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{Microsoft.Extensions.Compliance.Redaction.IRedactionBuilder})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Redaction/RedactionServiceCollectionExtensions.cs#L35C9-L45C25" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Redaction/RedactionServiceCollectionExtensions.cs#L35C9-L45C25" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.RedactionServiceCollectionExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Redaction/RedactionServiceCollectionExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Redaction/RedactionServiceCollectionExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Compliance.Redaction.ErasingRedactor.Redact(System.ReadOnlySpan{System.Char},System.Span{System.Char})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Redaction/ErasingRedactor.cs#L19C86-L19C87" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Redaction/ErasingRedactor.cs#L19C86-L19C87" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Redaction.ErasingRedactor.GetRedactedLength(System.ReadOnlySpan{System.Char})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Redaction/ErasingRedactor.cs#L22C72-L22C73" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Redaction/ErasingRedactor.cs#L22C72-L22C73" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Redaction.ErasingRedactor.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Redaction/ErasingRedactor.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Redaction/ErasingRedactor.cs" }, { "DocsId": "P:Microsoft.Extensions.Compliance.Redaction.ErasingRedactor.Instance", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Redaction/ErasingRedactor.cs#L16C46-L16C50" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Redaction/ErasingRedactor.cs#L16C46-L16C50" } ], "DocsId": "T:Microsoft.Extensions.Compliance.Redaction.ErasingRedactor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Redaction/ErasingRedactor.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Redaction/ErasingRedactor.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Compliance.Redaction.HmacRedactor.#ctor(Microsoft.Extensions.Options.IOptions{Microsoft.Extensions.Compliance.Redaction.HmacRedactorOptions})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Redaction/HmacRedactor.cs#L43C5-L50C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Redaction/HmacRedactor.cs#L43C5-L50C6" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Redaction.HmacRedactor.GetRedactedLength(System.ReadOnlySpan{System.Char})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Redaction/HmacRedactor.cs#L55C9-L60C32" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Redaction/HmacRedactor.cs#L55C9-L60C32" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Redaction.HmacRedactor.Redact(System.ReadOnlySpan{System.Char},System.Span{System.Char})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Redaction/HmacRedactor.cs#L67C9-L76C97" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Redaction/HmacRedactor.cs#L67C9-L76C97" } ], "DocsId": "T:Microsoft.Extensions.Compliance.Redaction.HmacRedactor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Redaction/HmacRedactor.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Redaction/HmacRedactor.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Compliance.Redaction.HmacRedactorOptions.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Redaction/HmacRedactorOptions.cs#L45C39-L45C51" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Redaction/HmacRedactorOptions.cs#L45C39-L45C51" }, { "DocsId": "P:Microsoft.Extensions.Compliance.Redaction.HmacRedactorOptions.KeyId", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Redaction/HmacRedactorOptions.cs#L24C25-L24C29" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Redaction/HmacRedactorOptions.cs#L24C25-L24C29" }, { "DocsId": "P:Microsoft.Extensions.Compliance.Redaction.HmacRedactorOptions.Key", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Redaction/HmacRedactorOptions.cs#L45C25-L45C29" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Redaction/HmacRedactorOptions.cs#L45C25-L45C29" } ], "DocsId": "T:Microsoft.Extensions.Compliance.Redaction.HmacRedactorOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Redaction/HmacRedactorOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Redaction/HmacRedactorOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Compliance.Redaction.RedactionExtensions.SetHmacRedactor(Microsoft.Extensions.Compliance.Redaction.IRedactionBuilder,System.Action{Microsoft.Extensions.Compliance.Redaction.HmacRedactorOptions},Microsoft.Extensions.Compliance.Classification.DataClassificationSet[])", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Redaction/RedactionExtensions.cs#L27C9-L36C67" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Redaction/RedactionExtensions.cs#L27C9-L36C67" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Redaction.RedactionExtensions.SetHmacRedactor(Microsoft.Extensions.Compliance.Redaction.IRedactionBuilder,Microsoft.Extensions.Configuration.IConfigurationSection,Microsoft.Extensions.Compliance.Classification.DataClassificationSet[])", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Redaction/RedactionExtensions.cs#L49C9-L57C67" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Redaction/RedactionExtensions.cs#L49C9-L57C67" } ], "DocsId": "T:Microsoft.Extensions.Compliance.Redaction.RedactionExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Redaction/RedactionExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Redaction/RedactionExtensions.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Compliance.Testing.json b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Compliance.Testing.json index 6f201fa52b4..edd7295bc22 100644 --- a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Compliance.Testing.json +++ b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Compliance.Testing.json @@ -1,251 +1,250 @@ { "Assembly": "Microsoft.Extensions.Compliance.Testing", - "GUID": "38B0674F7ADE4D8191520941395C3544FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "F575F8E16662424D94F922506C1887A8FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:System.FakeRedactionServiceProviderExtensions.GetFakeRedactionCollector(System.IServiceProvider)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactionServiceProviderExtensions.cs#L26C12-L26C86" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactionServiceProviderExtensions.cs#L26C12-L26C86" } ], "DocsId": "T:System.FakeRedactionServiceProviderExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactionServiceProviderExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactionServiceProviderExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.FakeRedactionServiceCollectionExtensions.AddFakeRedaction(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactionServiceCollectionExtensions.cs#L26C9-L39C23" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactionServiceCollectionExtensions.cs#L26C9-L39C23" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.FakeRedactionServiceCollectionExtensions.AddFakeRedaction(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{Microsoft.Extensions.Compliance.Testing.FakeRedactorOptions})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactionServiceCollectionExtensions.cs#L51C9-L67C23" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactionServiceCollectionExtensions.cs#L51C9-L67C23" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.FakeRedactionServiceCollectionExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactionServiceCollectionExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactionServiceCollectionExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Compliance.Testing.FakeRedactionCollector.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactionCollector.cs#L15C5-L16C63" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactionCollector.cs#L15C5-L16C63" }, { "DocsId": "P:Microsoft.Extensions.Compliance.Testing.FakeRedactionCollector.LastRedactorRequested", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactionCollector.cs#L26C13-L35C10" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactionCollector.cs#L26C13-L35C10" }, { "DocsId": "P:Microsoft.Extensions.Compliance.Testing.FakeRedactionCollector.AllRedactorRequests", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactionCollector.cs#L45C13-L49C10" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactionCollector.cs#L45C13-L49C10" }, { "DocsId": "P:Microsoft.Extensions.Compliance.Testing.FakeRedactionCollector.LastRedactedData", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactionCollector.cs#L60C13-L69C10" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactionCollector.cs#L60C13-L69C10" }, { "DocsId": "P:Microsoft.Extensions.Compliance.Testing.FakeRedactionCollector.AllRedactedData", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactionCollector.cs#L79C13-L83C10" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactionCollector.cs#L79C13-L83C10" } ], "DocsId": "T:Microsoft.Extensions.Compliance.Testing.FakeRedactionCollector", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactionCollector.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactionCollector.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Compliance.Testing.FakeRedactor.#ctor(Microsoft.Extensions.Options.IOptions{Microsoft.Extensions.Compliance.Testing.FakeRedactorOptions},Microsoft.Extensions.Compliance.Testing.FakeRedactionCollector)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactor.cs#L39C5-L63C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactor.cs#L39C5-L63C6" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Testing.FakeRedactor.Create(Microsoft.Extensions.Compliance.Testing.FakeRedactorOptions,Microsoft.Extensions.Compliance.Testing.FakeRedactionCollector)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactor.cs#L71C121-L71C197" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactor.cs#L71C121-L71C197" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Testing.FakeRedactor.Redact(System.ReadOnlySpan{System.Char},System.Span{System.Char})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactor.cs#L76C9-L86C27" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactor.cs#L76C9-L86C27" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Testing.FakeRedactor.GetRedactedLength(System.ReadOnlySpan{System.Char})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactor.cs#L92C9-L92C94" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactor.cs#L92C9-L92C94" }, { "DocsId": "P:Microsoft.Extensions.Compliance.Testing.FakeRedactor.EventCollector", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactor.cs#L32C52-L32C56" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactor.cs#L32C52-L32C56" } ], "DocsId": "T:Microsoft.Extensions.Compliance.Testing.FakeRedactor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactor.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactor.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Compliance.Testing.FakeRedactorOptions.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactorOptions.cs#L25C51-L25C64" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactorOptions.cs#L25C51-L25C64" }, { "DocsId": "P:Microsoft.Extensions.Compliance.Testing.FakeRedactorOptions.RedactionFormat", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactorOptions.cs#L25C37-L25C41" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactorOptions.cs#L25C37-L25C41" } ], "DocsId": "T:Microsoft.Extensions.Compliance.Testing.FakeRedactorOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactorOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactorOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Compliance.Testing.FakeRedactorProvider.#ctor(Microsoft.Extensions.Compliance.Testing.FakeRedactorOptions,Microsoft.Extensions.Compliance.Testing.FakeRedactionCollector)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactorProvider.cs#L28C5-L32C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactorProvider.cs#L28C5-L32C6" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Testing.FakeRedactorProvider.GetRedactor(Microsoft.Extensions.Compliance.Classification.DataClassificationSet)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactorProvider.cs#L37C9-L41C26" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactorProvider.cs#L37C9-L41C26" }, { "DocsId": "P:Microsoft.Extensions.Compliance.Testing.FakeRedactorProvider.Collector", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactorProvider.cs#L21C47-L21C51" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactorProvider.cs#L21C47-L21C51" } ], "DocsId": "T:Microsoft.Extensions.Compliance.Testing.FakeRedactorProvider", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactorProvider.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactorProvider.cs" }, { "Members": [ { "DocsId": "P:Microsoft.Extensions.Compliance.Testing.FakeTaxonomy.TaxonomyName", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeTaxonomy.cs#L16C42-L16C72" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeTaxonomy.cs#L16C42-L16C72" }, { "DocsId": "P:Microsoft.Extensions.Compliance.Testing.FakeTaxonomy.PrivateData", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeTaxonomy.cs#L21C53-L21C91" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeTaxonomy.cs#L21C53-L21C91" }, { "DocsId": "P:Microsoft.Extensions.Compliance.Testing.FakeTaxonomy.PublicData", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeTaxonomy.cs#L26C52-L26C89" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeTaxonomy.cs#L26C52-L26C89" } ], "DocsId": "T:Microsoft.Extensions.Compliance.Testing.FakeTaxonomy", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeTaxonomy.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeTaxonomy.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Compliance.Testing.PrivateDataAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/PrivateDataAttribute.cs#L17C11-L19C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/PrivateDataAttribute.cs#L17C11-L19C6" } ], "DocsId": "T:Microsoft.Extensions.Compliance.Testing.PrivateDataAttribute", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/PrivateDataAttribute.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/PrivateDataAttribute.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Compliance.Testing.PublicDataAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/PublicDataAttribute.cs#L17C11-L19C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/PublicDataAttribute.cs#L17C11-L19C6" } ], "DocsId": "T:Microsoft.Extensions.Compliance.Testing.PublicDataAttribute", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/PublicDataAttribute.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/PublicDataAttribute.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Compliance.Testing.RedactedData.#ctor(System.String,System.String,System.Int32)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/RedactedData.cs#L37C9-L40C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/RedactedData.cs#L37C9-L40C6" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Testing.RedactedData.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/RedactedData.cs#L47C49-L47C91" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/RedactedData.cs#L47C49-L47C91" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Testing.RedactedData.Equals(Microsoft.Extensions.Compliance.Testing.RedactedData)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/RedactedData.cs#L54C47-L54C145" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/RedactedData.cs#L54C47-L54C145" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Testing.RedactedData.GetHashCode", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/RedactedData.cs#L60C42-L60C94" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/RedactedData.cs#L60C42-L60C94" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Testing.RedactedData.op_Equality(Microsoft.Extensions.Compliance.Testing.RedactedData,Microsoft.Extensions.Compliance.Testing.RedactedData)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/RedactedData.cs#L70C9-L70C35" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/RedactedData.cs#L70C9-L70C35" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Testing.RedactedData.op_Inequality(Microsoft.Extensions.Compliance.Testing.RedactedData,Microsoft.Extensions.Compliance.Testing.RedactedData)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/RedactedData.cs#L81C9-L81C33" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/RedactedData.cs#L81C9-L81C33" }, { "DocsId": "P:Microsoft.Extensions.Compliance.Testing.RedactedData.Original", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/RedactedData.cs#L17C30-L17C34" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/RedactedData.cs#L17C30-L17C34" }, { "DocsId": "P:Microsoft.Extensions.Compliance.Testing.RedactedData.Redacted", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/RedactedData.cs#L22C30-L22C34" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/RedactedData.cs#L22C30-L22C34" }, { "DocsId": "P:Microsoft.Extensions.Compliance.Testing.RedactedData.SequenceNumber", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/RedactedData.cs#L27C33-L27C37" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/RedactedData.cs#L27C33-L27C37" } ], "DocsId": "T:Microsoft.Extensions.Compliance.Testing.RedactedData", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/RedactedData.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/RedactedData.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Compliance.Testing.RedactorRequested.#ctor(Microsoft.Extensions.Compliance.Classification.DataClassificationSet,System.Int32)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/RedactorRequested.cs#L31C9-L33C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/RedactorRequested.cs#L31C9-L33C6" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Testing.RedactorRequested.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/RedactorRequested.cs#L40C49-L40C96" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/RedactorRequested.cs#L40C49-L40C96" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Testing.RedactorRequested.Equals(Microsoft.Extensions.Compliance.Testing.RedactorRequested)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/RedactorRequested.cs#L47C52-L47C147" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/RedactorRequested.cs#L47C52-L47C147" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Testing.RedactorRequested.GetHashCode", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/RedactorRequested.cs#L53C42-L53C95" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/RedactorRequested.cs#L53C42-L53C95" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Testing.RedactorRequested.op_Equality(Microsoft.Extensions.Compliance.Testing.RedactorRequested,Microsoft.Extensions.Compliance.Testing.RedactorRequested)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/RedactorRequested.cs#L63C9-L63C35" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/RedactorRequested.cs#L63C9-L63C35" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Testing.RedactorRequested.op_Inequality(Microsoft.Extensions.Compliance.Testing.RedactorRequested,Microsoft.Extensions.Compliance.Testing.RedactorRequested)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/RedactorRequested.cs#L74C9-L74C33" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/RedactorRequested.cs#L74C9-L74C33" }, { "DocsId": "P:Microsoft.Extensions.Compliance.Testing.RedactorRequested.DataClassifications", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/RedactorRequested.cs#L17C56-L17C60" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/RedactorRequested.cs#L17C56-L17C60" }, { "DocsId": "P:Microsoft.Extensions.Compliance.Testing.RedactorRequested.SequenceNumber", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/RedactorRequested.cs#L22C33-L22C37" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/RedactorRequested.cs#L22C33-L22C37" } ], "DocsId": "T:Microsoft.Extensions.Compliance.Testing.RedactorRequested", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/RedactorRequested.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/RedactorRequested.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Compliance.Redaction.FakeRedactionBuilderExtensions.SetFakeRedactor(Microsoft.Extensions.Compliance.Redaction.IRedactionBuilder,Microsoft.Extensions.Compliance.Classification.DataClassificationSet[])", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactionBuilderExtensions.cs#L30C9-L34C67" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactionBuilderExtensions.cs#L30C9-L34C67" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Redaction.FakeRedactionBuilderExtensions.SetFakeRedactor(Microsoft.Extensions.Compliance.Redaction.IRedactionBuilder,System.Action{Microsoft.Extensions.Compliance.Testing.FakeRedactorOptions},Microsoft.Extensions.Compliance.Classification.DataClassificationSet[])", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactionBuilderExtensions.cs#L47C9-L56C67" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactionBuilderExtensions.cs#L47C9-L56C67" }, { "DocsId": "M:Microsoft.Extensions.Compliance.Redaction.FakeRedactionBuilderExtensions.SetFakeRedactor(Microsoft.Extensions.Compliance.Redaction.IRedactionBuilder,Microsoft.Extensions.Configuration.IConfigurationSection,Microsoft.Extensions.Compliance.Classification.DataClassificationSet[])", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactionBuilderExtensions.cs#L69C9-L78C67" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactionBuilderExtensions.cs#L69C9-L78C67" } ], "DocsId": "T:Microsoft.Extensions.Compliance.Redaction.FakeRedactionBuilderExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactionBuilderExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Compliance.Testing/FakeRedactionBuilderExtensions.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Configuration.Abstractions.json b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Configuration.Abstractions.json index e47daf01282..deb4ee863cc 100644 --- a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Configuration.Abstractions.json +++ b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Configuration.Abstractions.json @@ -1,234 +1,233 @@ { "Assembly": "Microsoft.Extensions.Configuration.Abstractions", - "GUID": "8CF813380A2E448F8B82D4B921E3D1FFFFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "0A6FD8E1089845F79F43D3F9836DEBBEFFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationDebugViewContext.#ctor(System.String,System.String,System.String,Microsoft.Extensions.Configuration.IConfigurationProvider)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationDebugViewContext.cs#L20C13-L24C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationDebugViewContext.cs#L20C13-L24C10" }, { "DocsId": "P:Microsoft.Extensions.Configuration.ConfigurationDebugViewContext.Path", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationDebugViewContext.cs#L29C30-L29C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationDebugViewContext.cs#L29C30-L29C34" }, { "DocsId": "P:Microsoft.Extensions.Configuration.ConfigurationDebugViewContext.Key", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationDebugViewContext.cs#L34C29-L34C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationDebugViewContext.cs#L34C29-L34C33" }, { "DocsId": "P:Microsoft.Extensions.Configuration.ConfigurationDebugViewContext.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationDebugViewContext.cs#L39C32-L39C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationDebugViewContext.cs#L39C32-L39C36" }, { "DocsId": "P:Microsoft.Extensions.Configuration.ConfigurationDebugViewContext.ConfigurationProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationDebugViewContext.cs#L44C63-L44C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationDebugViewContext.cs#L44C63-L44C67" } ], "DocsId": "T:Microsoft.Extensions.Configuration.ConfigurationDebugViewContext", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationDebugViewContext.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationDebugViewContext.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationExtensions.Add``1(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.Action{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationExtensions.cs#L24C13-L26C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationExtensions.cs#L24C13-L26C40" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationExtensions.GetConnectionString(Microsoft.Extensions.Configuration.IConfiguration,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationExtensions.cs#L37C13-L37C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationExtensions.cs#L37C13-L37C73" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationExtensions.AsEnumerable(Microsoft.Extensions.Configuration.IConfiguration)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationExtensions.cs#L45C117-L45C169" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationExtensions.cs#L45C117-L45C169" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationExtensions.AsEnumerable(Microsoft.Extensions.Configuration.IConfiguration,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationExtensions.cs" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationExtensions.Exists(Microsoft.Extensions.Configuration.IConfigurationSection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationExtensions.cs#L80C13-L84C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationExtensions.cs#L80C13-L84C73" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationExtensions.GetRequiredSection(Microsoft.Extensions.Configuration.IConfiguration,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationExtensions.cs#L99C13-L107C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationExtensions.cs#L99C13-L107C88" } ], "DocsId": "T:Microsoft.Extensions.Configuration.ConfigurationExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationKeyNameAttribute.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationKeyNameAttribute.cs#L18C9-L18C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationKeyNameAttribute.cs#L18C9-L18C73" }, { "DocsId": "P:Microsoft.Extensions.Configuration.ConfigurationKeyNameAttribute.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationKeyNameAttribute.cs#L23C30-L23C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationKeyNameAttribute.cs#L23C30-L23C34" } ], "DocsId": "T:Microsoft.Extensions.Configuration.ConfigurationKeyNameAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationKeyNameAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationKeyNameAttribute.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationPath.Combine(System.String[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationPath.cs#L27C13-L29C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationPath.cs#L27C13-L29C60" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationPath.Combine(System.Collections.Generic.IEnumerable{System.String})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationPath.cs#L39C13-L41C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationPath.cs#L39C13-L41C60" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationPath.GetSectionKey(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationPath.cs#L52C13-L58C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationPath.cs#L52C13-L58C91" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationPath.GetParentPath(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationPath.cs#L68C13-L74C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationPath.cs#L68C13-L74C90" }, { "DocsId": "F:Microsoft.Extensions.Configuration.ConfigurationPath.KeyDelimiter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationPath.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationPath.cs" } ], "DocsId": "T:Microsoft.Extensions.Configuration.ConfigurationPath", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationPath.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationPath.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationRootExtensions.GetDebugView(Microsoft.Extensions.Configuration.IConfigurationRoot)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationRootExtensions.cs#L22C13-L22C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationRootExtensions.cs#L22C13-L22C59" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationRootExtensions.GetDebugView(Microsoft.Extensions.Configuration.IConfigurationRoot,System.Func{Microsoft.Extensions.Configuration.ConfigurationDebugViewContext,System.String})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationRootExtensions.cs#L74C13-L78C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationRootExtensions.cs#L16707566C0-L78C39" } ], "DocsId": "T:Microsoft.Extensions.Configuration.ConfigurationRootExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationRootExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/ConfigurationRootExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.IConfiguration.GetSection(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfiguration.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfiguration.cs" }, { "DocsId": "M:Microsoft.Extensions.Configuration.IConfiguration.GetChildren", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfiguration.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfiguration.cs" }, { "DocsId": "M:Microsoft.Extensions.Configuration.IConfiguration.GetReloadToken", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfiguration.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfiguration.cs" }, { "DocsId": "P:Microsoft.Extensions.Configuration.IConfiguration.Item(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfiguration.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfiguration.cs" } ], "DocsId": "T:Microsoft.Extensions.Configuration.IConfiguration", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfiguration.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfiguration.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.IConfigurationBuilder.Add(Microsoft.Extensions.Configuration.IConfigurationSource)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfigurationBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfigurationBuilder.cs" }, { "DocsId": "M:Microsoft.Extensions.Configuration.IConfigurationBuilder.Build", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfigurationBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfigurationBuilder.cs" }, { "DocsId": "P:Microsoft.Extensions.Configuration.IConfigurationBuilder.Properties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfigurationBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfigurationBuilder.cs" }, { "DocsId": "P:Microsoft.Extensions.Configuration.IConfigurationBuilder.Sources", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfigurationBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfigurationBuilder.cs" } ], "DocsId": "T:Microsoft.Extensions.Configuration.IConfigurationBuilder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfigurationBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfigurationBuilder.cs" }, { "Members": [], "DocsId": "T:Microsoft.Extensions.Configuration.IConfigurationManager", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfigurationManager.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfigurationManager.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.IConfigurationProvider.TryGet(System.String,System.String@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfigurationProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfigurationProvider.cs" }, { "DocsId": "M:Microsoft.Extensions.Configuration.IConfigurationProvider.Set(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfigurationProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfigurationProvider.cs" }, { "DocsId": "M:Microsoft.Extensions.Configuration.IConfigurationProvider.GetReloadToken", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfigurationProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfigurationProvider.cs" }, { "DocsId": "M:Microsoft.Extensions.Configuration.IConfigurationProvider.Load", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfigurationProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfigurationProvider.cs" }, { "DocsId": "M:Microsoft.Extensions.Configuration.IConfigurationProvider.GetChildKeys(System.Collections.Generic.IEnumerable{System.String},System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfigurationProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfigurationProvider.cs" } ], "DocsId": "T:Microsoft.Extensions.Configuration.IConfigurationProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfigurationProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfigurationProvider.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.IConfigurationRoot.Reload", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfigurationRoot.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfigurationRoot.cs" }, { "DocsId": "P:Microsoft.Extensions.Configuration.IConfigurationRoot.Providers", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfigurationRoot.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfigurationRoot.cs" } ], "DocsId": "T:Microsoft.Extensions.Configuration.IConfigurationRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfigurationRoot.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfigurationRoot.cs" }, { "Members": [ { "DocsId": "P:Microsoft.Extensions.Configuration.IConfigurationSection.Key", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfigurationSection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfigurationSection.cs" }, { "DocsId": "P:Microsoft.Extensions.Configuration.IConfigurationSection.Path", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfigurationSection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfigurationSection.cs" }, { "DocsId": "P:Microsoft.Extensions.Configuration.IConfigurationSection.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfigurationSection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfigurationSection.cs" } ], "DocsId": "T:Microsoft.Extensions.Configuration.IConfigurationSection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfigurationSection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfigurationSection.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.IConfigurationSource.Build(Microsoft.Extensions.Configuration.IConfigurationBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfigurationSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfigurationSource.cs" } ], "DocsId": "T:Microsoft.Extensions.Configuration.IConfigurationSource", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfigurationSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Abstractions/src/IConfigurationSource.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Configuration.Binder.json b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Configuration.Binder.json index 74a0a8c90c0..3712e978312 100644 --- a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Configuration.Binder.json +++ b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Configuration.Binder.json @@ -1,75 +1,74 @@ { "Assembly": "Microsoft.Extensions.Configuration.Binder", - "GUID": "AE8C94FE6F7E4167A1C0BB3BE41FA32AFFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "2E5DD357DA1A4C728167245BE5741E23FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.BinderOptions.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Binder/src/BinderOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Binder/src/BinderOptions.cs" }, { "DocsId": "P:Microsoft.Extensions.Configuration.BinderOptions.BindNonPublicProperties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Binder/src/BinderOptions.cs#L15C47-L15C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Binder/src/BinderOptions.cs#L15C47-L15C51" }, { "DocsId": "P:Microsoft.Extensions.Configuration.BinderOptions.ErrorOnUnknownConfiguration", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Binder/src/BinderOptions.cs#L23C51-L23C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Binder/src/BinderOptions.cs#L23C51-L23C55" } ], "DocsId": "T:Microsoft.Extensions.Configuration.BinderOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Binder/src/BinderOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Binder/src/BinderOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationBinder.Get``1(Microsoft.Extensions.Configuration.IConfiguration)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Binder/src/ConfigurationBinder.cs#L38C16-L38C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Binder/src/ConfigurationBinder.cs#L38C16-L38C42" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationBinder.Get``1(Microsoft.Extensions.Configuration.IConfiguration,System.Action{Microsoft.Extensions.Configuration.BinderOptions})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Binder/src/ConfigurationBinder.cs#L53C13-L60C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Binder/src/ConfigurationBinder.cs#L53C13-L60C30" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationBinder.Get(Microsoft.Extensions.Configuration.IConfiguration,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Binder/src/ConfigurationBinder.cs#L74C16-L74C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Binder/src/ConfigurationBinder.cs#L74C16-L74C45" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationBinder.Get(Microsoft.Extensions.Configuration.IConfiguration,System.Type,System.Action{Microsoft.Extensions.Configuration.BinderOptions})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Binder/src/ConfigurationBinder.cs#L93C13-L100C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Binder/src/ConfigurationBinder.cs#L93C13-L100C39" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationBinder.Bind(Microsoft.Extensions.Configuration.IConfiguration,System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Binder/src/ConfigurationBinder.cs#L113C13-L115C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Binder/src/ConfigurationBinder.cs#L113C13-L115C10" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationBinder.Bind(Microsoft.Extensions.Configuration.IConfiguration,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Binder/src/ConfigurationBinder.cs#L125C16-L125C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Binder/src/ConfigurationBinder.cs#L125C16-L125C50" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationBinder.Bind(Microsoft.Extensions.Configuration.IConfiguration,System.Object,System.Action{Microsoft.Extensions.Configuration.BinderOptions})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Binder/src/ConfigurationBinder.cs#L137C13-L146C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Binder/src/ConfigurationBinder.cs#L137C13-L146C10" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationBinder.GetValue``1(Microsoft.Extensions.Configuration.IConfiguration,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Binder/src/ConfigurationBinder.cs#L158C13-L158C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Binder/src/ConfigurationBinder.cs#L158C13-L158C61" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationBinder.GetValue``1(Microsoft.Extensions.Configuration.IConfiguration,System.String,``0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Binder/src/ConfigurationBinder.cs#L172C13-L172C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Binder/src/ConfigurationBinder.cs#L172C13-L172C78" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationBinder.GetValue(Microsoft.Extensions.Configuration.IConfiguration,System.Type,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Binder/src/ConfigurationBinder.cs#L189C13-L189C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Binder/src/ConfigurationBinder.cs#L189C13-L189C75" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationBinder.GetValue(Microsoft.Extensions.Configuration.IConfiguration,System.Type,System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Binder/src/ConfigurationBinder.cs#L207C13-L216C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Binder/src/ConfigurationBinder.cs#L207C13-L216C33" } ], "DocsId": "T:Microsoft.Extensions.Configuration.ConfigurationBinder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Binder/src/ConfigurationBinder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Binder/src/ConfigurationBinder.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Configuration.CommandLine.json b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Configuration.CommandLine.json index c45ca4fc6de..5cef01d0c4d 100644 --- a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Configuration.CommandLine.json +++ b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Configuration.CommandLine.json @@ -1,65 +1,64 @@ { "Assembly": "Microsoft.Extensions.Configuration.CommandLine", - "GUID": "036AEBD2B28743159EEE9611E6CE579DFFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "DA3B078B83684FC4B2F6DAC461171D71FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.CommandLineConfigurationExtensions.AddCommandLine(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.String[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.CommandLine/src/CommandLineConfigurationExtensions.cs#L68C13-L68C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.CommandLine/src/CommandLineConfigurationExtensions.cs#L68C13-L68C84" }, { "DocsId": "M:Microsoft.Extensions.Configuration.CommandLineConfigurationExtensions.AddCommandLine(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.String[],System.Collections.Generic.IDictionary{System.String,System.String})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.CommandLine/src/CommandLineConfigurationExtensions.cs#L157C13-L158C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.CommandLine/src/CommandLineConfigurationExtensions.cs#L157C13-L158C41" }, { "DocsId": "M:Microsoft.Extensions.Configuration.CommandLineConfigurationExtensions.AddCommandLine(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.Action{Microsoft.Extensions.Configuration.CommandLine.CommandLineConfigurationSource})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.CommandLine/src/CommandLineConfigurationExtensions.cs#L168C16-L168C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.CommandLine/src/CommandLineConfigurationExtensions.cs#L168C16-L168C44" } ], "DocsId": "T:Microsoft.Extensions.Configuration.CommandLineConfigurationExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.CommandLine/src/CommandLineConfigurationExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.CommandLine/src/CommandLineConfigurationExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.CommandLine.CommandLineConfigurationProvider.#ctor(System.Collections.Generic.IEnumerable{System.String},System.Collections.Generic.IDictionary{System.String,System.String})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.CommandLine/src/CommandLineConfigurationProvider.cs#L21C9-L31C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.CommandLine/src/CommandLineConfigurationProvider.cs#L21C9-L31C10" }, { "DocsId": "M:Microsoft.Extensions.Configuration.CommandLine.CommandLineConfigurationProvider.Load", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.CommandLine/src/CommandLineConfigurationProvider.cs#L43C13-L133C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.CommandLine/src/CommandLineConfigurationProvider.cs#L43C13-L133C10" }, { "DocsId": "P:Microsoft.Extensions.Configuration.CommandLine.CommandLineConfigurationProvider.Args", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.CommandLine/src/CommandLineConfigurationProvider.cs#L36C46-L36C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.CommandLine/src/CommandLineConfigurationProvider.cs#L36C46-L36C50" } ], "DocsId": "T:Microsoft.Extensions.Configuration.CommandLine.CommandLineConfigurationProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.CommandLine/src/CommandLineConfigurationProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.CommandLine/src/CommandLineConfigurationProvider.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.CommandLine.CommandLineConfigurationSource.Build(Microsoft.Extensions.Configuration.IConfigurationBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.CommandLine/src/CommandLineConfigurationSource.cs#L31C13-L31C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.CommandLine/src/CommandLineConfigurationSource.cs#L31C13-L31C79" }, { "DocsId": "M:Microsoft.Extensions.Configuration.CommandLine.CommandLineConfigurationSource.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.CommandLine/src/CommandLineConfigurationSource.cs#L22C57-L22C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.CommandLine/src/CommandLineConfigurationSource.cs#L22C57-L22C78" }, { "DocsId": "P:Microsoft.Extensions.Configuration.CommandLine.CommandLineConfigurationSource.SwitchMappings", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.CommandLine/src/CommandLineConfigurationSource.cs#L17C62-L17C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.CommandLine/src/CommandLineConfigurationSource.cs#L17C62-L17C66" }, { "DocsId": "P:Microsoft.Extensions.Configuration.CommandLine.CommandLineConfigurationSource.Args", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.CommandLine/src/CommandLineConfigurationSource.cs#L22C43-L22C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.CommandLine/src/CommandLineConfigurationSource.cs#L22C43-L22C47" } ], "DocsId": "T:Microsoft.Extensions.Configuration.CommandLine.CommandLineConfigurationSource", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.CommandLine/src/CommandLineConfigurationSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.CommandLine/src/CommandLineConfigurationSource.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Configuration.EnvironmentVariables.json b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Configuration.EnvironmentVariables.json index 8935724ad46..e6029db3988 100644 --- a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Configuration.EnvironmentVariables.json +++ b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Configuration.EnvironmentVariables.json @@ -1,65 +1,64 @@ { "Assembly": "Microsoft.Extensions.Configuration.EnvironmentVariables", - "GUID": "60EFE417B9684008A99F0B1F8489F446FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "4C31A986DF69444697FC52D105F6CBD2FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.EnvironmentVariablesExtensions.AddEnvironmentVariables(Microsoft.Extensions.Configuration.IConfigurationBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.EnvironmentVariables/src/EnvironmentVariablesExtensions.cs#L21C13-L22C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.EnvironmentVariables/src/EnvironmentVariablesExtensions.cs#L21C13-L22C41" }, { "DocsId": "M:Microsoft.Extensions.Configuration.EnvironmentVariablesExtensions.AddEnvironmentVariables(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.EnvironmentVariables/src/EnvironmentVariablesExtensions.cs#L36C13-L37C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.EnvironmentVariables/src/EnvironmentVariablesExtensions.cs#L36C13-L37C41" }, { "DocsId": "M:Microsoft.Extensions.Configuration.EnvironmentVariablesExtensions.AddEnvironmentVariables(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.Action{Microsoft.Extensions.Configuration.EnvironmentVariables.EnvironmentVariablesConfigurationSource})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.EnvironmentVariables/src/EnvironmentVariablesExtensions.cs#L47C16-L47C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.EnvironmentVariables/src/EnvironmentVariablesExtensions.cs#L47C16-L47C44" } ], "DocsId": "T:Microsoft.Extensions.Configuration.EnvironmentVariablesExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.EnvironmentVariables/src/EnvironmentVariablesExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.EnvironmentVariables/src/EnvironmentVariablesExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.EnvironmentVariables.EnvironmentVariablesConfigurationProvider.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.EnvironmentVariables/src/EnvironmentVariablesConfigurationProvider.cs#L26C9-L30C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.EnvironmentVariables/src/EnvironmentVariablesConfigurationProvider.cs#L26C9-L30C10" }, { "DocsId": "M:Microsoft.Extensions.Configuration.EnvironmentVariables.EnvironmentVariablesConfigurationProvider.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.EnvironmentVariables/src/EnvironmentVariablesConfigurationProvider.cs#L36C9-L40C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.EnvironmentVariables/src/EnvironmentVariablesConfigurationProvider.cs#L36C9-L40C10" }, { "DocsId": "M:Microsoft.Extensions.Configuration.EnvironmentVariables.EnvironmentVariablesConfigurationProvider.Load", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.EnvironmentVariables/src/EnvironmentVariablesConfigurationProvider.cs#L46C13-L46C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.EnvironmentVariables/src/EnvironmentVariablesConfigurationProvider.cs#L46C13-L46C56" }, { "DocsId": "M:Microsoft.Extensions.Configuration.EnvironmentVariables.EnvironmentVariablesConfigurationProvider.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.EnvironmentVariables/src/EnvironmentVariablesConfigurationProvider.cs#L54C13-L59C22" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.EnvironmentVariables/src/EnvironmentVariablesConfigurationProvider.cs#L54C13-L59C22" } ], "DocsId": "T:Microsoft.Extensions.Configuration.EnvironmentVariables.EnvironmentVariablesConfigurationProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.EnvironmentVariables/src/EnvironmentVariablesConfigurationProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.EnvironmentVariables/src/EnvironmentVariablesConfigurationProvider.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.EnvironmentVariables.EnvironmentVariablesConfigurationSource.Build(Microsoft.Extensions.Configuration.IConfigurationBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.EnvironmentVariables/src/EnvironmentVariablesConfigurationSource.cs#L23C13-L23C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.EnvironmentVariables/src/EnvironmentVariablesConfigurationSource.cs#L23C13-L23C74" }, { "DocsId": "M:Microsoft.Extensions.Configuration.EnvironmentVariables.EnvironmentVariablesConfigurationSource.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.EnvironmentVariables/src/EnvironmentVariablesConfigurationSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.EnvironmentVariables/src/EnvironmentVariablesConfigurationSource.cs" }, { "DocsId": "P:Microsoft.Extensions.Configuration.EnvironmentVariables.EnvironmentVariablesConfigurationSource.Prefix", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.EnvironmentVariables/src/EnvironmentVariablesConfigurationSource.cs#L14C33-L14C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.EnvironmentVariables/src/EnvironmentVariablesConfigurationSource.cs#L14C33-L14C37" } ], "DocsId": "T:Microsoft.Extensions.Configuration.EnvironmentVariables.EnvironmentVariablesConfigurationSource", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.EnvironmentVariables/src/EnvironmentVariablesConfigurationSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.EnvironmentVariables/src/EnvironmentVariablesConfigurationSource.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Configuration.FileExtensions.json b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Configuration.FileExtensions.json index f770fcc4aa7..c006bd5d868 100644 --- a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Configuration.FileExtensions.json +++ b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Configuration.FileExtensions.json @@ -1,135 +1,134 @@ { "Assembly": "Microsoft.Extensions.Configuration.FileExtensions", - "GUID": "D65C7BAF9EEA4674BE93905565F3E9FEFFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "7793ED75A5CC4E58A5D611334D3A9188FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.FileConfigurationExtensions.SetFileProvider(Microsoft.Extensions.Configuration.IConfigurationBuilder,Microsoft.Extensions.FileProviders.IFileProvider)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationExtensions.cs#L25C13-L29C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationExtensions.cs#L25C13-L29C28" }, { "DocsId": "M:Microsoft.Extensions.Configuration.FileConfigurationExtensions.GetFileProvider(Microsoft.Extensions.Configuration.IConfigurationBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationExtensions.cs#L42C13-L44C126" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationExtensions.cs#L42C13-L44C126" }, { "DocsId": "M:Microsoft.Extensions.Configuration.FileConfigurationExtensions.SetBasePath(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationExtensions.cs#L55C13-L58C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationExtensions.cs#L55C13-L58C80" }, { "DocsId": "M:Microsoft.Extensions.Configuration.FileConfigurationExtensions.SetFileLoadExceptionHandler(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.Action{Microsoft.Extensions.Configuration.FileLoadExceptionContext})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationExtensions.cs#L69C13-L72C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationExtensions.cs#L69C13-L72C28" }, { "DocsId": "M:Microsoft.Extensions.Configuration.FileConfigurationExtensions.GetFileLoadExceptionHandler(Microsoft.Extensions.Configuration.IConfigurationBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationExtensions.cs#L82C13-L88C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationExtensions.cs#L82C13-L88C25" } ], "DocsId": "T:Microsoft.Extensions.Configuration.FileConfigurationExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.FileConfigurationProvider.#ctor(Microsoft.Extensions.Configuration.FileConfigurationSource)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationProvider.cs#L26C9-L42C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationProvider.cs#L26C9-L42C10" }, { "DocsId": "M:Microsoft.Extensions.Configuration.FileConfigurationProvider.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationProvider.cs#L54C16-L54C103" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationProvider.cs#L54C16-L54C103" }, { "DocsId": "M:Microsoft.Extensions.Configuration.FileConfigurationProvider.Load", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationProvider.cs#L127C13-L128C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationProvider.cs#L127C13-L128C10" }, { "DocsId": "M:Microsoft.Extensions.Configuration.FileConfigurationProvider.Load(System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationProvider.cs" }, { "DocsId": "M:Microsoft.Extensions.Configuration.FileConfigurationProvider.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationProvider.cs#L156C34-L156C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationProvider.cs#L156C34-L156C47" }, { "DocsId": "M:Microsoft.Extensions.Configuration.FileConfigurationProvider.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationProvider.cs#L164C13-L170C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationProvider.cs#L164C13-L170C10" }, { "DocsId": "P:Microsoft.Extensions.Configuration.FileConfigurationProvider.Source", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationProvider.cs#L47C49-L47C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationProvider.cs#L47C49-L47C53" } ], "DocsId": "T:Microsoft.Extensions.Configuration.FileConfigurationProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationProvider.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.FileConfigurationSource.Build(Microsoft.Extensions.Configuration.IConfigurationBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationSource.cs" }, { "DocsId": "M:Microsoft.Extensions.Configuration.FileConfigurationSource.EnsureDefaults(Microsoft.Extensions.Configuration.IConfigurationBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationSource.cs#L66C13-L73C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationSource.cs#L66C13-L73C10" }, { "DocsId": "M:Microsoft.Extensions.Configuration.FileConfigurationSource.ResolveFileProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationSource.cs#L81C13-L99C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationSource.cs#L81C13-L99C10" }, { "DocsId": "M:Microsoft.Extensions.Configuration.FileConfigurationSource.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationSource.cs#L46C48-L46C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationSource.cs#L46C48-L46C51" }, { "DocsId": "P:Microsoft.Extensions.Configuration.FileConfigurationSource.FileProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationSource.cs#L19C46-L19C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationSource.cs#L19C46-L19C50" }, { "DocsId": "P:Microsoft.Extensions.Configuration.FileConfigurationSource.Path", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationSource.cs#L30C31-L30C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationSource.cs#L30C31-L30C35" }, { "DocsId": "P:Microsoft.Extensions.Configuration.FileConfigurationSource.Optional", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationSource.cs#L35C32-L35C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationSource.cs#L35C32-L35C36" }, { "DocsId": "P:Microsoft.Extensions.Configuration.FileConfigurationSource.ReloadOnChange", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationSource.cs#L40C38-L40C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationSource.cs#L40C38-L40C42" }, { "DocsId": "P:Microsoft.Extensions.Configuration.FileConfigurationSource.ReloadDelay", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationSource.cs#L46C34-L46C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationSource.cs#L46C34-L46C38" }, { "DocsId": "P:Microsoft.Extensions.Configuration.FileConfigurationSource.OnLoadException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationSource.cs#L51C68-L51C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationSource.cs#L51C68-L51C72" } ], "DocsId": "T:Microsoft.Extensions.Configuration.FileConfigurationSource", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileConfigurationSource.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.FileLoadExceptionContext.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileLoadExceptionContext.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileLoadExceptionContext.cs" }, { "DocsId": "P:Microsoft.Extensions.Configuration.FileLoadExceptionContext.Provider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileLoadExceptionContext.cs#L16C53-L16C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileLoadExceptionContext.cs#L16C53-L16C57" }, { "DocsId": "P:Microsoft.Extensions.Configuration.FileLoadExceptionContext.Exception", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileLoadExceptionContext.cs#L21C38-L21C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileLoadExceptionContext.cs#L21C38-L21C42" }, { "DocsId": "P:Microsoft.Extensions.Configuration.FileLoadExceptionContext.Ignore", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileLoadExceptionContext.cs#L26C30-L26C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileLoadExceptionContext.cs#L26C30-L26C34" } ], "DocsId": "T:Microsoft.Extensions.Configuration.FileLoadExceptionContext", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileLoadExceptionContext.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.FileExtensions/src/FileLoadExceptionContext.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Configuration.Ini.json b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Configuration.Ini.json index 9b6709f150b..d3cdb9918f4 100644 --- a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Configuration.Ini.json +++ b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Configuration.Ini.json @@ -1,97 +1,96 @@ { "Assembly": "Microsoft.Extensions.Configuration.Ini", - "GUID": "D423DA0CEB16464A815BDD952C4852E2FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "40A1A4D894594F09A33C116EAE8993DFFFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.IniConfigurationExtensions.AddIniFile(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Ini/src/IniConfigurationExtensions.cs#L25C13-L25C108" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Ini/src/IniConfigurationExtensions.cs#L25C13-L25C108" }, { "DocsId": "M:Microsoft.Extensions.Configuration.IniConfigurationExtensions.AddIniFile(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Ini/src/IniConfigurationExtensions.cs#L38C13-L38C111" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Ini/src/IniConfigurationExtensions.cs#L38C13-L38C111" }, { "DocsId": "M:Microsoft.Extensions.Configuration.IniConfigurationExtensions.AddIniFile(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.String,System.Boolean,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Ini/src/IniConfigurationExtensions.cs#L52C13-L52C120" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Ini/src/IniConfigurationExtensions.cs#L52C13-L52C120" }, { "DocsId": "M:Microsoft.Extensions.Configuration.IniConfigurationExtensions.AddIniFile(Microsoft.Extensions.Configuration.IConfigurationBuilder,Microsoft.Extensions.FileProviders.IFileProvider,System.String,System.Boolean,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Ini/src/IniConfigurationExtensions.cs#L67C13-L81C16" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Ini/src/IniConfigurationExtensions.cs#L16707566C0-L81C16" }, { "DocsId": "M:Microsoft.Extensions.Configuration.IniConfigurationExtensions.AddIniFile(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.Action{Microsoft.Extensions.Configuration.Ini.IniConfigurationSource})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Ini/src/IniConfigurationExtensions.cs#L91C16-L91C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Ini/src/IniConfigurationExtensions.cs#L91C16-L91C44" }, { "DocsId": "M:Microsoft.Extensions.Configuration.IniConfigurationExtensions.AddIniStream(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Ini/src/IniConfigurationExtensions.cs#L101C13-L103C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Ini/src/IniConfigurationExtensions.cs#L16707566C0-L103C86" } ], "DocsId": "T:Microsoft.Extensions.Configuration.IniConfigurationExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Ini/src/IniConfigurationExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Ini/src/IniConfigurationExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.Ini.IniConfigurationProvider.#ctor(Microsoft.Extensions.Configuration.Ini.IniConfigurationSource)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Ini/src/IniConfigurationProvider.cs#L26C74-L26C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Ini/src/IniConfigurationProvider.cs#L26C74-L26C90" }, { "DocsId": "M:Microsoft.Extensions.Configuration.Ini.IniConfigurationProvider.Load(System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Ini/src/IniConfigurationProvider.cs#L33C16-L33C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Ini/src/IniConfigurationProvider.cs#L33C16-L33C66" } ], "DocsId": "T:Microsoft.Extensions.Configuration.Ini.IniConfigurationProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Ini/src/IniConfigurationProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Ini/src/IniConfigurationProvider.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.Ini.IniConfigurationSource.Build(Microsoft.Extensions.Configuration.IConfigurationBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Ini/src/IniConfigurationSource.cs#L27C13-L28C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Ini/src/IniConfigurationSource.cs#L27C13-L28C55" }, { "DocsId": "M:Microsoft.Extensions.Configuration.Ini.IniConfigurationSource.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Ini/src/IniConfigurationSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Ini/src/IniConfigurationSource.cs" } ], "DocsId": "T:Microsoft.Extensions.Configuration.Ini.IniConfigurationSource", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Ini/src/IniConfigurationSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Ini/src/IniConfigurationSource.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.Ini.IniStreamConfigurationProvider.#ctor(Microsoft.Extensions.Configuration.Ini.IniStreamConfigurationSource)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Ini/src/IniStreamConfigurationProvider.cs#L19C86-L19C102" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Ini/src/IniStreamConfigurationProvider.cs#L19C86-L19C102" }, { "DocsId": "M:Microsoft.Extensions.Configuration.Ini.IniStreamConfigurationProvider.Read(System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Ini/src/IniStreamConfigurationProvider.cs#L28C13-L84C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Ini/src/IniStreamConfigurationProvider.cs#L28C13-L84C25" }, { "DocsId": "M:Microsoft.Extensions.Configuration.Ini.IniStreamConfigurationProvider.Load(System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Ini/src/IniStreamConfigurationProvider.cs#L93C13-L94C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Ini/src/IniStreamConfigurationProvider.cs#L93C13-L94C10" } ], "DocsId": "T:Microsoft.Extensions.Configuration.Ini.IniStreamConfigurationProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Ini/src/IniStreamConfigurationProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Ini/src/IniStreamConfigurationProvider.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.Ini.IniStreamConfigurationSource.Build(Microsoft.Extensions.Configuration.IConfigurationBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Ini/src/IniStreamConfigurationSource.cs#L26C16-L26C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Ini/src/IniStreamConfigurationSource.cs#L26C16-L26C56" }, { "DocsId": "M:Microsoft.Extensions.Configuration.Ini.IniStreamConfigurationSource.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Ini/src/IniStreamConfigurationSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Ini/src/IniStreamConfigurationSource.cs" } ], "DocsId": "T:Microsoft.Extensions.Configuration.Ini.IniStreamConfigurationSource", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Ini/src/IniStreamConfigurationSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Ini/src/IniStreamConfigurationSource.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Configuration.Json.json b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Configuration.Json.json index abcb1792cd5..586d1f3a08e 100644 --- a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Configuration.Json.json +++ b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Configuration.Json.json @@ -1,93 +1,92 @@ { "Assembly": "Microsoft.Extensions.Configuration.Json", - "GUID": "7BF97F0F7DCD488D9788BCAB91DA541BFFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "9A8FA3ED47BE499DB83636AB4DCD4620FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.JsonConfigurationExtensions.AddJsonFile(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Json/src/JsonConfigurationExtensions.cs#L25C13-L25C109" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Json/src/JsonConfigurationExtensions.cs#L25C13-L25C109" }, { "DocsId": "M:Microsoft.Extensions.Configuration.JsonConfigurationExtensions.AddJsonFile(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Json/src/JsonConfigurationExtensions.cs#L38C13-L38C112" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Json/src/JsonConfigurationExtensions.cs#L38C13-L38C112" }, { "DocsId": "M:Microsoft.Extensions.Configuration.JsonConfigurationExtensions.AddJsonFile(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.String,System.Boolean,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Json/src/JsonConfigurationExtensions.cs#L52C13-L52C121" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Json/src/JsonConfigurationExtensions.cs#L52C13-L52C121" }, { "DocsId": "M:Microsoft.Extensions.Configuration.JsonConfigurationExtensions.AddJsonFile(Microsoft.Extensions.Configuration.IConfigurationBuilder,Microsoft.Extensions.FileProviders.IFileProvider,System.String,System.Boolean,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Json/src/JsonConfigurationExtensions.cs#L67C13-L81C16" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Json/src/JsonConfigurationExtensions.cs#L16707566C0-L81C16" }, { "DocsId": "M:Microsoft.Extensions.Configuration.JsonConfigurationExtensions.AddJsonFile(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.Action{Microsoft.Extensions.Configuration.Json.JsonConfigurationSource})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Json/src/JsonConfigurationExtensions.cs#L91C16-L91C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Json/src/JsonConfigurationExtensions.cs#L91C16-L91C44" }, { "DocsId": "M:Microsoft.Extensions.Configuration.JsonConfigurationExtensions.AddJsonStream(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Json/src/JsonConfigurationExtensions.cs#L101C13-L103C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Json/src/JsonConfigurationExtensions.cs#L16707566C0-L103C87" } ], "DocsId": "T:Microsoft.Extensions.Configuration.JsonConfigurationExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Json/src/JsonConfigurationExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Json/src/JsonConfigurationExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.Json.JsonConfigurationProvider.#ctor(Microsoft.Extensions.Configuration.Json.JsonConfigurationSource)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Json/src/JsonConfigurationProvider.cs#L20C76-L20C92" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Json/src/JsonConfigurationProvider.cs#L20C76-L20C92" }, { "DocsId": "M:Microsoft.Extensions.Configuration.Json.JsonConfigurationProvider.Load(System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Json/src/JsonConfigurationProvider.cs#L30C17-L36C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Json/src/JsonConfigurationProvider.cs#L30C17-L36C10" } ], "DocsId": "T:Microsoft.Extensions.Configuration.Json.JsonConfigurationProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Json/src/JsonConfigurationProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Json/src/JsonConfigurationProvider.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.Json.JsonConfigurationSource.Build(Microsoft.Extensions.Configuration.IConfigurationBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Json/src/JsonConfigurationSource.cs#L20C13-L21C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Json/src/JsonConfigurationSource.cs#L20C13-L21C56" }, { "DocsId": "M:Microsoft.Extensions.Configuration.Json.JsonConfigurationSource.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Json/src/JsonConfigurationSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Json/src/JsonConfigurationSource.cs" } ], "DocsId": "T:Microsoft.Extensions.Configuration.Json.JsonConfigurationSource", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Json/src/JsonConfigurationSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Json/src/JsonConfigurationSource.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.Json.JsonStreamConfigurationProvider.#ctor(Microsoft.Extensions.Configuration.Json.JsonStreamConfigurationSource)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Json/src/JsonStreamConfigurationProvider.cs#L17C88-L17C104" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Json/src/JsonStreamConfigurationProvider.cs#L17C88-L17C104" }, { "DocsId": "M:Microsoft.Extensions.Configuration.Json.JsonStreamConfigurationProvider.Load(System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Json/src/JsonStreamConfigurationProvider.cs#L25C13-L26C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Json/src/JsonStreamConfigurationProvider.cs#L25C13-L26C10" } ], "DocsId": "T:Microsoft.Extensions.Configuration.Json.JsonStreamConfigurationProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Json/src/JsonStreamConfigurationProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Json/src/JsonStreamConfigurationProvider.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.Json.JsonStreamConfigurationSource.Build(Microsoft.Extensions.Configuration.IConfigurationBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Json/src/JsonStreamConfigurationSource.cs#L17C16-L17C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Json/src/JsonStreamConfigurationSource.cs#L17C16-L17C57" }, { "DocsId": "M:Microsoft.Extensions.Configuration.Json.JsonStreamConfigurationSource.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Json/src/JsonStreamConfigurationSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Json/src/JsonStreamConfigurationSource.cs" } ], "DocsId": "T:Microsoft.Extensions.Configuration.Json.JsonStreamConfigurationSource", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Json/src/JsonStreamConfigurationSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Json/src/JsonStreamConfigurationSource.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Configuration.KeyPerFile.json b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Configuration.KeyPerFile.json index 71df99a6e23..048d144d396 100644 --- a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Configuration.KeyPerFile.json +++ b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Configuration.KeyPerFile.json @@ -1,93 +1,92 @@ { "Assembly": "Microsoft.Extensions.Configuration.KeyPerFile", - "GUID": "E9F0E989224B41A4B443D3C2DA2AF3B7FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "B3EED7387EAA49F791A18409403A5D0BFFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.KeyPerFileConfigurationBuilderExtensions.AddKeyPerFile(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.String)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Configuration.KeyPerFile/src/KeyPerFileConfigurationBuilderExtensions.cs#L24C12-L24C88" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Configuration.KeyPerFile/src/KeyPerFileConfigurationBuilderExtensions.cs#L24C12-L24C88" }, { "DocsId": "M:Microsoft.Extensions.Configuration.KeyPerFileConfigurationBuilderExtensions.AddKeyPerFile(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Configuration.KeyPerFile/src/KeyPerFileConfigurationBuilderExtensions.cs#L35C12-L35C81" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Configuration.KeyPerFile/src/KeyPerFileConfigurationBuilderExtensions.cs#L35C12-L35C81" }, { "DocsId": "M:Microsoft.Extensions.Configuration.KeyPerFileConfigurationBuilderExtensions.AddKeyPerFile(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.String,System.Boolean,System.Boolean)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Configuration.KeyPerFile/src/KeyPerFileConfigurationBuilderExtensions.cs#L47C12-L56C11" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Configuration.KeyPerFile/src/KeyPerFileConfigurationBuilderExtensions.cs#L16707566C0-L56C11" }, { "DocsId": "M:Microsoft.Extensions.Configuration.KeyPerFileConfigurationBuilderExtensions.AddKeyPerFile(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.Action{Microsoft.Extensions.Configuration.KeyPerFile.KeyPerFileConfigurationSource})", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Configuration.KeyPerFile/src/KeyPerFileConfigurationBuilderExtensions.cs#L66C12-L66C40" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Configuration.KeyPerFile/src/KeyPerFileConfigurationBuilderExtensions.cs#L66C12-L66C40" } ], "DocsId": "T:Microsoft.Extensions.Configuration.KeyPerFileConfigurationBuilderExtensions", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Configuration.KeyPerFile/src/KeyPerFileConfigurationBuilderExtensions.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Configuration.KeyPerFile/src/KeyPerFileConfigurationBuilderExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.KeyPerFile.KeyPerFileConfigurationProvider.#ctor(Microsoft.Extensions.Configuration.KeyPerFile.KeyPerFileConfigurationSource)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Configuration.KeyPerFile/src/KeyPerFileConfigurationProvider.cs#L25C5-L40C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Configuration.KeyPerFile/src/KeyPerFileConfigurationProvider.cs#L25C5-L40C6" }, { "DocsId": "M:Microsoft.Extensions.Configuration.KeyPerFile.KeyPerFileConfigurationProvider.Load", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Configuration.KeyPerFile/src/KeyPerFileConfigurationProvider.cs#L55C9-L56C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Configuration.KeyPerFile/src/KeyPerFileConfigurationProvider.cs#L55C9-L56C6" }, { "DocsId": "M:Microsoft.Extensions.Configuration.KeyPerFile.KeyPerFileConfigurationProvider.ToString", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Configuration.KeyPerFile/src/KeyPerFileConfigurationProvider.cs#L117C12-L117C115" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Configuration.KeyPerFile/src/KeyPerFileConfigurationProvider.cs#L117C12-L117C115" }, { "DocsId": "M:Microsoft.Extensions.Configuration.KeyPerFile.KeyPerFileConfigurationProvider.Dispose", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Configuration.KeyPerFile/src/KeyPerFileConfigurationProvider.cs#L122C9-L123C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Configuration.KeyPerFile/src/KeyPerFileConfigurationProvider.cs#L122C9-L123C6" } ], "DocsId": "T:Microsoft.Extensions.Configuration.KeyPerFile.KeyPerFileConfigurationProvider", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Configuration.KeyPerFile/src/KeyPerFileConfigurationProvider.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Configuration.KeyPerFile/src/KeyPerFileConfigurationProvider.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.KeyPerFile.KeyPerFileConfigurationSource.#ctor", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Configuration.KeyPerFile/src/KeyPerFileConfigurationSource.cs#L29C48-L18C111" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Configuration.KeyPerFile/src/KeyPerFileConfigurationSource.cs#L29C48-L18C111" }, { "DocsId": "M:Microsoft.Extensions.Configuration.KeyPerFile.KeyPerFileConfigurationSource.Build(Microsoft.Extensions.Configuration.IConfigurationBuilder)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Configuration.KeyPerFile/src/KeyPerFileConfigurationSource.cs#L65C12-L65C53" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Configuration.KeyPerFile/src/KeyPerFileConfigurationSource.cs#L65C12-L65C53" }, { "DocsId": "P:Microsoft.Extensions.Configuration.KeyPerFile.KeyPerFileConfigurationSource.FileProvider", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Configuration.KeyPerFile/src/KeyPerFileConfigurationSource.cs#L23C42-L23C46" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Configuration.KeyPerFile/src/KeyPerFileConfigurationSource.cs#L23C42-L23C46" }, { "DocsId": "P:Microsoft.Extensions.Configuration.KeyPerFile.KeyPerFileConfigurationSource.IgnorePrefix", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Configuration.KeyPerFile/src/KeyPerFileConfigurationSource.cs#L29C34-L29C38" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Configuration.KeyPerFile/src/KeyPerFileConfigurationSource.cs#L29C34-L29C38" }, { "DocsId": "P:Microsoft.Extensions.Configuration.KeyPerFile.KeyPerFileConfigurationSource.IgnoreCondition", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Configuration.KeyPerFile/src/KeyPerFileConfigurationSource.cs#L35C49-L35C53" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Configuration.KeyPerFile/src/KeyPerFileConfigurationSource.cs#L35C49-L35C53" }, { "DocsId": "P:Microsoft.Extensions.Configuration.KeyPerFile.KeyPerFileConfigurationSource.Optional", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Configuration.KeyPerFile/src/KeyPerFileConfigurationSource.cs#L40C28-L40C32" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Configuration.KeyPerFile/src/KeyPerFileConfigurationSource.cs#L40C28-L40C32" }, { "DocsId": "P:Microsoft.Extensions.Configuration.KeyPerFile.KeyPerFileConfigurationSource.ReloadOnChange", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Configuration.KeyPerFile/src/KeyPerFileConfigurationSource.cs#L45C34-L45C38" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Configuration.KeyPerFile/src/KeyPerFileConfigurationSource.cs#L45C34-L45C38" }, { "DocsId": "P:Microsoft.Extensions.Configuration.KeyPerFile.KeyPerFileConfigurationSource.ReloadDelay", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Configuration.KeyPerFile/src/KeyPerFileConfigurationSource.cs#L51C30-L51C34" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Configuration.KeyPerFile/src/KeyPerFileConfigurationSource.cs#L51C30-L51C34" }, { "DocsId": "P:Microsoft.Extensions.Configuration.KeyPerFile.KeyPerFileConfigurationSource.SectionDelimiter", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Configuration.KeyPerFile/src/KeyPerFileConfigurationSource.cs#L57C38-L57C42" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Configuration.KeyPerFile/src/KeyPerFileConfigurationSource.cs#L57C38-L57C42" } ], "DocsId": "T:Microsoft.Extensions.Configuration.KeyPerFile.KeyPerFileConfigurationSource", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Configuration.KeyPerFile/src/KeyPerFileConfigurationSource.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Configuration.KeyPerFile/src/KeyPerFileConfigurationSource.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Configuration.UserSecrets.json b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Configuration.UserSecrets.json index b009978ce7f..397f8af50b8 100644 --- a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Configuration.UserSecrets.json +++ b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Configuration.UserSecrets.json @@ -1,73 +1,72 @@ { "Assembly": "Microsoft.Extensions.Configuration.UserSecrets", - "GUID": "575764B1055A413A81ABAD465981530BFFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "3BDCA9F8C588403CA5F873A1096086A8FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.UserSecretsConfigurationExtensions.AddUserSecrets``1(Microsoft.Extensions.Configuration.IConfigurationBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.UserSecrets/src/UserSecretsConfigurationExtensions.cs#L32C16-L32C103" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.UserSecrets/src/UserSecretsConfigurationExtensions.cs#L32C16-L32C103" }, { "DocsId": "M:Microsoft.Extensions.Configuration.UserSecretsConfigurationExtensions.AddUserSecrets``1(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.UserSecrets/src/UserSecretsConfigurationExtensions.cs#L50C16-L50C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.UserSecrets/src/UserSecretsConfigurationExtensions.cs#L50C16-L50C97" }, { "DocsId": "M:Microsoft.Extensions.Configuration.UserSecretsConfigurationExtensions.AddUserSecrets``1(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.Boolean,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.UserSecrets/src/UserSecretsConfigurationExtensions.cs#L69C16-L69C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.UserSecrets/src/UserSecretsConfigurationExtensions.cs#L69C16-L69C90" }, { "DocsId": "M:Microsoft.Extensions.Configuration.UserSecretsConfigurationExtensions.AddUserSecrets(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.Reflection.Assembly)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.UserSecrets/src/UserSecretsConfigurationExtensions.cs#L85C16-L85C93" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.UserSecrets/src/UserSecretsConfigurationExtensions.cs#L85C16-L85C93" }, { "DocsId": "M:Microsoft.Extensions.Configuration.UserSecretsConfigurationExtensions.AddUserSecrets(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.Reflection.Assembly,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.UserSecrets/src/UserSecretsConfigurationExtensions.cs#L102C16-L102C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.UserSecrets/src/UserSecretsConfigurationExtensions.cs#L102C16-L102C87" }, { "DocsId": "M:Microsoft.Extensions.Configuration.UserSecretsConfigurationExtensions.AddUserSecrets(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.Reflection.Assembly,System.Boolean,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.UserSecrets/src/UserSecretsConfigurationExtensions.cs#L121C13-L135C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.UserSecrets/src/UserSecretsConfigurationExtensions.cs#L121C13-L135C34" }, { "DocsId": "M:Microsoft.Extensions.Configuration.UserSecretsConfigurationExtensions.AddUserSecrets(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.UserSecrets/src/UserSecretsConfigurationExtensions.cs#L150C16-L150C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.UserSecrets/src/UserSecretsConfigurationExtensions.cs#L150C16-L150C82" }, { "DocsId": "M:Microsoft.Extensions.Configuration.UserSecretsConfigurationExtensions.AddUserSecrets(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.UserSecrets/src/UserSecretsConfigurationExtensions.cs#L165C16-L165C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.UserSecrets/src/UserSecretsConfigurationExtensions.cs#L165C16-L165C90" } ], "DocsId": "T:Microsoft.Extensions.Configuration.UserSecretsConfigurationExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.UserSecrets/src/UserSecretsConfigurationExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.UserSecrets/src/UserSecretsConfigurationExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.UserSecrets.PathHelper.GetSecretsPathFromSecretsId(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.UserSecrets/src/PathHelper.cs#L28C13-L28C92" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.UserSecrets/src/PathHelper.cs#L28C13-L28C92" }, { "DocsId": "M:Microsoft.Extensions.Configuration.UserSecrets.PathHelper.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.UserSecrets/src/PathHelper.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.UserSecrets/src/PathHelper.cs" } ], "DocsId": "T:Microsoft.Extensions.Configuration.UserSecrets.PathHelper", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.UserSecrets/src/PathHelper.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.UserSecrets/src/PathHelper.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.UserSecrets.UserSecretsIdAttribute.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.UserSecrets/src/UserSecretsIdAttribute.cs#L25C9-L33C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.UserSecrets/src/UserSecretsIdAttribute.cs#L25C9-L33C10" }, { "DocsId": "P:Microsoft.Extensions.Configuration.UserSecrets.UserSecretsIdAttribute.UserSecretsId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.UserSecrets/src/UserSecretsIdAttribute.cs#L38C39-L38C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.UserSecrets/src/UserSecretsIdAttribute.cs#L38C39-L38C43" } ], "DocsId": "T:Microsoft.Extensions.Configuration.UserSecrets.UserSecretsIdAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.UserSecrets/src/UserSecretsIdAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.UserSecrets/src/UserSecretsIdAttribute.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Configuration.Xml.json b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Configuration.Xml.json index c5e29997d0b..c2fe097229b 100644 --- a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Configuration.Xml.json +++ b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Configuration.Xml.json @@ -1,119 +1,118 @@ { "Assembly": "Microsoft.Extensions.Configuration.Xml", - "GUID": "4DB94489266C49688CBE49E1EF020209FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "135685ED2E9E43A092859E648B182668FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.XmlConfigurationExtensions.AddXmlFile(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlConfigurationExtensions.cs#L28C13-L28C108" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlConfigurationExtensions.cs#L28C13-L28C108" }, { "DocsId": "M:Microsoft.Extensions.Configuration.XmlConfigurationExtensions.AddXmlFile(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlConfigurationExtensions.cs#L43C13-L43C111" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlConfigurationExtensions.cs#L43C13-L43C111" }, { "DocsId": "M:Microsoft.Extensions.Configuration.XmlConfigurationExtensions.AddXmlFile(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.String,System.Boolean,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlConfigurationExtensions.cs#L59C13-L59C120" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlConfigurationExtensions.cs#L59C13-L59C120" }, { "DocsId": "M:Microsoft.Extensions.Configuration.XmlConfigurationExtensions.AddXmlFile(Microsoft.Extensions.Configuration.IConfigurationBuilder,Microsoft.Extensions.FileProviders.IFileProvider,System.String,System.Boolean,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlConfigurationExtensions.cs#L76C13-L90C16" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlConfigurationExtensions.cs#L16707566C0-L90C16" }, { "DocsId": "M:Microsoft.Extensions.Configuration.XmlConfigurationExtensions.AddXmlFile(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.Action{Microsoft.Extensions.Configuration.Xml.XmlConfigurationSource})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlConfigurationExtensions.cs#L102C16-L102C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlConfigurationExtensions.cs#L102C16-L102C44" }, { "DocsId": "M:Microsoft.Extensions.Configuration.XmlConfigurationExtensions.AddXmlStream(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlConfigurationExtensions.cs#L114C13-L116C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlConfigurationExtensions.cs#L16707566C0-L116C86" } ], "DocsId": "T:Microsoft.Extensions.Configuration.XmlConfigurationExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlConfigurationExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlConfigurationExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.Xml.XmlConfigurationProvider.#ctor(Microsoft.Extensions.Configuration.Xml.XmlConfigurationSource)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlConfigurationProvider.cs#L22C65-L20C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlConfigurationProvider.cs#L22C65-L20C90" }, { "DocsId": "M:Microsoft.Extensions.Configuration.Xml.XmlConfigurationProvider.Load(System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlConfigurationProvider.cs#L30C13-L31C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlConfigurationProvider.cs#L30C13-L31C10" } ], "DocsId": "T:Microsoft.Extensions.Configuration.Xml.XmlConfigurationProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlConfigurationProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlConfigurationProvider.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.Xml.XmlConfigurationSource.Build(Microsoft.Extensions.Configuration.IConfigurationBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlConfigurationSource.cs#L22C13-L23C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlConfigurationSource.cs#L22C13-L23C55" }, { "DocsId": "M:Microsoft.Extensions.Configuration.Xml.XmlConfigurationSource.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlConfigurationSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlConfigurationSource.cs" } ], "DocsId": "T:Microsoft.Extensions.Configuration.Xml.XmlConfigurationSource", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlConfigurationSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlConfigurationSource.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.Xml.XmlDocumentDecryptor.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlDocumentDecryptor.cs#L32C9-L35C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlDocumentDecryptor.cs#L32C9-L35C10" }, { "DocsId": "M:Microsoft.Extensions.Configuration.Xml.XmlDocumentDecryptor.CreateDecryptingXmlReader(System.IO.Stream,System.Xml.XmlReaderSettings)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlDocumentDecryptor.cs#L66C13-L91C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlDocumentDecryptor.cs#L66C13-L91C62" }, { "DocsId": "M:Microsoft.Extensions.Configuration.Xml.XmlDocumentDecryptor.DecryptDocumentAndCreateXmlReader(System.Xml.XmlDocument)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlDocumentDecryptor.cs#L106C13-L112C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlDocumentDecryptor.cs#L106C13-L112C62" }, { "DocsId": "F:Microsoft.Extensions.Configuration.Xml.XmlDocumentDecryptor.Instance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlDocumentDecryptor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlDocumentDecryptor.cs" } ], "DocsId": "T:Microsoft.Extensions.Configuration.Xml.XmlDocumentDecryptor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlDocumentDecryptor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlDocumentDecryptor.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.Xml.XmlStreamConfigurationProvider.#ctor(Microsoft.Extensions.Configuration.Xml.XmlStreamConfigurationSource)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlStreamConfigurationProvider.cs#L31C86-L31C102" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlStreamConfigurationProvider.cs#L31C86-L31C102" }, { "DocsId": "M:Microsoft.Extensions.Configuration.Xml.XmlStreamConfigurationProvider.Read(System.IO.Stream,Microsoft.Extensions.Configuration.Xml.XmlDocumentDecryptor)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlStreamConfigurationProvider.cs#L41C13-L180C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlStreamConfigurationProvider.cs#L41C13-L180C47" }, { "DocsId": "M:Microsoft.Extensions.Configuration.Xml.XmlStreamConfigurationProvider.Load(System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlStreamConfigurationProvider.cs#L189C13-L190C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlStreamConfigurationProvider.cs#L189C13-L190C10" } ], "DocsId": "T:Microsoft.Extensions.Configuration.Xml.XmlStreamConfigurationProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlStreamConfigurationProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlStreamConfigurationProvider.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.Xml.XmlStreamConfigurationSource.Build(Microsoft.Extensions.Configuration.IConfigurationBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlStreamConfigurationSource.cs#L21C16-L21C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlStreamConfigurationSource.cs#L21C16-L21C56" }, { "DocsId": "M:Microsoft.Extensions.Configuration.Xml.XmlStreamConfigurationSource.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlStreamConfigurationSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlStreamConfigurationSource.cs" } ], "DocsId": "T:Microsoft.Extensions.Configuration.Xml.XmlStreamConfigurationSource", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlStreamConfigurationSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlStreamConfigurationSource.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Configuration.json b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Configuration.json index 94b9064b4e1..fc26d8070e2 100644 --- a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Configuration.json +++ b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Configuration.json @@ -1,425 +1,424 @@ { "Assembly": "Microsoft.Extensions.Configuration", - "GUID": "6B87DD32E89F4C458C2AEA9DE69BC363FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "00AC6D4B6D434988B170C6780EAB03A0FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.ChainedBuilderExtensions.AddConfiguration(Microsoft.Extensions.Configuration.IConfigurationBuilder,Microsoft.Extensions.Configuration.IConfiguration)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ChainedBuilderExtensions.cs#L21C16-L21C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ChainedBuilderExtensions.cs#L21C16-L21C97" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ChainedBuilderExtensions.AddConfiguration(Microsoft.Extensions.Configuration.IConfigurationBuilder,Microsoft.Extensions.Configuration.IConfiguration,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ChainedBuilderExtensions.cs#L32C13-L40C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ChainedBuilderExtensions.cs#L32C13-L40C41" } ], "DocsId": "T:Microsoft.Extensions.Configuration.ChainedBuilderExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ChainedBuilderExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ChainedBuilderExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.ChainedConfigurationProvider.#ctor(Microsoft.Extensions.Configuration.ChainedConfigurationSource)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ChainedConfigurationProvider.cs#L22C9-L28C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ChainedConfigurationProvider.cs#L22C9-L28C10" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ChainedConfigurationProvider.TryGet(System.String,System.String@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ChainedConfigurationProvider.cs#L43C13-L44C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ChainedConfigurationProvider.cs#L43C13-L44C49" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ChainedConfigurationProvider.Set(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ChainedConfigurationProvider.cs#L52C55-L52C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ChainedConfigurationProvider.cs#L52C55-L52C75" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ChainedConfigurationProvider.GetReloadToken", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ChainedConfigurationProvider.cs#L58C49-L58C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ChainedConfigurationProvider.cs#L58C49-L58C73" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ChainedConfigurationProvider.Load", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ChainedConfigurationProvider.cs#L63C30-L63C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ChainedConfigurationProvider.cs#L63C30-L63C31" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ChainedConfigurationProvider.GetChildKeys(System.Collections.Generic.IEnumerable{System.String},System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ChainedConfigurationProvider.cs#L77C13-L85C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ChainedConfigurationProvider.cs#L77C13-L85C25" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ChainedConfigurationProvider.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ChainedConfigurationProvider.cs#L91C13-L95C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ChainedConfigurationProvider.cs#L91C13-L95C10" }, { "DocsId": "P:Microsoft.Extensions.Configuration.ChainedConfigurationProvider.Configuration", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ChainedConfigurationProvider.cs#L33C48-L33C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ChainedConfigurationProvider.cs#L33C48-L33C55" } ], "DocsId": "T:Microsoft.Extensions.Configuration.ChainedConfigurationProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ChainedConfigurationProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ChainedConfigurationProvider.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.ChainedConfigurationSource.Build(Microsoft.Extensions.Configuration.IConfigurationBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ChainedConfigurationSource.cs#L31C16-L31C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ChainedConfigurationSource.cs#L31C16-L31C54" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ChainedConfigurationSource.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ChainedConfigurationSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ChainedConfigurationSource.cs" }, { "DocsId": "P:Microsoft.Extensions.Configuration.ChainedConfigurationSource.Configuration", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ChainedConfigurationSource.cs#L17C48-L17C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ChainedConfigurationSource.cs#L17C48-L17C52" }, { "DocsId": "P:Microsoft.Extensions.Configuration.ChainedConfigurationSource.ShouldDisposeConfiguration", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ChainedConfigurationSource.cs#L23C50-L23C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ChainedConfigurationSource.cs#L23C50-L23C54" } ], "DocsId": "T:Microsoft.Extensions.Configuration.ChainedConfigurationSource", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ChainedConfigurationSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ChainedConfigurationSource.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationBuilder.Add(Microsoft.Extensions.Configuration.IConfigurationSource)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationBuilder.cs#L34C13-L37C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationBuilder.cs#L34C13-L37C25" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationBuilder.Build", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationBuilder.cs#L47C13-L53C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationBuilder.cs#L47C13-L53C53" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationBuilder.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationBuilder.cs#L14C9-L25C98" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationBuilder.cs#L14C9-L25C98" }, { "DocsId": "P:Microsoft.Extensions.Configuration.ConfigurationBuilder.Sources", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationBuilder.cs#L19C55-L19C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationBuilder.cs#L19C55-L19C63" }, { "DocsId": "P:Microsoft.Extensions.Configuration.ConfigurationBuilder.Properties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationBuilder.cs#L25C57-L25C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationBuilder.cs#L25C57-L25C61" } ], "DocsId": "T:Microsoft.Extensions.Configuration.ConfigurationBuilder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationBuilder.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationKeyComparer.Compare(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationKeyComparer.cs#L32C13-L59C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationKeyComparer.cs#L32C13-L59C65" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationKeyComparer.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationKeyComparer.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationKeyComparer.cs" }, { "DocsId": "P:Microsoft.Extensions.Configuration.ConfigurationKeyComparer.Instance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationKeyComparer.cs#L19C59-L19C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationKeyComparer.cs#L19C59-L19C63" } ], "DocsId": "T:Microsoft.Extensions.Configuration.ConfigurationKeyComparer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationKeyComparer.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationKeyComparer.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationManager.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationManager.cs#L33C9-L50C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationManager.cs#L33C9-L50C10" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationManager.GetSection(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationManager.cs#L68C64-L68C99" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationManager.cs#L68C64-L68C99" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationManager.GetChildren", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationManager.cs#L71C68-L71C104" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationManager.cs#L71C68-L71C104" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationManager.Microsoft#Extensions#Configuration#IConfigurationBuilder#get_Properties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationManager.cs#L73C73-L73C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationManager.cs#L73C73-L73C84" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationManager.Microsoft#Extensions#Configuration#IConfigurationRoot#get_Providers", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationManager.cs#L81C77-L81C122" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationManager.cs#L81C77-L81C122" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationManager.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationManager.cs#L86C13-L88C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationManager.cs#L86C13-L88C10" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationManager.Microsoft#Extensions#Configuration#IConfigurationBuilder#Add(Microsoft.Extensions.Configuration.IConfigurationSource)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationManager.cs#L92C13-L95C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationManager.cs#L92C13-L95C25" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationManager.Microsoft#Extensions#Configuration#IConfigurationBuilder#Build", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationManager.cs#L98C61-L98C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationManager.cs#L98C61-L98C65" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationManager.Microsoft#Extensions#Configuration#IConfiguration#GetReloadToken", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationManager.cs#L100C57-L100C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationManager.cs#L100C57-L100C69" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationManager.Microsoft#Extensions#Configuration#IConfigurationRoot#Reload", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationManager.cs#L104C20-L113C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationManager.cs#L104C20-L113C10" }, { "DocsId": "P:Microsoft.Extensions.Configuration.ConfigurationManager.Item(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationManager.cs#L57C17-L59C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationManager.cs#L57C17-L59C14" }, { "DocsId": "P:Microsoft.Extensions.Configuration.ConfigurationManager.Microsoft#Extensions#Configuration#IConfigurationBuilder#Properties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationManager.cs#L73C73-L73C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationManager.cs#L73C73-L73C84" }, { "DocsId": "P:Microsoft.Extensions.Configuration.ConfigurationManager.Sources", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationManager.cs#L76C55-L76C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationManager.cs#L76C55-L76C63" }, { "DocsId": "P:Microsoft.Extensions.Configuration.ConfigurationManager.Microsoft#Extensions#Configuration#IConfigurationRoot#Providers", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationManager.cs#L81C77-L81C122" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationManager.cs#L81C77-L81C122" } ], "DocsId": "T:Microsoft.Extensions.Configuration.ConfigurationManager", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationManager.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationManager.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationProvider.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationProvider.cs#L17C9-L25C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationProvider.cs#L17C9-L25C10" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationProvider.TryGet(System.String,System.String@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationProvider.cs#L39C16-L39C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationProvider.cs#L39C16-L39C48" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationProvider.Set(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationProvider.cs#L47C16-L47C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationProvider.cs#L47C16-L47C33" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationProvider.Load", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationProvider.cs#L53C11-L53C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationProvider.cs#L53C11-L53C12" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationProvider.GetChildKeys(System.Collections.Generic.IEnumerable{System.String},System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationProvider.cs#L65C13-L93C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationProvider.cs#L65C13-L93C28" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationProvider.GetReloadToken", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationProvider.cs#L109C13-L109C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationProvider.cs#L109C13-L109C33" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationProvider.OnReload", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationProvider.cs#L117C13-L119C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationProvider.cs#L117C13-L119C10" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationProvider.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationProvider.cs#L125C46-L125C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationProvider.cs#L125C46-L125C60" }, { "DocsId": "P:Microsoft.Extensions.Configuration.ConfigurationProvider.Data", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationProvider.cs#L30C55-L30C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationProvider.cs#L30C55-L30C59" } ], "DocsId": "T:Microsoft.Extensions.Configuration.ConfigurationProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationProvider.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationReloadToken.RegisterChangeCallback(System.Action{System.Object},System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationReloadToken.cs#L39C13-L44C23" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationReloadToken.cs#L39C13-L44C23" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationReloadToken.OnReload", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationReloadToken.cs#L50C35-L50C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationReloadToken.cs#L50C35-L50C48" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationReloadToken.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationReloadToken.cs#L16C9-L22C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationReloadToken.cs#L16C9-L22C71" }, { "DocsId": "P:Microsoft.Extensions.Configuration.ConfigurationReloadToken.ActiveChangeCallbacks", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationReloadToken.cs#L22C45-L22C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationReloadToken.cs#L22C45-L22C49" }, { "DocsId": "P:Microsoft.Extensions.Configuration.ConfigurationReloadToken.HasChanged", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationReloadToken.cs#L28C35-L28C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationReloadToken.cs#L28C35-L28C63" } ], "DocsId": "T:Microsoft.Extensions.Configuration.ConfigurationReloadToken", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationReloadToken.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationReloadToken.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationRoot.#ctor(System.Collections.Generic.IList{Microsoft.Extensions.Configuration.IConfigurationProvider})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationRoot.cs#L21C9-L38C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationRoot.cs#L21C9-L38C10" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationRoot.GetChildren", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationRoot.cs#L60C68-L60C104" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationRoot.cs#L60C68-L60C104" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationRoot.GetReloadToken", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationRoot.cs#L66C49-L66C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationRoot.cs#L66C49-L66C61" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationRoot.GetSection(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationRoot.cs#L78C16-L78C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationRoot.cs#L78C16-L78C51" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationRoot.Reload", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationRoot.cs#L85C57-L90C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationRoot.cs#L85C57-L90C10" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationRoot.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationRoot.cs#L102C50-L112C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationRoot.cs#L102C50-L112C10" }, { "DocsId": "P:Microsoft.Extensions.Configuration.ConfigurationRoot.Providers", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationRoot.cs#L43C65-L43C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationRoot.cs#L43C65-L43C75" }, { "DocsId": "P:Microsoft.Extensions.Configuration.ConfigurationRoot.Item(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationRoot.cs#L52C20-L52C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationRoot.cs#L52C20-L52C53" } ], "DocsId": "T:Microsoft.Extensions.Configuration.ConfigurationRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationRoot.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationRoot.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationSection.#ctor(Microsoft.Extensions.Configuration.IConfigurationRoot,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationSection.cs#L27C9-L34C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationSection.cs#L27C9-L34C10" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationSection.GetSection(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationSection.cs#L89C64-L89C125" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationSection.cs#L89C64-L89C125" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationSection.GetChildren", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationSection.cs#L95C68-L95C105" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationSection.cs#L95C68-L95C105" }, { "DocsId": "M:Microsoft.Extensions.Configuration.ConfigurationSection.GetReloadToken", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationSection.cs#L101C49-L101C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationSection.cs#L101C49-L101C71" }, { "DocsId": "P:Microsoft.Extensions.Configuration.ConfigurationSection.Path", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationSection.cs#L39C31-L39C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationSection.cs#L39C31-L39C36" }, { "DocsId": "P:Microsoft.Extensions.Configuration.ConfigurationSection.Key", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationSection.cs#L46C13-L46C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationSection.cs#L46C13-L46C60" }, { "DocsId": "P:Microsoft.Extensions.Configuration.ConfigurationSection.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationSection.cs#L55C17-L55C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationSection.cs#L55C17-L55C36" }, { "DocsId": "P:Microsoft.Extensions.Configuration.ConfigurationSection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationSection.cs#L72C17-L72C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationSection.cs#L72C17-L72C75" } ], "DocsId": "T:Microsoft.Extensions.Configuration.ConfigurationSection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationSection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/ConfigurationSection.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.MemoryConfigurationBuilderExtensions.AddInMemoryCollection(Microsoft.Extensions.Configuration.IConfigurationBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/MemoryConfigurationBuilderExtensions.cs#L22C13-L25C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/MemoryConfigurationBuilderExtensions.cs#L22C13-L25C41" }, { "DocsId": "M:Microsoft.Extensions.Configuration.MemoryConfigurationBuilderExtensions.AddInMemoryCollection(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{System.String,System.String}})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/MemoryConfigurationBuilderExtensions.cs#L38C13-L41C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/MemoryConfigurationBuilderExtensions.cs#L38C13-L41C41" } ], "DocsId": "T:Microsoft.Extensions.Configuration.MemoryConfigurationBuilderExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/MemoryConfigurationBuilderExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/MemoryConfigurationBuilderExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.StreamConfigurationProvider.#ctor(Microsoft.Extensions.Configuration.StreamConfigurationSource)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/StreamConfigurationProvider.cs#L25C9-L30C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/StreamConfigurationProvider.cs#L25C9-L30C10" }, { "DocsId": "M:Microsoft.Extensions.Configuration.StreamConfigurationProvider.Load(System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/StreamConfigurationProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/StreamConfigurationProvider.cs" }, { "DocsId": "M:Microsoft.Extensions.Configuration.StreamConfigurationProvider.Load", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/StreamConfigurationProvider.cs#L43C13-L55C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/StreamConfigurationProvider.cs#L43C13-L55C10" }, { "DocsId": "P:Microsoft.Extensions.Configuration.StreamConfigurationProvider.Source", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/StreamConfigurationProvider.cs#L17C51-L17C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/StreamConfigurationProvider.cs#L17C51-L17C55" } ], "DocsId": "T:Microsoft.Extensions.Configuration.StreamConfigurationProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/StreamConfigurationProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/StreamConfigurationProvider.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.StreamConfigurationSource.Build(Microsoft.Extensions.Configuration.IConfigurationBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/StreamConfigurationSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/StreamConfigurationSource.cs" }, { "DocsId": "M:Microsoft.Extensions.Configuration.StreamConfigurationSource.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/StreamConfigurationSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/StreamConfigurationSource.cs" }, { "DocsId": "P:Microsoft.Extensions.Configuration.StreamConfigurationSource.Stream", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/StreamConfigurationSource.cs#L18C33-L18C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/StreamConfigurationSource.cs#L18C33-L18C37" } ], "DocsId": "T:Microsoft.Extensions.Configuration.StreamConfigurationSource", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/StreamConfigurationSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/StreamConfigurationSource.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.Memory.MemoryConfigurationProvider.#ctor(Microsoft.Extensions.Configuration.Memory.MemoryConfigurationSource)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/MemoryConfigurationProvider.cs#L21C9-L34C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/MemoryConfigurationProvider.cs#L21C9-L34C10" }, { "DocsId": "M:Microsoft.Extensions.Configuration.Memory.MemoryConfigurationProvider.Add(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/MemoryConfigurationProvider.cs#L43C13-L44C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/MemoryConfigurationProvider.cs#L43C13-L44C10" }, { "DocsId": "M:Microsoft.Extensions.Configuration.Memory.MemoryConfigurationProvider.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/MemoryConfigurationProvider.cs#L52C13-L52C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/MemoryConfigurationProvider.cs#L52C13-L52C41" }, { "DocsId": "M:Microsoft.Extensions.Configuration.Memory.MemoryConfigurationProvider.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/MemoryConfigurationProvider.cs#L61C13-L61C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/MemoryConfigurationProvider.cs#L61C13-L61C36" } ], "DocsId": "T:Microsoft.Extensions.Configuration.Memory.MemoryConfigurationProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/MemoryConfigurationProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/MemoryConfigurationProvider.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Configuration.Memory.MemoryConfigurationSource.Build(Microsoft.Extensions.Configuration.IConfigurationBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/MemoryConfigurationSource.cs#L25C13-L25C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/MemoryConfigurationSource.cs#L25C13-L25C58" }, { "DocsId": "M:Microsoft.Extensions.Configuration.Memory.MemoryConfigurationSource.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/MemoryConfigurationSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/MemoryConfigurationSource.cs" }, { "DocsId": "P:Microsoft.Extensions.Configuration.Memory.MemoryConfigurationSource.InitialData", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/MemoryConfigurationSource.cs#L16C74-L16C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/MemoryConfigurationSource.cs#L16C74-L16C78" } ], "DocsId": "T:Microsoft.Extensions.Configuration.Memory.MemoryConfigurationSource", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Configuration/src/MemoryConfigurationSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Configuration/src/MemoryConfigurationSource.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.DependencyInjection.Abstractions.json b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.DependencyInjection.Abstractions.json index 5f90958cfc8..15dfacc2f2e 100644 --- a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.DependencyInjection.Abstractions.json +++ b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.DependencyInjection.Abstractions.json @@ -1,1000 +1,999 @@ { "Assembly": "Microsoft.Extensions.DependencyInjection.Abstractions", - "GUID": "54E7BDBA443C434F92A1203A9A0FE4C2FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "BD0C10D392C24687943652A80B4F165FFFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ActivatorUtilities.CreateInstance(System.IServiceProvider,System.Type,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ActivatorUtilities.cs#L52C13-L192C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ActivatorUtilities.cs#L52C13-L192C53" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ActivatorUtilities.CreateFactory(System.Type,System.Type[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ActivatorUtilities.cs#L281C13-L298C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ActivatorUtilities.cs#L281C13-L298C34" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ActivatorUtilities.CreateFactory``1(System.Type[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ActivatorUtilities.cs#L318C13-L331C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ActivatorUtilities.cs#L318C13-L331C34" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ActivatorUtilities.CreateInstance``1(System.IServiceProvider,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ActivatorUtilities.cs#L352C13-L352C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ActivatorUtilities.cs#L352C13-L352C71" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ActivatorUtilities.GetServiceOrCreateInstance``1(System.IServiceProvider)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ActivatorUtilities.cs#L363C13-L363C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ActivatorUtilities.cs#L363C13-L363C71" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ActivatorUtilities.GetServiceOrCreateInstance(System.IServiceProvider,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ActivatorUtilities.cs#L376C13-L376C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ActivatorUtilities.cs#L376C13-L376C80" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.ActivatorUtilities", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ActivatorUtilities.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ActivatorUtilities.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ActivatorUtilitiesConstructorAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ActivatorUtilitiesConstructorAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ActivatorUtilitiesConstructorAttribute.cs" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.ActivatorUtilitiesConstructorAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ActivatorUtilitiesConstructorAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ActivatorUtilitiesConstructorAttribute.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.AsyncServiceScope.#ctor(Microsoft.Extensions.DependencyInjection.IServiceScope)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/AsyncServiceScope.cs#L25C13-L28C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/AsyncServiceScope.cs#L25C13-L28C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.AsyncServiceScope.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/AsyncServiceScope.cs#L36C13-L37C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/AsyncServiceScope.cs#L36C13-L37C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.AsyncServiceScope.DisposeAsync", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/AsyncServiceScope.cs#L42C13-L49C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/AsyncServiceScope.cs#L42C13-L49C28" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.AsyncServiceScope.ServiceProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/AsyncServiceScope.cs#L31C52-L31C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/AsyncServiceScope.cs#L31C52-L31C81" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.AsyncServiceScope", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/AsyncServiceScope.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/AsyncServiceScope.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.FromKeyedServicesAttribute.#ctor(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/FromKeyedServicesAttribute.cs#L18C9-L18C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/FromKeyedServicesAttribute.cs#L18C9-L18C67" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.FromKeyedServicesAttribute.Key", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/FromKeyedServicesAttribute.cs#L23C29-L23C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/FromKeyedServicesAttribute.cs#L23C29-L23C33" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.FromKeyedServicesAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/FromKeyedServicesAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/FromKeyedServicesAttribute.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.IKeyedServiceProvider.GetKeyedService(System.Type,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/IKeyedServiceProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/IKeyedServiceProvider.cs" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.IKeyedServiceProvider.GetRequiredKeyedService(System.Type,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/IKeyedServiceProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/IKeyedServiceProvider.cs" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.IKeyedServiceProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/IKeyedServiceProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/IKeyedServiceProvider.cs" }, { "Members": [ { "DocsId": "P:Microsoft.Extensions.DependencyInjection.KeyedService.AnyKey", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/IKeyedServiceProvider.cs#L41C39-L41C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/IKeyedServiceProvider.cs#L41C39-L41C43" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.KeyedService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/IKeyedServiceProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/IKeyedServiceProvider.cs" }, { "Members": [], "DocsId": "T:Microsoft.Extensions.DependencyInjection.IServiceCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/IServiceCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/IServiceCollection.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.IServiceProviderFactory`1.CreateBuilder(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/IServiceProviderFactory.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/IServiceProviderFactory.cs" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.IServiceProviderFactory`1.CreateServiceProvider(`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/IServiceProviderFactory.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/IServiceProviderFactory.cs" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.IServiceProviderFactory`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/IServiceProviderFactory.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/IServiceProviderFactory.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.IServiceProviderIsKeyedService.IsKeyedService(System.Type,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/IServiceProviderIsKeyedService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/IServiceProviderIsKeyedService.cs" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.IServiceProviderIsKeyedService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/IServiceProviderIsKeyedService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/IServiceProviderIsKeyedService.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.IServiceProviderIsService.IsService(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/IServiceProviderIsService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/IServiceProviderIsService.cs" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.IServiceProviderIsService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/IServiceProviderIsService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/IServiceProviderIsService.cs" }, { "Members": [ { "DocsId": "P:Microsoft.Extensions.DependencyInjection.IServiceScope.ServiceProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/IServiceScope.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/IServiceScope.cs" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.IServiceScope", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/IServiceScope.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/IServiceScope.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.IServiceScopeFactory.CreateScope", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/IServiceScopeFactory.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/IServiceScopeFactory.cs" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.IServiceScopeFactory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/IServiceScopeFactory.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/IServiceScopeFactory.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ISupportRequiredService.GetRequiredService(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ISupportRequiredService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ISupportRequiredService.cs" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.ISupportRequiredService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ISupportRequiredService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ISupportRequiredService.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ObjectFactory.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ObjectFactory.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ObjectFactory.cs" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ObjectFactory.Invoke(System.IServiceProvider,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ObjectFactory.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ObjectFactory.cs" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ObjectFactory.BeginInvoke(System.IServiceProvider,System.Object[],System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ObjectFactory.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ObjectFactory.cs" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ObjectFactory.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ObjectFactory.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ObjectFactory.cs" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.ObjectFactory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ObjectFactory.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ObjectFactory.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ObjectFactory`1.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ObjectFactoryT.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ObjectFactoryT.cs" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ObjectFactory`1.Invoke(System.IServiceProvider,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ObjectFactoryT.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ObjectFactoryT.cs" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ObjectFactory`1.BeginInvoke(System.IServiceProvider,System.Object[],System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ObjectFactoryT.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ObjectFactoryT.cs" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ObjectFactory`1.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ObjectFactoryT.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ObjectFactoryT.cs" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.ObjectFactory`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ObjectFactoryT.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ObjectFactoryT.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollection.Clear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollection.cs#L44C13-L46C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollection.cs#L44C13-L46C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollection.Contains(Microsoft.Extensions.DependencyInjection.ServiceDescriptor)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollection.cs#L51C13-L51C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollection.cs#L51C13-L51C48" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollection.CopyTo(Microsoft.Extensions.DependencyInjection.ServiceDescriptor[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollection.cs#L57C13-L58C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollection.cs#L57C13-L58C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollection.Remove(Microsoft.Extensions.DependencyInjection.ServiceDescriptor)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollection.cs#L63C13-L64C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollection.cs#L63C13-L64C46" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollection.cs#L70C13-L70C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollection.cs#L70C13-L70C49" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollection.System#Collections#Generic#ICollection#Add(Microsoft.Extensions.DependencyInjection.ServiceDescriptor)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollection.cs#L75C13-L77C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollection.cs#L75C13-L77C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollection.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollection.cs#L81C13-L81C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollection.cs#L81C13-L81C36" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollection.IndexOf(Microsoft.Extensions.DependencyInjection.ServiceDescriptor)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollection.cs#L87C13-L87C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollection.cs#L87C13-L87C47" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollection.Insert(System.Int32,Microsoft.Extensions.DependencyInjection.ServiceDescriptor)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollection.cs#L93C13-L95C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollection.cs#L93C13-L95C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollection.RemoveAt(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollection.cs#L100C13-L102C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollection.cs#L100C13-L102C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollection.MakeReadOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollection.cs#L112C13-L113C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollection.cs#L112C13-L113C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollection.cs#L18C9-L18C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollection.cs#L18C9-L18C95" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.ServiceCollection.Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollection.cs#L22C29-L22C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollection.cs#L22C29-L22C47" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.ServiceCollection.IsReadOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollection.cs#L25C35-L25C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollection.cs#L25C35-L25C46" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.ServiceCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollection.cs#L32C17-L32C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollection.cs#L32C17-L32C44" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.ServiceCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollection.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddTransient(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs#L29C13-L33C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs#L29C13-L33C94" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddTransient(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Func{System.IServiceProvider,System.Object})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs#L51C13-L55C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs#L51C13-L55C97" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddTransient``2(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs#L72C13-L74C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs#L72C13-L74C85" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddTransient(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs#L89C13-L92C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs#L89C13-L92C68" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddTransient``1(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs#L106C13-L108C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs#L106C13-L108C60" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddTransient``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Func{System.IServiceProvider,``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs#L126C13-L129C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs#L126C13-L129C83" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddTransient``2(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Func{System.IServiceProvider,``1})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs#L150C13-L153C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs#L150C13-L153C83" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddScoped(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs#L171C13-L175C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs#L171C13-L175C91" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddScoped(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Func{System.IServiceProvider,System.Object})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs#L193C13-L197C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs#L193C13-L197C94" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddScoped``2(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs#L214C13-L216C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs#L214C13-L216C82" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddScoped(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs#L231C13-L234C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs#L231C13-L234C65" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddScoped``1(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs#L248C13-L250C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs#L248C13-L250C57" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddScoped``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Func{System.IServiceProvider,``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs#L268C13-L271C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs#L268C13-L271C80" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddScoped``2(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Func{System.IServiceProvider,``1})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs#L292C13-L295C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs#L292C13-L295C80" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs#L314C13-L318C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs#L314C13-L318C94" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Func{System.IServiceProvider,System.Object})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs#L336C13-L340C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs#L336C13-L340C97" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton``2(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs#L357C13-L359C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs#L357C13-L359C85" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs#L374C13-L377C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs#L374C13-L377C68" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton``1(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs#L391C13-L393C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs#L391C13-L393C60" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Func{System.IServiceProvider,``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs#L411C13-L414C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs#L411C13-L414C83" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton``2(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Func{System.IServiceProvider,``1})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs#L435C13-L438C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs#L435C13-L438C83" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs#L456C13-L462C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs#L456C13-L462C29" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,``0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs#L479C13-L482C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs#L479C13-L482C84" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddKeyedTransient(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Object,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.Keyed.cs#L31C13-L35C111" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.Keyed.cs#L31C13-L35C111" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddKeyedTransient(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Object,System.Func{System.IServiceProvider,System.Object,System.Object})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.Keyed.cs#L55C13-L59C114" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.Keyed.cs#L55C13-L59C114" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddKeyedTransient``2(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.Keyed.cs#L79C13-L81C102" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.Keyed.cs#L79C13-L81C102" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddKeyedTransient(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.Keyed.cs#L98C13-L101C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.Keyed.cs#L98C13-L101C85" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddKeyedTransient``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.Keyed.cs#L118C13-L120C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.Keyed.cs#L118C13-L120C77" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddKeyedTransient``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Object,System.Func{System.IServiceProvider,System.Object,``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.Keyed.cs#L140C13-L143C100" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.Keyed.cs#L140C13-L143C100" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddKeyedTransient``2(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Object,System.Func{System.IServiceProvider,System.Object,``1})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.Keyed.cs#L166C13-L169C100" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.Keyed.cs#L166C13-L169C100" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddKeyedScoped(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Object,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.Keyed.cs#L189C13-L193C108" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.Keyed.cs#L189C13-L193C108" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddKeyedScoped(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Object,System.Func{System.IServiceProvider,System.Object,System.Object})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.Keyed.cs#L213C13-L217C111" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.Keyed.cs#L213C13-L217C111" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddKeyedScoped``2(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.Keyed.cs#L237C13-L239C99" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.Keyed.cs#L237C13-L239C99" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddKeyedScoped(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.Keyed.cs#L256C13-L259C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.Keyed.cs#L256C13-L259C82" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddKeyedScoped``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.Keyed.cs#L276C13-L278C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.Keyed.cs#L276C13-L278C74" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddKeyedScoped``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Object,System.Func{System.IServiceProvider,System.Object,``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.Keyed.cs#L298C13-L301C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.Keyed.cs#L298C13-L301C97" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddKeyedScoped``2(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Object,System.Func{System.IServiceProvider,System.Object,``1})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.Keyed.cs#L324C13-L327C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.Keyed.cs#L324C13-L327C97" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddKeyedSingleton(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Object,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.Keyed.cs#L348C13-L352C111" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.Keyed.cs#L347C13-L351C111" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddKeyedSingleton(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Object,System.Func{System.IServiceProvider,System.Object,System.Object})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.Keyed.cs#L372C13-L376C114" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.Keyed.cs#L371C13-L375C114" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddKeyedSingleton``2(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.Keyed.cs#L396C13-L398C102" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.Keyed.cs#L395C13-L397C102" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddKeyedSingleton(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.Keyed.cs#L415C13-L418C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.Keyed.cs#L414C13-L417C85" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddKeyedSingleton``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.Keyed.cs#L435C13-L437C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.Keyed.cs#L434C13-L436C95" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddKeyedSingleton``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Object,System.Func{System.IServiceProvider,System.Object,``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.Keyed.cs#L457C13-L460C100" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.Keyed.cs#L456C13-L459C100" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddKeyedSingleton``2(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Object,System.Func{System.IServiceProvider,System.Object,``1})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.Keyed.cs#L483C13-L486C100" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.Keyed.cs#L482C13-L485C100" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddKeyedSingleton(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Object,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.Keyed.cs#L506C13-L512C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.Keyed.cs#L505C13-L511C29" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddKeyedSingleton``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Object,``0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.Keyed.cs#L531C13-L534C101" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.Keyed.cs#L530C13-L533C101" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceCollectionServiceExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.#ctor(System.Type,System.Type,Microsoft.Extensions.DependencyInjection.ServiceLifetime)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L26C15-L28C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L26C15-L28C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.#ctor(System.Type,System.Object,System.Type,Microsoft.Extensions.DependencyInjection.ServiceLifetime)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L42C15-L48C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L42C15-L48C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.#ctor(System.Type,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L59C15-L61C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L59C15-L61C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.#ctor(System.Type,System.Object,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L74C15-L80C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L74C15-L80C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.#ctor(System.Type,System.Func{System.IServiceProvider,System.Object},Microsoft.Extensions.DependencyInjection.ServiceLifetime)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L92C15-L98C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L92C15-L98C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.#ctor(System.Type,System.Object,System.Func{System.IServiceProvider,System.Object,System.Object},Microsoft.Extensions.DependencyInjection.ServiceLifetime)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L112C15-L127C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L16707566C0-L127C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L258C13-L288C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L258C13-L288C97" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.Transient``2", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L349C13-L349C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L349C13-L349C94" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.KeyedTransient``2(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L365C13-L365C100" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L365C13-L365C100" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.Transient(System.Type,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L380C13-L383C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L380C13-L383C85" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.KeyedTransient(System.Type,System.Object,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L400C13-L403C102" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L400C13-L403C102" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.Transient``2(System.Func{System.IServiceProvider,``1})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L421C13-L423C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L421C13-L423C97" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.KeyedTransient``2(System.Object,System.Func{System.IServiceProvider,System.Object,``1})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L443C13-L445C114" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L443C13-L445C114" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.Transient``1(System.Func{System.IServiceProvider,``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L459C13-L461C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L459C13-L461C97" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.KeyedTransient``1(System.Object,System.Func{System.IServiceProvider,System.Object,``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L476C13-L478C114" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L476C13-L478C114" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.Transient(System.Type,System.Func{System.IServiceProvider,System.Object})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L491C13-L494C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L491C13-L494C88" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.KeyedTransient(System.Type,System.Object,System.Func{System.IServiceProvider,System.Object,System.Object})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L508C13-L511C105" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L508C13-L511C105" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.Scoped``2", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L526C13-L526C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L526C13-L526C91" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.KeyedScoped``2(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L542C13-L542C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L542C13-L542C97" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.Scoped(System.Type,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L557C13-L557C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L557C13-L557C82" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.KeyedScoped(System.Type,System.Object,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L574C13-L574C99" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L574C13-L574C99" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.Scoped``2(System.Func{System.IServiceProvider,``1})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L592C13-L594C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L592C13-L594C94" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.KeyedScoped``2(System.Object,System.Func{System.IServiceProvider,System.Object,``1})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L614C13-L616C111" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L614C13-L616C111" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.Scoped``1(System.Func{System.IServiceProvider,``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L630C13-L632C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L630C13-L632C94" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.KeyedScoped``1(System.Object,System.Func{System.IServiceProvider,System.Object,``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L647C13-L649C111" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L647C13-L649C111" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.Scoped(System.Type,System.Func{System.IServiceProvider,System.Object})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L662C13-L665C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L662C13-L665C85" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.KeyedScoped(System.Type,System.Object,System.Func{System.IServiceProvider,System.Object,System.Object})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L679C13-L682C102" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L679C13-L682C102" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.Singleton``2", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L697C13-L697C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L697C13-L697C94" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.KeyedSingleton``2(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L714C13-L714C100" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L714C13-L714C100" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.Singleton(System.Type,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L729C13-L732C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L729C13-L732C85" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.KeyedSingleton(System.Type,System.Object,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L749C13-L752C102" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L749C13-L752C102" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.Singleton``2(System.Func{System.IServiceProvider,``1})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L770C13-L772C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L770C13-L772C97" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.KeyedSingleton``2(System.Object,System.Func{System.IServiceProvider,System.Object,``1})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L792C13-L794C114" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L792C13-L794C114" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.Singleton``1(System.Func{System.IServiceProvider,``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L808C13-L810C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L808C13-L810C97" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.KeyedSingleton``1(System.Object,System.Func{System.IServiceProvider,System.Object,``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L827C13-L829C114" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L827C13-L829C114" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.Singleton(System.Type,System.Func{System.IServiceProvider,System.Object})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L844C13-L847C92" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L844C13-L847C92" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.KeyedSingleton(System.Type,System.Object,System.Func{System.IServiceProvider,System.Object,System.Object})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L864C13-L867C109" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L864C13-L867C109" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.Singleton``1(``0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L881C13-L883C109" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L881C13-L883C109" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.KeyedSingleton``1(System.Object,``0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L900C13-L902C89" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L900C13-L902C89" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.Singleton(System.Type,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L917C13-L920C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L917C13-L920C79" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.KeyedSingleton(System.Type,System.Object,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L937C13-L940C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L937C13-L940C91" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.Describe(System.Type,System.Type,Microsoft.Extensions.DependencyInjection.ServiceLifetime)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L970C13-L970C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L970C13-L970C85" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.DescribeKeyed(System.Type,System.Object,System.Type,Microsoft.Extensions.DependencyInjection.ServiceLifetime)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L989C13-L989C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L989C13-L989C97" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.Describe(System.Type,System.Func{System.IServiceProvider,System.Object},Microsoft.Extensions.DependencyInjection.ServiceLifetime)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L1003C13-L1003C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L1003C13-L1003C88" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.DescribeKeyed(System.Type,System.Object,System.Func{System.IServiceProvider,System.Object,System.Object},Microsoft.Extensions.DependencyInjection.ServiceLifetime)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L1018C13-L1018C100" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L1018C13-L1018C100" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.Lifetime", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L139C43-L139C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L139C43-L139C47" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.ServiceKey", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L144C37-L144C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L144C37-L144C41" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.ServiceType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L149C35-L149C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L149C35-L149C39" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.ImplementationType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L162C17-L166C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L162C17-L166C44" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.KeyedImplementationType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L178C17-L182C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L178C17-L182C44" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.ImplementationInstance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L195C17-L199C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L195C17-L199C48" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.KeyedImplementationInstance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L210C17-L214C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L210C17-L214C48" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.ImplementationFactory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L227C17-L231C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L227C17-L231C80" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.KeyedImplementationFactory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L242C17-L246C89" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L242C17-L246C89" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.IsKeyedService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L253C39-L253C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs#L253C39-L253C57" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.ServiceDescriptor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceDescriptor.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceKeyAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceKeyAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceKeyAttribute.cs" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.ServiceKeyAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceKeyAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceKeyAttribute.cs" }, { "Members": [ { "DocsId": "F:Microsoft.Extensions.DependencyInjection.ServiceLifetime.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceLifetime.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceLifetime.cs" }, { "DocsId": "F:Microsoft.Extensions.DependencyInjection.ServiceLifetime.Singleton", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceLifetime.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceLifetime.cs" }, { "DocsId": "F:Microsoft.Extensions.DependencyInjection.ServiceLifetime.Scoped", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceLifetime.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceLifetime.cs" }, { "DocsId": "F:Microsoft.Extensions.DependencyInjection.ServiceLifetime.Transient", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceLifetime.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceLifetime.cs" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.ServiceLifetime", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceLifetime.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceLifetime.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceProviderKeyedServiceExtensions.GetKeyedService``1(System.IServiceProvider,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceProviderKeyedServiceExtensions.cs#L24C13-L31C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceProviderKeyedServiceExtensions.cs#L24C13-L31C79" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceProviderKeyedServiceExtensions.GetRequiredKeyedService(System.IServiceProvider,System.Type,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceProviderKeyedServiceExtensions.cs#L44C13-L52C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceProviderKeyedServiceExtensions.cs#L44C13-L52C79" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceProviderKeyedServiceExtensions.GetRequiredKeyedService``1(System.IServiceProvider,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceProviderKeyedServiceExtensions.cs#L65C13-L67C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceProviderKeyedServiceExtensions.cs#L65C13-L67C79" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceProviderKeyedServiceExtensions.GetKeyedServices``1(System.IServiceProvider,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceProviderKeyedServiceExtensions.cs#L79C13-L81C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceProviderKeyedServiceExtensions.cs#L79C13-L81C81" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceProviderKeyedServiceExtensions.GetKeyedServices(System.IServiceProvider,System.Type,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceProviderKeyedServiceExtensions.cs#L94C13-L98C105" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceProviderKeyedServiceExtensions.cs#L94C13-L98C105" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.ServiceProviderKeyedServiceExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceProviderKeyedServiceExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceProviderKeyedServiceExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetService``1(System.IServiceProvider)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceProviderServiceExtensions.cs#L23C13-L25C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceProviderServiceExtensions.cs#L23C13-L25C55" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(System.IServiceProvider,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceProviderServiceExtensions.cs#L37C13-L51C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceProviderServiceExtensions.cs#L37C13-L51C28" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService``1(System.IServiceProvider)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceProviderServiceExtensions.cs#L63C13-L65C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceProviderServiceExtensions.cs#L63C13-L65C62" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetServices``1(System.IServiceProvider)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceProviderServiceExtensions.cs#L76C13-L78C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceProviderServiceExtensions.cs#L76C13-L78C66" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetServices(System.IServiceProvider,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceProviderServiceExtensions.cs#L90C13-L94C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceProviderServiceExtensions.cs#L90C13-L94C88" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.CreateScope(System.IServiceProvider)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceProviderServiceExtensions.cs#L104C13-L104C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceProviderServiceExtensions.cs#L104C13-L104C86" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.CreateAsyncScope(System.IServiceProvider)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceProviderServiceExtensions.cs#L114C13-L114C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceProviderServiceExtensions.cs#L114C13-L114C66" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.CreateAsyncScope(Microsoft.Extensions.DependencyInjection.IServiceScopeFactory)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceProviderServiceExtensions.cs#L124C13-L124C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceProviderServiceExtensions.cs#L124C13-L124C77" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceProviderServiceExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/ServiceProviderServiceExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.Add(Microsoft.Extensions.DependencyInjection.IServiceCollection,Microsoft.Extensions.DependencyInjection.ServiceDescriptor)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L25C13-L29C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L25C13-L29C31" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.Add(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Collections.Generic.IEnumerable{Microsoft.Extensions.DependencyInjection.ServiceDescriptor})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L42C13-L50C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L42C13-L50C31" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.TryAdd(Microsoft.Extensions.DependencyInjection.IServiceCollection,Microsoft.Extensions.DependencyInjection.ServiceDescriptor)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L63C13-L78C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L63C13-L78C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.TryAdd(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Collections.Generic.IEnumerable{Microsoft.Extensions.DependencyInjection.ServiceDescriptor})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L90C13-L97C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L90C13-L97C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.TryAddTransient(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L109C13-L114C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L109C13-L114C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.TryAddTransient(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L129C13-L135C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L129C13-L135C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.TryAddTransient(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Func{System.IServiceProvider,System.Object})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L150C13-L156C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L150C13-L156C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.TryAddTransient``1(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L167C13-L170C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L167C13-L170C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.TryAddTransient``2(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L184C13-L187C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L184C13-L187C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.TryAddTransient``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Func{System.IServiceProvider,``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L202C13-L203C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L202C13-L203C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.TryAddScoped(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L215C13-L220C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L215C13-L220C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.TryAddScoped(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L235C13-L241C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L235C13-L241C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.TryAddScoped(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Func{System.IServiceProvider,System.Object})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L256C13-L262C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L256C13-L262C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.TryAddScoped``1(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L273C13-L276C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L273C13-L276C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.TryAddScoped``2(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L290C13-L293C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L290C13-L293C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.TryAddScoped``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Func{System.IServiceProvider,``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L308C13-L309C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L308C13-L309C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.TryAddSingleton(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L321C13-L326C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L321C13-L326C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.TryAddSingleton(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L341C13-L347C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L341C13-L347C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.TryAddSingleton(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Func{System.IServiceProvider,System.Object})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L362C13-L368C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L362C13-L368C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.TryAddSingleton``1(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L379C13-L382C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L379C13-L382C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.TryAddSingleton``2(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L396C13-L399C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L396C13-L399C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.TryAddSingleton``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,``0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L412C13-L417C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L412C13-L417C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.TryAddSingleton``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Func{System.IServiceProvider,``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L432C13-L433C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L432C13-L433C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.TryAddEnumerable(Microsoft.Extensions.DependencyInjection.IServiceCollection,Microsoft.Extensions.DependencyInjection.ServiceDescriptor)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L456C13-L485C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L456C13-L485C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.TryAddEnumerable(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Collections.Generic.IEnumerable{Microsoft.Extensions.DependencyInjection.ServiceDescriptor})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L508C13-L515C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L508C13-L515C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.Replace(Microsoft.Extensions.DependencyInjection.IServiceCollection,Microsoft.Extensions.DependencyInjection.ServiceDescriptor)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L528C13-L543C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L528C13-L543C31" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.RemoveAll``1(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L553C13-L553C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L553C13-L553C53" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.RemoveAll(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L564C13-L575C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L564C13-L575C31" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.TryAddKeyedTransient(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.Keyed.cs#L24C13-L29C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.Keyed.cs#L24C13-L29C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.TryAddKeyedTransient(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Object,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.Keyed.cs#L46C13-L52C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.Keyed.cs#L46C13-L52C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.TryAddKeyedTransient(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Object,System.Func{System.IServiceProvider,System.Object,System.Object})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.Keyed.cs#L69C13-L75C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.Keyed.cs#L69C13-L75C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.TryAddKeyedTransient``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.Keyed.cs#L87C13-L90C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.Keyed.cs#L87C13-L90C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.TryAddKeyedTransient``2(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.Keyed.cs#L105C13-L108C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.Keyed.cs#L105C13-L108C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.TryAddKeyedTransient``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Object,System.Func{System.IServiceProvider,System.Object,``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.Keyed.cs#L125C13-L126C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.Keyed.cs#L125C13-L126C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.TryAddKeyedScoped(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.Keyed.cs#L140C13-L145C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.Keyed.cs#L140C13-L145C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.TryAddKeyedScoped(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Object,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.Keyed.cs#L162C13-L168C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.Keyed.cs#L162C13-L168C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.TryAddKeyedScoped(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Object,System.Func{System.IServiceProvider,System.Object,System.Object})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.Keyed.cs#L185C13-L191C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.Keyed.cs#L185C13-L191C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.TryAddKeyedScoped``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.Keyed.cs#L203C13-L206C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.Keyed.cs#L203C13-L206C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.TryAddKeyedScoped``2(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.Keyed.cs#L221C13-L224C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.Keyed.cs#L221C13-L224C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.TryAddKeyedScoped``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Object,System.Func{System.IServiceProvider,System.Object,``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.Keyed.cs#L241C13-L242C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.Keyed.cs#L241C13-L242C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.TryAddKeyedSingleton(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.Keyed.cs#L256C13-L261C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.Keyed.cs#L256C13-L261C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.TryAddKeyedSingleton(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Object,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.Keyed.cs#L278C13-L284C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.Keyed.cs#L278C13-L284C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.TryAddKeyedSingleton(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Object,System.Func{System.IServiceProvider,System.Object,System.Object})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.Keyed.cs#L301C13-L307C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.Keyed.cs#L301C13-L307C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.TryAddKeyedSingleton``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.Keyed.cs#L319C13-L322C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.Keyed.cs#L319C13-L322C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.TryAddKeyedSingleton``2(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.Keyed.cs#L337C13-L340C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.Keyed.cs#L337C13-L340C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.TryAddKeyedSingleton``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Object,``0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.Keyed.cs#L354C13-L359C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.Keyed.cs#L354C13-L359C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.TryAddKeyedSingleton``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Object,System.Func{System.IServiceProvider,System.Object,``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.Keyed.cs#L376C13-L377C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.Keyed.cs#L376C13-L377C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.RemoveAllKeyed``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.Keyed.cs#L387C13-L387C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.Keyed.cs#L387C13-L387C70" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.RemoveAllKeyed(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.Keyed.cs#L399C13-L410C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.Keyed.cs#L399C13-L410C31" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.DependencyInjection.AutoActivation.json b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.DependencyInjection.AutoActivation.json index da6f6f240a5..725d4e5c123 100644 --- a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.DependencyInjection.AutoActivation.json +++ b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.DependencyInjection.AutoActivation.json @@ -1,133 +1,132 @@ { "Assembly": "Microsoft.Extensions.DependencyInjection.AutoActivation", - "GUID": "9AA1246AA4984A008EAB4D97AD39D2D8FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "94C4C1451BC24E03A0F03B5BA0CAC324FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.AutoActivationExtensions.ActivateSingleton``1(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.cs#L27C9-L49C25" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.cs#L27C9-L49C25" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.AutoActivationExtensions.ActivateSingleton(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.cs#L60C9-L87C25" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.cs#L16707566C0-L87C25" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.AutoActivationExtensions.AddActivatedSingleton``2(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Func{System.IServiceProvider,``1})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.cs#L102C9-L107C44" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.cs#L102C9-L107C44" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.AutoActivationExtensions.AddActivatedSingleton``2(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.cs#L121C9-L125C44" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.cs#L121C9-L125C44" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.AutoActivationExtensions.AddActivatedSingleton``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Func{System.IServiceProvider,``0})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.cs#L138C9-L143C44" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.cs#L138C9-L143C44" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.AutoActivationExtensions.AddActivatedSingleton``1(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.cs#L155C9-L159C44" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.cs#L155C9-L159C44" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.AutoActivationExtensions.AddActivatedSingleton(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.cs#L173C9-L178C45" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.cs#L173C9-L178C45" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.AutoActivationExtensions.AddActivatedSingleton(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Func{System.IServiceProvider,System.Object})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.cs#L193C9-L199C45" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.cs#L193C9-L199C45" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.AutoActivationExtensions.AddActivatedSingleton(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Type)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.cs#L214C9-L220C45" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.cs#L214C9-L220C45" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.AutoActivationExtensions.TryAddActivatedSingleton(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.cs#L232C9-L236C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.cs#L232C9-L236C6" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.AutoActivationExtensions.TryAddActivatedSingleton(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Type)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.cs#L249C9-L254C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.cs#L249C9-L254C6" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.AutoActivationExtensions.TryAddActivatedSingleton(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Func{System.IServiceProvider,System.Object})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.cs#L264C9-L269C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.cs#L264C9-L269C6" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.AutoActivationExtensions.TryAddActivatedSingleton``1(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.cs#L279C9-L282C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.cs#L279C9-L282C6" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.AutoActivationExtensions.TryAddActivatedSingleton``2(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.cs#L294C9-L297C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.cs#L294C9-L297C6" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.AutoActivationExtensions.TryAddActivatedSingleton``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Func{System.IServiceProvider,``0})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.cs#L308C9-L312C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.cs#L308C9-L312C6" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.AutoActivationExtensions.ActivateKeyedSingleton``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.Keyed.cs#L26C9-L48C25" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.Keyed.cs#L16707566C0-L48C25" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.AutoActivationExtensions.ActivateKeyedSingleton(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.Keyed.cs#L63C9-L90C25" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.Keyed.cs#L16707566C0-L90C25" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.AutoActivationExtensions.AddActivatedKeyedSingleton``2(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Object,System.Func{System.IServiceProvider,System.Object,``1})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.Keyed.cs#L109C9-L114C59" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.Keyed.cs#L109C9-L114C59" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.AutoActivationExtensions.AddActivatedKeyedSingleton``2(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.Keyed.cs#L131C9-L133C59" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.Keyed.cs#L131C9-L133C59" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.AutoActivationExtensions.AddActivatedKeyedSingleton``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Object,System.Func{System.IServiceProvider,System.Object,``0})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.Keyed.cs#L150C9-L152C59" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.Keyed.cs#L150C9-L152C59" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.AutoActivationExtensions.AddActivatedKeyedSingleton``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.Keyed.cs#L167C9-L169C59" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.Keyed.cs#L167C9-L169C59" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.AutoActivationExtensions.AddActivatedKeyedSingleton(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.Keyed.cs#L184C9-L189C62" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.Keyed.cs#L184C9-L189C62" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.AutoActivationExtensions.AddActivatedKeyedSingleton(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Object,System.Func{System.IServiceProvider,System.Object,System.Object})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.Keyed.cs#L206C9-L212C62" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.Keyed.cs#L206C9-L212C62" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.AutoActivationExtensions.AddActivatedKeyedSingleton(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Object,System.Type)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.Keyed.cs#L229C9-L235C62" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.Keyed.cs#L229C9-L235C62" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.AutoActivationExtensions.TryAddActivatedKeyedSingleton(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.Keyed.cs#L249C9-L253C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.Keyed.cs#L249C9-L253C6" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.AutoActivationExtensions.TryAddActivatedKeyedSingleton(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Object,System.Type)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.Keyed.cs#L268C9-L273C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.Keyed.cs#L268C9-L273C6" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.AutoActivationExtensions.TryAddActivatedKeyedSingleton(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Object,System.Func{System.IServiceProvider,System.Object,System.Object})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.Keyed.cs#L288C9-L293C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.Keyed.cs#L288C9-L293C6" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.AutoActivationExtensions.TryAddActivatedKeyedSingleton``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.Keyed.cs#L306C9-L309C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.Keyed.cs#L306C9-L309C6" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.AutoActivationExtensions.TryAddActivatedKeyedSingleton``2(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.Keyed.cs#L324C9-L327C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.Keyed.cs#L324C9-L327C6" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.AutoActivationExtensions.TryAddActivatedKeyedSingleton``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Object,System.Func{System.IServiceProvider,System.Object,``0})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.Keyed.cs#L342C9-L346C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.Keyed.cs#L342C9-L346C6" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.AutoActivationExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.DependencyInjection.AutoActivation/AutoActivationExtensions.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.DependencyInjection.Specification.Tests.json b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.DependencyInjection.Specification.Tests.json index 1a8d376e09c..04d18133bab 100644 --- a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.DependencyInjection.Specification.Tests.json +++ b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.DependencyInjection.Specification.Tests.json @@ -1,1297 +1,1296 @@ { "Assembly": "Microsoft.Extensions.DependencyInjection.Specification.Tests", - "GUID": "F13034C3E3E24768B21FBE8DB2A5405DFFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "11983781D487405FA798FFDEA34DA991FFFFFFFF", "Types": [ { "Members": [], "DocsId": "T:Microsoft.Extensions.DependencyInjection.ClassWithInternalConstructor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithInternalConstructor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithInternalConstructor.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.TypeActivatorEnablesYouToCreateAnyTypeWithServicesEvenWhenNotInIocContainer(Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.CreateInstanceFunc)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs#L49C13-L56C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs#L49C13-L56C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.TypeActivatorAcceptsAnyNumberOfAdditionalConstructorParametersToProvide(Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.CreateInstanceFunc)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs#L63C13-L74C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs#L63C13-L74C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.TypeActivatorWorksWithStaticCtor(Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.CreateInstanceFunc)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs#L81C13-L87C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs#L81C13-L87C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.TypeActivatorWorksWithCtorWithOptionalArgs(Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.CreateInstanceFunc)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs#L94C13-L103C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs#L94C13-L103C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.TypeActivatorWorksWithCtorWithOptionalArgs_WithStructDefaults(Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.CreateInstanceFunc)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs#L110C13-L123C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs#L110C13-L123C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.TypeActivatorCanDisambiguateConstructorsWithUniqueArguments(Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.CreateInstanceFunc)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs#L130C13-L142C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs#L130C13-L142C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.TypeActivatorRequiresPublicConstructor(Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.CreateInstanceFunc,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs#L154C13-L164C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs#L16707566C0-L164C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.TypeActivatorRequiresAllArgumentsCanBeAccepted(Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.CreateInstanceFunc)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs#L171C13-L184C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs#L16707566C0-L184C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.TypeActivatorRethrowsOriginalExceptionFromConstructor(Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.CreateInstanceFunc)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs#L191C13-L203C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs#L16707566C0-L203C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.TypeActivatorCreateFactoryDoesNotAllowForAmbiguousConstructorMatches(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs#L211C13-L221C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs#L16707566C0-L221C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.TypeActivatorCreateInstanceUsesLongestAvailableConstructor(System.Object,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs#L229C13-L252C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs#L16707566C0-L252C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.TypeActivatorUsesMarkedConstructor(Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.CreateInstanceFunc)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs#L259C13-L268C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs#L259C13-L268C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.TypeActivatorThrowsOnMultipleMarkedCtors(Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.CreateInstanceFunc)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs#L275C13-L283C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs#L16707566C0-L283C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.TypeActivatorThrowsWhenMarkedCtorDoesntAcceptArguments(Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.CreateInstanceFunc)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs#L290C13-L298C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs#L16707566C0-L298C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.GetServiceOrCreateInstanceRegisteredServiceTransient", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs#L304C13-L324C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs#L304C13-L324C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.GetServiceOrCreateInstanceRegisteredServiceSingleton", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs#L329C13-L351C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs#L329C13-L351C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.GetServiceOrCreateInstanceUnregisteredService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs#L356C13-L379C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs#L356C13-L379C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.UnRegisteredServiceAsConstructorParameterThrowsException(Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.CreateInstanceFunc)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs#L385C13-L394C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs#L16707566C0-L394C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.CreateInstance_WithAbstractTypeAndPublicConstructor_ThrowsCorrectException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs#L400C13-L407C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs#L16707566C0-L407C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.CreateInstance_CapturesInnerException_OfTargetInvocationException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs#L413C13-L419C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs#L16707566C0-L419C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.CreateServiceProvider(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.ServicesRegisteredWithImplementationTypeCanBeResolved", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L21C13-L31C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L21C13-L31C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.ServicesRegisteredWithImplementationType_ReturnDifferentInstancesPerResolution_ForTransientServices", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L37C13-L49C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L37C13-L49C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.ServicesRegisteredWithImplementationType_ReturnSameInstancesPerResolution_ForSingletons", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L55C13-L67C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L55C13-L67C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.ServiceInstanceCanBeResolved", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L73C13-L83C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L73C13-L83C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.TransientServiceCanBeResolvedFromProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L89C13-L100C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L89C13-L100C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.TransientServiceCanBeResolvedFromScope", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L106C13-L123C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L106C13-L123C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.NonSingletonService_WithInjectedProvider_ResolvesScopeProvider(Microsoft.Extensions.DependencyInjection.ServiceLifetime)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L131C13-L164C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L131C13-L164C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.SingletonServiceCanBeResolvedFromScope", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L170C13-L196C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L170C13-L196C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.SingleServiceCanBeIEnumerableResolved", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L202C13-L213C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L202C13-L213C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.MultipleServiceCanBeIEnumerableResolved", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L219C13-L231C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L219C13-L231C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.RegistrationOrderIsPreservedWhenServicesAreIEnumerableResolved", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L237C13-L258C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L237C13-L258C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.OuterServiceCanHaveOtherServicesInjected", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L264C13-L280C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L264C13-L280C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.FactoryServicesCanBeCreatedByGetService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L286C13-L307C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L286C13-L307C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.FactoryServicesAreCreatedAsPartOfCreatingObjectGraph", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L313C13-L351C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L313C13-L351C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.LastServiceReplacesPreviousServices", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L357C13-L367C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L357C13-L367C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.SingletonServiceCanBeResolved", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L373C13-L384C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L373C13-L384C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.ServiceProviderRegistersServiceScopeFactory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L390C13-L398C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L390C13-L398C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.ServiceScopeFactoryIsSingleton", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L404C13-L418C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L404C13-L418C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.ScopedServiceCanBeResolved", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L424C13-L439C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L424C13-L439C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.NestedScopedServiceCanBeResolved", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L445C13-L461C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L445C13-L461C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.ScopedServices_FromCachedScopeFactory_CanBeResolvedAndDisposed", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L467C13-L496C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L467C13-L496C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.ScopesAreFlatNotHierarchical", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L502C13-L514C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L502C13-L514C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.ServiceProviderIsDisposable", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L519C13-L522C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L519C13-L522C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.DisposingScopeDisposesService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L528C13-L563C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L528C13-L563C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.SelfResolveThenDispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L569C13-L578C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L569C13-L578C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.SafelyDisposeNestedProviderReferences", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L584C13-L594C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L584C13-L594C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.SingletonServicesComeFromRootProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L600C13-L625C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L600C13-L625C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.NestedScopedServiceCanBeResolvedWithNoFallbackProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L631C13-L645C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L631C13-L645C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.OpenGenericServicesCanBeResolved", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L651C13-L662C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L651C13-L662C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.ConstrainedOpenGenericServicesCanBeResolved", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L668C13-L685C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L668C13-L685C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.ConstrainedOpenGenericServicesReturnsEmptyWithNoMatches", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L691C13-L699C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L691C13-L699C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.InterfaceConstrainedOpenGenericServicesCanBeResolved", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L705C13-L722C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L705C13-L722C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.AbstractClassConstrainedOpenGenericServicesCanBeResolved", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L728C13-L745C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L728C13-L745C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.ClosedServicesPreferredOverOpenGenericServices", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L751C13-L762C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L751C13-L762C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.ResolvingEnumerableContainingOpenGenericServiceUsesCorrectSlot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L769C13-L784C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L769C13-L784C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.AttemptingToResolveNonexistentServiceReturnsNull", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L790C13-L798C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L790C13-L798C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.NonexistentServiceCanBeIEnumerableResolved", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L804C13-L812C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L804C13-L812C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.ServiceContainerPicksConstructorWithLongestMatches(Microsoft.Extensions.DependencyInjection.IServiceCollection,Microsoft.Extensions.DependencyInjection.Specification.Fakes.TypeWithSupersetConstructors)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L867C13-L879C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L867C13-L879C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.DisposesInReverseOrderOfCreation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L885C13-L905C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L885C13-L905C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.ResolvesMixedOpenClosedGenericsAsEnumerable", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L911C13-L932C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L911C13-L932C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.ResolvesDifferentInstancesForServiceWhenResolvingEnumerable(System.Type,System.Type,System.Type,Microsoft.Extensions.DependencyInjection.ServiceLifetime)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L942C13-L966C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L942C13-L966C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.ExplicitServiceRegisterationWithIsService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ServiceProviderIsServiceSpecificationTests.cs#L19C13-L36C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ServiceProviderIsServiceSpecificationTests.cs#L19C13-L36C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.OpenGenericsWithIsService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ServiceProviderIsServiceSpecificationTests.cs#L41C13-L58C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ServiceProviderIsServiceSpecificationTests.cs#L41C13-L58C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.ClosedGenericsWithIsService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ServiceProviderIsServiceSpecificationTests.cs#L63C13-L79C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ServiceProviderIsServiceSpecificationTests.cs#L63C13-L79C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.IEnumerableWithIsServiceAlwaysReturnsTrue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ServiceProviderIsServiceSpecificationTests.cs#L84C13-L102C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ServiceProviderIsServiceSpecificationTests.cs#L84C13-L102C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.BuiltInServicesWithIsServiceReturnsTrue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ServiceProviderIsServiceSpecificationTests.cs#L107C13-L125C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ServiceProviderIsServiceSpecificationTests.cs#L107C13-L125C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.ExpectStructWithPublicDefaultConstructorInvoked", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs#L15C80-L15C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs#L15C80-L15C85" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.CreateInstanceFuncs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.TypesWithNonPublicConstructorData", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs#L145C13-L147C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs#L145C13-L147C56" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.ServiceContainerPicksConstructorWithLongestMatchesData", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L818C17-L856C19" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs#L818C17-L856C19" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.SupportsIServiceProviderIsService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ServiceProviderIsServiceSpecificationTests.cs#L14C66-L14C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ServiceProviderIsServiceSpecificationTests.cs#L14C66-L14C70" }, { "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.CreateInstanceFunc", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/DependencyInjectionSpecificationTests.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.ClassWithOptionalArgsCtor.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithOptionalArgsCtor.cs#L8C9-L11C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithOptionalArgsCtor.cs#L8C9-L11C10" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.ClassWithOptionalArgsCtor.Whatever", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithOptionalArgsCtor.cs#L13C34-L13C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithOptionalArgsCtor.cs#L13C34-L13C38" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.ClassWithOptionalArgsCtor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithOptionalArgsCtor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithOptionalArgsCtor.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.ClassWithOptionalArgsCtorWithStructs.#ctor(System.DateTime,System.DateTime,System.TimeSpan,System.TimeSpan,System.DateTimeOffset,System.DateTimeOffset,System.Guid,System.Guid,Microsoft.Extensions.DependencyInjection.Specification.ClassWithOptionalArgsCtorWithStructs.CustomStruct,Microsoft.Extensions.DependencyInjection.Specification.ClassWithOptionalArgsCtorWithStructs.CustomStruct,System.Nullable{System.ConsoleColor},System.Nullable{System.ConsoleColor},System.Nullable{System.Int32},System.Nullable{System.Int32},Microsoft.Extensions.DependencyInjection.Specification.ClassWithOptionalArgsCtorWithStructs.StructWithPublicDefaultConstructor)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithOptionalArgsCtorWithStructs.cs#L19C9-L43C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithOptionalArgsCtorWithStructs.cs#L19C9-L43C10" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.ClassWithOptionalArgsCtorWithStructs.Color", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithOptionalArgsCtorWithStructs.cs#L10C38-L10C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithOptionalArgsCtorWithStructs.cs#L10C38-L10C42" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.ClassWithOptionalArgsCtorWithStructs.ColorNull", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithOptionalArgsCtorWithStructs.cs#L11C42-L11C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithOptionalArgsCtorWithStructs.cs#L11C42-L11C46" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.ClassWithOptionalArgsCtorWithStructs.Integer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithOptionalArgsCtorWithStructs.cs#L13C31-L13C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithOptionalArgsCtorWithStructs.cs#L13C31-L13C35" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.ClassWithOptionalArgsCtorWithStructs.IntegerNull", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithOptionalArgsCtorWithStructs.cs#L14C35-L14C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithOptionalArgsCtorWithStructs.cs#L14C35-L14C39" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.ClassWithOptionalArgsCtorWithStructs.StructWithConstructor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithOptionalArgsCtorWithStructs.cs#L16C75-L16C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithOptionalArgsCtorWithStructs.cs#L16C75-L16C79" }, { "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.ClassWithOptionalArgsCtorWithStructs.CustomStruct", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithOptionalArgsCtorWithStructs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithOptionalArgsCtorWithStructs.cs" }, { "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.ClassWithOptionalArgsCtorWithStructs.StructWithPublicDefaultConstructor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithOptionalArgsCtorWithStructs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithOptionalArgsCtorWithStructs.cs" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.ClassWithOptionalArgsCtorWithStructs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithOptionalArgsCtorWithStructs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithOptionalArgsCtorWithStructs.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests.CreateServiceProvider(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests.ResolveKeyedService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L19C13-L30C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L19C13-L30C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests.ResolveNullKeyedService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L35C13-L46C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L35C13-L46C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests.ResolveNonKeyedService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L51C13-L62C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L51C13-L62C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests.ResolveKeyedOpenGenericService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L67C13-L78C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L67C13-L78C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests.ResolveKeyedServices", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L83C13-L101C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L83C13-L101C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests.ResolveKeyedServicesAnyKey", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L106C13-L130C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L106C13-L130C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests.ResolveKeyedServicesAnyKeyWithAnyKeyRegistration", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L135C13-L159C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L135C13-L159C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests.ResolveKeyedGenericServices", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L164C13-L182C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L164C13-L182C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests.ResolveKeyedServiceSingletonInstance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L187C13-L195C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L187C13-L195C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests.ResolveKeyedServiceSingletonInstanceWithKeyInjection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L200C13-L210C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L200C13-L210C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests.ResolveKeyedServiceSingletonInstanceWithAnyKey", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L215C13-L231C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L215C13-L231C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests.ResolveKeyedServicesSingletonInstanceWithAnyKey", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L236C13-L247C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L236C13-L247C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests.ResolveKeyedServiceSingletonInstanceWithKeyedParameter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L252C13-L264C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L252C13-L264C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests.CreateServiceWithKeyedParameter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L269C13-L281C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L269C13-L281C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests.ResolveKeyedServiceSingletonFactory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L286C13-L294C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L16707566C0-L294C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests.ResolveKeyedServiceSingletonFactoryWithAnyKey", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L299C13-L314C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L299C13-L314C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests.ResolveKeyedServiceSingletonFactoryWithAnyKeyIgnoreWrongType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L319C13-L327C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L16707566C0-L327C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests.ResolveKeyedServiceSingletonType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L332C13-L339C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L332C13-L339C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests.ResolveKeyedServiceTransientFactory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L344C13-L355C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L344C13-L355C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests.ResolveKeyedServiceTransientType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L360C13-L369C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L360C13-L369C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests.ResolveKeyedServiceTransientTypeWithAnyKey", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L374C13-L383C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L374C13-L383C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests.ResolveKeyedSingletonFromInjectedServiceProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L388C13-L401C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L388C13-L401C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests.ResolveKeyedTransientFromInjectedServiceProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L406C13-L419C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L406C13-L419C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests.ResolveKeyedSingletonFromScopeServiceProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L424C13-L443C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L424C13-L443C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests.ResolveKeyedScopedFromScopeServiceProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L448C13-L467C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L448C13-L467C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests.ResolveKeyedTransientFromScopeServiceProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L472C13-L491C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L472C13-L491C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests.SimpleServiceKeyedResolution", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L542C17-L554C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L542C17-L554C14" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests.ExplicitServiceRegistrationWithIsKeyedService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ServiceProviderIsKeyedServiceSpecificationTests.cs#L19C13-L37C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ServiceProviderIsKeyedServiceSpecificationTests.cs#L19C13-L37C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests.OpenGenericsWithIsKeyedService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ServiceProviderIsKeyedServiceSpecificationTests.cs#L42C13-L60C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ServiceProviderIsKeyedServiceSpecificationTests.cs#L42C13-L60C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests.ClosedGenericsWithIsKeyedService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ServiceProviderIsKeyedServiceSpecificationTests.cs#L65C13-L82C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ServiceProviderIsKeyedServiceSpecificationTests.cs#L65C13-L82C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests.IEnumerableWithIsKeyedServiceAlwaysReturnsTrue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ServiceProviderIsKeyedServiceSpecificationTests.cs#L87C13-L106C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ServiceProviderIsKeyedServiceSpecificationTests.cs#L87C13-L106C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests.NonKeyedServiceWithIsKeyedService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ServiceProviderIsKeyedServiceSpecificationTests.cs#L111C13-L127C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ServiceProviderIsKeyedServiceSpecificationTests.cs#L111C13-L127C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests.SupportsIServiceProviderIsKeyedService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ServiceProviderIsKeyedServiceSpecificationTests.cs#L14C71-L14C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ServiceProviderIsKeyedServiceSpecificationTests.cs#L14C71-L14C75" }, { "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests.SimpleParentWithDynamicKeyedService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs" }, { "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests.ISimpleService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs" }, { "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests.SimpleService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs" }, { "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests.AnotherSimpleService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.AbstractClass.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/AbstractClass.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/AbstractClass.cs" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.AbstractClass", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/AbstractClass.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/AbstractClass.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.AnotherClass.#ctor(Microsoft.Extensions.DependencyInjection.Specification.Fakes.IFakeService)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/AnotherClass.cs#L8C9-L11C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/AnotherClass.cs#L8C9-L11C10" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.Fakes.AnotherClass.FakeService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/AnotherClass.cs#L13C43-L13C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/AnotherClass.cs#L13C43-L13C47" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.AnotherClass", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/AnotherClass.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/AnotherClass.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.AnotherClassAcceptingData.#ctor(Microsoft.Extensions.DependencyInjection.Specification.Fakes.IFakeService,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/AnotherClassAcceptingData.cs#L8C9-L13C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/AnotherClassAcceptingData.cs#L8C9-L13C10" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.Fakes.AnotherClassAcceptingData.FakeService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/AnotherClassAcceptingData.cs#L15C43-L15C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/AnotherClassAcceptingData.cs#L15C43-L15C47" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.Fakes.AnotherClassAcceptingData.One", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/AnotherClassAcceptingData.cs#L17C29-L17C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/AnotherClassAcceptingData.cs#L17C29-L17C33" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.Fakes.AnotherClassAcceptingData.Two", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/AnotherClassAcceptingData.cs#L19C29-L19C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/AnotherClassAcceptingData.cs#L19C29-L19C33" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.AnotherClassAcceptingData", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/AnotherClassAcceptingData.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/AnotherClassAcceptingData.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassImplementingIComparable.CompareTo(Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassImplementingIComparable)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassImplementingIComparable.cs#L10C69-L10C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassImplementingIComparable.cs#L10C69-L10C70" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassImplementingIComparable.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassImplementingIComparable.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassImplementingIComparable.cs" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassImplementingIComparable", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassImplementingIComparable.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassImplementingIComparable.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassImplementingIEnumerable.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassImplementingIEnumerable.cs#L11C47-L11C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassImplementingIEnumerable.cs#L11C47-L11C82" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassImplementingIEnumerable.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassImplementingIEnumerable.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassImplementingIEnumerable.cs" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassImplementingIEnumerable", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassImplementingIEnumerable.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassImplementingIEnumerable.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassInheritingAbstractClass.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassInheritingAbstractClass.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassInheritingAbstractClass.cs" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassInheritingAbstractClass", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassInheritingAbstractClass.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassInheritingAbstractClass.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassAlsoInheritingAbstractClass.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassInheritingAbstractClass.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassInheritingAbstractClass.cs" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassAlsoInheritingAbstractClass", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassInheritingAbstractClass.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassInheritingAbstractClass.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassInheritingClassInheritingAbstractClass.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassInheritingAbstractClass.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassInheritingAbstractClass.cs" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassInheritingClassInheritingAbstractClass", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassInheritingAbstractClass.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassInheritingAbstractClass.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithAbstractClassConstraint`1.#ctor(`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithAbstractClassConstraint.cs#L9C9-L9C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithAbstractClassConstraint.cs#L9C9-L9C74" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithAbstractClassConstraint`1.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithAbstractClassConstraint.cs#L11C26-L11C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithAbstractClassConstraint.cs#L11C26-L11C30" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithAbstractClassConstraint`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithAbstractClassConstraint.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithAbstractClassConstraint.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithAmbiguousCtors.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithAmbiguousCtors.cs#L8C9-L11C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithAmbiguousCtors.cs#L8C9-L11C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithAmbiguousCtors.#ctor(Microsoft.Extensions.DependencyInjection.Specification.Fakes.IFakeService,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithAmbiguousCtors.cs#L13C9-L16C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithAmbiguousCtors.cs#L13C9-L16C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithAmbiguousCtors.#ctor(Microsoft.Extensions.DependencyInjection.Specification.Fakes.IFakeService,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithAmbiguousCtors.cs#L18C9-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithAmbiguousCtors.cs#L18C9-L21C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithAmbiguousCtors.#ctor(Microsoft.Extensions.DependencyInjection.Specification.Fakes.IFakeService,System.String,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithAmbiguousCtors.cs#L23C9-L30C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithAmbiguousCtors.cs#L23C9-L30C10" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithAmbiguousCtors.FakeService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithAmbiguousCtors.cs#L32C43-L32C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithAmbiguousCtors.cs#L32C43-L32C47" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithAmbiguousCtors.Data1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithAmbiguousCtors.cs#L34C31-L34C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithAmbiguousCtors.cs#L34C31-L34C35" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithAmbiguousCtors.Data2", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithAmbiguousCtors.cs#L36C28-L36C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithAmbiguousCtors.cs#L36C28-L36C32" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithAmbiguousCtors.CtorUsed", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithAmbiguousCtors.cs#L37C34-L37C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithAmbiguousCtors.cs#L37C34-L37C38" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithAmbiguousCtors", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithAmbiguousCtors.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithAmbiguousCtors.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithAmbiguousCtorsAndAttribute.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithAmbiguousCtorsAndAttribute.cs#L8C9-L11C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithAmbiguousCtorsAndAttribute.cs#L8C9-L11C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithAmbiguousCtorsAndAttribute.#ctor(Microsoft.Extensions.DependencyInjection.Specification.Fakes.IFakeService,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithAmbiguousCtorsAndAttribute.cs#L14C9-L17C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithAmbiguousCtorsAndAttribute.cs#L14C9-L17C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithAmbiguousCtorsAndAttribute.#ctor(Microsoft.Extensions.DependencyInjection.Specification.Fakes.IFakeService,Microsoft.Extensions.DependencyInjection.Specification.Fakes.IFakeOuterService,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithAmbiguousCtorsAndAttribute.cs#L19C9-L22C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithAmbiguousCtorsAndAttribute.cs#L19C9-L22C10" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithAmbiguousCtorsAndAttribute.CtorUsed", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithAmbiguousCtorsAndAttribute.cs#L24C34-L24C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithAmbiguousCtorsAndAttribute.cs#L24C34-L24C38" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithAmbiguousCtorsAndAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithAmbiguousCtorsAndAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithAmbiguousCtorsAndAttribute.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithClassConstraint`1.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithClassConstraint.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithClassConstraint.cs" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithClassConstraint`1.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithClassConstraint.cs#L9C26-L9C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithClassConstraint.cs#L9C26-L9C30" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithClassConstraint`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithClassConstraint.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithClassConstraint.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithInterfaceConstraint`1.#ctor(`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithInterfaceConstraint.cs#L11C9-L11C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithInterfaceConstraint.cs#L11C9-L11C70" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithInterfaceConstraint`1.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithInterfaceConstraint.cs#L13C26-L13C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithInterfaceConstraint.cs#L13C26-L13C30" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithInterfaceConstraint`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithInterfaceConstraint.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithInterfaceConstraint.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithMultipleMarkedCtors.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithMultipleMarkedCtors.cs#L9C9-L11C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithMultipleMarkedCtors.cs#L9C9-L11C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithMultipleMarkedCtors.#ctor(Microsoft.Extensions.DependencyInjection.Specification.Fakes.IFakeService,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithMultipleMarkedCtors.cs#L14C9-L16C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithMultipleMarkedCtors.cs#L14C9-L16C10" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithMultipleMarkedCtors", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithMultipleMarkedCtors.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithMultipleMarkedCtors.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithNestedReferencesToProvider.#ctor(System.IServiceProvider)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithNestedReferencesToProvider.cs#L13C9-L17C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithNestedReferencesToProvider.cs#L13C9-L17C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithNestedReferencesToProvider.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithNestedReferencesToProvider.cs#L30C13-L32C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithNestedReferencesToProvider.cs#L30C13-L32C10" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithNestedReferencesToProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithNestedReferencesToProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithNestedReferencesToProvider.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithNewConstraint`1.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithNewConstraint.cs#L9C35-L9C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithNewConstraint.cs#L9C35-L9C42" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithNewConstraint`1.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithNewConstraint.cs#L9C26-L9C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithNewConstraint.cs#L9C26-L9C30" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithNewConstraint`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithNewConstraint.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithNewConstraint.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithNoConstraints`1.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithNoConstraint.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithNoConstraint.cs" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithNoConstraints`1.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithNoConstraint.cs#L8C26-L8C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithNoConstraint.cs#L8C26-L8C30" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithNoConstraints`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithNoConstraint.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithNoConstraint.cs" }, { "Members": [], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithPrivateCtor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithPrivateCtor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithPrivateCtor.cs" }, { "Members": [], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithProtectedConstructor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithProtectedConstructor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithProtectedConstructor.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithSelfReferencingConstraint`1.#ctor(`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithSelfReferencingConstraint.cs#L11C9-L11C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithSelfReferencingConstraint.cs#L11C9-L11C76" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithSelfReferencingConstraint`1.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithSelfReferencingConstraint.cs#L13C26-L13C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithSelfReferencingConstraint.cs#L13C26-L13C30" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithSelfReferencingConstraint`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithSelfReferencingConstraint.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithSelfReferencingConstraint.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithServiceProvider.#ctor(System.IServiceProvider)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithServiceProvider.cs#L12C9-L15C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithServiceProvider.cs#L12C9-L15C10" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithServiceProvider.ServiceProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithServiceProvider.cs#L17C51-L17C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithServiceProvider.cs#L17C51-L17C55" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithServiceProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithServiceProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithServiceProvider.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithStaticCtor.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithStaticCtor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithStaticCtor.cs" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithStaticCtor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithStaticCtor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithStaticCtor.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithStructConstraint`1.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithStructConstraint.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithStructConstraint.cs" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithStructConstraint`1.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithStructConstraint.cs#L9C26-L9C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithStructConstraint.cs#L9C26-L9C30" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithStructConstraint`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithStructConstraint.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithStructConstraint.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithThrowingCtor.#ctor(Microsoft.Extensions.DependencyInjection.Specification.Fakes.IFakeService)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithThrowingCtor.cs#L10C9-L12C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithThrowingCtor.cs#L10C9-L12C64" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithThrowingCtor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithThrowingCtor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithThrowingCtor.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithThrowingEmptyCtor.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithThrowingEmptyCtor.cs#L10C9-L12C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithThrowingEmptyCtor.cs#L10C9-L12C69" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ClassWithThrowingEmptyCtor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithThrowingEmptyCtor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithThrowingEmptyCtor.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ConstrainedFakeOpenGenericService`1.#ctor(`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ConstrainedFakeOpenGenericService.cs#L9C9-L12C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ConstrainedFakeOpenGenericService.cs#L9C9-L12C10" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ConstrainedFakeOpenGenericService`1.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ConstrainedFakeOpenGenericService.cs#L13C29-L13C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ConstrainedFakeOpenGenericService.cs#L13C29-L13C33" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ConstrainedFakeOpenGenericService`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ConstrainedFakeOpenGenericService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ConstrainedFakeOpenGenericService.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.CreationCountFakeService.#ctor(Microsoft.Extensions.DependencyInjection.Specification.Fakes.IFakeService)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/CreationCountFakeService.cs#L10C9-L14C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/CreationCountFakeService.cs#L10C9-L14C10" }, { "DocsId": "F:Microsoft.Extensions.DependencyInjection.Specification.Fakes.CreationCountFakeService.InstanceLock", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/CreationCountFakeService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/CreationCountFakeService.cs" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.Fakes.CreationCountFakeService.InstanceCount", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/CreationCountFakeService.cs#L16C43-L16C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/CreationCountFakeService.cs#L16C43-L16C47" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.Fakes.CreationCountFakeService.InstanceId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/CreationCountFakeService.cs#L18C33-L18C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/CreationCountFakeService.cs#L18C33-L18C37" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.CreationCountFakeService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/CreationCountFakeService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/CreationCountFakeService.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.FakeDisposableCallbackInnerService.#ctor(Microsoft.Extensions.DependencyInjection.Specification.Fakes.FakeDisposeCallback)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeDisposableCallbackInnerService.cs#L8C83-L10C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeDisposableCallbackInnerService.cs#L8C83-L10C10" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.FakeDisposableCallbackInnerService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeDisposableCallbackInnerService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeDisposableCallbackInnerService.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.FakeDisposableCallbackOuterService.#ctor(Microsoft.Extensions.DependencyInjection.Specification.Fakes.IFakeService,System.Collections.Generic.IEnumerable{Microsoft.Extensions.DependencyInjection.Specification.Fakes.IFakeMultipleService},Microsoft.Extensions.DependencyInjection.Specification.Fakes.FakeDisposeCallback)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeDisposableCallbackOuterService.cs#L14C45-L18C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeDisposableCallbackOuterService.cs#L14C45-L18C10" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.Fakes.FakeDisposableCallbackOuterService.SingleService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeDisposableCallbackOuterService.cs#L20C45-L20C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeDisposableCallbackOuterService.cs#L20C45-L20C49" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.Fakes.FakeDisposableCallbackOuterService.MultipleServices", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeDisposableCallbackOuterService.cs#L21C69-L21C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeDisposableCallbackOuterService.cs#L21C69-L21C73" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.FakeDisposableCallbackOuterService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeDisposableCallbackOuterService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeDisposableCallbackOuterService.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.FakeDisposableCallbackService.#ctor(Microsoft.Extensions.DependencyInjection.Specification.Fakes.FakeDisposeCallback)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeDisposableCallbackService.cs#L14C9-L18C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeDisposableCallbackService.cs#L14C9-L18C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.FakeDisposableCallbackService.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeDisposableCallbackService.cs#L22C13-L23C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeDisposableCallbackService.cs#L22C13-L23C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.FakeDisposableCallbackService.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeDisposableCallbackService.cs#L27C13-L27C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeDisposableCallbackService.cs#L27C13-L27C35" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.FakeDisposableCallbackService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeDisposableCallbackService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeDisposableCallbackService.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.FakeDisposeCallback.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeDisposeCallback.cs#L10C49-L10C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeDisposeCallback.cs#L10C49-L10C67" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.Fakes.FakeDisposeCallback.Disposed", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeDisposeCallback.cs#L10C40-L10C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeDisposeCallback.cs#L10C40-L10C44" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.FakeDisposeCallback", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeDisposeCallback.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeDisposeCallback.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.FakeOneMultipleService.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeOneMultipleService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeOneMultipleService.cs" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.FakeOneMultipleService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeOneMultipleService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeOneMultipleService.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.FakeOpenGenericService`1.#ctor(`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeOpenGenericService.cs#L8C9-L11C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeOpenGenericService.cs#L8C9-L11C10" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.Fakes.FakeOpenGenericService`1.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeOpenGenericService.cs#L13C29-L13C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeOpenGenericService.cs#L13C29-L13C33" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.FakeOpenGenericService`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeOpenGenericService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeOpenGenericService.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.FakeOuterService.#ctor(Microsoft.Extensions.DependencyInjection.Specification.Fakes.IFakeService,System.Collections.Generic.IEnumerable{Microsoft.Extensions.DependencyInjection.Specification.Fakes.IFakeMultipleService})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeOuterService.cs#L10C9-L16C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeOuterService.cs#L10C9-L16C10" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.Fakes.FakeOuterService.SingleService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeOuterService.cs#L18C45-L18C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeOuterService.cs#L18C45-L18C49" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.Fakes.FakeOuterService.MultipleServices", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeOuterService.cs#L20C69-L20C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeOuterService.cs#L20C69-L20C73" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.FakeOuterService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeOuterService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeOuterService.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.FakeService.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeService.cs#L16C13-L22C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeService.cs#L16C13-L22C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.FakeService.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeService.cs" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.Fakes.FakeService.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeService.cs#L10C34-L10C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeService.cs#L10C34-L10C38" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.Fakes.FakeService.Disposed", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeService.cs#L12C32-L12C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeService.cs#L12C32-L12C36" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.FakeService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeService.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.FakeTwoMultipleService.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeTwoMultipleService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeTwoMultipleService.cs" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.FakeTwoMultipleService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeTwoMultipleService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/FakeTwoMultipleService.cs" }, { "Members": [ { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.Fakes.IFactoryService.FakeService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/IFactoryService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/IFactoryService.cs" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.Fakes.IFactoryService.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/IFactoryService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/IFactoryService.cs" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.IFactoryService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/IFactoryService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/IFactoryService.cs" }, { "Members": [], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.IFakeEveryService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/IFakeEveryService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/IFakeEveryService.cs" }, { "Members": [], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.IFakeMultipleService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/IFakeMultipleService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/IFakeMultipleService.cs" }, { "Members": [ { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.Fakes.IFakeOpenGenericService`1.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/IFakeOpenGenericService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/IFakeOpenGenericService.cs" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.IFakeOpenGenericService`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/IFakeOpenGenericService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/IFakeOpenGenericService.cs" }, { "Members": [ { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.Fakes.IFakeOuterService.SingleService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/IFakeOuterService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/IFakeOuterService.cs" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.Fakes.IFakeOuterService.MultipleServices", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/IFakeOuterService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/IFakeOuterService.cs" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.IFakeOuterService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/IFakeOuterService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/IFakeOuterService.cs" }, { "Members": [], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.IFakeScopedService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/IFakeScopedService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/IFakeScopedService.cs" }, { "Members": [], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.IFakeService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/IFakeService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/IFakeService.cs" }, { "Members": [], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.IFakeServiceInstance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/IFakeServiceInstance.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/IFakeServiceInstance.cs" }, { "Members": [], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.IFakeSingletonService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/IFakeSingletonService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/IFakeSingletonService.cs" }, { "Members": [], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.INonexistentService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/INonexistentService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/INonexistentService.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.PocoClass.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/PocoClass.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/PocoClass.cs" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.PocoClass", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/PocoClass.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/PocoClass.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ScopedFactoryService.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ScopedFactoryService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ScopedFactoryService.cs" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ScopedFactoryService.FakeService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ScopedFactoryService.cs#L8C43-L8C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ScopedFactoryService.cs#L8C43-L8C47" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ScopedFactoryService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ScopedFactoryService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ScopedFactoryService.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ServiceAcceptingFactoryService.#ctor(Microsoft.Extensions.DependencyInjection.Specification.Fakes.ScopedFactoryService,Microsoft.Extensions.DependencyInjection.Specification.Fakes.IFactoryService)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ServiceAcceptingFactoryService.cs#L8C9-L14C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ServiceAcceptingFactoryService.cs#L8C9-L14C10" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ServiceAcceptingFactoryService.ScopedService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ServiceAcceptingFactoryService.cs#L16C53-L16C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ServiceAcceptingFactoryService.cs#L16C53-L16C57" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ServiceAcceptingFactoryService.TransientService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ServiceAcceptingFactoryService.cs#L18C51-L18C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ServiceAcceptingFactoryService.cs#L18C51-L18C55" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.ServiceAcceptingFactoryService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ServiceAcceptingFactoryService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ServiceAcceptingFactoryService.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.TransientFactoryService.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/TransientFactoryService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/TransientFactoryService.cs" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.Fakes.TransientFactoryService.FakeService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/TransientFactoryService.cs#L8C43-L8C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/TransientFactoryService.cs#L8C43-L8C47" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.Fakes.TransientFactoryService.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/TransientFactoryService.cs#L10C28-L10C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/TransientFactoryService.cs#L10C28-L10C32" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.TransientFactoryService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/TransientFactoryService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/TransientFactoryService.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.TypeWithSupersetConstructors.#ctor(Microsoft.Extensions.DependencyInjection.Specification.Fakes.IFactoryService)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/TypeWithSupersetConstructors.cs#L9C15-L13C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/TypeWithSupersetConstructors.cs#L9C15-L13C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.TypeWithSupersetConstructors.#ctor(Microsoft.Extensions.DependencyInjection.Specification.Fakes.IFakeService)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/TypeWithSupersetConstructors.cs#L16C15-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/TypeWithSupersetConstructors.cs#L16C15-L20C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.TypeWithSupersetConstructors.#ctor(Microsoft.Extensions.DependencyInjection.Specification.Fakes.IFakeService,Microsoft.Extensions.DependencyInjection.Specification.Fakes.IFactoryService)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/TypeWithSupersetConstructors.cs#L25C15-L30C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/TypeWithSupersetConstructors.cs#L25C15-L30C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.TypeWithSupersetConstructors.#ctor(Microsoft.Extensions.DependencyInjection.Specification.Fakes.IFakeService,Microsoft.Extensions.DependencyInjection.Specification.Fakes.IFakeMultipleService,Microsoft.Extensions.DependencyInjection.Specification.Fakes.IFactoryService)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/TypeWithSupersetConstructors.cs#L36C15-L42C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/TypeWithSupersetConstructors.cs#L36C15-L42C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.Fakes.TypeWithSupersetConstructors.#ctor(Microsoft.Extensions.DependencyInjection.Specification.Fakes.IFakeMultipleService,Microsoft.Extensions.DependencyInjection.Specification.Fakes.IFactoryService,Microsoft.Extensions.DependencyInjection.Specification.Fakes.IFakeService,Microsoft.Extensions.DependencyInjection.Specification.Fakes.IFakeScopedService)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/TypeWithSupersetConstructors.cs#L44C9-L54C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/TypeWithSupersetConstructors.cs#L44C9-L54C10" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.Fakes.TypeWithSupersetConstructors.Service", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/TypeWithSupersetConstructors.cs#L56C39-L56C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/TypeWithSupersetConstructors.cs#L56C39-L56C43" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.Fakes.TypeWithSupersetConstructors.FactoryService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/TypeWithSupersetConstructors.cs#L58C49-L58C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/TypeWithSupersetConstructors.cs#L58C49-L58C53" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.Fakes.TypeWithSupersetConstructors.MultipleService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/TypeWithSupersetConstructors.cs#L60C55-L60C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/TypeWithSupersetConstructors.cs#L60C55-L60C59" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.Fakes.TypeWithSupersetConstructors.ScopedService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/TypeWithSupersetConstructors.cs#L62C51-L62C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/TypeWithSupersetConstructors.cs#L62C51-L62C55" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.Fakes.TypeWithSupersetConstructors", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/TypeWithSupersetConstructors.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/TypeWithSupersetConstructors.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.CreateInstanceFunc.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.CreateInstanceFunc.Invoke(System.IServiceProvider,System.Type,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.CreateInstanceFunc.BeginInvoke(System.IServiceProvider,System.Type,System.Object[],System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.CreateInstanceFunc.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.DependencyInjectionSpecificationTests.CreateInstanceFunc", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/ActivatorUtilitiesTests.cs" }, { "Members": [], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.ClassWithOptionalArgsCtorWithStructs.CustomStruct", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithOptionalArgsCtorWithStructs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithOptionalArgsCtorWithStructs.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.ClassWithOptionalArgsCtorWithStructs.StructWithPublicDefaultConstructor.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithOptionalArgsCtorWithStructs.cs#L53C17-L54C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithOptionalArgsCtorWithStructs.cs#L53C17-L54C14" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.Specification.ClassWithOptionalArgsCtorWithStructs.StructWithPublicDefaultConstructor.ConstructorInvoked", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithOptionalArgsCtorWithStructs.cs#L49C46-L49C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithOptionalArgsCtorWithStructs.cs#L49C46-L49C50" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.ClassWithOptionalArgsCtorWithStructs.StructWithPublicDefaultConstructor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithOptionalArgsCtorWithStructs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/Fakes/ClassWithOptionalArgsCtorWithStructs.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests.SimpleParentWithDynamicKeyedService.#ctor(System.IServiceProvider)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L560C13-L563C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L560C13-L563C14" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests.SimpleParentWithDynamicKeyedService.GetService(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L565C62-L565C117" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs#L565C62-L565C117" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests.SimpleParentWithDynamicKeyedService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs" }, { "Members": [], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests.ISimpleService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests.SimpleService.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests.SimpleService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests.AnotherSimpleService.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests.AnotherSimpleService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection.Specification.Tests/src/KeyedDependencyInjectionSpecificationTests.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.DependencyInjection.json b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.DependencyInjection.json index 182dcdde15d..1a493913b7b 100644 --- a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.DependencyInjection.json +++ b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.DependencyInjection.json @@ -1,91 +1,90 @@ { "Assembly": "Microsoft.Extensions.DependencyInjection", - "GUID": "FF65EABD81CB4291B7E1E0727FD233B0FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "81ECA5ECE2A64B149A13E63C5EA1FAA0FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.DefaultServiceProviderFactory.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection/src/DefaultServiceProviderFactory.cs#L19C50-L22C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection/src/DefaultServiceProviderFactory.cs#L19C50-L22C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.DefaultServiceProviderFactory.#ctor(Microsoft.Extensions.DependencyInjection.ServiceProviderOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection/src/DefaultServiceProviderFactory.cs#L29C9-L32C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection/src/DefaultServiceProviderFactory.cs#L29C9-L32C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.DefaultServiceProviderFactory.CreateBuilder(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection/src/DefaultServiceProviderFactory.cs#L37C13-L37C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection/src/DefaultServiceProviderFactory.cs#L37C13-L37C29" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.DefaultServiceProviderFactory.CreateServiceProvider(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection/src/DefaultServiceProviderFactory.cs#L43C13-L43C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection/src/DefaultServiceProviderFactory.cs#L43C13-L43C68" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.DefaultServiceProviderFactory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection/src/DefaultServiceProviderFactory.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection/src/DefaultServiceProviderFactory.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionContainerBuilderExtensions.BuildServiceProvider(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection/src/ServiceCollectionContainerBuilderExtensions.cs#L20C13-L20C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection/src/ServiceCollectionContainerBuilderExtensions.cs#L20C13-L20C83" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionContainerBuilderExtensions.BuildServiceProvider(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection/src/ServiceCollectionContainerBuilderExtensions.cs#L34C13-L34C114" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection/src/ServiceCollectionContainerBuilderExtensions.cs#L34C13-L34C114" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionContainerBuilderExtensions.BuildServiceProvider(Microsoft.Extensions.DependencyInjection.IServiceCollection,Microsoft.Extensions.DependencyInjection.ServiceProviderOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection/src/ServiceCollectionContainerBuilderExtensions.cs#L48C13-L57C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection/src/ServiceCollectionContainerBuilderExtensions.cs#L48C13-L57C59" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.ServiceCollectionContainerBuilderExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection/src/ServiceCollectionContainerBuilderExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection/src/ServiceCollectionContainerBuilderExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceProvider.GetService(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection/src/ServiceProvider.cs#L101C56-L101C120" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection/src/ServiceProvider.cs#L101C56-L101C120" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceProvider.GetKeyedService(System.Type,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection/src/ServiceProvider.cs#L110C16-L110C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection/src/ServiceProvider.cs#L110C16-L110C62" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceProvider.GetRequiredKeyedService(System.Type,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection/src/ServiceProvider.cs#L123C16-L123C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection/src/ServiceProvider.cs#L123C16-L123C70" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceProvider.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection/src/ServiceProvider.cs#L140C13-L142C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection/src/ServiceProvider.cs#L140C13-L142C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceProvider.DisposeAsync", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection/src/ServiceProvider.cs#L147C13-L148C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection/src/ServiceProvider.cs#L147C13-L148C40" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.ServiceProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection/src/ServiceProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection/src/ServiceProvider.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceProviderOptions.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection/src/ServiceProviderOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection/src/ServiceProviderOptions.cs" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.ServiceProviderOptions.ValidateScopes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection/src/ServiceProviderOptions.cs#L19C38-L19C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection/src/ServiceProviderOptions.cs#L19C38-L19C42" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.ServiceProviderOptions.ValidateOnBuild", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection/src/ServiceProviderOptions.cs#L25C39-L25C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection/src/ServiceProviderOptions.cs#L25C39-L25C43" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.ServiceProviderOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyInjection/src/ServiceProviderOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyInjection/src/ServiceProviderOptions.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.DependencyModel.json b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.DependencyModel.json index 4bf7e61d6c1..e276f048cc5 100644 --- a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.DependencyModel.json +++ b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.DependencyModel.json @@ -1,665 +1,664 @@ { "Assembly": "Microsoft.Extensions.DependencyModel", - "GUID": "C26778A49EA84C609ED255CC39995A7FFFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "0C4AC0E87AD8424B8E3C643DA5A785DBFFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:System.Collections.Generic.CollectionExtensions.GetDefaultGroup(System.Collections.Generic.IEnumerable{Microsoft.Extensions.DependencyModel.RuntimeAssetGroup})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/CollectionExtensions.cs#L11C103-L11C131" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/CollectionExtensions.cs#L11C103-L11C131" }, { "DocsId": "M:System.Collections.Generic.CollectionExtensions.GetRuntimeGroup(System.Collections.Generic.IEnumerable{Microsoft.Extensions.DependencyModel.RuntimeAssetGroup},System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/CollectionExtensions.cs#L15C13-L19C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/CollectionExtensions.cs#L15C13-L19C44" }, { "DocsId": "M:System.Collections.Generic.CollectionExtensions.GetDefaultAssets(System.Collections.Generic.IEnumerable{Microsoft.Extensions.DependencyModel.RuntimeAssetGroup})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/CollectionExtensions.cs#L27C105-L27C134" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/CollectionExtensions.cs#L27C105-L27C134" }, { "DocsId": "M:System.Collections.Generic.CollectionExtensions.GetRuntimeAssets(System.Collections.Generic.IEnumerable{Microsoft.Extensions.DependencyModel.RuntimeAssetGroup},System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/CollectionExtensions.cs#L30C13-L34C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/CollectionExtensions.cs#L30C13-L34C45" }, { "DocsId": "M:System.Collections.Generic.CollectionExtensions.GetDefaultRuntimeFileAssets(System.Collections.Generic.IEnumerable{Microsoft.Extensions.DependencyModel.RuntimeAssetGroup})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/CollectionExtensions.cs#L51C121-L51C156" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/CollectionExtensions.cs#L51C121-L51C156" }, { "DocsId": "M:System.Collections.Generic.CollectionExtensions.GetRuntimeFileAssets(System.Collections.Generic.IEnumerable{Microsoft.Extensions.DependencyModel.RuntimeAssetGroup},System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/CollectionExtensions.cs#L54C13-L58C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/CollectionExtensions.cs#L54C13-L58C51" } ], "DocsId": "T:System.Collections.Generic.CollectionExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/CollectionExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/CollectionExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.DotNet.PlatformAbstractions.HashCodeCombiner.Add(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/HashCodeCombiner.cs#L32C13-L33C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/HashCodeCombiner.cs#L32C13-L33C10" }, { "DocsId": "M:Microsoft.DotNet.PlatformAbstractions.HashCodeCombiner.Add(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/HashCodeCombiner.cs#L38C13-L40C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/HashCodeCombiner.cs#L38C13-L40C10" }, { "DocsId": "M:Microsoft.DotNet.PlatformAbstractions.HashCodeCombiner.Add(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/HashCodeCombiner.cs#L45C13-L47C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/HashCodeCombiner.cs#L45C13-L47C10" }, { "DocsId": "M:Microsoft.DotNet.PlatformAbstractions.HashCodeCombiner.Add``1(``0,System.Collections.Generic.IEqualityComparer{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/HashCodeCombiner.cs#L52C13-L54C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/HashCodeCombiner.cs#L52C13-L54C10" }, { "DocsId": "M:Microsoft.DotNet.PlatformAbstractions.HashCodeCombiner.Start", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/HashCodeCombiner.cs#L59C13-L59C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/HashCodeCombiner.cs#L59C13-L59C50" }, { "DocsId": "P:Microsoft.DotNet.PlatformAbstractions.HashCodeCombiner.CombinedHash", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/HashCodeCombiner.cs#L20C19-L20C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/HashCodeCombiner.cs#L20C19-L20C56" } ], "DocsId": "T:Microsoft.DotNet.PlatformAbstractions.HashCodeCombiner", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/HashCodeCombiner.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/HashCodeCombiner.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyModel.CompilationLibrary.#ctor(System.String,System.String,System.String,System.String,System.Collections.Generic.IEnumerable{System.String},System.Collections.Generic.IEnumerable{Microsoft.Extensions.DependencyModel.Dependency},System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/CompilationLibrary.cs#L20C15-L22C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/CompilationLibrary.cs#L20C15-L22C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyModel.CompilationLibrary.#ctor(System.String,System.String,System.String,System.String,System.Collections.Generic.IEnumerable{System.String},System.Collections.Generic.IEnumerable{Microsoft.Extensions.DependencyModel.Dependency},System.Boolean,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/CompilationLibrary.cs#L33C15-L38C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/CompilationLibrary.cs#L33C15-L38C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyModel.CompilationLibrary.ResolveReferencePaths", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/CompilationLibrary.cs#L51C13-L53C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/CompilationLibrary.cs#L51C13-L53C71" }, { "DocsId": "M:Microsoft.Extensions.DependencyModel.CompilationLibrary.ResolveReferencePaths(Microsoft.Extensions.DependencyModel.Resolution.ICompilationAssemblyResolver[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/CompilationLibrary.cs#L58C13-L71C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/CompilationLibrary.cs#L58C13-L71C71" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.CompilationLibrary.Assemblies", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/CompilationLibrary.cs#L40C51-L40C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/CompilationLibrary.cs#L40C51-L40C55" } ], "DocsId": "T:Microsoft.Extensions.DependencyModel.CompilationLibrary", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/CompilationLibrary.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/CompilationLibrary.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyModel.CompilationOptions.#ctor(System.Collections.Generic.IEnumerable{System.String},System.String,System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/CompilationOptions.cs#L50C9-L77C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/CompilationOptions.cs#L50C9-L77C10" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.CompilationOptions.Defines", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/CompilationOptions.cs#L12C49-L12C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/CompilationOptions.cs#L12C49-L12C53" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.CompilationOptions.LanguageVersion", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/CompilationOptions.cs#L14C42-L14C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/CompilationOptions.cs#L14C42-L14C46" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.CompilationOptions.Platform", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/CompilationOptions.cs#L16C35-L16C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/CompilationOptions.cs#L16C35-L16C39" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.CompilationOptions.AllowUnsafe", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/CompilationOptions.cs#L18C36-L18C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/CompilationOptions.cs#L18C36-L18C40" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.CompilationOptions.WarningsAsErrors", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/CompilationOptions.cs#L20C41-L20C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/CompilationOptions.cs#L20C41-L20C45" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.CompilationOptions.Optimize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/CompilationOptions.cs#L22C33-L22C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/CompilationOptions.cs#L22C33-L22C37" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.CompilationOptions.KeyFile", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/CompilationOptions.cs#L24C34-L24C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/CompilationOptions.cs#L24C34-L24C38" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.CompilationOptions.DelaySign", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/CompilationOptions.cs#L26C34-L26C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/CompilationOptions.cs#L26C34-L26C38" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.CompilationOptions.PublicSign", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/CompilationOptions.cs#L28C35-L28C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/CompilationOptions.cs#L28C35-L28C39" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.CompilationOptions.DebugType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/CompilationOptions.cs#L30C36-L30C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/CompilationOptions.cs#L30C36-L30C40" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.CompilationOptions.EmitEntryPoint", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/CompilationOptions.cs#L32C39-L32C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/CompilationOptions.cs#L32C39-L32C43" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.CompilationOptions.GenerateXmlDocumentation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/CompilationOptions.cs#L34C49-L34C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/CompilationOptions.cs#L34C49-L34C53" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.CompilationOptions.Default", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/CompilationOptions.cs#L36C52-L36C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/CompilationOptions.cs#L36C52-L36C56" } ], "DocsId": "T:Microsoft.Extensions.DependencyModel.CompilationOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/CompilationOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/CompilationOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyModel.Dependency.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/Dependency.cs#L14C13-L24C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/Dependency.cs#L14C13-L24C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyModel.Dependency.Equals(Microsoft.Extensions.DependencyModel.Dependency)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/Dependency.cs#L31C13-L31C93" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/Dependency.cs#L31C13-L31C93" }, { "DocsId": "M:Microsoft.Extensions.DependencyModel.Dependency.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/Dependency.cs#L34C73-L34C123" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/Dependency.cs#L34C73-L34C123" }, { "DocsId": "M:Microsoft.Extensions.DependencyModel.Dependency.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/Dependency.cs#L37C13-L37C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/Dependency.cs#L37C13-L37C75" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.Dependency.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/Dependency.cs#L26C30-L26C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/Dependency.cs#L26C30-L26C34" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.Dependency.Version", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/Dependency.cs#L27C33-L27C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/Dependency.cs#L27C33-L27C37" } ], "DocsId": "T:Microsoft.Extensions.DependencyModel.Dependency", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/Dependency.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/Dependency.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyModel.DependencyContext.#ctor(Microsoft.Extensions.DependencyModel.TargetInfo,Microsoft.Extensions.DependencyModel.CompilationOptions,System.Collections.Generic.IEnumerable{Microsoft.Extensions.DependencyModel.CompilationLibrary},System.Collections.Generic.IEnumerable{Microsoft.Extensions.DependencyModel.RuntimeLibrary},System.Collections.Generic.IEnumerable{Microsoft.Extensions.DependencyModel.RuntimeFallbacks})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContext.cs#L19C9-L36C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContext.cs#L19C9-L36C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyModel.DependencyContext.Merge(Microsoft.Extensions.DependencyModel.DependencyContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContext.cs#L53C13-L61C19" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContext.cs#L53C13-L61C19" }, { "DocsId": "M:Microsoft.Extensions.DependencyModel.DependencyContext.Load(System.Reflection.Assembly)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContext.cs#L79C13-L79C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContext.cs#L79C13-L79C67" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.DependencyContext.Default", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContext.cs#L39C53-L39C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContext.cs#L39C53-L39C74" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.DependencyContext.Target", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContext.cs#L41C36-L41C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContext.cs#L41C36-L41C40" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.DependencyContext.CompilationOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContext.cs#L43C56-L43C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContext.cs#L43C56-L43C60" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.DependencyContext.CompileLibraries", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContext.cs#L45C69-L45C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContext.cs#L45C69-L45C73" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.DependencyContext.RuntimeLibraries", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContext.cs#L47C65-L47C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContext.cs#L47C65-L47C69" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.DependencyContext.RuntimeGraph", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContext.cs#L49C63-L49C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContext.cs#L49C63-L49C67" } ], "DocsId": "T:Microsoft.Extensions.DependencyModel.DependencyContext", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContext.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContext.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyModel.DependencyContextExtensions.GetDefaultNativeAssets(Microsoft.Extensions.DependencyModel.DependencyContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextExtensions.cs#L18C13-L20C142" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextExtensions.cs#L18C13-L20C142" }, { "DocsId": "M:Microsoft.Extensions.DependencyModel.DependencyContextExtensions.GetDefaultNativeRuntimeFileAssets(Microsoft.Extensions.DependencyModel.DependencyContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextExtensions.cs#L25C13-L27C153" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextExtensions.cs#L25C13-L27C153" }, { "DocsId": "M:Microsoft.Extensions.DependencyModel.DependencyContextExtensions.GetRuntimeNativeAssets(Microsoft.Extensions.DependencyModel.DependencyContext,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextExtensions.cs#L32C13-L35C169" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextExtensions.cs#L32C13-L35C169" }, { "DocsId": "M:Microsoft.Extensions.DependencyModel.DependencyContextExtensions.GetRuntimeNativeRuntimeFileAssets(Microsoft.Extensions.DependencyModel.DependencyContext,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextExtensions.cs#L40C13-L43C180" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextExtensions.cs#L40C13-L43C180" }, { "DocsId": "M:Microsoft.Extensions.DependencyModel.DependencyContextExtensions.GetDefaultNativeAssets(Microsoft.Extensions.DependencyModel.RuntimeLibrary,Microsoft.Extensions.DependencyModel.DependencyContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextExtensions.cs#L48C13-L50C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextExtensions.cs#L48C13-L50C83" }, { "DocsId": "M:Microsoft.Extensions.DependencyModel.DependencyContextExtensions.GetDefaultNativeRuntimeFileAssets(Microsoft.Extensions.DependencyModel.RuntimeLibrary,Microsoft.Extensions.DependencyModel.DependencyContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextExtensions.cs#L55C13-L57C89" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextExtensions.cs#L55C13-L57C89" }, { "DocsId": "M:Microsoft.Extensions.DependencyModel.DependencyContextExtensions.GetRuntimeNativeAssets(Microsoft.Extensions.DependencyModel.RuntimeLibrary,Microsoft.Extensions.DependencyModel.DependencyContext,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextExtensions.cs#L62C13-L66C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextExtensions.cs#L62C13-L66C88" }, { "DocsId": "M:Microsoft.Extensions.DependencyModel.DependencyContextExtensions.GetRuntimeNativeRuntimeFileAssets(Microsoft.Extensions.DependencyModel.RuntimeLibrary,Microsoft.Extensions.DependencyModel.DependencyContext,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextExtensions.cs#L71C13-L75C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextExtensions.cs#L71C13-L75C94" }, { "DocsId": "M:Microsoft.Extensions.DependencyModel.DependencyContextExtensions.GetDefaultAssemblyNames(Microsoft.Extensions.DependencyModel.DependencyContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextExtensions.cs#L80C13-L82C143" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextExtensions.cs#L80C13-L82C143" }, { "DocsId": "M:Microsoft.Extensions.DependencyModel.DependencyContextExtensions.GetRuntimeAssemblyNames(Microsoft.Extensions.DependencyModel.DependencyContext,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextExtensions.cs#L87C13-L90C170" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextExtensions.cs#L87C13-L90C170" }, { "DocsId": "M:Microsoft.Extensions.DependencyModel.DependencyContextExtensions.GetDefaultAssemblyNames(Microsoft.Extensions.DependencyModel.RuntimeLibrary,Microsoft.Extensions.DependencyModel.DependencyContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextExtensions.cs#L95C13-L98C109" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextExtensions.cs#L95C13-L98C109" }, { "DocsId": "M:Microsoft.Extensions.DependencyModel.DependencyContextExtensions.GetRuntimeAssemblyNames(Microsoft.Extensions.DependencyModel.RuntimeLibrary,Microsoft.Extensions.DependencyModel.DependencyContext,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextExtensions.cs#L103C13-L107C114" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextExtensions.cs#L103C13-L107C114" } ], "DocsId": "T:Microsoft.Extensions.DependencyModel.DependencyContextExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyModel.DependencyContextJsonReader.Read(System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextJsonReader.cs#L24C13-L37C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextJsonReader.cs#L24C13-L37C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyModel.DependencyContextJsonReader.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextJsonReader.cs#L41C13-L45C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextJsonReader.cs#L41C13-L45C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyModel.DependencyContextJsonReader.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextJsonReader.cs#L49C13-L50C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextJsonReader.cs#L49C13-L50C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyModel.DependencyContextJsonReader.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextJsonReader.cs#L20C9-L20C100" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextJsonReader.cs#L20C9-L20C100" } ], "DocsId": "T:Microsoft.Extensions.DependencyModel.DependencyContextJsonReader", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextJsonReader.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextJsonReader.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyModel.DependencyContextLoader.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextLoader.cs#L22C44-L28C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextLoader.cs#L22C44-L28C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyModel.DependencyContextLoader.Load(System.Reflection.Assembly)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextLoader.cs#L57C13-L81C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextLoader.cs#L57C13-L81C28" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.DependencyContextLoader.Default", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextLoader.cs#L42C57-L42C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextLoader.cs#L42C57-L42C61" } ], "DocsId": "T:Microsoft.Extensions.DependencyModel.DependencyContextLoader", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextLoader.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextLoader.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyModel.DependencyContextWriter.Write(Microsoft.Extensions.DependencyModel.DependencyContext,System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextWriter.cs#L18C13-L39C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextWriter.cs#L18C13-L39C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyModel.DependencyContextWriter.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextWriter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextWriter.cs" } ], "DocsId": "T:Microsoft.Extensions.DependencyModel.DependencyContextWriter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextWriter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/DependencyContextWriter.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyModel.IDependencyContextReader.Read(System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/IDependencyContextReader.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/IDependencyContextReader.cs" } ], "DocsId": "T:Microsoft.Extensions.DependencyModel.IDependencyContextReader", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/IDependencyContextReader.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/IDependencyContextReader.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyModel.Library.#ctor(System.String,System.String,System.String,System.String,System.Collections.Generic.IEnumerable{Microsoft.Extensions.DependencyModel.Dependency},System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/Library.cs#L18C15-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/Library.cs#L18C15-L20C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyModel.Library.#ctor(System.String,System.String,System.String,System.String,System.Collections.Generic.IEnumerable{Microsoft.Extensions.DependencyModel.Dependency},System.Boolean,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/Library.cs#L30C15-L32C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/Library.cs#L30C15-L32C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyModel.Library.#ctor(System.String,System.String,System.String,System.String,System.Collections.Generic.IEnumerable{Microsoft.Extensions.DependencyModel.Dependency},System.Boolean,System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/Library.cs#L33C9-L66C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/Library.cs#L33C9-L66C10" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.Library.Type", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/Library.cs#L68C30-L68C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/Library.cs#L68C30-L68C34" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.Library.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/Library.cs#L70C30-L70C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/Library.cs#L70C30-L70C34" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.Library.Version", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/Library.cs#L72C33-L72C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/Library.cs#L72C33-L72C37" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.Library.Hash", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/Library.cs#L74C31-L74C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/Library.cs#L74C31-L74C35" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.Library.Dependencies", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/Library.cs#L76C57-L76C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/Library.cs#L76C57-L76C61" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.Library.Serviceable", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/Library.cs#L78C35-L78C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/Library.cs#L78C35-L78C39" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.Library.Path", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/Library.cs#L80C31-L80C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/Library.cs#L80C31-L80C35" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.Library.HashPath", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/Library.cs#L82C35-L82C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/Library.cs#L82C35-L82C39" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.Library.RuntimeStoreManifestName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/Library.cs#L84C51-L84C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/Library.cs#L84C51-L84C55" } ], "DocsId": "T:Microsoft.Extensions.DependencyModel.Library", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/Library.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/Library.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyModel.ResourceAssembly.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/ResourceAssembly.cs#L10C9-L22C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/ResourceAssembly.cs#L10C9-L22C10" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.ResourceAssembly.Locale", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/ResourceAssembly.cs#L24C32-L24C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/ResourceAssembly.cs#L24C32-L24C36" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.ResourceAssembly.Path", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/ResourceAssembly.cs#L26C30-L26C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/ResourceAssembly.cs#L26C30-L26C34" } ], "DocsId": "T:Microsoft.Extensions.DependencyModel.ResourceAssembly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/ResourceAssembly.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/ResourceAssembly.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyModel.RuntimeAssembly.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeAssembly.cs#L14C9-L26C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeAssembly.cs#L14C9-L26C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyModel.RuntimeAssembly.Create(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeAssembly.cs#L34C13-L44C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeAssembly.cs#L34C13-L44C60" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.RuntimeAssembly.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeAssembly.cs#L28C37-L28C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeAssembly.cs#L28C37-L28C55" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.RuntimeAssembly.Path", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeAssembly.cs#L30C30-L30C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeAssembly.cs#L30C30-L30C34" } ], "DocsId": "T:Microsoft.Extensions.DependencyModel.RuntimeAssembly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeAssembly.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeAssembly.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyModel.RuntimeAssetGroup.#ctor(System.String,System.String[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeAssetGroup.cs#L14C81-L14C131" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeAssetGroup.cs#L14C81-L14C131" }, { "DocsId": "M:Microsoft.Extensions.DependencyModel.RuntimeAssetGroup.#ctor(System.String,System.Collections.Generic.IEnumerable{System.String})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeAssetGroup.cs#L16C9-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeAssetGroup.cs#L16C9-L20C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyModel.RuntimeAssetGroup.#ctor(System.String,System.Collections.Generic.IEnumerable{Microsoft.Extensions.DependencyModel.RuntimeFile})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeAssetGroup.cs#L22C9-L26C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeAssetGroup.cs#L22C9-L26C10" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.RuntimeAssetGroup.Runtime", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeAssetGroup.cs#L31C34-L31C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeAssetGroup.cs#L31C34-L31C38" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.RuntimeAssetGroup.AssetPaths", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeAssetGroup.cs#L40C17-L45C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeAssetGroup.cs#L40C17-L45C75" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.RuntimeAssetGroup.RuntimeFiles", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeAssetGroup.cs#L56C17-L61C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeAssetGroup.cs#L56C17-L61C97" } ], "DocsId": "T:Microsoft.Extensions.DependencyModel.RuntimeAssetGroup", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeAssetGroup.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeAssetGroup.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyModel.RuntimeFallbacks.#ctor(System.String,System.String[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeFallbacks.cs#L15C79-L15C129" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeFallbacks.cs#L15C79-L15C129" }, { "DocsId": "M:Microsoft.Extensions.DependencyModel.RuntimeFallbacks.#ctor(System.String,System.Collections.Generic.IEnumerable{System.String})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeFallbacks.cs#L16C9-L26C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeFallbacks.cs#L16C9-L26C10" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.RuntimeFallbacks.Runtime", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeFallbacks.cs#L12C33-L12C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeFallbacks.cs#L12C33-L12C37" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.RuntimeFallbacks.Fallbacks", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeFallbacks.cs#L13C51-L13C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeFallbacks.cs#L13C51-L13C55" } ], "DocsId": "T:Microsoft.Extensions.DependencyModel.RuntimeFallbacks", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeFallbacks.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeFallbacks.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyModel.RuntimeFile.#ctor(System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeFile.cs#L10C9-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeFile.cs#L10C9-L20C10" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.RuntimeFile.Path", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeFile.cs#L22C30-L22C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeFile.cs#L22C30-L22C34" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.RuntimeFile.AssemblyVersion", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeFile.cs#L24C42-L24C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeFile.cs#L24C42-L24C46" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.RuntimeFile.FileVersion", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeFile.cs#L26C38-L26C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeFile.cs#L26C38-L26C42" } ], "DocsId": "T:Microsoft.Extensions.DependencyModel.RuntimeFile", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeFile.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeFile.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyModel.RuntimeLibrary.#ctor(System.String,System.String,System.String,System.String,System.Collections.Generic.IReadOnlyList{Microsoft.Extensions.DependencyModel.RuntimeAssetGroup},System.Collections.Generic.IReadOnlyList{Microsoft.Extensions.DependencyModel.RuntimeAssetGroup},System.Collections.Generic.IEnumerable{Microsoft.Extensions.DependencyModel.ResourceAssembly},System.Collections.Generic.IEnumerable{Microsoft.Extensions.DependencyModel.Dependency},System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeLibrary.cs#L21C15-L33C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeLibrary.cs#L21C15-L33C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyModel.RuntimeLibrary.#ctor(System.String,System.String,System.String,System.String,System.Collections.Generic.IReadOnlyList{Microsoft.Extensions.DependencyModel.RuntimeAssetGroup},System.Collections.Generic.IReadOnlyList{Microsoft.Extensions.DependencyModel.RuntimeAssetGroup},System.Collections.Generic.IEnumerable{Microsoft.Extensions.DependencyModel.ResourceAssembly},System.Collections.Generic.IEnumerable{Microsoft.Extensions.DependencyModel.Dependency},System.Boolean,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeLibrary.cs#L46C15-L59C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeLibrary.cs#L46C15-L59C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyModel.RuntimeLibrary.#ctor(System.String,System.String,System.String,System.String,System.Collections.Generic.IReadOnlyList{Microsoft.Extensions.DependencyModel.RuntimeAssetGroup},System.Collections.Generic.IReadOnlyList{Microsoft.Extensions.DependencyModel.RuntimeAssetGroup},System.Collections.Generic.IEnumerable{Microsoft.Extensions.DependencyModel.ResourceAssembly},System.Collections.Generic.IEnumerable{Microsoft.Extensions.DependencyModel.Dependency},System.Boolean,System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeLibrary.cs#L98C15-L115C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeLibrary.cs#L98C15-L115C10" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.RuntimeLibrary.RuntimeAssemblyGroups", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeLibrary.cs#L117C73-L117C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeLibrary.cs#L117C73-L117C77" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.RuntimeLibrary.NativeLibraryGroups", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeLibrary.cs#L119C71-L119C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeLibrary.cs#L119C71-L119C75" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.RuntimeLibrary.ResourceAssemblies", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeLibrary.cs#L121C69-L121C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeLibrary.cs#L121C69-L121C73" } ], "DocsId": "T:Microsoft.Extensions.DependencyModel.RuntimeLibrary", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeLibrary.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/RuntimeLibrary.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyModel.TargetInfo.#ctor(System.String,System.String,System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/TargetInfo.cs#L9C9-L23C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/TargetInfo.cs#L9C9-L23C10" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.TargetInfo.Framework", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/TargetInfo.cs#L25C35-L25C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/TargetInfo.cs#L25C35-L25C39" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.TargetInfo.Runtime", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/TargetInfo.cs#L27C34-L27C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/TargetInfo.cs#L27C34-L27C38" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.TargetInfo.RuntimeSignature", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/TargetInfo.cs#L29C43-L29C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/TargetInfo.cs#L29C43-L29C47" }, { "DocsId": "P:Microsoft.Extensions.DependencyModel.TargetInfo.IsPortable", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/TargetInfo.cs#L31C34-L31C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/TargetInfo.cs#L31C34-L31C38" } ], "DocsId": "T:Microsoft.Extensions.DependencyModel.TargetInfo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/TargetInfo.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/TargetInfo.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyModel.Resolution.AppBaseCompilationAssemblyResolver.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/Resolution/AppBaseCompilationAssemblyResolver.cs#L19C15-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/Resolution/AppBaseCompilationAssemblyResolver.cs#L19C15-L21C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyModel.Resolution.AppBaseCompilationAssemblyResolver.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/Resolution/AppBaseCompilationAssemblyResolver.cs#L24C15-L26C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/Resolution/AppBaseCompilationAssemblyResolver.cs#L24C15-L26C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyModel.Resolution.AppBaseCompilationAssemblyResolver.TryResolveAssemblyPaths(Microsoft.Extensions.DependencyModel.CompilationLibrary,System.Collections.Generic.List{System.String})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/Resolution/AppBaseCompilationAssemblyResolver.cs#L46C13-L121C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/Resolution/AppBaseCompilationAssemblyResolver.cs#L46C13-L121C10" } ], "DocsId": "T:Microsoft.Extensions.DependencyModel.Resolution.AppBaseCompilationAssemblyResolver", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/Resolution/AppBaseCompilationAssemblyResolver.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/Resolution/AppBaseCompilationAssemblyResolver.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyModel.Resolution.CompositeCompilationAssemblyResolver.#ctor(Microsoft.Extensions.DependencyModel.Resolution.ICompilationAssemblyResolver[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/Resolution/CompositeCompilationAssemblyResolver.cs#L13C9-L18C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/Resolution/CompositeCompilationAssemblyResolver.cs#L13C9-L18C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyModel.Resolution.CompositeCompilationAssemblyResolver.TryResolveAssemblyPaths(Microsoft.Extensions.DependencyModel.CompilationLibrary,System.Collections.Generic.List{System.String})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/Resolution/CompositeCompilationAssemblyResolver.cs#L22C63-L29C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/Resolution/CompositeCompilationAssemblyResolver.cs#L22C63-L29C26" } ], "DocsId": "T:Microsoft.Extensions.DependencyModel.Resolution.CompositeCompilationAssemblyResolver", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/Resolution/CompositeCompilationAssemblyResolver.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/Resolution/CompositeCompilationAssemblyResolver.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyModel.Resolution.DotNetReferenceAssembliesPathResolver.Resolve", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/Resolution/DotNetReferenceAssembliesPathResolver.cs#L27C13-L27C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/Resolution/DotNetReferenceAssembliesPathResolver.cs#L27C13-L27C83" }, { "DocsId": "M:Microsoft.Extensions.DependencyModel.Resolution.DotNetReferenceAssembliesPathResolver.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/Resolution/DotNetReferenceAssembliesPathResolver.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/Resolution/DotNetReferenceAssembliesPathResolver.cs" }, { "DocsId": "F:Microsoft.Extensions.DependencyModel.Resolution.DotNetReferenceAssembliesPathResolver.DotNetReferenceAssembliesPathEnv", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/Resolution/DotNetReferenceAssembliesPathResolver.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/Resolution/DotNetReferenceAssembliesPathResolver.cs" } ], "DocsId": "T:Microsoft.Extensions.DependencyModel.Resolution.DotNetReferenceAssembliesPathResolver", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/Resolution/DotNetReferenceAssembliesPathResolver.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/Resolution/DotNetReferenceAssembliesPathResolver.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyModel.Resolution.ICompilationAssemblyResolver.TryResolveAssemblyPaths(Microsoft.Extensions.DependencyModel.CompilationLibrary,System.Collections.Generic.List{System.String})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/Resolution/ICompilationAssemblyResolver.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/Resolution/ICompilationAssemblyResolver.cs" } ], "DocsId": "T:Microsoft.Extensions.DependencyModel.Resolution.ICompilationAssemblyResolver", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/Resolution/ICompilationAssemblyResolver.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/Resolution/ICompilationAssemblyResolver.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyModel.Resolution.PackageCompilationAssemblyResolver.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/Resolution/PackageCompilationAssemblyResolver.cs#L17C15-L19C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/Resolution/PackageCompilationAssemblyResolver.cs#L17C15-L19C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyModel.Resolution.PackageCompilationAssemblyResolver.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/Resolution/PackageCompilationAssemblyResolver.cs#L22C15-L24C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/Resolution/PackageCompilationAssemblyResolver.cs#L22C15-L24C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyModel.Resolution.PackageCompilationAssemblyResolver.TryResolveAssemblyPaths(Microsoft.Extensions.DependencyModel.CompilationLibrary,System.Collections.Generic.List{System.String})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/Resolution/PackageCompilationAssemblyResolver.cs#L79C13-L100C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/Resolution/PackageCompilationAssemblyResolver.cs#L79C13-L100C26" } ], "DocsId": "T:Microsoft.Extensions.DependencyModel.Resolution.PackageCompilationAssemblyResolver", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/Resolution/PackageCompilationAssemblyResolver.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/Resolution/PackageCompilationAssemblyResolver.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyModel.Resolution.ReferenceAssemblyPathResolver.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/Resolution/ReferenceAssemblyPathResolver.cs#L18C15-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/Resolution/ReferenceAssemblyPathResolver.cs#L18C15-L20C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyModel.Resolution.ReferenceAssemblyPathResolver.#ctor(System.String,System.String[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/Resolution/ReferenceAssemblyPathResolver.cs#L23C15-L25C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/Resolution/ReferenceAssemblyPathResolver.cs#L23C15-L25C10" }, { "DocsId": "M:Microsoft.Extensions.DependencyModel.Resolution.ReferenceAssemblyPathResolver.TryResolveAssemblyPaths(Microsoft.Extensions.DependencyModel.CompilationLibrary,System.Collections.Generic.List{System.String})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/Resolution/ReferenceAssemblyPathResolver.cs#L46C13-L60C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/Resolution/ReferenceAssemblyPathResolver.cs#L46C13-L60C25" } ], "DocsId": "T:Microsoft.Extensions.DependencyModel.Resolution.ReferenceAssemblyPathResolver", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.DependencyModel/src/Resolution/ReferenceAssemblyPathResolver.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.DependencyModel/src/Resolution/ReferenceAssemblyPathResolver.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Diagnostics.Abstractions.json b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Diagnostics.Abstractions.json index d0c2ed8f9d9..11ecae1b1db 100644 --- a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Diagnostics.Abstractions.json +++ b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Diagnostics.Abstractions.json @@ -1,207 +1,206 @@ { "Assembly": "Microsoft.Extensions.Diagnostics.Abstractions", - "GUID": "56A8D4FF019242E9A1066E05A52251CFFFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "03C891298F44437F8D72B66AED8D1ECCFFFFFFFF", "Types": [ { "Members": [ { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.IMetricsBuilder.Services", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/IMetricsBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/IMetricsBuilder.cs" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Metrics.IMetricsBuilder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/IMetricsBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/IMetricsBuilder.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.IMetricsListener.Initialize(Microsoft.Extensions.Diagnostics.Metrics.IObservableInstrumentsSource)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/IMetricsListener.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/IMetricsListener.cs" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.IMetricsListener.InstrumentPublished(System.Diagnostics.Metrics.Instrument,System.Object@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/IMetricsListener.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/IMetricsListener.cs" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.IMetricsListener.MeasurementsCompleted(System.Diagnostics.Metrics.Instrument,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/IMetricsListener.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/IMetricsListener.cs" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.IMetricsListener.GetMeasurementHandlers", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/IMetricsListener.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/IMetricsListener.cs" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.IMetricsListener.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/IMetricsListener.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/IMetricsListener.cs" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Metrics.IMetricsListener", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/IMetricsListener.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/IMetricsListener.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.InstrumentRule.#ctor(System.String,System.String,System.String,Microsoft.Extensions.Diagnostics.Metrics.MeterScope,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/InstrumentRule.cs#L31C45-L25C129" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/InstrumentRule.cs#L31C45-L25C129" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.InstrumentRule.MeterName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/InstrumentRule.cs#L31C36-L31C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/InstrumentRule.cs#L31C36-L31C40" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.InstrumentRule.InstrumentName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/InstrumentRule.cs#L37C41-L37C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/InstrumentRule.cs#L37C41-L37C45" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.InstrumentRule.ListenerName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/InstrumentRule.cs#L43C39-L43C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/InstrumentRule.cs#L43C39-L43C43" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.InstrumentRule.Scopes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/InstrumentRule.cs#L49C36-L49C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/InstrumentRule.cs#L49C36-L49C40" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.InstrumentRule.Enable", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/InstrumentRule.cs#L56C30-L56C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/InstrumentRule.cs#L56C30-L56C34" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Metrics.InstrumentRule", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/InstrumentRule.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/InstrumentRule.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.IObservableInstrumentsSource.RecordObservableInstruments", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/IObservableInstrumentsSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/IObservableInstrumentsSource.cs" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Metrics.IObservableInstrumentsSource", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/IObservableInstrumentsSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/IObservableInstrumentsSource.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.MeasurementHandlers.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MeasurementHandlers.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MeasurementHandlers.cs" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.MeasurementHandlers.ByteHandler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MeasurementHandlers.cs#L16C57-L16C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MeasurementHandlers.cs#L16C57-L16C61" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.MeasurementHandlers.ShortHandler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MeasurementHandlers.cs#L21C59-L21C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MeasurementHandlers.cs#L21C59-L21C63" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.MeasurementHandlers.IntHandler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MeasurementHandlers.cs#L26C55-L26C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MeasurementHandlers.cs#L26C55-L26C59" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.MeasurementHandlers.LongHandler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MeasurementHandlers.cs#L31C57-L31C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MeasurementHandlers.cs#L31C57-L31C61" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.MeasurementHandlers.FloatHandler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MeasurementHandlers.cs#L36C59-L36C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MeasurementHandlers.cs#L36C59-L36C63" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.MeasurementHandlers.DoubleHandler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MeasurementHandlers.cs#L41C61-L41C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MeasurementHandlers.cs#L41C61-L41C65" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.MeasurementHandlers.DecimalHandler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MeasurementHandlers.cs#L46C63-L46C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MeasurementHandlers.cs#L46C63-L46C67" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Metrics.MeasurementHandlers", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MeasurementHandlers.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MeasurementHandlers.cs" }, { "Members": [ { "DocsId": "F:Microsoft.Extensions.Diagnostics.Metrics.MeterScope.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MeterScope.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MeterScope.cs" }, { "DocsId": "F:Microsoft.Extensions.Diagnostics.Metrics.MeterScope.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MeterScope.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MeterScope.cs" }, { "DocsId": "F:Microsoft.Extensions.Diagnostics.Metrics.MeterScope.Global", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MeterScope.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MeterScope.cs" }, { "DocsId": "F:Microsoft.Extensions.Diagnostics.Metrics.MeterScope.Local", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MeterScope.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MeterScope.cs" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Metrics.MeterScope", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MeterScope.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MeterScope.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.MetricsBuilderExtensions.AddListener``1(Microsoft.Extensions.Diagnostics.Metrics.IMetricsBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MetricsBuilderExtensions.Listeners.cs#L24C13-L26C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MetricsBuilderExtensions.Listeners.cs#L24C13-L26C28" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.MetricsBuilderExtensions.AddListener(Microsoft.Extensions.Diagnostics.Metrics.IMetricsBuilder,Microsoft.Extensions.Diagnostics.Metrics.IMetricsListener)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MetricsBuilderExtensions.Listeners.cs#L37C13-L39C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MetricsBuilderExtensions.Listeners.cs#L37C13-L39C28" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.MetricsBuilderExtensions.ClearListeners(Microsoft.Extensions.Diagnostics.Metrics.IMetricsBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MetricsBuilderExtensions.Listeners.cs#L49C13-L51C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MetricsBuilderExtensions.Listeners.cs#L49C13-L51C28" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.MetricsBuilderExtensions.EnableMetrics(Microsoft.Extensions.Diagnostics.Metrics.IMetricsBuilder,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MetricsBuilderExtensions.Rules.cs#L22C16-L22C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MetricsBuilderExtensions.Rules.cs#L16707566C0-L22C82" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.MetricsBuilderExtensions.EnableMetrics(Microsoft.Extensions.Diagnostics.Metrics.IMetricsBuilder,System.String,System.String,System.String,Microsoft.Extensions.Diagnostics.Metrics.MeterScope)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MetricsBuilderExtensions.Rules.cs#L35C16-L35C120" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MetricsBuilderExtensions.Rules.cs#L16707566C0-L35C120" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.MetricsBuilderExtensions.EnableMetrics(Microsoft.Extensions.Diagnostics.Metrics.MetricsOptions,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MetricsBuilderExtensions.Rules.cs#L44C16-L44C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MetricsBuilderExtensions.Rules.cs#L44C16-L44C81" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.MetricsBuilderExtensions.EnableMetrics(Microsoft.Extensions.Diagnostics.Metrics.MetricsOptions,System.String,System.String,System.String,Microsoft.Extensions.Diagnostics.Metrics.MeterScope)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MetricsBuilderExtensions.Rules.cs#L57C16-L57C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MetricsBuilderExtensions.Rules.cs#L57C16-L57C94" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.MetricsBuilderExtensions.DisableMetrics(Microsoft.Extensions.Diagnostics.Metrics.IMetricsBuilder,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MetricsBuilderExtensions.Rules.cs#L66C16-L66C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MetricsBuilderExtensions.Rules.cs#L16707566C0-L66C83" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.MetricsBuilderExtensions.DisableMetrics(Microsoft.Extensions.Diagnostics.Metrics.IMetricsBuilder,System.String,System.String,System.String,Microsoft.Extensions.Diagnostics.Metrics.MeterScope)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MetricsBuilderExtensions.Rules.cs#L79C16-L79C121" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MetricsBuilderExtensions.Rules.cs#L16707566C0-L79C121" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.MetricsBuilderExtensions.DisableMetrics(Microsoft.Extensions.Diagnostics.Metrics.MetricsOptions,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MetricsBuilderExtensions.Rules.cs#L88C16-L88C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MetricsBuilderExtensions.Rules.cs#L88C16-L88C82" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.MetricsBuilderExtensions.DisableMetrics(Microsoft.Extensions.Diagnostics.Metrics.MetricsOptions,System.String,System.String,System.String,Microsoft.Extensions.Diagnostics.Metrics.MeterScope)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MetricsBuilderExtensions.Rules.cs#L101C16-L101C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MetricsBuilderExtensions.Rules.cs#L101C16-L101C95" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Metrics.MetricsBuilderExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MetricsBuilderExtensions.Listeners.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MetricsBuilderExtensions.Listeners.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.MetricsOptions.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MetricsOptions.cs#L16C55-L16C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MetricsOptions.cs#L16C55-L16C81" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.MetricsOptions.Rules", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MetricsOptions.cs#L16C46-L16C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MetricsOptions.cs#L16C46-L16C50" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Metrics.MetricsOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MetricsOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics.Abstractions/src/Metrics/MetricsOptions.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Diagnostics.ExceptionSummarization.json b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Diagnostics.ExceptionSummarization.json index ab2bd9cc425..d63eb94c9b8 100644 --- a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Diagnostics.ExceptionSummarization.json +++ b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Diagnostics.ExceptionSummarization.json @@ -1,119 +1,118 @@ { "Assembly": "Microsoft.Extensions.Diagnostics.ExceptionSummarization", - "GUID": "341AD10FD6294E5CBF219CD789A0B0FAFFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "658602B666E14E35A810AB474939D29DFFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ExceptionSummarizationServiceCollectionExtensions.AddExceptionSummarizer(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/ExceptionSummarizationServiceCollectionExtensions.cs#L25C9-L28C25" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/ExceptionSummarizationServiceCollectionExtensions.cs#L25C9-L28C25" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ExceptionSummarizationServiceCollectionExtensions.AddExceptionSummarizer(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{Microsoft.Extensions.Diagnostics.ExceptionSummarization.IExceptionSummarizationBuilder})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/ExceptionSummarizationServiceCollectionExtensions.cs#L40C9-L46C25" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/ExceptionSummarizationServiceCollectionExtensions.cs#L40C9-L46C25" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.ExceptionSummarizationServiceCollectionExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/ExceptionSummarizationServiceCollectionExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/ExceptionSummarizationServiceCollectionExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.ExceptionSummarization.ExceptionSummarizationBuilderExtensions.AddHttpProvider(Microsoft.Extensions.Diagnostics.ExceptionSummarization.IExceptionSummarizationBuilder)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/ExceptionSummarizationBuilderExtensions.cs#L23C12-L23C77" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/ExceptionSummarizationBuilderExtensions.cs#L23C12-L23C77" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.ExceptionSummarization.ExceptionSummarizationBuilderExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/ExceptionSummarizationBuilderExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/ExceptionSummarizationBuilderExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.ExceptionSummarization.ExceptionSummary.#ctor(System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/ExceptionSummary.cs#L31C9-L34C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/ExceptionSummary.cs#L31C9-L34C6" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.ExceptionSummarization.ExceptionSummary.GetHashCode", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/ExceptionSummary.cs#L67C42-L70C65" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/ExceptionSummary.cs#L67C42-L70C65" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.ExceptionSummarization.ExceptionSummary.ToString", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/ExceptionSummary.cs#L81C9-L83C68" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/ExceptionSummary.cs#L81C9-L83C68" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.ExceptionSummarization.ExceptionSummary.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/ExceptionSummary.cs#L91C49-L91C99" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/ExceptionSummary.cs#L91C49-L91C99" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.ExceptionSummarization.ExceptionSummary.Equals(Microsoft.Extensions.Diagnostics.ExceptionSummarization.ExceptionSummary)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/ExceptionSummary.cs#L100C9-L102C92" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/ExceptionSummary.cs#L100C9-L102C92" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.ExceptionSummarization.ExceptionSummary.op_Equality(Microsoft.Extensions.Diagnostics.ExceptionSummarization.ExceptionSummary,Microsoft.Extensions.Diagnostics.ExceptionSummarization.ExceptionSummary)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/ExceptionSummary.cs#L113C9-L113C35" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/ExceptionSummary.cs#L113C9-L113C35" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.ExceptionSummarization.ExceptionSummary.op_Inequality(Microsoft.Extensions.Diagnostics.ExceptionSummarization.ExceptionSummary,Microsoft.Extensions.Diagnostics.ExceptionSummarization.ExceptionSummary)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/ExceptionSummary.cs#L124C9-L124C36" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/ExceptionSummary.cs#L124C9-L124C36" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.ExceptionSummarization.ExceptionSummary.ExceptionType", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/ExceptionSummary.cs#L43C35-L43C39" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/ExceptionSummary.cs#L43C35-L43C39" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.ExceptionSummarization.ExceptionSummary.Description", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/ExceptionSummary.cs#L52C33-L52C37" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/ExceptionSummary.cs#L52C33-L52C37" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.ExceptionSummarization.ExceptionSummary.AdditionalDetails", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/ExceptionSummary.cs#L61C39-L61C43" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/ExceptionSummary.cs#L61C39-L61C43" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.ExceptionSummarization.ExceptionSummary", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/ExceptionSummary.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/ExceptionSummary.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.ExceptionSummarization.IExceptionSummarizationBuilder.AddProvider``1", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/IExceptionSummarizationBuilder.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/IExceptionSummarizationBuilder.cs" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.ExceptionSummarization.IExceptionSummarizationBuilder.Services", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/IExceptionSummarizationBuilder.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/IExceptionSummarizationBuilder.cs" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.ExceptionSummarization.IExceptionSummarizationBuilder", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/IExceptionSummarizationBuilder.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/IExceptionSummarizationBuilder.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.ExceptionSummarization.IExceptionSummarizer.Summarize(System.Exception)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/IExceptionSummarizer.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/IExceptionSummarizer.cs" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.ExceptionSummarization.IExceptionSummarizer", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/IExceptionSummarizer.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/IExceptionSummarizer.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.ExceptionSummarization.IExceptionSummaryProvider.Describe(System.Exception,System.String@)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/IExceptionSummaryProvider.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/IExceptionSummaryProvider.cs" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.ExceptionSummarization.IExceptionSummaryProvider.SupportedExceptionTypes", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/IExceptionSummaryProvider.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/IExceptionSummaryProvider.cs" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.ExceptionSummarization.IExceptionSummaryProvider.Descriptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/IExceptionSummaryProvider.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/IExceptionSummaryProvider.cs" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.ExceptionSummarization.IExceptionSummaryProvider", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/IExceptionSummaryProvider.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ExceptionSummarization/IExceptionSummaryProvider.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.json b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.json index 9340672dc02..20b5ef9c4ea 100644 --- a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.json +++ b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.json @@ -1,215 +1,214 @@ { "Assembly": "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions", - "GUID": "36A9D3C64361496EA1F7AE0E59ADDCA9FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "B2E7FBCAB5694B6EAC79868770F588CDFFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckContext.#ctor", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/HealthChecks/Abstractions/src/HealthCheckContext.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/HealthChecks/Abstractions/src/HealthCheckContext.cs" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckContext.Registration", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/HealthChecks/Abstractions/src/HealthCheckContext.cs#L15C51-L15C55" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/HealthChecks/Abstractions/src/HealthCheckContext.cs#L15C51-L15C55" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckContext", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/HealthChecks/Abstractions/src/HealthCheckContext.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/HealthChecks/Abstractions/src/HealthCheckContext.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckRegistration.#ctor(System.String,Microsoft.Extensions.Diagnostics.HealthChecks.IHealthCheck,System.Nullable{Microsoft.Extensions.Diagnostics.HealthChecks.HealthStatus},System.Collections.Generic.IEnumerable{System.String})", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/HealthChecks/Abstractions/src/HealthCheckRegistration.cs#L41C11-L43C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/HealthChecks/Abstractions/src/HealthCheckRegistration.cs#L41C11-L43C6" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckRegistration.#ctor(System.String,Microsoft.Extensions.Diagnostics.HealthChecks.IHealthCheck,System.Nullable{Microsoft.Extensions.Diagnostics.HealthChecks.HealthStatus},System.Collections.Generic.IEnumerable{System.String},System.Nullable{System.TimeSpan})", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/HealthChecks/Abstractions/src/HealthCheckRegistration.cs#L56C5-L71C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/HealthChecks/Abstractions/src/HealthCheckRegistration.cs#L16707566C0-L71C6" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckRegistration.#ctor(System.String,System.Func{System.IServiceProvider,Microsoft.Extensions.Diagnostics.HealthChecks.IHealthCheck},System.Nullable{Microsoft.Extensions.Diagnostics.HealthChecks.HealthStatus},System.Collections.Generic.IEnumerable{System.String})", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/HealthChecks/Abstractions/src/HealthCheckRegistration.cs#L88C11-L90C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/HealthChecks/Abstractions/src/HealthCheckRegistration.cs#L88C11-L90C6" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckRegistration.#ctor(System.String,System.Func{System.IServiceProvider,Microsoft.Extensions.Diagnostics.HealthChecks.IHealthCheck},System.Nullable{Microsoft.Extensions.Diagnostics.HealthChecks.HealthStatus},System.Collections.Generic.IEnumerable{System.String},System.Nullable{System.TimeSpan})", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/HealthChecks/Abstractions/src/HealthCheckRegistration.cs#L103C5-L123C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/HealthChecks/Abstractions/src/HealthCheckRegistration.cs#L103C5-L123C6" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckRegistration.Factory", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/HealthChecks/Abstractions/src/HealthCheckRegistration.cs#L130C16-L130C24" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/HealthChecks/Abstractions/src/HealthCheckRegistration.cs#L130C16-L130C24" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckRegistration.FailureStatus", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/HealthChecks/Abstractions/src/HealthCheckRegistration.cs#L142C41-L142C45" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/HealthChecks/Abstractions/src/HealthCheckRegistration.cs#L142C41-L142C45" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckRegistration.Timeout", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/HealthChecks/Abstractions/src/HealthCheckRegistration.cs#L149C16-L149C24" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/HealthChecks/Abstractions/src/HealthCheckRegistration.cs#L149C16-L149C24" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckRegistration.Delay", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/HealthChecks/Abstractions/src/HealthCheckRegistration.cs#L166C30-L166C34" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/HealthChecks/Abstractions/src/HealthCheckRegistration.cs#L166C30-L166C34" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckRegistration.Period", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/HealthChecks/Abstractions/src/HealthCheckRegistration.cs#L171C31-L171C35" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/HealthChecks/Abstractions/src/HealthCheckRegistration.cs#L171C31-L171C35" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckRegistration.Name", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/HealthChecks/Abstractions/src/HealthCheckRegistration.cs#L178C16-L178C21" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/HealthChecks/Abstractions/src/HealthCheckRegistration.cs#L178C16-L178C21" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckRegistration.Tags", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/HealthChecks/Abstractions/src/HealthCheckRegistration.cs#L190C32-L190C36" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/HealthChecks/Abstractions/src/HealthCheckRegistration.cs#L190C32-L190C36" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckRegistration", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/HealthChecks/Abstractions/src/HealthCheckRegistration.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/HealthChecks/Abstractions/src/HealthCheckRegistration.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckResult.#ctor(Microsoft.Extensions.Diagnostics.HealthChecks.HealthStatus,System.String,System.Exception,System.Collections.Generic.IReadOnlyDictionary{System.String,System.Object})", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/HealthChecks/Abstractions/src/HealthCheckResult.cs#L26C9-L30C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/HealthChecks/Abstractions/src/HealthCheckResult.cs#L26C9-L30C6" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckResult.Healthy(System.String,System.Collections.Generic.IReadOnlyDictionary{System.String,System.Object})", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/HealthChecks/Abstractions/src/HealthCheckResult.cs#L60C9-L60C104" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/HealthChecks/Abstractions/src/HealthCheckResult.cs#L60C9-L60C104" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckResult.Degraded(System.String,System.Exception,System.Collections.Generic.IReadOnlyDictionary{System.String,System.Object})", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/HealthChecks/Abstractions/src/HealthCheckResult.cs#L72C9-L72C110" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/HealthChecks/Abstractions/src/HealthCheckResult.cs#L72C9-L72C110" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckResult.Unhealthy(System.String,System.Exception,System.Collections.Generic.IReadOnlyDictionary{System.String,System.Object})", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/HealthChecks/Abstractions/src/HealthCheckResult.cs#L84C9-L84C100" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/HealthChecks/Abstractions/src/HealthCheckResult.cs#L84C9-L84C100" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckResult.Data", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/HealthChecks/Abstractions/src/HealthCheckResult.cs#L35C55-L35C59" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/HealthChecks/Abstractions/src/HealthCheckResult.cs#L35C55-L35C59" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckResult.Description", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/HealthChecks/Abstractions/src/HealthCheckResult.cs#L40C34-L40C38" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/HealthChecks/Abstractions/src/HealthCheckResult.cs#L40C34-L40C38" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckResult.Exception", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/HealthChecks/Abstractions/src/HealthCheckResult.cs#L45C35-L45C39" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/HealthChecks/Abstractions/src/HealthCheckResult.cs#L45C35-L45C39" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckResult.Status", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/HealthChecks/Abstractions/src/HealthCheckResult.cs#L50C34-L50C38" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/HealthChecks/Abstractions/src/HealthCheckResult.cs#L50C34-L50C38" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckResult", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/HealthChecks/Abstractions/src/HealthCheckResult.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/HealthChecks/Abstractions/src/HealthCheckResult.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.HealthChecks.HealthReport.#ctor(System.Collections.Generic.IReadOnlyDictionary{System.String,Microsoft.Extensions.Diagnostics.HealthChecks.HealthReportEntry},System.TimeSpan)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/HealthChecks/Abstractions/src/HealthReport.cs#L20C11-L25C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/HealthChecks/Abstractions/src/HealthReport.cs#L20C11-L25C6" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.HealthChecks.HealthReport.#ctor(System.Collections.Generic.IReadOnlyDictionary{System.String,Microsoft.Extensions.Diagnostics.HealthChecks.HealthReportEntry},Microsoft.Extensions.Diagnostics.HealthChecks.HealthStatus,System.TimeSpan)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/HealthChecks/Abstractions/src/HealthReport.cs#L33C5-L38C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/HealthChecks/Abstractions/src/HealthReport.cs#L33C5-L38C6" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.HealthChecks.HealthReport.Entries", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/HealthChecks/Abstractions/src/HealthReport.cs#L47C69-L47C73" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/HealthChecks/Abstractions/src/HealthReport.cs#L47C69-L47C73" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.HealthChecks.HealthReport.Status", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/HealthChecks/Abstractions/src/HealthReport.cs#L53C34-L53C38" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/HealthChecks/Abstractions/src/HealthReport.cs#L53C34-L53C38" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.HealthChecks.HealthReport.TotalDuration", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/HealthChecks/Abstractions/src/HealthReport.cs#L58C37-L58C41" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/HealthChecks/Abstractions/src/HealthReport.cs#L58C37-L58C41" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.HealthChecks.HealthReport", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/HealthChecks/Abstractions/src/HealthReport.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/HealthChecks/Abstractions/src/HealthReport.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.HealthChecks.HealthReportEntry.#ctor(Microsoft.Extensions.Diagnostics.HealthChecks.HealthStatus,System.String,System.TimeSpan,System.Exception,System.Collections.Generic.IReadOnlyDictionary{System.String,System.Object})", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/HealthChecks/Abstractions/src/HealthReportEntry.cs#L27C11-L29C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/HealthChecks/Abstractions/src/HealthReportEntry.cs#L27C11-L29C6" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.HealthChecks.HealthReportEntry.#ctor(Microsoft.Extensions.Diagnostics.HealthChecks.HealthStatus,System.String,System.TimeSpan,System.Exception,System.Collections.Generic.IReadOnlyDictionary{System.String,System.Object},System.Collections.Generic.IEnumerable{System.String})", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/HealthChecks/Abstractions/src/HealthReportEntry.cs#L43C9-L49C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/HealthChecks/Abstractions/src/HealthReportEntry.cs#L43C9-L49C6" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.HealthChecks.HealthReportEntry.Data", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/HealthChecks/Abstractions/src/HealthReportEntry.cs#L54C55-L54C59" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/HealthChecks/Abstractions/src/HealthReportEntry.cs#L54C55-L54C59" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.HealthChecks.HealthReportEntry.Description", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/HealthChecks/Abstractions/src/HealthReportEntry.cs#L59C34-L59C38" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/HealthChecks/Abstractions/src/HealthReportEntry.cs#L59C34-L59C38" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.HealthChecks.HealthReportEntry.Duration", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/HealthChecks/Abstractions/src/HealthReportEntry.cs#L64C32-L64C36" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/HealthChecks/Abstractions/src/HealthReportEntry.cs#L64C32-L64C36" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.HealthChecks.HealthReportEntry.Exception", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/HealthChecks/Abstractions/src/HealthReportEntry.cs#L69C35-L69C39" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/HealthChecks/Abstractions/src/HealthReportEntry.cs#L69C35-L69C39" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.HealthChecks.HealthReportEntry.Status", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/HealthChecks/Abstractions/src/HealthReportEntry.cs#L74C34-L74C38" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/HealthChecks/Abstractions/src/HealthReportEntry.cs#L74C34-L74C38" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.HealthChecks.HealthReportEntry.Tags", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/HealthChecks/Abstractions/src/HealthReportEntry.cs#L79C39-L79C43" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/HealthChecks/Abstractions/src/HealthReportEntry.cs#L79C39-L79C43" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.HealthChecks.HealthReportEntry", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/HealthChecks/Abstractions/src/HealthReportEntry.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/HealthChecks/Abstractions/src/HealthReportEntry.cs" }, { "Members": [ { "DocsId": "F:Microsoft.Extensions.Diagnostics.HealthChecks.HealthStatus.value__", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/HealthChecks/Abstractions/src/HealthStatus.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/HealthChecks/Abstractions/src/HealthStatus.cs" }, { "DocsId": "F:Microsoft.Extensions.Diagnostics.HealthChecks.HealthStatus.Unhealthy", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/HealthChecks/Abstractions/src/HealthStatus.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/HealthChecks/Abstractions/src/HealthStatus.cs" }, { "DocsId": "F:Microsoft.Extensions.Diagnostics.HealthChecks.HealthStatus.Degraded", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/HealthChecks/Abstractions/src/HealthStatus.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/HealthChecks/Abstractions/src/HealthStatus.cs" }, { "DocsId": "F:Microsoft.Extensions.Diagnostics.HealthChecks.HealthStatus.Healthy", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/HealthChecks/Abstractions/src/HealthStatus.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/HealthChecks/Abstractions/src/HealthStatus.cs" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.HealthChecks.HealthStatus", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/HealthChecks/Abstractions/src/HealthStatus.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/HealthChecks/Abstractions/src/HealthStatus.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.HealthChecks.IHealthCheck.CheckHealthAsync(Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckContext,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/HealthChecks/Abstractions/src/IHealthCheck.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/HealthChecks/Abstractions/src/IHealthCheck.cs" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.HealthChecks.IHealthCheck", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/HealthChecks/Abstractions/src/IHealthCheck.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/HealthChecks/Abstractions/src/IHealthCheck.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.HealthChecks.IHealthCheckPublisher.PublishAsync(Microsoft.Extensions.Diagnostics.HealthChecks.HealthReport,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/HealthChecks/Abstractions/src/IHealthCheckPublisher.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/HealthChecks/Abstractions/src/IHealthCheckPublisher.cs" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.HealthChecks.IHealthCheckPublisher", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/HealthChecks/Abstractions/src/IHealthCheckPublisher.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/HealthChecks/Abstractions/src/IHealthCheckPublisher.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Diagnostics.HealthChecks.Common.json b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Diagnostics.HealthChecks.Common.json index d81548af8e3..aba8cf1136f 100644 --- a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Diagnostics.HealthChecks.Common.json +++ b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Diagnostics.HealthChecks.Common.json @@ -1,78 +1,77 @@ { "Assembly": "Microsoft.Extensions.Diagnostics.HealthChecks.Common", - "GUID": "E9A2D65A5C9E45FCA09DF47DCE5FFE6FFFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "36AF120836F448B2AF7282E5E3DBA1A4FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.CommonHealthChecksExtensions.AddApplicationLifecycleHealthCheck(Microsoft.Extensions.DependencyInjection.IHealthChecksBuilder,System.String[])", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.Common/CommonHealthChecksExtensions.ApplicationLifecycle.cs#L24C12-L25C105" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.Common/CommonHealthChecksExtensions.ApplicationLifecycle.cs#L24C12-L25C105" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.CommonHealthChecksExtensions.AddApplicationLifecycleHealthCheck(Microsoft.Extensions.DependencyInjection.IHealthChecksBuilder,System.Collections.Generic.IEnumerable{System.String})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.Common/CommonHealthChecksExtensions.ApplicationLifecycle.cs#L35C12-L36C105" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.Common/CommonHealthChecksExtensions.ApplicationLifecycle.cs#L35C12-L36C105" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.CommonHealthChecksExtensions.AddManualHealthCheck(Microsoft.Extensions.DependencyInjection.IHealthChecksBuilder,System.String[])", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.Common/CommonHealthChecksExtensions.Manual.cs#L22C12-L24C84" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.Common/CommonHealthChecksExtensions.Manual.cs#L22C12-L24C84" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.CommonHealthChecksExtensions.AddManualHealthCheck(Microsoft.Extensions.DependencyInjection.IHealthChecksBuilder,System.Collections.Generic.IEnumerable{System.String})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.Common/CommonHealthChecksExtensions.Manual.cs#L34C12-L36C84" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.Common/CommonHealthChecksExtensions.Manual.cs#L34C12-L36C84" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.CommonHealthChecksExtensions.ReportHealthy(Microsoft.Extensions.Diagnostics.HealthChecks.IManualHealthCheck)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.Common/CommonHealthChecksExtensions.Manual.cs#L44C12-L44C80" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.Common/CommonHealthChecksExtensions.Manual.cs#L44C12-L44C80" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.CommonHealthChecksExtensions.ReportUnhealthy(Microsoft.Extensions.Diagnostics.HealthChecks.IManualHealthCheck,System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.Common/CommonHealthChecksExtensions.Manual.cs#L53C12-L53C114" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.Common/CommonHealthChecksExtensions.Manual.cs#L53C12-L53C114" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.CommonHealthChecksExtensions.AddTelemetryHealthCheckPublisher(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.Common/CommonHealthChecksExtensions.TelemetryPublisher.cs#L21C12-L24C82" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.Common/CommonHealthChecksExtensions.TelemetryPublisher.cs#L21C12-L24C82" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.CommonHealthChecksExtensions.AddTelemetryHealthCheckPublisher(Microsoft.Extensions.DependencyInjection.IServiceCollection,Microsoft.Extensions.Configuration.IConfigurationSection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.Common/CommonHealthChecksExtensions.TelemetryPublisher.cs#L34C12-L38C82" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.Common/CommonHealthChecksExtensions.TelemetryPublisher.cs#L34C12-L38C82" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.CommonHealthChecksExtensions.AddTelemetryHealthCheckPublisher(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{Microsoft.Extensions.Diagnostics.HealthChecks.TelemetryHealthCheckPublisherOptions})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.Common/CommonHealthChecksExtensions.TelemetryPublisher.cs#L48C12-L52C82" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.Common/CommonHealthChecksExtensions.TelemetryPublisher.cs#L48C12-L52C82" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.CommonHealthChecksExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.Common/CommonHealthChecksExtensions.ApplicationLifecycle.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.Common/CommonHealthChecksExtensions.ApplicationLifecycle.cs" }, { "Members": [ { "DocsId": "P:Microsoft.Extensions.Diagnostics.HealthChecks.IManualHealthCheck.Result", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.Common/IManualHealthCheck.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.Common/IManualHealthCheck.cs" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.HealthChecks.IManualHealthCheck", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.Common/IManualHealthCheck.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.Common/IManualHealthCheck.cs" }, { "Members": [], "DocsId": "T:Microsoft.Extensions.Diagnostics.HealthChecks.IManualHealthCheck`1", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.Common/IManualHealthCheck.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.Common/IManualHealthCheck.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.HealthChecks.TelemetryHealthCheckPublisherOptions.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.Common/TelemetryHealthCheckPublisherOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.Common/TelemetryHealthCheckPublisherOptions.cs" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.HealthChecks.TelemetryHealthCheckPublisherOptions.LogOnlyUnhealthy", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.Common/TelemetryHealthCheckPublisherOptions.cs#L18C36-L18C40" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.Common/TelemetryHealthCheckPublisherOptions.cs#L18C36-L18C40" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.HealthChecks.TelemetryHealthCheckPublisherOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.Common/TelemetryHealthCheckPublisherOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.Common/TelemetryHealthCheckPublisherOptions.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore.json b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore.json index f48fe398e91..79a33312453 100644 --- a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore.json +++ b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore.json @@ -1,17 +1,16 @@ { "Assembly": "Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore", - "GUID": "7C9024F1E23B4165A00343E3A2615590FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "56E88BC0CFA541448734AAEF01147FCAFFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.EntityFrameworkCoreHealthChecksBuilderExtensions.AddDbContextCheck``1(Microsoft.Extensions.DependencyInjection.IHealthChecksBuilder,System.String,System.Nullable{Microsoft.Extensions.Diagnostics.HealthChecks.HealthStatus},System.Collections.Generic.IEnumerable{System.String},System.Func{``0,System.Threading.CancellationToken,System.Threading.Tasks.Task{System.Boolean}})", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Middleware/HealthChecks.EntityFrameworkCore/src/DependencyInjection/EntityFrameworkCoreHealthChecksBuilderExtensions.cs#L60C9-L72C122" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Middleware/HealthChecks.EntityFrameworkCore/src/DependencyInjection/EntityFrameworkCoreHealthChecksBuilderExtensions.cs#L16707566C0-L72C122" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.EntityFrameworkCoreHealthChecksBuilderExtensions", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Middleware/HealthChecks.EntityFrameworkCore/src/DependencyInjection/EntityFrameworkCoreHealthChecksBuilderExtensions.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Middleware/HealthChecks.EntityFrameworkCore/src/DependencyInjection/EntityFrameworkCoreHealthChecksBuilderExtensions.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization.json b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization.json index 914797af4d2..e3004971118 100644 --- a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization.json +++ b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization.json @@ -1,85 +1,84 @@ { "Assembly": "Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization", - "GUID": "7676C41453794D4CB72E8F2311C57F92FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "CDC46CF328CD4B39BB33D0ABAF7A4DFCFFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ResourceUtilizationHealthCheckExtensions.AddResourceUtilizationHealthCheck(Microsoft.Extensions.DependencyInjection.IHealthChecksBuilder,System.String[])", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization/ResourceUtilizationHealthCheckExtensions.cs#L28C9-L32C94" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization/ResourceUtilizationHealthCheckExtensions.cs#L28C9-L32C94" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ResourceUtilizationHealthCheckExtensions.AddResourceUtilizationHealthCheck(Microsoft.Extensions.DependencyInjection.IHealthChecksBuilder,System.Collections.Generic.IEnumerable{System.String})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization/ResourceUtilizationHealthCheckExtensions.cs#L44C9-L48C94" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization/ResourceUtilizationHealthCheckExtensions.cs#L44C9-L48C94" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ResourceUtilizationHealthCheckExtensions.AddResourceUtilizationHealthCheck(Microsoft.Extensions.DependencyInjection.IHealthChecksBuilder,Microsoft.Extensions.Configuration.IConfigurationSection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization/ResourceUtilizationHealthCheckExtensions.cs#L62C9-L66C60" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization/ResourceUtilizationHealthCheckExtensions.cs#L62C9-L66C60" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ResourceUtilizationHealthCheckExtensions.AddResourceUtilizationHealthCheck(Microsoft.Extensions.DependencyInjection.IHealthChecksBuilder,Microsoft.Extensions.Configuration.IConfigurationSection,System.String[])", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization/ResourceUtilizationHealthCheckExtensions.cs#L82C9-L87C64" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization/ResourceUtilizationHealthCheckExtensions.cs#L82C9-L87C64" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ResourceUtilizationHealthCheckExtensions.AddResourceUtilizationHealthCheck(Microsoft.Extensions.DependencyInjection.IHealthChecksBuilder,Microsoft.Extensions.Configuration.IConfigurationSection,System.Collections.Generic.IEnumerable{System.String})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization/ResourceUtilizationHealthCheckExtensions.cs#L103C9-L108C64" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization/ResourceUtilizationHealthCheckExtensions.cs#L103C9-L108C64" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ResourceUtilizationHealthCheckExtensions.AddResourceUtilizationHealthCheck(Microsoft.Extensions.DependencyInjection.IHealthChecksBuilder,System.Action{Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilizationHealthCheckOptions})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization/ResourceUtilizationHealthCheckExtensions.cs#L122C9-L126C60" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization/ResourceUtilizationHealthCheckExtensions.cs#L122C9-L126C60" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ResourceUtilizationHealthCheckExtensions.AddResourceUtilizationHealthCheck(Microsoft.Extensions.DependencyInjection.IHealthChecksBuilder,System.Action{Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilizationHealthCheckOptions},System.String[])", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization/ResourceUtilizationHealthCheckExtensions.cs#L142C9-L147C64" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization/ResourceUtilizationHealthCheckExtensions.cs#L142C9-L147C64" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ResourceUtilizationHealthCheckExtensions.AddResourceUtilizationHealthCheck(Microsoft.Extensions.DependencyInjection.IHealthChecksBuilder,System.Action{Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilizationHealthCheckOptions},System.Collections.Generic.IEnumerable{System.String})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization/ResourceUtilizationHealthCheckExtensions.cs#L163C9-L168C64" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization/ResourceUtilizationHealthCheckExtensions.cs#L163C9-L168C64" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.ResourceUtilizationHealthCheckExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization/ResourceUtilizationHealthCheckExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization/ResourceUtilizationHealthCheckExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUsageThresholds.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization/ResourceUsageThresholds.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization/ResourceUsageThresholds.cs" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUsageThresholds.DegradedUtilizationPercentage", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization/ResourceUsageThresholds.cs#L22C52-L22C56" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization/ResourceUsageThresholds.cs#L22C52-L22C56" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUsageThresholds.UnhealthyUtilizationPercentage", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization/ResourceUsageThresholds.cs#L31C53-L31C57" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization/ResourceUsageThresholds.cs#L31C53-L31C57" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUsageThresholds", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization/ResourceUsageThresholds.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization/ResourceUsageThresholds.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilizationHealthCheckOptions.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization/ResourceUtilizationHealthCheckOptions.cs#L27C66-L46C73" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization/ResourceUtilizationHealthCheckOptions.cs#L27C66-L46C73" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilizationHealthCheckOptions.CpuThresholds", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization/ResourceUtilizationHealthCheckOptions.cs#L27C52-L27C56" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization/ResourceUtilizationHealthCheckOptions.cs#L27C52-L27C56" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilizationHealthCheckOptions.MemoryThresholds", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization/ResourceUtilizationHealthCheckOptions.cs#L37C55-L37C59" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization/ResourceUtilizationHealthCheckOptions.cs#L37C55-L37C59" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilizationHealthCheckOptions.SamplingWindow", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization/ResourceUtilizationHealthCheckOptions.cs#L46C38-L46C42" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization/ResourceUtilizationHealthCheckOptions.cs#L46C38-L46C42" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilizationHealthCheckOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization/ResourceUtilizationHealthCheckOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization/ResourceUtilizationHealthCheckOptions.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Diagnostics.HealthChecks.json b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Diagnostics.HealthChecks.json index de68e006b0d..4b6d7fb9cd8 100644 --- a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Diagnostics.HealthChecks.json +++ b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Diagnostics.HealthChecks.json @@ -1,165 +1,164 @@ { "Assembly": "Microsoft.Extensions.Diagnostics.HealthChecks", - "GUID": "48E6C7220B534C21B2DF7862FF5BE5BEFFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "F6A6F6E2BB504D6193B9E884BB86F155FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HealthChecksBuilderAddCheckExtensions.AddCheck(Microsoft.Extensions.DependencyInjection.IHealthChecksBuilder,System.String,Microsoft.Extensions.Diagnostics.HealthChecks.IHealthCheck,System.Nullable{Microsoft.Extensions.Diagnostics.HealthChecks.HealthStatus},System.Collections.Generic.IEnumerable{System.String})", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/HealthChecks/HealthChecks/src/DependencyInjection/HealthChecksBuilderAddCheckExtensions.cs#L37C9-L37C80" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/HealthChecks/HealthChecks/src/DependencyInjection/HealthChecksBuilderAddCheckExtensions.cs#L37C9-L37C80" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HealthChecksBuilderAddCheckExtensions.AddCheck(Microsoft.Extensions.DependencyInjection.IHealthChecksBuilder,System.String,Microsoft.Extensions.Diagnostics.HealthChecks.IHealthCheck,System.Nullable{Microsoft.Extensions.Diagnostics.HealthChecks.HealthStatus},System.Collections.Generic.IEnumerable{System.String},System.Nullable{System.TimeSpan})", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/HealthChecks/HealthChecks/src/DependencyInjection/HealthChecksBuilderAddCheckExtensions.cs#L62C9-L66C103" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/HealthChecks/HealthChecks/src/DependencyInjection/HealthChecksBuilderAddCheckExtensions.cs#L62C9-L66C103" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HealthChecksBuilderAddCheckExtensions.AddCheck``1(Microsoft.Extensions.DependencyInjection.IHealthChecksBuilder,System.String,System.Nullable{Microsoft.Extensions.Diagnostics.HealthChecks.HealthStatus},System.Collections.Generic.IEnumerable{System.String})", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/HealthChecks/HealthChecks/src/DependencyInjection/HealthChecksBuilderAddCheckExtensions.cs#L94C9-L94C73" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/HealthChecks/HealthChecks/src/DependencyInjection/HealthChecksBuilderAddCheckExtensions.cs#L94C9-L94C73" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HealthChecksBuilderAddCheckExtensions.AddCheck``1(Microsoft.Extensions.DependencyInjection.IHealthChecksBuilder,System.String,System.Nullable{Microsoft.Extensions.Diagnostics.HealthChecks.HealthStatus},System.Collections.Generic.IEnumerable{System.String},System.Nullable{System.TimeSpan})", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/HealthChecks/HealthChecks/src/DependencyInjection/HealthChecksBuilderAddCheckExtensions.cs#L123C9-L126C121" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/HealthChecks/HealthChecks/src/DependencyInjection/HealthChecksBuilderAddCheckExtensions.cs#L123C9-L126C121" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HealthChecksBuilderAddCheckExtensions.AddTypeActivatedCheck``1(Microsoft.Extensions.DependencyInjection.IHealthChecksBuilder,System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/HealthChecks/HealthChecks/src/DependencyInjection/HealthChecksBuilderAddCheckExtensions.cs#L153C9-L156C95" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/HealthChecks/HealthChecks/src/DependencyInjection/HealthChecksBuilderAddCheckExtensions.cs#L153C9-L156C95" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HealthChecksBuilderAddCheckExtensions.AddTypeActivatedCheck``1(Microsoft.Extensions.DependencyInjection.IHealthChecksBuilder,System.String,System.Nullable{Microsoft.Extensions.Diagnostics.HealthChecks.HealthStatus},System.Object[])", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/HealthChecks/HealthChecks/src/DependencyInjection/HealthChecksBuilderAddCheckExtensions.cs#L182C9-L185C89" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/HealthChecks/HealthChecks/src/DependencyInjection/HealthChecksBuilderAddCheckExtensions.cs#L182C9-L185C89" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HealthChecksBuilderAddCheckExtensions.AddTypeActivatedCheck``1(Microsoft.Extensions.DependencyInjection.IHealthChecksBuilder,System.String,System.Nullable{Microsoft.Extensions.Diagnostics.HealthChecks.HealthStatus},System.Collections.Generic.IEnumerable{System.String},System.Object[])", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/HealthChecks/HealthChecks/src/DependencyInjection/HealthChecksBuilderAddCheckExtensions.cs#L213C9-L216C100" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/HealthChecks/HealthChecks/src/DependencyInjection/HealthChecksBuilderAddCheckExtensions.cs#L16707566C0-L216C100" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HealthChecksBuilderAddCheckExtensions.AddTypeActivatedCheck``1(Microsoft.Extensions.DependencyInjection.IHealthChecksBuilder,System.String,System.Nullable{Microsoft.Extensions.Diagnostics.HealthChecks.HealthStatus},System.Collections.Generic.IEnumerable{System.String},System.TimeSpan,System.Object[])", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/HealthChecks/HealthChecks/src/DependencyInjection/HealthChecksBuilderAddCheckExtensions.cs#L251C9-L254C109" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/HealthChecks/HealthChecks/src/DependencyInjection/HealthChecksBuilderAddCheckExtensions.cs#L16707566C0-L254C109" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.HealthChecksBuilderAddCheckExtensions", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/HealthChecks/HealthChecks/src/DependencyInjection/HealthChecksBuilderAddCheckExtensions.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/HealthChecks/HealthChecks/src/DependencyInjection/HealthChecksBuilderAddCheckExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HealthChecksBuilderDelegateExtensions.AddCheck(Microsoft.Extensions.DependencyInjection.IHealthChecksBuilder,System.String,System.Func{Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckResult},System.Collections.Generic.IEnumerable{System.String})", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/HealthChecks/HealthChecks/src/DependencyInjection/HealthChecksBuilderDelegateExtensions.cs#L34C9-L34C62" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/HealthChecks/HealthChecks/src/DependencyInjection/HealthChecksBuilderDelegateExtensions.cs#L34C9-L34C62" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HealthChecksBuilderDelegateExtensions.AddCheck(Microsoft.Extensions.DependencyInjection.IHealthChecksBuilder,System.String,System.Func{Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckResult},System.Collections.Generic.IEnumerable{System.String},System.Nullable{System.TimeSpan})", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/HealthChecks/HealthChecks/src/DependencyInjection/HealthChecksBuilderDelegateExtensions.cs#L54C9-L59C109" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/HealthChecks/HealthChecks/src/DependencyInjection/HealthChecksBuilderDelegateExtensions.cs#L16707566C0-L59C109" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HealthChecksBuilderDelegateExtensions.AddCheck(Microsoft.Extensions.DependencyInjection.IHealthChecksBuilder,System.String,System.Func{System.Threading.CancellationToken,Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckResult},System.Collections.Generic.IEnumerable{System.String})", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/HealthChecks/HealthChecks/src/DependencyInjection/HealthChecksBuilderDelegateExtensions.cs#L77C9-L77C62" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/HealthChecks/HealthChecks/src/DependencyInjection/HealthChecksBuilderDelegateExtensions.cs#L77C9-L77C62" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HealthChecksBuilderDelegateExtensions.AddCheck(Microsoft.Extensions.DependencyInjection.IHealthChecksBuilder,System.String,System.Func{System.Threading.CancellationToken,Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckResult},System.Collections.Generic.IEnumerable{System.String},System.Nullable{System.TimeSpan})", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/HealthChecks/HealthChecks/src/DependencyInjection/HealthChecksBuilderDelegateExtensions.cs#L97C9-L102C109" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/HealthChecks/HealthChecks/src/DependencyInjection/HealthChecksBuilderDelegateExtensions.cs#L16707566C0-L102C109" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HealthChecksBuilderDelegateExtensions.AddAsyncCheck(Microsoft.Extensions.DependencyInjection.IHealthChecksBuilder,System.String,System.Func{System.Threading.Tasks.Task{Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckResult}},System.Collections.Generic.IEnumerable{System.String})", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/HealthChecks/HealthChecks/src/DependencyInjection/HealthChecksBuilderDelegateExtensions.cs#L120C9-L120C67" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/HealthChecks/HealthChecks/src/DependencyInjection/HealthChecksBuilderDelegateExtensions.cs#L120C9-L120C67" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HealthChecksBuilderDelegateExtensions.AddAsyncCheck(Microsoft.Extensions.DependencyInjection.IHealthChecksBuilder,System.String,System.Func{System.Threading.Tasks.Task{Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckResult}},System.Collections.Generic.IEnumerable{System.String},System.Nullable{System.TimeSpan})", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/HealthChecks/HealthChecks/src/DependencyInjection/HealthChecksBuilderDelegateExtensions.cs#L140C9-L145C109" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/HealthChecks/HealthChecks/src/DependencyInjection/HealthChecksBuilderDelegateExtensions.cs#L16707566C0-L145C109" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HealthChecksBuilderDelegateExtensions.AddAsyncCheck(Microsoft.Extensions.DependencyInjection.IHealthChecksBuilder,System.String,System.Func{System.Threading.CancellationToken,System.Threading.Tasks.Task{Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckResult}},System.Collections.Generic.IEnumerable{System.String})", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/HealthChecks/HealthChecks/src/DependencyInjection/HealthChecksBuilderDelegateExtensions.cs#L163C9-L163C67" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/HealthChecks/HealthChecks/src/DependencyInjection/HealthChecksBuilderDelegateExtensions.cs#L163C9-L163C67" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HealthChecksBuilderDelegateExtensions.AddAsyncCheck(Microsoft.Extensions.DependencyInjection.IHealthChecksBuilder,System.String,System.Func{System.Threading.CancellationToken,System.Threading.Tasks.Task{Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckResult}},System.Collections.Generic.IEnumerable{System.String},System.Nullable{System.TimeSpan})", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/HealthChecks/HealthChecks/src/DependencyInjection/HealthChecksBuilderDelegateExtensions.cs#L183C9-L188C109" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/HealthChecks/HealthChecks/src/DependencyInjection/HealthChecksBuilderDelegateExtensions.cs#L16707566C0-L188C109" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.HealthChecksBuilderDelegateExtensions", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/HealthChecks/HealthChecks/src/DependencyInjection/HealthChecksBuilderDelegateExtensions.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/HealthChecks/HealthChecks/src/DependencyInjection/HealthChecksBuilderDelegateExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HealthCheckServiceCollectionExtensions.AddHealthChecks(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/HealthChecks/HealthChecks/src/DependencyInjection/HealthCheckServiceCollectionExtensions.cs#L28C9-L30C50" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/HealthChecks/HealthChecks/src/DependencyInjection/HealthCheckServiceCollectionExtensions.cs#L28C9-L30C50" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.HealthCheckServiceCollectionExtensions", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/HealthChecks/HealthChecks/src/DependencyInjection/HealthCheckServiceCollectionExtensions.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/HealthChecks/HealthChecks/src/DependencyInjection/HealthCheckServiceCollectionExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.IHealthChecksBuilder.Add(Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckRegistration)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/HealthChecks/HealthChecks/src/DependencyInjection/IHealthChecksBuilder.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/HealthChecks/HealthChecks/src/DependencyInjection/IHealthChecksBuilder.cs" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.IHealthChecksBuilder.Services", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/HealthChecks/HealthChecks/src/DependencyInjection/IHealthChecksBuilder.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/HealthChecks/HealthChecks/src/DependencyInjection/IHealthChecksBuilder.cs" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.IHealthChecksBuilder", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/HealthChecks/HealthChecks/src/DependencyInjection/IHealthChecksBuilder.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/HealthChecks/HealthChecks/src/DependencyInjection/IHealthChecksBuilder.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckPublisherOptions.#ctor", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/HealthChecks/HealthChecks/src/HealthCheckPublisherOptions.cs#L85C45-L23C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/HealthChecks/HealthChecks/src/HealthCheckPublisherOptions.cs#L85C45-L23C6" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckPublisherOptions.Delay", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/HealthChecks/HealthChecks/src/HealthCheckPublisherOptions.cs#L32C16-L32C22" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/HealthChecks/HealthChecks/src/HealthCheckPublisherOptions.cs#L32C16-L32C22" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckPublisherOptions.Period", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/HealthChecks/HealthChecks/src/HealthCheckPublisherOptions.cs#L53C16-L53C23" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/HealthChecks/HealthChecks/src/HealthCheckPublisherOptions.cs#L53C16-L53C23" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckPublisherOptions.Predicate", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/HealthChecks/HealthChecks/src/HealthCheckPublisherOptions.cs#L78C61-L78C65" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/HealthChecks/HealthChecks/src/HealthCheckPublisherOptions.cs#L78C61-L78C65" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckPublisherOptions.Timeout", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/HealthChecks/HealthChecks/src/HealthCheckPublisherOptions.cs#L85C31-L85C35" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/HealthChecks/HealthChecks/src/HealthCheckPublisherOptions.cs#L85C31-L85C35" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckPublisherOptions", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/HealthChecks/HealthChecks/src/HealthCheckPublisherOptions.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/HealthChecks/HealthChecks/src/HealthCheckPublisherOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckService.CheckHealthAsync(System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/HealthChecks/HealthChecks/src/HealthCheckService.cs#L45C9-L45C69" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/HealthChecks/HealthChecks/src/HealthCheckService.cs#L45C9-L45C69" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckService.CheckHealthAsync(System.Func{Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckRegistration,System.Boolean},System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/HealthChecks/HealthChecks/src/HealthCheckService.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/HealthChecks/HealthChecks/src/HealthCheckService.cs" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckService.#ctor", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/HealthChecks/HealthChecks/src/HealthCheckService.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/HealthChecks/HealthChecks/src/HealthCheckService.cs" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckService", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/HealthChecks/HealthChecks/src/HealthCheckService.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/HealthChecks/HealthChecks/src/HealthCheckService.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckServiceOptions.#ctor", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/HealthChecks/HealthChecks/src/HealthCheckServiceOptions.cs#L16C74-L16C109" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/HealthChecks/HealthChecks/src/HealthCheckServiceOptions.cs#L16C74-L16C109" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckServiceOptions.Registrations", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/HealthChecks/HealthChecks/src/HealthCheckServiceOptions.cs#L16C65-L16C69" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/HealthChecks/HealthChecks/src/HealthCheckServiceOptions.cs#L16C65-L16C69" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckServiceOptions", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/HealthChecks/HealthChecks/src/HealthCheckServiceOptions.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/HealthChecks/HealthChecks/src/HealthCheckServiceOptions.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Diagnostics.Probes.json b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Diagnostics.Probes.json index 577db21be83..a82f525a037 100644 --- a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Diagnostics.Probes.json +++ b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Diagnostics.Probes.json @@ -1,121 +1,120 @@ { "Assembly": "Microsoft.Extensions.Diagnostics.Probes", - "GUID": "B537D1DD24CE4F589932EAD81644B336FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "1BE0D5C9737049069DAD43DD8167D219FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Probes.KubernetesProbesOptions.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/KubernetesProbesOptions.cs#L21C67-L46C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/KubernetesProbesOptions.cs#L21C67-L46C6" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Probes.KubernetesProbesOptions.LivenessProbe", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/KubernetesProbesOptions.cs#L21C53-L21C57" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/KubernetesProbesOptions.cs#L21C53-L21C57" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Probes.KubernetesProbesOptions.StartupProbe", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/KubernetesProbesOptions.cs#L32C52-L32C56" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/KubernetesProbesOptions.cs#L32C52-L32C56" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Probes.KubernetesProbesOptions.ReadinessProbe", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/KubernetesProbesOptions.cs#L43C54-L43C58" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/KubernetesProbesOptions.cs#L43C54-L43C58" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Probes.KubernetesProbesOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/KubernetesProbesOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/KubernetesProbesOptions.cs" }, { "Members": [ { "DocsId": "F:Microsoft.Extensions.Diagnostics.Probes.ProbeTags.Liveness", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/ProbeTags.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/ProbeTags.cs" }, { "DocsId": "F:Microsoft.Extensions.Diagnostics.Probes.ProbeTags.Startup", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/ProbeTags.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/ProbeTags.cs" }, { "DocsId": "F:Microsoft.Extensions.Diagnostics.Probes.ProbeTags.Readiness", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/ProbeTags.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/ProbeTags.cs" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Probes.ProbeTags", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/ProbeTags.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/ProbeTags.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Probes.TcpEndpointProbesOptions.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/TcpEndpointProbesOptions.cs#L28C40-L46C84" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/TcpEndpointProbesOptions.cs#L28C40-L46C84" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Probes.TcpEndpointProbesOptions.TcpPort", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/TcpEndpointProbesOptions.cs#L28C26-L28C30" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/TcpEndpointProbesOptions.cs#L28C26-L28C30" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Probes.TcpEndpointProbesOptions.MaxPendingConnections", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/TcpEndpointProbesOptions.cs#L37C40-L37C44" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/TcpEndpointProbesOptions.cs#L37C40-L37C44" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Probes.TcpEndpointProbesOptions.HealthAssessmentPeriod", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/TcpEndpointProbesOptions.cs#L46C46-L46C50" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/TcpEndpointProbesOptions.cs#L46C46-L46C50" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Probes.TcpEndpointProbesOptions.FilterChecks", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/TcpEndpointProbesOptions.cs#L54C64-L54C68" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/TcpEndpointProbesOptions.cs#L54C64-L54C68" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Probes.TcpEndpointProbesOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/TcpEndpointProbesOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/TcpEndpointProbesOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.KubernetesProbesExtensions.AddKubernetesProbes(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/KubernetesProbesExtensions.cs#L23C12-L23C52" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/KubernetesProbesExtensions.cs#L23C12-L23C52" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.KubernetesProbesExtensions.AddKubernetesProbes(Microsoft.Extensions.DependencyInjection.IServiceCollection,Microsoft.Extensions.Configuration.IConfigurationSection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/KubernetesProbesExtensions.cs#L33C9-L36C67" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/KubernetesProbesExtensions.cs#L16707566C0-L36C67" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.KubernetesProbesExtensions.AddKubernetesProbes(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{Microsoft.Extensions.Diagnostics.Probes.KubernetesProbesOptions})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/KubernetesProbesExtensions.cs#L47C9-L103C16" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/KubernetesProbesExtensions.cs#L16707566C0-L103C16" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.KubernetesProbesExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/KubernetesProbesExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/KubernetesProbesExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.TcpEndpointProbesExtensions.AddTcpEndpointProbe(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/TcpEndpointProbesExtensions.cs#L28C9-L30C95" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/TcpEndpointProbesExtensions.cs#L28C9-L30C95" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.TcpEndpointProbesExtensions.AddTcpEndpointProbe(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/TcpEndpointProbesExtensions.cs#L42C9-L55C25" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/TcpEndpointProbesExtensions.cs#L16707566C0-L55C25" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.TcpEndpointProbesExtensions.AddTcpEndpointProbe(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{Microsoft.Extensions.Diagnostics.Probes.TcpEndpointProbesOptions})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/TcpEndpointProbesExtensions.cs#L69C9-L74C47" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/TcpEndpointProbesExtensions.cs#L69C9-L74C47" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.TcpEndpointProbesExtensions.AddTcpEndpointProbe(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.String,System.Action{Microsoft.Extensions.Diagnostics.Probes.TcpEndpointProbesOptions})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/TcpEndpointProbesExtensions.cs#L90C9-L95C51" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/TcpEndpointProbesExtensions.cs#L90C9-L95C51" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.TcpEndpointProbesExtensions.AddTcpEndpointProbe(Microsoft.Extensions.DependencyInjection.IServiceCollection,Microsoft.Extensions.Configuration.IConfigurationSection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/TcpEndpointProbesExtensions.cs#L109C9-L114C47" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/TcpEndpointProbesExtensions.cs#L109C9-L114C47" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.TcpEndpointProbesExtensions.AddTcpEndpointProbe(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.String,Microsoft.Extensions.Configuration.IConfigurationSection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/TcpEndpointProbesExtensions.cs#L130C9-L135C51" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/TcpEndpointProbesExtensions.cs#L130C9-L135C51" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.TcpEndpointProbesExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/TcpEndpointProbesExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Probes/TcpEndpointProbesExtensions.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Diagnostics.ResourceMonitoring.json b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Diagnostics.ResourceMonitoring.json index 8df39fe7383..78fce509901 100644 --- a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Diagnostics.ResourceMonitoring.json +++ b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Diagnostics.ResourceMonitoring.json @@ -1,155 +1,154 @@ { "Assembly": "Microsoft.Extensions.Diagnostics.ResourceMonitoring", - "GUID": "CA0942331F75454CA9E66028BAB8781EFFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "88E8F74261E745F7857DADE6244A73A7FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ResourceMonitoringServiceCollectionExtensions.AddResourceMonitoring(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/ResourceMonitoringServiceCollectionExtensions.cs#L32C9-L34C65" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/ResourceMonitoringServiceCollectionExtensions.cs#L32C9-L34C65" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ResourceMonitoringServiceCollectionExtensions.AddResourceMonitoring(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{Microsoft.Extensions.Diagnostics.ResourceMonitoring.IResourceMonitorBuilder})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/ResourceMonitoringServiceCollectionExtensions.cs#L48C9-L51C66" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/ResourceMonitoringServiceCollectionExtensions.cs#L48C9-L51C66" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.ResourceMonitoringServiceCollectionExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/ResourceMonitoringServiceCollectionExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/ResourceMonitoringServiceCollectionExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.ResourceMonitoring.IResourceMonitor.GetUtilization(System.TimeSpan)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/IResourceMonitor.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/IResourceMonitor.cs" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.ResourceMonitoring.IResourceMonitor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/IResourceMonitor.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/IResourceMonitor.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.ResourceMonitoring.IResourceMonitorBuilder.AddPublisher``1", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/IResourceMonitorBuilder.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/IResourceMonitorBuilder.cs" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.ResourceMonitoring.IResourceMonitorBuilder.Services", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/IResourceMonitorBuilder.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/IResourceMonitorBuilder.cs" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.ResourceMonitoring.IResourceMonitorBuilder", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/IResourceMonitorBuilder.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/IResourceMonitorBuilder.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.ResourceMonitoring.IResourceUtilizationPublisher.PublishAsync(Microsoft.Extensions.Diagnostics.ResourceMonitoring.ResourceUtilization,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/IResourceUtilizationPublisher.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/IResourceUtilizationPublisher.cs" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.ResourceMonitoring.IResourceUtilizationPublisher", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/IResourceUtilizationPublisher.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/IResourceUtilizationPublisher.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.ResourceMonitoring.ResourceMonitoringBuilderExtensions.ConfigureMonitor(Microsoft.Extensions.Diagnostics.ResourceMonitoring.IResourceMonitorBuilder,System.Action{Microsoft.Extensions.Diagnostics.ResourceMonitoring.ResourceMonitoringOptions})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/ResourceMonitoringBuilderExtensions.cs#L28C9-L31C104" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/ResourceMonitoringBuilderExtensions.cs#L16707566C0-L31C104" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.ResourceMonitoring.ResourceMonitoringBuilderExtensions.ConfigureMonitor(Microsoft.Extensions.Diagnostics.ResourceMonitoring.IResourceMonitorBuilder,Microsoft.Extensions.Configuration.IConfigurationSection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/ResourceMonitoringBuilderExtensions.cs#L45C9-L48C97" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/ResourceMonitoringBuilderExtensions.cs#L16707566C0-L48C97" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.ResourceMonitoring.ResourceMonitoringBuilderExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/ResourceMonitoringBuilderExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/ResourceMonitoringBuilderExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.ResourceMonitoring.ResourceMonitoringOptions.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/ResourceMonitoringOptions.cs#L32C54-L19C80" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/ResourceMonitoringOptions.cs#L32C54-L19C80" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.ResourceMonitoring.ResourceMonitoringOptions.CollectionWindow", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/ResourceMonitoringOptions.cs#L32C40-L32C44" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/ResourceMonitoringOptions.cs#L32C40-L32C44" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.ResourceMonitoring.ResourceMonitoringOptions.SamplingInterval", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/ResourceMonitoringOptions.cs#L44C40-L44C44" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/ResourceMonitoringOptions.cs#L44C40-L44C44" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.ResourceMonitoring.ResourceMonitoringOptions.PublishingWindow", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/ResourceMonitoringOptions.cs#L56C40-L56C44" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/ResourceMonitoringOptions.cs#L56C40-L56C44" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.ResourceMonitoring.ResourceMonitoringOptions.CpuConsumptionRefreshInterval", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/ResourceMonitoringOptions.Linux.cs#L26C53-L26C57" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/ResourceMonitoringOptions.Linux.cs#L26C53-L26C57" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.ResourceMonitoring.ResourceMonitoringOptions.MemoryConsumptionRefreshInterval", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/ResourceMonitoringOptions.Linux.cs#L39C56-L39C60" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/ResourceMonitoringOptions.Linux.cs#L39C56-L39C60" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.ResourceMonitoring.ResourceMonitoringOptions.SourceIpAddresses", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/ResourceMonitoringOptions.Windows.cs#L19C45-L19C49" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/ResourceMonitoringOptions.Windows.cs#L19C45-L19C49" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.ResourceMonitoring.ResourceMonitoringOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/ResourceMonitoringOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/ResourceMonitoringOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.ResourceMonitoring.ResourceUtilization.#ctor(System.Double,System.UInt64,Microsoft.Extensions.Diagnostics.ResourceMonitoring.SystemResources)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/ResourceUtilization.cs#L44C43-L58C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/ResourceUtilization.cs#L44C43-L58C6" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.ResourceMonitoring.ResourceUtilization.CpuUsedPercentage", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/ResourceUtilization.cs#L24C39-L24C43" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/ResourceUtilization.cs#L24C39-L24C43" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.ResourceMonitoring.ResourceUtilization.MemoryUsedPercentage", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/ResourceUtilization.cs#L32C42-L32C46" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/ResourceUtilization.cs#L32C42-L32C46" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.ResourceMonitoring.ResourceUtilization.MemoryUsedInBytes", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/ResourceUtilization.cs#L37C38-L37C42" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/ResourceUtilization.cs#L37C38-L37C42" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.ResourceMonitoring.ResourceUtilization.SystemResources", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/ResourceUtilization.cs#L42C46-L42C50" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/ResourceUtilization.cs#L42C46-L42C50" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.ResourceMonitoring.ResourceUtilization", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/ResourceUtilization.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/ResourceUtilization.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.ResourceMonitoring.SystemResources.#ctor(System.Double,System.Double,System.UInt64,System.UInt64)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/SystemResources.cs#L54C9-L58C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/SystemResources.cs#L57C9-L61C6" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.ResourceMonitoring.SystemResources.GuaranteedCpuUnits", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/SystemResources.cs#L23C40-L23C44" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/SystemResources.cs#L26C40-L26C44" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.ResourceMonitoring.SystemResources.MaximumCpuUnits", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/SystemResources.cs#L33C37-L33C41" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/SystemResources.cs#L36C37-L36C41" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.ResourceMonitoring.SystemResources.GuaranteedMemoryInBytes", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/SystemResources.cs#L38C44-L38C48" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/SystemResources.cs#L41C44-L41C48" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.ResourceMonitoring.SystemResources.MaximumMemoryInBytes", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/SystemResources.cs#L43C41-L43C45" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/SystemResources.cs#L46C41-L46C45" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.ResourceMonitoring.SystemResources", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/SystemResources.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitoring/SystemResources.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Diagnostics.Testing.json b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Diagnostics.Testing.json index 12d25e76a4c..a03138c82e9 100644 --- a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Diagnostics.Testing.json +++ b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Diagnostics.Testing.json @@ -1,387 +1,386 @@ { "Assembly": "Microsoft.Extensions.Diagnostics.Testing", - "GUID": "5B7B2EA3EEB74B438388BCD5257DFBC9FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "183818B3A29944558FD3931F1337BEE9FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:System.FakeLoggerServiceProviderExtensions.GetFakeLogCollector(System.IServiceProvider)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLoggerServiceProviderExtensions.cs#L21C12-L21C126" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLoggerServiceProviderExtensions.cs#L21C12-L21C126" } ], "DocsId": "T:System.FakeLoggerServiceProviderExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLoggerServiceProviderExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLoggerServiceProviderExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.Testing.CollectedMeasurement`1.ContainsTags(System.Collections.Generic.KeyValuePair{System.String,System.Object}[])", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/CollectedMeasurement.cs#L61C29-L74C21" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/CollectedMeasurement.cs#L61C29-L74C21" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.Testing.CollectedMeasurement`1.ContainsTags(System.String[])", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/CollectedMeasurement.cs#L84C29-L92C21" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/CollectedMeasurement.cs#L84C29-L92C21" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.Testing.CollectedMeasurement`1.MatchesTags(System.Collections.Generic.KeyValuePair{System.String,System.Object}[])", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/CollectedMeasurement.cs#L100C77-L100C126" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/CollectedMeasurement.cs#L100C77-L100C126" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.Testing.CollectedMeasurement`1.MatchesTags(System.String[])", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/CollectedMeasurement.cs#L107C54-L107C117" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/CollectedMeasurement.cs#L107C54-L107C117" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.Testing.CollectedMeasurement`1.Value", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/CollectedMeasurement.cs#L42C22-L42C26" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/CollectedMeasurement.cs#L42C22-L42C26" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.Testing.CollectedMeasurement`1.Timestamp", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/CollectedMeasurement.cs#L47C39-L47C43" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/CollectedMeasurement.cs#L47C39-L47C43" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.Testing.CollectedMeasurement`1.Tags", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/CollectedMeasurement.cs#L52C56-L52C60" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/CollectedMeasurement.cs#L52C56-L52C60" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Metrics.Testing.CollectedMeasurement`1", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/CollectedMeasurement.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/CollectedMeasurement.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.Testing.MeasurementExtensions.ContainsTags``1(System.Collections.Generic.IEnumerable{Microsoft.Extensions.Diagnostics.Metrics.Testing.CollectedMeasurement{``0}},System.Collections.Generic.KeyValuePair{System.String,System.Object}[])", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/MeasurementExtensions.cs#L24C12-L24C57" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/MeasurementExtensions.cs#L16707566C0-L24C57" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.Testing.MeasurementExtensions.ContainsTags``1(System.Collections.Generic.IEnumerable{Microsoft.Extensions.Diagnostics.Metrics.Testing.CollectedMeasurement{``0}},System.String[])", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/MeasurementExtensions.cs#L35C12-L35C57" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/MeasurementExtensions.cs#L16707566C0-L35C57" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.Testing.MeasurementExtensions.MatchesTags``1(System.Collections.Generic.IEnumerable{Microsoft.Extensions.Diagnostics.Metrics.Testing.CollectedMeasurement{``0}},System.Collections.Generic.KeyValuePair{System.String,System.Object}[])", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/MeasurementExtensions.cs#L46C12-L46C56" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/MeasurementExtensions.cs#L16707566C0-L46C56" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.Testing.MeasurementExtensions.MatchesTags``1(System.Collections.Generic.IEnumerable{Microsoft.Extensions.Diagnostics.Metrics.Testing.CollectedMeasurement{``0}},System.String[])", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/MeasurementExtensions.cs#L57C12-L57C56" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/MeasurementExtensions.cs#L16707566C0-L57C56" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.Testing.MeasurementExtensions.EvaluateAsCounter``1(System.Collections.Generic.IEnumerable{Microsoft.Extensions.Diagnostics.Metrics.Testing.CollectedMeasurement{``0}})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/MeasurementExtensions.cs#L69C9-L77C91" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/MeasurementExtensions.cs#L69C9-L16707566C0" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Metrics.Testing.MeasurementExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/MeasurementExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/MeasurementExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.Testing.MetricCollector`1.#ctor(System.Diagnostics.Metrics.Instrument{`0},System.TimeProvider)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/MetricCollector.cs#L49C11-L55C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/MetricCollector.cs#L49C11-L55C6" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.Testing.MetricCollector`1.#ctor(System.Diagnostics.Metrics.ObservableInstrument{`0},System.TimeProvider)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/MetricCollector.cs#L63C11-L69C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/MetricCollector.cs#L63C11-L69C6" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.Testing.MetricCollector`1.#ctor(System.Object,System.String,System.String,System.TimeProvider)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/MetricCollector.cs#L85C11-L91C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/MetricCollector.cs#L16707566C0-L91C6" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.Testing.MetricCollector`1.#ctor(System.Diagnostics.Metrics.Meter,System.String,System.TimeProvider)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/MetricCollector.cs#L100C11-L106C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/MetricCollector.cs#L16707566C0-L106C6" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.Testing.MetricCollector`1.Dispose", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/MetricCollector.cs#L124C9-L145C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/MetricCollector.cs#L124C9-L145C6" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.Testing.MetricCollector`1.Clear", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/MetricCollector.cs#L160C9-L165C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/MetricCollector.cs#L160C9-L165C6" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.Testing.MetricCollector`1.GetMeasurementSnapshot(System.Boolean)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/MetricCollector.cs#L174C9-L186C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/MetricCollector.cs#L174C9-L186C6" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.Testing.MetricCollector`1.WaitForMeasurementsAsync(System.Int32,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/MetricCollector.cs#L211C9-L242C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/MetricCollector.cs#L16707566C0-L242C6" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.Testing.MetricCollector`1.WaitForMeasurementsAsync(System.Int32,System.TimeSpan)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/MetricCollector.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/MetricCollector.cs" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.Testing.MetricCollector`1.RecordObservableInstruments", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/MetricCollector.cs#L266C9-L268C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/MetricCollector.cs#L266C9-L268C6" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.Testing.MetricCollector`1.Instrument", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/MetricCollector.cs#L153C38-L153C49" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/MetricCollector.cs#L153C38-L153C49" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.Testing.MetricCollector`1.LastMeasurement", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/MetricCollector.cs#L195C13-L200C10" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/MetricCollector.cs#L195C13-L200C10" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Metrics.Testing.MetricCollector`1", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/MetricCollector.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Metrics/MetricCollector.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.FakeLoggerServiceCollectionExtensions.AddFakeLogging(Microsoft.Extensions.DependencyInjection.IServiceCollection,Microsoft.Extensions.Configuration.IConfigurationSection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLoggerServiceCollectionExtensions.cs#L23C12-L23C63" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLoggerServiceCollectionExtensions.cs#L16707566C0-L23C63" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.FakeLoggerServiceCollectionExtensions.AddFakeLogging(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{Microsoft.Extensions.Logging.Testing.FakeLogCollectorOptions})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLoggerServiceCollectionExtensions.cs#L32C12-L32C65" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLoggerServiceCollectionExtensions.cs#L16707566C0-L32C65" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.FakeLoggerServiceCollectionExtensions.AddFakeLogging(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLoggerServiceCollectionExtensions.cs#L40C12-L40C68" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLoggerServiceCollectionExtensions.cs#L40C12-L40C68" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.FakeLoggerServiceCollectionExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLoggerServiceCollectionExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLoggerServiceCollectionExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.FakeLoggerBuilderExtensions.AddFakeLogging(Microsoft.Extensions.Logging.ILoggingBuilder,Microsoft.Extensions.Configuration.IConfigurationSection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLoggerBuilderExtensions.cs#L27C9-L34C24" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLoggerBuilderExtensions.cs#L27C9-L34C24" }, { "DocsId": "M:Microsoft.Extensions.Logging.FakeLoggerBuilderExtensions.AddFakeLogging(Microsoft.Extensions.Logging.ILoggingBuilder,System.Action{Microsoft.Extensions.Logging.Testing.FakeLogCollectorOptions})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLoggerBuilderExtensions.cs#L45C9-L52C24" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLoggerBuilderExtensions.cs#L45C9-L52C24" }, { "DocsId": "M:Microsoft.Extensions.Logging.FakeLoggerBuilderExtensions.AddFakeLogging(Microsoft.Extensions.Logging.ILoggingBuilder)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLoggerBuilderExtensions.cs#L61C12-L61C44" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLoggerBuilderExtensions.cs#L61C12-L61C44" } ], "DocsId": "T:Microsoft.Extensions.Logging.FakeLoggerBuilderExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLoggerBuilderExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLoggerBuilderExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.Testing.FakeLogCollector.#ctor(Microsoft.Extensions.Options.IOptions{Microsoft.Extensions.Logging.Testing.FakeLogCollectorOptions})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogCollector.cs#L19C5-L29C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogCollector.cs#L19C5-L29C6" }, { "DocsId": "M:Microsoft.Extensions.Logging.Testing.FakeLogCollector.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogCollector.cs#L19C5-L37C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogCollector.cs#L19C5-L37C6" }, { "DocsId": "M:Microsoft.Extensions.Logging.Testing.FakeLogCollector.Create(Microsoft.Extensions.Logging.Testing.FakeLogCollectorOptions)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogCollector.cs#L46C9-L46C84" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogCollector.cs#L46C9-L46C84" }, { "DocsId": "M:Microsoft.Extensions.Logging.Testing.FakeLogCollector.Clear", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogCollector.cs#L54C9-L58C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogCollector.cs#L54C9-L58C6" }, { "DocsId": "M:Microsoft.Extensions.Logging.Testing.FakeLogCollector.GetSnapshot(System.Boolean)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogCollector.cs#L69C9-L79C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogCollector.cs#L69C9-L79C6" }, { "DocsId": "P:Microsoft.Extensions.Logging.Testing.FakeLogCollector.LatestRecord", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogCollector.cs#L92C13-L101C10" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogCollector.cs#L92C13-L101C10" }, { "DocsId": "P:Microsoft.Extensions.Logging.Testing.FakeLogCollector.Count", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogCollector.cs#L107C25-L107C39" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogCollector.cs#L107C25-L107C39" } ], "DocsId": "T:Microsoft.Extensions.Logging.Testing.FakeLogCollector", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogCollector.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogCollector.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.Testing.FakeLogCollectorOptions.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogCollectorOptions.cs#L25C60-L64C95" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogCollectorOptions.cs#L25C60-L64C95" }, { "DocsId": "P:Microsoft.Extensions.Logging.Testing.FakeLogCollectorOptions.FilteredCategories", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogCollectorOptions.cs#L25C46-L25C50" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogCollectorOptions.cs#L25C46-L25C50" }, { "DocsId": "P:Microsoft.Extensions.Logging.Testing.FakeLogCollectorOptions.FilteredLevels", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogCollectorOptions.cs#L35C44-L35C48" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogCollectorOptions.cs#L35C44-L35C48" }, { "DocsId": "P:Microsoft.Extensions.Logging.Testing.FakeLogCollectorOptions.CollectRecordsForDisabledLogLevels", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogCollectorOptions.cs#L44C54-L44C58" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogCollectorOptions.cs#L44C54-L44C58" }, { "DocsId": "P:Microsoft.Extensions.Logging.Testing.FakeLogCollectorOptions.TimeProvider", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogCollectorOptions.cs#L50C40-L50C44" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogCollectorOptions.cs#L50C40-L50C44" }, { "DocsId": "P:Microsoft.Extensions.Logging.Testing.FakeLogCollectorOptions.OutputSink", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogCollectorOptions.cs#L59C41-L59C45" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogCollectorOptions.cs#L59C41-L59C45" }, { "DocsId": "P:Microsoft.Extensions.Logging.Testing.FakeLogCollectorOptions.OutputFormatter", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogCollectorOptions.cs#L64C58-L64C62" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogCollectorOptions.cs#L64C58-L64C62" } ], "DocsId": "T:Microsoft.Extensions.Logging.Testing.FakeLogCollectorOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogCollectorOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogCollectorOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.Testing.FakeLogger.#ctor(Microsoft.Extensions.Logging.Testing.FakeLogCollector,System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogger.cs#L22C5-L33C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogger.cs#L22C5-L33C6" }, { "DocsId": "M:Microsoft.Extensions.Logging.Testing.FakeLogger.#ctor(System.Action{System.String},System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogger.cs#L41C11-L43C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogger.cs#L41C11-L43C6" }, { "DocsId": "M:Microsoft.Extensions.Logging.Testing.FakeLogger.BeginScope``1(``0)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogger.cs#L52C35-L52C60" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogger.cs#L52C35-L52C60" }, { "DocsId": "M:Microsoft.Extensions.Logging.Testing.FakeLogger.Log``1(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,``0,System.Exception,System.Func{``0,System.Exception,System.String})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogger.cs#L65C9-L73C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogger.cs#L65C9-L73C6" }, { "DocsId": "M:Microsoft.Extensions.Logging.Testing.FakeLogger.ControlLevel(Microsoft.Extensions.Logging.LogLevel,System.Boolean)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogger.cs#L80C66-L80C164" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogger.cs#L80C66-L80C164" }, { "DocsId": "M:Microsoft.Extensions.Logging.Testing.FakeLogger.IsEnabled(Microsoft.Extensions.Logging.LogLevel)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogger.cs#L87C49-L87C87" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogger.cs#L87C49-L87C87" }, { "DocsId": "P:Microsoft.Extensions.Logging.Testing.FakeLogger.Collector", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogger.cs#L92C41-L92C45" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogger.cs#L92C41-L92C45" }, { "DocsId": "P:Microsoft.Extensions.Logging.Testing.FakeLogger.LatestRecord", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogger.cs#L101C42-L101C64" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogger.cs#L101C42-L101C64" }, { "DocsId": "P:Microsoft.Extensions.Logging.Testing.FakeLogger.Category", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogger.cs#L106C31-L106C35" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogger.cs#L106C31-L106C35" } ], "DocsId": "T:Microsoft.Extensions.Logging.Testing.FakeLogger", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogger.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogger.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.Testing.FakeLoggerProvider.#ctor(Microsoft.Extensions.Logging.Testing.FakeLogCollector)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLoggerProvider.cs#L22C5-L32C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLoggerProvider.cs#L22C5-L32C6" }, { "DocsId": "M:Microsoft.Extensions.Logging.Testing.FakeLoggerProvider.Finalize", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLoggerProvider.cs#L40C9-L41C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLoggerProvider.cs#L40C9-L41C6" }, { "DocsId": "M:Microsoft.Extensions.Logging.Testing.FakeLoggerProvider.SetScopeProvider(Microsoft.Extensions.Logging.IExternalScopeProvider)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLoggerProvider.cs#L49C9-L55C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLoggerProvider.cs#L49C9-L55C6" }, { "DocsId": "M:Microsoft.Extensions.Logging.Testing.FakeLoggerProvider.Microsoft#Extensions#Logging#ILoggerProvider#CreateLogger(System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLoggerProvider.cs#L62C66-L62C92" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLoggerProvider.cs#L62C66-L62C92" }, { "DocsId": "M:Microsoft.Extensions.Logging.Testing.FakeLoggerProvider.CreateLogger(System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLoggerProvider.cs#L71C9-L74C12" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLoggerProvider.cs#L71C9-L74C12" }, { "DocsId": "M:Microsoft.Extensions.Logging.Testing.FakeLoggerProvider.Dispose", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLoggerProvider.cs#L82C9-L84C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLoggerProvider.cs#L82C9-L84C6" }, { "DocsId": "M:Microsoft.Extensions.Logging.Testing.FakeLoggerProvider.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLoggerProvider.cs#L97C5-L97C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLoggerProvider.cs#L97C5-L97C6" }, { "DocsId": "P:Microsoft.Extensions.Logging.Testing.FakeLoggerProvider.Collector", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLoggerProvider.cs#L89C41-L89C45" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLoggerProvider.cs#L89C41-L89C45" } ], "DocsId": "T:Microsoft.Extensions.Logging.Testing.FakeLoggerProvider", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLoggerProvider.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLoggerProvider.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.Testing.FakeLogger`1.#ctor(Microsoft.Extensions.Logging.Testing.FakeLogCollector)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLoggerT.cs#L30C11-L32C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLoggerT.cs#L30C11-L32C6" }, { "DocsId": "M:Microsoft.Extensions.Logging.Testing.FakeLogger`1.#ctor(System.Action{System.String})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLoggerT.cs#L39C11-L41C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLoggerT.cs#L39C11-L41C6" } ], "DocsId": "T:Microsoft.Extensions.Logging.Testing.FakeLogger`1", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLoggerT.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLoggerT.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.Testing.FakeLogRecord.#ctor(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.Object,System.Exception,System.String,System.Collections.Generic.IReadOnlyList{System.Object},System.String,System.Boolean,System.DateTimeOffset)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogRecord.cs#L29C5-L41C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogRecord.cs#L29C5-L41C6" }, { "DocsId": "M:Microsoft.Extensions.Logging.Testing.FakeLogRecord.GetStructuredStateValue(System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogRecord.cs#L80C9-L92C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogRecord.cs#L80C9-L92C6" }, { "DocsId": "M:Microsoft.Extensions.Logging.Testing.FakeLogRecord.ToString", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogRecord.cs#L131C42-L131C57" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogRecord.cs#L131C42-L131C57" }, { "DocsId": "P:Microsoft.Extensions.Logging.Testing.FakeLogRecord.Level", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogRecord.cs#L46C29-L46C33" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogRecord.cs#L46C29-L46C33" }, { "DocsId": "P:Microsoft.Extensions.Logging.Testing.FakeLogRecord.Id", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogRecord.cs#L51C25-L51C29" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogRecord.cs#L51C25-L51C29" }, { "DocsId": "P:Microsoft.Extensions.Logging.Testing.FakeLogRecord.State", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogRecord.cs#L56C28-L56C32" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogRecord.cs#L56C28-L56C32" }, { "DocsId": "P:Microsoft.Extensions.Logging.Testing.FakeLogRecord.StructuredState", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogRecord.cs#L68C77-L68C129" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogRecord.cs#L68C77-L68C129" }, { "DocsId": "P:Microsoft.Extensions.Logging.Testing.FakeLogRecord.Exception", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogRecord.cs#L97C35-L97C39" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogRecord.cs#L97C35-L97C39" }, { "DocsId": "P:Microsoft.Extensions.Logging.Testing.FakeLogRecord.Message", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogRecord.cs#L102C29-L102C33" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogRecord.cs#L102C29-L102C33" }, { "DocsId": "P:Microsoft.Extensions.Logging.Testing.FakeLogRecord.Scopes", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogRecord.cs#L107C44-L107C48" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogRecord.cs#L107C44-L107C48" }, { "DocsId": "P:Microsoft.Extensions.Logging.Testing.FakeLogRecord.Category", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogRecord.cs#L115C31-L115C35" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogRecord.cs#L115C31-L115C35" }, { "DocsId": "P:Microsoft.Extensions.Logging.Testing.FakeLogRecord.LevelEnabled", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogRecord.cs#L120C32-L120C36" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogRecord.cs#L120C32-L120C36" }, { "DocsId": "P:Microsoft.Extensions.Logging.Testing.FakeLogRecord.Timestamp", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogRecord.cs#L125C39-L125C43" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogRecord.cs#L125C39-L125C43" } ], "DocsId": "T:Microsoft.Extensions.Logging.Testing.FakeLogRecord", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogRecord.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Diagnostics.Testing/Logging/FakeLogRecord.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Diagnostics.json b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Diagnostics.json index ecbcf43cf2e..e88e2b8b96b 100644 --- a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Diagnostics.json +++ b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Diagnostics.json @@ -1,61 +1,60 @@ { "Assembly": "Microsoft.Extensions.Diagnostics", - "GUID": "77CA7239BD14425998E797BBE76775CDFFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "CB45B8E448074D51AB1A0D08E7F5CF28FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.MetricsServiceExtensions.AddMetrics(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics/src/Metrics/MetricsServiceExtensions.cs#L25C13-L42C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics/src/Metrics/MetricsServiceExtensions.cs#L25C13-L42C29" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.MetricsServiceExtensions.AddMetrics(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{Microsoft.Extensions.Diagnostics.Metrics.IMetricsBuilder})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics/src/Metrics/MetricsServiceExtensions.cs#L53C13-L63C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics/src/Metrics/MetricsServiceExtensions.cs#L53C13-L63C29" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.MetricsServiceExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics/src/Metrics/MetricsServiceExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics/src/Metrics/MetricsServiceExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.MetricsBuilderConfigurationExtensions.AddConfiguration(Microsoft.Extensions.Diagnostics.Metrics.IMetricsBuilder,Microsoft.Extensions.Configuration.IConfiguration)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics/src/Metrics/Configuration/MetricsBuilderConfigurationExtensions.cs#L27C13-L40C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics/src/Metrics/Configuration/MetricsBuilderConfigurationExtensions.cs#L27C13-L40C28" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Metrics.MetricsBuilderConfigurationExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics/src/Metrics/Configuration/MetricsBuilderConfigurationExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics/src/Metrics/Configuration/MetricsBuilderConfigurationExtensions.cs" }, { "Members": [ { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.ConsoleMetrics.DebugListenerName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics/src/Metrics/ConsoleMetrics.cs#L14C51-L14C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics/src/Metrics/ConsoleMetrics.cs#L14C51-L14C65" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Metrics.ConsoleMetrics", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics/src/Metrics/ConsoleMetrics.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics/src/Metrics/ConsoleMetrics.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.MetricsBuilderConsoleExtensions.AddDebugConsole(Microsoft.Extensions.Diagnostics.Metrics.IMetricsBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics/src/Metrics/MetricsBuilderConsoleExtensions.cs#L16C88-L16C137" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics/src/Metrics/MetricsBuilderConsoleExtensions.cs#L16C88-L16C137" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Metrics.MetricsBuilderConsoleExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics/src/Metrics/MetricsBuilderConsoleExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics/src/Metrics/MetricsBuilderConsoleExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.Configuration.IMetricListenerConfigurationFactory.GetConfiguration(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics/src/Metrics/Configuration/IMetricListenerConfigurationFactory.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics/src/Metrics/Configuration/IMetricListenerConfigurationFactory.cs" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Metrics.Configuration.IMetricListenerConfigurationFactory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Diagnostics/src/Metrics/Configuration/IMetricListenerConfigurationFactory.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Diagnostics/src/Metrics/Configuration/IMetricListenerConfigurationFactory.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.FileProviders.Abstractions.json b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.FileProviders.Abstractions.json index fcfd003f4b3..7fda1292649 100644 --- a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.FileProviders.Abstractions.json +++ b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.FileProviders.Abstractions.json @@ -1,177 +1,176 @@ { "Assembly": "Microsoft.Extensions.FileProviders.Abstractions", - "GUID": "02471FF4EFB24EA2AFF739A9EDE1F5D8FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "E23A6794850A420BBC64ED2CE16E5401FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "P:Microsoft.Extensions.FileProviders.IDirectoryContents.Exists", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/IDirectoryContents.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/IDirectoryContents.cs" } ], "DocsId": "T:Microsoft.Extensions.FileProviders.IDirectoryContents", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/IDirectoryContents.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/IDirectoryContents.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.FileProviders.IFileInfo.CreateReadStream", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/IFileInfo.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/IFileInfo.cs" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.IFileInfo.Exists", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/IFileInfo.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/IFileInfo.cs" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.IFileInfo.Length", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/IFileInfo.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/IFileInfo.cs" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.IFileInfo.PhysicalPath", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/IFileInfo.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/IFileInfo.cs" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.IFileInfo.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/IFileInfo.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/IFileInfo.cs" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.IFileInfo.LastModified", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/IFileInfo.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/IFileInfo.cs" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.IFileInfo.IsDirectory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/IFileInfo.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/IFileInfo.cs" } ], "DocsId": "T:Microsoft.Extensions.FileProviders.IFileInfo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/IFileInfo.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/IFileInfo.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.FileProviders.IFileProvider.GetFileInfo(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/IFileProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/IFileProvider.cs" }, { "DocsId": "M:Microsoft.Extensions.FileProviders.IFileProvider.GetDirectoryContents(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/IFileProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/IFileProvider.cs" }, { "DocsId": "M:Microsoft.Extensions.FileProviders.IFileProvider.Watch(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/IFileProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/IFileProvider.cs" } ], "DocsId": "T:Microsoft.Extensions.FileProviders.IFileProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/IFileProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/IFileProvider.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.FileProviders.NotFoundDirectoryContents.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NotFoundDirectoryContents.cs#L27C58-L27C103" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NotFoundDirectoryContents.cs#L27C58-L27C103" }, { "DocsId": "M:Microsoft.Extensions.FileProviders.NotFoundDirectoryContents.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NotFoundDirectoryContents.cs#L30C52-L30C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NotFoundDirectoryContents.cs#L30C52-L30C67" }, { "DocsId": "M:Microsoft.Extensions.FileProviders.NotFoundDirectoryContents.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NotFoundDirectoryContents.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NotFoundDirectoryContents.cs" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.NotFoundDirectoryContents.Singleton", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NotFoundDirectoryContents.cs#L18C61-L18C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NotFoundDirectoryContents.cs#L18C61-L18C65" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.NotFoundDirectoryContents.Exists", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NotFoundDirectoryContents.cs#L23C31-L23C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NotFoundDirectoryContents.cs#L23C31-L23C36" } ], "DocsId": "T:Microsoft.Extensions.FileProviders.NotFoundDirectoryContents", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NotFoundDirectoryContents.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NotFoundDirectoryContents.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.FileProviders.NotFoundFileInfo.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NotFoundFileInfo.cs#L19C9-L22C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NotFoundFileInfo.cs#L19C9-L22C10" }, { "DocsId": "M:Microsoft.Extensions.FileProviders.NotFoundFileInfo.CreateReadStream", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NotFoundFileInfo.cs#L60C13-L60C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NotFoundFileInfo.cs#L60C13-L60C80" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.NotFoundFileInfo.Exists", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NotFoundFileInfo.cs#L27C31-L27C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NotFoundFileInfo.cs#L27C31-L27C36" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.NotFoundFileInfo.IsDirectory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NotFoundFileInfo.cs#L32C36-L32C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NotFoundFileInfo.cs#L32C36-L32C41" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.NotFoundFileInfo.LastModified", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NotFoundFileInfo.cs#L37C47-L37C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NotFoundFileInfo.cs#L37C47-L37C70" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.NotFoundFileInfo.Length", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NotFoundFileInfo.cs#L42C31-L42C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NotFoundFileInfo.cs#L42C31-L42C33" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.NotFoundFileInfo.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NotFoundFileInfo.cs#L45C30-L45C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NotFoundFileInfo.cs#L45C30-L45C34" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.NotFoundFileInfo.PhysicalPath", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NotFoundFileInfo.cs#L50C40-L50C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NotFoundFileInfo.cs#L50C40-L50C44" } ], "DocsId": "T:Microsoft.Extensions.FileProviders.NotFoundFileInfo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NotFoundFileInfo.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NotFoundFileInfo.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.FileProviders.NullChangeToken.RegisterChangeCallback(System.Action{System.Object},System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NullChangeToken.cs#L41C13-L41C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NullChangeToken.cs#L41C13-L41C45" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.NullChangeToken.Singleton", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NullChangeToken.cs#L17C51-L17C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NullChangeToken.cs#L17C51-L17C55" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.NullChangeToken.HasChanged", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NullChangeToken.cs#L26C35-L26C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NullChangeToken.cs#L26C35-L26C40" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.NullChangeToken.ActiveChangeCallbacks", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NullChangeToken.cs#L31C46-L31C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NullChangeToken.cs#L31C46-L31C51" } ], "DocsId": "T:Microsoft.Extensions.FileProviders.NullChangeToken", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NullChangeToken.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NullChangeToken.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.FileProviders.NullFileProvider.GetDirectoryContents(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NullFileProvider.cs#L18C75-L18C110" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NullFileProvider.cs#L18C75-L18C110" }, { "DocsId": "M:Microsoft.Extensions.FileProviders.NullFileProvider.GetFileInfo(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NullFileProvider.cs#L25C57-L25C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NullFileProvider.cs#L25C57-L25C86" }, { "DocsId": "M:Microsoft.Extensions.FileProviders.NullFileProvider.Watch(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NullFileProvider.cs#L32C53-L32C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NullFileProvider.cs#L32C53-L32C78" }, { "DocsId": "M:Microsoft.Extensions.FileProviders.NullFileProvider.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NullFileProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NullFileProvider.cs" } ], "DocsId": "T:Microsoft.Extensions.FileProviders.NullFileProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NullFileProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Abstractions/src/NullFileProvider.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.FileProviders.Composite.json b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.FileProviders.Composite.json index 72b0469bb14..8cd99018142 100644 --- a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.FileProviders.Composite.json +++ b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.FileProviders.Composite.json @@ -1,59 +1,58 @@ { "Assembly": "Microsoft.Extensions.FileProviders.Composite", - "GUID": "EFEABD7FEAA747D0922D0227D00E1216FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "B11E7DE6E74041CAAB6BA8F3B0115568FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.FileProviders.CompositeFileProvider.#ctor(Microsoft.Extensions.FileProviders.IFileProvider[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Composite/src/CompositeFileProvider.cs#L23C9-L26C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Composite/src/CompositeFileProvider.cs#L23C9-L26C10" }, { "DocsId": "M:Microsoft.Extensions.FileProviders.CompositeFileProvider.#ctor(System.Collections.Generic.IEnumerable{Microsoft.Extensions.FileProviders.IFileProvider})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Composite/src/CompositeFileProvider.cs#L32C9-L37C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Composite/src/CompositeFileProvider.cs#L32C9-L37C10" }, { "DocsId": "M:Microsoft.Extensions.FileProviders.CompositeFileProvider.GetFileInfo(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Composite/src/CompositeFileProvider.cs#L46C52-L54C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Composite/src/CompositeFileProvider.cs#L46C52-L54C50" }, { "DocsId": "M:Microsoft.Extensions.FileProviders.CompositeFileProvider.GetDirectoryContents(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Composite/src/CompositeFileProvider.cs#L66C13-L67C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Composite/src/CompositeFileProvider.cs#L66C13-L67C38" }, { "DocsId": "M:Microsoft.Extensions.FileProviders.CompositeFileProvider.Watch(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Composite/src/CompositeFileProvider.cs#L79C13-L95C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Composite/src/CompositeFileProvider.cs#L79C13-L95C59" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.CompositeFileProvider.FileProviders", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Composite/src/CompositeFileProvider.cs#L101C60-L101C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Composite/src/CompositeFileProvider.cs#L101C60-L101C74" } ], "DocsId": "T:Microsoft.Extensions.FileProviders.CompositeFileProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Composite/src/CompositeFileProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Composite/src/CompositeFileProvider.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.FileProviders.Composite.CompositeDirectoryContents.#ctor(System.Collections.Generic.IList{Microsoft.Extensions.FileProviders.IFileProvider},System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Composite/src/CompositeDirectoryContents.cs#L29C9-L35C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Composite/src/CompositeDirectoryContents.cs#L29C9-L35C10" }, { "DocsId": "M:Microsoft.Extensions.FileProviders.Composite.CompositeDirectoryContents.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Composite/src/CompositeDirectoryContents.cs#L85C13-L86C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Composite/src/CompositeDirectoryContents.cs#L85C13-L86C43" }, { "DocsId": "M:Microsoft.Extensions.FileProviders.Composite.CompositeDirectoryContents.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Composite/src/CompositeDirectoryContents.cs#L91C13-L92C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Composite/src/CompositeDirectoryContents.cs#L91C13-L92C43" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.Composite.CompositeDirectoryContents.Exists", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Composite/src/CompositeDirectoryContents.cs#L102C17-L103C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Composite/src/CompositeDirectoryContents.cs#L102C17-L103C32" } ], "DocsId": "T:Microsoft.Extensions.FileProviders.Composite.CompositeDirectoryContents", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Composite/src/CompositeDirectoryContents.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Composite/src/CompositeDirectoryContents.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.FileProviders.Embedded.json b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.FileProviders.Embedded.json index 32d5a7255e7..4be84dbb527 100644 --- a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.FileProviders.Embedded.json +++ b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.FileProviders.Embedded.json @@ -1,109 +1,108 @@ { "Assembly": "Microsoft.Extensions.FileProviders.Embedded", - "GUID": "4966E480AC4E41CD9EE4DBB663A34DE3FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "268FA3C1F021439A9BF71E549556D859FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.FileProviders.EmbeddedFileProvider.#ctor(System.Reflection.Assembly)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/FileProviders/Embedded/src/EmbeddedFileProvider.cs#L37C11-L39C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/FileProviders/Embedded/src/EmbeddedFileProvider.cs#L37C11-L39C6" }, { "DocsId": "M:Microsoft.Extensions.FileProviders.EmbeddedFileProvider.#ctor(System.Reflection.Assembly,System.String)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/FileProviders/Embedded/src/EmbeddedFileProvider.cs#L49C5-L72C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/FileProviders/Embedded/src/EmbeddedFileProvider.cs#L49C5-L72C6" }, { "DocsId": "M:Microsoft.Extensions.FileProviders.EmbeddedFileProvider.GetFileInfo(System.String)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/FileProviders/Embedded/src/EmbeddedFileProvider.cs#L84C9-L124C91" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/FileProviders/Embedded/src/EmbeddedFileProvider.cs#L84C9-L124C91" }, { "DocsId": "M:Microsoft.Extensions.FileProviders.EmbeddedFileProvider.GetDirectoryContents(System.String)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/FileProviders/Embedded/src/EmbeddedFileProvider.cs#L140C9-L168C57" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/FileProviders/Embedded/src/EmbeddedFileProvider.cs#L140C9-L168C57" }, { "DocsId": "M:Microsoft.Extensions.FileProviders.EmbeddedFileProvider.Watch(System.String)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/FileProviders/Embedded/src/EmbeddedFileProvider.cs#L178C9-L178C42" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/FileProviders/Embedded/src/EmbeddedFileProvider.cs#L178C9-L178C42" } ], "DocsId": "T:Microsoft.Extensions.FileProviders.EmbeddedFileProvider", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/FileProviders/Embedded/src/EmbeddedFileProvider.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/FileProviders/Embedded/src/EmbeddedFileProvider.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.FileProviders.ManifestEmbeddedFileProvider.#ctor(System.Reflection.Assembly)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/FileProviders/Embedded/src/ManifestEmbeddedFileProvider.cs#L28C11-L28C92" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/FileProviders/Embedded/src/ManifestEmbeddedFileProvider.cs#L28C11-L28C92" }, { "DocsId": "M:Microsoft.Extensions.FileProviders.ManifestEmbeddedFileProvider.#ctor(System.Reflection.Assembly,System.String)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/FileProviders/Embedded/src/ManifestEmbeddedFileProvider.cs#L36C11-L38C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/FileProviders/Embedded/src/ManifestEmbeddedFileProvider.cs#L36C11-L38C6" }, { "DocsId": "M:Microsoft.Extensions.FileProviders.ManifestEmbeddedFileProvider.#ctor(System.Reflection.Assembly,System.String,System.DateTimeOffset)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/FileProviders/Embedded/src/ManifestEmbeddedFileProvider.cs#L48C11-L50C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/FileProviders/Embedded/src/ManifestEmbeddedFileProvider.cs#L48C11-L50C6" }, { "DocsId": "M:Microsoft.Extensions.FileProviders.ManifestEmbeddedFileProvider.#ctor(System.Reflection.Assembly,System.String,System.String,System.DateTimeOffset)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/FileProviders/Embedded/src/ManifestEmbeddedFileProvider.cs#L61C11-L63C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/FileProviders/Embedded/src/ManifestEmbeddedFileProvider.cs#L61C11-L63C6" }, { "DocsId": "M:Microsoft.Extensions.FileProviders.ManifestEmbeddedFileProvider.GetDirectoryContents(System.String)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/FileProviders/Embedded/src/ManifestEmbeddedFileProvider.cs#L85C9-L96C78" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/FileProviders/Embedded/src/ManifestEmbeddedFileProvider.cs#L85C9-L96C78" }, { "DocsId": "M:Microsoft.Extensions.FileProviders.ManifestEmbeddedFileProvider.GetFileInfo(System.String)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/FileProviders/Embedded/src/ManifestEmbeddedFileProvider.cs#L102C9-L113C46" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/FileProviders/Embedded/src/ManifestEmbeddedFileProvider.cs#L102C9-L113C46" }, { "DocsId": "M:Microsoft.Extensions.FileProviders.ManifestEmbeddedFileProvider.Watch(System.String)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/FileProviders/Embedded/src/ManifestEmbeddedFileProvider.cs#L119C9-L121C42" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/FileProviders/Embedded/src/ManifestEmbeddedFileProvider.cs#L119C9-L121C42" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.ManifestEmbeddedFileProvider.Assembly", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/FileProviders/Embedded/src/ManifestEmbeddedFileProvider.cs#L78C32-L78C36" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/FileProviders/Embedded/src/ManifestEmbeddedFileProvider.cs#L78C32-L78C36" } ], "DocsId": "T:Microsoft.Extensions.FileProviders.ManifestEmbeddedFileProvider", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/FileProviders/Embedded/src/ManifestEmbeddedFileProvider.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/FileProviders/Embedded/src/ManifestEmbeddedFileProvider.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.FileProviders.Embedded.EmbeddedResourceFileInfo.#ctor(System.Reflection.Assembly,System.String,System.String,System.DateTimeOffset)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/FileProviders/Embedded/src/EmbeddedResourceFileInfo.cs#L27C5-L37C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/FileProviders/Embedded/src/EmbeddedResourceFileInfo.cs#L27C5-L37C6" }, { "DocsId": "M:Microsoft.Extensions.FileProviders.Embedded.EmbeddedResourceFileInfo.CreateReadStream", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/FileProviders/Embedded/src/EmbeddedResourceFileInfo.cs#L83C9-L89C23" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/FileProviders/Embedded/src/EmbeddedResourceFileInfo.cs#L83C9-L89C23" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.Embedded.EmbeddedResourceFileInfo.Exists", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/FileProviders/Embedded/src/EmbeddedResourceFileInfo.cs#L42C27-L42C31" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/FileProviders/Embedded/src/EmbeddedResourceFileInfo.cs#L42C27-L42C31" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.Embedded.EmbeddedResourceFileInfo.Length", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/FileProviders/Embedded/src/EmbeddedResourceFileInfo.cs#L51C13-L56C34" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/FileProviders/Embedded/src/EmbeddedResourceFileInfo.cs#L51C13-L56C34" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.Embedded.EmbeddedResourceFileInfo.PhysicalPath", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/FileProviders/Embedded/src/EmbeddedResourceFileInfo.cs#L63C36-L63C40" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/FileProviders/Embedded/src/EmbeddedResourceFileInfo.cs#L63C36-L63C40" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.Embedded.EmbeddedResourceFileInfo.Name", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/FileProviders/Embedded/src/EmbeddedResourceFileInfo.cs#L68C26-L68C30" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/FileProviders/Embedded/src/EmbeddedResourceFileInfo.cs#L68C26-L68C30" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.Embedded.EmbeddedResourceFileInfo.LastModified", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/FileProviders/Embedded/src/EmbeddedResourceFileInfo.cs#L73C42-L73C46" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/FileProviders/Embedded/src/EmbeddedResourceFileInfo.cs#L73C42-L73C46" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.Embedded.EmbeddedResourceFileInfo.IsDirectory", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/FileProviders/Embedded/src/EmbeddedResourceFileInfo.cs#L78C32-L78C37" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/FileProviders/Embedded/src/EmbeddedResourceFileInfo.cs#L78C32-L78C37" } ], "DocsId": "T:Microsoft.Extensions.FileProviders.Embedded.EmbeddedResourceFileInfo", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/FileProviders/Embedded/src/EmbeddedResourceFileInfo.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/FileProviders/Embedded/src/EmbeddedResourceFileInfo.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.FileProviders.Physical.json b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.FileProviders.Physical.json index ff73d88c2cc..fe1cec10599 100644 --- a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.FileProviders.Physical.json +++ b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.FileProviders.Physical.json @@ -1,283 +1,282 @@ { "Assembly": "Microsoft.Extensions.FileProviders.Physical", - "GUID": "D9352AAFBFCF48708C0FA7CDD5BD3A88FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "BE3D06614B794CFF86CC71B0254C5A93FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.FileProviders.PhysicalFileProvider.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFileProvider.cs#L45C15-L47C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFileProvider.cs#L45C15-L47C10" }, { "DocsId": "M:Microsoft.Extensions.FileProviders.PhysicalFileProvider.#ctor(System.String,Microsoft.Extensions.FileProviders.Physical.ExclusionFilters)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFileProvider.cs#L34C9-L71C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFileProvider.cs#L34C9-L71C10" }, { "DocsId": "M:Microsoft.Extensions.FileProviders.PhysicalFileProvider.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFileProvider.cs#L203C13-L205C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFileProvider.cs#L203C13-L205C10" }, { "DocsId": "M:Microsoft.Extensions.FileProviders.PhysicalFileProvider.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFileProvider.cs#L213C13-L221C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFileProvider.cs#L213C13-L221C10" }, { "DocsId": "M:Microsoft.Extensions.FileProviders.PhysicalFileProvider.GetFileInfo(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFileProvider.cs#L265C13-L291C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFileProvider.cs#L265C13-L291C51" }, { "DocsId": "M:Microsoft.Extensions.FileProviders.PhysicalFileProvider.GetDirectoryContents(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFileProvider.cs#L307C17-L336C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFileProvider.cs#L307C17-L336C10" }, { "DocsId": "M:Microsoft.Extensions.FileProviders.PhysicalFileProvider.Watch(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFileProvider.cs#L354C13-L362C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFileProvider.cs#L354C13-L362C62" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.PhysicalFileProvider.UsePollingFileWatcher", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFileProvider.cs#L91C17-L99C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFileProvider.cs#L91C17-L99C56" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.PhysicalFileProvider.UseActivePolling", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFileProvider.cs#L130C17-L135C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFileProvider.cs#L130C17-L135C48" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.PhysicalFileProvider.Root", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFileProvider.cs#L226C30-L226C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFileProvider.cs#L226C30-L226C34" } ], "DocsId": "T:Microsoft.Extensions.FileProviders.PhysicalFileProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFileProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFileProvider.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.FileProviders.Internal.PhysicalDirectoryContents.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/Internal/PhysicalDirectoryContents.cs#L24C15-L25C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/Internal/PhysicalDirectoryContents.cs#L24C15-L25C12" }, { "DocsId": "M:Microsoft.Extensions.FileProviders.Internal.PhysicalDirectoryContents.#ctor(System.String,Microsoft.Extensions.FileProviders.Physical.ExclusionFilters)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/Internal/PhysicalDirectoryContents.cs#L32C9-L37C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/Internal/PhysicalDirectoryContents.cs#L32C9-L37C10" }, { "DocsId": "M:Microsoft.Extensions.FileProviders.Internal.PhysicalDirectoryContents.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/Internal/PhysicalDirectoryContents.cs#L43C58-L43C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/Internal/PhysicalDirectoryContents.cs#L43C58-L43C79" }, { "DocsId": "M:Microsoft.Extensions.FileProviders.Internal.PhysicalDirectoryContents.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/Internal/PhysicalDirectoryContents.cs#L44C52-L44C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/Internal/PhysicalDirectoryContents.cs#L44C52-L44C73" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.Internal.PhysicalDirectoryContents.Exists", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/Internal/PhysicalDirectoryContents.cs#L40C31-L40C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/Internal/PhysicalDirectoryContents.cs#L40C31-L40C43" } ], "DocsId": "T:Microsoft.Extensions.FileProviders.Internal.PhysicalDirectoryContents", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/Internal/PhysicalDirectoryContents.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/Internal/PhysicalDirectoryContents.cs" }, { "Members": [ { "DocsId": "F:Microsoft.Extensions.FileProviders.Physical.ExclusionFilters.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/ExclusionFilters.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/ExclusionFilters.cs" }, { "DocsId": "F:Microsoft.Extensions.FileProviders.Physical.ExclusionFilters.Sensitive", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/ExclusionFilters.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/ExclusionFilters.cs" }, { "DocsId": "F:Microsoft.Extensions.FileProviders.Physical.ExclusionFilters.DotPrefixed", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/ExclusionFilters.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/ExclusionFilters.cs" }, { "DocsId": "F:Microsoft.Extensions.FileProviders.Physical.ExclusionFilters.Hidden", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/ExclusionFilters.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/ExclusionFilters.cs" }, { "DocsId": "F:Microsoft.Extensions.FileProviders.Physical.ExclusionFilters.System", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/ExclusionFilters.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/ExclusionFilters.cs" }, { "DocsId": "F:Microsoft.Extensions.FileProviders.Physical.ExclusionFilters.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/ExclusionFilters.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/ExclusionFilters.cs" } ], "DocsId": "T:Microsoft.Extensions.FileProviders.Physical.ExclusionFilters", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/ExclusionFilters.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/ExclusionFilters.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.FileProviders.Physical.PhysicalDirectoryInfo.#ctor(System.IO.DirectoryInfo)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalDirectoryInfo.cs#L26C9-L29C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalDirectoryInfo.cs#L26C9-L29C10" }, { "DocsId": "M:Microsoft.Extensions.FileProviders.Physical.PhysicalDirectoryInfo.CreateReadStream", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalDirectoryInfo.cs#L68C13-L68C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalDirectoryInfo.cs#L68C13-L68C72" }, { "DocsId": "M:Microsoft.Extensions.FileProviders.Physical.PhysicalDirectoryInfo.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalDirectoryInfo.cs#L74C13-L75C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalDirectoryInfo.cs#L74C13-L75C45" }, { "DocsId": "M:Microsoft.Extensions.FileProviders.Physical.PhysicalDirectoryInfo.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalDirectoryInfo.cs#L80C13-L81C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalDirectoryInfo.cs#L80C13-L81C45" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.Physical.PhysicalDirectoryInfo.Exists", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalDirectoryInfo.cs#L38C31-L38C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalDirectoryInfo.cs#L38C31-L38C43" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.Physical.PhysicalDirectoryInfo.Length", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalDirectoryInfo.cs#L43C31-L43C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalDirectoryInfo.cs#L43C31-L43C33" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.Physical.PhysicalDirectoryInfo.PhysicalPath", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalDirectoryInfo.cs#L46C39-L46C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalDirectoryInfo.cs#L46C39-L46C53" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.Physical.PhysicalDirectoryInfo.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalDirectoryInfo.cs#L49C31-L49C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalDirectoryInfo.cs#L49C31-L49C41" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.Physical.PhysicalDirectoryInfo.LastModified", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalDirectoryInfo.cs#L54C47-L54C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalDirectoryInfo.cs#L54C47-L54C69" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.Physical.PhysicalDirectoryInfo.IsDirectory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalDirectoryInfo.cs#L59C36-L59C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalDirectoryInfo.cs#L59C36-L59C40" } ], "DocsId": "T:Microsoft.Extensions.FileProviders.Physical.PhysicalDirectoryInfo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalDirectoryInfo.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalDirectoryInfo.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.FileProviders.Physical.PhysicalFileInfo.#ctor(System.IO.FileInfo)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFileInfo.cs#L20C9-L23C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFileInfo.cs#L20C9-L23C10" }, { "DocsId": "M:Microsoft.Extensions.FileProviders.Physical.PhysicalFileInfo.CreateReadStream", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFileInfo.cs#L50C13-L57C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFileInfo.cs#L50C13-L57C72" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.Physical.PhysicalFileInfo.Exists", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFileInfo.cs#L26C31-L26C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFileInfo.cs#L26C31-L26C43" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.Physical.PhysicalFileInfo.Length", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFileInfo.cs#L29C31-L29C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFileInfo.cs#L29C31-L29C43" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.Physical.PhysicalFileInfo.PhysicalPath", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFileInfo.cs#L32C39-L32C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFileInfo.cs#L32C39-L32C53" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.Physical.PhysicalFileInfo.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFileInfo.cs#L35C31-L35C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFileInfo.cs#L35C31-L35C41" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.Physical.PhysicalFileInfo.LastModified", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFileInfo.cs#L38C47-L38C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFileInfo.cs#L38C47-L38C69" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.Physical.PhysicalFileInfo.IsDirectory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFileInfo.cs#L43C36-L43C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFileInfo.cs#L43C36-L43C41" } ], "DocsId": "T:Microsoft.Extensions.FileProviders.Physical.PhysicalFileInfo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFileInfo.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFileInfo.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.FileProviders.Physical.PhysicalFilesWatcher.#ctor(System.String,System.IO.FileSystemWatcher,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFilesWatcher.cs#L61C15-L63C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFilesWatcher.cs#L61C15-L63C10" }, { "DocsId": "M:Microsoft.Extensions.FileProviders.Physical.PhysicalFilesWatcher.#ctor(System.String,System.IO.FileSystemWatcher,System.Boolean,Microsoft.Extensions.FileProviders.Physical.ExclusionFilters)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFilesWatcher.cs#L33C9-L112C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFilesWatcher.cs#L33C9-L112C10" }, { "DocsId": "M:Microsoft.Extensions.FileProviders.Physical.PhysicalFilesWatcher.CreateFileChangeToken(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFilesWatcher.cs#L136C13-L152C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFilesWatcher.cs#L136C13-L152C32" }, { "DocsId": "M:Microsoft.Extensions.FileProviders.Physical.PhysicalFilesWatcher.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFilesWatcher.cs#L257C13-L259C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFilesWatcher.cs#L257C13-L259C10" }, { "DocsId": "M:Microsoft.Extensions.FileProviders.Physical.PhysicalFilesWatcher.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFilesWatcher.cs#L267C13-L276C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFilesWatcher.cs#L267C13-L276C10" } ], "DocsId": "T:Microsoft.Extensions.FileProviders.Physical.PhysicalFilesWatcher", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFilesWatcher.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFilesWatcher.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.FileProviders.Physical.PollingFileChangeToken.#ctor(System.IO.FileInfo)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PollingFileChangeToken.cs#L40C9-L44C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PollingFileChangeToken.cs#L40C9-L44C10" }, { "DocsId": "M:Microsoft.Extensions.FileProviders.Physical.PollingFileChangeToken.Microsoft#Extensions#FileProviders#IPollingChangeToken#get_CancellationTokenSource", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PollingFileChangeToken.cs#L79C81-L79C104" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PollingFileChangeToken.cs#L79C81-L79C104" }, { "DocsId": "M:Microsoft.Extensions.FileProviders.Physical.PollingFileChangeToken.RegisterChangeCallback(System.Action{System.Object},System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PollingFileChangeToken.cs#L123C13-L128C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PollingFileChangeToken.cs#L123C13-L128C74" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.Physical.PollingFileChangeToken.ActiveChangeCallbacks", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PollingFileChangeToken.cs#L64C45-L64C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PollingFileChangeToken.cs#L64C45-L64C49" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.Physical.PollingFileChangeToken.Microsoft#Extensions#FileProviders#IPollingChangeToken#CancellationTokenSource", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PollingFileChangeToken.cs#L79C81-L79C104" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PollingFileChangeToken.cs#L79C81-L79C104" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.Physical.PollingFileChangeToken.HasChanged", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PollingFileChangeToken.cs#L92C17-L111C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PollingFileChangeToken.cs#L92C17-L111C36" } ], "DocsId": "T:Microsoft.Extensions.FileProviders.Physical.PollingFileChangeToken", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PollingFileChangeToken.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PollingFileChangeToken.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.FileProviders.Physical.PollingWildCardChangeToken.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PollingWildCardChangeToken.cs#L42C15-L47C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PollingWildCardChangeToken.cs#L42C15-L47C10" }, { "DocsId": "M:Microsoft.Extensions.FileProviders.Physical.PollingWildCardChangeToken.Microsoft#Extensions#FileProviders#IPollingChangeToken#get_CancellationTokenSource", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PollingWildCardChangeToken.cs#L82C81-L82C104" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PollingWildCardChangeToken.cs#L82C81-L82C104" }, { "DocsId": "M:Microsoft.Extensions.FileProviders.Physical.PollingWildCardChangeToken.GetLastWriteUtc(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PollingWildCardChangeToken.cs#L148C13-L149C123" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PollingWildCardChangeToken.cs#L148C13-L149C123" }, { "DocsId": "M:Microsoft.Extensions.FileProviders.Physical.PollingWildCardChangeToken.Microsoft#Extensions#Primitives#IChangeToken#RegisterChangeCallback(System.Action{System.Object},System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PollingWildCardChangeToken.cs#L190C13-L195C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PollingWildCardChangeToken.cs#L190C13-L195C74" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.Physical.PollingWildCardChangeToken.ActiveChangeCallbacks", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PollingWildCardChangeToken.cs#L64C45-L64C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PollingWildCardChangeToken.cs#L64C45-L64C49" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.Physical.PollingWildCardChangeToken.Microsoft#Extensions#FileProviders#IPollingChangeToken#CancellationTokenSource", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PollingWildCardChangeToken.cs#L82C81-L82C104" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PollingWildCardChangeToken.cs#L82C81-L82C104" }, { "DocsId": "P:Microsoft.Extensions.FileProviders.Physical.PollingWildCardChangeToken.HasChanged", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PollingWildCardChangeToken.cs#L91C17-L104C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PollingWildCardChangeToken.cs#L91C17-L104C33" } ], "DocsId": "T:Microsoft.Extensions.FileProviders.Physical.PollingWildCardChangeToken", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PollingWildCardChangeToken.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PollingWildCardChangeToken.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.FileSystemGlobbing.json b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.FileSystemGlobbing.json index 93c20ac7097..91ad3174224 100644 --- a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.FileSystemGlobbing.json +++ b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.FileSystemGlobbing.json @@ -1,783 +1,782 @@ { "Assembly": "Microsoft.Extensions.FileSystemGlobbing", - "GUID": "C0531068AC6E47598303832BD29A08B9FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "523D3FAC1ED0483587B2E23A2C55A2CBFFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.FilePatternMatch.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/FilePatternMatch.cs#L40C13-L44C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/FilePatternMatch.cs#L40C13-L44C10" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.FilePatternMatch.Equals(Microsoft.Extensions.FileSystemGlobbing.FilePatternMatch)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/FilePatternMatch.cs#L53C13-L54C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/FilePatternMatch.cs#L53C13-L54C88" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.FilePatternMatch.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/FilePatternMatch.cs#L63C13-L63C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/FilePatternMatch.cs#L63C13-L63C59" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.FilePatternMatch.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/FilePatternMatch.cs#L70C13-L70C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/FilePatternMatch.cs#L70C13-L70C70" }, { "DocsId": "P:Microsoft.Extensions.FileSystemGlobbing.FilePatternMatch.Path", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/FilePatternMatch.cs#L22C30-L22C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/FilePatternMatch.cs#L22C30-L22C34" }, { "DocsId": "P:Microsoft.Extensions.FileSystemGlobbing.FilePatternMatch.Stem", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/FilePatternMatch.cs#L31C31-L31C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/FilePatternMatch.cs#L31C31-L31C35" } ], "DocsId": "T:Microsoft.Extensions.FileSystemGlobbing.FilePatternMatch", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/FilePatternMatch.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/FilePatternMatch.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.InMemoryDirectoryInfo.#ctor(System.String,System.Collections.Generic.IEnumerable{System.String})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/InMemoryDirectoryInfo.cs#L27C15-L29C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/InMemoryDirectoryInfo.cs#L27C15-L29C10" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.InMemoryDirectoryInfo.EnumerateFileSystemInfos", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/InMemoryDirectoryInfo.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/InMemoryDirectoryInfo.cs" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.InMemoryDirectoryInfo.GetDirectory(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/InMemoryDirectoryInfo.cs#L131C13-L138C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/InMemoryDirectoryInfo.cs#L132C13-L139C74" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.InMemoryDirectoryInfo.GetFile(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/InMemoryDirectoryInfo.cs#L149C13-L159C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/InMemoryDirectoryInfo.cs#L150C13-L160C10" }, { "DocsId": "P:Microsoft.Extensions.FileSystemGlobbing.InMemoryDirectoryInfo.FullName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/InMemoryDirectoryInfo.cs#L71C43-L71C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/InMemoryDirectoryInfo.cs#L72C43-L72C47" }, { "DocsId": "P:Microsoft.Extensions.FileSystemGlobbing.InMemoryDirectoryInfo.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/InMemoryDirectoryInfo.cs#L74C39-L74C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/InMemoryDirectoryInfo.cs#L75C39-L75C43" }, { "DocsId": "P:Microsoft.Extensions.FileSystemGlobbing.InMemoryDirectoryInfo.ParentDirectory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/InMemoryDirectoryInfo.cs#L78C13-L78C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/InMemoryDirectoryInfo.cs#L79C13-L79C86" } ], "DocsId": "T:Microsoft.Extensions.FileSystemGlobbing.InMemoryDirectoryInfo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/InMemoryDirectoryInfo.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/InMemoryDirectoryInfo.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Matcher.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Matcher.cs#L108C15-L110C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Matcher.cs#L108C15-L110C10" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Matcher.#ctor(System.StringComparison)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Matcher.cs#L99C9-L120C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Matcher.cs#L99C9-L120C10" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Matcher.AddInclude(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Matcher.cs#L136C13-L137C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Matcher.cs#L136C13-L137C25" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Matcher.AddExclude(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Matcher.cs#L154C13-L155C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Matcher.cs#L154C13-L155C25" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Matcher.Execute(Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoBase)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Matcher.cs#L165C13-L168C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Matcher.cs#L165C13-L168C38" } ], "DocsId": "T:Microsoft.Extensions.FileSystemGlobbing.Matcher", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Matcher.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Matcher.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.MatcherExtensions.AddExcludePatterns(Microsoft.Extensions.FileSystemGlobbing.Matcher,System.Collections.Generic.IEnumerable{System.String}[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/MatcherExtensions.cs#L21C51-L28C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/MatcherExtensions.cs#L21C51-L28C10" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.MatcherExtensions.AddIncludePatterns(Microsoft.Extensions.FileSystemGlobbing.Matcher,System.Collections.Generic.IEnumerable{System.String}[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/MatcherExtensions.cs#L37C51-L44C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/MatcherExtensions.cs#L37C51-L44C10" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.MatcherExtensions.GetResultsInFullPath(Microsoft.Extensions.FileSystemGlobbing.Matcher,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/MatcherExtensions.cs#L54C13-L57C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/MatcherExtensions.cs#L54C13-L66C27" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.MatcherExtensions.Match(Microsoft.Extensions.FileSystemGlobbing.Matcher,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/MatcherExtensions.cs#L68C13-L68C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/MatcherExtensions.cs#L77C13-L77C95" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.MatcherExtensions.Match(Microsoft.Extensions.FileSystemGlobbing.Matcher,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/MatcherExtensions.cs#L80C13-L80C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/MatcherExtensions.cs#L89C13-L89C71" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.MatcherExtensions.Match(Microsoft.Extensions.FileSystemGlobbing.Matcher,System.Collections.Generic.IEnumerable{System.String})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/MatcherExtensions.cs#L91C13-L91C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/MatcherExtensions.cs#L100C13-L100C75" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.MatcherExtensions.Match(Microsoft.Extensions.FileSystemGlobbing.Matcher,System.String,System.Collections.Generic.IEnumerable{System.String})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/MatcherExtensions.cs#L103C13-L105C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/MatcherExtensions.cs#L112C13-L114C79" } ], "DocsId": "T:Microsoft.Extensions.FileSystemGlobbing.MatcherExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/MatcherExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/MatcherExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.PatternMatchingResult.#ctor(System.Collections.Generic.IEnumerable{Microsoft.Extensions.FileSystemGlobbing.FilePatternMatch})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/PatternMatchingResult.cs#L20C15-L23C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/PatternMatchingResult.cs#L20C15-L23C10" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.PatternMatchingResult.#ctor(System.Collections.Generic.IEnumerable{Microsoft.Extensions.FileSystemGlobbing.FilePatternMatch},System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/PatternMatchingResult.cs#L30C9-L36C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/PatternMatchingResult.cs#L30C9-L36C10" }, { "DocsId": "P:Microsoft.Extensions.FileSystemGlobbing.PatternMatchingResult.Files", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/PatternMatchingResult.cs#L41C54-L41C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/PatternMatchingResult.cs#L41C54-L41C58" }, { "DocsId": "P:Microsoft.Extensions.FileSystemGlobbing.PatternMatchingResult.HasMatches", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/PatternMatchingResult.cs#L46C34-L46C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/PatternMatchingResult.cs#L46C34-L46C38" } ], "DocsId": "T:Microsoft.Extensions.FileSystemGlobbing.PatternMatchingResult", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/PatternMatchingResult.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/PatternMatchingResult.cs" }, { "Members": [ { "DocsId": "P:Microsoft.Extensions.FileSystemGlobbing.Internal.ILinearPattern.Segments", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/ILinearPattern.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/ILinearPattern.cs" } ], "DocsId": "T:Microsoft.Extensions.FileSystemGlobbing.Internal.ILinearPattern", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/ILinearPattern.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/ILinearPattern.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.IPathSegment.Match(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/IPathSegment.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/IPathSegment.cs" }, { "DocsId": "P:Microsoft.Extensions.FileSystemGlobbing.Internal.IPathSegment.CanProduceStem", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/IPathSegment.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/IPathSegment.cs" } ], "DocsId": "T:Microsoft.Extensions.FileSystemGlobbing.Internal.IPathSegment", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/IPathSegment.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/IPathSegment.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.IPattern.CreatePatternContextForInclude", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/IPattern.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/IPattern.cs" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.IPattern.CreatePatternContextForExclude", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/IPattern.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/IPattern.cs" } ], "DocsId": "T:Microsoft.Extensions.FileSystemGlobbing.Internal.IPattern", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/IPattern.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/IPattern.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.IPatternContext.Declare(System.Action{Microsoft.Extensions.FileSystemGlobbing.Internal.IPathSegment,System.Boolean})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/IPatternContext.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/IPatternContext.cs" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.IPatternContext.Test(Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoBase)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/IPatternContext.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/IPatternContext.cs" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.IPatternContext.Test(Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileInfoBase)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/IPatternContext.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/IPatternContext.cs" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.IPatternContext.PushDirectory(Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoBase)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/IPatternContext.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/IPatternContext.cs" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.IPatternContext.PopDirectory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/IPatternContext.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/IPatternContext.cs" } ], "DocsId": "T:Microsoft.Extensions.FileSystemGlobbing.Internal.IPatternContext", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/IPatternContext.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/IPatternContext.cs" }, { "Members": [ { "DocsId": "P:Microsoft.Extensions.FileSystemGlobbing.Internal.IRaggedPattern.Segments", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/IRaggedPattern.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/IRaggedPattern.cs" }, { "DocsId": "P:Microsoft.Extensions.FileSystemGlobbing.Internal.IRaggedPattern.StartsWith", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/IRaggedPattern.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/IRaggedPattern.cs" }, { "DocsId": "P:Microsoft.Extensions.FileSystemGlobbing.Internal.IRaggedPattern.Contains", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/IRaggedPattern.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/IRaggedPattern.cs" }, { "DocsId": "P:Microsoft.Extensions.FileSystemGlobbing.Internal.IRaggedPattern.EndsWith", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/IRaggedPattern.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/IRaggedPattern.cs" } ], "DocsId": "T:Microsoft.Extensions.FileSystemGlobbing.Internal.IRaggedPattern", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/IRaggedPattern.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/IRaggedPattern.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.MatcherContext.#ctor(System.Collections.Generic.IEnumerable{Microsoft.Extensions.FileSystemGlobbing.Internal.IPattern},System.Collections.Generic.IEnumerable{Microsoft.Extensions.FileSystemGlobbing.Internal.IPattern},Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoBase,System.StringComparison)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/MatcherContext.cs#L25C9-L46C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/MatcherContext.cs#L25C9-L46C10" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.MatcherContext.Execute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/MatcherContext.cs#L50C13-L54C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/MatcherContext.cs#L50C13-L54C72" } ], "DocsId": "T:Microsoft.Extensions.FileSystemGlobbing.Internal.MatcherContext", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/MatcherContext.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/MatcherContext.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternTestResult.Success(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternTestResult.cs#L25C13-L25C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternTestResult.cs#L25C13-L25C74" }, { "DocsId": "F:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternTestResult.Failed", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternTestResult.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternTestResult.cs" }, { "DocsId": "P:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternTestResult.IsSuccessful", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternTestResult.cs#L14C36-L14C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternTestResult.cs#L14C36-L14C40" }, { "DocsId": "P:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternTestResult.Stem", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternTestResult.cs#L15C31-L15C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternTestResult.cs#L15C31-L15C35" } ], "DocsId": "T:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternTestResult", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternTestResult.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternTestResult.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.Patterns.PatternBuilder.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/Patterns/PatternBuilder.cs#L16C9-L19C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/Patterns/PatternBuilder.cs#L16C9-L19C10" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.Patterns.PatternBuilder.#ctor(System.StringComparison)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/Patterns/PatternBuilder.cs#L21C9-L24C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/Patterns/PatternBuilder.cs#L21C9-L24C10" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.Patterns.PatternBuilder.Build(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/Patterns/PatternBuilder.cs#L30C13-L202C134" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/Patterns/PatternBuilder.cs#L30C13-L202C134" }, { "DocsId": "P:Microsoft.Extensions.FileSystemGlobbing.Internal.Patterns.PatternBuilder.ComparisonType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/Patterns/PatternBuilder.cs#L26C50-L26C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/Patterns/PatternBuilder.cs#L26C50-L26C54" } ], "DocsId": "T:Microsoft.Extensions.FileSystemGlobbing.Internal.Patterns.PatternBuilder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/Patterns/PatternBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/Patterns/PatternBuilder.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContext`1.Declare(System.Action{Microsoft.Extensions.FileSystemGlobbing.Internal.IPathSegment,System.Boolean})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContext.cs#L15C75-L15C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContext.cs#L15C75-L15C76" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContext`1.Test(Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileInfoBase)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContext.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContext.cs" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContext`1.Test(Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoBase)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContext.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContext.cs" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContext`1.PushDirectory(Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoBase)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContext.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContext.cs" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContext`1.PopDirectory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContext.cs#L25C13-L26C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContext.cs#L25C13-L26C10" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContext`1.PushDataFrame(`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContext.cs#L30C13-L32C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContext.cs#L30C13-L32C10" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContext`1.IsStackEmpty", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContext.cs#L36C13-L36C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContext.cs#L36C13-L36C38" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContext`1.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContext.cs#L12C9-L12C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContext.cs#L12C9-L12C55" }, { "DocsId": "F:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContext`1.Frame", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContext.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContext.cs" } ], "DocsId": "T:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContext`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContext.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContext.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextLinear.#ctor(Microsoft.Extensions.FileSystemGlobbing.Internal.ILinearPattern)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextLinear.cs#L13C9-L18C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextLinear.cs#L13C9-L18C10" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextLinear.Test(Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileInfoBase)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextLinear.cs#L22C13-L32C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextLinear.cs#L22C13-L32C45" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextLinear.PushDirectory(Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoBase)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextLinear.cs#L38C13-L65C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextLinear.cs#L38C13-L65C10" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextLinear.IsLastSegment", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextLinear.cs#L83C13-L83C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextLinear.cs#L83C13-L83C69" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextLinear.TestMatchingSegment(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextLinear.cs#L88C13-L93C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextLinear.cs#L88C13-L93C70" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextLinear.CalculateStem(Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileInfoBase)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextLinear.cs#L98C13-L98C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextLinear.cs#L98C13-L98C77" }, { "DocsId": "P:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextLinear.Pattern", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextLinear.cs#L79C44-L79C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextLinear.cs#L79C44-L79C48" }, { "DocsId": "T:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextLinear.FrameData", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextLinear.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextLinear.cs" } ], "DocsId": "T:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextLinear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextLinear.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextLinear.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextLinearExclude.#ctor(Microsoft.Extensions.FileSystemGlobbing.Internal.ILinearPattern)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextLinearExclude.cs#L12C15-L14C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextLinearExclude.cs#L12C15-L14C10" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextLinearExclude.Test(Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoBase)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextLinearExclude.cs#L18C13-L28C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextLinearExclude.cs#L18C13-L28C75" } ], "DocsId": "T:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextLinearExclude", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextLinearExclude.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextLinearExclude.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextLinearInclude.#ctor(Microsoft.Extensions.FileSystemGlobbing.Internal.ILinearPattern)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextLinearInclude.cs#L12C15-L14C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextLinearInclude.cs#L12C15-L14C10" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextLinearInclude.Declare(System.Action{Microsoft.Extensions.FileSystemGlobbing.Internal.IPathSegment,System.Boolean})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextLinearInclude.cs#L18C13-L32C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextLinearInclude.cs#L18C13-L32C10" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextLinearInclude.Test(Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoBase)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextLinearInclude.cs#L36C13-L46C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextLinearInclude.cs#L36C13-L46C76" } ], "DocsId": "T:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextLinearInclude", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextLinearInclude.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextLinearInclude.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextRagged.#ctor(Microsoft.Extensions.FileSystemGlobbing.Internal.IRaggedPattern)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRagged.cs#L12C9-L17C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRagged.cs#L12C9-L17C10" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextRagged.Test(Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileInfoBase)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRagged.cs#L21C13-L30C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRagged.cs#L21C13-L30C45" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextRagged.PushDirectory(Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoBase)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRagged.cs#L36C13-L102C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRagged.cs#L36C13-L102C10" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextRagged.PopDirectory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRagged.cs#L106C13-L111C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRagged.cs#L106C13-L111C10" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextRagged.IsStartingGroup", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRagged.cs#L138C13-L138C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRagged.cs#L138C13-L138C50" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextRagged.IsEndingGroup", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRagged.cs#L143C13-L143C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRagged.cs#L143C13-L143C70" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextRagged.TestMatchingSegment(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRagged.cs#L148C13-L152C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRagged.cs#L148C13-L152C72" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextRagged.TestMatchingGroup(Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileSystemInfoBase)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRagged.cs#L157C13-L174C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRagged.cs#L157C13-L174C25" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextRagged.CalculateStem(Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileInfoBase)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRagged.cs#L179C13-L179C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRagged.cs#L179C13-L179C77" }, { "DocsId": "P:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextRagged.Pattern", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRagged.cs#L134C44-L134C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRagged.cs#L134C44-L134C48" }, { "DocsId": "T:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextRagged.FrameData", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRagged.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRagged.cs" } ], "DocsId": "T:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextRagged", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRagged.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRagged.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextRaggedExclude.#ctor(Microsoft.Extensions.FileSystemGlobbing.Internal.IRaggedPattern)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRaggedExclude.cs#L12C15-L14C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRaggedExclude.cs#L12C15-L14C10" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextRaggedExclude.Test(Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoBase)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRaggedExclude.cs#L18C13-L42C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRaggedExclude.cs#L18C13-L42C26" } ], "DocsId": "T:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextRaggedExclude", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRaggedExclude.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRaggedExclude.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextRaggedInclude.#ctor(Microsoft.Extensions.FileSystemGlobbing.Internal.IRaggedPattern)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRaggedInclude.cs#L13C15-L15C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRaggedInclude.cs#L13C15-L15C10" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextRaggedInclude.Declare(System.Action{Microsoft.Extensions.FileSystemGlobbing.Internal.IPathSegment,System.Boolean})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRaggedInclude.cs#L19C13-L37C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRaggedInclude.cs#L19C13-L37C10" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextRaggedInclude.Test(Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoBase)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRaggedInclude.cs#L41C13-L57C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRaggedInclude.cs#L41C13-L57C25" } ], "DocsId": "T:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextRaggedInclude", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRaggedInclude.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRaggedInclude.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments.CurrentPathSegment.Match(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/CurrentPathSegment.cs#L12C44-L12C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/CurrentPathSegment.cs#L12C44-L12C49" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments.CurrentPathSegment.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/CurrentPathSegment.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/CurrentPathSegment.cs" }, { "DocsId": "P:Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments.CurrentPathSegment.CanProduceStem", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/CurrentPathSegment.cs#L10C39-L10C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/CurrentPathSegment.cs#L10C39-L10C44" } ], "DocsId": "T:Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments.CurrentPathSegment", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/CurrentPathSegment.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/CurrentPathSegment.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments.LiteralPathSegment.#ctor(System.String,System.StringComparison)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/LiteralPathSegment.cs#L16C9-L22C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/LiteralPathSegment.cs#L16C9-L22C10" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments.LiteralPathSegment.Match(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/LiteralPathSegment.cs#L28C13-L28C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/LiteralPathSegment.cs#L28C13-L28C65" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments.LiteralPathSegment.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/LiteralPathSegment.cs#L33C13-L35C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/LiteralPathSegment.cs#L33C13-L35C68" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments.LiteralPathSegment.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/LiteralPathSegment.cs#L40C13-L40C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/LiteralPathSegment.cs#L40C13-L40C97" }, { "DocsId": "P:Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments.LiteralPathSegment.CanProduceStem", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/LiteralPathSegment.cs#L14C39-L14C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/LiteralPathSegment.cs#L14C39-L14C44" }, { "DocsId": "P:Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments.LiteralPathSegment.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/LiteralPathSegment.cs#L24C31-L24C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/LiteralPathSegment.cs#L24C31-L24C35" } ], "DocsId": "T:Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments.LiteralPathSegment", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/LiteralPathSegment.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/LiteralPathSegment.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments.ParentPathSegment.Match(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/ParentPathSegment.cs#L16C13-L16C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/ParentPathSegment.cs#L16C13-L16C82" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments.ParentPathSegment.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/ParentPathSegment.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/ParentPathSegment.cs" }, { "DocsId": "P:Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments.ParentPathSegment.CanProduceStem", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/ParentPathSegment.cs#L12C39-L12C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/ParentPathSegment.cs#L12C39-L12C44" } ], "DocsId": "T:Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments.ParentPathSegment", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/ParentPathSegment.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/ParentPathSegment.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments.RecursiveWildcardSegment.Match(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/RecursiveWildcardSegment.cs#L12C44-L12C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/RecursiveWildcardSegment.cs#L12C44-L12C49" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments.RecursiveWildcardSegment.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/RecursiveWildcardSegment.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/RecursiveWildcardSegment.cs" }, { "DocsId": "P:Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments.RecursiveWildcardSegment.CanProduceStem", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/RecursiveWildcardSegment.cs#L10C39-L10C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/RecursiveWildcardSegment.cs#L10C39-L10C43" } ], "DocsId": "T:Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments.RecursiveWildcardSegment", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/RecursiveWildcardSegment.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/RecursiveWildcardSegment.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments.WildcardPathSegment.#ctor(System.String,System.Collections.Generic.List{System.String},System.String,System.StringComparison)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/WildcardPathSegment.cs#L18C9-L32C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/WildcardPathSegment.cs#L18C9-L32C10" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments.WildcardPathSegment.Match(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/WildcardPathSegment.cs#L44C13-L79C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/WildcardPathSegment.cs#L44C13-L79C25" }, { "DocsId": "F:Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments.WildcardPathSegment.MatchAll", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/WildcardPathSegment.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/WildcardPathSegment.cs" }, { "DocsId": "P:Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments.WildcardPathSegment.CanProduceStem", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/WildcardPathSegment.cs#L34C44-L34C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/WildcardPathSegment.cs#L34C44-L34C56" }, { "DocsId": "P:Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments.WildcardPathSegment.BeginsWith", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/WildcardPathSegment.cs#L36C36-L36C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/WildcardPathSegment.cs#L36C36-L36C40" }, { "DocsId": "P:Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments.WildcardPathSegment.Contains", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/WildcardPathSegment.cs#L38C40-L38C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/WildcardPathSegment.cs#L38C40-L38C44" }, { "DocsId": "P:Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments.WildcardPathSegment.EndsWith", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/WildcardPathSegment.cs#L40C34-L40C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/WildcardPathSegment.cs#L40C34-L40C38" } ], "DocsId": "T:Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments.WildcardPathSegment", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/WildcardPathSegment.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PathSegments/WildcardPathSegment.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoBase.EnumerateFileSystemInfos", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/DirectoryInfoBase.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/DirectoryInfoBase.cs" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoBase.GetDirectory(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/DirectoryInfoBase.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/DirectoryInfoBase.cs" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoBase.GetFile(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/DirectoryInfoBase.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/DirectoryInfoBase.cs" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoBase.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/DirectoryInfoBase.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/DirectoryInfoBase.cs" } ], "DocsId": "T:Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoBase", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/DirectoryInfoBase.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/DirectoryInfoBase.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoWrapper.#ctor(System.IO.DirectoryInfo)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/DirectoryInfoWrapper.cs#L24C15-L25C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/DirectoryInfoWrapper.cs#L24C15-L25C12" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoWrapper.EnumerateFileSystemInfos", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/DirectoryInfoWrapper.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/DirectoryInfoWrapper.cs" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoWrapper.GetDirectory(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/DirectoryInfoWrapper.cs#L72C13-L96C119" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/DirectoryInfoWrapper.cs#L72C13-L96C119" }, { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoWrapper.GetFile(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/DirectoryInfoWrapper.cs#L103C16-L103C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/DirectoryInfoWrapper.cs#L103C16-L103C94" }, { "DocsId": "P:Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoWrapper.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/DirectoryInfoWrapper.cs#L106C40-L106C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/DirectoryInfoWrapper.cs#L106C40-L106C82" }, { "DocsId": "P:Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoWrapper.FullName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/DirectoryInfoWrapper.cs#L114C44-L114C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/DirectoryInfoWrapper.cs#L114C44-L114C67" }, { "DocsId": "P:Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoWrapper.ParentDirectory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/DirectoryInfoWrapper.cs#L123C16-L123C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/DirectoryInfoWrapper.cs#L123C16-L123C64" } ], "DocsId": "T:Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoWrapper", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/DirectoryInfoWrapper.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/DirectoryInfoWrapper.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileInfoBase.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/FileInfoBase.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/FileInfoBase.cs" } ], "DocsId": "T:Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileInfoBase", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/FileInfoBase.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/FileInfoBase.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileInfoWrapper.#ctor(System.IO.FileInfo)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/FileInfoWrapper.cs#L20C9-L25C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/FileInfoWrapper.cs#L20C9-L25C10" }, { "DocsId": "P:Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileInfoWrapper.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/FileInfoWrapper.cs#L33C40-L33C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/FileInfoWrapper.cs#L33C40-L33C54" }, { "DocsId": "P:Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileInfoWrapper.FullName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/FileInfoWrapper.cs#L41C44-L41C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/FileInfoWrapper.cs#L41C44-L41C62" }, { "DocsId": "P:Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileInfoWrapper.ParentDirectory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/FileInfoWrapper.cs#L50C16-L50C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/FileInfoWrapper.cs#L50C16-L50C62" } ], "DocsId": "T:Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileInfoWrapper", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/FileInfoWrapper.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/FileInfoWrapper.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileSystemInfoBase.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/FileSystemInfoBase.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/FileSystemInfoBase.cs" }, { "DocsId": "P:Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileSystemInfoBase.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/FileSystemInfoBase.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/FileSystemInfoBase.cs" }, { "DocsId": "P:Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileSystemInfoBase.FullName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/FileSystemInfoBase.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/FileSystemInfoBase.cs" }, { "DocsId": "P:Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileSystemInfoBase.ParentDirectory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/FileSystemInfoBase.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/FileSystemInfoBase.cs" } ], "DocsId": "T:Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileSystemInfoBase", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/FileSystemInfoBase.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Abstractions/FileSystemInfoBase.cs" }, { "Members": [ { "DocsId": "F:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextLinear.FrameData.IsNotApplicable", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextLinear.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextLinear.cs" }, { "DocsId": "F:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextLinear.FrameData.SegmentIndex", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextLinear.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextLinear.cs" }, { "DocsId": "F:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextLinear.FrameData.InStem", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextLinear.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextLinear.cs" }, { "DocsId": "P:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextLinear.FrameData.StemItems", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextLinear.cs#L74C47-L74C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextLinear.cs#L74C47-L74C80" }, { "DocsId": "P:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextLinear.FrameData.Stem", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextLinear.cs#L76C36-L76C92" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextLinear.cs#L76C36-L76C92" } ], "DocsId": "T:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextLinear.FrameData", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextLinear.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextLinear.cs" }, { "Members": [ { "DocsId": "F:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextRagged.FrameData.IsNotApplicable", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRagged.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRagged.cs" }, { "DocsId": "F:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextRagged.FrameData.SegmentGroupIndex", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRagged.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRagged.cs" }, { "DocsId": "F:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextRagged.FrameData.SegmentGroup", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRagged.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRagged.cs" }, { "DocsId": "F:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextRagged.FrameData.BacktrackAvailable", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRagged.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRagged.cs" }, { "DocsId": "F:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextRagged.FrameData.SegmentIndex", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRagged.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRagged.cs" }, { "DocsId": "F:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextRagged.FrameData.InStem", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRagged.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRagged.cs" }, { "DocsId": "P:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextRagged.FrameData.StemItems", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRagged.cs#L129C47-L129C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRagged.cs#L129C47-L129C80" }, { "DocsId": "P:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextRagged.FrameData.Stem", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRagged.cs#L131C36-L131C92" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRagged.cs#L131C36-L131C92" } ], "DocsId": "T:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextRagged.FrameData", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRagged.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.FileSystemGlobbing/src/Internal/PatternContexts/PatternContextRagged.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Hosting.Abstractions.json b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Hosting.Abstractions.json index f59537bbcbe..3a893d6518d 100644 --- a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Hosting.Abstractions.json +++ b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Hosting.Abstractions.json @@ -1,461 +1,460 @@ { "Assembly": "Microsoft.Extensions.Hosting.Abstractions", - "GUID": "7ED3F3CA558F456DBF167FD699479BB8FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "508BFD48A2084149BCD6840179BE6B4CFFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionHostedServiceExtensions.AddHostedService``1(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/ServiceCollectionHostedServiceExtensions.cs#L25C13-L27C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/ServiceCollectionHostedServiceExtensions.cs#L25C13-L27C29" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ServiceCollectionHostedServiceExtensions.AddHostedService``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Func{System.IServiceProvider,``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/ServiceCollectionHostedServiceExtensions.cs#L40C13-L42C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/ServiceCollectionHostedServiceExtensions.cs#L40C13-L42C29" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.ServiceCollectionHostedServiceExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/ServiceCollectionHostedServiceExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/ServiceCollectionHostedServiceExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Hosting.BackgroundService.ExecuteAsync(System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/BackgroundService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/BackgroundService.cs" }, { "DocsId": "M:Microsoft.Extensions.Hosting.BackgroundService.StartAsync(System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/BackgroundService.cs#L43C13-L55C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/BackgroundService.cs#L43C13-L55C39" }, { "DocsId": "M:Microsoft.Extensions.Hosting.BackgroundService.StopAsync(System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/BackgroundService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/BackgroundService.cs" }, { "DocsId": "M:Microsoft.Extensions.Hosting.BackgroundService.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/BackgroundService.cs#L94C13-L95C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/BackgroundService.cs#L94C13-L95C10" }, { "DocsId": "M:Microsoft.Extensions.Hosting.BackgroundService.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/BackgroundService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/BackgroundService.cs" }, { "DocsId": "P:Microsoft.Extensions.Hosting.BackgroundService.ExecuteTask", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/BackgroundService.cs#L24C45-L24C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/BackgroundService.cs#L24C45-L24C57" } ], "DocsId": "T:Microsoft.Extensions.Hosting.BackgroundService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/BackgroundService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/BackgroundService.cs" }, { "Members": [ { "DocsId": "F:Microsoft.Extensions.Hosting.EnvironmentName.Development", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/EnvironmentName.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/EnvironmentName.cs" }, { "DocsId": "F:Microsoft.Extensions.Hosting.EnvironmentName.Staging", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/EnvironmentName.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/EnvironmentName.cs" }, { "DocsId": "F:Microsoft.Extensions.Hosting.EnvironmentName.Production", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/EnvironmentName.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/EnvironmentName.cs" } ], "DocsId": "T:Microsoft.Extensions.Hosting.EnvironmentName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/EnvironmentName.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/EnvironmentName.cs" }, { "Members": [ { "DocsId": "F:Microsoft.Extensions.Hosting.Environments.Development", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/Environments.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/Environments.cs" }, { "DocsId": "F:Microsoft.Extensions.Hosting.Environments.Staging", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/Environments.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/Environments.cs" }, { "DocsId": "F:Microsoft.Extensions.Hosting.Environments.Production", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/Environments.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/Environments.cs" } ], "DocsId": "T:Microsoft.Extensions.Hosting.Environments", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/Environments.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/Environments.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Hosting.HostAbortedException.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostAbortedException.cs#L23C41-L23C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostAbortedException.cs#L23C41-L23C81" }, { "DocsId": "M:Microsoft.Extensions.Hosting.HostAbortedException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostAbortedException.cs#L37C56-L37C107" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostAbortedException.cs#L37C56-L37C107" }, { "DocsId": "M:Microsoft.Extensions.Hosting.HostAbortedException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostAbortedException.cs#L55C83-L55C150" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostAbortedException.cs#L55C83-L55C150" } ], "DocsId": "T:Microsoft.Extensions.Hosting.HostAbortedException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostAbortedException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostAbortedException.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Hosting.HostBuilderContext.#ctor(System.Collections.Generic.IDictionary{System.Object,System.Object})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostBuilderContext.cs#L19C9-L24C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostBuilderContext.cs#L19C9-L24C10" }, { "DocsId": "P:Microsoft.Extensions.Hosting.HostBuilderContext.HostingEnvironment", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostBuilderContext.cs#L29C54-L29C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostBuilderContext.cs#L29C54-L29C58" }, { "DocsId": "P:Microsoft.Extensions.Hosting.HostBuilderContext.Configuration", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostBuilderContext.cs#L34C47-L34C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostBuilderContext.cs#L34C47-L34C51" }, { "DocsId": "P:Microsoft.Extensions.Hosting.HostBuilderContext.Properties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostBuilderContext.cs#L39C57-L39C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostBuilderContext.cs#L39C57-L39C61" } ], "DocsId": "T:Microsoft.Extensions.Hosting.HostBuilderContext", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostBuilderContext.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostBuilderContext.cs" }, { "Members": [ { "DocsId": "F:Microsoft.Extensions.Hosting.HostDefaults.ApplicationKey", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostDefaults.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostDefaults.cs" }, { "DocsId": "F:Microsoft.Extensions.Hosting.HostDefaults.EnvironmentKey", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostDefaults.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostDefaults.cs" }, { "DocsId": "F:Microsoft.Extensions.Hosting.HostDefaults.ContentRootKey", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostDefaults.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostDefaults.cs" } ], "DocsId": "T:Microsoft.Extensions.Hosting.HostDefaults", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostDefaults.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostDefaults.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Hosting.HostEnvironmentEnvExtensions.IsDevelopment(Microsoft.Extensions.Hosting.IHostEnvironment)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostEnvironmentEnvExtensions.cs#L20C13-L22C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostEnvironmentEnvExtensions.cs#L20C13-L22C76" }, { "DocsId": "M:Microsoft.Extensions.Hosting.HostEnvironmentEnvExtensions.IsStaging(Microsoft.Extensions.Hosting.IHostEnvironment)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostEnvironmentEnvExtensions.cs#L32C13-L34C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostEnvironmentEnvExtensions.cs#L32C13-L34C72" }, { "DocsId": "M:Microsoft.Extensions.Hosting.HostEnvironmentEnvExtensions.IsProduction(Microsoft.Extensions.Hosting.IHostEnvironment)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostEnvironmentEnvExtensions.cs#L44C13-L46C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostEnvironmentEnvExtensions.cs#L44C13-L46C75" }, { "DocsId": "M:Microsoft.Extensions.Hosting.HostEnvironmentEnvExtensions.IsEnvironment(Microsoft.Extensions.Hosting.IHostEnvironment,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostEnvironmentEnvExtensions.cs#L59C13-L64C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostEnvironmentEnvExtensions.cs#L59C13-L64C53" } ], "DocsId": "T:Microsoft.Extensions.Hosting.HostEnvironmentEnvExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostEnvironmentEnvExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostEnvironmentEnvExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Hosting.HostingAbstractionsHostBuilderExtensions.Start(Microsoft.Extensions.Hosting.IHostBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostingAbstractionsHostBuilderExtensions.cs#L21C13-L21C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostingAbstractionsHostBuilderExtensions.cs#L21C13-L21C70" }, { "DocsId": "M:Microsoft.Extensions.Hosting.HostingAbstractionsHostBuilderExtensions.StartAsync(Microsoft.Extensions.Hosting.IHostBuilder,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostingAbstractionsHostBuilderExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostingAbstractionsHostBuilderExtensions.cs" } ], "DocsId": "T:Microsoft.Extensions.Hosting.HostingAbstractionsHostBuilderExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostingAbstractionsHostBuilderExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostingAbstractionsHostBuilderExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Hosting.HostingAbstractionsHostExtensions.Start(Microsoft.Extensions.Hosting.IHost)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostingAbstractionsHostExtensions.cs#L22C13-L23C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostingAbstractionsHostExtensions.cs#L22C13-L23C10" }, { "DocsId": "M:Microsoft.Extensions.Hosting.HostingAbstractionsHostExtensions.StopAsync(Microsoft.Extensions.Hosting.IHost,System.TimeSpan)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostingAbstractionsHostExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostingAbstractionsHostExtensions.cs" }, { "DocsId": "M:Microsoft.Extensions.Hosting.HostingAbstractionsHostExtensions.WaitForShutdown(Microsoft.Extensions.Hosting.IHost)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostingAbstractionsHostExtensions.cs#L44C13-L45C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostingAbstractionsHostExtensions.cs#L44C13-L45C10" }, { "DocsId": "M:Microsoft.Extensions.Hosting.HostingAbstractionsHostExtensions.Run(Microsoft.Extensions.Hosting.IHost)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostingAbstractionsHostExtensions.cs#L53C13-L54C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostingAbstractionsHostExtensions.cs#L53C13-L54C10" }, { "DocsId": "M:Microsoft.Extensions.Hosting.HostingAbstractionsHostExtensions.RunAsync(Microsoft.Extensions.Hosting.IHost,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostingAbstractionsHostExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostingAbstractionsHostExtensions.cs" }, { "DocsId": "M:Microsoft.Extensions.Hosting.HostingAbstractionsHostExtensions.WaitForShutdownAsync(Microsoft.Extensions.Hosting.IHost,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostingAbstractionsHostExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostingAbstractionsHostExtensions.cs" } ], "DocsId": "T:Microsoft.Extensions.Hosting.HostingAbstractionsHostExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostingAbstractionsHostExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostingAbstractionsHostExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Hosting.HostingEnvironmentExtensions.IsDevelopment(Microsoft.Extensions.Hosting.IHostingEnvironment)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostingEnvironmentExtensions.cs#L21C13-L23C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostingEnvironmentExtensions.cs#L21C13-L23C82" }, { "DocsId": "M:Microsoft.Extensions.Hosting.HostingEnvironmentExtensions.IsStaging(Microsoft.Extensions.Hosting.IHostingEnvironment)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostingEnvironmentExtensions.cs#L33C13-L35C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostingEnvironmentExtensions.cs#L33C13-L35C78" }, { "DocsId": "M:Microsoft.Extensions.Hosting.HostingEnvironmentExtensions.IsProduction(Microsoft.Extensions.Hosting.IHostingEnvironment)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostingEnvironmentExtensions.cs#L45C13-L47C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostingEnvironmentExtensions.cs#L45C13-L47C81" }, { "DocsId": "M:Microsoft.Extensions.Hosting.HostingEnvironmentExtensions.IsEnvironment(Microsoft.Extensions.Hosting.IHostingEnvironment,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostingEnvironmentExtensions.cs#L60C13-L65C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostingEnvironmentExtensions.cs#L60C13-L65C53" } ], "DocsId": "T:Microsoft.Extensions.Hosting.HostingEnvironmentExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostingEnvironmentExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostingEnvironmentExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Hosting.IApplicationLifetime.StopApplication", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IApplicationLifetime.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IApplicationLifetime.cs" }, { "DocsId": "P:Microsoft.Extensions.Hosting.IApplicationLifetime.ApplicationStarted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IApplicationLifetime.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IApplicationLifetime.cs" }, { "DocsId": "P:Microsoft.Extensions.Hosting.IApplicationLifetime.ApplicationStopping", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IApplicationLifetime.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IApplicationLifetime.cs" }, { "DocsId": "P:Microsoft.Extensions.Hosting.IApplicationLifetime.ApplicationStopped", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IApplicationLifetime.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IApplicationLifetime.cs" } ], "DocsId": "T:Microsoft.Extensions.Hosting.IApplicationLifetime", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IApplicationLifetime.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IApplicationLifetime.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Hosting.IHost.StartAsync(System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHost.cs" }, { "DocsId": "M:Microsoft.Extensions.Hosting.IHost.StopAsync(System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHost.cs" }, { "DocsId": "P:Microsoft.Extensions.Hosting.IHost.Services", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHost.cs" } ], "DocsId": "T:Microsoft.Extensions.Hosting.IHost", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHost.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Hosting.IHostApplicationBuilder.ConfigureContainer``1(Microsoft.Extensions.DependencyInjection.IServiceProviderFactory{``0},System.Action{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostApplicationBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostApplicationBuilder.cs" }, { "DocsId": "P:Microsoft.Extensions.Hosting.IHostApplicationBuilder.Properties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostApplicationBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostApplicationBuilder.cs" }, { "DocsId": "P:Microsoft.Extensions.Hosting.IHostApplicationBuilder.Configuration", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostApplicationBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostApplicationBuilder.cs" }, { "DocsId": "P:Microsoft.Extensions.Hosting.IHostApplicationBuilder.Environment", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostApplicationBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostApplicationBuilder.cs" }, { "DocsId": "P:Microsoft.Extensions.Hosting.IHostApplicationBuilder.Logging", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostApplicationBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostApplicationBuilder.cs" }, { "DocsId": "P:Microsoft.Extensions.Hosting.IHostApplicationBuilder.Metrics", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostApplicationBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostApplicationBuilder.cs" }, { "DocsId": "P:Microsoft.Extensions.Hosting.IHostApplicationBuilder.Services", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostApplicationBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostApplicationBuilder.cs" } ], "DocsId": "T:Microsoft.Extensions.Hosting.IHostApplicationBuilder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostApplicationBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostApplicationBuilder.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Hosting.IHostApplicationLifetime.StopApplication", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostApplicationLifetime.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostApplicationLifetime.cs" }, { "DocsId": "P:Microsoft.Extensions.Hosting.IHostApplicationLifetime.ApplicationStarted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostApplicationLifetime.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostApplicationLifetime.cs" }, { "DocsId": "P:Microsoft.Extensions.Hosting.IHostApplicationLifetime.ApplicationStopping", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostApplicationLifetime.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostApplicationLifetime.cs" }, { "DocsId": "P:Microsoft.Extensions.Hosting.IHostApplicationLifetime.ApplicationStopped", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostApplicationLifetime.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostApplicationLifetime.cs" } ], "DocsId": "T:Microsoft.Extensions.Hosting.IHostApplicationLifetime", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostApplicationLifetime.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostApplicationLifetime.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Hosting.IHostBuilder.ConfigureHostConfiguration(System.Action{Microsoft.Extensions.Configuration.IConfigurationBuilder})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostBuilder.cs" }, { "DocsId": "M:Microsoft.Extensions.Hosting.IHostBuilder.ConfigureAppConfiguration(System.Action{Microsoft.Extensions.Hosting.HostBuilderContext,Microsoft.Extensions.Configuration.IConfigurationBuilder})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostBuilder.cs" }, { "DocsId": "M:Microsoft.Extensions.Hosting.IHostBuilder.ConfigureServices(System.Action{Microsoft.Extensions.Hosting.HostBuilderContext,Microsoft.Extensions.DependencyInjection.IServiceCollection})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostBuilder.cs" }, { "DocsId": "M:Microsoft.Extensions.Hosting.IHostBuilder.UseServiceProviderFactory``1(Microsoft.Extensions.DependencyInjection.IServiceProviderFactory{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostBuilder.cs" }, { "DocsId": "M:Microsoft.Extensions.Hosting.IHostBuilder.UseServiceProviderFactory``1(System.Func{Microsoft.Extensions.Hosting.HostBuilderContext,Microsoft.Extensions.DependencyInjection.IServiceProviderFactory{``0}})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostBuilder.cs" }, { "DocsId": "M:Microsoft.Extensions.Hosting.IHostBuilder.ConfigureContainer``1(System.Action{Microsoft.Extensions.Hosting.HostBuilderContext,``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostBuilder.cs" }, { "DocsId": "M:Microsoft.Extensions.Hosting.IHostBuilder.Build", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostBuilder.cs" }, { "DocsId": "P:Microsoft.Extensions.Hosting.IHostBuilder.Properties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostBuilder.cs" } ], "DocsId": "T:Microsoft.Extensions.Hosting.IHostBuilder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostBuilder.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Hosting.IHostedLifecycleService.StartingAsync(System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostedLifecycleService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostedLifecycleService.cs" }, { "DocsId": "M:Microsoft.Extensions.Hosting.IHostedLifecycleService.StartedAsync(System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostedLifecycleService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostedLifecycleService.cs" }, { "DocsId": "M:Microsoft.Extensions.Hosting.IHostedLifecycleService.StoppingAsync(System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostedLifecycleService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostedLifecycleService.cs" }, { "DocsId": "M:Microsoft.Extensions.Hosting.IHostedLifecycleService.StoppedAsync(System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostedLifecycleService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostedLifecycleService.cs" } ], "DocsId": "T:Microsoft.Extensions.Hosting.IHostedLifecycleService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostedLifecycleService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostedLifecycleService.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Hosting.IHostedService.StartAsync(System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostedService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostedService.cs" }, { "DocsId": "M:Microsoft.Extensions.Hosting.IHostedService.StopAsync(System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostedService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostedService.cs" } ], "DocsId": "T:Microsoft.Extensions.Hosting.IHostedService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostedService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostedService.cs" }, { "Members": [ { "DocsId": "P:Microsoft.Extensions.Hosting.IHostEnvironment.EnvironmentName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostEnvironment.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostEnvironment.cs" }, { "DocsId": "P:Microsoft.Extensions.Hosting.IHostEnvironment.ApplicationName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostEnvironment.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostEnvironment.cs" }, { "DocsId": "P:Microsoft.Extensions.Hosting.IHostEnvironment.ContentRootPath", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostEnvironment.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostEnvironment.cs" }, { "DocsId": "P:Microsoft.Extensions.Hosting.IHostEnvironment.ContentRootFileProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostEnvironment.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostEnvironment.cs" } ], "DocsId": "T:Microsoft.Extensions.Hosting.IHostEnvironment", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostEnvironment.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostEnvironment.cs" }, { "Members": [ { "DocsId": "P:Microsoft.Extensions.Hosting.IHostingEnvironment.EnvironmentName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostingEnvironment.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostingEnvironment.cs" }, { "DocsId": "P:Microsoft.Extensions.Hosting.IHostingEnvironment.ApplicationName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostingEnvironment.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostingEnvironment.cs" }, { "DocsId": "P:Microsoft.Extensions.Hosting.IHostingEnvironment.ContentRootPath", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostingEnvironment.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostingEnvironment.cs" }, { "DocsId": "P:Microsoft.Extensions.Hosting.IHostingEnvironment.ContentRootFileProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostingEnvironment.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostingEnvironment.cs" } ], "DocsId": "T:Microsoft.Extensions.Hosting.IHostingEnvironment", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostingEnvironment.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostingEnvironment.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Hosting.IHostLifetime.WaitForStartAsync(System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostLifetime.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostLifetime.cs" }, { "DocsId": "M:Microsoft.Extensions.Hosting.IHostLifetime.StopAsync(System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostLifetime.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostLifetime.cs" } ], "DocsId": "T:Microsoft.Extensions.Hosting.IHostLifetime", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostLifetime.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/IHostLifetime.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Hosting.Systemd.json b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Hosting.Systemd.json index d0e2ef77980..52c0c4e5b15 100644 --- a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Hosting.Systemd.json +++ b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Hosting.Systemd.json @@ -1,107 +1,106 @@ { "Assembly": "Microsoft.Extensions.Hosting.Systemd", - "GUID": "B44411829EBD4416B187FAA48447BCCDFFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "F91EA575801D445FA49C8569F7FBE2F2FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.Hosting.SystemdHostBuilderExtensions.UseSystemd(Microsoft.Extensions.Hosting.IHostBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Systemd/src/SystemdHostBuilderExtensions.cs#L35C13-L44C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Systemd/src/SystemdHostBuilderExtensions.cs#L35C13-L44C32" }, { "DocsId": "M:Microsoft.Extensions.Hosting.SystemdHostBuilderExtensions.AddSystemd(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Systemd/src/SystemdHostBuilderExtensions.cs#L70C13-L76C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Systemd/src/SystemdHostBuilderExtensions.cs#L70C13-L76C29" } ], "DocsId": "T:Microsoft.Extensions.Hosting.SystemdHostBuilderExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Systemd/src/SystemdHostBuilderExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Systemd/src/SystemdHostBuilderExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Hosting.Systemd.ISystemdNotifier.Notify(Microsoft.Extensions.Hosting.Systemd.ServiceState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Systemd/src/ISystemdNotifier.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Systemd/src/ISystemdNotifier.cs" }, { "DocsId": "P:Microsoft.Extensions.Hosting.Systemd.ISystemdNotifier.IsEnabled", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Systemd/src/ISystemdNotifier.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Systemd/src/ISystemdNotifier.cs" } ], "DocsId": "T:Microsoft.Extensions.Hosting.Systemd.ISystemdNotifier", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Systemd/src/ISystemdNotifier.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Systemd/src/ISystemdNotifier.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Hosting.Systemd.ServiceState.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Systemd/src/ServiceState.cs#L32C13-L35C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Systemd/src/ServiceState.cs#L32C13-L35C10" }, { "DocsId": "M:Microsoft.Extensions.Hosting.Systemd.ServiceState.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Systemd/src/ServiceState.cs#L42C16-L42C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Systemd/src/ServiceState.cs#L42C16-L42C77" }, { "DocsId": "F:Microsoft.Extensions.Hosting.Systemd.ServiceState.Ready", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Systemd/src/ServiceState.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Systemd/src/ServiceState.cs" }, { "DocsId": "F:Microsoft.Extensions.Hosting.Systemd.ServiceState.Stopping", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Systemd/src/ServiceState.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Systemd/src/ServiceState.cs" } ], "DocsId": "T:Microsoft.Extensions.Hosting.Systemd.ServiceState", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Systemd/src/ServiceState.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Systemd/src/ServiceState.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Hosting.Systemd.SystemdHelpers.IsSystemdService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Systemd/src/SystemdHelpers.cs#L27C50-L27C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Systemd/src/SystemdHelpers.cs#L27C50-L27C67" } ], "DocsId": "T:Microsoft.Extensions.Hosting.Systemd.SystemdHelpers", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Systemd/src/SystemdHelpers.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Systemd/src/SystemdHelpers.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Hosting.Systemd.SystemdLifetime.#ctor(Microsoft.Extensions.Hosting.IHostEnvironment,Microsoft.Extensions.Hosting.IHostApplicationLifetime,Microsoft.Extensions.Hosting.Systemd.ISystemdNotifier,Microsoft.Extensions.Logging.ILoggerFactory)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Systemd/src/SystemdLifetime.cs#L32C9-L43C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Systemd/src/SystemdLifetime.cs#L32C9-L43C10" }, { "DocsId": "M:Microsoft.Extensions.Hosting.Systemd.SystemdLifetime.StopAsync(System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Systemd/src/SystemdLifetime.cs#L61C13-L61C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Systemd/src/SystemdLifetime.cs#L61C13-L61C39" }, { "DocsId": "M:Microsoft.Extensions.Hosting.Systemd.SystemdLifetime.WaitForStartAsync(System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Systemd/src/SystemdLifetime.cs#L75C13-L88C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Systemd/src/SystemdLifetime.cs#L75C13-L88C39" }, { "DocsId": "M:Microsoft.Extensions.Hosting.Systemd.SystemdLifetime.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Systemd/src/SystemdLifetime.cs#L113C13-L117C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Systemd/src/SystemdLifetime.cs#L113C13-L117C10" } ], "DocsId": "T:Microsoft.Extensions.Hosting.Systemd.SystemdLifetime", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Systemd/src/SystemdLifetime.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Systemd/src/SystemdLifetime.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Hosting.Systemd.SystemdNotifier.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Systemd/src/SystemdNotifier.cs#L24C13-L25C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Systemd/src/SystemdNotifier.cs#L24C13-L25C12" }, { "DocsId": "M:Microsoft.Extensions.Hosting.Systemd.SystemdNotifier.Notify(Microsoft.Extensions.Hosting.Systemd.ServiceState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Systemd/src/SystemdNotifier.cs#L39C13-L53C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Systemd/src/SystemdNotifier.cs#L39C13-L53C10" }, { "DocsId": "P:Microsoft.Extensions.Hosting.Systemd.SystemdNotifier.IsEnabled", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Systemd/src/SystemdNotifier.cs#L34C34-L34C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Systemd/src/SystemdNotifier.cs#L34C34-L34C53" } ], "DocsId": "T:Microsoft.Extensions.Hosting.Systemd.SystemdNotifier", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.Systemd/src/SystemdNotifier.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.Systemd/src/SystemdNotifier.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Hosting.Testing.json b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Hosting.Testing.json index 83ece2effe9..e00e397ca18 100644 --- a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Hosting.Testing.json +++ b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Hosting.Testing.json @@ -1,121 +1,120 @@ { "Assembly": "Microsoft.Extensions.Hosting.Testing", - "GUID": "1B5505D4A2954E76A0BF32FB3C105B68FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "DA8BBCE5A92A44658DE1FFFD7E4A10F9FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.Hosting.FakeHostingExtensions.StartAndStopAsync(Microsoft.Extensions.Hosting.IHostedService,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHostingExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHostingExtensions.cs" }, { "DocsId": "M:Microsoft.Extensions.Hosting.FakeHostingExtensions.GetFakeLogCollector(Microsoft.Extensions.Hosting.IHost)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHostingExtensions.cs#L54C9-L55C52" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHostingExtensions.cs#L54C9-L55C52" }, { "DocsId": "M:Microsoft.Extensions.Hosting.FakeHostingExtensions.GetFakeRedactionCollector(Microsoft.Extensions.Hosting.IHost)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHostingExtensions.cs#L66C9-L67C58" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHostingExtensions.cs#L66C9-L67C58" }, { "DocsId": "M:Microsoft.Extensions.Hosting.FakeHostingExtensions.AddFakeLoggingOutputSink(Microsoft.Extensions.Hosting.IHostBuilder,System.Action{System.String})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHostingExtensions.cs#L78C9-L96C13" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHostingExtensions.cs#L16707566C0-L96C13" }, { "DocsId": "M:Microsoft.Extensions.Hosting.FakeHostingExtensions.Configure(Microsoft.Extensions.Hosting.IHostBuilder,System.Action{Microsoft.Extensions.Hosting.IHostBuilder})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHostingExtensions.cs#L110C9-L113C24" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHostingExtensions.cs#L110C9-L113C24" }, { "DocsId": "M:Microsoft.Extensions.Hosting.FakeHostingExtensions.ConfigureHostConfiguration(Microsoft.Extensions.Hosting.IHostBuilder,System.ValueTuple{System.String,System.String}[])", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHostingExtensions.cs#L124C9-L131C24" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHostingExtensions.cs#L124C9-L131C24" }, { "DocsId": "M:Microsoft.Extensions.Hosting.FakeHostingExtensions.ConfigureHostConfiguration(Microsoft.Extensions.Hosting.IHostBuilder,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHostingExtensions.cs#L143C9-L144C119" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHostingExtensions.cs#L16707566C0-L144C119" }, { "DocsId": "M:Microsoft.Extensions.Hosting.FakeHostingExtensions.ConfigureAppConfiguration(Microsoft.Extensions.Hosting.IHostBuilder,System.ValueTuple{System.String,System.String}[])", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHostingExtensions.cs#L155C9-L162C24" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHostingExtensions.cs#L155C9-L162C24" }, { "DocsId": "M:Microsoft.Extensions.Hosting.FakeHostingExtensions.ConfigureAppConfiguration(Microsoft.Extensions.Hosting.IHostBuilder,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHostingExtensions.cs#L174C9-L175C123" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHostingExtensions.cs#L16707566C0-L175C123" } ], "DocsId": "T:Microsoft.Extensions.Hosting.FakeHostingExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHostingExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHostingExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Hosting.Testing.FakeHost.CreateBuilder", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHost.cs#L35C51-L35C93" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHost.cs#L35C51-L35C93" }, { "DocsId": "M:Microsoft.Extensions.Hosting.Testing.FakeHost.CreateBuilder(System.Action{Microsoft.Extensions.Hosting.Testing.FakeHostOptions})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHost.cs#L44C9-L48C39" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHost.cs#L44C9-L48C39" }, { "DocsId": "M:Microsoft.Extensions.Hosting.Testing.FakeHost.CreateBuilder(Microsoft.Extensions.Hosting.Testing.FakeHostOptions)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHost.cs#L58C9-L59C45" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHost.cs#L58C9-L59C45" }, { "DocsId": "M:Microsoft.Extensions.Hosting.Testing.FakeHost.StartAsync(System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHost.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHost.cs" }, { "DocsId": "M:Microsoft.Extensions.Hosting.Testing.FakeHost.StopAsync(System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHost.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHost.cs" }, { "DocsId": "M:Microsoft.Extensions.Hosting.Testing.FakeHost.Dispose", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHost.cs#L114C9-L123C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHost.cs#L114C9-L123C6" }, { "DocsId": "P:Microsoft.Extensions.Hosting.Testing.FakeHost.Services", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHost.cs#L19C41-L19C55" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHost.cs#L19C41-L19C55" } ], "DocsId": "T:Microsoft.Extensions.Hosting.Testing.FakeHost", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHost.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHost.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Hosting.Testing.FakeHostOptions.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHostOptions.cs#L19C52-L58C51" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHostOptions.cs#L19C52-L58C51" }, { "DocsId": "P:Microsoft.Extensions.Hosting.Testing.FakeHostOptions.StartUpTimeout", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHostOptions.cs#L19C38-L19C42" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHostOptions.cs#L19C38-L19C42" }, { "DocsId": "P:Microsoft.Extensions.Hosting.Testing.FakeHostOptions.ShutDownTimeout", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHostOptions.cs#L26C39-L26C43" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHostOptions.cs#L26C39-L26C43" }, { "DocsId": "P:Microsoft.Extensions.Hosting.Testing.FakeHostOptions.TimeToLive", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHostOptions.cs#L36C34-L36C38" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHostOptions.cs#L36C34-L36C38" }, { "DocsId": "P:Microsoft.Extensions.Hosting.Testing.FakeHostOptions.FakeLogging", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHostOptions.cs#L44C31-L44C35" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHostOptions.cs#L44C31-L44C35" }, { "DocsId": "P:Microsoft.Extensions.Hosting.Testing.FakeHostOptions.ValidateScopes", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHostOptions.cs#L47C34-L47C38" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHostOptions.cs#L47C34-L47C38" }, { "DocsId": "P:Microsoft.Extensions.Hosting.Testing.FakeHostOptions.ValidateOnBuild", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHostOptions.cs#L50C35-L50C39" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHostOptions.cs#L50C35-L50C39" }, { "DocsId": "P:Microsoft.Extensions.Hosting.Testing.FakeHostOptions.FakeRedaction", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHostOptions.cs#L58C33-L58C37" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHostOptions.cs#L58C33-L58C37" } ], "DocsId": "T:Microsoft.Extensions.Hosting.Testing.FakeHostOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHostOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Hosting.Testing/FakeHostOptions.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Hosting.WindowsServices.json b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Hosting.WindowsServices.json index 0bacba8be0b..18f8ace6c86 100644 --- a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Hosting.WindowsServices.json +++ b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Hosting.WindowsServices.json @@ -1,91 +1,90 @@ { "Assembly": "Microsoft.Extensions.Hosting.WindowsServices", - "GUID": "5F0925E603C14E1B8FA91E88F8A14F63FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "2DCC90BC87364E9FAA29DE783347B839FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.Hosting.WindowsServiceLifetimeHostBuilderExtensions.UseWindowsService(Microsoft.Extensions.Hosting.IHostBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.WindowsServices/src/WindowsServiceLifetimeHostBuilderExtensions.cs#L31C13-L31C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.WindowsServices/src/WindowsServiceLifetimeHostBuilderExtensions.cs#L31C13-L31C61" }, { "DocsId": "M:Microsoft.Extensions.Hosting.WindowsServiceLifetimeHostBuilderExtensions.UseWindowsService(Microsoft.Extensions.Hosting.IHostBuilder,System.Action{Microsoft.Extensions.Hosting.WindowsServiceLifetimeOptions})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.WindowsServices/src/WindowsServiceLifetimeHostBuilderExtensions.cs#L47C13-L57C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.WindowsServices/src/WindowsServiceLifetimeHostBuilderExtensions.cs#L16707566C0-L57C32" }, { "DocsId": "M:Microsoft.Extensions.Hosting.WindowsServiceLifetimeHostBuilderExtensions.AddWindowsService(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.WindowsServices/src/WindowsServiceLifetimeHostBuilderExtensions.cs#L77C13-L77C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.WindowsServices/src/WindowsServiceLifetimeHostBuilderExtensions.cs#L77C13-L77C58" }, { "DocsId": "M:Microsoft.Extensions.Hosting.WindowsServiceLifetimeHostBuilderExtensions.AddWindowsService(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{Microsoft.Extensions.Hosting.WindowsServiceLifetimeOptions})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.WindowsServices/src/WindowsServiceLifetimeHostBuilderExtensions.cs#L97C13-L104C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.WindowsServices/src/WindowsServiceLifetimeHostBuilderExtensions.cs#L97C13-L104C29" } ], "DocsId": "T:Microsoft.Extensions.Hosting.WindowsServiceLifetimeHostBuilderExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.WindowsServices/src/WindowsServiceLifetimeHostBuilderExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.WindowsServices/src/WindowsServiceLifetimeHostBuilderExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Hosting.WindowsServiceLifetimeOptions.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.WindowsServices/src/WindowsServiceLifetimeOptions.cs#L16C51-L16C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.WindowsServices/src/WindowsServiceLifetimeOptions.cs#L16C51-L16C63" }, { "DocsId": "P:Microsoft.Extensions.Hosting.WindowsServiceLifetimeOptions.ServiceName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.WindowsServices/src/WindowsServiceLifetimeOptions.cs#L16C37-L16C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.WindowsServices/src/WindowsServiceLifetimeOptions.cs#L16C37-L16C41" } ], "DocsId": "T:Microsoft.Extensions.Hosting.WindowsServiceLifetimeOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.WindowsServices/src/WindowsServiceLifetimeOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.WindowsServices/src/WindowsServiceLifetimeOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Hosting.WindowsServices.WindowsServiceHelpers.IsWindowsService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.WindowsServices/src/WindowsServiceHelpers.cs#L24C50-L24C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.WindowsServices/src/WindowsServiceHelpers.cs#L24C50-L24C66" } ], "DocsId": "T:Microsoft.Extensions.Hosting.WindowsServices.WindowsServiceHelpers", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.WindowsServices/src/WindowsServiceHelpers.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.WindowsServices/src/WindowsServiceHelpers.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Hosting.WindowsServices.WindowsServiceLifetime.#ctor(Microsoft.Extensions.Hosting.IHostEnvironment,Microsoft.Extensions.Hosting.IHostApplicationLifetime,Microsoft.Extensions.Logging.ILoggerFactory,Microsoft.Extensions.Options.IOptions{Microsoft.Extensions.Hosting.HostOptions})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.WindowsServices/src/WindowsServiceLifetime.cs#L34C15-L36C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.WindowsServices/src/WindowsServiceLifetime.cs#L34C15-L36C10" }, { "DocsId": "M:Microsoft.Extensions.Hosting.WindowsServices.WindowsServiceLifetime.#ctor(Microsoft.Extensions.Hosting.IHostEnvironment,Microsoft.Extensions.Hosting.IHostApplicationLifetime,Microsoft.Extensions.Logging.ILoggerFactory,Microsoft.Extensions.Options.IOptions{Microsoft.Extensions.Hosting.HostOptions},Microsoft.Extensions.Options.IOptions{Microsoft.Extensions.Hosting.WindowsServiceLifetimeOptions})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.WindowsServices/src/WindowsServiceLifetime.cs#L20C9-L60C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.WindowsServices/src/WindowsServiceLifetime.cs#L20C9-L60C10" }, { "DocsId": "M:Microsoft.Extensions.Hosting.WindowsServices.WindowsServiceLifetime.WaitForStartAsync(System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.WindowsServices/src/WindowsServiceLifetime.cs#L77C13-L93C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.WindowsServices/src/WindowsServiceLifetime.cs#L77C13-L93C37" }, { "DocsId": "M:Microsoft.Extensions.Hosting.WindowsServices.WindowsServiceLifetime.StopAsync(System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.WindowsServices/src/WindowsServiceLifetime.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.WindowsServices/src/WindowsServiceLifetime.cs" }, { "DocsId": "M:Microsoft.Extensions.Hosting.WindowsServices.WindowsServiceLifetime.OnStart(System.String[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.WindowsServices/src/WindowsServiceLifetime.cs#L137C13-L139C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.WindowsServices/src/WindowsServiceLifetime.cs#L137C13-L139C10" }, { "DocsId": "M:Microsoft.Extensions.Hosting.WindowsServices.WindowsServiceLifetime.OnStop", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.WindowsServices/src/WindowsServiceLifetime.cs#L148C13-L153C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.WindowsServices/src/WindowsServiceLifetime.cs#L148C13-L153C10" }, { "DocsId": "M:Microsoft.Extensions.Hosting.WindowsServices.WindowsServiceLifetime.OnShutdown", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.WindowsServices/src/WindowsServiceLifetime.cs#L162C13-L167C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.WindowsServices/src/WindowsServiceLifetime.cs#L162C13-L167C10" }, { "DocsId": "M:Microsoft.Extensions.Hosting.WindowsServices.WindowsServiceLifetime.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.WindowsServices/src/WindowsServiceLifetime.cs#L175C13-L181C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.WindowsServices/src/WindowsServiceLifetime.cs#L175C13-L181C10" } ], "DocsId": "T:Microsoft.Extensions.Hosting.WindowsServices.WindowsServiceLifetime", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting.WindowsServices/src/WindowsServiceLifetime.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting.WindowsServices/src/WindowsServiceLifetime.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Hosting.json b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Hosting.json index 192b528e26f..78cbc5a2102 100644 --- a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Hosting.json +++ b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Hosting.json @@ -1,401 +1,400 @@ { "Assembly": "Microsoft.Extensions.Hosting", - "GUID": "363602DA1DE34BD0BC573654FEE7658BFFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "19E47952AA1A43A09C7C390AAEB579E4FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "F:Microsoft.Extensions.Hosting.BackgroundServiceExceptionBehavior.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/BackgroundServiceExceptionBehavior.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/BackgroundServiceExceptionBehavior.cs" }, { "DocsId": "F:Microsoft.Extensions.Hosting.BackgroundServiceExceptionBehavior.StopHost", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/BackgroundServiceExceptionBehavior.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/BackgroundServiceExceptionBehavior.cs" }, { "DocsId": "F:Microsoft.Extensions.Hosting.BackgroundServiceExceptionBehavior.Ignore", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/BackgroundServiceExceptionBehavior.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/BackgroundServiceExceptionBehavior.cs" } ], "DocsId": "T:Microsoft.Extensions.Hosting.BackgroundServiceExceptionBehavior", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/BackgroundServiceExceptionBehavior.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/BackgroundServiceExceptionBehavior.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Hosting.ConsoleLifetimeOptions.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/ConsoleLifetimeOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/ConsoleLifetimeOptions.cs" }, { "DocsId": "P:Microsoft.Extensions.Hosting.ConsoleLifetimeOptions.SuppressStatusMessages", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/ConsoleLifetimeOptions.cs#L15C46-L15C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/ConsoleLifetimeOptions.cs#L15C46-L15C50" } ], "DocsId": "T:Microsoft.Extensions.Hosting.ConsoleLifetimeOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/ConsoleLifetimeOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/ConsoleLifetimeOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Hosting.Host.CreateDefaultBuilder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/Host.cs#L32C13-L32C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/Host.cs#L32C13-L32C45" }, { "DocsId": "M:Microsoft.Extensions.Hosting.Host.CreateDefaultBuilder(System.String[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/Host.cs#L55C13-L56C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/Host.cs#L55C13-L56C52" }, { "DocsId": "M:Microsoft.Extensions.Hosting.Host.CreateApplicationBuilder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/Host.cs#L75C76-L75C104" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/Host.cs#L75C76-L75C104" }, { "DocsId": "M:Microsoft.Extensions.Hosting.Host.CreateApplicationBuilder(System.String[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/Host.cs#L96C90-L96C122" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/Host.cs#L96C90-L96C122" }, { "DocsId": "M:Microsoft.Extensions.Hosting.Host.CreateApplicationBuilder(Microsoft.Extensions.Hosting.HostApplicationBuilderSettings)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/Host.cs#L101C16-L101C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/Host.cs#L101C16-L101C52" }, { "DocsId": "M:Microsoft.Extensions.Hosting.Host.CreateEmptyApplicationBuilder(Microsoft.Extensions.Hosting.HostApplicationBuilderSettings)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/Host.cs#L109C16-L109C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/Host.cs#L109C16-L109C65" } ], "DocsId": "T:Microsoft.Extensions.Hosting.Host", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/Host.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/Host.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Hosting.HostApplicationBuilder.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostApplicationBuilder.cs#L53C15-L55C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostApplicationBuilder.cs#L53C15-L55C10" }, { "DocsId": "M:Microsoft.Extensions.Hosting.HostApplicationBuilder.#ctor(System.String[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostApplicationBuilder.cs#L76C15-L78C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostApplicationBuilder.cs#L76C15-L78C10" }, { "DocsId": "M:Microsoft.Extensions.Hosting.HostApplicationBuilder.#ctor(Microsoft.Extensions.Hosting.HostApplicationBuilderSettings)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostApplicationBuilder.cs#L23C9-L116C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostApplicationBuilder.cs#L23C9-L116C10" }, { "DocsId": "M:Microsoft.Extensions.Hosting.HostApplicationBuilder.Microsoft#Extensions#Hosting#IHostApplicationBuilder#get_Properties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostApplicationBuilder.cs#L188C75-L188C105" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostApplicationBuilder.cs#L188C75-L188C105" }, { "DocsId": "M:Microsoft.Extensions.Hosting.HostApplicationBuilder.Microsoft#Extensions#Hosting#IHostApplicationBuilder#get_Configuration", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostApplicationBuilder.cs#L201C72-L201C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostApplicationBuilder.cs#L201C72-L201C85" }, { "DocsId": "M:Microsoft.Extensions.Hosting.HostApplicationBuilder.ConfigureContainer``1(Microsoft.Extensions.DependencyInjection.IServiceProviderFactory{``0},System.Action{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostApplicationBuilder.cs#L215C13-L226C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostApplicationBuilder.cs#L16707566C0-L226C10" }, { "DocsId": "M:Microsoft.Extensions.Hosting.HostApplicationBuilder.Build", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostApplicationBuilder.cs#L234C13-L249C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostApplicationBuilder.cs#L234C13-L249C10" }, { "DocsId": "P:Microsoft.Extensions.Hosting.HostApplicationBuilder.Microsoft#Extensions#Hosting#IHostApplicationBuilder#Properties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostApplicationBuilder.cs#L188C75-L188C105" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostApplicationBuilder.cs#L188C75-L188C105" }, { "DocsId": "P:Microsoft.Extensions.Hosting.HostApplicationBuilder.Environment", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostApplicationBuilder.cs#L191C48-L191C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostApplicationBuilder.cs#L191C48-L191C60" }, { "DocsId": "P:Microsoft.Extensions.Hosting.HostApplicationBuilder.Configuration", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostApplicationBuilder.cs#L199C53-L199C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostApplicationBuilder.cs#L199C53-L199C57" }, { "DocsId": "P:Microsoft.Extensions.Hosting.HostApplicationBuilder.Microsoft#Extensions#Hosting#IHostApplicationBuilder#Configuration", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostApplicationBuilder.cs#L201C72-L201C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostApplicationBuilder.cs#L201C72-L201C85" }, { "DocsId": "P:Microsoft.Extensions.Hosting.HostApplicationBuilder.Services", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostApplicationBuilder.cs#L204C47-L204C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostApplicationBuilder.cs#L204C47-L204C65" }, { "DocsId": "P:Microsoft.Extensions.Hosting.HostApplicationBuilder.Logging", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostApplicationBuilder.cs#L207C43-L207C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostApplicationBuilder.cs#L207C43-L207C51" }, { "DocsId": "P:Microsoft.Extensions.Hosting.HostApplicationBuilder.Metrics", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostApplicationBuilder.cs#L210C43-L210C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostApplicationBuilder.cs#L210C43-L210C51" } ], "DocsId": "T:Microsoft.Extensions.Hosting.HostApplicationBuilder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostApplicationBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostApplicationBuilder.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Hosting.HostApplicationBuilderSettings.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostApplicationBuilderSettings.cs#L18C9-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostApplicationBuilderSettings.cs#L18C9-L20C10" }, { "DocsId": "P:Microsoft.Extensions.Hosting.HostApplicationBuilderSettings.DisableDefaults", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostApplicationBuilderSettings.cs#L37C39-L37C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostApplicationBuilderSettings.cs#L37C39-L37C43" }, { "DocsId": "P:Microsoft.Extensions.Hosting.HostApplicationBuilderSettings.Args", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostApplicationBuilderSettings.cs#L42C33-L42C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostApplicationBuilderSettings.cs#L42C33-L42C37" }, { "DocsId": "P:Microsoft.Extensions.Hosting.HostApplicationBuilderSettings.Configuration", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostApplicationBuilderSettings.cs#L49C54-L49C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostApplicationBuilderSettings.cs#L49C54-L49C58" }, { "DocsId": "P:Microsoft.Extensions.Hosting.HostApplicationBuilderSettings.EnvironmentName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostApplicationBuilderSettings.cs#L54C42-L54C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostApplicationBuilderSettings.cs#L54C42-L54C46" }, { "DocsId": "P:Microsoft.Extensions.Hosting.HostApplicationBuilderSettings.ApplicationName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostApplicationBuilderSettings.cs#L59C42-L59C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostApplicationBuilderSettings.cs#L59C42-L59C46" }, { "DocsId": "P:Microsoft.Extensions.Hosting.HostApplicationBuilderSettings.ContentRootPath", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostApplicationBuilderSettings.cs#L64C42-L64C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostApplicationBuilderSettings.cs#L64C42-L64C46" } ], "DocsId": "T:Microsoft.Extensions.Hosting.HostApplicationBuilderSettings", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostApplicationBuilderSettings.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostApplicationBuilderSettings.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Hosting.HostBuilder.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostBuilder.cs#L28C9-L47C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostBuilder.cs#L28C9-L47C10" }, { "DocsId": "M:Microsoft.Extensions.Hosting.HostBuilder.ConfigureHostConfiguration(System.Action{Microsoft.Extensions.Configuration.IConfigurationBuilder})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostBuilder.cs#L63C13-L66C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostBuilder.cs#L63C13-L66C25" }, { "DocsId": "M:Microsoft.Extensions.Hosting.HostBuilder.ConfigureAppConfiguration(System.Action{Microsoft.Extensions.Hosting.HostBuilderContext,Microsoft.Extensions.Configuration.IConfigurationBuilder})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostBuilder.cs#L79C13-L82C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostBuilder.cs#L79C13-L82C25" }, { "DocsId": "M:Microsoft.Extensions.Hosting.HostBuilder.ConfigureServices(System.Action{Microsoft.Extensions.Hosting.HostBuilderContext,Microsoft.Extensions.DependencyInjection.IServiceCollection})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostBuilder.cs#L93C13-L96C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostBuilder.cs#L93C13-L96C25" }, { "DocsId": "M:Microsoft.Extensions.Hosting.HostBuilder.UseServiceProviderFactory``1(Microsoft.Extensions.DependencyInjection.IServiceProviderFactory{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostBuilder.cs#L107C13-L110C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostBuilder.cs#L107C13-L110C25" }, { "DocsId": "M:Microsoft.Extensions.Hosting.HostBuilder.UseServiceProviderFactory``1(System.Func{Microsoft.Extensions.Hosting.HostBuilderContext,Microsoft.Extensions.DependencyInjection.IServiceProviderFactory{``0}})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostBuilder.cs#L121C13-L124C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostBuilder.cs#L121C13-L124C25" }, { "DocsId": "M:Microsoft.Extensions.Hosting.HostBuilder.ConfigureContainer``1(System.Action{Microsoft.Extensions.Hosting.HostBuilderContext,``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostBuilder.cs#L137C13-L140C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostBuilder.cs#L137C13-L140C25" }, { "DocsId": "M:Microsoft.Extensions.Hosting.HostBuilder.Build", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostBuilder.cs#L150C13-L167C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostBuilder.cs#L150C13-L167C10" }, { "DocsId": "P:Microsoft.Extensions.Hosting.HostBuilder.Properties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostBuilder.cs#L52C57-L52C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostBuilder.cs#L52C57-L52C61" } ], "DocsId": "T:Microsoft.Extensions.Hosting.HostBuilder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostBuilder.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Hosting.HostingHostBuilderExtensions.UseEnvironment(Microsoft.Extensions.Hosting.IHostBuilder,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostingHostBuilderExtensions.cs#L36C13-L44C16" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostingHostBuilderExtensions.cs#L16707566C0-L44C16" }, { "DocsId": "M:Microsoft.Extensions.Hosting.HostingHostBuilderExtensions.UseContentRoot(Microsoft.Extensions.Hosting.IHostBuilder,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostingHostBuilderExtensions.cs#L56C13-L64C16" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostingHostBuilderExtensions.cs#L16707566C0-L64C16" }, { "DocsId": "M:Microsoft.Extensions.Hosting.HostingHostBuilderExtensions.UseDefaultServiceProvider(Microsoft.Extensions.Hosting.IHostBuilder,System.Action{Microsoft.Extensions.DependencyInjection.ServiceProviderOptions})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostingHostBuilderExtensions.cs#L74C16-L74C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostingHostBuilderExtensions.cs#L16707566C0-L74C95" }, { "DocsId": "M:Microsoft.Extensions.Hosting.HostingHostBuilderExtensions.UseDefaultServiceProvider(Microsoft.Extensions.Hosting.IHostBuilder,System.Action{Microsoft.Extensions.Hosting.HostBuilderContext,Microsoft.Extensions.DependencyInjection.ServiceProviderOptions})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostingHostBuilderExtensions.cs#L84C13-L89C16" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostingHostBuilderExtensions.cs#L16707566C0-L89C16" }, { "DocsId": "M:Microsoft.Extensions.Hosting.HostingHostBuilderExtensions.ConfigureLogging(Microsoft.Extensions.Hosting.IHostBuilder,System.Action{Microsoft.Extensions.Hosting.HostBuilderContext,Microsoft.Extensions.Logging.ILoggingBuilder})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostingHostBuilderExtensions.cs#L100C13-L100C145" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostingHostBuilderExtensions.cs#L16707566C0-L100C145" }, { "DocsId": "M:Microsoft.Extensions.Hosting.HostingHostBuilderExtensions.ConfigureLogging(Microsoft.Extensions.Hosting.IHostBuilder,System.Action{Microsoft.Extensions.Logging.ILoggingBuilder})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostingHostBuilderExtensions.cs#L111C13-L111C116" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostingHostBuilderExtensions.cs#L16707566C0-L111C116" }, { "DocsId": "M:Microsoft.Extensions.Hosting.HostingHostBuilderExtensions.ConfigureHostOptions(Microsoft.Extensions.Hosting.IHostBuilder,System.Action{Microsoft.Extensions.Hosting.HostBuilderContext,Microsoft.Extensions.Hosting.HostOptions})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostingHostBuilderExtensions.cs#L122C13-L123C124" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostingHostBuilderExtensions.cs#L16707566C0-L123C124" }, { "DocsId": "M:Microsoft.Extensions.Hosting.HostingHostBuilderExtensions.ConfigureHostOptions(Microsoft.Extensions.Hosting.IHostBuilder,System.Action{Microsoft.Extensions.Hosting.HostOptions})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostingHostBuilderExtensions.cs#L134C13-L134C104" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostingHostBuilderExtensions.cs#L16707566C0-L134C104" }, { "DocsId": "M:Microsoft.Extensions.Hosting.HostingHostBuilderExtensions.ConfigureAppConfiguration(Microsoft.Extensions.Hosting.IHostBuilder,System.Action{Microsoft.Extensions.Configuration.IConfigurationBuilder})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostingHostBuilderExtensions.cs#L148C13-L148C108" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostingHostBuilderExtensions.cs#L16707566C0-L148C108" }, { "DocsId": "M:Microsoft.Extensions.Hosting.HostingHostBuilderExtensions.ConfigureServices(Microsoft.Extensions.Hosting.IHostBuilder,System.Action{Microsoft.Extensions.DependencyInjection.IServiceCollection})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostingHostBuilderExtensions.cs#L159C13-L159C106" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostingHostBuilderExtensions.cs#L16707566C0-L159C106" }, { "DocsId": "M:Microsoft.Extensions.Hosting.HostingHostBuilderExtensions.ConfigureContainer``1(Microsoft.Extensions.Hosting.IHostBuilder,System.Action{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostingHostBuilderExtensions.cs#L172C13-L172C120" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostingHostBuilderExtensions.cs#L16707566C0-L172C120" }, { "DocsId": "M:Microsoft.Extensions.Hosting.HostingHostBuilderExtensions.ConfigureDefaults(Microsoft.Extensions.Hosting.IHostBuilder,System.String[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostingHostBuilderExtensions.cs#L196C13-L199C146" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostingHostBuilderExtensions.cs#L16707566C0-L199C146" }, { "DocsId": "M:Microsoft.Extensions.Hosting.HostingHostBuilderExtensions.UseConsoleLifetime(Microsoft.Extensions.Hosting.IHostBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostingHostBuilderExtensions.cs#L347C13-L347C123" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostingHostBuilderExtensions.cs#L347C13-L347C123" }, { "DocsId": "M:Microsoft.Extensions.Hosting.HostingHostBuilderExtensions.UseConsoleLifetime(Microsoft.Extensions.Hosting.IHostBuilder,System.Action{Microsoft.Extensions.Hosting.ConsoleLifetimeOptions})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostingHostBuilderExtensions.cs#L363C13-L367C16" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostingHostBuilderExtensions.cs#L16707566C0-L367C16" }, { "DocsId": "M:Microsoft.Extensions.Hosting.HostingHostBuilderExtensions.RunConsoleAsync(Microsoft.Extensions.Hosting.IHostBuilder,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostingHostBuilderExtensions.cs#L382C13-L382C89" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostingHostBuilderExtensions.cs#L382C13-L382C89" }, { "DocsId": "M:Microsoft.Extensions.Hosting.HostingHostBuilderExtensions.RunConsoleAsync(Microsoft.Extensions.Hosting.IHostBuilder,System.Action{Microsoft.Extensions.Hosting.ConsoleLifetimeOptions},System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostingHostBuilderExtensions.cs#L398C13-L398C105" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostingHostBuilderExtensions.cs#L398C13-L398C105" }, { "DocsId": "M:Microsoft.Extensions.Hosting.HostingHostBuilderExtensions.ConfigureMetrics(Microsoft.Extensions.Hosting.IHostBuilder,System.Action{Microsoft.Extensions.Diagnostics.Metrics.IMetricsBuilder})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostingHostBuilderExtensions.cs#L409C13-L409C116" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostingHostBuilderExtensions.cs#L16707566C0-L409C116" }, { "DocsId": "M:Microsoft.Extensions.Hosting.HostingHostBuilderExtensions.ConfigureMetrics(Microsoft.Extensions.Hosting.IHostBuilder,System.Action{Microsoft.Extensions.Hosting.HostBuilderContext,Microsoft.Extensions.Diagnostics.Metrics.IMetricsBuilder})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostingHostBuilderExtensions.cs#L420C13-L420C145" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostingHostBuilderExtensions.cs#L16707566C0-L420C145" } ], "DocsId": "T:Microsoft.Extensions.Hosting.HostingHostBuilderExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostingHostBuilderExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostingHostBuilderExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Hosting.HostOptions.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostOptions.cs#L24C57-L34C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostOptions.cs#L24C57-L34C80" }, { "DocsId": "P:Microsoft.Extensions.Hosting.HostOptions.ShutdownTimeout", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostOptions.cs#L24C43-L24C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostOptions.cs#L24C43-L24C47" }, { "DocsId": "P:Microsoft.Extensions.Hosting.HostOptions.StartupTimeout", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostOptions.cs#L34C42-L34C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostOptions.cs#L34C42-L34C46" }, { "DocsId": "P:Microsoft.Extensions.Hosting.HostOptions.ServicesStartConcurrently", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostOptions.cs#L39C49-L39C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostOptions.cs#L39C49-L39C53" }, { "DocsId": "P:Microsoft.Extensions.Hosting.HostOptions.ServicesStopConcurrently", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostOptions.cs#L44C48-L44C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostOptions.cs#L44C48-L44C52" }, { "DocsId": "P:Microsoft.Extensions.Hosting.HostOptions.BackgroundServiceExceptionBehavior", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostOptions.cs#L53C88-L53C92" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostOptions.cs#L53C88-L53C92" } ], "DocsId": "T:Microsoft.Extensions.Hosting.HostOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/HostOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/HostOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Hosting.Internal.ApplicationLifetime.#ctor(Microsoft.Extensions.Logging.ILogger{Microsoft.Extensions.Hosting.Internal.ApplicationLifetime})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/Internal/ApplicationLifetime.cs#L21C9-L33C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/Internal/ApplicationLifetime.cs#L21C9-L33C10" }, { "DocsId": "M:Microsoft.Extensions.Hosting.Internal.ApplicationLifetime.StopApplication", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/Internal/ApplicationLifetime.cs#L62C13-L75C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/Internal/ApplicationLifetime.cs#L62C13-L75C10" }, { "DocsId": "M:Microsoft.Extensions.Hosting.Internal.ApplicationLifetime.NotifyStarted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/Internal/ApplicationLifetime.cs#L84C17-L92C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/Internal/ApplicationLifetime.cs#L84C17-L92C10" }, { "DocsId": "M:Microsoft.Extensions.Hosting.Internal.ApplicationLifetime.NotifyStopped", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/Internal/ApplicationLifetime.cs#L101C17-L109C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/Internal/ApplicationLifetime.cs#L101C17-L109C10" }, { "DocsId": "P:Microsoft.Extensions.Hosting.Internal.ApplicationLifetime.ApplicationStarted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/Internal/ApplicationLifetime.cs#L39C56-L39C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/Internal/ApplicationLifetime.cs#L39C56-L39C76" }, { "DocsId": "P:Microsoft.Extensions.Hosting.Internal.ApplicationLifetime.ApplicationStopping", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/Internal/ApplicationLifetime.cs#L45C57-L45C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/Internal/ApplicationLifetime.cs#L45C57-L45C78" }, { "DocsId": "P:Microsoft.Extensions.Hosting.Internal.ApplicationLifetime.ApplicationStopped", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/Internal/ApplicationLifetime.cs#L52C56-L52C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/Internal/ApplicationLifetime.cs#L52C56-L52C76" } ], "DocsId": "T:Microsoft.Extensions.Hosting.Internal.ApplicationLifetime", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/Internal/ApplicationLifetime.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/Internal/ApplicationLifetime.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Hosting.Internal.ConsoleLifetime.#ctor(Microsoft.Extensions.Options.IOptions{Microsoft.Extensions.Hosting.ConsoleLifetimeOptions},Microsoft.Extensions.Hosting.IHostEnvironment,Microsoft.Extensions.Hosting.IHostApplicationLifetime,Microsoft.Extensions.Options.IOptions{Microsoft.Extensions.Hosting.HostOptions})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/Internal/ConsoleLifetime.cs#L35C15-L35C107" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/Internal/ConsoleLifetime.cs#L35C15-L35C107" }, { "DocsId": "M:Microsoft.Extensions.Hosting.Internal.ConsoleLifetime.#ctor(Microsoft.Extensions.Options.IOptions{Microsoft.Extensions.Hosting.ConsoleLifetimeOptions},Microsoft.Extensions.Hosting.IHostEnvironment,Microsoft.Extensions.Hosting.IHostApplicationLifetime,Microsoft.Extensions.Options.IOptions{Microsoft.Extensions.Hosting.HostOptions},Microsoft.Extensions.Logging.ILoggerFactory)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/Internal/ConsoleLifetime.cs#L46C9-L59C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/Internal/ConsoleLifetime.cs#L46C9-L59C10" }, { "DocsId": "M:Microsoft.Extensions.Hosting.Internal.ConsoleLifetime.WaitForStartAsync(System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/Internal/ConsoleLifetime.cs#L78C13-L95C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/Internal/ConsoleLifetime.cs#L78C13-L95C39" }, { "DocsId": "M:Microsoft.Extensions.Hosting.Internal.ConsoleLifetime.StopAsync(System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/Internal/ConsoleLifetime.cs#L120C13-L120C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/Internal/ConsoleLifetime.cs#L120C13-L120C39" }, { "DocsId": "M:Microsoft.Extensions.Hosting.Internal.ConsoleLifetime.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/Internal/ConsoleLifetime.cs#L128C13-L132C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/Internal/ConsoleLifetime.cs#L128C13-L132C10" } ], "DocsId": "T:Microsoft.Extensions.Hosting.Internal.ConsoleLifetime", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/Internal/ConsoleLifetime.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/Internal/ConsoleLifetime.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Hosting.Internal.HostingEnvironment.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/Internal/HostingEnvironment.cs#L21C55-L31C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/Internal/HostingEnvironment.cs#L21C55-L31C67" }, { "DocsId": "P:Microsoft.Extensions.Hosting.Internal.HostingEnvironment.EnvironmentName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/Internal/HostingEnvironment.cs#L21C41-L21C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/Internal/HostingEnvironment.cs#L21C41-L21C45" }, { "DocsId": "P:Microsoft.Extensions.Hosting.Internal.HostingEnvironment.ApplicationName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/Internal/HostingEnvironment.cs#L26C41-L26C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/Internal/HostingEnvironment.cs#L26C41-L26C45" }, { "DocsId": "P:Microsoft.Extensions.Hosting.Internal.HostingEnvironment.ContentRootPath", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/Internal/HostingEnvironment.cs#L31C41-L31C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/Internal/HostingEnvironment.cs#L31C41-L31C45" }, { "DocsId": "P:Microsoft.Extensions.Hosting.Internal.HostingEnvironment.ContentRootFileProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/Internal/HostingEnvironment.cs#L36C56-L36C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/Internal/HostingEnvironment.cs#L36C56-L36C60" } ], "DocsId": "T:Microsoft.Extensions.Hosting.Internal.HostingEnvironment", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Hosting/src/Internal/HostingEnvironment.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Hosting/src/Internal/HostingEnvironment.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Http.Diagnostics.json b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Http.Diagnostics.json index 4cd1d98458a..2677fd88f65 100644 --- a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Http.Diagnostics.json +++ b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Http.Diagnostics.json @@ -1,253 +1,252 @@ { "Assembly": "Microsoft.Extensions.Http.Diagnostics", - "GUID": "F3A191DA343F4931B66CF6D560C37786FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "69EFED6A99DD4CEA8BC32F167A460B1CFFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:System.Net.HttpDiagnosticsHttpWebRequestExtensions.SetRequestMetadata(System.Net.HttpWebRequest,Microsoft.Extensions.Http.Diagnostics.RequestMetadata)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Http/HttpDiagnosticsHttpWebRequestExtensions.cs#L21C9-L27C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Http/HttpDiagnosticsHttpWebRequestExtensions.cs#L21C9-L27C6" }, { "DocsId": "M:System.Net.HttpDiagnosticsHttpWebRequestExtensions.GetRequestMetadata(System.Net.HttpWebRequest)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Http/HttpDiagnosticsHttpWebRequestExtensions.cs#L36C9-L55C32" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Http/HttpDiagnosticsHttpWebRequestExtensions.cs#L36C9-L55C32" } ], "DocsId": "T:System.Net.HttpDiagnosticsHttpWebRequestExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Http/HttpDiagnosticsHttpWebRequestExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Http/HttpDiagnosticsHttpWebRequestExtensions.cs" }, { "Members": [ { "DocsId": "M:System.Net.Http.HttpDiagnosticsHttpRequestMessageExtensions.SetRequestMetadata(System.Net.Http.HttpRequestMessage,Microsoft.Extensions.Http.Diagnostics.RequestMetadata)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Http/HttpDiagnosticsHttpRequestMessageExtensions.cs#L24C9-L32C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Http/HttpDiagnosticsHttpRequestMessageExtensions.cs#L24C9-L32C6" }, { "DocsId": "M:System.Net.Http.HttpDiagnosticsHttpRequestMessageExtensions.GetRequestMetadata(System.Net.Http.HttpRequestMessage)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Http/HttpDiagnosticsHttpRequestMessageExtensions.cs#L41C9-L45C25" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Http/HttpDiagnosticsHttpRequestMessageExtensions.cs#L41C9-L45C25" } ], "DocsId": "T:System.Net.Http.HttpDiagnosticsHttpRequestMessageExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Http/HttpDiagnosticsHttpRequestMessageExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Http/HttpDiagnosticsHttpRequestMessageExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpDiagnosticsServiceCollectionExtensions.AddDownstreamDependencyMetadata(Microsoft.Extensions.DependencyInjection.IServiceCollection,Microsoft.Extensions.Http.Diagnostics.IDownstreamDependencyMetadata)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Http/HttpDiagnosticsServiceCollectionExtensions.cs#L25C9-L29C25" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Http/HttpDiagnosticsServiceCollectionExtensions.cs#L25C9-L29C25" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpDiagnosticsServiceCollectionExtensions.AddDownstreamDependencyMetadata``1(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Http/HttpDiagnosticsServiceCollectionExtensions.cs#L41C9-L45C25" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Http/HttpDiagnosticsServiceCollectionExtensions.cs#L41C9-L45C25" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.HttpDiagnosticsServiceCollectionExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Http/HttpDiagnosticsServiceCollectionExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Http/HttpDiagnosticsServiceCollectionExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientLatencyTelemetryExtensions.AddHttpClientLatencyTelemetry(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Latency/HttpClientLatencyTelemetryExtensions.cs#L29C9-L47C16" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Latency/HttpClientLatencyTelemetryExtensions.cs#L29C9-L47C16" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientLatencyTelemetryExtensions.AddHttpClientLatencyTelemetry(Microsoft.Extensions.DependencyInjection.IServiceCollection,Microsoft.Extensions.Configuration.IConfigurationSection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Latency/HttpClientLatencyTelemetryExtensions.cs#L61C9-L66C57" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Latency/HttpClientLatencyTelemetryExtensions.cs#L61C9-L66C57" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientLatencyTelemetryExtensions.AddHttpClientLatencyTelemetry(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{Microsoft.Extensions.Http.Latency.HttpClientLatencyTelemetryOptions})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Latency/HttpClientLatencyTelemetryExtensions.cs#L80C9-L85C57" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Latency/HttpClientLatencyTelemetryExtensions.cs#L80C9-L85C57" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.HttpClientLatencyTelemetryExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Latency/HttpClientLatencyTelemetryExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Latency/HttpClientLatencyTelemetryExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientLoggingHttpClientBuilderExtensions.AddExtendedHttpClientLogging(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/HttpClientLoggingHttpClientBuilderExtensions.cs#L35C9-L37C62" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/HttpClientLoggingHttpClientBuilderExtensions.cs#L35C9-L37C62" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientLoggingHttpClientBuilderExtensions.AddExtendedHttpClientLogging(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder,Microsoft.Extensions.Configuration.IConfigurationSection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/HttpClientLoggingHttpClientBuilderExtensions.cs#L54C9-L57C96" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/HttpClientLoggingHttpClientBuilderExtensions.cs#L16707566C0-L57C96" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientLoggingHttpClientBuilderExtensions.AddExtendedHttpClientLogging(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder,System.Action{Microsoft.Extensions.Http.Logging.LoggingOptions})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/HttpClientLoggingHttpClientBuilderExtensions.cs#L74C9-L77C103" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/HttpClientLoggingHttpClientBuilderExtensions.cs#L16707566C0-L77C103" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.HttpClientLoggingHttpClientBuilderExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/HttpClientLoggingHttpClientBuilderExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/HttpClientLoggingHttpClientBuilderExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientLoggingServiceCollectionExtensions.AddExtendedHttpClientLogging(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/HttpClientLoggingServiceCollectionExtensions.cs#L33C9-L48C79" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/HttpClientLoggingServiceCollectionExtensions.cs#L33C9-L48C79" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientLoggingServiceCollectionExtensions.AddExtendedHttpClientLogging(Microsoft.Extensions.DependencyInjection.IServiceCollection,Microsoft.Extensions.Configuration.IConfigurationSection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/HttpClientLoggingServiceCollectionExtensions.cs#L63C9-L70C56" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/HttpClientLoggingServiceCollectionExtensions.cs#L63C9-L70C56" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientLoggingServiceCollectionExtensions.AddExtendedHttpClientLogging(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{Microsoft.Extensions.Http.Logging.LoggingOptions})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/HttpClientLoggingServiceCollectionExtensions.cs#L85C9-L92C56" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/HttpClientLoggingServiceCollectionExtensions.cs#L85C9-L92C56" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientLoggingServiceCollectionExtensions.AddHttpClientLogEnricher``1(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/HttpClientLoggingServiceCollectionExtensions.cs#L103C12-L103C85" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/HttpClientLoggingServiceCollectionExtensions.cs#L103C12-L103C85" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.HttpClientLoggingServiceCollectionExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/HttpClientLoggingServiceCollectionExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/HttpClientLoggingServiceCollectionExtensions.cs" }, { "Members": [ { "DocsId": "F:Microsoft.Extensions.Http.Logging.HttpClientLoggingTagNames.Duration", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/HttpClientLoggingTagNames.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/HttpClientLoggingTagNames.cs" }, { "DocsId": "F:Microsoft.Extensions.Http.Logging.HttpClientLoggingTagNames.Host", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/HttpClientLoggingTagNames.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/HttpClientLoggingTagNames.cs" }, { "DocsId": "F:Microsoft.Extensions.Http.Logging.HttpClientLoggingTagNames.Method", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/HttpClientLoggingTagNames.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/HttpClientLoggingTagNames.cs" }, { "DocsId": "F:Microsoft.Extensions.Http.Logging.HttpClientLoggingTagNames.Path", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/HttpClientLoggingTagNames.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/HttpClientLoggingTagNames.cs" }, { "DocsId": "F:Microsoft.Extensions.Http.Logging.HttpClientLoggingTagNames.RequestBody", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/HttpClientLoggingTagNames.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/HttpClientLoggingTagNames.cs" }, { "DocsId": "F:Microsoft.Extensions.Http.Logging.HttpClientLoggingTagNames.ResponseBody", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/HttpClientLoggingTagNames.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/HttpClientLoggingTagNames.cs" }, { "DocsId": "F:Microsoft.Extensions.Http.Logging.HttpClientLoggingTagNames.RequestHeaderPrefix", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/HttpClientLoggingTagNames.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/HttpClientLoggingTagNames.cs" }, { "DocsId": "F:Microsoft.Extensions.Http.Logging.HttpClientLoggingTagNames.ResponseHeaderPrefix", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/HttpClientLoggingTagNames.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/HttpClientLoggingTagNames.cs" }, { "DocsId": "F:Microsoft.Extensions.Http.Logging.HttpClientLoggingTagNames.StatusCode", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/HttpClientLoggingTagNames.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/HttpClientLoggingTagNames.cs" }, { "DocsId": "P:Microsoft.Extensions.Http.Logging.HttpClientLoggingTagNames.TagNames", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/HttpClientLoggingTagNames.cs#L63C52-L63C56" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/HttpClientLoggingTagNames.cs#L63C52-L63C56" } ], "DocsId": "T:Microsoft.Extensions.Http.Logging.HttpClientLoggingTagNames", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/HttpClientLoggingTagNames.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/HttpClientLoggingTagNames.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Http.Logging.IHttpClientLogEnricher.Enrich(Microsoft.Extensions.Diagnostics.Enrichment.IEnrichmentTagCollector,System.Net.Http.HttpRequestMessage,System.Net.Http.HttpResponseMessage,System.Exception)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/IHttpClientLogEnricher.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/IHttpClientLogEnricher.cs" } ], "DocsId": "T:Microsoft.Extensions.Http.Logging.IHttpClientLogEnricher", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/IHttpClientLogEnricher.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/IHttpClientLogEnricher.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Http.Logging.LoggingOptions.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/LoggingOptions.cs#L60C46-L147C138" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/LoggingOptions.cs#L60C46-L147C138" }, { "DocsId": "P:Microsoft.Extensions.Http.Logging.LoggingOptions.LogRequestStart", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/LoggingOptions.cs#L37C35-L37C39" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/LoggingOptions.cs#L37C35-L37C39" }, { "DocsId": "P:Microsoft.Extensions.Http.Logging.LoggingOptions.LogBody", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/LoggingOptions.cs#L48C27-L48C31" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/LoggingOptions.cs#L48C27-L48C31" }, { "DocsId": "P:Microsoft.Extensions.Http.Logging.LoggingOptions.BodySizeLimit", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/LoggingOptions.cs#L60C32-L60C36" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/LoggingOptions.cs#L60C32-L60C36" }, { "DocsId": "P:Microsoft.Extensions.Http.Logging.LoggingOptions.BodyReadTimeout", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/LoggingOptions.cs#L72C39-L72C43" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/LoggingOptions.cs#L72C39-L72C43" }, { "DocsId": "P:Microsoft.Extensions.Http.Logging.LoggingOptions.RequestBodyContentTypes", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/LoggingOptions.cs#L80C51-L80C55" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/LoggingOptions.cs#L80C51-L80C55" }, { "DocsId": "P:Microsoft.Extensions.Http.Logging.LoggingOptions.ResponseBodyContentTypes", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/LoggingOptions.cs#L88C52-L88C56" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/LoggingOptions.cs#L88C52-L88C56" }, { "DocsId": "P:Microsoft.Extensions.Http.Logging.LoggingOptions.RequestHeadersDataClasses", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/LoggingOptions.cs#L103C80-L103C84" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/LoggingOptions.cs#L103C80-L103C84" }, { "DocsId": "P:Microsoft.Extensions.Http.Logging.LoggingOptions.ResponseHeadersDataClasses", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/LoggingOptions.cs#L118C81-L118C85" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/LoggingOptions.cs#L118C81-L118C85" }, { "DocsId": "P:Microsoft.Extensions.Http.Logging.LoggingOptions.RequestPathLoggingMode", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/LoggingOptions.cs#L131C61-L131C65" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/LoggingOptions.cs#L131C61-L131C65" }, { "DocsId": "P:Microsoft.Extensions.Http.Logging.LoggingOptions.RequestPathParameterRedactionMode", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/LoggingOptions.cs#L139C80-L139C84" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/LoggingOptions.cs#L139C80-L139C84" }, { "DocsId": "P:Microsoft.Extensions.Http.Logging.LoggingOptions.RouteParameterDataClasses", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/LoggingOptions.cs#L147C80-L147C84" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/LoggingOptions.cs#L147C80-L147C84" }, { "DocsId": "P:Microsoft.Extensions.Http.Logging.LoggingOptions.LogContentHeaders", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/LoggingOptions.cs#L161C37-L161C41" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/LoggingOptions.cs#L161C37-L161C41" } ], "DocsId": "T:Microsoft.Extensions.Http.Logging.LoggingOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/LoggingOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/LoggingOptions.cs" }, { "Members": [ { "DocsId": "F:Microsoft.Extensions.Http.Logging.OutgoingPathLoggingMode.value__", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/OutgoingPathLoggingMode.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/OutgoingPathLoggingMode.cs" }, { "DocsId": "F:Microsoft.Extensions.Http.Logging.OutgoingPathLoggingMode.Formatted", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/OutgoingPathLoggingMode.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/OutgoingPathLoggingMode.cs" }, { "DocsId": "F:Microsoft.Extensions.Http.Logging.OutgoingPathLoggingMode.Structured", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/OutgoingPathLoggingMode.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/OutgoingPathLoggingMode.cs" } ], "DocsId": "T:Microsoft.Extensions.Http.Logging.OutgoingPathLoggingMode", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/OutgoingPathLoggingMode.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Logging/OutgoingPathLoggingMode.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Http.Latency.HttpClientLatencyTelemetryOptions.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Latency/HttpClientLatencyTelemetryOptions.cs#L22C64-L22C68" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Latency/HttpClientLatencyTelemetryOptions.cs#L22C64-L22C68" }, { "DocsId": "P:Microsoft.Extensions.Http.Latency.HttpClientLatencyTelemetryOptions.EnableDetailedLatencyBreakdown", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Latency/HttpClientLatencyTelemetryOptions.cs#L22C50-L22C54" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Latency/HttpClientLatencyTelemetryOptions.cs#L22C50-L22C54" } ], "DocsId": "T:Microsoft.Extensions.Http.Latency.HttpClientLatencyTelemetryOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Latency/HttpClientLatencyTelemetryOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Diagnostics/Latency/HttpClientLatencyTelemetryOptions.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Http.Resilience.json b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Http.Resilience.json index 64dfe6da035..25421fcb81b 100644 --- a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Http.Resilience.json +++ b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Http.Resilience.json @@ -1,517 +1,524 @@ { "Assembly": "Microsoft.Extensions.Http.Resilience", - "GUID": "5CFD8FA7C5494CDDA65077382937EEB6FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "10F460FFF73B4723BEA3DB0FBB194019FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:System.Net.Http.HttpResilienceHttpRequestMessageExtensions.GetResilienceContext(System.Net.Http.HttpRequestMessage)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpResilienceHttpRequestMessageExtensions.cs#L27C9-L41C21" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpResilienceHttpRequestMessageExtensions.cs#L27C9-L41C21" }, { "DocsId": "M:System.Net.Http.HttpResilienceHttpRequestMessageExtensions.SetResilienceContext(System.Net.Http.HttpRequestMessage,Polly.ResilienceContext)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpResilienceHttpRequestMessageExtensions.cs#L51C9-L57C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpResilienceHttpRequestMessageExtensions.cs#L51C9-L57C6" } ], "DocsId": "T:System.Net.Http.HttpResilienceHttpRequestMessageExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpResilienceHttpRequestMessageExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpResilienceHttpRequestMessageExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ResilienceHttpClientBuilderExtensions.AddStandardHedgingHandler(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder,System.Action{Microsoft.Extensions.Http.Resilience.IRoutingStrategyBuilder})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/ResilienceHttpClientBuilderExtensions.Hedging.cs#L44C9-L51C31" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/ResilienceHttpClientBuilderExtensions.Hedging.cs#L44C9-L51C31" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ResilienceHttpClientBuilderExtensions.AddStandardHedgingHandler(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/ResilienceHttpClientBuilderExtensions.Hedging.cs#L73C9-L143C98" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/ResilienceHttpClientBuilderExtensions.Hedging.cs#L16707566C0-L143C98" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ResilienceHttpClientBuilderExtensions.AddResilienceHandler(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder,System.String,System.Action{Polly.ResiliencePipelineBuilder{System.Net.Http.HttpResponseMessage}})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHttpClientBuilderExtensions.Resilience.cs#L38C9-L42C95" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHttpClientBuilderExtensions.Resilience.cs#L16707566C0-L42C95" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ResilienceHttpClientBuilderExtensions.AddResilienceHandler(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder,System.String,System.Action{Polly.ResiliencePipelineBuilder{System.Net.Http.HttpResponseMessage},Microsoft.Extensions.Http.Resilience.ResilienceHandlerContext})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHttpClientBuilderExtensions.Resilience.cs#L61C9-L75C32" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHttpClientBuilderExtensions.Resilience.cs#L16707566C0-L75C32" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ResilienceHttpClientBuilderExtensions.AddStandardResilienceHandler(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder,Microsoft.Extensions.Configuration.IConfigurationSection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHttpClientBuilderExtensions.StandardResilience.cs#L32C9-L35C74" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHttpClientBuilderExtensions.StandardResilience.cs#L32C9-L35C74" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ResilienceHttpClientBuilderExtensions.AddStandardResilienceHandler(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder,System.Action{Microsoft.Extensions.Http.Resilience.HttpStandardResilienceOptions})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHttpClientBuilderExtensions.StandardResilience.cs#L50C9-L53C76" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHttpClientBuilderExtensions.StandardResilience.cs#L50C9-L53C76" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ResilienceHttpClientBuilderExtensions.AddStandardResilienceHandler(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHttpClientBuilderExtensions.StandardResilience.cs#L67C9-L89C89" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHttpClientBuilderExtensions.StandardResilience.cs#L16707566C0-L89C89" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.ResilienceHttpClientBuilderExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/ResilienceHttpClientBuilderExtensions.Hedging.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/ResilienceHttpClientBuilderExtensions.Hedging.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Http.Resilience.HedgingEndpointOptions.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/HedgingEndpointOptions.cs#L28C71-L59C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/HedgingEndpointOptions.cs#L28C71-L59C6" }, { "DocsId": "P:Microsoft.Extensions.Http.Resilience.HedgingEndpointOptions.RateLimiter", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/HedgingEndpointOptions.cs#L28C57-L28C61" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/HedgingEndpointOptions.cs#L28C57-L28C61" }, { "DocsId": "P:Microsoft.Extensions.Http.Resilience.HedgingEndpointOptions.CircuitBreaker", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/HedgingEndpointOptions.cs#L41C63-L41C67" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/HedgingEndpointOptions.cs#L41C63-L41C67" }, { "DocsId": "P:Microsoft.Extensions.Http.Resilience.HedgingEndpointOptions.Timeout", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/HedgingEndpointOptions.cs#L55C49-L55C53" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/HedgingEndpointOptions.cs#L55C49-L55C53" } ], "DocsId": "T:Microsoft.Extensions.Http.Resilience.HedgingEndpointOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/HedgingEndpointOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/HedgingEndpointOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Http.Resilience.HttpClientHedgingResiliencePredicates.IsTransient(Polly.Outcome{System.Net.Http.HttpResponseMessage})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/HttpClientHedgingResiliencePredicates.cs#L21C77-L25C19" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/HttpClientHedgingResiliencePredicates.cs#L26C12-L16707566C0" + }, + { + "DocsId": "M:Microsoft.Extensions.Http.Resilience.HttpClientHedgingResiliencePredicates.IsTransient(Polly.Outcome{System.Net.Http.HttpResponseMessage},System.Threading.CancellationToken)", + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/HttpClientHedgingResiliencePredicates.cs#L41C12-L42C35" } ], "DocsId": "T:Microsoft.Extensions.Http.Resilience.HttpClientHedgingResiliencePredicates", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/HttpClientHedgingResiliencePredicates.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/HttpClientHedgingResiliencePredicates.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Http.Resilience.HttpHedgingStrategyOptions.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/HttpHedgingStrategyOptions.cs#L22C5-L25C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/HttpHedgingStrategyOptions.cs#L22C5-L25C6" } ], "DocsId": "T:Microsoft.Extensions.Http.Resilience.HttpHedgingStrategyOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/HttpHedgingStrategyOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/HttpHedgingStrategyOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Http.Resilience.HttpStandardHedgingResilienceOptions.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/HttpStandardHedgingResilienceOptions.cs#L48C75-L74C88" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/HttpStandardHedgingResilienceOptions.cs#L48C75-L74C88" }, { "DocsId": "P:Microsoft.Extensions.Http.Resilience.HttpStandardHedgingResilienceOptions.TotalRequestTimeout", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/HttpStandardHedgingResilienceOptions.cs#L48C61-L48C65" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/HttpStandardHedgingResilienceOptions.cs#L48C61-L48C65" }, { "DocsId": "P:Microsoft.Extensions.Http.Resilience.HttpStandardHedgingResilienceOptions.Hedging", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/HttpStandardHedgingResilienceOptions.cs#L61C49-L61C53" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/HttpStandardHedgingResilienceOptions.cs#L61C49-L61C53" }, { "DocsId": "P:Microsoft.Extensions.Http.Resilience.HttpStandardHedgingResilienceOptions.Endpoint", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/HttpStandardHedgingResilienceOptions.cs#L74C46-L74C50" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/HttpStandardHedgingResilienceOptions.cs#L74C46-L74C50" } ], "DocsId": "T:Microsoft.Extensions.Http.Resilience.HttpStandardHedgingResilienceOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/HttpStandardHedgingResilienceOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/HttpStandardHedgingResilienceOptions.cs" }, { "Members": [ { "DocsId": "P:Microsoft.Extensions.Http.Resilience.IStandardHedgingHandlerBuilder.Name", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/IStandardHedgingHandlerBuilder.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/IStandardHedgingHandlerBuilder.cs" }, { "DocsId": "P:Microsoft.Extensions.Http.Resilience.IStandardHedgingHandlerBuilder.Services", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/IStandardHedgingHandlerBuilder.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/IStandardHedgingHandlerBuilder.cs" }, { "DocsId": "P:Microsoft.Extensions.Http.Resilience.IStandardHedgingHandlerBuilder.RoutingStrategyBuilder", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/IStandardHedgingHandlerBuilder.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/IStandardHedgingHandlerBuilder.cs" } ], "DocsId": "T:Microsoft.Extensions.Http.Resilience.IStandardHedgingHandlerBuilder", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/IStandardHedgingHandlerBuilder.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/IStandardHedgingHandlerBuilder.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Http.Resilience.StandardHedgingHandlerBuilderExtensions.Configure(Microsoft.Extensions.Http.Resilience.IStandardHedgingHandlerBuilder,Microsoft.Extensions.Configuration.IConfigurationSection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/StandardHedgingHandlerBuilderExtensions.cs#L30C9-L40C24" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/StandardHedgingHandlerBuilderExtensions.cs#L30C9-L40C24" }, { "DocsId": "M:Microsoft.Extensions.Http.Resilience.StandardHedgingHandlerBuilderExtensions.Configure(Microsoft.Extensions.Http.Resilience.IStandardHedgingHandlerBuilder,System.Action{Microsoft.Extensions.Http.Resilience.HttpStandardHedgingResilienceOptions})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/StandardHedgingHandlerBuilderExtensions.cs#L51C9-L54C70" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/StandardHedgingHandlerBuilderExtensions.cs#L16707566C0-L54C70" }, { "DocsId": "M:Microsoft.Extensions.Http.Resilience.StandardHedgingHandlerBuilderExtensions.Configure(Microsoft.Extensions.Http.Resilience.IStandardHedgingHandlerBuilder,System.Action{Microsoft.Extensions.Http.Resilience.HttpStandardHedgingResilienceOptions,System.IServiceProvider})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/StandardHedgingHandlerBuilderExtensions.cs#L65C9-L70C24" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/StandardHedgingHandlerBuilderExtensions.cs#L65C9-L70C24" }, { "DocsId": "M:Microsoft.Extensions.Http.Resilience.StandardHedgingHandlerBuilderExtensions.SelectPipelineByAuthority(Microsoft.Extensions.Http.Resilience.IStandardHedgingHandlerBuilder)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/StandardHedgingHandlerBuilderExtensions.cs#L80C9-L86C24" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/StandardHedgingHandlerBuilderExtensions.cs#L80C9-L86C24" }, { "DocsId": "M:Microsoft.Extensions.Http.Resilience.StandardHedgingHandlerBuilderExtensions.SelectPipelineBy(Microsoft.Extensions.Http.Resilience.IStandardHedgingHandlerBuilder,System.Func{System.IServiceProvider,System.Func{System.Net.Http.HttpRequestMessage,System.String}})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/StandardHedgingHandlerBuilderExtensions.cs#L98C9-L105C24" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/StandardHedgingHandlerBuilderExtensions.cs#L98C9-L105C24" } ], "DocsId": "T:Microsoft.Extensions.Http.Resilience.StandardHedgingHandlerBuilderExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/StandardHedgingHandlerBuilderExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Hedging/StandardHedgingHandlerBuilderExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Http.Resilience.HttpCircuitBreakerStrategyOptions.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Polly/HttpCircuitBreakerStrategyOptions.cs#L22C5-L25C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Polly/HttpCircuitBreakerStrategyOptions.cs#L22C5-L25C6" } ], "DocsId": "T:Microsoft.Extensions.Http.Resilience.HttpCircuitBreakerStrategyOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Polly/HttpCircuitBreakerStrategyOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Polly/HttpCircuitBreakerStrategyOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Http.Resilience.HttpClientResiliencePredicates.IsTransient(Polly.Outcome{System.Net.Http.HttpResponseMessage})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Polly/HttpClientResiliencePredicates.cs#L22C77-L26C19" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Polly/HttpClientResiliencePredicates.cs#L25C77-L16707566C0" + }, + { + "DocsId": "M:Microsoft.Extensions.Http.Resilience.HttpClientResiliencePredicates.IsTransient(Polly.Outcome{System.Net.Http.HttpResponseMessage},System.Threading.CancellationToken)", + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Polly/HttpClientResiliencePredicates.cs#L40C12-L41C35" } ], "DocsId": "T:Microsoft.Extensions.Http.Resilience.HttpClientResiliencePredicates", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Polly/HttpClientResiliencePredicates.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Polly/HttpClientResiliencePredicates.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Http.Resilience.HttpRateLimiterStrategyOptions.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Polly/HttpRateLimiterStrategyOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Polly/HttpRateLimiterStrategyOptions.cs" } ], "DocsId": "T:Microsoft.Extensions.Http.Resilience.HttpRateLimiterStrategyOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Polly/HttpRateLimiterStrategyOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Polly/HttpRateLimiterStrategyOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Http.Resilience.HttpRetryStrategyOptions.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Polly/HttpRetryStrategyOptions.cs#L27C5-L33C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Polly/HttpRetryStrategyOptions.cs#L27C5-L33C6" }, { "DocsId": "P:Microsoft.Extensions.Http.Resilience.HttpRetryStrategyOptions.ShouldRetryAfterHeader", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Polly/HttpRetryStrategyOptions.cs#L48C16-L48C39" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Polly/HttpRetryStrategyOptions.cs#L48C16-L48C39" } ], "DocsId": "T:Microsoft.Extensions.Http.Resilience.HttpRetryStrategyOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Polly/HttpRetryStrategyOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Polly/HttpRetryStrategyOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Http.Resilience.HttpTimeoutStrategyOptions.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Polly/HttpTimeoutStrategyOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Polly/HttpTimeoutStrategyOptions.cs" } ], "DocsId": "T:Microsoft.Extensions.Http.Resilience.HttpTimeoutStrategyOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Polly/HttpTimeoutStrategyOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Polly/HttpTimeoutStrategyOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Http.Resilience.HttpResiliencePipelineBuilderExtensions.SelectPipelineByAuthority(Microsoft.Extensions.Http.Resilience.IHttpResiliencePipelineBuilder)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpResiliencePipelineBuilderExtensions.cs#L23C9-L27C24" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpResiliencePipelineBuilderExtensions.cs#L23C9-L27C24" }, { "DocsId": "M:Microsoft.Extensions.Http.Resilience.HttpResiliencePipelineBuilderExtensions.SelectPipelineBy(Microsoft.Extensions.Http.Resilience.IHttpResiliencePipelineBuilder,System.Func{System.IServiceProvider,System.Func{System.Net.Http.HttpRequestMessage,System.String}})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpResiliencePipelineBuilderExtensions.cs#L39C9-L44C24" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpResiliencePipelineBuilderExtensions.cs#L39C9-L44C24" } ], "DocsId": "T:Microsoft.Extensions.Http.Resilience.HttpResiliencePipelineBuilderExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpResiliencePipelineBuilderExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpResiliencePipelineBuilderExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Http.Resilience.HttpStandardResilienceOptions.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpStandardResilienceOptions.cs#L40C71-L97C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpStandardResilienceOptions.cs#L40C71-L97C6" }, { "DocsId": "P:Microsoft.Extensions.Http.Resilience.HttpStandardResilienceOptions.RateLimiter", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpStandardResilienceOptions.cs#L40C57-L40C61" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpStandardResilienceOptions.cs#L40C57-L40C61" }, { "DocsId": "P:Microsoft.Extensions.Http.Resilience.HttpStandardResilienceOptions.TotalRequestTimeout", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpStandardResilienceOptions.cs#L53C61-L53C65" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpStandardResilienceOptions.cs#L53C61-L53C65" }, { "DocsId": "P:Microsoft.Extensions.Http.Resilience.HttpStandardResilienceOptions.Retry", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpStandardResilienceOptions.cs#L66C45-L66C49" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpStandardResilienceOptions.cs#L66C45-L66C49" }, { "DocsId": "P:Microsoft.Extensions.Http.Resilience.HttpStandardResilienceOptions.CircuitBreaker", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpStandardResilienceOptions.cs#L79C63-L79C67" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpStandardResilienceOptions.cs#L79C63-L79C67" }, { "DocsId": "P:Microsoft.Extensions.Http.Resilience.HttpStandardResilienceOptions.AttemptTimeout", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpStandardResilienceOptions.cs#L93C56-L93C60" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpStandardResilienceOptions.cs#L93C56-L93C60" } ], "DocsId": "T:Microsoft.Extensions.Http.Resilience.HttpStandardResilienceOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpStandardResilienceOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpStandardResilienceOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Http.Resilience.HttpStandardResiliencePipelineBuilderExtensions.Configure(Microsoft.Extensions.Http.Resilience.IHttpStandardResiliencePipelineBuilder,Microsoft.Extensions.Configuration.IConfigurationSection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpStandardResiliencePipelineBuilderExtensions.cs#L27C9-L40C24" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpStandardResiliencePipelineBuilderExtensions.cs#L27C9-L40C24" }, { "DocsId": "M:Microsoft.Extensions.Http.Resilience.HttpStandardResiliencePipelineBuilderExtensions.Configure(Microsoft.Extensions.Http.Resilience.IHttpStandardResiliencePipelineBuilder,System.Action{Microsoft.Extensions.Http.Resilience.HttpStandardResilienceOptions})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpStandardResiliencePipelineBuilderExtensions.cs#L53C9-L56C70" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpStandardResiliencePipelineBuilderExtensions.cs#L16707566C0-L56C70" }, { "DocsId": "M:Microsoft.Extensions.Http.Resilience.HttpStandardResiliencePipelineBuilderExtensions.Configure(Microsoft.Extensions.Http.Resilience.IHttpStandardResiliencePipelineBuilder,System.Action{Microsoft.Extensions.Http.Resilience.HttpStandardResilienceOptions,System.IServiceProvider})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpStandardResiliencePipelineBuilderExtensions.cs#L69C9-L74C24" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpStandardResiliencePipelineBuilderExtensions.cs#L69C9-L74C24" }, { "DocsId": "M:Microsoft.Extensions.Http.Resilience.HttpStandardResiliencePipelineBuilderExtensions.SelectPipelineByAuthority(Microsoft.Extensions.Http.Resilience.IHttpStandardResiliencePipelineBuilder)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpStandardResiliencePipelineBuilderExtensions.cs#L84C9-L88C24" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpStandardResiliencePipelineBuilderExtensions.cs#L84C9-L88C24" }, { "DocsId": "M:Microsoft.Extensions.Http.Resilience.HttpStandardResiliencePipelineBuilderExtensions.SelectPipelineBy(Microsoft.Extensions.Http.Resilience.IHttpStandardResiliencePipelineBuilder,System.Func{System.IServiceProvider,System.Func{System.Net.Http.HttpRequestMessage,System.String}})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpStandardResiliencePipelineBuilderExtensions.cs#L100C9-L105C24" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpStandardResiliencePipelineBuilderExtensions.cs#L100C9-L105C24" } ], "DocsId": "T:Microsoft.Extensions.Http.Resilience.HttpStandardResiliencePipelineBuilderExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpStandardResiliencePipelineBuilderExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/HttpStandardResiliencePipelineBuilderExtensions.cs" }, { "Members": [ { "DocsId": "P:Microsoft.Extensions.Http.Resilience.IHttpResiliencePipelineBuilder.PipelineName", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/IHttpResiliencePipelineBuilder.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/IHttpResiliencePipelineBuilder.cs" }, { "DocsId": "P:Microsoft.Extensions.Http.Resilience.IHttpResiliencePipelineBuilder.Services", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/IHttpResiliencePipelineBuilder.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/IHttpResiliencePipelineBuilder.cs" } ], "DocsId": "T:Microsoft.Extensions.Http.Resilience.IHttpResiliencePipelineBuilder", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/IHttpResiliencePipelineBuilder.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/IHttpResiliencePipelineBuilder.cs" }, { "Members": [ { "DocsId": "P:Microsoft.Extensions.Http.Resilience.IHttpStandardResiliencePipelineBuilder.PipelineName", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/IHttpStandardResiliencePipelineBuilder.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/IHttpStandardResiliencePipelineBuilder.cs" }, { "DocsId": "P:Microsoft.Extensions.Http.Resilience.IHttpStandardResiliencePipelineBuilder.Services", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/IHttpStandardResiliencePipelineBuilder.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/IHttpStandardResiliencePipelineBuilder.cs" } ], "DocsId": "T:Microsoft.Extensions.Http.Resilience.IHttpStandardResiliencePipelineBuilder", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/IHttpStandardResiliencePipelineBuilder.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/IHttpStandardResiliencePipelineBuilder.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Http.Resilience.ResilienceHandler.#ctor(System.Func{System.Net.Http.HttpRequestMessage,Polly.ResiliencePipeline{System.Net.Http.HttpResponseMessage}})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHandler.cs#L30C5-L33C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHandler.cs#L30C5-L33C6" }, { "DocsId": "M:Microsoft.Extensions.Http.Resilience.ResilienceHandler.#ctor(Polly.ResiliencePipeline{System.Net.Http.HttpResponseMessage})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHandler.cs#L40C5-L44C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHandler.cs#L16707566C0-L44C6" }, { "DocsId": "M:Microsoft.Extensions.Http.Resilience.ResilienceHandler.SendAsync(System.Net.Http.HttpRequestMessage,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHandler.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHandler.cs" } ], "DocsId": "T:Microsoft.Extensions.Http.Resilience.ResilienceHandler", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHandler.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHandler.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Http.Resilience.ResilienceHandlerContext.EnableReloads``1(System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHandlerContext.cs#L52C157-L52C195" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHandlerContext.cs#L52C157-L52C195" }, { "DocsId": "M:Microsoft.Extensions.Http.Resilience.ResilienceHandlerContext.GetOptions``1(System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHandlerContext.cs#L64C158-L64C193" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHandlerContext.cs#L64C158-L64C193" }, { "DocsId": "M:Microsoft.Extensions.Http.Resilience.ResilienceHandlerContext.OnPipelineDisposed(System.Action)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHandlerContext.cs#L70C56-L70C107" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHandlerContext.cs#L70C56-L70C107" }, { "DocsId": "P:Microsoft.Extensions.Http.Resilience.ResilienceHandlerContext.ServiceProvider", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHandlerContext.cs#L27C48-L27C72" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHandlerContext.cs#L27C48-L27C72" }, { "DocsId": "P:Microsoft.Extensions.Http.Resilience.ResilienceHandlerContext.BuilderName", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHandlerContext.cs#L32C34-L32C59" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHandlerContext.cs#L32C34-L32C59" }, { "DocsId": "P:Microsoft.Extensions.Http.Resilience.ResilienceHandlerContext.InstanceName", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHandlerContext.cs#L37C35-L37C68" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHandlerContext.cs#L37C35-L37C68" } ], "DocsId": "T:Microsoft.Extensions.Http.Resilience.ResilienceHandlerContext", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHandlerContext.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHandlerContext.cs" }, { "Members": [ { "DocsId": "P:Microsoft.Extensions.Http.Resilience.IRoutingStrategyBuilder.Name", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/IRoutingStrategyBuilder.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/IRoutingStrategyBuilder.cs" }, { "DocsId": "P:Microsoft.Extensions.Http.Resilience.IRoutingStrategyBuilder.Services", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/IRoutingStrategyBuilder.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/IRoutingStrategyBuilder.cs" } ], "DocsId": "T:Microsoft.Extensions.Http.Resilience.IRoutingStrategyBuilder", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/IRoutingStrategyBuilder.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/IRoutingStrategyBuilder.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Http.Resilience.OrderedGroupsRoutingOptions.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/OrderedGroupsRoutingOptions.cs#L30C59-L30C87" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/OrderedGroupsRoutingOptions.cs#L30C59-L30C87" }, { "DocsId": "P:Microsoft.Extensions.Http.Resilience.OrderedGroupsRoutingOptions.Groups", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/OrderedGroupsRoutingOptions.cs#L30C45-L30C49" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/OrderedGroupsRoutingOptions.cs#L30C45-L30C49" } ], "DocsId": "T:Microsoft.Extensions.Http.Resilience.OrderedGroupsRoutingOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/OrderedGroupsRoutingOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/OrderedGroupsRoutingOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Http.Resilience.RoutingStrategyBuilderExtensions.ConfigureOrderedGroups(Microsoft.Extensions.Http.Resilience.IRoutingStrategyBuilder,Microsoft.Extensions.Configuration.IConfigurationSection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/RoutingStrategyBuilderExtensions.cs#L34C9-L38C24" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/RoutingStrategyBuilderExtensions.cs#L34C9-L38C24" }, { "DocsId": "M:Microsoft.Extensions.Http.Resilience.RoutingStrategyBuilderExtensions.ConfigureOrderedGroups(Microsoft.Extensions.Http.Resilience.IRoutingStrategyBuilder,System.Action{Microsoft.Extensions.Http.Resilience.OrderedGroupsRoutingOptions})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/RoutingStrategyBuilderExtensions.cs#L49C9-L52C83" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/RoutingStrategyBuilderExtensions.cs#L16707566C0-L52C83" }, { "DocsId": "M:Microsoft.Extensions.Http.Resilience.RoutingStrategyBuilderExtensions.ConfigureOrderedGroups(Microsoft.Extensions.Http.Resilience.IRoutingStrategyBuilder,System.Action{Microsoft.Extensions.Http.Resilience.OrderedGroupsRoutingOptions,System.IServiceProvider})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/RoutingStrategyBuilderExtensions.cs#L63C9-L68C24" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/RoutingStrategyBuilderExtensions.cs#L63C9-L68C24" }, { "DocsId": "M:Microsoft.Extensions.Http.Resilience.RoutingStrategyBuilderExtensions.ConfigureWeightedGroups(Microsoft.Extensions.Http.Resilience.IRoutingStrategyBuilder,Microsoft.Extensions.Configuration.IConfigurationSection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/RoutingStrategyBuilderExtensions.cs#L79C9-L84C24" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/RoutingStrategyBuilderExtensions.cs#L79C9-L84C24" }, { "DocsId": "M:Microsoft.Extensions.Http.Resilience.RoutingStrategyBuilderExtensions.ConfigureWeightedGroups(Microsoft.Extensions.Http.Resilience.IRoutingStrategyBuilder,System.Action{Microsoft.Extensions.Http.Resilience.WeightedGroupsRoutingOptions})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/RoutingStrategyBuilderExtensions.cs#L95C9-L98C84" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/RoutingStrategyBuilderExtensions.cs#L16707566C0-L98C84" }, { "DocsId": "M:Microsoft.Extensions.Http.Resilience.RoutingStrategyBuilderExtensions.ConfigureWeightedGroups(Microsoft.Extensions.Http.Resilience.IRoutingStrategyBuilder,System.Action{Microsoft.Extensions.Http.Resilience.WeightedGroupsRoutingOptions,System.IServiceProvider})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/RoutingStrategyBuilderExtensions.cs#L109C9-L114C24" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/RoutingStrategyBuilderExtensions.cs#L109C9-L114C24" } ], "DocsId": "T:Microsoft.Extensions.Http.Resilience.RoutingStrategyBuilderExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/RoutingStrategyBuilderExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/RoutingStrategyBuilderExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Http.Resilience.UriEndpoint.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/UriEndpoint.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/UriEndpoint.cs" }, { "DocsId": "P:Microsoft.Extensions.Http.Resilience.UriEndpoint.Uri", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/UriEndpoint.cs#L27C16-L27C20" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/UriEndpoint.cs#L27C16-L27C20" } ], "DocsId": "T:Microsoft.Extensions.Http.Resilience.UriEndpoint", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/UriEndpoint.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/UriEndpoint.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Http.Resilience.UriEndpointGroup.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/UriEndpointGroup.cs#L30C65-L30C96" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/UriEndpointGroup.cs#L30C65-L30C96" }, { "DocsId": "P:Microsoft.Extensions.Http.Resilience.UriEndpointGroup.Endpoints", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/UriEndpointGroup.cs#L30C51-L30C55" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/UriEndpointGroup.cs#L30C51-L30C55" } ], "DocsId": "T:Microsoft.Extensions.Http.Resilience.UriEndpointGroup", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/UriEndpointGroup.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/UriEndpointGroup.cs" }, { "Members": [ { "DocsId": "F:Microsoft.Extensions.Http.Resilience.WeightedGroupSelectionMode.value__", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/WeightedGroupSelectionMode.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/WeightedGroupSelectionMode.cs" }, { "DocsId": "F:Microsoft.Extensions.Http.Resilience.WeightedGroupSelectionMode.EveryAttempt", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/WeightedGroupSelectionMode.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/WeightedGroupSelectionMode.cs" }, { "DocsId": "F:Microsoft.Extensions.Http.Resilience.WeightedGroupSelectionMode.InitialAttempt", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/WeightedGroupSelectionMode.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/WeightedGroupSelectionMode.cs" } ], "DocsId": "T:Microsoft.Extensions.Http.Resilience.WeightedGroupSelectionMode", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/WeightedGroupSelectionMode.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/WeightedGroupSelectionMode.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Http.Resilience.WeightedGroupsRoutingOptions.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/WeightedGroupsRoutingOptions.cs#L36C67-L36C103" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/WeightedGroupsRoutingOptions.cs#L36C67-L36C103" }, { "DocsId": "P:Microsoft.Extensions.Http.Resilience.WeightedGroupsRoutingOptions.SelectionMode", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/WeightedGroupsRoutingOptions.cs#L22C55-L22C59" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/WeightedGroupsRoutingOptions.cs#L22C55-L22C59" }, { "DocsId": "P:Microsoft.Extensions.Http.Resilience.WeightedGroupsRoutingOptions.Groups", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/WeightedGroupsRoutingOptions.cs#L36C53-L36C57" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/WeightedGroupsRoutingOptions.cs#L36C53-L36C57" } ], "DocsId": "T:Microsoft.Extensions.Http.Resilience.WeightedGroupsRoutingOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/WeightedGroupsRoutingOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/WeightedGroupsRoutingOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Http.Resilience.WeightedUriEndpoint.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/WeightedUriEndpoint.cs#L34C39-L34C52" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/WeightedUriEndpoint.cs#L34C39-L34C52" }, { "DocsId": "P:Microsoft.Extensions.Http.Resilience.WeightedUriEndpoint.Uri", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/WeightedUriEndpoint.cs#L25C23-L25C27" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/WeightedUriEndpoint.cs#L25C23-L25C27" }, { "DocsId": "P:Microsoft.Extensions.Http.Resilience.WeightedUriEndpoint.Weight", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/WeightedUriEndpoint.cs#L34C25-L34C29" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/WeightedUriEndpoint.cs#L34C25-L34C29" } ], "DocsId": "T:Microsoft.Extensions.Http.Resilience.WeightedUriEndpoint", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/WeightedUriEndpoint.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/WeightedUriEndpoint.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Http.Resilience.WeightedUriEndpointGroup.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/WeightedUriEndpointGroup.cs#L24C39-L24C52" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/WeightedUriEndpointGroup.cs#L24C39-L24C52" }, { "DocsId": "P:Microsoft.Extensions.Http.Resilience.WeightedUriEndpointGroup.Weight", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/WeightedUriEndpointGroup.cs#L24C25-L24C29" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/WeightedUriEndpointGroup.cs#L24C25-L24C29" } ], "DocsId": "T:Microsoft.Extensions.Http.Resilience.WeightedUriEndpointGroup", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/WeightedUriEndpointGroup.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Http.Resilience/Routing/WeightedUriEndpointGroup.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Http.json b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Http.json index 72422885d91..8579a7f48a4 100644 --- a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Http.json +++ b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Http.json @@ -1,445 +1,444 @@ { "Assembly": "Microsoft.Extensions.Http", - "GUID": "45FEB5273C274085AFB7A3A0CF831F05FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "860FA6F113834B16B267C31D760A5E0CFFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:System.Net.Http.HttpClientFactoryExtensions.CreateClient(System.Net.Http.IHttpClientFactory)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/HttpClientFactoryExtensions.cs#L20C13-L22C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/HttpClientFactoryExtensions.cs#L20C13-L22C62" } ], "DocsId": "T:System.Net.Http.HttpClientFactoryExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/HttpClientFactoryExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/HttpClientFactoryExtensions.cs" }, { "Members": [ { "DocsId": "M:System.Net.Http.HttpMessageHandlerFactoryExtensions.CreateHandler(System.Net.Http.IHttpMessageHandlerFactory)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/HttpMessageHandlerFactoryExtensions.cs#L20C13-L22C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/HttpMessageHandlerFactoryExtensions.cs#L20C13-L22C63" } ], "DocsId": "T:System.Net.Http.HttpMessageHandlerFactoryExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/HttpMessageHandlerFactoryExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/HttpMessageHandlerFactoryExtensions.cs" }, { "Members": [ { "DocsId": "M:System.Net.Http.IHttpClientFactory.CreateClient(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/IHttpClientFactory.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/IHttpClientFactory.cs" } ], "DocsId": "T:System.Net.Http.IHttpClientFactory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/IHttpClientFactory.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/IHttpClientFactory.cs" }, { "Members": [ { "DocsId": "M:System.Net.Http.IHttpMessageHandlerFactory.CreateHandler(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/IHttpMessageHandlerFactory.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/IHttpMessageHandlerFactory.cs" } ], "DocsId": "T:System.Net.Http.IHttpMessageHandlerFactory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/IHttpMessageHandlerFactory.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/IHttpMessageHandlerFactory.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientBuilderExtensions.ConfigureHttpClient(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder,System.Action{System.Net.Http.HttpClient})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.cs#L30C13-L35C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.cs#L16707566C0-L35C28" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientBuilderExtensions.ConfigureHttpClient(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder,System.Action{System.IServiceProvider,System.Net.Http.HttpClient})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.cs#L50C13-L61C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.cs#L16707566C0-L61C28" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientBuilderExtensions.AddHttpMessageHandler(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder,System.Func{System.Net.Http.DelegatingHandler})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.cs#L76C13-L84C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.cs#L16707566C0-L84C28" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientBuilderExtensions.AddHttpMessageHandler(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder,System.Func{System.IServiceProvider,System.Net.Http.DelegatingHandler})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.cs#L104C13-L112C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.cs#L16707566C0-L112C28" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientBuilderExtensions.AddHttpMessageHandler``1(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.cs#L132C13-L139C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.cs#L132C13-L139C28" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientBuilderExtensions.ConfigurePrimaryHttpMessageHandler(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder,System.Func{System.Net.Http.HttpMessageHandler})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.cs#L155C13-L163C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.cs#L16707566C0-L163C28" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientBuilderExtensions.ConfigurePrimaryHttpMessageHandler(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder,System.Func{System.IServiceProvider,System.Net.Http.HttpMessageHandler})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.cs#L185C13-L193C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.cs#L16707566C0-L193C28" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientBuilderExtensions.ConfigurePrimaryHttpMessageHandler``1(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.cs#L214C13-L221C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.cs#L214C13-L221C28" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientBuilderExtensions.ConfigurePrimaryHttpMessageHandler(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder,System.Action{System.Net.Http.HttpMessageHandler,System.IServiceProvider})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.cs#L239C13-L247C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.cs#L16707566C0-L247C28" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientBuilderExtensions.ConfigureHttpMessageHandlerBuilder(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder,System.Action{Microsoft.Extensions.Http.HttpMessageHandlerBuilder})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.cs#L260C13-L265C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.cs#L16707566C0-L265C28" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientBuilderExtensions.UseSocketsHttpHandler(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder,System.Action{System.Net.Http.SocketsHttpHandler,System.IServiceProvider})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.cs#L287C13-L302C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.cs#L16707566C0-L302C28" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientBuilderExtensions.UseSocketsHttpHandler(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder,System.Action{Microsoft.Extensions.DependencyInjection.ISocketsHttpHandlerBuilder})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.cs#L325C13-L330C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.cs#L325C13-L330C28" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientBuilderExtensions.AddTypedClient``1(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.cs#L363C13-L365C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.cs#L363C13-L365C84" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientBuilderExtensions.AddTypedClient``2(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.cs#L431C13-L433C101" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.cs#L431C13-L433C101" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientBuilderExtensions.AddTypedClient``1(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder,System.Func{System.Net.Http.HttpClient,``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.cs#L483C13-L486C93" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.cs#L483C13-L486C93" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientBuilderExtensions.AddTypedClient``1(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder,System.Func{System.Net.Http.HttpClient,System.IServiceProvider,``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.cs#L529C13-L532C93" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.cs#L529C13-L532C93" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientBuilderExtensions.RedactLoggedHeaders(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder,System.Func{System.String,System.Boolean})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.cs#L564C13-L572C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.cs#L16707566C0-L572C28" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientBuilderExtensions.RedactLoggedHeaders(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder,System.Collections.Generic.IEnumerable{System.String})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.cs#L583C13-L593C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.cs#L16707566C0-L593C28" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientBuilderExtensions.SetHandlerLifetime(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder,System.TimeSpan)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.cs#L622C13-L630C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.cs#L16707566C0-L630C28" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientBuilderExtensions.ConfigureAdditionalHttpMessageHandlers(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder,System.Action{System.Collections.Generic.IList{System.Net.Http.DelegatingHandler},System.IServiceProvider})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.cs#L642C13-L650C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.cs#L16707566C0-L650C28" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientBuilderExtensions.AddLogger(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder,System.Func{System.IServiceProvider,Microsoft.Extensions.Http.Logging.IHttpClientLogger},System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.Logging.cs#L48C13-L69C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.Logging.cs#L16707566C0-L69C28" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientBuilderExtensions.AddLogger``1(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.Logging.cs#L111C13-L113C113" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.Logging.cs#L111C13-L113C113" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientBuilderExtensions.RemoveAllLoggers(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.Logging.cs#L123C13-L131C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.Logging.cs#L123C13-L131C28" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientBuilderExtensions.AddDefaultLogger(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.Logging.cs#L141C13-L144C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.Logging.cs#L141C13-L144C28" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.HttpClientBuilderExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientBuilderExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientFactoryServiceCollectionExtensions.AddHttpClient(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientFactoryServiceCollectionExtensions.cs#L28C13-L71C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientFactoryServiceCollectionExtensions.cs#L28C13-L71C29" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientFactoryServiceCollectionExtensions.ConfigureHttpClientDefaults(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{Microsoft.Extensions.DependencyInjection.IHttpClientBuilder})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientFactoryServiceCollectionExtensions.cs#L82C13-L89C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientFactoryServiceCollectionExtensions.cs#L82C13-L89C29" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientFactoryServiceCollectionExtensions.AddHttpClient(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientFactoryServiceCollectionExtensions.cs#L110C13-L115C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientFactoryServiceCollectionExtensions.cs#L110C13-L115C65" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientFactoryServiceCollectionExtensions.AddHttpClient(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.String,System.Action{System.Net.Http.HttpClient})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientFactoryServiceCollectionExtensions.cs#L137C13-L145C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientFactoryServiceCollectionExtensions.cs#L137C13-L145C28" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientFactoryServiceCollectionExtensions.AddHttpClient(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.String,System.Action{System.IServiceProvider,System.Net.Http.HttpClient})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientFactoryServiceCollectionExtensions.cs#L167C13-L175C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientFactoryServiceCollectionExtensions.cs#L167C13-L175C28" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientFactoryServiceCollectionExtensions.AddHttpClient``1(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientFactoryServiceCollectionExtensions.cs#L204C13-L211C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientFactoryServiceCollectionExtensions.cs#L204C13-L211C28" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientFactoryServiceCollectionExtensions.AddHttpClient``2(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientFactoryServiceCollectionExtensions.cs#L245C13-L252C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientFactoryServiceCollectionExtensions.cs#L245C13-L252C28" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientFactoryServiceCollectionExtensions.AddHttpClient``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientFactoryServiceCollectionExtensions.cs#L284C13-L291C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientFactoryServiceCollectionExtensions.cs#L284C13-L291C28" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientFactoryServiceCollectionExtensions.AddHttpClient``2(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientFactoryServiceCollectionExtensions.cs#L328C13-L335C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientFactoryServiceCollectionExtensions.cs#L328C13-L335C28" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientFactoryServiceCollectionExtensions.AddHttpClient``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{System.Net.Http.HttpClient})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientFactoryServiceCollectionExtensions.cs#L365C13-L374C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientFactoryServiceCollectionExtensions.cs#L365C13-L374C28" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientFactoryServiceCollectionExtensions.AddHttpClient``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{System.IServiceProvider,System.Net.Http.HttpClient})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientFactoryServiceCollectionExtensions.cs#L404C13-L413C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientFactoryServiceCollectionExtensions.cs#L404C13-L413C28" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientFactoryServiceCollectionExtensions.AddHttpClient``2(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{System.Net.Http.HttpClient})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientFactoryServiceCollectionExtensions.cs#L448C13-L457C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientFactoryServiceCollectionExtensions.cs#L448C13-L457C28" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientFactoryServiceCollectionExtensions.AddHttpClient``2(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{System.IServiceProvider,System.Net.Http.HttpClient})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientFactoryServiceCollectionExtensions.cs#L492C13-L501C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientFactoryServiceCollectionExtensions.cs#L492C13-L501C28" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientFactoryServiceCollectionExtensions.AddHttpClient``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.String,System.Action{System.Net.Http.HttpClient})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientFactoryServiceCollectionExtensions.cs#L534C13-L543C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientFactoryServiceCollectionExtensions.cs#L534C13-L543C28" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientFactoryServiceCollectionExtensions.AddHttpClient``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.String,System.Action{System.IServiceProvider,System.Net.Http.HttpClient})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientFactoryServiceCollectionExtensions.cs#L576C13-L585C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientFactoryServiceCollectionExtensions.cs#L576C13-L585C28" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientFactoryServiceCollectionExtensions.AddHttpClient``2(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.String,System.Action{System.Net.Http.HttpClient})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientFactoryServiceCollectionExtensions.cs#L623C13-L632C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientFactoryServiceCollectionExtensions.cs#L623C13-L632C28" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientFactoryServiceCollectionExtensions.AddHttpClient``2(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.String,System.Action{System.IServiceProvider,System.Net.Http.HttpClient})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientFactoryServiceCollectionExtensions.cs#L670C13-L679C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientFactoryServiceCollectionExtensions.cs#L670C13-L679C28" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientFactoryServiceCollectionExtensions.AddHttpClient``2(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Func{System.Net.Http.HttpClient,``1})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientFactoryServiceCollectionExtensions.cs#L711C13-L715C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientFactoryServiceCollectionExtensions.cs#L711C13-L715C85" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientFactoryServiceCollectionExtensions.AddHttpClient``2(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.String,System.Func{System.Net.Http.HttpClient,``1})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientFactoryServiceCollectionExtensions.cs#L750C13-L758C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientFactoryServiceCollectionExtensions.cs#L750C13-L758C28" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientFactoryServiceCollectionExtensions.AddHttpClient``2(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Func{System.Net.Http.HttpClient,System.IServiceProvider,``1})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientFactoryServiceCollectionExtensions.cs#L790C13-L794C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientFactoryServiceCollectionExtensions.cs#L790C13-L794C85" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.HttpClientFactoryServiceCollectionExtensions.AddHttpClient``2(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.String,System.Func{System.Net.Http.HttpClient,System.IServiceProvider,``1})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientFactoryServiceCollectionExtensions.cs#L827C13-L835C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientFactoryServiceCollectionExtensions.cs#L827C13-L835C28" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.HttpClientFactoryServiceCollectionExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientFactoryServiceCollectionExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/HttpClientFactoryServiceCollectionExtensions.cs" }, { "Members": [ { "DocsId": "P:Microsoft.Extensions.DependencyInjection.IHttpClientBuilder.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/IHttpClientBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/IHttpClientBuilder.cs" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.IHttpClientBuilder.Services", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/IHttpClientBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/IHttpClientBuilder.cs" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.IHttpClientBuilder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/IHttpClientBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/IHttpClientBuilder.cs" }, { "Members": [ { "DocsId": "P:Microsoft.Extensions.DependencyInjection.ISocketsHttpHandlerBuilder.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/ISocketsHttpHandlerBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/ISocketsHttpHandlerBuilder.cs" }, { "DocsId": "P:Microsoft.Extensions.DependencyInjection.ISocketsHttpHandlerBuilder.Services", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/ISocketsHttpHandlerBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/ISocketsHttpHandlerBuilder.cs" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.ISocketsHttpHandlerBuilder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/ISocketsHttpHandlerBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/ISocketsHttpHandlerBuilder.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.SocketsHttpHandlerBuilderExtensions.Configure(Microsoft.Extensions.DependencyInjection.ISocketsHttpHandlerBuilder,System.Action{System.Net.Http.SocketsHttpHandler,System.IServiceProvider})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/SocketsHttpHandlerBuilderExtensions.cs#L30C13-L43C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/SocketsHttpHandlerBuilderExtensions.cs#L16707566C0-L43C28" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.SocketsHttpHandlerBuilderExtensions.Configure(Microsoft.Extensions.DependencyInjection.ISocketsHttpHandlerBuilder,Microsoft.Extensions.Configuration.IConfiguration)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/SocketsHttpHandlerBuilderExtensions.cs#L64C13-L65C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/SocketsHttpHandlerBuilderExtensions.cs#L16707566C0-L65C94" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.SocketsHttpHandlerBuilderExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/SocketsHttpHandlerBuilderExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/DependencyInjection/SocketsHttpHandlerBuilderExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Http.HttpClientFactoryOptions.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/HttpClientFactoryOptions.cs#L22C9-L105C136" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/HttpClientFactoryOptions.cs#L22C9-L105C136" }, { "DocsId": "P:Microsoft.Extensions.Http.HttpClientFactoryOptions.HttpMessageHandlerBuilderActions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/HttpClientFactoryOptions.cs#L27C92-L27C96" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/HttpClientFactoryOptions.cs#L27C92-L27C96" }, { "DocsId": "P:Microsoft.Extensions.Http.HttpClientFactoryOptions.HttpClientActions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/HttpClientFactoryOptions.cs#L32C62-L32C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/HttpClientFactoryOptions.cs#L32C62-L32C66" }, { "DocsId": "P:Microsoft.Extensions.Http.HttpClientFactoryOptions.HandlerLifetime", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/HttpClientFactoryOptions.cs#L60C20-L60C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/HttpClientFactoryOptions.cs#L60C20-L60C36" }, { "DocsId": "P:Microsoft.Extensions.Http.HttpClientFactoryOptions.ShouldRedactHeaderValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/HttpClientFactoryOptions.cs#L75C61-L75C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/HttpClientFactoryOptions.cs#L75C61-L75C65" }, { "DocsId": "P:Microsoft.Extensions.Http.HttpClientFactoryOptions.SuppressHandlerScope", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/HttpClientFactoryOptions.cs#L102C44-L102C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/HttpClientFactoryOptions.cs#L102C44-L102C48" } ], "DocsId": "T:Microsoft.Extensions.Http.HttpClientFactoryOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/HttpClientFactoryOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/HttpClientFactoryOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Http.HttpMessageHandlerBuilder.Build", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/HttpMessageHandlerBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/HttpMessageHandlerBuilder.cs" }, { "DocsId": "M:Microsoft.Extensions.Http.HttpMessageHandlerBuilder.CreateHandlerPipeline(System.Net.Http.HttpMessageHandler,System.Collections.Generic.IEnumerable{System.Net.Http.DelegatingHandler})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/HttpMessageHandlerBuilder.cs#L83C13-L118C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/HttpMessageHandlerBuilder.cs#L83C13-L118C25" }, { "DocsId": "M:Microsoft.Extensions.Http.HttpMessageHandlerBuilder.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/HttpMessageHandlerBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/HttpMessageHandlerBuilder.cs" }, { "DocsId": "P:Microsoft.Extensions.Http.HttpMessageHandlerBuilder.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/HttpMessageHandlerBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/HttpMessageHandlerBuilder.cs" }, { "DocsId": "P:Microsoft.Extensions.Http.HttpMessageHandlerBuilder.PrimaryHandler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/HttpMessageHandlerBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/HttpMessageHandlerBuilder.cs" }, { "DocsId": "P:Microsoft.Extensions.Http.HttpMessageHandlerBuilder.AdditionalHandlers", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/HttpMessageHandlerBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/HttpMessageHandlerBuilder.cs" }, { "DocsId": "P:Microsoft.Extensions.Http.HttpMessageHandlerBuilder.Services", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/HttpMessageHandlerBuilder.cs#L55C52-L55C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/HttpMessageHandlerBuilder.cs#L55C52-L55C56" } ], "DocsId": "T:Microsoft.Extensions.Http.HttpMessageHandlerBuilder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/HttpMessageHandlerBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/HttpMessageHandlerBuilder.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Http.IHttpMessageHandlerBuilderFilter.Configure(System.Action{Microsoft.Extensions.Http.HttpMessageHandlerBuilder})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/IHttpMessageHandlerBuilderFilter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/IHttpMessageHandlerBuilderFilter.cs" } ], "DocsId": "T:Microsoft.Extensions.Http.IHttpMessageHandlerBuilderFilter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/IHttpMessageHandlerBuilderFilter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/IHttpMessageHandlerBuilderFilter.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Http.ITypedHttpClientFactory`1.CreateClient(System.Net.Http.HttpClient)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/ITypedHttpClientFactory.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/ITypedHttpClientFactory.cs" } ], "DocsId": "T:Microsoft.Extensions.Http.ITypedHttpClientFactory`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/ITypedHttpClientFactory.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/ITypedHttpClientFactory.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Http.Logging.IHttpClientAsyncLogger.LogRequestStartAsync(System.Net.Http.HttpRequestMessage,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/Logging/IHttpClientAsyncLogger.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/Logging/IHttpClientAsyncLogger.cs" }, { "DocsId": "M:Microsoft.Extensions.Http.Logging.IHttpClientAsyncLogger.LogRequestStopAsync(System.Object,System.Net.Http.HttpRequestMessage,System.Net.Http.HttpResponseMessage,System.TimeSpan,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/Logging/IHttpClientAsyncLogger.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/Logging/IHttpClientAsyncLogger.cs" }, { "DocsId": "M:Microsoft.Extensions.Http.Logging.IHttpClientAsyncLogger.LogRequestFailedAsync(System.Object,System.Net.Http.HttpRequestMessage,System.Net.Http.HttpResponseMessage,System.Exception,System.TimeSpan,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/Logging/IHttpClientAsyncLogger.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/Logging/IHttpClientAsyncLogger.cs" } ], "DocsId": "T:Microsoft.Extensions.Http.Logging.IHttpClientAsyncLogger", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/Logging/IHttpClientAsyncLogger.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/Logging/IHttpClientAsyncLogger.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Http.Logging.IHttpClientLogger.LogRequestStart(System.Net.Http.HttpRequestMessage)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/Logging/IHttpClientLogger.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/Logging/IHttpClientLogger.cs" }, { "DocsId": "M:Microsoft.Extensions.Http.Logging.IHttpClientLogger.LogRequestStop(System.Object,System.Net.Http.HttpRequestMessage,System.Net.Http.HttpResponseMessage,System.TimeSpan)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/Logging/IHttpClientLogger.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/Logging/IHttpClientLogger.cs" }, { "DocsId": "M:Microsoft.Extensions.Http.Logging.IHttpClientLogger.LogRequestFailed(System.Object,System.Net.Http.HttpRequestMessage,System.Net.Http.HttpResponseMessage,System.Exception,System.TimeSpan)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/Logging/IHttpClientLogger.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/Logging/IHttpClientLogger.cs" } ], "DocsId": "T:Microsoft.Extensions.Http.Logging.IHttpClientLogger", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/Logging/IHttpClientLogger.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/Logging/IHttpClientLogger.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.#ctor(Microsoft.Extensions.Logging.ILogger)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/Logging/LoggingHttpMessageHandler.cs#L28C9-L33C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/Logging/LoggingHttpMessageHandler.cs#L28C9-L33C10" }, { "DocsId": "M:Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.#ctor(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Http.HttpClientFactoryOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/Logging/LoggingHttpMessageHandler.cs#L41C9-L48C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/Logging/LoggingHttpMessageHandler.cs#L41C9-L48C10" }, { "DocsId": "M:Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(System.Net.Http.HttpRequestMessage,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/Logging/LoggingHttpMessageHandler.cs#L79C16-L79C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/Logging/LoggingHttpMessageHandler.cs#L79C16-L79C73" }, { "DocsId": "M:Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.Send(System.Net.Http.HttpRequestMessage,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/Logging/LoggingHttpMessageHandler.cs#L85C16-L85C99" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/Logging/LoggingHttpMessageHandler.cs#L85C16-L85C99" } ], "DocsId": "T:Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/Logging/LoggingHttpMessageHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/Logging/LoggingHttpMessageHandler.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.#ctor(Microsoft.Extensions.Logging.ILogger)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/Logging/LoggingScopeHttpMessageHandler.cs#L28C9-L33C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/Logging/LoggingScopeHttpMessageHandler.cs#L28C9-L33C10" }, { "DocsId": "M:Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.#ctor(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Http.HttpClientFactoryOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/Logging/LoggingScopeHttpMessageHandler.cs#L41C9-L48C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/Logging/LoggingScopeHttpMessageHandler.cs#L41C9-L48C10" }, { "DocsId": "M:Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(System.Net.Http.HttpRequestMessage,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/Logging/LoggingScopeHttpMessageHandler.cs#L81C16-L81C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/Logging/LoggingScopeHttpMessageHandler.cs#L81C16-L81C73" }, { "DocsId": "M:Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.Send(System.Net.Http.HttpRequestMessage,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/Logging/LoggingScopeHttpMessageHandler.cs#L87C16-L87C99" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/Logging/LoggingScopeHttpMessageHandler.cs#L87C16-L87C99" } ], "DocsId": "T:Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Http/src/Logging/LoggingScopeHttpMessageHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Http/src/Logging/LoggingScopeHttpMessageHandler.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Localization.Abstractions.json b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Localization.Abstractions.json index f40235f12ee..331fac7deb0 100644 --- a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Localization.Abstractions.json +++ b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Localization.Abstractions.json @@ -1,126 +1,125 @@ { "Assembly": "Microsoft.Extensions.Localization.Abstractions", - "GUID": "95A5EA7AD2E64C03BFA7DDDA81C28F1DFFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "69A40CA774CC4ADBAFAA8ED3429F4FC7FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.Localization.IStringLocalizer.GetAllStrings(System.Boolean)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Localization/Abstractions/src/IStringLocalizer.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Localization/Abstractions/src/IStringLocalizer.cs" }, { "DocsId": "P:Microsoft.Extensions.Localization.IStringLocalizer.Item(System.String)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Localization/Abstractions/src/IStringLocalizer.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Localization/Abstractions/src/IStringLocalizer.cs" }, { "DocsId": "P:Microsoft.Extensions.Localization.IStringLocalizer.Item(System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Localization/Abstractions/src/IStringLocalizer.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Localization/Abstractions/src/IStringLocalizer.cs" } ], "DocsId": "T:Microsoft.Extensions.Localization.IStringLocalizer", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Localization/Abstractions/src/IStringLocalizer.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Localization/Abstractions/src/IStringLocalizer.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Localization.IStringLocalizerFactory.Create(System.Type)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Localization/Abstractions/src/IStringLocalizerFactory.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Localization/Abstractions/src/IStringLocalizerFactory.cs" }, { "DocsId": "M:Microsoft.Extensions.Localization.IStringLocalizerFactory.Create(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Localization/Abstractions/src/IStringLocalizerFactory.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Localization/Abstractions/src/IStringLocalizerFactory.cs" } ], "DocsId": "T:Microsoft.Extensions.Localization.IStringLocalizerFactory", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Localization/Abstractions/src/IStringLocalizerFactory.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Localization/Abstractions/src/IStringLocalizerFactory.cs" }, { "Members": [], "DocsId": "T:Microsoft.Extensions.Localization.IStringLocalizer`1", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Localization/Abstractions/src/IStringLocalizerOfT.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Localization/Abstractions/src/IStringLocalizerOfT.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Localization.LocalizedString.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Localization/Abstractions/src/LocalizedString.cs#L21C11-L23C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Localization/Abstractions/src/LocalizedString.cs#L21C11-L23C6" }, { "DocsId": "M:Microsoft.Extensions.Localization.LocalizedString.#ctor(System.String,System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Localization/Abstractions/src/LocalizedString.cs#L32C11-L34C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Localization/Abstractions/src/LocalizedString.cs#L32C11-L34C6" }, { "DocsId": "M:Microsoft.Extensions.Localization.LocalizedString.#ctor(System.String,System.String,System.Boolean,System.String)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Localization/Abstractions/src/LocalizedString.cs#L43C5-L52C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Localization/Abstractions/src/LocalizedString.cs#L43C5-L52C6" }, { "DocsId": "M:Microsoft.Extensions.Localization.LocalizedString.op_Implicit(Microsoft.Extensions.Localization.LocalizedString)~System.String", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Localization/Abstractions/src/LocalizedString.cs#L61C9-L61C39" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Localization/Abstractions/src/LocalizedString.cs#L61C9-L61C39" }, { "DocsId": "M:Microsoft.Extensions.Localization.LocalizedString.ToString", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Localization/Abstractions/src/LocalizedString.cs#L88C42-L88C47" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Localization/Abstractions/src/LocalizedString.cs#L88C42-L88C47" }, { "DocsId": "P:Microsoft.Extensions.Localization.LocalizedString.Name", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Localization/Abstractions/src/LocalizedString.cs#L67C26-L67C30" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Localization/Abstractions/src/LocalizedString.cs#L67C26-L67C30" }, { "DocsId": "P:Microsoft.Extensions.Localization.LocalizedString.Value", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Localization/Abstractions/src/LocalizedString.cs#L72C27-L72C31" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Localization/Abstractions/src/LocalizedString.cs#L72C27-L72C31" }, { "DocsId": "P:Microsoft.Extensions.Localization.LocalizedString.ResourceNotFound", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Localization/Abstractions/src/LocalizedString.cs#L77C36-L77C40" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Localization/Abstractions/src/LocalizedString.cs#L77C36-L77C40" }, { "DocsId": "P:Microsoft.Extensions.Localization.LocalizedString.SearchedLocation", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Localization/Abstractions/src/LocalizedString.cs#L82C39-L82C43" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Localization/Abstractions/src/LocalizedString.cs#L82C39-L82C43" } ], "DocsId": "T:Microsoft.Extensions.Localization.LocalizedString", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Localization/Abstractions/src/LocalizedString.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Localization/Abstractions/src/LocalizedString.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Localization.StringLocalizerExtensions.GetString(Microsoft.Extensions.Localization.IStringLocalizer,System.String)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Localization/Abstractions/src/StringLocalizerExtensions.cs#L25C9-L28C38" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Localization/Abstractions/src/StringLocalizerExtensions.cs#L25C9-L28C38" }, { "DocsId": "M:Microsoft.Extensions.Localization.StringLocalizerExtensions.GetString(Microsoft.Extensions.Localization.IStringLocalizer,System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Localization/Abstractions/src/StringLocalizerExtensions.cs#L43C9-L46C49" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Localization/Abstractions/src/StringLocalizerExtensions.cs#L43C9-L46C49" }, { "DocsId": "M:Microsoft.Extensions.Localization.StringLocalizerExtensions.GetAllStrings(Microsoft.Extensions.Localization.IStringLocalizer)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Localization/Abstractions/src/StringLocalizerExtensions.cs#L56C9-L58C75" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Localization/Abstractions/src/StringLocalizerExtensions.cs#L56C9-L58C75" } ], "DocsId": "T:Microsoft.Extensions.Localization.StringLocalizerExtensions", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Localization/Abstractions/src/StringLocalizerExtensions.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Localization/Abstractions/src/StringLocalizerExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Localization.StringLocalizer`1.#ctor(Microsoft.Extensions.Localization.IStringLocalizerFactory)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Localization/Abstractions/src/StringLocalizerOfT.cs#L22C5-L27C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Localization/Abstractions/src/StringLocalizerOfT.cs#L22C5-L27C6" }, { "DocsId": "M:Microsoft.Extensions.Localization.StringLocalizer`1.GetAllStrings(System.Boolean)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Localization/Abstractions/src/StringLocalizerOfT.cs#L53C9-L53C56" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Localization/Abstractions/src/StringLocalizerOfT.cs#L53C9-L53C56" }, { "DocsId": "P:Microsoft.Extensions.Localization.StringLocalizer`1.Item(System.String)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Localization/Abstractions/src/StringLocalizerOfT.cs#L34C13-L36C37" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Localization/Abstractions/src/StringLocalizerOfT.cs#L34C13-L36C37" }, { "DocsId": "P:Microsoft.Extensions.Localization.StringLocalizer`1.Item(System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Localization/Abstractions/src/StringLocalizerOfT.cs#L45C13-L47C48" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Localization/Abstractions/src/StringLocalizerOfT.cs#L45C13-L47C48" } ], "DocsId": "T:Microsoft.Extensions.Localization.StringLocalizer`1", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Localization/Abstractions/src/StringLocalizerOfT.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Localization/Abstractions/src/StringLocalizerOfT.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Localization.json b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Localization.json index 3c28710f6f8..c863e936e27 100644 --- a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Localization.json +++ b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Localization.json @@ -1,163 +1,162 @@ { "Assembly": "Microsoft.Extensions.Localization", - "GUID": "769D2160290A4CC4AD3F6F2EFE724E18FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "FCEAA0BA7A784B269851764E79DC2641FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.LocalizationServiceCollectionExtensions.AddLocalization(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Localization/Localization/src/LocalizationServiceCollectionExtensions.cs#L23C9-L29C25" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Localization/Localization/src/LocalizationServiceCollectionExtensions.cs#L23C9-L29C25" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.LocalizationServiceCollectionExtensions.AddLocalization(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{Microsoft.Extensions.Localization.LocalizationOptions})", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Localization/Localization/src/LocalizationServiceCollectionExtensions.cs#L44C9-L51C25" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Localization/Localization/src/LocalizationServiceCollectionExtensions.cs#L44C9-L51C25" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.LocalizationServiceCollectionExtensions", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Localization/Localization/src/LocalizationServiceCollectionExtensions.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Localization/Localization/src/LocalizationServiceCollectionExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Localization.IResourceNamesCache.GetOrAdd(System.String,System.Func{System.String,System.Collections.Generic.IList{System.String}})", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Localization/Localization/src/IResourceNamesCache.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Localization/Localization/src/IResourceNamesCache.cs" } ], "DocsId": "T:Microsoft.Extensions.Localization.IResourceNamesCache", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Localization/Localization/src/IResourceNamesCache.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Localization/Localization/src/IResourceNamesCache.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Localization.LocalizationOptions.#ctor", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Localization/Localization/src/LocalizationOptions.cs#L20C49-L15C8" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Localization/Localization/src/LocalizationOptions.cs#L20C49-L15C8" }, { "DocsId": "P:Microsoft.Extensions.Localization.LocalizationOptions.ResourcesPath", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Localization/Localization/src/LocalizationOptions.cs#L20C35-L20C39" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Localization/Localization/src/LocalizationOptions.cs#L20C35-L20C39" } ], "DocsId": "T:Microsoft.Extensions.Localization.LocalizationOptions", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Localization/Localization/src/LocalizationOptions.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Localization/Localization/src/LocalizationOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Localization.ResourceLocationAttribute.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Localization/Localization/src/ResourceLocationAttribute.cs#L19C5-L24C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Localization/Localization/src/ResourceLocationAttribute.cs#L19C5-L24C6" }, { "DocsId": "P:Microsoft.Extensions.Localization.ResourceLocationAttribute.ResourceLocation", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Localization/Localization/src/ResourceLocationAttribute.cs#L29C38-L29C42" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Localization/Localization/src/ResourceLocationAttribute.cs#L29C38-L29C42" } ], "DocsId": "T:Microsoft.Extensions.Localization.ResourceLocationAttribute", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Localization/Localization/src/ResourceLocationAttribute.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Localization/Localization/src/ResourceLocationAttribute.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.#ctor(System.Resources.ResourceManager,System.Reflection.Assembly,System.String,Microsoft.Extensions.Localization.IResourceNamesCache,Microsoft.Extensions.Logging.ILogger)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Localization/Localization/src/ResourceManagerStringLocalizer.cs#L44C11-L51C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Localization/Localization/src/ResourceManagerStringLocalizer.cs#L44C11-L51C6" }, { "DocsId": "M:Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetAllStrings(System.Boolean)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Localization/Localization/src/ResourceManagerStringLocalizer.cs#L127C9-L127C75" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Localization/Localization/src/ResourceManagerStringLocalizer.cs#L127C9-L127C75" }, { "DocsId": "M:Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetAllStrings(System.Boolean,System.Globalization.CultureInfo)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Localization/Localization/src/ResourceManagerStringLocalizer.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Localization/Localization/src/ResourceManagerStringLocalizer.cs" }, { "DocsId": "M:Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetStringSafely(System.String,System.Globalization.CultureInfo)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Localization/Localization/src/ResourceManagerStringLocalizer.cs#L159C9-L181C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Localization/Localization/src/ResourceManagerStringLocalizer.cs#L159C9-L181C6" }, { "DocsId": "P:Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.Item(System.String)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Localization/Localization/src/ResourceManagerStringLocalizer.cs#L103C13-L107C131" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Localization/Localization/src/ResourceManagerStringLocalizer.cs#L103C13-L107C131" }, { "DocsId": "P:Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.Item(System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Localization/Localization/src/ResourceManagerStringLocalizer.cs#L116C13-L121C124" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Localization/Localization/src/ResourceManagerStringLocalizer.cs#L116C13-L121C124" } ], "DocsId": "T:Microsoft.Extensions.Localization.ResourceManagerStringLocalizer", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Localization/Localization/src/ResourceManagerStringLocalizer.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Localization/Localization/src/ResourceManagerStringLocalizer.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Localization.ResourceManagerStringLocalizerFactory.#ctor(Microsoft.Extensions.Options.IOptions{Microsoft.Extensions.Localization.LocalizationOptions},Microsoft.Extensions.Logging.ILoggerFactory)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Localization/Localization/src/ResourceManagerStringLocalizerFactory.cs#L25C5-L51C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Localization/Localization/src/ResourceManagerStringLocalizerFactory.cs#L25C5-L51C6" }, { "DocsId": "M:Microsoft.Extensions.Localization.ResourceManagerStringLocalizerFactory.GetResourcePrefix(System.Reflection.TypeInfo)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Localization/Localization/src/ResourceManagerStringLocalizerFactory.cs#L60C9-L62C117" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Localization/Localization/src/ResourceManagerStringLocalizerFactory.cs#L60C9-L62C117" }, { "DocsId": "M:Microsoft.Extensions.Localization.ResourceManagerStringLocalizerFactory.GetResourcePrefix(System.Reflection.TypeInfo,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Localization/Localization/src/ResourceManagerStringLocalizerFactory.cs#L78C9-L90C117" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Localization/Localization/src/ResourceManagerStringLocalizerFactory.cs#L78C9-L90C117" }, { "DocsId": "M:Microsoft.Extensions.Localization.ResourceManagerStringLocalizerFactory.GetResourcePrefix(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Localization/Localization/src/ResourceManagerStringLocalizerFactory.cs#L102C9-L113C33" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Localization/Localization/src/ResourceManagerStringLocalizerFactory.cs#L102C9-L113C33" }, { "DocsId": "M:Microsoft.Extensions.Localization.ResourceManagerStringLocalizerFactory.Create(System.Type)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Localization/Localization/src/ResourceManagerStringLocalizerFactory.cs#L124C9-L138C26" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Localization/Localization/src/ResourceManagerStringLocalizerFactory.cs#L124C9-L138C26" }, { "DocsId": "M:Microsoft.Extensions.Localization.ResourceManagerStringLocalizerFactory.Create(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Localization/Localization/src/ResourceManagerStringLocalizerFactory.cs#L149C9-L159C12" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Localization/Localization/src/ResourceManagerStringLocalizerFactory.cs#L16707566C0-L159C12" }, { "DocsId": "M:Microsoft.Extensions.Localization.ResourceManagerStringLocalizerFactory.CreateResourceManagerStringLocalizer(System.Reflection.Assembly,System.String)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Localization/Localization/src/ResourceManagerStringLocalizerFactory.cs#L171C9-L176C76" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Localization/Localization/src/ResourceManagerStringLocalizerFactory.cs#L171C9-L176C76" }, { "DocsId": "M:Microsoft.Extensions.Localization.ResourceManagerStringLocalizerFactory.GetResourcePrefix(System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Localization/Localization/src/ResourceManagerStringLocalizerFactory.cs#L189C9-L189C89" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Localization/Localization/src/ResourceManagerStringLocalizerFactory.cs#L189C9-L189C89" }, { "DocsId": "M:Microsoft.Extensions.Localization.ResourceManagerStringLocalizerFactory.GetResourceLocationAttribute(System.Reflection.Assembly)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Localization/Localization/src/ResourceManagerStringLocalizerFactory.cs#L198C9-L198C73" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Localization/Localization/src/ResourceManagerStringLocalizerFactory.cs#L198C9-L198C73" }, { "DocsId": "M:Microsoft.Extensions.Localization.ResourceManagerStringLocalizerFactory.GetRootNamespaceAttribute(System.Reflection.Assembly)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Localization/Localization/src/ResourceManagerStringLocalizerFactory.cs#L207C9-L207C70" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Localization/Localization/src/ResourceManagerStringLocalizerFactory.cs#L207C9-L207C70" } ], "DocsId": "T:Microsoft.Extensions.Localization.ResourceManagerStringLocalizerFactory", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Localization/Localization/src/ResourceManagerStringLocalizerFactory.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Localization/Localization/src/ResourceManagerStringLocalizerFactory.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Localization.ResourceNamesCache.#ctor", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Localization/Localization/src/ResourceNamesCache.cs#L15C5-L22C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Localization/Localization/src/ResourceNamesCache.cs#L15C5-L22C6" }, { "DocsId": "M:Microsoft.Extensions.Localization.ResourceNamesCache.GetOrAdd(System.String,System.Func{System.String,System.Collections.Generic.IList{System.String}})", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Localization/Localization/src/ResourceNamesCache.cs#L27C9-L27C52" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Localization/Localization/src/ResourceNamesCache.cs#L27C9-L27C52" } ], "DocsId": "T:Microsoft.Extensions.Localization.ResourceNamesCache", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Localization/Localization/src/ResourceNamesCache.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Localization/Localization/src/ResourceNamesCache.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Localization.RootNamespaceAttribute.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Localization/Localization/src/RootNamespaceAttribute.cs#L20C5-L25C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Localization/Localization/src/RootNamespaceAttribute.cs#L20C5-L25C6" }, { "DocsId": "P:Microsoft.Extensions.Localization.RootNamespaceAttribute.RootNamespace", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Localization/Localization/src/RootNamespaceAttribute.cs#L31C35-L31C39" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Localization/Localization/src/RootNamespaceAttribute.cs#L31C35-L31C39" } ], "DocsId": "T:Microsoft.Extensions.Localization.RootNamespaceAttribute", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Localization/Localization/src/RootNamespaceAttribute.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Localization/Localization/src/RootNamespaceAttribute.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Logging.Abstractions.json b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Logging.Abstractions.json index 7da8872fdd9..8a1d1bd0536 100644 --- a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Logging.Abstractions.json +++ b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Logging.Abstractions.json @@ -1,624 +1,623 @@ { "Assembly": "Microsoft.Extensions.Logging.Abstractions", - "GUID": "A14D366FEE0843BE8352672D54004ABCFFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "04D6322A772349FE98E7C8D1BD639BF1FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.EventId.op_Implicit(System.Int32)~Microsoft.Extensions.Logging.EventId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/EventId.cs#L20C13-L20C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/EventId.cs#L20C13-L20C35" }, { "DocsId": "M:Microsoft.Extensions.Logging.EventId.op_Equality(Microsoft.Extensions.Logging.EventId,Microsoft.Extensions.Logging.EventId)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/EventId.cs#L31C13-L31C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/EventId.cs#L31C13-L31C39" }, { "DocsId": "M:Microsoft.Extensions.Logging.EventId.op_Inequality(Microsoft.Extensions.Logging.EventId,Microsoft.Extensions.Logging.EventId)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/EventId.cs#L42C13-L42C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/EventId.cs#L42C13-L42C40" }, { "DocsId": "M:Microsoft.Extensions.Logging.EventId.#ctor(System.Int32,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/EventId.cs#L52C13-L54C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/EventId.cs#L52C13-L54C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.EventId.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/EventId.cs#L69C13-L69C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/EventId.cs#L69C13-L69C42" }, { "DocsId": "M:Microsoft.Extensions.Logging.EventId.Equals(Microsoft.Extensions.Logging.EventId)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/EventId.cs#L79C13-L79C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/EventId.cs#L79C13-L79C35" }, { "DocsId": "M:Microsoft.Extensions.Logging.EventId.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/EventId.cs#L85C13-L90C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/EventId.cs#L85C13-L90C62" }, { "DocsId": "M:Microsoft.Extensions.Logging.EventId.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/EventId.cs#L96C13-L96C23" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/EventId.cs#L96C13-L96C23" }, { "DocsId": "P:Microsoft.Extensions.Logging.EventId.Id", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/EventId.cs#L59C25-L59C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/EventId.cs#L59C25-L59C29" }, { "DocsId": "P:Microsoft.Extensions.Logging.EventId.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/EventId.cs#L64C31-L64C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/EventId.cs#L64C31-L64C35" } ], "DocsId": "T:Microsoft.Extensions.Logging.EventId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/EventId.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/EventId.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.IExternalScopeProvider.ForEachScope``1(System.Action{System.Object,``0},``0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/IExternalScopeProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/IExternalScopeProvider.cs" }, { "DocsId": "M:Microsoft.Extensions.Logging.IExternalScopeProvider.Push(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/IExternalScopeProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/IExternalScopeProvider.cs" } ], "DocsId": "T:Microsoft.Extensions.Logging.IExternalScopeProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/IExternalScopeProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/IExternalScopeProvider.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.ILogger.Log``1(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,``0,System.Exception,System.Func{``0,System.Exception,System.String})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/ILogger.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/ILogger.cs" }, { "DocsId": "M:Microsoft.Extensions.Logging.ILogger.IsEnabled(Microsoft.Extensions.Logging.LogLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/ILogger.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/ILogger.cs" }, { "DocsId": "M:Microsoft.Extensions.Logging.ILogger.BeginScope``1(``0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/ILogger.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/ILogger.cs" } ], "DocsId": "T:Microsoft.Extensions.Logging.ILogger", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/ILogger.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/ILogger.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.ILoggerFactory.CreateLogger(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/ILoggerFactory.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/ILoggerFactory.cs" }, { "DocsId": "M:Microsoft.Extensions.Logging.ILoggerFactory.AddProvider(Microsoft.Extensions.Logging.ILoggerProvider)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/ILoggerFactory.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/ILoggerFactory.cs" } ], "DocsId": "T:Microsoft.Extensions.Logging.ILoggerFactory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/ILoggerFactory.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/ILoggerFactory.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.ILoggerProvider.CreateLogger(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/ILoggerProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/ILoggerProvider.cs" } ], "DocsId": "T:Microsoft.Extensions.Logging.ILoggerProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/ILoggerProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/ILoggerProvider.cs" }, { "Members": [], "DocsId": "T:Microsoft.Extensions.Logging.ILogger`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/ILoggerT.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/ILoggerT.cs" }, { "Members": [ { "DocsId": "P:Microsoft.Extensions.Logging.ILoggingBuilder.Services", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/ILoggingBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/ILoggingBuilder.cs" } ], "DocsId": "T:Microsoft.Extensions.Logging.ILoggingBuilder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/ILoggingBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/ILoggingBuilder.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.ISupportExternalScope.SetScopeProvider(Microsoft.Extensions.Logging.IExternalScopeProvider)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/ISupportExternalScope.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/ISupportExternalScope.cs" } ], "DocsId": "T:Microsoft.Extensions.Logging.ISupportExternalScope", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/ISupportExternalScope.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/ISupportExternalScope.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.LogDefineOptions.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LogDefineOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LogDefineOptions.cs" }, { "DocsId": "P:Microsoft.Extensions.Logging.LogDefineOptions.SkipEnabledCheck", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LogDefineOptions.cs#L16C40-L16C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LogDefineOptions.cs#L16C40-L16C44" } ], "DocsId": "T:Microsoft.Extensions.Logging.LogDefineOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LogDefineOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LogDefineOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.LoggerExtensions.LogDebug(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.Exception,System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L28C13-L29C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L28C13-L29C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerExtensions.LogDebug(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L41C13-L42C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L41C13-L42C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerExtensions.LogDebug(Microsoft.Extensions.Logging.ILogger,System.Exception,System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L54C13-L55C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L54C13-L55C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerExtensions.LogDebug(Microsoft.Extensions.Logging.ILogger,System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L66C13-L67C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L66C13-L67C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerExtensions.LogTrace(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.Exception,System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L82C13-L83C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L82C13-L83C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerExtensions.LogTrace(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L95C13-L96C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L95C13-L96C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerExtensions.LogTrace(Microsoft.Extensions.Logging.ILogger,System.Exception,System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L108C13-L109C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L108C13-L109C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerExtensions.LogTrace(Microsoft.Extensions.Logging.ILogger,System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L120C13-L121C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L120C13-L121C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerExtensions.LogInformation(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.Exception,System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L136C13-L137C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L136C13-L137C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerExtensions.LogInformation(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L149C13-L150C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L149C13-L150C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerExtensions.LogInformation(Microsoft.Extensions.Logging.ILogger,System.Exception,System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L162C13-L163C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L162C13-L163C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerExtensions.LogInformation(Microsoft.Extensions.Logging.ILogger,System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L174C13-L175C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L174C13-L175C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerExtensions.LogWarning(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.Exception,System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L190C13-L191C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L190C13-L191C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerExtensions.LogWarning(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L203C13-L204C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L203C13-L204C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerExtensions.LogWarning(Microsoft.Extensions.Logging.ILogger,System.Exception,System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L216C13-L217C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L216C13-L217C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerExtensions.LogWarning(Microsoft.Extensions.Logging.ILogger,System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L228C13-L229C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L228C13-L229C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerExtensions.LogError(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.Exception,System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L244C13-L245C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L244C13-L245C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerExtensions.LogError(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L257C13-L258C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L257C13-L258C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerExtensions.LogError(Microsoft.Extensions.Logging.ILogger,System.Exception,System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L270C13-L271C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L270C13-L271C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerExtensions.LogError(Microsoft.Extensions.Logging.ILogger,System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L282C13-L283C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L282C13-L283C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerExtensions.LogCritical(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.Exception,System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L298C13-L299C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L298C13-L299C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerExtensions.LogCritical(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L311C13-L312C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L311C13-L312C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerExtensions.LogCritical(Microsoft.Extensions.Logging.ILogger,System.Exception,System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L324C13-L325C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L324C13-L325C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerExtensions.LogCritical(Microsoft.Extensions.Logging.ILogger,System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L336C13-L337C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L336C13-L337C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerExtensions.Log(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.LogLevel,System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L348C13-L349C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L348C13-L349C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerExtensions.Log(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L361C13-L362C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L361C13-L362C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerExtensions.Log(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.LogLevel,System.Exception,System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L374C13-L375C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L374C13-L375C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerExtensions.Log(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.Exception,System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L388C13-L391C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L388C13-L391C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerExtensions.BeginScope(Microsoft.Extensions.Logging.ILogger,System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L412C13-L414C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs#L412C13-L414C83" } ], "DocsId": "T:Microsoft.Extensions.Logging.LoggerExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.LoggerExternalScopeProvider.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExternalScopeProvider.cs#L14C9-L20C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExternalScopeProvider.cs#L14C9-L20C12" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerExternalScopeProvider.ForEachScope``1(System.Action{System.Object,``0},``0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExternalScopeProvider.cs#L34C13-L35C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExternalScopeProvider.cs#L16707566C0-L35C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerExternalScopeProvider.Push(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExternalScopeProvider.cs#L40C13-L44C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExternalScopeProvider.cs#L40C13-L44C29" } ], "DocsId": "T:Microsoft.Extensions.Logging.LoggerExternalScopeProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExternalScopeProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerExternalScopeProvider.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.LoggerFactoryExtensions.CreateLogger``1(Microsoft.Extensions.Logging.ILoggerFactory)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerFactoryExtensions.cs#L22C13-L24C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerFactoryExtensions.cs#L22C13-L24C43" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerFactoryExtensions.CreateLogger(Microsoft.Extensions.Logging.ILoggerFactory,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerFactoryExtensions.cs#L34C13-L37C141" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerFactoryExtensions.cs#L34C13-L37C141" } ], "DocsId": "T:Microsoft.Extensions.Logging.LoggerFactoryExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerFactoryExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerFactoryExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessage.DefineScope(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessage.cs#L23C13-L27C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessage.cs#L16707566C0-L27C59" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessage.DefineScope``1(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessage.cs#L38C13-L40C92" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessage.cs#L16707566C0-L40C92" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessage.DefineScope``2(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessage.cs#L52C13-L54C108" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessage.cs#L16707566C0-L54C108" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessage.DefineScope``3(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessage.cs#L67C13-L69C124" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessage.cs#L16707566C0-L69C124" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessage.DefineScope``4(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessage.cs#L83C13-L85C140" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessage.cs#L16707566C0-L85C140" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessage.DefineScope``5(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessage.cs#L100C13-L102C156" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessage.cs#L16707566C0-L102C156" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessage.DefineScope``6(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessage.cs#L118C13-L120C172" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessage.cs#L16707566C0-L120C172" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessage.Define(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessage.cs#L131C16-L131C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessage.cs#L131C16-L131C70" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessage.Define(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.String,Microsoft.Extensions.Logging.LogDefineOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessage.cs#L143C13-L161C15" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessage.cs#L16707566C0-L161C15" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessage.Define``1(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessage.cs#L173C16-L173C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessage.cs#L173C16-L173C74" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessage.Define``1(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.String,Microsoft.Extensions.Logging.LogDefineOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessage.cs#L186C13-L204C15" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessage.cs#L16707566C0-L204C15" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessage.Define``2(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessage.cs#L217C16-L217C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessage.cs#L217C16-L217C78" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessage.Define``2(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.String,Microsoft.Extensions.Logging.LogDefineOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessage.cs#L231C13-L249C15" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessage.cs#L16707566C0-L249C15" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessage.Define``3(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessage.cs#L263C16-L263C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessage.cs#L263C16-L263C82" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessage.Define``3(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.String,Microsoft.Extensions.Logging.LogDefineOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessage.cs#L278C13-L296C15" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessage.cs#L16707566C0-L296C15" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessage.Define``4(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessage.cs#L311C16-L311C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessage.cs#L311C16-L311C86" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessage.Define``4(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.String,Microsoft.Extensions.Logging.LogDefineOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessage.cs#L327C13-L345C15" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessage.cs#L16707566C0-L345C15" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessage.Define``5(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessage.cs#L361C16-L361C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessage.cs#L361C16-L361C90" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessage.Define``5(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.String,Microsoft.Extensions.Logging.LogDefineOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessage.cs#L378C13-L396C15" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessage.cs#L16707566C0-L396C15" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessage.Define``6(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessage.cs#L413C16-L413C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessage.cs#L413C16-L413C94" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessage.Define``6(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.String,Microsoft.Extensions.Logging.LogDefineOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessage.cs#L431C13-L449C15" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessage.cs#L16707566C0-L449C15" } ], "DocsId": "T:Microsoft.Extensions.Logging.LoggerMessage", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessage.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessage.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessageAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessageAttribute.cs#L89C44-L38C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessageAttribute.cs#L89C44-L38C44" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessageAttribute.#ctor(System.Int32,Microsoft.Extensions.Logging.LogLevel,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessageAttribute.cs#L89C44-L52C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessageAttribute.cs#L89C44-L52C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessageAttribute.#ctor(Microsoft.Extensions.Logging.LogLevel,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessageAttribute.cs#L89C44-L64C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessageAttribute.cs#L89C44-L64C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessageAttribute.#ctor(Microsoft.Extensions.Logging.LogLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessageAttribute.cs#L89C44-L74C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessageAttribute.cs#L89C44-L74C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessageAttribute.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessageAttribute.cs#L89C44-L84C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessageAttribute.cs#L89C44-L84C10" }, { "DocsId": "P:Microsoft.Extensions.Logging.LoggerMessageAttribute.EventId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessageAttribute.cs#L89C30-L89C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessageAttribute.cs#L89C30-L89C34" }, { "DocsId": "P:Microsoft.Extensions.Logging.LoggerMessageAttribute.EventName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessageAttribute.cs#L97C36-L97C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessageAttribute.cs#L97C36-L97C40" }, { "DocsId": "P:Microsoft.Extensions.Logging.LoggerMessageAttribute.Level", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessageAttribute.cs#L102C33-L102C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessageAttribute.cs#L102C33-L102C37" }, { "DocsId": "P:Microsoft.Extensions.Logging.LoggerMessageAttribute.Message", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessageAttribute.cs#L107C33-L107C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessageAttribute.cs#L107C33-L107C37" }, { "DocsId": "P:Microsoft.Extensions.Logging.LoggerMessageAttribute.SkipEnabledCheck", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessageAttribute.cs#L112C40-L112C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessageAttribute.cs#L112C40-L112C44" } ], "DocsId": "T:Microsoft.Extensions.Logging.LoggerMessageAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessageAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessageAttribute.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.Logger`1.#ctor(Microsoft.Extensions.Logging.ILoggerFactory)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerT.cs#L25C9-L30C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerT.cs#L25C9-L30C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.Logger`1.Microsoft#Extensions#Logging#ILogger#BeginScope``1(``0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerT.cs#L35C13-L35C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerT.cs#L35C13-L35C46" }, { "DocsId": "M:Microsoft.Extensions.Logging.Logger`1.Microsoft#Extensions#Logging#ILogger#IsEnabled(Microsoft.Extensions.Logging.LogLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerT.cs#L41C13-L41C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerT.cs#L41C13-L41C48" }, { "DocsId": "M:Microsoft.Extensions.Logging.Logger`1.Microsoft#Extensions#Logging#ILogger#Log``1(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,``0,System.Exception,System.Func{``0,System.Exception,System.String})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerT.cs#L47C13-L48C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerT.cs#L47C13-L48C10" } ], "DocsId": "T:Microsoft.Extensions.Logging.Logger`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerT.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerT.cs" }, { "Members": [ { "DocsId": "F:Microsoft.Extensions.Logging.LogLevel.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LogLevel.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LogLevel.cs" }, { "DocsId": "F:Microsoft.Extensions.Logging.LogLevel.Trace", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LogLevel.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LogLevel.cs" }, { "DocsId": "F:Microsoft.Extensions.Logging.LogLevel.Debug", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LogLevel.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LogLevel.cs" }, { "DocsId": "F:Microsoft.Extensions.Logging.LogLevel.Information", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LogLevel.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LogLevel.cs" }, { "DocsId": "F:Microsoft.Extensions.Logging.LogLevel.Warning", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LogLevel.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LogLevel.cs" }, { "DocsId": "F:Microsoft.Extensions.Logging.LogLevel.Error", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LogLevel.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LogLevel.cs" }, { "DocsId": "F:Microsoft.Extensions.Logging.LogLevel.Critical", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LogLevel.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LogLevel.cs" }, { "DocsId": "F:Microsoft.Extensions.Logging.LogLevel.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LogLevel.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LogLevel.cs" } ], "DocsId": "T:Microsoft.Extensions.Logging.LogLevel", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LogLevel.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LogLevel.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.Abstractions.LogEntry`1.#ctor(Microsoft.Extensions.Logging.LogLevel,System.String,Microsoft.Extensions.Logging.EventId,`0,System.Exception,System.Func{`0,System.Exception,System.String})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LogEntry.cs#L24C13-L30C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LogEntry.cs#L24C13-L30C10" }, { "DocsId": "P:Microsoft.Extensions.Logging.Abstractions.LogEntry`1.LogLevel", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LogEntry.cs#L35C36-L35C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LogEntry.cs#L35C36-L35C40" }, { "DocsId": "P:Microsoft.Extensions.Logging.Abstractions.LogEntry`1.Category", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LogEntry.cs#L40C34-L40C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LogEntry.cs#L40C34-L40C38" }, { "DocsId": "P:Microsoft.Extensions.Logging.Abstractions.LogEntry`1.EventId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LogEntry.cs#L45C34-L45C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LogEntry.cs#L45C34-L45C38" }, { "DocsId": "P:Microsoft.Extensions.Logging.Abstractions.LogEntry`1.State", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LogEntry.cs#L50C31-L50C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LogEntry.cs#L50C31-L50C35" }, { "DocsId": "P:Microsoft.Extensions.Logging.Abstractions.LogEntry`1.Exception", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LogEntry.cs#L55C39-L55C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LogEntry.cs#L55C39-L55C43" }, { "DocsId": "P:Microsoft.Extensions.Logging.Abstractions.LogEntry`1.Formatter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LogEntry.cs#L60C61-L60C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LogEntry.cs#L60C61-L60C65" } ], "DocsId": "T:Microsoft.Extensions.Logging.Abstractions.LogEntry`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LogEntry.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LogEntry.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.Abstractions.NullLogger.BeginScope``1(``0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/NullLogger.cs#L28C13-L28C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/NullLogger.cs#L28C13-L28C39" }, { "DocsId": "M:Microsoft.Extensions.Logging.Abstractions.NullLogger.IsEnabled(Microsoft.Extensions.Logging.LogLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/NullLogger.cs#L34C13-L34C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/NullLogger.cs#L34C13-L34C26" }, { "DocsId": "M:Microsoft.Extensions.Logging.Abstractions.NullLogger.Log``1(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,``0,System.Exception,System.Func{``0,System.Exception,System.String})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/NullLogger.cs#L40C9-L40C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/NullLogger.cs#L40C9-L40C10" }, { "DocsId": "P:Microsoft.Extensions.Logging.Abstractions.NullLogger.Instance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/NullLogger.cs#L16C45-L16C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/NullLogger.cs#L16C45-L16C49" } ], "DocsId": "T:Microsoft.Extensions.Logging.Abstractions.NullLogger", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/NullLogger.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/NullLogger.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.Abstractions.NullLoggerFactory.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/NullLoggerFactory.cs#L15C9-L15C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/NullLoggerFactory.cs#L15C9-L15C39" }, { "DocsId": "M:Microsoft.Extensions.Logging.Abstractions.NullLoggerFactory.CreateLogger(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/NullLoggerFactory.cs#L28C13-L28C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/NullLoggerFactory.cs#L28C13-L28C40" }, { "DocsId": "M:Microsoft.Extensions.Logging.Abstractions.NullLoggerFactory.AddProvider(Microsoft.Extensions.Logging.ILoggerProvider)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/NullLoggerFactory.cs#L37C9-L37C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/NullLoggerFactory.cs#L37C9-L37C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.Abstractions.NullLoggerFactory.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/NullLoggerFactory.cs#L42C9-L42C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/NullLoggerFactory.cs#L42C9-L42C10" }, { "DocsId": "F:Microsoft.Extensions.Logging.Abstractions.NullLoggerFactory.Instance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/NullLoggerFactory.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/NullLoggerFactory.cs" } ], "DocsId": "T:Microsoft.Extensions.Logging.Abstractions.NullLoggerFactory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/NullLoggerFactory.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/NullLoggerFactory.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.Abstractions.NullLoggerProvider.CreateLogger(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/NullLoggerProvider.cs#L23C13-L23C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/NullLoggerProvider.cs#L23C13-L23C40" }, { "DocsId": "M:Microsoft.Extensions.Logging.Abstractions.NullLoggerProvider.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/NullLoggerProvider.cs#L29C9-L29C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/NullLoggerProvider.cs#L29C9-L29C10" }, { "DocsId": "P:Microsoft.Extensions.Logging.Abstractions.NullLoggerProvider.Instance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/NullLoggerProvider.cs#L14C53-L14C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/NullLoggerProvider.cs#L14C53-L14C57" } ], "DocsId": "T:Microsoft.Extensions.Logging.Abstractions.NullLoggerProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/NullLoggerProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/NullLoggerProvider.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.Abstractions.NullLogger`1.BeginScope``1(``0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/NullLoggerT.cs#L22C13-L22C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/NullLoggerT.cs#L22C13-L22C39" }, { "DocsId": "M:Microsoft.Extensions.Logging.Abstractions.NullLogger`1.Log``1(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,``0,System.Exception,System.Func{``0,System.Exception,System.String})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/NullLoggerT.cs#L36C9-L36C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/NullLoggerT.cs#L36C9-L36C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.Abstractions.NullLogger`1.IsEnabled(Microsoft.Extensions.Logging.LogLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/NullLoggerT.cs#L41C13-L41C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/NullLoggerT.cs#L41C13-L41C26" }, { "DocsId": "M:Microsoft.Extensions.Logging.Abstractions.NullLogger`1.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/NullLoggerT.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/NullLoggerT.cs" }, { "DocsId": "F:Microsoft.Extensions.Logging.Abstractions.NullLogger`1.Instance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/NullLoggerT.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/NullLoggerT.cs" } ], "DocsId": "T:Microsoft.Extensions.Logging.Abstractions.NullLogger`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/NullLoggerT.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/NullLoggerT.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Logging.AzureAppServices.json b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Logging.AzureAppServices.json index 16d09e46f53..f6206ce809a 100644 --- a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Logging.AzureAppServices.json +++ b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Logging.AzureAppServices.json @@ -1,159 +1,158 @@ { "Assembly": "Microsoft.Extensions.Logging.AzureAppServices", - "GUID": "EB24FBF0C9374D13A94F537B12D048BFFFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "877C064154D74FE49A3F107CFAE61289FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.AzureAppServicesLoggerFactoryExtensions.AddAzureWebAppDiagnostics(Microsoft.Extensions.Logging.ILoggingBuilder)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Logging.AzureAppServices/src/AzureAppServicesLoggerFactoryExtensions.cs#L27C9-L30C70" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Logging.AzureAppServices/src/AzureAppServicesLoggerFactoryExtensions.cs#L27C9-L30C70" }, { "DocsId": "M:Microsoft.Extensions.Logging.AzureAppServicesLoggerFactoryExtensions.AddAzureWebAppDiagnostics(Microsoft.Extensions.Logging.ILoggingBuilder,System.Action{Microsoft.Extensions.Logging.AzureAppServices.AzureBlobLoggerOptions})", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Logging.AzureAppServices/src/AzureAppServicesLoggerFactoryExtensions.cs#L41C9-L44C88" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Logging.AzureAppServices/src/AzureAppServicesLoggerFactoryExtensions.cs#L41C9-L44C88" } ], "DocsId": "T:Microsoft.Extensions.Logging.AzureAppServicesLoggerFactoryExtensions", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Logging.AzureAppServices/src/AzureAppServicesLoggerFactoryExtensions.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Logging.AzureAppServices/src/AzureAppServicesLoggerFactoryExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.AzureAppServices.AzureBlobLoggerContext.#ctor(System.String,System.String,System.DateTimeOffset)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Logging.AzureAppServices/src/AzureBlobLoggerContext.cs#L21C9-L24C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Logging.AzureAppServices/src/AzureBlobLoggerContext.cs#L21C9-L24C6" }, { "DocsId": "P:Microsoft.Extensions.Logging.AzureAppServices.AzureBlobLoggerContext.AppName", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Logging.AzureAppServices/src/AzureBlobLoggerContext.cs#L29C29-L29C33" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Logging.AzureAppServices/src/AzureBlobLoggerContext.cs#L29C29-L29C33" }, { "DocsId": "P:Microsoft.Extensions.Logging.AzureAppServices.AzureBlobLoggerContext.Identifier", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Logging.AzureAppServices/src/AzureBlobLoggerContext.cs#L34C32-L34C36" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Logging.AzureAppServices/src/AzureBlobLoggerContext.cs#L34C32-L34C36" }, { "DocsId": "P:Microsoft.Extensions.Logging.AzureAppServices.AzureBlobLoggerContext.Timestamp", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Logging.AzureAppServices/src/AzureBlobLoggerContext.cs#L39C39-L39C43" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Logging.AzureAppServices/src/AzureBlobLoggerContext.cs#L39C39-L39C43" } ], "DocsId": "T:Microsoft.Extensions.Logging.AzureAppServices.AzureBlobLoggerContext", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Logging.AzureAppServices/src/AzureBlobLoggerContext.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Logging.AzureAppServices/src/AzureBlobLoggerContext.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.AzureAppServices.AzureBlobLoggerOptions.#ctor", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Logging.AzureAppServices/src/AzureBlobLoggerOptions.cs#L14C5-L38C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Logging.AzureAppServices/src/AzureBlobLoggerOptions.cs#L14C5-L38C6" }, { "DocsId": "P:Microsoft.Extensions.Logging.AzureAppServices.AzureBlobLoggerOptions.BlobName", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Logging.AzureAppServices/src/AzureBlobLoggerOptions.cs#L22C15-L22C32" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Logging.AzureAppServices/src/AzureBlobLoggerOptions.cs#L22C15-L22C32" }, { "DocsId": "P:Microsoft.Extensions.Logging.AzureAppServices.AzureBlobLoggerOptions.FileNameFormat", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Logging.AzureAppServices/src/AzureBlobLoggerOptions.cs#L34C66-L34C70" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Logging.AzureAppServices/src/AzureBlobLoggerOptions.cs#L34C66-L34C70" } ], "DocsId": "T:Microsoft.Extensions.Logging.AzureAppServices.AzureBlobLoggerOptions", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Logging.AzureAppServices/src/AzureBlobLoggerOptions.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Logging.AzureAppServices/src/AzureBlobLoggerOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.AzureAppServices.AzureFileLoggerOptions.#ctor", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Logging.AzureAppServices/src/AzureFileLoggerOptions.cs#L14C5-L16C47" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Logging.AzureAppServices/src/AzureFileLoggerOptions.cs#L14C5-L16C47" }, { "DocsId": "P:Microsoft.Extensions.Logging.AzureAppServices.AzureFileLoggerOptions.FileSizeLimit", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Logging.AzureAppServices/src/AzureFileLoggerOptions.cs#L25C15-L25C37" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Logging.AzureAppServices/src/AzureFileLoggerOptions.cs#L25C15-L25C37" }, { "DocsId": "P:Microsoft.Extensions.Logging.AzureAppServices.AzureFileLoggerOptions.RetainedFileCountLimit", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Logging.AzureAppServices/src/AzureFileLoggerOptions.cs#L42C15-L42C46" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Logging.AzureAppServices/src/AzureFileLoggerOptions.cs#L42C15-L42C46" }, { "DocsId": "P:Microsoft.Extensions.Logging.AzureAppServices.AzureFileLoggerOptions.FileName", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Logging.AzureAppServices/src/AzureFileLoggerOptions.cs#L60C15-L60C32" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Logging.AzureAppServices/src/AzureFileLoggerOptions.cs#L60C15-L60C32" } ], "DocsId": "T:Microsoft.Extensions.Logging.AzureAppServices.AzureFileLoggerOptions", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Logging.AzureAppServices/src/AzureFileLoggerOptions.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Logging.AzureAppServices/src/AzureFileLoggerOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.AzureAppServices.BatchingLoggerOptions.#ctor", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Logging.AzureAppServices/src/BatchingLoggerOptions.cs#L14C5-L15C61" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Logging.AzureAppServices/src/BatchingLoggerOptions.cs#L14C5-L15C61" }, { "DocsId": "P:Microsoft.Extensions.Logging.AzureAppServices.BatchingLoggerOptions.FlushPeriod", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Logging.AzureAppServices/src/BatchingLoggerOptions.cs#L22C15-L22C35" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Logging.AzureAppServices/src/BatchingLoggerOptions.cs#L22C15-L22C35" }, { "DocsId": "P:Microsoft.Extensions.Logging.AzureAppServices.BatchingLoggerOptions.BackgroundQueueSize", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Logging.AzureAppServices/src/BatchingLoggerOptions.cs#L40C15-L40C43" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Logging.AzureAppServices/src/BatchingLoggerOptions.cs#L40C15-L40C43" }, { "DocsId": "P:Microsoft.Extensions.Logging.AzureAppServices.BatchingLoggerOptions.BatchSize", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Logging.AzureAppServices/src/BatchingLoggerOptions.cs#L57C15-L57C33" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Logging.AzureAppServices/src/BatchingLoggerOptions.cs#L57C15-L57C33" }, { "DocsId": "P:Microsoft.Extensions.Logging.AzureAppServices.BatchingLoggerOptions.IsEnabled", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Logging.AzureAppServices/src/BatchingLoggerOptions.cs#L71C29-L71C33" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Logging.AzureAppServices/src/BatchingLoggerOptions.cs#L71C29-L71C33" }, { "DocsId": "P:Microsoft.Extensions.Logging.AzureAppServices.BatchingLoggerOptions.IncludeScopes", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Logging.AzureAppServices/src/BatchingLoggerOptions.cs#L77C33-L77C37" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Logging.AzureAppServices/src/BatchingLoggerOptions.cs#L77C33-L77C37" } ], "DocsId": "T:Microsoft.Extensions.Logging.AzureAppServices.BatchingLoggerOptions", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Logging.AzureAppServices/src/BatchingLoggerOptions.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Logging.AzureAppServices/src/BatchingLoggerOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.AzureAppServices.BatchingLoggerProvider.IntervalAsync(System.TimeSpan,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Logging.AzureAppServices/src/BatchingLoggerProvider.cs#L134C9-L134C56" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Logging.AzureAppServices/src/BatchingLoggerProvider.cs#L134C9-L134C56" }, { "DocsId": "M:Microsoft.Extensions.Logging.AzureAppServices.BatchingLoggerProvider.Dispose", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Logging.AzureAppServices/src/BatchingLoggerProvider.cs#L185C9-L190C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Logging.AzureAppServices/src/BatchingLoggerProvider.cs#L185C9-L190C6" }, { "DocsId": "M:Microsoft.Extensions.Logging.AzureAppServices.BatchingLoggerProvider.CreateLogger(System.String)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Logging.AzureAppServices/src/BatchingLoggerProvider.cs#L199C9-L199C55" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Logging.AzureAppServices/src/BatchingLoggerProvider.cs#L199C9-L199C55" }, { "DocsId": "M:Microsoft.Extensions.Logging.AzureAppServices.BatchingLoggerProvider.Microsoft#Extensions#Logging#ISupportExternalScope#SetScopeProvider(Microsoft.Extensions.Logging.IExternalScopeProvider)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Logging.AzureAppServices/src/BatchingLoggerProvider.cs#L208C9-L209C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Logging.AzureAppServices/src/BatchingLoggerProvider.cs#L208C9-L209C6" }, { "DocsId": "P:Microsoft.Extensions.Logging.AzureAppServices.BatchingLoggerProvider.IsEnabled", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Logging.AzureAppServices/src/BatchingLoggerProvider.cs#L64C29-L64C33" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Logging.AzureAppServices/src/BatchingLoggerProvider.cs#L64C29-L64C33" } ], "DocsId": "T:Microsoft.Extensions.Logging.AzureAppServices.BatchingLoggerProvider", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Logging.AzureAppServices/src/BatchingLoggerProvider.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Logging.AzureAppServices/src/BatchingLoggerProvider.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.AzureAppServices.BlobLoggerProvider.#ctor(Microsoft.Extensions.Options.IOptionsMonitor{Microsoft.Extensions.Logging.AzureAppServices.AzureBlobLoggerOptions})", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Logging.AzureAppServices/src/BlobLoggerProvider.cs#L32C11-L38C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Logging.AzureAppServices/src/BlobLoggerProvider.cs#L16707566C0-L38C6" } ], "DocsId": "T:Microsoft.Extensions.Logging.AzureAppServices.BlobLoggerProvider", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Logging.AzureAppServices/src/BlobLoggerProvider.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Logging.AzureAppServices/src/BlobLoggerProvider.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.AzureAppServices.FileLoggerProvider.#ctor(Microsoft.Extensions.Options.IOptionsMonitor{Microsoft.Extensions.Logging.AzureAppServices.AzureFileLoggerOptions})", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Logging.AzureAppServices/src/FileLoggerProvider.cs#L30C82-L37C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Logging.AzureAppServices/src/FileLoggerProvider.cs#L30C82-L37C6" } ], "DocsId": "T:Microsoft.Extensions.Logging.AzureAppServices.FileLoggerProvider", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/Logging.AzureAppServices/src/FileLoggerProvider.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/Logging.AzureAppServices/src/FileLoggerProvider.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Logging.Configuration.json b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Logging.Configuration.json index bc2620ae122..b628f5e1bfc 100644 --- a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Logging.Configuration.json +++ b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Logging.Configuration.json @@ -1,67 +1,66 @@ { "Assembly": "Microsoft.Extensions.Logging.Configuration", - "GUID": "E0D146E8A16D4B02B740F725508D3DD5FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "2FA73F76F9DD4A57BDCA765A6699AEFDFFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.LoggingBuilderExtensions.AddConfiguration(Microsoft.Extensions.Logging.ILoggingBuilder,Microsoft.Extensions.Configuration.IConfiguration)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Configuration/src/LoggingBuilderExtensions.cs#L24C13-L31C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Configuration/src/LoggingBuilderExtensions.cs#L24C13-L31C28" } ], "DocsId": "T:Microsoft.Extensions.Logging.LoggingBuilderExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Configuration/src/LoggingBuilderExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Configuration/src/LoggingBuilderExtensions.cs" }, { "Members": [ { "DocsId": "P:Microsoft.Extensions.Logging.Configuration.ILoggerProviderConfiguration`1.Configuration", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Configuration/src/ILoggerProviderConfiguration.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Configuration/src/ILoggerProviderConfiguration.cs" } ], "DocsId": "T:Microsoft.Extensions.Logging.Configuration.ILoggerProviderConfiguration`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Configuration/src/ILoggerProviderConfiguration.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Configuration/src/ILoggerProviderConfiguration.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.Configuration.ILoggerProviderConfigurationFactory.GetConfiguration(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Configuration/src/ILoggerProviderConfigurationFactory.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Configuration/src/ILoggerProviderConfigurationFactory.cs" } ], "DocsId": "T:Microsoft.Extensions.Logging.Configuration.ILoggerProviderConfigurationFactory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Configuration/src/ILoggerProviderConfigurationFactory.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Configuration/src/ILoggerProviderConfigurationFactory.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.Configuration.LoggerProviderOptions.RegisterProviderOptions``2(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Configuration/src/LoggerProviderConfigurationExtensions.cs#L29C13-L31C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Configuration/src/LoggerProviderConfigurationExtensions.cs#L29C13-L31C10" } ], "DocsId": "T:Microsoft.Extensions.Logging.Configuration.LoggerProviderOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Configuration/src/LoggerProviderConfigurationExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Configuration/src/LoggerProviderConfigurationExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.Configuration.LoggerProviderOptionsChangeTokenSource`2.#ctor(Microsoft.Extensions.Logging.Configuration.ILoggerProviderConfiguration{`1})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Configuration/src/LoggerProviderOptionsChangeTokenSource.cs#L14C120-L16C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Configuration/src/LoggerProviderOptionsChangeTokenSource.cs#L14C120-L16C10" } ], "DocsId": "T:Microsoft.Extensions.Logging.Configuration.LoggerProviderOptionsChangeTokenSource`2", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Configuration/src/LoggerProviderOptionsChangeTokenSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Configuration/src/LoggerProviderOptionsChangeTokenSource.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.Configuration.LoggingBuilderConfigurationExtensions.AddConfiguration(Microsoft.Extensions.Logging.ILoggingBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Configuration/src/LoggingBuilderConfigurationExtensions.cs#L19C13-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Configuration/src/LoggingBuilderConfigurationExtensions.cs#L19C13-L21C10" } ], "DocsId": "T:Microsoft.Extensions.Logging.Configuration.LoggingBuilderConfigurationExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Configuration/src/LoggingBuilderConfigurationExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Configuration/src/LoggingBuilderConfigurationExtensions.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Logging.Console.json b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Logging.Console.json index 683843d0e29..b4123008248 100644 --- a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Logging.Console.json +++ b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Logging.Console.json @@ -1,387 +1,386 @@ { "Assembly": "Microsoft.Extensions.Logging.Console", - "GUID": "28044A240845472DACDA1730A5177565FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "315E7B62D09E4D128D7BE4C2158DF676FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.ConsoleLoggerExtensions.AddConsole(Microsoft.Extensions.Logging.ILoggingBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerExtensions.cs#L32C13-L43C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerExtensions.cs#L32C13-L43C28" }, { "DocsId": "M:Microsoft.Extensions.Logging.ConsoleLoggerExtensions.AddConsole(Microsoft.Extensions.Logging.ILoggingBuilder,System.Action{Microsoft.Extensions.Logging.Console.ConsoleLoggerOptions})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerExtensions.cs#L53C13-L58C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerExtensions.cs#L53C13-L58C28" }, { "DocsId": "M:Microsoft.Extensions.Logging.ConsoleLoggerExtensions.AddSimpleConsole(Microsoft.Extensions.Logging.ILoggingBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerExtensions.cs#L66C13-L66C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerExtensions.cs#L66C13-L66C71" }, { "DocsId": "M:Microsoft.Extensions.Logging.ConsoleLoggerExtensions.AddSimpleConsole(Microsoft.Extensions.Logging.ILoggingBuilder,System.Action{Microsoft.Extensions.Logging.Console.SimpleConsoleFormatterOptions})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerExtensions.cs#L75C13-L75C124" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerExtensions.cs#L75C13-L75C124" }, { "DocsId": "M:Microsoft.Extensions.Logging.ConsoleLoggerExtensions.AddJsonConsole(Microsoft.Extensions.Logging.ILoggingBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerExtensions.cs#L83C13-L83C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerExtensions.cs#L83C13-L83C69" }, { "DocsId": "M:Microsoft.Extensions.Logging.ConsoleLoggerExtensions.AddJsonConsole(Microsoft.Extensions.Logging.ILoggingBuilder,System.Action{Microsoft.Extensions.Logging.Console.JsonConsoleFormatterOptions})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerExtensions.cs#L92C13-L92C120" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerExtensions.cs#L92C13-L92C120" }, { "DocsId": "M:Microsoft.Extensions.Logging.ConsoleLoggerExtensions.AddSystemdConsole(Microsoft.Extensions.Logging.ILoggingBuilder,System.Action{Microsoft.Extensions.Logging.Console.ConsoleFormatterOptions})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerExtensions.cs#L102C13-L102C119" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerExtensions.cs#L102C13-L102C119" }, { "DocsId": "M:Microsoft.Extensions.Logging.ConsoleLoggerExtensions.AddSystemdConsole(Microsoft.Extensions.Logging.ILoggingBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerExtensions.cs#L110C13-L110C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerExtensions.cs#L110C13-L110C72" }, { "DocsId": "M:Microsoft.Extensions.Logging.ConsoleLoggerExtensions.AddConsoleFormatter``2(Microsoft.Extensions.Logging.ILoggingBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerExtensions.cs#L136C13-L136C133" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerExtensions.cs#L136C13-L136C133" }, { "DocsId": "M:Microsoft.Extensions.Logging.ConsoleLoggerExtensions.AddConsoleFormatter``2(Microsoft.Extensions.Logging.ILoggingBuilder,System.Action{``1})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerExtensions.cs#L150C13-L154C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerExtensions.cs#L150C13-L154C28" }, { "DocsId": "M:Microsoft.Extensions.Logging.ConsoleLoggerExtensions.AddConsole(Microsoft.Extensions.Logging.ILoggerFactory,Microsoft.Extensions.Configuration.IConfiguration)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerExtensions.Obsolete.cs#L26C13-L27C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerExtensions.Obsolete.cs#L26C13-L27C49" }, { "DocsId": "M:Microsoft.Extensions.Logging.ConsoleLoggerExtensions.AddConsole(Microsoft.Extensions.Logging.ILoggerFactory,Microsoft.Extensions.Logging.Console.IConsoleLoggerSettings)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerExtensions.Obsolete.cs#L40C13-L41C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerExtensions.Obsolete.cs#L40C13-L41C28" }, { "DocsId": "M:Microsoft.Extensions.Logging.ConsoleLoggerExtensions.AddConsole(Microsoft.Extensions.Logging.ILoggerFactory,Microsoft.Extensions.Logging.LogLevel,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerExtensions.Obsolete.cs#L55C13-L56C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerExtensions.Obsolete.cs#L55C13-L56C28" }, { "DocsId": "M:Microsoft.Extensions.Logging.ConsoleLoggerExtensions.AddConsole(Microsoft.Extensions.Logging.ILoggerFactory,Microsoft.Extensions.Logging.LogLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerExtensions.Obsolete.cs#L69C13-L70C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerExtensions.Obsolete.cs#L69C13-L70C28" }, { "DocsId": "M:Microsoft.Extensions.Logging.ConsoleLoggerExtensions.AddConsole(Microsoft.Extensions.Logging.ILoggerFactory,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerExtensions.Obsolete.cs#L83C13-L84C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerExtensions.Obsolete.cs#L83C13-L84C28" }, { "DocsId": "M:Microsoft.Extensions.Logging.ConsoleLoggerExtensions.AddConsole(Microsoft.Extensions.Logging.ILoggerFactory,System.Func{System.String,Microsoft.Extensions.Logging.LogLevel,System.Boolean},System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerExtensions.Obsolete.cs#L98C13-L99C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerExtensions.Obsolete.cs#L98C13-L99C28" }, { "DocsId": "M:Microsoft.Extensions.Logging.ConsoleLoggerExtensions.AddConsole(Microsoft.Extensions.Logging.ILoggerFactory,System.Func{System.String,Microsoft.Extensions.Logging.LogLevel,System.Boolean})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerExtensions.Obsolete.cs#L112C13-L113C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerExtensions.Obsolete.cs#L112C13-L113C28" }, { "DocsId": "M:Microsoft.Extensions.Logging.ConsoleLoggerExtensions.AddConsole(Microsoft.Extensions.Logging.ILoggerFactory)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerExtensions.Obsolete.cs#L125C13-L125C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerExtensions.Obsolete.cs#L125C13-L125C61" } ], "DocsId": "T:Microsoft.Extensions.Logging.ConsoleLoggerExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.Console.ConfigurationConsoleLoggerSettings.#ctor(Microsoft.Extensions.Configuration.IConfiguration)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConfigurationConsoleLoggerSettings.cs#L24C9-L28C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConfigurationConsoleLoggerSettings.cs#L24C9-L28C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.Console.ConfigurationConsoleLoggerSettings.Reload", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConfigurationConsoleLoggerSettings.cs#L66C13-L67C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConfigurationConsoleLoggerSettings.cs#L66C13-L67C75" }, { "DocsId": "M:Microsoft.Extensions.Logging.Console.ConfigurationConsoleLoggerSettings.TryGetSwitch(System.String,Microsoft.Extensions.Logging.LogLevel@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConfigurationConsoleLoggerSettings.cs#L79C13-L99C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConfigurationConsoleLoggerSettings.cs#L79C13-L99C62" }, { "DocsId": "P:Microsoft.Extensions.Logging.Console.ConfigurationConsoleLoggerSettings.ChangeToken", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConfigurationConsoleLoggerSettings.cs#L33C44-L33C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConfigurationConsoleLoggerSettings.cs#L33C44-L33C48" }, { "DocsId": "P:Microsoft.Extensions.Logging.Console.ConfigurationConsoleLoggerSettings.IncludeScopes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConfigurationConsoleLoggerSettings.cs#L43C17-L55C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConfigurationConsoleLoggerSettings.cs#L43C17-L55C66" } ], "DocsId": "T:Microsoft.Extensions.Logging.Console.ConfigurationConsoleLoggerSettings", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConfigurationConsoleLoggerSettings.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConfigurationConsoleLoggerSettings.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.Console.ConsoleFormatter.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleFormatter.cs#L19C9-L24C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleFormatter.cs#L19C9-L24C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.Console.ConsoleFormatter.Write``1(Microsoft.Extensions.Logging.Abstractions.LogEntry{``0}@|System.Runtime.InteropServices.InAttribute,Microsoft.Extensions.Logging.IExternalScopeProvider,System.IO.TextWriter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleFormatter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleFormatter.cs" }, { "DocsId": "P:Microsoft.Extensions.Logging.Console.ConsoleFormatter.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleFormatter.cs#L29C30-L29C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleFormatter.cs#L29C30-L29C34" } ], "DocsId": "T:Microsoft.Extensions.Logging.Console.ConsoleFormatter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleFormatter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleFormatter.cs" }, { "Members": [ { "DocsId": "F:Microsoft.Extensions.Logging.Console.ConsoleFormatterNames.Simple", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleFormatterNames.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleFormatterNames.cs" }, { "DocsId": "F:Microsoft.Extensions.Logging.Console.ConsoleFormatterNames.Json", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleFormatterNames.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleFormatterNames.cs" }, { "DocsId": "F:Microsoft.Extensions.Logging.Console.ConsoleFormatterNames.Systemd", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleFormatterNames.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleFormatterNames.cs" } ], "DocsId": "T:Microsoft.Extensions.Logging.Console.ConsoleFormatterNames", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleFormatterNames.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleFormatterNames.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.Console.ConsoleFormatterOptions.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleFormatterOptions.cs#L17C9-L17C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleFormatterOptions.cs#L17C9-L17C45" }, { "DocsId": "P:Microsoft.Extensions.Logging.Console.ConsoleFormatterOptions.IncludeScopes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleFormatterOptions.cs#L22C37-L22C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleFormatterOptions.cs#L22C37-L22C41" }, { "DocsId": "P:Microsoft.Extensions.Logging.Console.ConsoleFormatterOptions.TimestampFormat", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleFormatterOptions.cs#L28C42-L28C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleFormatterOptions.cs#L28C42-L28C46" }, { "DocsId": "P:Microsoft.Extensions.Logging.Console.ConsoleFormatterOptions.UseUtcTimestamp", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleFormatterOptions.cs#L33C39-L33C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleFormatterOptions.cs#L33C39-L33C43" } ], "DocsId": "T:Microsoft.Extensions.Logging.Console.ConsoleFormatterOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleFormatterOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleFormatterOptions.cs" }, { "Members": [ { "DocsId": "F:Microsoft.Extensions.Logging.Console.ConsoleLoggerFormat.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerFormat.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerFormat.cs" }, { "DocsId": "F:Microsoft.Extensions.Logging.Console.ConsoleLoggerFormat.Default", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerFormat.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerFormat.cs" }, { "DocsId": "F:Microsoft.Extensions.Logging.Console.ConsoleLoggerFormat.Systemd", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerFormat.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerFormat.cs" } ], "DocsId": "T:Microsoft.Extensions.Logging.Console.ConsoleLoggerFormat", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerFormat.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerFormat.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.Console.ConsoleLoggerOptions.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerOptions.cs#L53C69-L85C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerOptions.cs#L53C69-L85C69" }, { "DocsId": "P:Microsoft.Extensions.Logging.Console.ConsoleLoggerOptions.DisableColors", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerOptions.cs#L17C37-L17C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerOptions.cs#L17C37-L17C41" }, { "DocsId": "P:Microsoft.Extensions.Logging.Console.ConsoleLoggerOptions.Format", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerOptions.cs#L27C20-L27C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerOptions.cs#L27C20-L27C27" }, { "DocsId": "P:Microsoft.Extensions.Logging.Console.ConsoleLoggerOptions.FormatterName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerOptions.cs#L42C40-L42C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerOptions.cs#L42C40-L42C44" }, { "DocsId": "P:Microsoft.Extensions.Logging.Console.ConsoleLoggerOptions.IncludeScopes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerOptions.cs#L48C37-L48C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerOptions.cs#L48C37-L48C41" }, { "DocsId": "P:Microsoft.Extensions.Logging.Console.ConsoleLoggerOptions.LogToStandardErrorThreshold", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerOptions.cs#L53C55-L53C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerOptions.cs#L53C55-L53C59" }, { "DocsId": "P:Microsoft.Extensions.Logging.Console.ConsoleLoggerOptions.TimestampFormat", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerOptions.cs#L59C42-L59C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerOptions.cs#L59C42-L59C46" }, { "DocsId": "P:Microsoft.Extensions.Logging.Console.ConsoleLoggerOptions.UseUtcTimestamp", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerOptions.cs#L65C39-L65C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerOptions.cs#L65C39-L65C43" }, { "DocsId": "P:Microsoft.Extensions.Logging.Console.ConsoleLoggerOptions.QueueFullMode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerOptions.cs#L73C20-L73C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerOptions.cs#L73C20-L73C34" }, { "DocsId": "P:Microsoft.Extensions.Logging.Console.ConsoleLoggerOptions.MaxQueueLength", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerOptions.cs#L92C20-L92C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerOptions.cs#L92C20-L92C38" } ], "DocsId": "T:Microsoft.Extensions.Logging.Console.ConsoleLoggerOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.Console.ConsoleLoggerProvider.#ctor(Microsoft.Extensions.Options.IOptionsMonitor{Microsoft.Extensions.Logging.Console.ConsoleLoggerOptions})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerProvider.cs#L34C15-L34C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerProvider.cs#L34C15-L34C65" }, { "DocsId": "M:Microsoft.Extensions.Logging.Console.ConsoleLoggerProvider.#ctor(Microsoft.Extensions.Options.IOptionsMonitor{Microsoft.Extensions.Logging.Console.ConsoleLoggerOptions},System.Collections.Generic.IEnumerable{Microsoft.Extensions.Logging.Console.ConsoleFormatter})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerProvider.cs#L27C9-L66C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerProvider.cs#L27C9-L66C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.Console.ConsoleLoggerProvider.CreateLogger(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerProvider.cs#L155C13-L173C134" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerProvider.cs#L155C13-L173C134" }, { "DocsId": "M:Microsoft.Extensions.Logging.Console.ConsoleLoggerProvider.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerProvider.cs#L206C13-L208C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerProvider.cs#L206C13-L208C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.Console.ConsoleLoggerProvider.SetScopeProvider(Microsoft.Extensions.Logging.IExternalScopeProvider)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerProvider.cs#L213C13-L219C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerProvider.cs#L213C13-L219C10" } ], "DocsId": "T:Microsoft.Extensions.Logging.Console.ConsoleLoggerProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerProvider.cs" }, { "Members": [ { "DocsId": "F:Microsoft.Extensions.Logging.Console.ConsoleLoggerQueueFullMode.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerQueueFullMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerQueueFullMode.cs" }, { "DocsId": "F:Microsoft.Extensions.Logging.Console.ConsoleLoggerQueueFullMode.Wait", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerQueueFullMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerQueueFullMode.cs" }, { "DocsId": "F:Microsoft.Extensions.Logging.Console.ConsoleLoggerQueueFullMode.DropWrite", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerQueueFullMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerQueueFullMode.cs" } ], "DocsId": "T:Microsoft.Extensions.Logging.Console.ConsoleLoggerQueueFullMode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerQueueFullMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerQueueFullMode.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.Console.ConsoleLoggerSettings.Reload", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerSettings.cs#L37C13-L37C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerSettings.cs#L37C13-L37C25" }, { "DocsId": "M:Microsoft.Extensions.Logging.Console.ConsoleLoggerSettings.TryGetSwitch(System.String,Microsoft.Extensions.Logging.LogLevel@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerSettings.cs#L43C13-L43C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerSettings.cs#L43C13-L43C58" }, { "DocsId": "M:Microsoft.Extensions.Logging.Console.ConsoleLoggerSettings.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerSettings.cs#L32C71-L32C105" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerSettings.cs#L32C71-L32C105" }, { "DocsId": "P:Microsoft.Extensions.Logging.Console.ConsoleLoggerSettings.ChangeToken", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerSettings.cs#L19C44-L19C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerSettings.cs#L19C44-L19C48" }, { "DocsId": "P:Microsoft.Extensions.Logging.Console.ConsoleLoggerSettings.IncludeScopes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerSettings.cs#L22C37-L22C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerSettings.cs#L22C37-L22C41" }, { "DocsId": "P:Microsoft.Extensions.Logging.Console.ConsoleLoggerSettings.DisableColors", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerSettings.cs#L27C37-L27C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerSettings.cs#L27C37-L27C41" }, { "DocsId": "P:Microsoft.Extensions.Logging.Console.ConsoleLoggerSettings.Switches", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerSettings.cs#L32C57-L32C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerSettings.cs#L32C57-L32C61" } ], "DocsId": "T:Microsoft.Extensions.Logging.Console.ConsoleLoggerSettings", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerSettings.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerSettings.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.Console.IConsoleLoggerSettings.TryGetSwitch(System.String,Microsoft.Extensions.Logging.LogLevel@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/IConsoleLoggerSettings.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/IConsoleLoggerSettings.cs" }, { "DocsId": "M:Microsoft.Extensions.Logging.Console.IConsoleLoggerSettings.Reload", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/IConsoleLoggerSettings.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/IConsoleLoggerSettings.cs" }, { "DocsId": "P:Microsoft.Extensions.Logging.Console.IConsoleLoggerSettings.IncludeScopes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/IConsoleLoggerSettings.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/IConsoleLoggerSettings.cs" }, { "DocsId": "P:Microsoft.Extensions.Logging.Console.IConsoleLoggerSettings.ChangeToken", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/IConsoleLoggerSettings.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/IConsoleLoggerSettings.cs" } ], "DocsId": "T:Microsoft.Extensions.Logging.Console.IConsoleLoggerSettings", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/IConsoleLoggerSettings.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/IConsoleLoggerSettings.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.Console.JsonConsoleFormatterOptions.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/JsonConsoleFormatterOptions.cs#L17C9-L17C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/JsonConsoleFormatterOptions.cs#L17C9-L17C49" }, { "DocsId": "P:Microsoft.Extensions.Logging.Console.JsonConsoleFormatterOptions.JsonWriterOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/JsonConsoleFormatterOptions.cs#L22C54-L22C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/JsonConsoleFormatterOptions.cs#L22C54-L22C58" } ], "DocsId": "T:Microsoft.Extensions.Logging.Console.JsonConsoleFormatterOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/JsonConsoleFormatterOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/JsonConsoleFormatterOptions.cs" }, { "Members": [ { "DocsId": "F:Microsoft.Extensions.Logging.Console.LoggerColorBehavior.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/LoggerColorBehavior.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/LoggerColorBehavior.cs" }, { "DocsId": "F:Microsoft.Extensions.Logging.Console.LoggerColorBehavior.Default", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/LoggerColorBehavior.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/LoggerColorBehavior.cs" }, { "DocsId": "F:Microsoft.Extensions.Logging.Console.LoggerColorBehavior.Enabled", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/LoggerColorBehavior.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/LoggerColorBehavior.cs" }, { "DocsId": "F:Microsoft.Extensions.Logging.Console.LoggerColorBehavior.Disabled", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/LoggerColorBehavior.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/LoggerColorBehavior.cs" } ], "DocsId": "T:Microsoft.Extensions.Logging.Console.LoggerColorBehavior", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/LoggerColorBehavior.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/LoggerColorBehavior.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.Console.SimpleConsoleFormatterOptions.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/SimpleConsoleFormatterOptions.cs#L16C9-L16C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/SimpleConsoleFormatterOptions.cs#L16C9-L16C51" }, { "DocsId": "P:Microsoft.Extensions.Logging.Console.SimpleConsoleFormatterOptions.ColorBehavior", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/SimpleConsoleFormatterOptions.cs#L21C52-L21C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/SimpleConsoleFormatterOptions.cs#L21C52-L21C56" }, { "DocsId": "P:Microsoft.Extensions.Logging.Console.SimpleConsoleFormatterOptions.SingleLine", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/SimpleConsoleFormatterOptions.cs#L26C34-L26C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/SimpleConsoleFormatterOptions.cs#L26C34-L26C38" } ], "DocsId": "T:Microsoft.Extensions.Logging.Console.SimpleConsoleFormatterOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Console/src/SimpleConsoleFormatterOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Console/src/SimpleConsoleFormatterOptions.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Logging.Debug.json b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Logging.Debug.json index 2126588d544..81ed1322dbf 100644 --- a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Logging.Debug.json +++ b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Logging.Debug.json @@ -1,47 +1,46 @@ { "Assembly": "Microsoft.Extensions.Logging.Debug", - "GUID": "43347042122349C1BCF3310261EB882CFFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "DF65A1DEB2804BE199BD1747CFB9691EFFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.DebugLoggerFactoryExtensions.AddDebug(Microsoft.Extensions.Logging.ILoggerFactory,Microsoft.Extensions.Logging.LogLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Debug/src/DebugLoggerFactoryExtensions.cs#L24C98-L24C115" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Debug/src/DebugLoggerFactoryExtensions.cs#L24C98-L24C115" }, { "DocsId": "M:Microsoft.Extensions.Logging.DebugLoggerFactoryExtensions.AddDebug(Microsoft.Extensions.Logging.ILoggerFactory,System.Func{System.String,Microsoft.Extensions.Logging.LogLevel,System.Boolean})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Debug/src/DebugLoggerFactoryExtensions.cs#L33C116-L33C133" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Debug/src/DebugLoggerFactoryExtensions.cs#L33C116-L33C133" }, { "DocsId": "M:Microsoft.Extensions.Logging.DebugLoggerFactoryExtensions.AddDebug(Microsoft.Extensions.Logging.ILoggerFactory)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Debug/src/DebugLoggerFactoryExtensions.cs#L43C13-L44C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Debug/src/DebugLoggerFactoryExtensions.cs#L43C13-L44C28" }, { "DocsId": "M:Microsoft.Extensions.Logging.DebugLoggerFactoryExtensions.AddDebug(Microsoft.Extensions.Logging.ILoggingBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Debug/src/DebugLoggerFactoryExtensions.cs#L53C13-L55C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Debug/src/DebugLoggerFactoryExtensions.cs#L53C13-L55C28" } ], "DocsId": "T:Microsoft.Extensions.Logging.DebugLoggerFactoryExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Debug/src/DebugLoggerFactoryExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Debug/src/DebugLoggerFactoryExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.Debug.DebugLoggerProvider.CreateLogger(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Debug/src/DebugLoggerProvider.cs#L15C13-L15C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Debug/src/DebugLoggerProvider.cs#L15C13-L15C42" }, { "DocsId": "M:Microsoft.Extensions.Logging.Debug.DebugLoggerProvider.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Debug/src/DebugLoggerProvider.cs#L21C9-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Debug/src/DebugLoggerProvider.cs#L21C9-L21C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.Debug.DebugLoggerProvider.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Debug/src/DebugLoggerProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Debug/src/DebugLoggerProvider.cs" } ], "DocsId": "T:Microsoft.Extensions.Logging.Debug.DebugLoggerProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.Debug/src/DebugLoggerProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.Debug/src/DebugLoggerProvider.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Logging.EventLog.json b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Logging.EventLog.json index 0885008d98d..f1e4b1637a7 100644 --- a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Logging.EventLog.json +++ b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Logging.EventLog.json @@ -1,93 +1,92 @@ { "Assembly": "Microsoft.Extensions.Logging.EventLog", - "GUID": "0888FC65A79643DEB749A5D189E65643FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "F834D867B4B74B1781459D1D190AE708FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.EventLoggerFactoryExtensions.AddEventLog(Microsoft.Extensions.Logging.ILoggerFactory,Microsoft.Extensions.Logging.EventLog.EventLogSettings)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.EventLog/src/EventLoggerFactoryExtensions.cs#L26C13-L30C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.EventLog/src/EventLoggerFactoryExtensions.cs#L26C13-L30C28" }, { "DocsId": "M:Microsoft.Extensions.Logging.EventLoggerFactoryExtensions.AddEventLog(Microsoft.Extensions.Logging.ILoggerFactory,Microsoft.Extensions.Logging.LogLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.EventLog/src/EventLoggerFactoryExtensions.cs#L41C13-L41C108" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.EventLog/src/EventLoggerFactoryExtensions.cs#L16707566C0-L41C108" }, { "DocsId": "M:Microsoft.Extensions.Logging.EventLoggerFactoryExtensions.AddEventLog(Microsoft.Extensions.Logging.ILoggerFactory)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.EventLog/src/EventLoggerFactoryExtensions.cs#L49C82-L49C124" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.EventLog/src/EventLoggerFactoryExtensions.cs#L49C82-L49C124" }, { "DocsId": "M:Microsoft.Extensions.Logging.EventLoggerFactoryExtensions.AddEventLog(Microsoft.Extensions.Logging.ILoggingBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.EventLog/src/EventLoggerFactoryExtensions.cs#L58C13-L62C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.EventLog/src/EventLoggerFactoryExtensions.cs#L58C13-L62C28" }, { "DocsId": "M:Microsoft.Extensions.Logging.EventLoggerFactoryExtensions.AddEventLog(Microsoft.Extensions.Logging.ILoggingBuilder,Microsoft.Extensions.Logging.EventLog.EventLogSettings)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.EventLog/src/EventLoggerFactoryExtensions.cs#L73C13-L78C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.EventLog/src/EventLoggerFactoryExtensions.cs#L73C13-L78C28" }, { "DocsId": "M:Microsoft.Extensions.Logging.EventLoggerFactoryExtensions.AddEventLog(Microsoft.Extensions.Logging.ILoggingBuilder,System.Action{Microsoft.Extensions.Logging.EventLog.EventLogSettings})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.EventLog/src/EventLoggerFactoryExtensions.cs#L89C13-L94C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.EventLog/src/EventLoggerFactoryExtensions.cs#L89C13-L94C28" } ], "DocsId": "T:Microsoft.Extensions.Logging.EventLoggerFactoryExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.EventLog/src/EventLoggerFactoryExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.EventLog/src/EventLoggerFactoryExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.EventLog.EventLogLoggerProvider.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.EventLog/src/EventLogLoggerProvider.cs#L22C15-L24C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.EventLog/src/EventLogLoggerProvider.cs#L22C15-L24C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.EventLog.EventLogLoggerProvider.#ctor(Microsoft.Extensions.Logging.EventLog.EventLogSettings)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.EventLog/src/EventLogLoggerProvider.cs#L30C9-L33C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.EventLog/src/EventLogLoggerProvider.cs#L30C9-L33C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.EventLog.EventLogLoggerProvider.#ctor(Microsoft.Extensions.Options.IOptions{Microsoft.Extensions.Logging.EventLog.EventLogSettings})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.EventLog/src/EventLogLoggerProvider.cs#L40C15-L42C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.EventLog/src/EventLogLoggerProvider.cs#L40C15-L42C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.EventLog.EventLogLoggerProvider.CreateLogger(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.EventLog/src/EventLogLoggerProvider.cs#L47C13-L47C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.EventLog/src/EventLogLoggerProvider.cs#L47C13-L47C72" }, { "DocsId": "M:Microsoft.Extensions.Logging.EventLog.EventLogLoggerProvider.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.EventLog/src/EventLogLoggerProvider.cs#L53C13-L57C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.EventLog/src/EventLogLoggerProvider.cs#L53C13-L57C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.EventLog.EventLogLoggerProvider.SetScopeProvider(Microsoft.Extensions.Logging.IExternalScopeProvider)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.EventLog/src/EventLogLoggerProvider.cs#L62C13-L63C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.EventLog/src/EventLogLoggerProvider.cs#L62C13-L63C10" } ], "DocsId": "T:Microsoft.Extensions.Logging.EventLog.EventLogLoggerProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.EventLog/src/EventLogLoggerProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.EventLog/src/EventLogLoggerProvider.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.EventLog.EventLogSettings.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.EventLog/src/EventLogSettings.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.EventLog/src/EventLogSettings.cs" }, { "DocsId": "P:Microsoft.Extensions.Logging.EventLog.EventLogSettings.LogName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.EventLog/src/EventLogSettings.cs#L18C34-L18C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.EventLog/src/EventLogSettings.cs#L18C34-L18C38" }, { "DocsId": "P:Microsoft.Extensions.Logging.EventLog.EventLogSettings.SourceName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.EventLog/src/EventLogSettings.cs#L23C37-L23C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.EventLog/src/EventLogSettings.cs#L23C37-L23C41" }, { "DocsId": "P:Microsoft.Extensions.Logging.EventLog.EventLogSettings.MachineName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.EventLog/src/EventLogSettings.cs#L28C38-L28C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.EventLog/src/EventLogSettings.cs#L28C38-L28C42" }, { "DocsId": "P:Microsoft.Extensions.Logging.EventLog.EventLogSettings.Filter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.EventLog/src/EventLogSettings.cs#L33C55-L33C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.EventLog/src/EventLogSettings.cs#L33C55-L33C59" } ], "DocsId": "T:Microsoft.Extensions.Logging.EventLog.EventLogSettings", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.EventLog/src/EventLogSettings.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.EventLog/src/EventLogSettings.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Logging.EventSource.json b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Logging.EventSource.json index 0945ce1e998..fc9addf82df 100644 --- a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Logging.EventSource.json +++ b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Logging.EventSource.json @@ -1,75 +1,74 @@ { "Assembly": "Microsoft.Extensions.Logging.EventSource", - "GUID": "29243113B9074920BD558A2BB8E21893FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "7D2AA46817524D90A599A63B2B27653AFFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.EventSourceLoggerFactoryExtensions.AddEventSourceLogger(Microsoft.Extensions.Logging.ILoggerFactory)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.EventSource/src/EventSourceLoggerFactoryExtensions.cs#L27C13-L31C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.EventSource/src/EventSourceLoggerFactoryExtensions.cs#L27C13-L31C28" }, { "DocsId": "M:Microsoft.Extensions.Logging.EventSourceLoggerFactoryExtensions.AddEventSourceLogger(Microsoft.Extensions.Logging.ILoggingBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.EventSource/src/EventSourceLoggerFactoryExtensions.cs#L41C13-L47C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.EventSource/src/EventSourceLoggerFactoryExtensions.cs#L41C13-L47C28" } ], "DocsId": "T:Microsoft.Extensions.Logging.EventSourceLoggerFactoryExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.EventSource/src/EventSourceLoggerFactoryExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.EventSource/src/EventSourceLoggerFactoryExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.EventSource.EventSourceLoggerProvider.#ctor(Microsoft.Extensions.Logging.EventSource.LoggingEventSource)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.EventSource/src/EventSourceLoggerProvider.cs#L27C9-L33C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.EventSource/src/EventSourceLoggerProvider.cs#L27C9-L33C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.EventSource.EventSourceLoggerProvider.CreateLogger(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.EventSource/src/EventSourceLoggerProvider.cs#L38C13-L38C103" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.EventSource/src/EventSourceLoggerProvider.cs#L38C13-L38C103" }, { "DocsId": "M:Microsoft.Extensions.Logging.EventSource.EventSourceLoggerProvider.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.EventSource/src/EventSourceLoggerProvider.cs#L45C18-L49C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.EventSource/src/EventSourceLoggerProvider.cs#L45C18-L49C10" } ], "DocsId": "T:Microsoft.Extensions.Logging.EventSource.EventSourceLoggerProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.EventSource/src/EventSourceLoggerProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.EventSource/src/EventSourceLoggerProvider.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.EventSource.LoggingEventSource.OnEventCommand(System.Diagnostics.Tracing.EventCommandEventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.EventSource/src/LoggingEventSource.cs#L303C13-L316C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.EventSource/src/LoggingEventSource.cs#L303C13-L316C10" }, { "DocsId": "T:Microsoft.Extensions.Logging.EventSource.LoggingEventSource.Keywords", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.EventSource/src/LoggingEventSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.EventSource/src/LoggingEventSource.cs" } ], "DocsId": "T:Microsoft.Extensions.Logging.EventSource.LoggingEventSource", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.EventSource/src/LoggingEventSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.EventSource/src/LoggingEventSource.cs" }, { "Members": [ { "DocsId": "F:Microsoft.Extensions.Logging.EventSource.LoggingEventSource.Keywords.Meta", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.EventSource/src/LoggingEventSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.EventSource/src/LoggingEventSource.cs" }, { "DocsId": "F:Microsoft.Extensions.Logging.EventSource.LoggingEventSource.Keywords.Message", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.EventSource/src/LoggingEventSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.EventSource/src/LoggingEventSource.cs" }, { "DocsId": "F:Microsoft.Extensions.Logging.EventSource.LoggingEventSource.Keywords.FormattedMessage", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.EventSource/src/LoggingEventSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.EventSource/src/LoggingEventSource.cs" }, { "DocsId": "F:Microsoft.Extensions.Logging.EventSource.LoggingEventSource.Keywords.JsonMessage", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.EventSource/src/LoggingEventSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.EventSource/src/LoggingEventSource.cs" } ], "DocsId": "T:Microsoft.Extensions.Logging.EventSource.LoggingEventSource.Keywords", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.EventSource/src/LoggingEventSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.EventSource/src/LoggingEventSource.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Logging.TraceSource.json b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Logging.TraceSource.json index b5a7cb109b4..7a98bd4a4c8 100644 --- a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Logging.TraceSource.json +++ b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Logging.TraceSource.json @@ -1,67 +1,66 @@ { "Assembly": "Microsoft.Extensions.Logging.TraceSource", - "GUID": "68690C702A204296A7DEA45381ACC2D7FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "36AE06C963894583B2CE514C2390439CFFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.TraceSourceFactoryExtensions.AddTraceSource(Microsoft.Extensions.Logging.ILoggerFactory,System.Diagnostics.SourceSwitch,System.Diagnostics.TraceListener)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.TraceSource/src/TraceSourceFactoryExtensions.cs#L28C13-L34C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.TraceSource/src/TraceSourceFactoryExtensions.cs#L28C13-L34C28" }, { "DocsId": "M:Microsoft.Extensions.Logging.TraceSourceFactoryExtensions.AddTraceSource(Microsoft.Extensions.Logging.ILoggerFactory,System.Diagnostics.SourceSwitch)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.TraceSource/src/TraceSourceFactoryExtensions.cs#L47C13-L52C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.TraceSource/src/TraceSourceFactoryExtensions.cs#L47C13-L52C28" }, { "DocsId": "M:Microsoft.Extensions.Logging.TraceSourceFactoryExtensions.AddTraceSource(Microsoft.Extensions.Logging.ILoggerFactory,System.String,System.Diagnostics.TraceListener)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.TraceSource/src/TraceSourceFactoryExtensions.cs#L66C13-L72C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.TraceSource/src/TraceSourceFactoryExtensions.cs#L66C13-L72C28" }, { "DocsId": "M:Microsoft.Extensions.Logging.TraceSourceFactoryExtensions.AddTraceSource(Microsoft.Extensions.Logging.ILoggerFactory,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.TraceSource/src/TraceSourceFactoryExtensions.cs#L85C13-L90C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.TraceSource/src/TraceSourceFactoryExtensions.cs#L85C13-L90C28" }, { "DocsId": "M:Microsoft.Extensions.Logging.TraceSourceFactoryExtensions.AddTraceSource(Microsoft.Extensions.Logging.ILoggingBuilder,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.TraceSource/src/TraceSourceFactoryExtensions.cs#L103C13-L106C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.TraceSource/src/TraceSourceFactoryExtensions.cs#L103C13-L106C73" }, { "DocsId": "M:Microsoft.Extensions.Logging.TraceSourceFactoryExtensions.AddTraceSource(Microsoft.Extensions.Logging.ILoggingBuilder,System.String,System.Diagnostics.TraceListener)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.TraceSource/src/TraceSourceFactoryExtensions.cs#L121C13-L125C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.TraceSource/src/TraceSourceFactoryExtensions.cs#L121C13-L125C83" }, { "DocsId": "M:Microsoft.Extensions.Logging.TraceSourceFactoryExtensions.AddTraceSource(Microsoft.Extensions.Logging.ILoggingBuilder,System.Diagnostics.SourceSwitch)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.TraceSource/src/TraceSourceFactoryExtensions.cs#L138C13-L143C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.TraceSource/src/TraceSourceFactoryExtensions.cs#L16707566C0-L143C28" }, { "DocsId": "M:Microsoft.Extensions.Logging.TraceSourceFactoryExtensions.AddTraceSource(Microsoft.Extensions.Logging.ILoggingBuilder,System.Diagnostics.SourceSwitch,System.Diagnostics.TraceListener)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.TraceSource/src/TraceSourceFactoryExtensions.cs#L158C13-L164C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.TraceSource/src/TraceSourceFactoryExtensions.cs#L16707566C0-L164C28" } ], "DocsId": "T:Microsoft.Extensions.Logging.TraceSourceFactoryExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.TraceSource/src/TraceSourceFactoryExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.TraceSource/src/TraceSourceFactoryExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.TraceSource.TraceSourceLoggerProvider.#ctor(System.Diagnostics.SourceSwitch)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.TraceSource/src/TraceSourceLoggerProvider.cs#L29C15-L31C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.TraceSource/src/TraceSourceLoggerProvider.cs#L29C15-L31C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.TraceSource.TraceSourceLoggerProvider.#ctor(System.Diagnostics.SourceSwitch,System.Diagnostics.TraceListener)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.TraceSource/src/TraceSourceLoggerProvider.cs#L20C9-L44C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.TraceSource/src/TraceSourceLoggerProvider.cs#L20C9-L44C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.TraceSource.TraceSourceLoggerProvider.CreateLogger(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.TraceSource/src/TraceSourceLoggerProvider.cs#L53C13-L53C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.TraceSource/src/TraceSourceLoggerProvider.cs#L53C13-L53C69" }, { "DocsId": "M:Microsoft.Extensions.Logging.TraceSource.TraceSourceLoggerProvider.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.TraceSource/src/TraceSourceLoggerProvider.cs#L116C13-L125C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.TraceSource/src/TraceSourceLoggerProvider.cs#L116C13-L125C10" } ], "DocsId": "T:Microsoft.Extensions.Logging.TraceSource.TraceSourceLoggerProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging.TraceSource/src/TraceSourceLoggerProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging.TraceSource/src/TraceSourceLoggerProvider.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Logging.json b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Logging.json index 525b924cfbc..5dda43464e6 100644 --- a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Logging.json +++ b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Logging.json @@ -1,293 +1,292 @@ { "Assembly": "Microsoft.Extensions.Logging", - "GUID": "A2F70174B24140DD9133291B75F9F195FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "4F1A8894405841E894A728D4D198DB84FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.LoggingServiceCollectionExtensions.AddLogging(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/LoggingServiceCollectionExtensions.cs#L23C13-L23C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/LoggingServiceCollectionExtensions.cs#L23C13-L23C57" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.LoggingServiceCollectionExtensions.AddLogging(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{Microsoft.Extensions.Logging.ILoggingBuilder})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/LoggingServiceCollectionExtensions.cs#L34C13-L45C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/LoggingServiceCollectionExtensions.cs#L34C13-L45C29" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.LoggingServiceCollectionExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/LoggingServiceCollectionExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/LoggingServiceCollectionExtensions.cs" }, { "Members": [ { "DocsId": "F:Microsoft.Extensions.Logging.ActivityTrackingOptions.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/ActivityTrackingOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/ActivityTrackingOptions.cs" }, { "DocsId": "F:Microsoft.Extensions.Logging.ActivityTrackingOptions.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/ActivityTrackingOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/ActivityTrackingOptions.cs" }, { "DocsId": "F:Microsoft.Extensions.Logging.ActivityTrackingOptions.SpanId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/ActivityTrackingOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/ActivityTrackingOptions.cs" }, { "DocsId": "F:Microsoft.Extensions.Logging.ActivityTrackingOptions.TraceId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/ActivityTrackingOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/ActivityTrackingOptions.cs" }, { "DocsId": "F:Microsoft.Extensions.Logging.ActivityTrackingOptions.ParentId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/ActivityTrackingOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/ActivityTrackingOptions.cs" }, { "DocsId": "F:Microsoft.Extensions.Logging.ActivityTrackingOptions.TraceState", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/ActivityTrackingOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/ActivityTrackingOptions.cs" }, { "DocsId": "F:Microsoft.Extensions.Logging.ActivityTrackingOptions.TraceFlags", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/ActivityTrackingOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/ActivityTrackingOptions.cs" }, { "DocsId": "F:Microsoft.Extensions.Logging.ActivityTrackingOptions.Tags", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/ActivityTrackingOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/ActivityTrackingOptions.cs" }, { "DocsId": "F:Microsoft.Extensions.Logging.ActivityTrackingOptions.Baggage", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/ActivityTrackingOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/ActivityTrackingOptions.cs" } ], "DocsId": "T:Microsoft.Extensions.Logging.ActivityTrackingOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/ActivityTrackingOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/ActivityTrackingOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.FilterLoggingBuilderExtensions.AddFilter(Microsoft.Extensions.Logging.ILoggingBuilder,System.Func{System.String,System.String,Microsoft.Extensions.Logging.LogLevel,System.Boolean})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/FilterLoggingBuilderExtensions.cs#L21C13-L21C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/FilterLoggingBuilderExtensions.cs#L16707566C0-L21C74" }, { "DocsId": "M:Microsoft.Extensions.Logging.FilterLoggingBuilderExtensions.AddFilter(Microsoft.Extensions.Logging.ILoggingBuilder,System.Func{System.String,Microsoft.Extensions.Logging.LogLevel,System.Boolean})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/FilterLoggingBuilderExtensions.cs#L30C13-L30C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/FilterLoggingBuilderExtensions.cs#L16707566C0-L30C87" }, { "DocsId": "M:Microsoft.Extensions.Logging.FilterLoggingBuilderExtensions.AddFilter``1(Microsoft.Extensions.Logging.ILoggingBuilder,System.Func{System.String,Microsoft.Extensions.Logging.LogLevel,System.Boolean})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/FilterLoggingBuilderExtensions.cs#L40C13-L40C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/FilterLoggingBuilderExtensions.cs#L16707566C0-L40C90" }, { "DocsId": "M:Microsoft.Extensions.Logging.FilterLoggingBuilderExtensions.AddFilter(Microsoft.Extensions.Logging.ILoggingBuilder,System.Func{Microsoft.Extensions.Logging.LogLevel,System.Boolean})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/FilterLoggingBuilderExtensions.cs#L49C13-L49C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/FilterLoggingBuilderExtensions.cs#L16707566C0-L49C79" }, { "DocsId": "M:Microsoft.Extensions.Logging.FilterLoggingBuilderExtensions.AddFilter``1(Microsoft.Extensions.Logging.ILoggingBuilder,System.Func{Microsoft.Extensions.Logging.LogLevel,System.Boolean})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/FilterLoggingBuilderExtensions.cs#L59C13-L59C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/FilterLoggingBuilderExtensions.cs#L16707566C0-L59C82" }, { "DocsId": "M:Microsoft.Extensions.Logging.FilterLoggingBuilderExtensions.AddFilter(Microsoft.Extensions.Logging.ILoggingBuilder,System.String,Microsoft.Extensions.Logging.LogLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/FilterLoggingBuilderExtensions.cs#L69C13-L69C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/FilterLoggingBuilderExtensions.cs#L16707566C0-L69C83" }, { "DocsId": "M:Microsoft.Extensions.Logging.FilterLoggingBuilderExtensions.AddFilter``1(Microsoft.Extensions.Logging.ILoggingBuilder,System.String,Microsoft.Extensions.Logging.LogLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/FilterLoggingBuilderExtensions.cs#L80C13-L80C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/FilterLoggingBuilderExtensions.cs#L16707566C0-L80C86" }, { "DocsId": "M:Microsoft.Extensions.Logging.FilterLoggingBuilderExtensions.AddFilter(Microsoft.Extensions.Logging.ILoggingBuilder,System.String,System.Func{Microsoft.Extensions.Logging.LogLevel,System.Boolean})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/FilterLoggingBuilderExtensions.cs#L90C13-L90C89" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/FilterLoggingBuilderExtensions.cs#L16707566C0-L90C89" }, { "DocsId": "M:Microsoft.Extensions.Logging.FilterLoggingBuilderExtensions.AddFilter``1(Microsoft.Extensions.Logging.ILoggingBuilder,System.String,System.Func{Microsoft.Extensions.Logging.LogLevel,System.Boolean})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/FilterLoggingBuilderExtensions.cs#L101C13-L101C92" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/FilterLoggingBuilderExtensions.cs#L16707566C0-L101C92" }, { "DocsId": "M:Microsoft.Extensions.Logging.FilterLoggingBuilderExtensions.AddFilter(Microsoft.Extensions.Logging.LoggerFilterOptions,System.Func{System.String,System.String,Microsoft.Extensions.Logging.LogLevel,System.Boolean})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/FilterLoggingBuilderExtensions.cs#L110C13-L110C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/FilterLoggingBuilderExtensions.cs#L110C13-L110C45" }, { "DocsId": "M:Microsoft.Extensions.Logging.FilterLoggingBuilderExtensions.AddFilter(Microsoft.Extensions.Logging.LoggerFilterOptions,System.Func{System.String,Microsoft.Extensions.Logging.LogLevel,System.Boolean})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/FilterLoggingBuilderExtensions.cs#L119C13-L119C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/FilterLoggingBuilderExtensions.cs#L16707566C0-L119C94" }, { "DocsId": "M:Microsoft.Extensions.Logging.FilterLoggingBuilderExtensions.AddFilter``1(Microsoft.Extensions.Logging.LoggerFilterOptions,System.Func{System.String,Microsoft.Extensions.Logging.LogLevel,System.Boolean})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/FilterLoggingBuilderExtensions.cs#L129C13-L129C120" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/FilterLoggingBuilderExtensions.cs#L16707566C0-L129C120" }, { "DocsId": "M:Microsoft.Extensions.Logging.FilterLoggingBuilderExtensions.AddFilter(Microsoft.Extensions.Logging.LoggerFilterOptions,System.Func{Microsoft.Extensions.Logging.LogLevel,System.Boolean})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/FilterLoggingBuilderExtensions.cs#L138C13-L138C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/FilterLoggingBuilderExtensions.cs#L16707566C0-L138C80" }, { "DocsId": "M:Microsoft.Extensions.Logging.FilterLoggingBuilderExtensions.AddFilter``1(Microsoft.Extensions.Logging.LoggerFilterOptions,System.Func{Microsoft.Extensions.Logging.LogLevel,System.Boolean})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/FilterLoggingBuilderExtensions.cs#L148C13-L148C106" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/FilterLoggingBuilderExtensions.cs#L16707566C0-L148C106" }, { "DocsId": "M:Microsoft.Extensions.Logging.FilterLoggingBuilderExtensions.AddFilter(Microsoft.Extensions.Logging.LoggerFilterOptions,System.String,Microsoft.Extensions.Logging.LogLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/FilterLoggingBuilderExtensions.cs#L158C13-L158C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/FilterLoggingBuilderExtensions.cs#L158C13-L158C63" }, { "DocsId": "M:Microsoft.Extensions.Logging.FilterLoggingBuilderExtensions.AddFilter``1(Microsoft.Extensions.Logging.LoggerFilterOptions,System.String,Microsoft.Extensions.Logging.LogLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/FilterLoggingBuilderExtensions.cs#L169C13-L169C89" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/FilterLoggingBuilderExtensions.cs#L169C13-L169C89" }, { "DocsId": "M:Microsoft.Extensions.Logging.FilterLoggingBuilderExtensions.AddFilter(Microsoft.Extensions.Logging.LoggerFilterOptions,System.String,System.Func{Microsoft.Extensions.Logging.LogLevel,System.Boolean})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/FilterLoggingBuilderExtensions.cs#L179C13-L179C100" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/FilterLoggingBuilderExtensions.cs#L16707566C0-L179C100" }, { "DocsId": "M:Microsoft.Extensions.Logging.FilterLoggingBuilderExtensions.AddFilter``1(Microsoft.Extensions.Logging.LoggerFilterOptions,System.String,System.Func{Microsoft.Extensions.Logging.LogLevel,System.Boolean})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/FilterLoggingBuilderExtensions.cs#L190C13-L190C126" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/FilterLoggingBuilderExtensions.cs#L16707566C0-L190C126" } ], "DocsId": "T:Microsoft.Extensions.Logging.FilterLoggingBuilderExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/FilterLoggingBuilderExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/FilterLoggingBuilderExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.LoggerFactory.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/LoggerFactory.cs#L34C34-L36C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/LoggerFactory.cs#L34C34-L36C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerFactory.#ctor(System.Collections.Generic.IEnumerable{Microsoft.Extensions.Logging.ILoggerProvider})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/LoggerFactory.cs#L42C72-L44C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/LoggerFactory.cs#L42C72-L44C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerFactory.#ctor(System.Collections.Generic.IEnumerable{Microsoft.Extensions.Logging.ILoggerProvider},Microsoft.Extensions.Logging.LoggerFilterOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/LoggerFactory.cs#L51C107-L53C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/LoggerFactory.cs#L51C107-L53C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerFactory.#ctor(System.Collections.Generic.IEnumerable{Microsoft.Extensions.Logging.ILoggerProvider},Microsoft.Extensions.Options.IOptionsMonitor{Microsoft.Extensions.Logging.LoggerFilterOptions})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/LoggerFactory.cs#L60C123-L62C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/LoggerFactory.cs#L60C123-L62C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerFactory.#ctor(System.Collections.Generic.IEnumerable{Microsoft.Extensions.Logging.ILoggerProvider},Microsoft.Extensions.Options.IOptionsMonitor{Microsoft.Extensions.Logging.LoggerFilterOptions},Microsoft.Extensions.Options.IOptions{Microsoft.Extensions.Logging.LoggerFactoryOptions})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/LoggerFactory.cs#L70C164-L72C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/LoggerFactory.cs#L70C164-L72C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerFactory.#ctor(System.Collections.Generic.IEnumerable{Microsoft.Extensions.Logging.ILoggerProvider},Microsoft.Extensions.Options.IOptionsMonitor{Microsoft.Extensions.Logging.LoggerFilterOptions},Microsoft.Extensions.Options.IOptions{Microsoft.Extensions.Logging.LoggerFactoryOptions},Microsoft.Extensions.Logging.IExternalScopeProvider)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/LoggerFactory.cs#L22C9-L104C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/LoggerFactory.cs#L22C9-L104C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerFactory.Create(System.Action{Microsoft.Extensions.Logging.ILoggingBuilder})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/LoggerFactory.cs#L113C13-L117C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/LoggerFactory.cs#L113C13-L117C79" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerFactory.CreateLogger(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/LoggerFactory.cs#L141C13-L161C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/LoggerFactory.cs#L141C13-L161C27" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerFactory.AddProvider(Microsoft.Extensions.Logging.ILoggerProvider)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/LoggerFactory.cs#L170C13-L194C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/LoggerFactory.cs#L170C13-L194C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerFactory.CheckDisposed", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/LoggerFactory.cs#L260C51-L260C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/LoggerFactory.cs#L260C51-L260C60" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerFactory.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/LoggerFactory.cs#L265C13-L286C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/LoggerFactory.cs#L265C13-L286C10" } ], "DocsId": "T:Microsoft.Extensions.Logging.LoggerFactory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/LoggerFactory.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/LoggerFactory.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.LoggerFactoryOptions.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/LoggerFactoryOptions.cs#L17C9-L17C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/LoggerFactoryOptions.cs#L17C9-L17C42" }, { "DocsId": "P:Microsoft.Extensions.Logging.LoggerFactoryOptions.ActivityTrackingOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/LoggerFactoryOptions.cs#L22C66-L22C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/LoggerFactoryOptions.cs#L22C66-L22C70" } ], "DocsId": "T:Microsoft.Extensions.Logging.LoggerFactoryOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/LoggerFactoryOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/LoggerFactoryOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.LoggerFilterOptions.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/LoggerFilterOptions.cs#L23C51-L18C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/LoggerFilterOptions.cs#L23C51-L18C41" }, { "DocsId": "P:Microsoft.Extensions.Logging.LoggerFilterOptions.CaptureScopes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/LoggerFilterOptions.cs#L23C37-L23C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/LoggerFilterOptions.cs#L23C37-L23C41" }, { "DocsId": "P:Microsoft.Extensions.Logging.LoggerFilterOptions.MinLevel", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/LoggerFilterOptions.cs#L28C36-L28C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/LoggerFilterOptions.cs#L28C36-L28C40" }, { "DocsId": "P:Microsoft.Extensions.Logging.LoggerFilterOptions.Rules", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/LoggerFilterOptions.cs#L33C49-L33C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/LoggerFilterOptions.cs#L33C49-L33C62" } ], "DocsId": "T:Microsoft.Extensions.Logging.LoggerFilterOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/LoggerFilterOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/LoggerFilterOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.LoggerFilterRule.#ctor(System.String,System.String,System.Nullable{Microsoft.Extensions.Logging.LogLevel},System.Func{System.String,System.String,Microsoft.Extensions.Logging.LogLevel,System.Boolean})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/LoggerFilterRule.cs#L20C9-L26C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/LoggerFilterRule.cs#L20C9-L26C10" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerFilterRule.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/LoggerFilterRule.cs#L51C13-L51C170" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/LoggerFilterRule.cs#L51C13-L51C170" }, { "DocsId": "P:Microsoft.Extensions.Logging.LoggerFilterRule.ProviderName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/LoggerFilterRule.cs#L31C39-L31C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/LoggerFilterRule.cs#L31C39-L31C43" }, { "DocsId": "P:Microsoft.Extensions.Logging.LoggerFilterRule.CategoryName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/LoggerFilterRule.cs#L36C39-L36C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/LoggerFilterRule.cs#L36C39-L36C43" }, { "DocsId": "P:Microsoft.Extensions.Logging.LoggerFilterRule.LogLevel", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/LoggerFilterRule.cs#L41C37-L41C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/LoggerFilterRule.cs#L41C37-L41C41" }, { "DocsId": "P:Microsoft.Extensions.Logging.LoggerFilterRule.Filter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/LoggerFilterRule.cs#L46C65-L46C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/LoggerFilterRule.cs#L46C65-L46C69" } ], "DocsId": "T:Microsoft.Extensions.Logging.LoggerFilterRule", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/LoggerFilterRule.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/LoggerFilterRule.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.LoggingBuilderExtensions.SetMinimumLevel(Microsoft.Extensions.Logging.ILoggingBuilder,Microsoft.Extensions.Logging.LogLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/LoggingBuilderExtensions.cs#L24C13-L26C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/LoggingBuilderExtensions.cs#L24C13-L26C28" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggingBuilderExtensions.AddProvider(Microsoft.Extensions.Logging.ILoggingBuilder,Microsoft.Extensions.Logging.ILoggerProvider)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/LoggingBuilderExtensions.cs#L37C13-L38C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/LoggingBuilderExtensions.cs#L37C13-L38C28" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggingBuilderExtensions.ClearProviders(Microsoft.Extensions.Logging.ILoggingBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/LoggingBuilderExtensions.cs#L48C13-L49C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/LoggingBuilderExtensions.cs#L48C13-L49C28" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggingBuilderExtensions.Configure(Microsoft.Extensions.Logging.ILoggingBuilder,System.Action{Microsoft.Extensions.Logging.LoggerFactoryOptions})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/LoggingBuilderExtensions.cs#L60C13-L61C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/LoggingBuilderExtensions.cs#L60C13-L61C28" } ], "DocsId": "T:Microsoft.Extensions.Logging.LoggingBuilderExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/LoggingBuilderExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/LoggingBuilderExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.ProviderAliasAttribute.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/ProviderAliasAttribute.cs#L18C9-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/ProviderAliasAttribute.cs#L18C9-L21C10" }, { "DocsId": "P:Microsoft.Extensions.Logging.ProviderAliasAttribute.Alias", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/ProviderAliasAttribute.cs#L26C31-L26C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/ProviderAliasAttribute.cs#L26C31-L26C35" } ], "DocsId": "T:Microsoft.Extensions.Logging.ProviderAliasAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Logging/src/ProviderAliasAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Logging/src/ProviderAliasAttribute.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.ObjectPool.DependencyInjection.json b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.ObjectPool.DependencyInjection.json index 319c3e512e9..21b28df593d 100644 --- a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.ObjectPool.DependencyInjection.json +++ b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.ObjectPool.DependencyInjection.json @@ -1,43 +1,42 @@ { "Assembly": "Microsoft.Extensions.ObjectPool.DependencyInjection", - "GUID": "609144C0B9C547FE85868677AF5C362AFFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "27EE085B421143A68E48E51AC8BABA4DFFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ObjectPoolServiceCollectionExtensions.AddPooled``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{Microsoft.Extensions.ObjectPool.DependencyInjectionPoolOptions})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.ObjectPool.DependencyInjection/ObjectPoolServiceCollectionExtensions.cs#L37C9-L37C74" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.ObjectPool.DependencyInjection/ObjectPoolServiceCollectionExtensions.cs#L37C9-L37C74" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ObjectPoolServiceCollectionExtensions.AddPooled``2(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{Microsoft.Extensions.ObjectPool.DependencyInjectionPoolOptions})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.ObjectPool.DependencyInjection/ObjectPoolServiceCollectionExtensions.cs#L59C9-L59C81" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.ObjectPool.DependencyInjection/ObjectPoolServiceCollectionExtensions.cs#L59C9-L59C81" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ObjectPoolServiceCollectionExtensions.ConfigurePool``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{Microsoft.Extensions.ObjectPool.DependencyInjectionPoolOptions})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.ObjectPool.DependencyInjection/ObjectPoolServiceCollectionExtensions.cs#L72C9-L72C105" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.ObjectPool.DependencyInjection/ObjectPoolServiceCollectionExtensions.cs#L72C9-L72C105" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ObjectPoolServiceCollectionExtensions.ConfigurePools(Microsoft.Extensions.DependencyInjection.IServiceCollection,Microsoft.Extensions.Configuration.IConfigurationSection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.ObjectPool.DependencyInjection/ObjectPoolServiceCollectionExtensions.cs#L83C31-L93C25" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.ObjectPool.DependencyInjection/ObjectPoolServiceCollectionExtensions.cs#L83C31-L93C25" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.ObjectPoolServiceCollectionExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.ObjectPool.DependencyInjection/ObjectPoolServiceCollectionExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.ObjectPool.DependencyInjection/ObjectPoolServiceCollectionExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.ObjectPool.DependencyInjectionPoolOptions.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.ObjectPool.DependencyInjection/DependencyInjectionPoolOptions.cs#L19C41-L19C56" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.ObjectPool.DependencyInjection/DependencyInjectionPoolOptions.cs#L19C41-L19C56" }, { "DocsId": "P:Microsoft.Extensions.ObjectPool.DependencyInjectionPoolOptions.Capacity", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.ObjectPool.DependencyInjection/DependencyInjectionPoolOptions.cs#L19C27-L19C31" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.ObjectPool.DependencyInjection/DependencyInjectionPoolOptions.cs#L19C27-L19C31" } ], "DocsId": "T:Microsoft.Extensions.ObjectPool.DependencyInjectionPoolOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.ObjectPool.DependencyInjection/DependencyInjectionPoolOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.ObjectPool.DependencyInjection/DependencyInjectionPoolOptions.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.ObjectPool.json b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.ObjectPool.json index c10f5c823be..6d1997d7b93 100644 --- a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.ObjectPool.json +++ b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.ObjectPool.json @@ -1,225 +1,224 @@ { "Assembly": "Microsoft.Extensions.ObjectPool", - "GUID": "EE1F64A9FE674B77A99FDD7612BFB20BFFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "5663F953515440FF8BDE59561E1B11F3FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.ObjectPool.DefaultObjectPool`1.#ctor(Microsoft.Extensions.ObjectPool.IPooledObjectPolicy{`0})", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/ObjectPool/src/DefaultObjectPool.cs#L30C11-L32C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/ObjectPool/src/DefaultObjectPool.cs#L30C11-L32C6" }, { "DocsId": "M:Microsoft.Extensions.ObjectPool.DefaultObjectPool`1.#ctor(Microsoft.Extensions.ObjectPool.IPooledObjectPolicy{`0},System.Int32)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/ObjectPool/src/DefaultObjectPool.cs#L22C5-L45C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/ObjectPool/src/DefaultObjectPool.cs#L22C5-L45C6" }, { "DocsId": "M:Microsoft.Extensions.ObjectPool.DefaultObjectPool`1.Get", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/ObjectPool/src/DefaultObjectPool.cs#L50C9-L63C21" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/ObjectPool/src/DefaultObjectPool.cs#L50C9-L63C21" }, { "DocsId": "M:Microsoft.Extensions.ObjectPool.DefaultObjectPool`1.Return(`0)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/ObjectPool/src/DefaultObjectPool.cs#L69C9-L70C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/ObjectPool/src/DefaultObjectPool.cs#L69C9-L70C6" } ], "DocsId": "T:Microsoft.Extensions.ObjectPool.DefaultObjectPool`1", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/ObjectPool/src/DefaultObjectPool.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/ObjectPool/src/DefaultObjectPool.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.ObjectPool.DefaultObjectPoolProvider.Create``1(Microsoft.Extensions.ObjectPool.IPooledObjectPolicy{``0})", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/ObjectPool/src/DefaultObjectPoolProvider.cs#L22C9-L29C66" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/ObjectPool/src/DefaultObjectPoolProvider.cs#L22C9-L29C66" }, { "DocsId": "M:Microsoft.Extensions.ObjectPool.DefaultObjectPoolProvider.#ctor", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/ObjectPool/src/DefaultObjectPoolProvider.cs#L17C48-L17C78" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/ObjectPool/src/DefaultObjectPoolProvider.cs#L17C48-L17C78" }, { "DocsId": "P:Microsoft.Extensions.ObjectPool.DefaultObjectPoolProvider.MaximumRetained", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/ObjectPool/src/DefaultObjectPoolProvider.cs#L17C34-L17C38" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/ObjectPool/src/DefaultObjectPoolProvider.cs#L17C34-L17C38" } ], "DocsId": "T:Microsoft.Extensions.ObjectPool.DefaultObjectPoolProvider", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/ObjectPool/src/DefaultObjectPoolProvider.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/ObjectPool/src/DefaultObjectPoolProvider.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.ObjectPool.DefaultPooledObjectPolicy`1.Create", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/ObjectPool/src/DefaultPooledObjectPolicy.cs#L15C9-L15C24" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/ObjectPool/src/DefaultPooledObjectPolicy.cs#L15C9-L15C24" }, { "DocsId": "M:Microsoft.Extensions.ObjectPool.DefaultPooledObjectPolicy`1.Return(`0)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/ObjectPool/src/DefaultPooledObjectPolicy.cs#L21C9-L26C21" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/ObjectPool/src/DefaultPooledObjectPolicy.cs#L21C9-L26C21" }, { "DocsId": "M:Microsoft.Extensions.ObjectPool.DefaultPooledObjectPolicy`1.#ctor", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/ObjectPool/src/DefaultPooledObjectPolicy.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/ObjectPool/src/DefaultPooledObjectPolicy.cs" } ], "DocsId": "T:Microsoft.Extensions.ObjectPool.DefaultPooledObjectPolicy`1", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/ObjectPool/src/DefaultPooledObjectPolicy.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/ObjectPool/src/DefaultPooledObjectPolicy.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.ObjectPool.IPooledObjectPolicy`1.Create", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/ObjectPool/src/IPooledObjectPolicy.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/ObjectPool/src/IPooledObjectPolicy.cs" }, { "DocsId": "M:Microsoft.Extensions.ObjectPool.IPooledObjectPolicy`1.Return(`0)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/ObjectPool/src/IPooledObjectPolicy.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/ObjectPool/src/IPooledObjectPolicy.cs" } ], "DocsId": "T:Microsoft.Extensions.ObjectPool.IPooledObjectPolicy`1", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/ObjectPool/src/IPooledObjectPolicy.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/ObjectPool/src/IPooledObjectPolicy.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.ObjectPool.IResettable.TryReset", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/ObjectPool/src/IResettable.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/ObjectPool/src/IResettable.cs" } ], "DocsId": "T:Microsoft.Extensions.ObjectPool.IResettable", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/ObjectPool/src/IResettable.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/ObjectPool/src/IResettable.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.ObjectPool.LeakTrackingObjectPool`1.#ctor(Microsoft.Extensions.ObjectPool.ObjectPool{`0})", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/ObjectPool/src/LeakTrackingObjectPool.cs#L24C5-L36C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/ObjectPool/src/LeakTrackingObjectPool.cs#L24C5-L36C6" }, { "DocsId": "M:Microsoft.Extensions.ObjectPool.LeakTrackingObjectPool`1.Get", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/ObjectPool/src/LeakTrackingObjectPool.cs#L41C9-L43C22" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/ObjectPool/src/LeakTrackingObjectPool.cs#L41C9-L43C22" }, { "DocsId": "M:Microsoft.Extensions.ObjectPool.LeakTrackingObjectPool`1.Return(`0)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/ObjectPool/src/LeakTrackingObjectPool.cs#L49C9-L56C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/ObjectPool/src/LeakTrackingObjectPool.cs#L49C9-L56C6" } ], "DocsId": "T:Microsoft.Extensions.ObjectPool.LeakTrackingObjectPool`1", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/ObjectPool/src/LeakTrackingObjectPool.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/ObjectPool/src/LeakTrackingObjectPool.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.ObjectPool.LeakTrackingObjectPoolProvider.#ctor(Microsoft.Extensions.ObjectPool.ObjectPoolProvider)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/ObjectPool/src/LeakTrackingObjectPoolProvider.cs#L23C5-L28C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/ObjectPool/src/LeakTrackingObjectPoolProvider.cs#L23C5-L28C6" }, { "DocsId": "M:Microsoft.Extensions.ObjectPool.LeakTrackingObjectPoolProvider.Create``1(Microsoft.Extensions.ObjectPool.IPooledObjectPolicy{``0})", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/ObjectPool/src/LeakTrackingObjectPoolProvider.cs#L33C9-L34C53" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/ObjectPool/src/LeakTrackingObjectPoolProvider.cs#L33C9-L34C53" } ], "DocsId": "T:Microsoft.Extensions.ObjectPool.LeakTrackingObjectPoolProvider", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/ObjectPool/src/LeakTrackingObjectPoolProvider.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/ObjectPool/src/LeakTrackingObjectPoolProvider.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.ObjectPool.ObjectPool`1.Get", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/ObjectPool/src/ObjectPool.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/ObjectPool/src/ObjectPool.cs" }, { "DocsId": "M:Microsoft.Extensions.ObjectPool.ObjectPool`1.Return(`0)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/ObjectPool/src/ObjectPool.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/ObjectPool/src/ObjectPool.cs" }, { "DocsId": "M:Microsoft.Extensions.ObjectPool.ObjectPool`1.#ctor", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/ObjectPool/src/ObjectPool.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/ObjectPool/src/ObjectPool.cs" } ], "DocsId": "T:Microsoft.Extensions.ObjectPool.ObjectPool`1", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/ObjectPool/src/ObjectPool.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/ObjectPool/src/ObjectPool.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.ObjectPool.ObjectPool.Create``1(Microsoft.Extensions.ObjectPool.IPooledObjectPolicy{``0})", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/ObjectPool/src/ObjectPool.cs#L33C9-L34C78" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/ObjectPool/src/ObjectPool.cs#L33C9-L34C78" } ], "DocsId": "T:Microsoft.Extensions.ObjectPool.ObjectPool", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/ObjectPool/src/ObjectPool.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/ObjectPool/src/ObjectPool.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.ObjectPool.ObjectPoolProvider.Create``1", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/ObjectPool/src/ObjectPoolProvider.cs#L17C9-L17C62" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/ObjectPool/src/ObjectPoolProvider.cs#L17C9-L17C62" }, { "DocsId": "M:Microsoft.Extensions.ObjectPool.ObjectPoolProvider.Create``1(Microsoft.Extensions.ObjectPool.IPooledObjectPolicy{``0})", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/ObjectPool/src/ObjectPoolProvider.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/ObjectPool/src/ObjectPoolProvider.cs" }, { "DocsId": "M:Microsoft.Extensions.ObjectPool.ObjectPoolProvider.#ctor", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/ObjectPool/src/ObjectPoolProvider.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/ObjectPool/src/ObjectPoolProvider.cs" } ], "DocsId": "T:Microsoft.Extensions.ObjectPool.ObjectPoolProvider", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/ObjectPool/src/ObjectPoolProvider.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/ObjectPool/src/ObjectPoolProvider.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.ObjectPool.ObjectPoolProviderExtensions.CreateStringBuilderPool(Microsoft.Extensions.ObjectPool.ObjectPoolProvider)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/ObjectPool/src/ObjectPoolProviderExtensions.cs#L20C9-L20C86" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/ObjectPool/src/ObjectPoolProviderExtensions.cs#L20C9-L20C86" }, { "DocsId": "M:Microsoft.Extensions.ObjectPool.ObjectPoolProviderExtensions.CreateStringBuilderPool(Microsoft.Extensions.ObjectPool.ObjectPoolProvider,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/ObjectPool/src/ObjectPoolProviderExtensions.cs#L36C9-L42C55" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/ObjectPool/src/ObjectPoolProviderExtensions.cs#L36C9-L42C55" } ], "DocsId": "T:Microsoft.Extensions.ObjectPool.ObjectPoolProviderExtensions", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/ObjectPool/src/ObjectPoolProviderExtensions.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/ObjectPool/src/ObjectPoolProviderExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.ObjectPool.PooledObjectPolicy`1.Create", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/ObjectPool/src/PooledObjectPolicy.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/ObjectPool/src/PooledObjectPolicy.cs" }, { "DocsId": "M:Microsoft.Extensions.ObjectPool.PooledObjectPolicy`1.Return(`0)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/ObjectPool/src/PooledObjectPolicy.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/ObjectPool/src/PooledObjectPolicy.cs" }, { "DocsId": "M:Microsoft.Extensions.ObjectPool.PooledObjectPolicy`1.#ctor", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/ObjectPool/src/PooledObjectPolicy.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/ObjectPool/src/PooledObjectPolicy.cs" } ], "DocsId": "T:Microsoft.Extensions.ObjectPool.PooledObjectPolicy`1", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/ObjectPool/src/PooledObjectPolicy.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/ObjectPool/src/PooledObjectPolicy.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.ObjectPool.StringBuilderPooledObjectPolicy.Create", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/ObjectPool/src/StringBuilderPooledObjectPolicy.cs#L29C9-L29C51" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/ObjectPool/src/StringBuilderPooledObjectPolicy.cs#L29C9-L29C51" }, { "DocsId": "M:Microsoft.Extensions.ObjectPool.StringBuilderPooledObjectPolicy.Return(System.Text.StringBuilder)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/ObjectPool/src/StringBuilderPooledObjectPolicy.cs#L35C9-L42C21" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/ObjectPool/src/StringBuilderPooledObjectPolicy.cs#L35C9-L42C21" }, { "DocsId": "M:Microsoft.Extensions.ObjectPool.StringBuilderPooledObjectPolicy.#ctor", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/ObjectPool/src/StringBuilderPooledObjectPolicy.cs#L17C48-L24C64" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/ObjectPool/src/StringBuilderPooledObjectPolicy.cs#L17C48-L24C64" }, { "DocsId": "P:Microsoft.Extensions.ObjectPool.StringBuilderPooledObjectPolicy.InitialCapacity", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/ObjectPool/src/StringBuilderPooledObjectPolicy.cs#L17C34-L17C38" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/ObjectPool/src/StringBuilderPooledObjectPolicy.cs#L17C34-L17C38" }, { "DocsId": "P:Microsoft.Extensions.ObjectPool.StringBuilderPooledObjectPolicy.MaximumRetainedCapacity", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/ObjectPool/src/StringBuilderPooledObjectPolicy.cs#L24C42-L24C46" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/ObjectPool/src/StringBuilderPooledObjectPolicy.cs#L24C42-L24C46" } ], "DocsId": "T:Microsoft.Extensions.ObjectPool.StringBuilderPooledObjectPolicy", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/ObjectPool/src/StringBuilderPooledObjectPolicy.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/ObjectPool/src/StringBuilderPooledObjectPolicy.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Options.ConfigurationExtensions.json b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Options.ConfigurationExtensions.json index fbeee1b0974..6d74ed39bfd 100644 --- a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Options.ConfigurationExtensions.json +++ b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Options.ConfigurationExtensions.json @@ -1,93 +1,92 @@ { "Assembly": "Microsoft.Extensions.Options.ConfigurationExtensions", - "GUID": "8D61C84BDE4A441ABF573184693B8AE5FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "9C85C66A23594C4695391AD339305EBAFFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.OptionsBuilderConfigurationExtensions.Bind``1(Microsoft.Extensions.Options.OptionsBuilder{``0},Microsoft.Extensions.Configuration.IConfiguration)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options.ConfigurationExtensions/src/OptionsBuilderConfigurationExtensions.cs#L29C16-L29C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options.ConfigurationExtensions/src/OptionsBuilderConfigurationExtensions.cs#L29C16-L29C53" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.OptionsBuilderConfigurationExtensions.Bind``1(Microsoft.Extensions.Options.OptionsBuilder{``0},Microsoft.Extensions.Configuration.IConfiguration,System.Action{Microsoft.Extensions.Configuration.BinderOptions})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options.ConfigurationExtensions/src/OptionsBuilderConfigurationExtensions.cs#L43C13-L46C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options.ConfigurationExtensions/src/OptionsBuilderConfigurationExtensions.cs#L43C13-L46C35" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.OptionsBuilderConfigurationExtensions.BindConfiguration``1(Microsoft.Extensions.Options.OptionsBuilder{``0},System.String,System.Action{Microsoft.Extensions.Configuration.BinderOptions})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options.ConfigurationExtensions/src/OptionsBuilderConfigurationExtensions.cs#L70C13-L86C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options.ConfigurationExtensions/src/OptionsBuilderConfigurationExtensions.cs#L16707566C0-L86C35" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.OptionsBuilderConfigurationExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options.ConfigurationExtensions/src/OptionsBuilderConfigurationExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options.ConfigurationExtensions/src/OptionsBuilderConfigurationExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.OptionsConfigurationServiceCollectionExtensions.Configure``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,Microsoft.Extensions.Configuration.IConfiguration)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options.ConfigurationExtensions/src/OptionsConfigurationServiceCollectionExtensions.cs#L26C16-L26C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options.ConfigurationExtensions/src/OptionsConfigurationServiceCollectionExtensions.cs#L26C16-L26C81" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.OptionsConfigurationServiceCollectionExtensions.Configure``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.String,Microsoft.Extensions.Configuration.IConfiguration)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options.ConfigurationExtensions/src/OptionsConfigurationServiceCollectionExtensions.cs#L39C16-L39C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options.ConfigurationExtensions/src/OptionsConfigurationServiceCollectionExtensions.cs#L39C16-L39C68" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.OptionsConfigurationServiceCollectionExtensions.Configure``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,Microsoft.Extensions.Configuration.IConfiguration,System.Action{Microsoft.Extensions.Configuration.BinderOptions})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options.ConfigurationExtensions/src/OptionsConfigurationServiceCollectionExtensions.cs#L53C16-L53C98" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options.ConfigurationExtensions/src/OptionsConfigurationServiceCollectionExtensions.cs#L53C16-L53C98" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.OptionsConfigurationServiceCollectionExtensions.Configure``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.String,Microsoft.Extensions.Configuration.IConfiguration,System.Action{Microsoft.Extensions.Configuration.BinderOptions})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options.ConfigurationExtensions/src/OptionsConfigurationServiceCollectionExtensions.cs#L69C13-L74C156" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options.ConfigurationExtensions/src/OptionsConfigurationServiceCollectionExtensions.cs#L69C13-L74C156" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.OptionsConfigurationServiceCollectionExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options.ConfigurationExtensions/src/OptionsConfigurationServiceCollectionExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options.ConfigurationExtensions/src/OptionsConfigurationServiceCollectionExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.ConfigurationChangeTokenSource`1.#ctor(Microsoft.Extensions.Configuration.IConfiguration)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options.ConfigurationExtensions/src/ConfigurationChangeTokenSource.cs#L23C72-L25C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options.ConfigurationExtensions/src/ConfigurationChangeTokenSource.cs#L23C72-L25C10" }, { "DocsId": "M:Microsoft.Extensions.Options.ConfigurationChangeTokenSource`1.#ctor(System.String,Microsoft.Extensions.Configuration.IConfiguration)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options.ConfigurationExtensions/src/ConfigurationChangeTokenSource.cs#L32C9-L38C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options.ConfigurationExtensions/src/ConfigurationChangeTokenSource.cs#L32C9-L38C10" }, { "DocsId": "M:Microsoft.Extensions.Options.ConfigurationChangeTokenSource`1.GetChangeToken", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options.ConfigurationExtensions/src/ConfigurationChangeTokenSource.cs#L51C13-L51C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options.ConfigurationExtensions/src/ConfigurationChangeTokenSource.cs#L51C13-L51C45" }, { "DocsId": "P:Microsoft.Extensions.Options.ConfigurationChangeTokenSource`1.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options.ConfigurationExtensions/src/ConfigurationChangeTokenSource.cs#L43C30-L43C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options.ConfigurationExtensions/src/ConfigurationChangeTokenSource.cs#L43C30-L43C34" } ], "DocsId": "T:Microsoft.Extensions.Options.ConfigurationChangeTokenSource`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options.ConfigurationExtensions/src/ConfigurationChangeTokenSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options.ConfigurationExtensions/src/ConfigurationChangeTokenSource.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.ConfigureFromConfigurationOptions`1.#ctor(Microsoft.Extensions.Configuration.IConfiguration)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options.ConfigurationExtensions/src/ConfigureFromConfigurationOptions.cs#L28C15-L31C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options.ConfigurationExtensions/src/ConfigureFromConfigurationOptions.cs#L16707566C0-L31C10" } ], "DocsId": "T:Microsoft.Extensions.Options.ConfigureFromConfigurationOptions`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options.ConfigurationExtensions/src/ConfigureFromConfigurationOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options.ConfigurationExtensions/src/ConfigureFromConfigurationOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.NamedConfigureFromConfigurationOptions`1.#ctor(System.String,Microsoft.Extensions.Configuration.IConfiguration)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options.ConfigurationExtensions/src/NamedConfigureFromConfigurationOptions.cs#L26C15-L27C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options.ConfigurationExtensions/src/NamedConfigureFromConfigurationOptions.cs#L26C15-L27C12" }, { "DocsId": "M:Microsoft.Extensions.Options.NamedConfigureFromConfigurationOptions`1.#ctor(System.String,Microsoft.Extensions.Configuration.IConfiguration,System.Action{Microsoft.Extensions.Configuration.BinderOptions})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options.ConfigurationExtensions/src/NamedConfigureFromConfigurationOptions.cs#L38C15-L41C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options.ConfigurationExtensions/src/NamedConfigureFromConfigurationOptions.cs#L16707566C0-L41C10" } ], "DocsId": "T:Microsoft.Extensions.Options.NamedConfigureFromConfigurationOptions`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options.ConfigurationExtensions/src/NamedConfigureFromConfigurationOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options.ConfigurationExtensions/src/NamedConfigureFromConfigurationOptions.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Options.Contextual.json b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Options.Contextual.json index 3284cfc11fc..64946c0061f 100644 --- a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Options.Contextual.json +++ b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Options.Contextual.json @@ -1,121 +1,120 @@ { "Assembly": "Microsoft.Extensions.Options.Contextual", - "GUID": "9B67D651258E4026B108BC7533A8C439FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "3DE4749D4E1342A194C1C9E5749BCF8EFFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.Contextual.IContextualOptions`2.GetAsync(`1@|System.Runtime.InteropServices.InAttribute,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Options.Contextual/IContextualOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Options.Contextual/IContextualOptions.cs" } ], "DocsId": "T:Microsoft.Extensions.Options.Contextual.IContextualOptions`2", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Options.Contextual/IContextualOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Options.Contextual/IContextualOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.Contextual.INamedContextualOptions`2.GetAsync(System.String,`1@|System.Runtime.InteropServices.InAttribute,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Options.Contextual/INamedContextualOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Options.Contextual/INamedContextualOptions.cs" } ], "DocsId": "T:Microsoft.Extensions.Options.Contextual.INamedContextualOptions`2", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Options.Contextual/INamedContextualOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Options.Contextual/INamedContextualOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.Contextual.IOptionsContext.PopulateReceiver``1(``0)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Options.Contextual/IOptionsContext.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Options.Contextual/IOptionsContext.cs" } ], "DocsId": "T:Microsoft.Extensions.Options.Contextual.IOptionsContext", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Options.Contextual/IOptionsContext.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Options.Contextual/IOptionsContext.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.Contextual.OptionsContextAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Options.Contextual/OptionsContextAttribute.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Options.Contextual/OptionsContextAttribute.cs" } ], "DocsId": "T:Microsoft.Extensions.Options.Contextual.OptionsContextAttribute", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Options.Contextual/OptionsContextAttribute.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Options.Contextual/OptionsContextAttribute.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.Contextual.Provider.IConfigureContextualOptions`1.Configure(`0)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Options.Contextual/Provider/IConfigureContextualOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Options.Contextual/Provider/IConfigureContextualOptions.cs" } ], "DocsId": "T:Microsoft.Extensions.Options.Contextual.Provider.IConfigureContextualOptions`1", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Options.Contextual/Provider/IConfigureContextualOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Options.Contextual/Provider/IConfigureContextualOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.Contextual.Provider.ILoadContextualOptions`1.LoadAsync``1(System.String,``0@|System.Runtime.InteropServices.InAttribute,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Options.Contextual/Provider/ILoadContextualOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Options.Contextual/Provider/ILoadContextualOptions.cs" } ], "DocsId": "T:Microsoft.Extensions.Options.Contextual.Provider.ILoadContextualOptions`1", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Options.Contextual/Provider/ILoadContextualOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Options.Contextual/Provider/ILoadContextualOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.Contextual.Provider.IOptionsContextReceiver.Receive``1(System.String,``0)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Options.Contextual/Provider/IOptionsContextReceiver.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Options.Contextual/Provider/IOptionsContextReceiver.cs" } ], "DocsId": "T:Microsoft.Extensions.Options.Contextual.Provider.IOptionsContextReceiver", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Options.Contextual/Provider/IOptionsContextReceiver.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Options.Contextual/Provider/IOptionsContextReceiver.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.Contextual.Provider.NullConfigureContextualOptions.GetInstance``1", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Options.Contextual/Provider/NullConfigureContextualOptions.cs#L19C12-L19C61" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Options.Contextual/Provider/NullConfigureContextualOptions.cs#L19C12-L19C61" } ], "DocsId": "T:Microsoft.Extensions.Options.Contextual.Provider.NullConfigureContextualOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Options.Contextual/Provider/NullConfigureContextualOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Options.Contextual/Provider/NullConfigureContextualOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ContextualOptionsServiceCollectionExtensions.AddContextualOptions(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Options.Contextual/ContextualOptionsServiceCollectionExtensions.cs#L27C9-L33C25" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Options.Contextual/ContextualOptionsServiceCollectionExtensions.cs#L27C9-L33C25" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ContextualOptionsServiceCollectionExtensions.Configure``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Func{Microsoft.Extensions.Options.Contextual.IOptionsContext,System.Threading.CancellationToken,System.Threading.Tasks.ValueTask{Microsoft.Extensions.Options.Contextual.Provider.IConfigureContextualOptions{``0}}})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Options.Contextual/ContextualOptionsServiceCollectionExtensions.cs#L47C12-L47C86" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Options.Contextual/ContextualOptionsServiceCollectionExtensions.cs#L47C12-L47C86" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ContextualOptionsServiceCollectionExtensions.Configure``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.String,System.Func{Microsoft.Extensions.Options.Contextual.IOptionsContext,System.Threading.CancellationToken,System.Threading.Tasks.ValueTask{Microsoft.Extensions.Options.Contextual.Provider.IConfigureContextualOptions{``0}}})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Options.Contextual/ContextualOptionsServiceCollectionExtensions.cs#L62C12-L67C48" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Options.Contextual/ContextualOptionsServiceCollectionExtensions.cs#L62C12-L67C48" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ContextualOptionsServiceCollectionExtensions.Configure``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{Microsoft.Extensions.Options.Contextual.IOptionsContext,``0})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Options.Contextual/ContextualOptionsServiceCollectionExtensions.cs#L80C12-L80C84" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Options.Contextual/ContextualOptionsServiceCollectionExtensions.cs#L80C12-L80C84" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ContextualOptionsServiceCollectionExtensions.Configure``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.String,System.Action{Microsoft.Extensions.Options.Contextual.IOptionsContext,``0})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Options.Contextual/ContextualOptionsServiceCollectionExtensions.cs#L95C9-L100C117" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Options.Contextual/ContextualOptionsServiceCollectionExtensions.cs#L16707566C0-L100C117" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ContextualOptionsServiceCollectionExtensions.ConfigureAll``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Func{Microsoft.Extensions.Options.Contextual.IOptionsContext,System.Threading.CancellationToken,System.Threading.Tasks.ValueTask{Microsoft.Extensions.Options.Contextual.Provider.IConfigureContextualOptions{``0}}})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Options.Contextual/ContextualOptionsServiceCollectionExtensions.cs#L114C12-L114C69" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Options.Contextual/ContextualOptionsServiceCollectionExtensions.cs#L114C12-L114C69" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ContextualOptionsServiceCollectionExtensions.ConfigureAll``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{Microsoft.Extensions.Options.Contextual.IOptionsContext,``0})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Options.Contextual/ContextualOptionsServiceCollectionExtensions.cs#L125C12-L125C67" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Options.Contextual/ContextualOptionsServiceCollectionExtensions.cs#L125C12-L125C67" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.ContextualOptionsServiceCollectionExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Options.Contextual/ContextualOptionsServiceCollectionExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Options.Contextual/ContextualOptionsServiceCollectionExtensions.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Options.DataAnnotations.json b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Options.DataAnnotations.json index 8cace76aea5..97198e2cd4c 100644 --- a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Options.DataAnnotations.json +++ b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Options.DataAnnotations.json @@ -1,35 +1,34 @@ { "Assembly": "Microsoft.Extensions.Options.DataAnnotations", - "GUID": "6117A25CB724402DBC96AAB405F5B079FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "0F6A54F5081C4D3CA02AA3F17AFF07ECFFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.OptionsBuilderDataAnnotationsExtensions.ValidateDataAnnotations``1(Microsoft.Extensions.Options.OptionsBuilder{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options.DataAnnotations/src/OptionsBuilderDataAnnotationsExtensions.cs#L24C13-L25C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options.DataAnnotations/src/OptionsBuilderDataAnnotationsExtensions.cs#L24C13-L25C35" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.OptionsBuilderDataAnnotationsExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options.DataAnnotations/src/OptionsBuilderDataAnnotationsExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options.DataAnnotations/src/OptionsBuilderDataAnnotationsExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.DataAnnotationValidateOptions`1.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options.DataAnnotations/src/DataAnnotationValidateOptions.cs#L28C9-L31C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options.DataAnnotations/src/DataAnnotationValidateOptions.cs#L28C9-L31C10" }, { "DocsId": "M:Microsoft.Extensions.Options.DataAnnotationValidateOptions`1.Validate(System.String,`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options.DataAnnotations/src/DataAnnotationValidateOptions.cs#L49C13-L69C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options.DataAnnotations/src/DataAnnotationValidateOptions.cs#L49C13-L69C55" }, { "DocsId": "P:Microsoft.Extensions.Options.DataAnnotationValidateOptions`1.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options.DataAnnotations/src/DataAnnotationValidateOptions.cs#L36C31-L36C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options.DataAnnotations/src/DataAnnotationValidateOptions.cs#L36C31-L36C35" } ], "DocsId": "T:Microsoft.Extensions.Options.DataAnnotationValidateOptions`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options.DataAnnotations/src/DataAnnotationValidateOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options.DataAnnotations/src/DataAnnotationValidateOptions.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Options.json b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Options.json index 9c8a1551ffc..f0cd97060b4 100644 --- a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Options.json +++ b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Options.json @@ -1,1271 +1,1270 @@ { "Assembly": "Microsoft.Extensions.Options", - "GUID": "03F055241D224C3FB9E3A8131C16A673FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "BF82E216FA4F4A1AA061B217E027E3D4FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.OptionsBuilderExtensions.ValidateOnStart``1(Microsoft.Extensions.Options.OptionsBuilder{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilderExtensions.cs#L26C13-L37C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilderExtensions.cs#L16707566C0-L37C35" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.OptionsBuilderExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilderExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilderExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.OptionsServiceCollectionExtensions.AddOptions(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsServiceCollectionExtensions.cs#L24C13-L31C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsServiceCollectionExtensions.cs#L24C13-L31C29" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.OptionsServiceCollectionExtensions.AddOptionsWithValidateOnStart``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsServiceCollectionExtensions.cs#L50C13-L50C114" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsServiceCollectionExtensions.cs#L50C13-L50C114" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.OptionsServiceCollectionExtensions.AddOptionsWithValidateOnStart``2(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsServiceCollectionExtensions.cs#L72C13-L73C114" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsServiceCollectionExtensions.cs#L72C13-L73C114" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.OptionsServiceCollectionExtensions.Configure``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsServiceCollectionExtensions.cs#L84C16-L84C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsServiceCollectionExtensions.cs#L84C16-L84C81" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.OptionsServiceCollectionExtensions.Configure``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.String,System.Action{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsServiceCollectionExtensions.cs#L98C13-L103C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsServiceCollectionExtensions.cs#L98C13-L103C29" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.OptionsServiceCollectionExtensions.ConfigureAll``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsServiceCollectionExtensions.cs#L114C16-L114C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsServiceCollectionExtensions.cs#L114C16-L114C82" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.OptionsServiceCollectionExtensions.PostConfigure``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsServiceCollectionExtensions.cs#L125C16-L125C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsServiceCollectionExtensions.cs#L125C16-L125C85" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.OptionsServiceCollectionExtensions.PostConfigure``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.String,System.Action{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsServiceCollectionExtensions.cs#L139C13-L144C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsServiceCollectionExtensions.cs#L139C13-L144C29" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.OptionsServiceCollectionExtensions.PostConfigureAll``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsServiceCollectionExtensions.cs#L156C16-L156C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsServiceCollectionExtensions.cs#L156C16-L156C86" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.OptionsServiceCollectionExtensions.ConfigureOptions``1(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsServiceCollectionExtensions.cs#L169C20-L169C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsServiceCollectionExtensions.cs#L169C20-L169C72" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.OptionsServiceCollectionExtensions.ConfigureOptions(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsServiceCollectionExtensions.cs#L216C13-L230C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsServiceCollectionExtensions.cs#L216C13-L230C29" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.OptionsServiceCollectionExtensions.ConfigureOptions(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsServiceCollectionExtensions.cs#L243C13-L258C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsServiceCollectionExtensions.cs#L243C13-L258C29" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.OptionsServiceCollectionExtensions.AddOptions``1(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsServiceCollectionExtensions.cs#L268C16-L268C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsServiceCollectionExtensions.cs#L268C16-L268C74" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.OptionsServiceCollectionExtensions.AddOptions``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsServiceCollectionExtensions.cs#L280C13-L283C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsServiceCollectionExtensions.cs#L280C13-L283C65" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.OptionsServiceCollectionExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsServiceCollectionExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsServiceCollectionExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.ConfigureNamedOptions`1.#ctor(System.String,System.Action{`0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L19C9-L23C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L19C9-L23C10" }, { "DocsId": "M:Microsoft.Extensions.Options.ConfigureNamedOptions`1.Configure(System.String,`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L42C13-L49C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L42C13-L49C10" }, { "DocsId": "M:Microsoft.Extensions.Options.ConfigureNamedOptions`1.Configure(`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L55C52-L55C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L55C52-L55C91" }, { "DocsId": "P:Microsoft.Extensions.Options.ConfigureNamedOptions`1.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L28C31-L28C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L28C31-L28C35" }, { "DocsId": "P:Microsoft.Extensions.Options.ConfigureNamedOptions`1.Action", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L33C43-L33C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L33C43-L33C47" } ], "DocsId": "T:Microsoft.Extensions.Options.ConfigureNamedOptions`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.ConfigureNamedOptions`2.#ctor(System.String,`1,System.Action{`0,`1})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L73C9-L78C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L73C9-L78C10" }, { "DocsId": "M:Microsoft.Extensions.Options.ConfigureNamedOptions`2.Configure(System.String,`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L102C13-L109C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L102C13-L109C10" }, { "DocsId": "M:Microsoft.Extensions.Options.ConfigureNamedOptions`2.Configure(`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L115C52-L115C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L115C52-L115C91" }, { "DocsId": "P:Microsoft.Extensions.Options.ConfigureNamedOptions`2.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L83C31-L83C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L83C31-L83C35" }, { "DocsId": "P:Microsoft.Extensions.Options.ConfigureNamedOptions`2.Action", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L88C49-L88C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L88C49-L88C53" }, { "DocsId": "P:Microsoft.Extensions.Options.ConfigureNamedOptions`2.Dependency", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L93C34-L93C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L93C34-L93C38" } ], "DocsId": "T:Microsoft.Extensions.Options.ConfigureNamedOptions`2", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.ConfigureNamedOptions`3.#ctor(System.String,`1,`2,System.Action{`0,`1,`2})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L136C9-L142C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L136C9-L142C10" }, { "DocsId": "M:Microsoft.Extensions.Options.ConfigureNamedOptions`3.Configure(System.String,`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L171C13-L178C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L171C13-L178C10" }, { "DocsId": "M:Microsoft.Extensions.Options.ConfigureNamedOptions`3.Configure(`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L184C52-L184C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L184C52-L184C91" }, { "DocsId": "P:Microsoft.Extensions.Options.ConfigureNamedOptions`3.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L147C31-L147C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L147C31-L147C35" }, { "DocsId": "P:Microsoft.Extensions.Options.ConfigureNamedOptions`3.Action", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L152C57-L152C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L152C57-L152C61" }, { "DocsId": "P:Microsoft.Extensions.Options.ConfigureNamedOptions`3.Dependency1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L157C36-L157C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L157C36-L157C40" }, { "DocsId": "P:Microsoft.Extensions.Options.ConfigureNamedOptions`3.Dependency2", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L162C36-L162C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L162C36-L162C40" } ], "DocsId": "T:Microsoft.Extensions.Options.ConfigureNamedOptions`3", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.ConfigureNamedOptions`4.#ctor(System.String,`1,`2,`3,System.Action{`0,`1,`2,`3})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L208C9-L215C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L208C9-L215C10" }, { "DocsId": "M:Microsoft.Extensions.Options.ConfigureNamedOptions`4.Configure(System.String,`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L249C13-L256C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L249C13-L256C10" }, { "DocsId": "M:Microsoft.Extensions.Options.ConfigureNamedOptions`4.Configure(`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L262C52-L262C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L262C52-L262C91" }, { "DocsId": "P:Microsoft.Extensions.Options.ConfigureNamedOptions`4.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L220C31-L220C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L220C31-L220C35" }, { "DocsId": "P:Microsoft.Extensions.Options.ConfigureNamedOptions`4.Action", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L225C64-L225C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L225C64-L225C68" }, { "DocsId": "P:Microsoft.Extensions.Options.ConfigureNamedOptions`4.Dependency1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L230C36-L230C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L230C36-L230C40" }, { "DocsId": "P:Microsoft.Extensions.Options.ConfigureNamedOptions`4.Dependency2", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L235C36-L235C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L235C36-L235C40" }, { "DocsId": "P:Microsoft.Extensions.Options.ConfigureNamedOptions`4.Dependency3", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L240C36-L240C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L240C36-L240C40" } ], "DocsId": "T:Microsoft.Extensions.Options.ConfigureNamedOptions`4", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.ConfigureNamedOptions`5.#ctor(System.String,`1,`2,`3,`4,System.Action{`0,`1,`2,`3,`4})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L289C9-L297C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L289C9-L297C10" }, { "DocsId": "M:Microsoft.Extensions.Options.ConfigureNamedOptions`5.Configure(System.String,`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L336C13-L343C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L336C13-L343C10" }, { "DocsId": "M:Microsoft.Extensions.Options.ConfigureNamedOptions`5.Configure(`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L349C52-L349C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L349C52-L349C91" }, { "DocsId": "P:Microsoft.Extensions.Options.ConfigureNamedOptions`5.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L302C31-L302C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L302C31-L302C35" }, { "DocsId": "P:Microsoft.Extensions.Options.ConfigureNamedOptions`5.Action", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L307C71-L307C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L307C71-L307C75" }, { "DocsId": "P:Microsoft.Extensions.Options.ConfigureNamedOptions`5.Dependency1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L312C36-L312C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L312C36-L312C40" }, { "DocsId": "P:Microsoft.Extensions.Options.ConfigureNamedOptions`5.Dependency2", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L317C36-L317C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L317C36-L317C40" }, { "DocsId": "P:Microsoft.Extensions.Options.ConfigureNamedOptions`5.Dependency3", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L322C36-L322C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L322C36-L322C40" }, { "DocsId": "P:Microsoft.Extensions.Options.ConfigureNamedOptions`5.Dependency4", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L327C36-L327C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L327C36-L327C40" } ], "DocsId": "T:Microsoft.Extensions.Options.ConfigureNamedOptions`5", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.ConfigureNamedOptions`6.#ctor(System.String,`1,`2,`3,`4,`5,System.Action{`0,`1,`2,`3,`4,`5})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L379C9-L388C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L379C9-L388C10" }, { "DocsId": "M:Microsoft.Extensions.Options.ConfigureNamedOptions`6.Configure(System.String,`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L432C13-L439C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L432C13-L439C10" }, { "DocsId": "M:Microsoft.Extensions.Options.ConfigureNamedOptions`6.Configure(`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L445C52-L445C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L445C52-L445C91" }, { "DocsId": "P:Microsoft.Extensions.Options.ConfigureNamedOptions`6.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L393C31-L393C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L393C31-L393C35" }, { "DocsId": "P:Microsoft.Extensions.Options.ConfigureNamedOptions`6.Action", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L398C78-L398C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L398C78-L398C82" }, { "DocsId": "P:Microsoft.Extensions.Options.ConfigureNamedOptions`6.Dependency1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L403C36-L403C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L403C36-L403C40" }, { "DocsId": "P:Microsoft.Extensions.Options.ConfigureNamedOptions`6.Dependency2", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L408C36-L408C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L408C36-L408C40" }, { "DocsId": "P:Microsoft.Extensions.Options.ConfigureNamedOptions`6.Dependency3", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L413C36-L413C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L413C36-L413C40" }, { "DocsId": "P:Microsoft.Extensions.Options.ConfigureNamedOptions`6.Dependency4", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L418C36-L418C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L418C36-L418C40" }, { "DocsId": "P:Microsoft.Extensions.Options.ConfigureNamedOptions`6.Dependency5", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L423C36-L423C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs#L423C36-L423C40" } ], "DocsId": "T:Microsoft.Extensions.Options.ConfigureNamedOptions`6", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureNamedOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.ConfigureOptions`1.#ctor(System.Action{`0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureOptions.cs#L18C9-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureOptions.cs#L18C9-L21C10" }, { "DocsId": "M:Microsoft.Extensions.Options.ConfigureOptions`1.Configure(`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureOptions.cs#L34C13-L37C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureOptions.cs#L34C13-L37C10" }, { "DocsId": "P:Microsoft.Extensions.Options.ConfigureOptions`1.Action", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureOptions.cs#L26C43-L26C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureOptions.cs#L26C43-L26C47" } ], "DocsId": "T:Microsoft.Extensions.Options.ConfigureOptions`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ConfigureOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ConfigureOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.IConfigureNamedOptions`1.Configure(System.String,`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/IConfigureNamedOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/IConfigureNamedOptions.cs" } ], "DocsId": "T:Microsoft.Extensions.Options.IConfigureNamedOptions`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/IConfigureNamedOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/IConfigureNamedOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.IConfigureOptions`1.Configure(`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/IConfigureOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/IConfigureOptions.cs" } ], "DocsId": "T:Microsoft.Extensions.Options.IConfigureOptions`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/IConfigureOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/IConfigureOptions.cs" }, { "Members": [ { "DocsId": "P:Microsoft.Extensions.Options.IOptions`1.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/IOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/IOptions.cs" } ], "DocsId": "T:Microsoft.Extensions.Options.IOptions`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/IOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/IOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.IOptionsChangeTokenSource`1.GetChangeToken", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/IOptionsChangeTokenSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/IOptionsChangeTokenSource.cs" }, { "DocsId": "P:Microsoft.Extensions.Options.IOptionsChangeTokenSource`1.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/IOptionsChangeTokenSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/IOptionsChangeTokenSource.cs" } ], "DocsId": "T:Microsoft.Extensions.Options.IOptionsChangeTokenSource`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/IOptionsChangeTokenSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/IOptionsChangeTokenSource.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.IOptionsFactory`1.Create(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/IOptionsFactory.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/IOptionsFactory.cs" } ], "DocsId": "T:Microsoft.Extensions.Options.IOptionsFactory`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/IOptionsFactory.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/IOptionsFactory.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.IOptionsMonitor`1.Get(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/IOptionsMonitor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/IOptionsMonitor.cs" }, { "DocsId": "M:Microsoft.Extensions.Options.IOptionsMonitor`1.OnChange(System.Action{`0,System.String})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/IOptionsMonitor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/IOptionsMonitor.cs" }, { "DocsId": "P:Microsoft.Extensions.Options.IOptionsMonitor`1.CurrentValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/IOptionsMonitor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/IOptionsMonitor.cs" } ], "DocsId": "T:Microsoft.Extensions.Options.IOptionsMonitor`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/IOptionsMonitor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/IOptionsMonitor.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.IOptionsMonitorCache`1.GetOrAdd(System.String,System.Func{`0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/IOptionsMonitorCache.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/IOptionsMonitorCache.cs" }, { "DocsId": "M:Microsoft.Extensions.Options.IOptionsMonitorCache`1.TryAdd(System.String,`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/IOptionsMonitorCache.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/IOptionsMonitorCache.cs" }, { "DocsId": "M:Microsoft.Extensions.Options.IOptionsMonitorCache`1.TryRemove(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/IOptionsMonitorCache.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/IOptionsMonitorCache.cs" }, { "DocsId": "M:Microsoft.Extensions.Options.IOptionsMonitorCache`1.Clear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/IOptionsMonitorCache.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/IOptionsMonitorCache.cs" } ], "DocsId": "T:Microsoft.Extensions.Options.IOptionsMonitorCache`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/IOptionsMonitorCache.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/IOptionsMonitorCache.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.IOptionsSnapshot`1.Get(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/IOptionsSnapshot.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/IOptionsSnapshot.cs" } ], "DocsId": "T:Microsoft.Extensions.Options.IOptionsSnapshot`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/IOptionsSnapshot.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/IOptionsSnapshot.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.IPostConfigureOptions`1.PostConfigure(System.String,`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/IPostConfigureOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/IPostConfigureOptions.cs" } ], "DocsId": "T:Microsoft.Extensions.Options.IPostConfigureOptions`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/IPostConfigureOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/IPostConfigureOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.IStartupValidator.Validate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/IStartupValidator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/IStartupValidator.cs" } ], "DocsId": "T:Microsoft.Extensions.Options.IStartupValidator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/IStartupValidator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/IStartupValidator.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.IValidateOptions`1.Validate(System.String,`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/IValidateOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/IValidateOptions.cs" } ], "DocsId": "T:Microsoft.Extensions.Options.IValidateOptions`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/IValidateOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/IValidateOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.Options.Create``1(``0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/Options.cs#L30C13-L30C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/Options.cs#L30C13-L30C58" }, { "DocsId": "F:Microsoft.Extensions.Options.Options.DefaultName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/Options.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/Options.cs" } ], "DocsId": "T:Microsoft.Extensions.Options.Options", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/Options.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/Options.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.OptionsBuilder`1.#ctor(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L32C9-L38C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L32C9-L38C10" }, { "DocsId": "M:Microsoft.Extensions.Options.OptionsBuilder`1.Configure(System.Action{`0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L48C13-L51C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L48C13-L51C25" }, { "DocsId": "M:Microsoft.Extensions.Options.OptionsBuilder`1.Configure``1(System.Action{`0,``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L64C13-L68C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L16707566C0-L68C25" }, { "DocsId": "M:Microsoft.Extensions.Options.OptionsBuilder`1.Configure``2(System.Action{`0,``0,``1})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L83C13-L87C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L16707566C0-L87C25" }, { "DocsId": "M:Microsoft.Extensions.Options.OptionsBuilder`1.Configure``3(System.Action{`0,``0,``1,``2})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L104C13-L113C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L16707566C0-L113C25" }, { "DocsId": "M:Microsoft.Extensions.Options.OptionsBuilder`1.Configure``4(System.Action{`0,``0,``1,``2,``3})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L132C13-L142C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L16707566C0-L142C25" }, { "DocsId": "M:Microsoft.Extensions.Options.OptionsBuilder`1.Configure``5(System.Action{`0,``0,``1,``2,``3,``4})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L163C13-L174C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L16707566C0-L174C25" }, { "DocsId": "M:Microsoft.Extensions.Options.OptionsBuilder`1.PostConfigure(System.Action{`0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L185C13-L188C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L185C13-L188C25" }, { "DocsId": "M:Microsoft.Extensions.Options.OptionsBuilder`1.PostConfigure``1(System.Action{`0,``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L201C13-L205C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L16707566C0-L205C25" }, { "DocsId": "M:Microsoft.Extensions.Options.OptionsBuilder`1.PostConfigure``2(System.Action{`0,``0,``1})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L220C13-L224C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L16707566C0-L224C25" }, { "DocsId": "M:Microsoft.Extensions.Options.OptionsBuilder`1.PostConfigure``3(System.Action{`0,``0,``1,``2})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L241C13-L250C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L16707566C0-L250C25" }, { "DocsId": "M:Microsoft.Extensions.Options.OptionsBuilder`1.PostConfigure``4(System.Action{`0,``0,``1,``2,``3})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L269C13-L279C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L16707566C0-L279C25" }, { "DocsId": "M:Microsoft.Extensions.Options.OptionsBuilder`1.PostConfigure``5(System.Action{`0,``0,``1,``2,``3,``4})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L300C13-L311C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L16707566C0-L311C25" }, { "DocsId": "M:Microsoft.Extensions.Options.OptionsBuilder`1.Validate(System.Func{`0,System.Boolean})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L320C16-L320C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L320C16-L320C97" }, { "DocsId": "M:Microsoft.Extensions.Options.OptionsBuilder`1.Validate(System.Func{`0,System.Boolean},System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L330C13-L333C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L330C13-L333C25" }, { "DocsId": "M:Microsoft.Extensions.Options.OptionsBuilder`1.Validate``1(System.Func{`0,``0,System.Boolean})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L343C16-L343C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L343C16-L343C97" }, { "DocsId": "M:Microsoft.Extensions.Options.OptionsBuilder`1.Validate``1(System.Func{`0,``0,System.Boolean},System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L354C13-L358C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L16707566C0-L358C25" }, { "DocsId": "M:Microsoft.Extensions.Options.OptionsBuilder`1.Validate``2(System.Func{`0,``0,``1,System.Boolean})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L371C16-L371C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L371C16-L371C97" }, { "DocsId": "M:Microsoft.Extensions.Options.OptionsBuilder`1.Validate``2(System.Func{`0,``0,``1,System.Boolean},System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L385C13-L393C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L16707566C0-L393C25" }, { "DocsId": "M:Microsoft.Extensions.Options.OptionsBuilder`1.Validate``3(System.Func{`0,``0,``1,``2,System.Boolean})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L408C16-L408C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L408C16-L408C97" }, { "DocsId": "M:Microsoft.Extensions.Options.OptionsBuilder`1.Validate``3(System.Func{`0,``0,``1,``2,System.Boolean},System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L424C13-L433C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L16707566C0-L433C25" }, { "DocsId": "M:Microsoft.Extensions.Options.OptionsBuilder`1.Validate``4(System.Func{`0,``0,``1,``2,``3,System.Boolean})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L450C16-L450C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L450C16-L450C97" }, { "DocsId": "M:Microsoft.Extensions.Options.OptionsBuilder`1.Validate``4(System.Func{`0,``0,``1,``2,``3,System.Boolean},System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L468C13-L478C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L16707566C0-L478C25" }, { "DocsId": "M:Microsoft.Extensions.Options.OptionsBuilder`1.Validate``5(System.Func{`0,``0,``1,``2,``3,``4,System.Boolean})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L497C16-L497C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L497C16-L497C97" }, { "DocsId": "M:Microsoft.Extensions.Options.OptionsBuilder`1.Validate``5(System.Func{`0,``0,``1,``2,``3,``4,System.Boolean},System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L517C13-L528C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L16707566C0-L528C25" }, { "DocsId": "P:Microsoft.Extensions.Options.OptionsBuilder`1.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L20C30-L20C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L20C30-L20C34" }, { "DocsId": "P:Microsoft.Extensions.Options.OptionsBuilder`1.Services", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L25C46-L25C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs#L25C46-L25C50" } ], "DocsId": "T:Microsoft.Extensions.Options.OptionsBuilder`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsBuilder.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.OptionsCache`1.Clear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsCache.cs#L23C32-L23C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsCache.cs#L23C32-L23C46" }, { "DocsId": "M:Microsoft.Extensions.Options.OptionsCache`1.GetOrAdd(System.String,System.Func{`0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsCache.cs#L33C13-L47C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsCache.cs#L33C13-L47C32" }, { "DocsId": "M:Microsoft.Extensions.Options.OptionsCache`1.TryAdd(System.String,`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsCache.cs#L98C13-L104C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsCache.cs#L98C13-L104C27" }, { "DocsId": "M:Microsoft.Extensions.Options.OptionsCache`1.TryRemove(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsCache.cs#L113C13-L113C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsCache.cs#L113C13-L113C65" }, { "DocsId": "M:Microsoft.Extensions.Options.OptionsCache`1.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsCache.cs#L18C9-L18C188" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsCache.cs#L18C9-L18C188" } ], "DocsId": "T:Microsoft.Extensions.Options.OptionsCache`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsCache.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsCache.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.OptionsFactory`1.#ctor(System.Collections.Generic.IEnumerable{Microsoft.Extensions.Options.IConfigureOptions{`0}},System.Collections.Generic.IEnumerable{Microsoft.Extensions.Options.IPostConfigureOptions{`0}})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsFactory.cs#L27C143-L28C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsFactory.cs#L27C143-L28C12" }, { "DocsId": "M:Microsoft.Extensions.Options.OptionsFactory`1.#ctor(System.Collections.Generic.IEnumerable{Microsoft.Extensions.Options.IConfigureOptions{`0}},System.Collections.Generic.IEnumerable{Microsoft.Extensions.Options.IPostConfigureOptions{`0}},System.Collections.Generic.IEnumerable{Microsoft.Extensions.Options.IValidateOptions{`0}})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsFactory.cs#L36C9-L46C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsFactory.cs#L36C9-L46C10" }, { "DocsId": "M:Microsoft.Extensions.Options.OptionsFactory`1.Create(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsFactory.cs#L57C13-L91C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsFactory.cs#L57C13-L91C28" }, { "DocsId": "M:Microsoft.Extensions.Options.OptionsFactory`1.CreateInstance(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsFactory.cs#L102C13-L102C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsFactory.cs#L102C13-L102C57" } ], "DocsId": "T:Microsoft.Extensions.Options.OptionsFactory`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsFactory.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsFactory.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.OptionsManager`1.#ctor(Microsoft.Extensions.Options.IOptionsFactory{`0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsManager.cs#L19C9-L28C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsManager.cs#L19C9-L28C10" }, { "DocsId": "M:Microsoft.Extensions.Options.OptionsManager`1.Get(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsManager.cs#L44C13-L54C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsManager.cs#L44C13-L54C28" }, { "DocsId": "P:Microsoft.Extensions.Options.OptionsManager`1.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsManager.cs#L33C34-L33C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsManager.cs#L33C34-L33C58" } ], "DocsId": "T:Microsoft.Extensions.Options.OptionsManager`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsManager.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsManager.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.OptionsMonitor`1.#ctor(Microsoft.Extensions.Options.IOptionsFactory{`0},System.Collections.Generic.IEnumerable{Microsoft.Extensions.Options.IOptionsChangeTokenSource{`0}},Microsoft.Extensions.Options.IOptionsMonitorCache{`0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsMonitor.cs#L22C9-L62C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsMonitor.cs#L22C9-L62C10" }, { "DocsId": "M:Microsoft.Extensions.Options.OptionsMonitor`1.Get(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsMonitor.cs#L91C13-L100C106" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsMonitor.cs#L91C13-L100C106" }, { "DocsId": "M:Microsoft.Extensions.Options.OptionsMonitor`1.OnChange(System.Action{`0,System.String})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsMonitor.cs#L111C13-L113C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsMonitor.cs#L111C13-L113C31" }, { "DocsId": "M:Microsoft.Extensions.Options.OptionsMonitor`1.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsMonitor.cs#L122C50-L128C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsMonitor.cs#L122C50-L128C10" }, { "DocsId": "P:Microsoft.Extensions.Options.OptionsMonitor`1.CurrentValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsMonitor.cs#L79C20-L79C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsMonitor.cs#L79C20-L79C44" } ], "DocsId": "T:Microsoft.Extensions.Options.OptionsMonitor`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsMonitor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsMonitor.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.OptionsMonitorExtensions.OnChange``1(Microsoft.Extensions.Options.IOptionsMonitor{``0},System.Action{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsMonitorExtensions.cs#L24C20-L24C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsMonitorExtensions.cs#L16707566C0-L24C59" } ], "DocsId": "T:Microsoft.Extensions.Options.OptionsMonitorExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsMonitorExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsMonitorExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.OptionsValidationException.#ctor(System.String,System.Type,System.Collections.Generic.IEnumerable{System.String})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsValidationException.cs#L20C9-L28C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsValidationException.cs#L20C9-L28C10" }, { "DocsId": "P:Microsoft.Extensions.Options.OptionsValidationException.OptionsName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsValidationException.cs#L33C37-L33C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsValidationException.cs#L33C37-L33C41" }, { "DocsId": "P:Microsoft.Extensions.Options.OptionsValidationException.OptionsType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsValidationException.cs#L38C35-L38C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsValidationException.cs#L38C35-L38C39" }, { "DocsId": "P:Microsoft.Extensions.Options.OptionsValidationException.Failures", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsValidationException.cs#L43C47-L43C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsValidationException.cs#L43C47-L43C51" }, { "DocsId": "P:Microsoft.Extensions.Options.OptionsValidationException.Message", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsValidationException.cs#L48C43-L48C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsValidationException.cs#L48C43-L48C70" } ], "DocsId": "T:Microsoft.Extensions.Options.OptionsValidationException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsValidationException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsValidationException.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.OptionsValidatorAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsValidatorAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsValidatorAttribute.cs" } ], "DocsId": "T:Microsoft.Extensions.Options.OptionsValidatorAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsValidatorAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsValidatorAttribute.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.OptionsWrapper`1.#ctor(`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsWrapper.cs#L20C9-L23C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsWrapper.cs#L20C9-L23C10" }, { "DocsId": "P:Microsoft.Extensions.Options.OptionsWrapper`1.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsWrapper.cs#L28C33-L28C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsWrapper.cs#L28C33-L28C37" } ], "DocsId": "T:Microsoft.Extensions.Options.OptionsWrapper`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/OptionsWrapper.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/OptionsWrapper.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.PostConfigureOptions`1.#ctor(System.String,System.Action{`0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L19C9-L23C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L19C9-L23C10" }, { "DocsId": "M:Microsoft.Extensions.Options.PostConfigureOptions`1.PostConfigure(System.String,`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L42C13-L49C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L42C13-L49C10" }, { "DocsId": "P:Microsoft.Extensions.Options.PostConfigureOptions`1.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L28C31-L28C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L28C31-L28C35" }, { "DocsId": "P:Microsoft.Extensions.Options.PostConfigureOptions`1.Action", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L33C43-L33C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L33C43-L33C47" } ], "DocsId": "T:Microsoft.Extensions.Options.PostConfigureOptions`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.PostConfigureOptions`2.#ctor(System.String,`1,System.Action{`0,`1})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L67C9-L72C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L67C9-L72C10" }, { "DocsId": "M:Microsoft.Extensions.Options.PostConfigureOptions`2.PostConfigure(System.String,`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L96C13-L103C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L96C13-L103C10" }, { "DocsId": "M:Microsoft.Extensions.Options.PostConfigureOptions`2.PostConfigure(`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L109C56-L109C99" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L109C56-L109C99" }, { "DocsId": "P:Microsoft.Extensions.Options.PostConfigureOptions`2.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L77C31-L77C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L77C31-L77C35" }, { "DocsId": "P:Microsoft.Extensions.Options.PostConfigureOptions`2.Action", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L82C49-L82C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L82C49-L82C53" }, { "DocsId": "P:Microsoft.Extensions.Options.PostConfigureOptions`2.Dependency", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L87C34-L87C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L87C34-L87C38" } ], "DocsId": "T:Microsoft.Extensions.Options.PostConfigureOptions`2", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.PostConfigureOptions`3.#ctor(System.String,`1,`2,System.Action{`0,`1,`2})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L130C9-L136C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L130C9-L136C10" }, { "DocsId": "M:Microsoft.Extensions.Options.PostConfigureOptions`3.PostConfigure(System.String,`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L165C13-L172C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L165C13-L172C10" }, { "DocsId": "M:Microsoft.Extensions.Options.PostConfigureOptions`3.PostConfigure(`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L178C56-L178C99" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L178C56-L178C99" }, { "DocsId": "P:Microsoft.Extensions.Options.PostConfigureOptions`3.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L141C31-L141C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L141C31-L141C35" }, { "DocsId": "P:Microsoft.Extensions.Options.PostConfigureOptions`3.Action", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L146C57-L146C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L146C57-L146C61" }, { "DocsId": "P:Microsoft.Extensions.Options.PostConfigureOptions`3.Dependency1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L151C36-L151C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L151C36-L151C40" }, { "DocsId": "P:Microsoft.Extensions.Options.PostConfigureOptions`3.Dependency2", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L156C36-L156C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L156C36-L156C40" } ], "DocsId": "T:Microsoft.Extensions.Options.PostConfigureOptions`3", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.PostConfigureOptions`4.#ctor(System.String,`1,`2,`3,System.Action{`0,`1,`2,`3})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L202C9-L209C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L202C9-L209C10" }, { "DocsId": "M:Microsoft.Extensions.Options.PostConfigureOptions`4.PostConfigure(System.String,`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L243C13-L250C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L243C13-L250C10" }, { "DocsId": "M:Microsoft.Extensions.Options.PostConfigureOptions`4.PostConfigure(`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L256C56-L256C99" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L256C56-L256C99" }, { "DocsId": "P:Microsoft.Extensions.Options.PostConfigureOptions`4.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L214C31-L214C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L214C31-L214C35" }, { "DocsId": "P:Microsoft.Extensions.Options.PostConfigureOptions`4.Action", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L219C64-L219C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L219C64-L219C68" }, { "DocsId": "P:Microsoft.Extensions.Options.PostConfigureOptions`4.Dependency1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L224C36-L224C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L224C36-L224C40" }, { "DocsId": "P:Microsoft.Extensions.Options.PostConfigureOptions`4.Dependency2", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L229C36-L229C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L229C36-L229C40" }, { "DocsId": "P:Microsoft.Extensions.Options.PostConfigureOptions`4.Dependency3", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L234C36-L234C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L234C36-L234C40" } ], "DocsId": "T:Microsoft.Extensions.Options.PostConfigureOptions`4", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.PostConfigureOptions`5.#ctor(System.String,`1,`2,`3,`4,System.Action{`0,`1,`2,`3,`4})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L283C9-L291C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L283C9-L291C10" }, { "DocsId": "M:Microsoft.Extensions.Options.PostConfigureOptions`5.PostConfigure(System.String,`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L330C13-L337C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L330C13-L337C10" }, { "DocsId": "M:Microsoft.Extensions.Options.PostConfigureOptions`5.PostConfigure(`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L343C56-L343C99" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L343C56-L343C99" }, { "DocsId": "P:Microsoft.Extensions.Options.PostConfigureOptions`5.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L296C31-L296C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L296C31-L296C35" }, { "DocsId": "P:Microsoft.Extensions.Options.PostConfigureOptions`5.Action", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L301C71-L301C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L301C71-L301C75" }, { "DocsId": "P:Microsoft.Extensions.Options.PostConfigureOptions`5.Dependency1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L306C36-L306C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L306C36-L306C40" }, { "DocsId": "P:Microsoft.Extensions.Options.PostConfigureOptions`5.Dependency2", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L311C36-L311C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L311C36-L311C40" }, { "DocsId": "P:Microsoft.Extensions.Options.PostConfigureOptions`5.Dependency3", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L316C36-L316C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L316C36-L316C40" }, { "DocsId": "P:Microsoft.Extensions.Options.PostConfigureOptions`5.Dependency4", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L321C36-L321C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L321C36-L321C40" } ], "DocsId": "T:Microsoft.Extensions.Options.PostConfigureOptions`5", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.PostConfigureOptions`6.#ctor(System.String,`1,`2,`3,`4,`5,System.Action{`0,`1,`2,`3,`4,`5})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L373C9-L382C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L373C9-L382C10" }, { "DocsId": "M:Microsoft.Extensions.Options.PostConfigureOptions`6.PostConfigure(System.String,`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L426C13-L433C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L426C13-L433C10" }, { "DocsId": "M:Microsoft.Extensions.Options.PostConfigureOptions`6.PostConfigure(`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L439C56-L439C99" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L439C56-L439C99" }, { "DocsId": "P:Microsoft.Extensions.Options.PostConfigureOptions`6.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L387C31-L387C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L387C31-L387C35" }, { "DocsId": "P:Microsoft.Extensions.Options.PostConfigureOptions`6.Action", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L392C78-L392C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L392C78-L392C82" }, { "DocsId": "P:Microsoft.Extensions.Options.PostConfigureOptions`6.Dependency1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L397C36-L397C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L397C36-L397C40" }, { "DocsId": "P:Microsoft.Extensions.Options.PostConfigureOptions`6.Dependency2", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L402C36-L402C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L402C36-L402C40" }, { "DocsId": "P:Microsoft.Extensions.Options.PostConfigureOptions`6.Dependency3", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L407C36-L407C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L407C36-L407C40" }, { "DocsId": "P:Microsoft.Extensions.Options.PostConfigureOptions`6.Dependency4", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L412C36-L412C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L412C36-L412C40" }, { "DocsId": "P:Microsoft.Extensions.Options.PostConfigureOptions`6.Dependency5", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L417C36-L417C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs#L417C36-L417C40" } ], "DocsId": "T:Microsoft.Extensions.Options.PostConfigureOptions`6", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/PostConfigureOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.ValidateEnumeratedItemsAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateEnumeratedItemsAttribute.cs#L23C9-L25C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateEnumeratedItemsAttribute.cs#L23C9-L25C10" }, { "DocsId": "M:Microsoft.Extensions.Options.ValidateEnumeratedItemsAttribute.#ctor(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateEnumeratedItemsAttribute.cs#L35C9-L38C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateEnumeratedItemsAttribute.cs#L35C9-L38C10" }, { "DocsId": "P:Microsoft.Extensions.Options.ValidateEnumeratedItemsAttribute.Validator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateEnumeratedItemsAttribute.cs#L43C34-L43C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateEnumeratedItemsAttribute.cs#L43C34-L43C38" } ], "DocsId": "T:Microsoft.Extensions.Options.ValidateEnumeratedItemsAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateEnumeratedItemsAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateEnumeratedItemsAttribute.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.ValidateObjectMembersAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateObjectMembersAttribute.cs#L22C9-L24C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateObjectMembersAttribute.cs#L22C9-L24C10" }, { "DocsId": "M:Microsoft.Extensions.Options.ValidateObjectMembersAttribute.#ctor(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateObjectMembersAttribute.cs#L34C9-L37C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateObjectMembersAttribute.cs#L34C9-L37C10" }, { "DocsId": "P:Microsoft.Extensions.Options.ValidateObjectMembersAttribute.Validator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateObjectMembersAttribute.cs#L42C34-L42C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateObjectMembersAttribute.cs#L42C34-L42C38" } ], "DocsId": "T:Microsoft.Extensions.Options.ValidateObjectMembersAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateObjectMembersAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateObjectMembersAttribute.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.ValidateOptions`1.#ctor(System.String,System.Func{`0,System.Boolean},System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L20C9-L27C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L20C9-L27C10" }, { "DocsId": "M:Microsoft.Extensions.Options.ValidateOptions`1.Validate(System.String,`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L53C13-L63C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L53C13-L63C47" }, { "DocsId": "P:Microsoft.Extensions.Options.ValidateOptions`1.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L32C31-L32C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L32C31-L32C35" }, { "DocsId": "P:Microsoft.Extensions.Options.ValidateOptions`1.Validation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L37C50-L37C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L37C50-L37C54" }, { "DocsId": "P:Microsoft.Extensions.Options.ValidateOptions`1.FailureMessage", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L42C40-L42C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L42C40-L42C44" } ], "DocsId": "T:Microsoft.Extensions.Options.ValidateOptions`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.ValidateOptions`2.#ctor(System.String,`1,System.Func{`0,`1,System.Boolean},System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L81C9-L89C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L81C9-L89C10" }, { "DocsId": "M:Microsoft.Extensions.Options.ValidateOptions`2.Validate(System.String,`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L120C13-L130C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L120C13-L130C47" }, { "DocsId": "P:Microsoft.Extensions.Options.ValidateOptions`2.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L94C31-L94C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L94C31-L94C35" }, { "DocsId": "P:Microsoft.Extensions.Options.ValidateOptions`2.Validation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L99C56-L99C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L99C56-L99C60" }, { "DocsId": "P:Microsoft.Extensions.Options.ValidateOptions`2.FailureMessage", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L104C40-L104C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L104C40-L104C44" }, { "DocsId": "P:Microsoft.Extensions.Options.ValidateOptions`2.Dependency", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L109C34-L109C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L109C34-L109C38" } ], "DocsId": "T:Microsoft.Extensions.Options.ValidateOptions`2", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.ValidateOptions`3.#ctor(System.String,`1,`2,System.Func{`0,`1,`2,System.Boolean},System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L150C9-L159C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L150C9-L159C10" }, { "DocsId": "M:Microsoft.Extensions.Options.ValidateOptions`3.Validate(System.String,`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L195C13-L205C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L195C13-L205C47" }, { "DocsId": "P:Microsoft.Extensions.Options.ValidateOptions`3.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L164C31-L164C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L164C31-L164C35" }, { "DocsId": "P:Microsoft.Extensions.Options.ValidateOptions`3.Validation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L169C64-L169C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L169C64-L169C68" }, { "DocsId": "P:Microsoft.Extensions.Options.ValidateOptions`3.FailureMessage", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L174C40-L174C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L174C40-L174C44" }, { "DocsId": "P:Microsoft.Extensions.Options.ValidateOptions`3.Dependency1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L179C36-L179C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L179C36-L179C40" }, { "DocsId": "P:Microsoft.Extensions.Options.ValidateOptions`3.Dependency2", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L184C36-L184C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L184C36-L184C40" } ], "DocsId": "T:Microsoft.Extensions.Options.ValidateOptions`3", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.ValidateOptions`4.#ctor(System.String,`1,`2,`3,System.Func{`0,`1,`2,`3,System.Boolean},System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L227C9-L237C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L227C9-L237C10" }, { "DocsId": "M:Microsoft.Extensions.Options.ValidateOptions`4.Validate(System.String,`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L278C13-L288C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L278C13-L288C47" }, { "DocsId": "P:Microsoft.Extensions.Options.ValidateOptions`4.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L242C31-L242C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L242C31-L242C35" }, { "DocsId": "P:Microsoft.Extensions.Options.ValidateOptions`4.Validation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L247C71-L247C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L247C71-L247C75" }, { "DocsId": "P:Microsoft.Extensions.Options.ValidateOptions`4.FailureMessage", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L252C40-L252C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L252C40-L252C44" }, { "DocsId": "P:Microsoft.Extensions.Options.ValidateOptions`4.Dependency1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L257C36-L257C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L257C36-L257C40" }, { "DocsId": "P:Microsoft.Extensions.Options.ValidateOptions`4.Dependency2", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L262C36-L262C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L262C36-L262C40" }, { "DocsId": "P:Microsoft.Extensions.Options.ValidateOptions`4.Dependency3", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L267C36-L267C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L267C36-L267C40" } ], "DocsId": "T:Microsoft.Extensions.Options.ValidateOptions`4", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.ValidateOptions`5.#ctor(System.String,`1,`2,`3,`4,System.Func{`0,`1,`2,`3,`4,System.Boolean},System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L312C9-L323C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L312C9-L323C10" }, { "DocsId": "M:Microsoft.Extensions.Options.ValidateOptions`5.Validate(System.String,`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L369C13-L379C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L369C13-L379C47" }, { "DocsId": "P:Microsoft.Extensions.Options.ValidateOptions`5.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L328C31-L328C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L328C31-L328C35" }, { "DocsId": "P:Microsoft.Extensions.Options.ValidateOptions`5.Validation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L333C78-L333C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L333C78-L333C82" }, { "DocsId": "P:Microsoft.Extensions.Options.ValidateOptions`5.FailureMessage", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L338C40-L338C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L338C40-L338C44" }, { "DocsId": "P:Microsoft.Extensions.Options.ValidateOptions`5.Dependency1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L343C36-L343C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L343C36-L343C40" }, { "DocsId": "P:Microsoft.Extensions.Options.ValidateOptions`5.Dependency2", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L348C36-L348C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L348C36-L348C40" }, { "DocsId": "P:Microsoft.Extensions.Options.ValidateOptions`5.Dependency3", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L353C36-L353C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L353C36-L353C40" }, { "DocsId": "P:Microsoft.Extensions.Options.ValidateOptions`5.Dependency4", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L358C36-L358C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L358C36-L358C40" } ], "DocsId": "T:Microsoft.Extensions.Options.ValidateOptions`5", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.ValidateOptions`6.#ctor(System.String,`1,`2,`3,`4,`5,System.Func{`0,`1,`2,`3,`4,`5,System.Boolean},System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L405C9-L417C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L405C9-L417C10" }, { "DocsId": "M:Microsoft.Extensions.Options.ValidateOptions`6.Validate(System.String,`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L468C13-L478C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L468C13-L478C47" }, { "DocsId": "P:Microsoft.Extensions.Options.ValidateOptions`6.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L422C31-L422C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L422C31-L422C35" }, { "DocsId": "P:Microsoft.Extensions.Options.ValidateOptions`6.Validation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L427C85-L427C89" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L427C85-L427C89" }, { "DocsId": "P:Microsoft.Extensions.Options.ValidateOptions`6.FailureMessage", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L432C40-L432C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L432C40-L432C44" }, { "DocsId": "P:Microsoft.Extensions.Options.ValidateOptions`6.Dependency1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L437C36-L437C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L437C36-L437C40" }, { "DocsId": "P:Microsoft.Extensions.Options.ValidateOptions`6.Dependency2", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L442C36-L442C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L442C36-L442C40" }, { "DocsId": "P:Microsoft.Extensions.Options.ValidateOptions`6.Dependency3", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L447C36-L447C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L447C36-L447C40" }, { "DocsId": "P:Microsoft.Extensions.Options.ValidateOptions`6.Dependency4", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L452C36-L452C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L452C36-L452C40" }, { "DocsId": "P:Microsoft.Extensions.Options.ValidateOptions`6.Dependency5", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L457C36-L457C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs#L457C36-L457C40" } ], "DocsId": "T:Microsoft.Extensions.Options.ValidateOptions`6", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.ValidateOptionsResult.Fail(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptionsResult.cs#L58C16-L58C136" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptionsResult.cs#L58C16-L58C136" }, { "DocsId": "M:Microsoft.Extensions.Options.ValidateOptionsResult.Fail(System.Collections.Generic.IEnumerable{System.String})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptionsResult.cs#L66C16-L66C126" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptionsResult.cs#L66C16-L66C126" }, { "DocsId": "M:Microsoft.Extensions.Options.ValidateOptionsResult.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptionsResult.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptionsResult.cs" }, { "DocsId": "F:Microsoft.Extensions.Options.ValidateOptionsResult.Skip", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptionsResult.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptionsResult.cs" }, { "DocsId": "F:Microsoft.Extensions.Options.ValidateOptionsResult.Success", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptionsResult.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptionsResult.cs" }, { "DocsId": "P:Microsoft.Extensions.Options.ValidateOptionsResult.Succeeded", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptionsResult.cs#L28C33-L28C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptionsResult.cs#L28C33-L28C37" }, { "DocsId": "P:Microsoft.Extensions.Options.ValidateOptionsResult.Skipped", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptionsResult.cs#L33C31-L33C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptionsResult.cs#L33C31-L33C35" }, { "DocsId": "P:Microsoft.Extensions.Options.ValidateOptionsResult.Failed", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptionsResult.cs#L40C30-L40C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptionsResult.cs#L40C30-L40C34" }, { "DocsId": "P:Microsoft.Extensions.Options.ValidateOptionsResult.FailureMessage", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptionsResult.cs#L45C41-L45C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptionsResult.cs#L45C41-L45C45" }, { "DocsId": "P:Microsoft.Extensions.Options.ValidateOptionsResult.Failures", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptionsResult.cs#L50C48-L50C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptionsResult.cs#L50C48-L50C52" } ], "DocsId": "T:Microsoft.Extensions.Options.ValidateOptionsResult", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptionsResult.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptionsResult.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Options.ValidateOptionsResultBuilder.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptionsResultBuilder.cs#L25C9-L25C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptionsResultBuilder.cs#L25C9-L25C50" }, { "DocsId": "M:Microsoft.Extensions.Options.ValidateOptionsResultBuilder.AddError(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptionsResultBuilder.cs#L34C13-L36C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptionsResultBuilder.cs#L34C13-L36C10" }, { "DocsId": "M:Microsoft.Extensions.Options.ValidateOptionsResultBuilder.AddResult(System.ComponentModel.DataAnnotations.ValidationResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptionsResultBuilder.cs#L44C13-L51C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptionsResultBuilder.cs#L44C13-L51C10" }, { "DocsId": "M:Microsoft.Extensions.Options.ValidateOptionsResultBuilder.AddResults(System.Collections.Generic.IEnumerable{System.ComponentModel.DataAnnotations.ValidationResult})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptionsResultBuilder.cs#L59C13-L66C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptionsResultBuilder.cs#L59C13-L66C10" }, { "DocsId": "M:Microsoft.Extensions.Options.ValidateOptionsResultBuilder.AddResult(Microsoft.Extensions.Options.ValidateOptionsResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptionsResultBuilder.cs#L74C13-L95C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptionsResultBuilder.cs#L74C13-L95C10" }, { "DocsId": "M:Microsoft.Extensions.Options.ValidateOptionsResultBuilder.Build", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptionsResultBuilder.cs#L103C13-L108C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptionsResultBuilder.cs#L103C13-L108C50" }, { "DocsId": "M:Microsoft.Extensions.Options.ValidateOptionsResultBuilder.Clear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptionsResultBuilder.cs#L114C32-L114C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptionsResultBuilder.cs#L114C32-L114C48" } ], "DocsId": "T:Microsoft.Extensions.Options.ValidateOptionsResultBuilder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Options/src/ValidateOptionsResultBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Options/src/ValidateOptionsResultBuilder.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Primitives.json b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Primitives.json index 627fdff339b..4db194ac303 100644 --- a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Primitives.json +++ b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Primitives.json @@ -1,671 +1,670 @@ { "Assembly": "Microsoft.Extensions.Primitives", - "GUID": "265A408D3B1A407C9B06BCC4B1ED0D51FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "9CAAEB285EEF44B997A58D5C6FEF224BFFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.Primitives.CancellationChangeToken.#ctor(System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/CancellationChangeToken.cs#L27C67-L24C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/CancellationChangeToken.cs#L27C67-L24C10" }, { "DocsId": "M:Microsoft.Extensions.Primitives.CancellationChangeToken.RegisterChangeCallback(System.Action{System.Object},System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/CancellationChangeToken.cs#L37C13-L42C23" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/CancellationChangeToken.cs#L37C13-L42C23" }, { "DocsId": "P:Microsoft.Extensions.Primitives.CancellationChangeToken.ActiveChangeCallbacks", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/CancellationChangeToken.cs#L27C45-L27C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/CancellationChangeToken.cs#L27C45-L27C49" }, { "DocsId": "P:Microsoft.Extensions.Primitives.CancellationChangeToken.HasChanged", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/CancellationChangeToken.cs#L30C35-L30C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/CancellationChangeToken.cs#L30C35-L30C64" } ], "DocsId": "T:Microsoft.Extensions.Primitives.CancellationChangeToken", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/CancellationChangeToken.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/CancellationChangeToken.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Primitives.ChangeToken.OnChange(System.Func{Microsoft.Extensions.Primitives.IChangeToken},System.Action)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/ChangeToken.cs#L22C13-L31C122" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/ChangeToken.cs#L22C13-L31C122" }, { "DocsId": "M:Microsoft.Extensions.Primitives.ChangeToken.OnChange``1(System.Func{Microsoft.Extensions.Primitives.IChangeToken},System.Action{``0},``0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/ChangeToken.cs#L43C13-L52C105" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/ChangeToken.cs#L43C13-L52C105" } ], "DocsId": "T:Microsoft.Extensions.Primitives.ChangeToken", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/ChangeToken.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/ChangeToken.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Primitives.CompositeChangeToken.#ctor(System.Collections.Generic.IReadOnlyList{Microsoft.Extensions.Primitives.IChangeToken})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/CompositeChangeToken.cs#L19C9-L47C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/CompositeChangeToken.cs#L19C9-L47C10" }, { "DocsId": "M:Microsoft.Extensions.Primitives.CompositeChangeToken.RegisterChangeCallback(System.Action{System.Object},System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/CompositeChangeToken.cs#L57C13-L58C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/CompositeChangeToken.cs#L57C13-L58C77" }, { "DocsId": "P:Microsoft.Extensions.Primitives.CompositeChangeToken.ChangeTokens", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/CompositeChangeToken.cs#L52C59-L52C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/CompositeChangeToken.cs#L52C59-L52C63" }, { "DocsId": "P:Microsoft.Extensions.Primitives.CompositeChangeToken.HasChanged", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/CompositeChangeToken.cs#L66C17-L80C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/CompositeChangeToken.cs#L66C17-L80C30" }, { "DocsId": "P:Microsoft.Extensions.Primitives.CompositeChangeToken.ActiveChangeCallbacks", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/CompositeChangeToken.cs#L85C45-L85C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/CompositeChangeToken.cs#L85C45-L85C49" } ], "DocsId": "T:Microsoft.Extensions.Primitives.CompositeChangeToken", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/CompositeChangeToken.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/CompositeChangeToken.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Primitives.Extensions.Append(System.Text.StringBuilder,Microsoft.Extensions.Primitives.StringSegment)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/Extensions.cs#L21C13-L21C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/Extensions.cs#L21C13-L21C83" } ], "DocsId": "T:Microsoft.Extensions.Primitives.Extensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/Extensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/Extensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Primitives.IChangeToken.RegisterChangeCallback(System.Action{System.Object},System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/IChangeToken.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/IChangeToken.cs" }, { "DocsId": "P:Microsoft.Extensions.Primitives.IChangeToken.HasChanged", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/IChangeToken.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/IChangeToken.cs" }, { "DocsId": "P:Microsoft.Extensions.Primitives.IChangeToken.ActiveChangeCallbacks", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/IChangeToken.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/IChangeToken.cs" } ], "DocsId": "T:Microsoft.Extensions.Primitives.IChangeToken", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/IChangeToken.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/IChangeToken.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Primitives.InplaceStringBuilder.#ctor(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/InplaceStringBuilder.cs#L27C53-L35C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/InplaceStringBuilder.cs#L27C53-L35C10" }, { "DocsId": "M:Microsoft.Extensions.Primitives.InplaceStringBuilder.Append(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/InplaceStringBuilder.cs#L66C13-L72C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/InplaceStringBuilder.cs#L66C13-L72C10" }, { "DocsId": "M:Microsoft.Extensions.Primitives.InplaceStringBuilder.Append(Microsoft.Extensions.Primitives.StringSegment)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/InplaceStringBuilder.cs#L80C13-L81C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/InplaceStringBuilder.cs#L80C13-L81C10" }, { "DocsId": "M:Microsoft.Extensions.Primitives.InplaceStringBuilder.Append(System.String,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/InplaceStringBuilder.cs#L92C13-L108C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/InplaceStringBuilder.cs#L92C13-L108C10" }, { "DocsId": "M:Microsoft.Extensions.Primitives.InplaceStringBuilder.Append(System.Char)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/InplaceStringBuilder.cs#L117C13-L128C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/InplaceStringBuilder.cs#L117C13-L128C10" }, { "DocsId": "M:Microsoft.Extensions.Primitives.InplaceStringBuilder.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/InplaceStringBuilder.cs#L136C13-L141C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/InplaceStringBuilder.cs#L136C13-L141C27" }, { "DocsId": "P:Microsoft.Extensions.Primitives.InplaceStringBuilder.Capacity", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/InplaceStringBuilder.cs#L42C20-L42C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/InplaceStringBuilder.cs#L42C20-L42C29" } ], "DocsId": "T:Microsoft.Extensions.Primitives.InplaceStringBuilder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/InplaceStringBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/InplaceStringBuilder.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Primitives.StringSegment.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L30C13-L33C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L30C13-L33C10" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringSegment.#ctor(System.String,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L54C13-L62C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L54C13-L62C10" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringSegment.AsSpan", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L117C47-L117C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L117C47-L117C76" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringSegment.AsSpan(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L131C13-L136C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L131C13-L136C66" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringSegment.AsSpan(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L153C13-L158C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L153C13-L158C58" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringSegment.AsMemory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L165C51-L165C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L165C51-L165C82" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringSegment.Compare(Microsoft.Extensions.Primitives.StringSegment,Microsoft.Extensions.Primitives.StringSegment,System.StringComparison)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L181C13-L188C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L181C13-L188C64" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringSegment.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L199C13-L199C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L199C13-L199C68" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringSegment.Equals(Microsoft.Extensions.Primitives.StringSegment)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L207C52-L207C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L207C52-L207C91" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringSegment.Equals(Microsoft.Extensions.Primitives.StringSegment,System.StringComparison)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L217C13-L224C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L217C13-L224C53" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringSegment.Equals(Microsoft.Extensions.Primitives.StringSegment,Microsoft.Extensions.Primitives.StringSegment,System.StringComparison)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L238C105-L238C132" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L238C105-L238C132" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringSegment.Equals(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L245C45-L245C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L245C45-L245C83" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringSegment.Equals(System.String,System.StringComparison)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L256C13-L262C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L256C13-L262C67" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringSegment.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L275C13-L275C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L275C13-L275C49" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringSegment.op_Equality(Microsoft.Extensions.Primitives.StringSegment,Microsoft.Extensions.Primitives.StringSegment)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L292C84-L292C102" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L292C84-L292C102" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringSegment.op_Inequality(Microsoft.Extensions.Primitives.StringSegment,Microsoft.Extensions.Primitives.StringSegment)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L300C84-L300C103" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L300C84-L300C103" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringSegment.op_Implicit(System.String)~Microsoft.Extensions.Primitives.StringSegment", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L307C73-L307C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L307C73-L307C97" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringSegment.op_Implicit(Microsoft.Extensions.Primitives.StringSegment)~System.ReadOnlySpan{System.Char}", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L313C86-L313C102" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L313C86-L313C102" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringSegment.op_Implicit(Microsoft.Extensions.Primitives.StringSegment)~System.ReadOnlyMemory{System.Char}", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L319C88-L319C106" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L319C88-L319C106" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringSegment.StartsWith(System.String,System.StringComparison)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L333C13-L344C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L333C13-L344C71" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringSegment.EndsWith(System.String,System.StringComparison)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L359C13-L370C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L359C13-L370C69" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringSegment.Substring(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L383C48-L383C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L383C48-L383C82" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringSegment.Substring(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L400C13-L405C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L400C13-L405C62" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringSegment.Subsegment(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L418C56-L418C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L418C56-L418C91" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringSegment.Subsegment(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L433C13-L438C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L433C13-L438C71" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringSegment.IndexOf(System.Char,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L456C13-L477C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L456C13-L477C26" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringSegment.IndexOf(System.Char,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L490C50-L490C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L490C50-L490C83" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringSegment.IndexOf(System.Char)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L497C39-L497C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L497C39-L497C60" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringSegment.IndexOfAny(System.Char[],System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L519C13-L540C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L519C13-L540C26" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringSegment.IndexOfAny(System.Char[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L556C13-L556C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L556C13-L556C71" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringSegment.IndexOfAny(System.Char[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L568C13-L568C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L568C13-L568C49" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringSegment.LastIndexOf(System.Char)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L578C13-L578C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L578C13-L578C48" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringSegment.Trim", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L585C40-L585C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L585C40-L585C61" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringSegment.TrimStart", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L593C13-L604C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L593C13-L604C34" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringSegment.TrimEnd", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L613C13-L624C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L613C13-L624C41" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringSegment.Split(System.Char[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L636C13-L636C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L636C13-L636C53" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringSegment.IsNullOrEmpty(Microsoft.Extensions.Primitives.StringSegment)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L646C13-L653C24" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L646C13-L653C24" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringSegment.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L662C13-L662C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L662C13-L662C42" }, { "DocsId": "F:Microsoft.Extensions.Primitives.StringSegment.Empty", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs" }, { "DocsId": "P:Microsoft.Extensions.Primitives.StringSegment.Buffer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L67C33-L67C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L67C33-L67C37" }, { "DocsId": "P:Microsoft.Extensions.Primitives.StringSegment.Offset", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L72C29-L72C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L72C29-L72C33" }, { "DocsId": "P:Microsoft.Extensions.Primitives.StringSegment.Length", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L77C29-L77C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L77C29-L77C33" }, { "DocsId": "P:Microsoft.Extensions.Primitives.StringSegment.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L82C33-L82C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L82C33-L82C83" }, { "DocsId": "P:Microsoft.Extensions.Primitives.StringSegment.HasValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L89C33-L89C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L89C33-L89C47" }, { "DocsId": "P:Microsoft.Extensions.Primitives.StringSegment.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L103C17-L109C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs#L103C17-L109C47" } ], "DocsId": "T:Microsoft.Extensions.Primitives.StringSegment", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegment.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Primitives.StringSegmentComparer.Compare(Microsoft.Extensions.Primitives.StringSegment,Microsoft.Extensions.Primitives.StringSegment)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegmentComparer.cs#L43C13-L43C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegmentComparer.cs#L43C13-L43C60" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringSegmentComparer.Equals(Microsoft.Extensions.Primitives.StringSegment,Microsoft.Extensions.Primitives.StringSegment)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegmentComparer.cs#L54C13-L54C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegmentComparer.cs#L54C13-L54C59" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringSegmentComparer.GetHashCode(Microsoft.Extensions.Primitives.StringSegment)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegmentComparer.cs#L65C13-L65C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegmentComparer.cs#L65C13-L65C65" }, { "DocsId": "P:Microsoft.Extensions.Primitives.StringSegmentComparer.Ordinal", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegmentComparer.cs#L17C55-L17C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegmentComparer.cs#L17C55-L17C59" }, { "DocsId": "P:Microsoft.Extensions.Primitives.StringSegmentComparer.OrdinalIgnoreCase", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegmentComparer.cs#L23C65-L23C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegmentComparer.cs#L23C65-L23C69" } ], "DocsId": "T:Microsoft.Extensions.Primitives.StringSegmentComparer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringSegmentComparer.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringSegmentComparer.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Primitives.StringTokenizer.#ctor(System.String,System.Char[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringTokenizer.cs#L25C13-L37C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringTokenizer.cs#L25C13-L37C10" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringTokenizer.#ctor(Microsoft.Extensions.Primitives.StringSegment,System.Char[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringTokenizer.cs#L46C13-L58C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringTokenizer.cs#L46C13-L58C10" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringTokenizer.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringTokenizer.cs#L64C46-L64C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringTokenizer.cs#L64C46-L64C84" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringTokenizer.System#Collections#Generic#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringTokenizer.cs#L66C82-L66C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringTokenizer.cs#L66C82-L66C97" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringTokenizer.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringTokenizer.cs#L68C52-L68C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringTokenizer.cs#L68C52-L68C67" }, { "DocsId": "T:Microsoft.Extensions.Primitives.StringTokenizer.Enumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringTokenizer.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringTokenizer.cs" } ], "DocsId": "T:Microsoft.Extensions.Primitives.StringTokenizer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringTokenizer.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringTokenizer.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L37C13-L38C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L37C13-L38C10" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.#ctor(System.String[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L46C13-L47C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L46C13-L47C10" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.op_Implicit(System.String)~Microsoft.Extensions.Primitives.StringValues", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L55C13-L55C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L55C13-L55C44" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.op_Implicit(System.String[])~Microsoft.Extensions.Primitives.StringValues", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L64C13-L64C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L64C13-L64C45" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.op_Implicit(Microsoft.Extensions.Primitives.StringValues)~System.String", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L76C13-L76C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L76C13-L76C44" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.op_Implicit(Microsoft.Extensions.Primitives.StringValues)~System.String[]", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L85C13-L85C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L85C13-L85C42" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.System#Collections#Generic#ICollection#get_IsReadOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L114C49-L114C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L114C49-L114C53" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.System#Collections#Generic#IList#get_Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L124C20-L124C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L124C20-L124C31" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.System#Collections#Generic#IList#set_Item(System.Int32,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L125C20-L125C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L125C20-L125C53" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L169C13-L169C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L169C13-L169C53" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.ToArray", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L279C13-L279C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L279C13-L279C61" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.System#Collections#Generic#IList#IndexOf(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L308C13-L308C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L308C13-L308C34" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.System#Collections#Generic#ICollection#Contains(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L341C13-L341C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L341C13-L341C39" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.System#Collections#Generic#ICollection#CopyTo(System.String[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L354C13-L355C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L354C13-L355C10" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.System#Collections#Generic#ICollection#Add(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L388C56-L388C89" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L388C56-L388C89" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.System#Collections#Generic#IList#Insert(System.Int32,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L390C64-L390C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L390C64-L390C97" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.System#Collections#Generic#ICollection#Remove(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L392C59-L392C92" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L392C59-L392C92" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.System#Collections#Generic#IList#RemoveAt(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L394C52-L394C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L394C52-L394C85" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.System#Collections#Generic#ICollection#Clear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L396C46-L396C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L396C46-L396C79" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L402C13-L402C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L402C13-L402C44" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.System#Collections#Generic#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L408C13-L408C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L408C13-L408C36" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L414C13-L414C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L414C13-L414C36" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.IsNullOrEmpty(Microsoft.Extensions.Primitives.StringValues)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L424C13-L441C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L424C13-L441C70" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.Concat(Microsoft.Extensions.Primitives.StringValues,Microsoft.Extensions.Primitives.StringValues)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L453C13-L469C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L453C13-L469C47" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.Concat(Microsoft.Extensions.Primitives.StringValues@,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L480C13-L494C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L480C13-L494C47" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.Concat(System.String,Microsoft.Extensions.Primitives.StringValues@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L505C13-L519C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L505C13-L519C47" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.Equals(Microsoft.Extensions.Primitives.StringValues,Microsoft.Extensions.Primitives.StringValues)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L530C13-L545C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L530C13-L545C25" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.op_Equality(Microsoft.Extensions.Primitives.StringValues,Microsoft.Extensions.Primitives.StringValues)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L556C13-L556C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L556C13-L556C40" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.op_Inequality(Microsoft.Extensions.Primitives.StringValues,Microsoft.Extensions.Primitives.StringValues)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L567C13-L567C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L567C13-L567C41" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.Equals(Microsoft.Extensions.Primitives.StringValues)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L575C51-L575C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L575C51-L575C70" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.Equals(System.String,Microsoft.Extensions.Primitives.StringValues)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L583C72-L583C109" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L583C72-L583C109" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.Equals(Microsoft.Extensions.Primitives.StringValues,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L591C72-L591C109" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L591C72-L591C109" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.Equals(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L598C46-L598C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L598C46-L598C83" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.Equals(System.String[],Microsoft.Extensions.Primitives.StringValues)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L606C75-L606C112" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L606C75-L606C112" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.Equals(Microsoft.Extensions.Primitives.StringValues,System.String[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L614C75-L614C112" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L614C75-L614C112" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.Equals(System.String[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L621C49-L621C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L621C49-L621C86" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.op_Equality(Microsoft.Extensions.Primitives.StringValues,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L624C77-L624C114" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L624C77-L624C114" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.op_Inequality(Microsoft.Extensions.Primitives.StringValues,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L632C77-L632C115" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L632C77-L632C115" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.op_Equality(System.String,Microsoft.Extensions.Primitives.StringValues)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L635C77-L635C114" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L635C77-L635C114" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.op_Inequality(System.String,Microsoft.Extensions.Primitives.StringValues)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L643C77-L643C115" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L643C77-L643C115" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.op_Equality(Microsoft.Extensions.Primitives.StringValues,System.String[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L646C80-L646C117" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L646C80-L646C117" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.op_Inequality(Microsoft.Extensions.Primitives.StringValues,System.String[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L654C80-L654C118" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L654C80-L654C118" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.op_Equality(System.String[],Microsoft.Extensions.Primitives.StringValues)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L657C80-L657C117" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L657C80-L657C117" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.op_Inequality(System.String[],Microsoft.Extensions.Primitives.StringValues)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L665C80-L665C118" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L665C80-L665C118" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.op_Equality(Microsoft.Extensions.Primitives.StringValues,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L674C77-L674C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L674C77-L674C95" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.op_Inequality(Microsoft.Extensions.Primitives.StringValues,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L683C77-L683C96" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L683C77-L683C96" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.op_Equality(System.Object,Microsoft.Extensions.Primitives.StringValues)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L692C77-L692C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L692C77-L692C95" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.op_Inequality(System.Object,Microsoft.Extensions.Primitives.StringValues)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L700C77-L700C96" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L700C77-L700C96" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L709C13-L729C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L709C13-L729C26" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L740C13-L756C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L740C13-L756C87" }, { "DocsId": "F:Microsoft.Extensions.Primitives.StringValues.Empty", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs" }, { "DocsId": "P:Microsoft.Extensions.Primitives.StringValues.Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L97C17-L109C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L97C17-L109C63" }, { "DocsId": "P:Microsoft.Extensions.Primitives.StringValues.System#Collections#Generic#ICollection#IsReadOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L114C49-L114C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L114C49-L114C53" }, { "DocsId": "P:Microsoft.Extensions.Primitives.StringValues.System#Collections#Generic#IList#Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L124C20-L124C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L124C20-L124C31" }, { "DocsId": "P:Microsoft.Extensions.Primitives.StringValues.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L139C17-L153C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L139C17-L153C38" }, { "DocsId": "T:Microsoft.Extensions.Primitives.StringValues.Enumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs" } ], "DocsId": "T:Microsoft.Extensions.Primitives.StringValues", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Primitives.StringTokenizer.Enumerator.#ctor(Microsoft.Extensions.Primitives.StringTokenizer@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringTokenizer.cs#L93C17-L97C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringTokenizer.cs#L93C17-L97C14" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringTokenizer.Enumerator.System#Collections#IEnumerator#get_Current", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringTokenizer.cs#L104C43-L104C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringTokenizer.cs#L104C43-L104C50" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringTokenizer.Enumerator.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringTokenizer.cs#L111C13-L111C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringTokenizer.cs#L111C13-L111C14" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringTokenizer.Enumerator.MoveNext", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringTokenizer.cs#L119C17-L135C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringTokenizer.cs#L119C17-L135C29" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringTokenizer.Enumerator.Reset", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringTokenizer.cs#L143C17-L145C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringTokenizer.cs#L143C17-L145C14" }, { "DocsId": "P:Microsoft.Extensions.Primitives.StringTokenizer.Enumerator.Current", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringTokenizer.cs#L102C44-L102C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringTokenizer.cs#L102C44-L102C48" }, { "DocsId": "P:Microsoft.Extensions.Primitives.StringTokenizer.Enumerator.System#Collections#IEnumerator#Current", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringTokenizer.cs#L104C43-L104C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringTokenizer.cs#L104C43-L104C50" } ], "DocsId": "T:Microsoft.Extensions.Primitives.StringTokenizer.Enumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringTokenizer.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringTokenizer.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.Enumerator.#ctor(Microsoft.Extensions.Primitives.StringValues@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L788C58-L789C16" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L788C58-L789C16" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.Enumerator.MoveNext", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L797C17-L818C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L797C17-L818C41" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.Enumerator.System#Collections#IEnumerator#get_Current", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L826C44-L826C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L826C44-L826C52" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.Enumerator.System#Collections#IEnumerator#Reset", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L830C17-L830C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L830C17-L830C51" }, { "DocsId": "M:Microsoft.Extensions.Primitives.StringValues.Enumerator.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L838C13-L838C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L838C13-L838C14" }, { "DocsId": "P:Microsoft.Extensions.Primitives.StringValues.Enumerator.Current", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L824C39-L824C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L824C39-L824C47" }, { "DocsId": "P:Microsoft.Extensions.Primitives.StringValues.Enumerator.System#Collections#IEnumerator#Current", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L826C44-L826C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs#L826C44-L826C52" } ], "DocsId": "T:Microsoft.Extensions.Primitives.StringValues.Enumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Extensions.Primitives/src/StringValues.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Resilience.json b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Resilience.json index b296abf51d3..69d14dfcdb4 100644 --- a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Resilience.json +++ b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Resilience.json @@ -1,31 +1,30 @@ { "Assembly": "Microsoft.Extensions.Resilience", - "GUID": "F777295CC11042C5AD490EB2C7B8A732FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "80EFBFFE85744127B0B4F6A1C69AA57AFFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Polly.ResilienceContextExtensions.SetRequestMetadata(Polly.ResilienceContext,Microsoft.Extensions.Http.Diagnostics.RequestMetadata)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Resilience/Resilience/ResilienceContextExtensions.cs#L25C9-L29C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Resilience/Resilience/ResilienceContextExtensions.cs#L25C9-L29C6" }, { "DocsId": "M:Polly.ResilienceContextExtensions.GetRequestMetadata(Polly.ResilienceContext)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Resilience/Resilience/ResilienceContextExtensions.cs#L39C9-L41C71" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Resilience/Resilience/ResilienceContextExtensions.cs#L39C9-L41C71" } ], "DocsId": "T:Polly.ResilienceContextExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Resilience/Resilience/ResilienceContextExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Resilience/Resilience/ResilienceContextExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ResilienceServiceCollectionExtensions.AddResilienceEnricher(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Resilience/Resilience/ResilienceServiceCollectionExtensions.cs#L40C9-L54C25" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Resilience/Resilience/ResilienceServiceCollectionExtensions.cs#L40C9-L54C25" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.ResilienceServiceCollectionExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Resilience/Resilience/ResilienceServiceCollectionExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Resilience/Resilience/ResilienceServiceCollectionExtensions.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Telemetry.Abstractions.json b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Telemetry.Abstractions.json index adc3ea92490..46a5541ba4d 100644 --- a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Telemetry.Abstractions.json +++ b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Telemetry.Abstractions.json @@ -1,829 +1,828 @@ { "Assembly": "Microsoft.Extensions.Telemetry.Abstractions", - "GUID": "D47C207AF1E14AC594EA6D18683D528CFFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "F9A4775341BC49F69370131101F3F9BCFFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.ITagCollector.Add(System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/ITagCollector.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/ITagCollector.cs" }, { "DocsId": "M:Microsoft.Extensions.Logging.ITagCollector.Add(System.String,System.Object,Microsoft.Extensions.Compliance.Classification.DataClassificationSet)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/ITagCollector.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/ITagCollector.cs" } ], "DocsId": "T:Microsoft.Extensions.Logging.ITagCollector", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/ITagCollector.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/ITagCollector.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessageHelper.Stringify(System.Collections.IEnumerable)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageHelper.cs#L48C9-L79C23" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageHelper.cs#L48C9-L79C23" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessageHelper.Stringify``2(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{``0,``1}})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageHelper.cs#L93C9-L133C23" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageHelper.cs#L93C9-L133C23" }, { "DocsId": "P:Microsoft.Extensions.Logging.LoggerMessageHelper.ThreadLocalState", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageHelper.cs#L28C13-L35C27" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageHelper.cs#L28C13-L35C27" } ], "DocsId": "T:Microsoft.Extensions.Logging.LoggerMessageHelper", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageHelper.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageHelper.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessageState.ReserveTagSpace(System.Int32)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.cs#L47C9-L56C22" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.cs#L47C9-L56C22" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessageState.ReserveClassifiedTagSpace(System.Int32)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.cs#L66C9-L76C22" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.cs#L66C9-L76C22" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessageState.AddTag(System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.cs#L86C9-L88C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.cs#L86C9-L88C6" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessageState.AddClassifiedTag(System.String,System.Object,Microsoft.Extensions.Compliance.Classification.DataClassificationSet)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.cs#L98C9-L100C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.cs#L98C9-L100C6" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessageState.Clear", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.cs#L107C9-L113C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.cs#L107C9-L113C6" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessageState.ToString", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.cs#L131C9-L162C23" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.cs#L131C9-L162C23" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessageState.Microsoft#Extensions#Diagnostics#Enrichment#IEnrichmentTagCollector#Add(System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.EnrichmentTagCollector.cs#L13C9-L14C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.EnrichmentTagCollector.cs#L13C9-L14C6" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessageState.System#Collections#Generic#IReadOnlyCollection>#get_Count", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.ReadOnlyList.cs#L16C69-L16C78" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.ReadOnlyList.cs#L16C69-L16C78" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessageState.System#Collections#Generic#IEnumerable>#GetEnumerator", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.cs" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessageState.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.cs" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessageState.Microsoft#Extensions#Logging#ITagCollector#Add(System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.TagCollector.cs#L15C9-L17C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.TagCollector.cs#L15C9-L17C6" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessageState.Microsoft#Extensions#Logging#ITagCollector#Add(System.String,System.Object,Microsoft.Extensions.Compliance.Classification.DataClassificationSet)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.TagCollector.cs#L22C9-L24C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.TagCollector.cs#L22C9-L24C6" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessageState.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.cs#L19C5-L31C61" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.cs#L19C5-L31C61" }, { "DocsId": "P:Microsoft.Extensions.Logging.LoggerMessageState.TagArray", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.cs#L27C56-L27C61" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.cs#L27C56-L27C61" }, { "DocsId": "P:Microsoft.Extensions.Logging.LoggerMessageState.RedactedTagArray", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.cs#L32C64-L32C77" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.cs#L32C64-L32C77" }, { "DocsId": "P:Microsoft.Extensions.Logging.LoggerMessageState.ClassifiedTagArray", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.cs#L37C50-L37C65" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.cs#L37C50-L37C65" }, { "DocsId": "P:Microsoft.Extensions.Logging.LoggerMessageState.TagsCount", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.cs#L118C28-L118C32" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.cs#L118C28-L118C32" }, { "DocsId": "P:Microsoft.Extensions.Logging.LoggerMessageState.ClassifiedTagsCount", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.cs#L123C38-L123C42" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.cs#L123C38-L123C42" }, { "DocsId": "P:Microsoft.Extensions.Logging.LoggerMessageState.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.ReadOnlyList.cs#L13C61-L13C107" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.ReadOnlyList.cs#L13C61-L13C107" }, { "DocsId": "P:Microsoft.Extensions.Logging.LoggerMessageState.System#Collections#Generic#IReadOnlyCollection>#Count", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.ReadOnlyList.cs#L16C69-L16C78" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.ReadOnlyList.cs#L16C69-L16C78" }, { "DocsId": "P:Microsoft.Extensions.Logging.LoggerMessageState.TagNamePrefix", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.TagCollector.cs#L31C35-L31C39" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.TagCollector.cs#L31C35-L31C39" }, { "DocsId": "T:Microsoft.Extensions.Logging.LoggerMessageState.ClassifiedTag", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.ClassifiedTag.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.ClassifiedTag.cs" } ], "DocsId": "T:Microsoft.Extensions.Logging.LoggerMessageState", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.LogPropertiesAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LogPropertiesAttribute.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LogPropertiesAttribute.cs" }, { "DocsId": "P:Microsoft.Extensions.Logging.LogPropertiesAttribute.SkipNullProperties", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LogPropertiesAttribute.cs#L26C38-L26C42" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LogPropertiesAttribute.cs#L26C38-L26C42" }, { "DocsId": "P:Microsoft.Extensions.Logging.LogPropertiesAttribute.OmitReferenceName", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LogPropertiesAttribute.cs#L34C37-L34C41" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LogPropertiesAttribute.cs#L34C37-L34C41" }, { "DocsId": "P:Microsoft.Extensions.Logging.LogPropertiesAttribute.Transitive", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LogPropertiesAttribute.cs#L49C30-L49C34" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LogPropertiesAttribute.cs#L49C30-L49C34" } ], "DocsId": "T:Microsoft.Extensions.Logging.LogPropertiesAttribute", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LogPropertiesAttribute.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LogPropertiesAttribute.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.LogPropertyIgnoreAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LogPropertyIgnoreAttribute.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LogPropertyIgnoreAttribute.cs" } ], "DocsId": "T:Microsoft.Extensions.Logging.LogPropertyIgnoreAttribute", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LogPropertyIgnoreAttribute.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LogPropertyIgnoreAttribute.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.TagNameAttribute.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/TagNameAttribute.cs#L25C5-L28C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/TagNameAttribute.cs#L25C5-L28C6" }, { "DocsId": "P:Microsoft.Extensions.Logging.TagNameAttribute.Name", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/TagNameAttribute.cs#L33C26-L33C30" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/TagNameAttribute.cs#L33C26-L33C30" } ], "DocsId": "T:Microsoft.Extensions.Logging.TagNameAttribute", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/TagNameAttribute.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/TagNameAttribute.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.TagProviderAttribute.#ctor(System.Type,System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/TagProviderAttribute.cs#L63C5-L67C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/TagProviderAttribute.cs#L63C5-L67C6" }, { "DocsId": "P:Microsoft.Extensions.Logging.TagProviderAttribute.ProviderType", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/TagProviderAttribute.cs#L72C32-L72C36" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/TagProviderAttribute.cs#L72C32-L72C36" }, { "DocsId": "P:Microsoft.Extensions.Logging.TagProviderAttribute.ProviderMethod", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/TagProviderAttribute.cs#L77C36-L77C40" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/TagProviderAttribute.cs#L77C36-L77C40" }, { "DocsId": "P:Microsoft.Extensions.Logging.TagProviderAttribute.OmitReferenceName", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/TagProviderAttribute.cs#L85C37-L85C41" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/TagProviderAttribute.cs#L85C37-L85C41" } ], "DocsId": "T:Microsoft.Extensions.Logging.TagProviderAttribute", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/TagProviderAttribute.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/TagProviderAttribute.cs" }, { "Members": [ { "DocsId": "F:Microsoft.Extensions.Http.Diagnostics.HttpRouteParameterRedactionMode.value__", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/HttpRouteParameterRedactionMode.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/HttpRouteParameterRedactionMode.cs" }, { "DocsId": "F:Microsoft.Extensions.Http.Diagnostics.HttpRouteParameterRedactionMode.Strict", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/HttpRouteParameterRedactionMode.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/HttpRouteParameterRedactionMode.cs" }, { "DocsId": "F:Microsoft.Extensions.Http.Diagnostics.HttpRouteParameterRedactionMode.Loose", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/HttpRouteParameterRedactionMode.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/HttpRouteParameterRedactionMode.cs" }, { "DocsId": "F:Microsoft.Extensions.Http.Diagnostics.HttpRouteParameterRedactionMode.None", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/HttpRouteParameterRedactionMode.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/HttpRouteParameterRedactionMode.cs" } ], "DocsId": "T:Microsoft.Extensions.Http.Diagnostics.HttpRouteParameterRedactionMode", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/HttpRouteParameterRedactionMode.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/HttpRouteParameterRedactionMode.cs" }, { "Members": [ { "DocsId": "P:Microsoft.Extensions.Http.Diagnostics.IDownstreamDependencyMetadata.DependencyName", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/IDownstreamDependencyMetadata.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/IDownstreamDependencyMetadata.cs" }, { "DocsId": "P:Microsoft.Extensions.Http.Diagnostics.IDownstreamDependencyMetadata.UniqueHostNameSuffixes", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/IDownstreamDependencyMetadata.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/IDownstreamDependencyMetadata.cs" }, { "DocsId": "P:Microsoft.Extensions.Http.Diagnostics.IDownstreamDependencyMetadata.RequestMetadata", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/IDownstreamDependencyMetadata.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/IDownstreamDependencyMetadata.cs" } ], "DocsId": "T:Microsoft.Extensions.Http.Diagnostics.IDownstreamDependencyMetadata", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/IDownstreamDependencyMetadata.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/IDownstreamDependencyMetadata.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Http.Diagnostics.IOutgoingRequestContext.SetRequestMetadata(Microsoft.Extensions.Http.Diagnostics.RequestMetadata)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/IOutgoingRequestContext.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/IOutgoingRequestContext.cs" }, { "DocsId": "P:Microsoft.Extensions.Http.Diagnostics.IOutgoingRequestContext.RequestMetadata", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/IOutgoingRequestContext.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/IOutgoingRequestContext.cs" } ], "DocsId": "T:Microsoft.Extensions.Http.Diagnostics.IOutgoingRequestContext", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/IOutgoingRequestContext.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/IOutgoingRequestContext.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Http.Diagnostics.RequestMetadata.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/RequestMetadata.cs#L58C48-L22C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/RequestMetadata.cs#L58C48-L22C6" }, { "DocsId": "M:Microsoft.Extensions.Http.Diagnostics.RequestMetadata.#ctor(System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/RequestMetadata.cs#L58C48-L39C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/RequestMetadata.cs#L58C48-L39C6" }, { "DocsId": "P:Microsoft.Extensions.Http.Diagnostics.RequestMetadata.RequestRoute", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/RequestMetadata.cs#L58C34-L58C38" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/RequestMetadata.cs#L58C34-L58C38" }, { "DocsId": "P:Microsoft.Extensions.Http.Diagnostics.RequestMetadata.RequestName", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/RequestMetadata.cs#L80C33-L80C37" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/RequestMetadata.cs#L80C33-L80C37" }, { "DocsId": "P:Microsoft.Extensions.Http.Diagnostics.RequestMetadata.DependencyName", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/RequestMetadata.cs#L96C36-L96C40" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/RequestMetadata.cs#L96C36-L96C40" }, { "DocsId": "P:Microsoft.Extensions.Http.Diagnostics.RequestMetadata.MethodType", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/RequestMetadata.cs#L104C32-L104C36" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/RequestMetadata.cs#L104C32-L104C36" } ], "DocsId": "T:Microsoft.Extensions.Http.Diagnostics.RequestMetadata", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/RequestMetadata.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/RequestMetadata.cs" }, { "Members": [ { "DocsId": "F:Microsoft.Extensions.Http.Diagnostics.TelemetryConstants.RequestMetadataKey", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/TelemetryConstants.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/TelemetryConstants.cs" }, { "DocsId": "F:Microsoft.Extensions.Http.Diagnostics.TelemetryConstants.Unknown", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/TelemetryConstants.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/TelemetryConstants.cs" }, { "DocsId": "F:Microsoft.Extensions.Http.Diagnostics.TelemetryConstants.Redacted", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/TelemetryConstants.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/TelemetryConstants.cs" }, { "DocsId": "F:Microsoft.Extensions.Http.Diagnostics.TelemetryConstants.ClientApplicationNameHeader", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/TelemetryConstants.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/TelemetryConstants.cs" }, { "DocsId": "F:Microsoft.Extensions.Http.Diagnostics.TelemetryConstants.ServerApplicationNameHeader", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/TelemetryConstants.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/TelemetryConstants.cs" } ], "DocsId": "T:Microsoft.Extensions.Http.Diagnostics.TelemetryConstants", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/TelemetryConstants.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Http/TelemetryConstants.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.CounterAttribute.#ctor(System.String[])", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/CounterAttribute.cs#L39C5-L42C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/CounterAttribute.cs#L39C5-L42C6" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.CounterAttribute.#ctor(System.Type)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/CounterAttribute.cs#L48C5-L51C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/CounterAttribute.cs#L48C5-L51C6" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.CounterAttribute.Name", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/CounterAttribute.cs#L68C27-L68C31" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/CounterAttribute.cs#L68C27-L68C31" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.CounterAttribute.TagNames", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/CounterAttribute.cs#L73C33-L73C37" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/CounterAttribute.cs#L73C33-L73C37" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.CounterAttribute.Type", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/CounterAttribute.cs#L78C25-L78C29" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/CounterAttribute.cs#L78C25-L78C29" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Metrics.CounterAttribute", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/CounterAttribute.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/CounterAttribute.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.CounterAttribute`1.#ctor(System.String[])", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/CounterAttributeT.cs#L46C5-L49C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/CounterAttributeT.cs#L46C5-L49C6" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.CounterAttribute`1.#ctor(System.Type)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/CounterAttributeT.cs#L55C5-L58C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/CounterAttributeT.cs#L55C5-L58C6" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.CounterAttribute`1.Name", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/CounterAttributeT.cs#L74C27-L74C31" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/CounterAttributeT.cs#L74C27-L74C31" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.CounterAttribute`1.TagNames", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/CounterAttributeT.cs#L79C33-L79C37" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/CounterAttributeT.cs#L79C33-L79C37" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.CounterAttribute`1.Type", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/CounterAttributeT.cs#L84C25-L84C29" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/CounterAttributeT.cs#L84C25-L84C29" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Metrics.CounterAttribute`1", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/CounterAttributeT.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/CounterAttributeT.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.GaugeAttribute.#ctor(System.String[])", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/GaugeAttribute.cs#L39C5-L42C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/GaugeAttribute.cs#L39C5-L42C6" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.GaugeAttribute.#ctor(System.Type)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/GaugeAttribute.cs#L48C5-L51C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/GaugeAttribute.cs#L48C5-L51C6" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.GaugeAttribute.Name", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/GaugeAttribute.cs#L67C27-L67C31" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/GaugeAttribute.cs#L67C27-L67C31" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.GaugeAttribute.TagNames", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/GaugeAttribute.cs#L72C33-L72C37" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/GaugeAttribute.cs#L72C33-L72C37" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.GaugeAttribute.Type", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/GaugeAttribute.cs#L77C25-L77C29" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/GaugeAttribute.cs#L77C25-L77C29" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Metrics.GaugeAttribute", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/GaugeAttribute.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/GaugeAttribute.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.HistogramAttribute.#ctor(System.String[])", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/HistogramAttribute.cs#L39C5-L42C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/HistogramAttribute.cs#L39C5-L42C6" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.HistogramAttribute.#ctor(System.Type)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/HistogramAttribute.cs#L48C5-L51C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/HistogramAttribute.cs#L48C5-L51C6" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.HistogramAttribute.Name", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/HistogramAttribute.cs#L67C27-L67C31" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/HistogramAttribute.cs#L67C27-L67C31" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.HistogramAttribute.TagNames", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/HistogramAttribute.cs#L72C33-L72C37" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/HistogramAttribute.cs#L72C33-L72C37" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.HistogramAttribute.Type", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/HistogramAttribute.cs#L77C25-L77C29" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/HistogramAttribute.cs#L77C25-L77C29" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Metrics.HistogramAttribute", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/HistogramAttribute.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/HistogramAttribute.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.HistogramAttribute`1.#ctor(System.String[])", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/HistogramAttributeT.cs#L46C5-L49C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/HistogramAttributeT.cs#L46C5-L49C6" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.HistogramAttribute`1.#ctor(System.Type)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/HistogramAttributeT.cs#L55C5-L58C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/HistogramAttributeT.cs#L55C5-L58C6" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.HistogramAttribute`1.Name", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/HistogramAttributeT.cs#L74C27-L74C31" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/HistogramAttributeT.cs#L74C27-L74C31" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.HistogramAttribute`1.TagNames", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/HistogramAttributeT.cs#L79C33-L79C37" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/HistogramAttributeT.cs#L79C33-L79C37" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.HistogramAttribute`1.Type", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/HistogramAttributeT.cs#L84C25-L84C29" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/HistogramAttributeT.cs#L84C25-L84C29" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Metrics.HistogramAttribute`1", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/HistogramAttributeT.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/HistogramAttributeT.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Metrics.TagNameAttribute.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/TagNameAttribute.cs#L35C5-L38C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/TagNameAttribute.cs#L35C5-L38C6" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Metrics.TagNameAttribute.Name", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/TagNameAttribute.cs#L43C26-L43C30" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/TagNameAttribute.cs#L43C26-L43C30" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Metrics.TagNameAttribute", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/TagNameAttribute.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Metrics/TagNameAttribute.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Latency.Checkpoint.#ctor(System.String,System.Int64,System.Int64)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Checkpoint.cs#L26C9-L29C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Checkpoint.cs#L26C9-L29C6" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Latency.Checkpoint.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Checkpoint.cs#L51C49-L51C81" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Checkpoint.cs#L51C49-L51C81" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Latency.Checkpoint.Equals(Microsoft.Extensions.Diagnostics.Latency.Checkpoint)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Checkpoint.cs#L59C12-L59C121" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Checkpoint.cs#L59C12-L59C121" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Latency.Checkpoint.GetHashCode", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Checkpoint.cs#L66C12-L66C54" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Checkpoint.cs#L66C12-L66C54" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Latency.Checkpoint.op_Equality(Microsoft.Extensions.Diagnostics.Latency.Checkpoint,Microsoft.Extensions.Diagnostics.Latency.Checkpoint)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Checkpoint.cs#L76C9-L76C35" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Checkpoint.cs#L76C9-L76C35" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Latency.Checkpoint.op_Inequality(Microsoft.Extensions.Diagnostics.Latency.Checkpoint,Microsoft.Extensions.Diagnostics.Latency.Checkpoint)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Checkpoint.cs#L87C9-L87C33" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Checkpoint.cs#L87C9-L87C33" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Latency.Checkpoint.Name", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Checkpoint.cs#L34C26-L34C30" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Checkpoint.cs#L34C26-L34C30" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Latency.Checkpoint.Elapsed", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Checkpoint.cs#L39C27-L39C31" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Checkpoint.cs#L39C27-L39C31" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Latency.Checkpoint.Frequency", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Checkpoint.cs#L44C29-L44C33" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Checkpoint.cs#L44C29-L44C33" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Latency.Checkpoint", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Checkpoint.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Checkpoint.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Latency.ILatencyContext.SetTag(Microsoft.Extensions.Diagnostics.Latency.TagToken,System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/ILatencyContext.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/ILatencyContext.cs" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Latency.ILatencyContext.AddCheckpoint(Microsoft.Extensions.Diagnostics.Latency.CheckpointToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/ILatencyContext.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/ILatencyContext.cs" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Latency.ILatencyContext.AddMeasure(Microsoft.Extensions.Diagnostics.Latency.MeasureToken,System.Int64)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/ILatencyContext.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/ILatencyContext.cs" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Latency.ILatencyContext.RecordMeasure(Microsoft.Extensions.Diagnostics.Latency.MeasureToken,System.Int64)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/ILatencyContext.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/ILatencyContext.cs" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Latency.ILatencyContext.Freeze", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/ILatencyContext.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/ILatencyContext.cs" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Latency.ILatencyContext.LatencyData", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/ILatencyContext.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/ILatencyContext.cs" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Latency.ILatencyContext", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/ILatencyContext.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/ILatencyContext.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Latency.ILatencyContextProvider.CreateContext", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/ILatencyContextProvider.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/ILatencyContextProvider.cs" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Latency.ILatencyContextProvider", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/ILatencyContextProvider.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/ILatencyContextProvider.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Latency.ILatencyDataExporter.ExportAsync(Microsoft.Extensions.Diagnostics.Latency.LatencyData,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/ILatencyDataExporter.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/ILatencyDataExporter.cs" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Latency.ILatencyDataExporter", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/ILatencyDataExporter.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/ILatencyDataExporter.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Latency.LatencyData.#ctor(System.ArraySegment{Microsoft.Extensions.Diagnostics.Latency.Tag},System.ArraySegment{Microsoft.Extensions.Diagnostics.Latency.Checkpoint},System.ArraySegment{Microsoft.Extensions.Diagnostics.Latency.Measure},System.Int64,System.Int64)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/LatencyData.cs#L29C9-L34C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/LatencyData.cs#L29C9-L34C6" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Latency.LatencyData.Checkpoints", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/LatencyData.cs#L39C52-L39C64" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/LatencyData.cs#L39C52-L39C64" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Latency.LatencyData.Tags", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/LatencyData.cs#L44C38-L44C43" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/LatencyData.cs#L44C38-L44C43" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Latency.LatencyData.Measures", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/LatencyData.cs#L49C46-L49C55" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/LatencyData.cs#L49C46-L49C55" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Latency.LatencyData.DurationTimestamp", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/LatencyData.cs#L54C37-L54C41" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/LatencyData.cs#L54C37-L54C41" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Latency.LatencyData.DurationTimestampFrequency", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/LatencyData.cs#L59C46-L59C50" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/LatencyData.cs#L59C46-L59C50" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Latency.LatencyData", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/LatencyData.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/LatencyData.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Latency.Measure.#ctor(System.String,System.Int64)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Measure.cs#L25C9-L27C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Measure.cs#L25C9-L27C6" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Latency.Measure.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Measure.cs#L44C49-L44C78" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Measure.cs#L44C49-L44C78" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Latency.Measure.Equals(Microsoft.Extensions.Diagnostics.Latency.Measure)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Measure.cs#L51C42-L51C115" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Measure.cs#L51C42-L51C115" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Latency.Measure.GetHashCode", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Measure.cs#L57C42-L57C71" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Measure.cs#L57C42-L57C71" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Latency.Measure.op_Equality(Microsoft.Extensions.Diagnostics.Latency.Measure,Microsoft.Extensions.Diagnostics.Latency.Measure)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Measure.cs#L67C9-L67C35" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Measure.cs#L67C9-L67C35" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Latency.Measure.op_Inequality(Microsoft.Extensions.Diagnostics.Latency.Measure,Microsoft.Extensions.Diagnostics.Latency.Measure)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Measure.cs#L78C9-L78C33" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Measure.cs#L78C9-L78C33" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Latency.Measure.Name", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Measure.cs#L32C26-L32C30" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Measure.cs#L32C26-L32C30" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Latency.Measure.Value", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Measure.cs#L37C25-L37C29" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Measure.cs#L37C25-L37C29" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Latency.Measure", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Measure.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Measure.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Latency.CheckpointToken.#ctor(System.String,System.Int32)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/CheckpointToken.cs#L34C9-L36C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/CheckpointToken.cs#L34C9-L36C6" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Latency.CheckpointToken.Name", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/CheckpointToken.cs#L19C26-L19C30" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/CheckpointToken.cs#L19C26-L19C30" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Latency.CheckpointToken.Position", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/CheckpointToken.cs#L24C27-L24C31" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/CheckpointToken.cs#L24C27-L24C31" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Latency.CheckpointToken", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/CheckpointToken.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/CheckpointToken.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Latency.ILatencyContextTokenIssuer.GetTagToken(System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/ILatencyContextTokenIssuer.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/ILatencyContextTokenIssuer.cs" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Latency.ILatencyContextTokenIssuer.GetCheckpointToken(System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/ILatencyContextTokenIssuer.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/ILatencyContextTokenIssuer.cs" }, { "DocsId": "M:Microsoft.Extensions.Diagnostics.Latency.ILatencyContextTokenIssuer.GetMeasureToken(System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/ILatencyContextTokenIssuer.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/ILatencyContextTokenIssuer.cs" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Latency.ILatencyContextTokenIssuer", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/ILatencyContextTokenIssuer.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/ILatencyContextTokenIssuer.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Latency.LatencyContextRegistrationOptions.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/LatencyContextRegistrationOptions.cs#L18C66-L30C77" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/LatencyContextRegistrationOptions.cs#L18C66-L30C77" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Latency.LatencyContextRegistrationOptions.CheckpointNames", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/LatencyContextRegistrationOptions.cs#L18C52-L18C56" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/LatencyContextRegistrationOptions.cs#L18C52-L18C56" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Latency.LatencyContextRegistrationOptions.MeasureNames", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/LatencyContextRegistrationOptions.cs#L24C49-L24C53" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/LatencyContextRegistrationOptions.cs#L24C49-L24C53" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Latency.LatencyContextRegistrationOptions.TagNames", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/LatencyContextRegistrationOptions.cs#L30C45-L30C49" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/LatencyContextRegistrationOptions.cs#L30C45-L30C49" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Latency.LatencyContextRegistrationOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/LatencyContextRegistrationOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/LatencyContextRegistrationOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Latency.MeasureToken.#ctor(System.String,System.Int32)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/MeasureToken.cs#L34C9-L36C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/MeasureToken.cs#L34C9-L36C6" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Latency.MeasureToken.Name", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/MeasureToken.cs#L19C26-L19C30" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/MeasureToken.cs#L19C26-L19C30" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Latency.MeasureToken.Position", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/MeasureToken.cs#L24C27-L24C31" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/MeasureToken.cs#L24C27-L24C31" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Latency.MeasureToken", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/MeasureToken.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/MeasureToken.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Latency.TagToken.#ctor(System.String,System.Int32)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/TagToken.cs#L34C9-L36C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/TagToken.cs#L34C9-L36C6" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Latency.TagToken.Name", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/TagToken.cs#L19C26-L19C30" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/TagToken.cs#L19C26-L19C30" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Latency.TagToken.Position", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/TagToken.cs#L24C27-L24C31" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/TagToken.cs#L24C27-L24C31" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Latency.TagToken", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/TagToken.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/TagToken.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Latency.Tag.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Tag.cs#L21C9-L23C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Tag.cs#L21C9-L23C6" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Latency.Tag.Name", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Tag.cs#L28C26-L28C30" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Tag.cs#L28C26-L28C30" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Latency.Tag.Value", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Tag.cs#L33C27-L33C31" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Tag.cs#L33C27-L33C31" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Latency.Tag", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Tag.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Tag.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Enrichment.IEnrichmentTagCollector.Add(System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Enrichment/IEnrichmentTagCollector.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Enrichment/IEnrichmentTagCollector.cs" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Enrichment.IEnrichmentTagCollector", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Enrichment/IEnrichmentTagCollector.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Enrichment/IEnrichmentTagCollector.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Enrichment.ILogEnricher.Enrich(Microsoft.Extensions.Diagnostics.Enrichment.IEnrichmentTagCollector)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Enrichment/ILogEnricher.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Enrichment/ILogEnricher.cs" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Enrichment.ILogEnricher", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Enrichment/ILogEnricher.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Enrichment/ILogEnricher.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Enrichment.IStaticLogEnricher.Enrich(Microsoft.Extensions.Diagnostics.Enrichment.IEnrichmentTagCollector)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Enrichment/IStaticLogEnricher.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Enrichment/IStaticLogEnricher.cs" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Enrichment.IStaticLogEnricher", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Enrichment/IStaticLogEnricher.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Enrichment/IStaticLogEnricher.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.EnrichmentServiceCollectionExtensions.AddLogEnricher``1(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Enrichment/EnrichmentServiceCollectionExtensions.cs#L25C12-L25C66" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Enrichment/EnrichmentServiceCollectionExtensions.cs#L25C12-L25C66" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.EnrichmentServiceCollectionExtensions.AddLogEnricher(Microsoft.Extensions.DependencyInjection.IServiceCollection,Microsoft.Extensions.Diagnostics.Enrichment.ILogEnricher)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Enrichment/EnrichmentServiceCollectionExtensions.cs#L35C12-L35C71" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Enrichment/EnrichmentServiceCollectionExtensions.cs#L35C12-L35C71" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.EnrichmentServiceCollectionExtensions.AddStaticLogEnricher``1(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Enrichment/EnrichmentServiceCollectionExtensions.cs#L46C12-L46C72" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Enrichment/EnrichmentServiceCollectionExtensions.cs#L46C12-L46C72" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.EnrichmentServiceCollectionExtensions.AddStaticLogEnricher(Microsoft.Extensions.DependencyInjection.IServiceCollection,Microsoft.Extensions.Diagnostics.Enrichment.IStaticLogEnricher)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Enrichment/EnrichmentServiceCollectionExtensions.cs#L56C12-L56C71" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Enrichment/EnrichmentServiceCollectionExtensions.cs#L56C12-L56C71" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.EnrichmentServiceCollectionExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Enrichment/EnrichmentServiceCollectionExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Enrichment/EnrichmentServiceCollectionExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.NullLatencyContextServiceCollectionExtensions.AddNullLatencyContext(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/NullLatencyContextServiceCollectionExtensions.cs#L24C9-L29C25" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/NullLatencyContextServiceCollectionExtensions.cs#L24C9-L29C25" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.NullLatencyContextServiceCollectionExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/NullLatencyContextServiceCollectionExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/NullLatencyContextServiceCollectionExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.LatencyRegistryServiceCollectionExtensions.RegisterCheckpointNames(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.String[])", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/LatencyRegistryServiceCollectionExtensions.cs#L24C9-L30C25" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/LatencyRegistryServiceCollectionExtensions.cs#L16707566C0-L30C25" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.LatencyRegistryServiceCollectionExtensions.RegisterMeasureNames(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.String[])", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/LatencyRegistryServiceCollectionExtensions.cs#L42C9-L48C25" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/LatencyRegistryServiceCollectionExtensions.cs#L16707566C0-L48C25" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.LatencyRegistryServiceCollectionExtensions.RegisterTagNames(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.String[])", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/LatencyRegistryServiceCollectionExtensions.cs#L60C9-L66C25" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/LatencyRegistryServiceCollectionExtensions.cs#L16707566C0-L66C25" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.LatencyRegistryServiceCollectionExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/LatencyRegistryServiceCollectionExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Latency/Registration/LatencyRegistryServiceCollectionExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.LoggerMessageState.ClassifiedTag.#ctor(System.String,System.Object,Microsoft.Extensions.Compliance.Classification.DataClassificationSet)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.ClassifiedTag.cs#L40C13-L43C10" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.ClassifiedTag.cs#L40C13-L43C10" }, { "DocsId": "P:Microsoft.Extensions.Logging.LoggerMessageState.ClassifiedTag.Name", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.ClassifiedTag.cs#L23C39-L23C43" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.ClassifiedTag.cs#L23C39-L23C43" }, { "DocsId": "P:Microsoft.Extensions.Logging.LoggerMessageState.ClassifiedTag.Value", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.ClassifiedTag.cs#L28C41-L28C45" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.ClassifiedTag.cs#L28C41-L28C45" }, { "DocsId": "P:Microsoft.Extensions.Logging.LoggerMessageState.ClassifiedTag.Classifications", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.ClassifiedTag.cs#L33C65-L33C69" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.ClassifiedTag.cs#L33C65-L33C69" } ], "DocsId": "T:Microsoft.Extensions.Logging.LoggerMessageState.ClassifiedTag", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.ClassifiedTag.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry.Abstractions/Logging/LoggerMessageState.ClassifiedTag.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Telemetry.json b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Telemetry.json index 59e15abb7f8..55888ff678a 100644 --- a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Telemetry.json +++ b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.Telemetry.json @@ -1,279 +1,278 @@ { "Assembly": "Microsoft.Extensions.Telemetry", - "GUID": "E80936A676554543B3583CF1FB57AF70FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "95D1C23F085740C9B0845A204E426C5FFFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.LoggerEnrichmentOptions.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggerEnrichmentOptions.cs#L71C52-L71C75" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggerEnrichmentOptions.cs#L71C52-L71C75" }, { "DocsId": "P:Microsoft.Extensions.Logging.LoggerEnrichmentOptions.CaptureStackTraces", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggerEnrichmentOptions.cs#L29C38-L29C42" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggerEnrichmentOptions.cs#L29C38-L29C42" }, { "DocsId": "P:Microsoft.Extensions.Logging.LoggerEnrichmentOptions.UseFileInfoForStackTraces", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggerEnrichmentOptions.cs#L45C45-L45C49" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggerEnrichmentOptions.cs#L45C45-L45C49" }, { "DocsId": "P:Microsoft.Extensions.Logging.LoggerEnrichmentOptions.IncludeExceptionMessage", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggerEnrichmentOptions.cs#L57C43-L57C47" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggerEnrichmentOptions.cs#L57C43-L57C47" }, { "DocsId": "P:Microsoft.Extensions.Logging.LoggerEnrichmentOptions.MaxStackTraceLength", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggerEnrichmentOptions.cs#L71C38-L71C42" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggerEnrichmentOptions.cs#L71C38-L71C42" } ], "DocsId": "T:Microsoft.Extensions.Logging.LoggerEnrichmentOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggerEnrichmentOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggerEnrichmentOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.LoggerRedactionOptions.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggerRedactionOptions.cs#L22C52-L22C56" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggerRedactionOptions.cs#L22C52-L22C56" }, { "DocsId": "P:Microsoft.Extensions.Logging.LoggerRedactionOptions.ApplyDiscriminator", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggerRedactionOptions.cs#L22C38-L22C42" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggerRedactionOptions.cs#L22C38-L22C42" } ], "DocsId": "T:Microsoft.Extensions.Logging.LoggerRedactionOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggerRedactionOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggerRedactionOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.LoggingEnrichmentExtensions.EnableEnrichment(Microsoft.Extensions.Logging.ILoggingBuilder)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggingEnrichmentExtensions.cs#L24C12-L24C47" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggingEnrichmentExtensions.cs#L24C12-L24C47" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggingEnrichmentExtensions.EnableEnrichment(Microsoft.Extensions.Logging.ILoggingBuilder,System.Action{Microsoft.Extensions.Logging.LoggerEnrichmentOptions})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggingEnrichmentExtensions.cs#L34C9-L41C24" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggingEnrichmentExtensions.cs#L34C9-L41C24" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggingEnrichmentExtensions.EnableEnrichment(Microsoft.Extensions.Logging.ILoggingBuilder,Microsoft.Extensions.Configuration.IConfigurationSection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggingEnrichmentExtensions.cs#L52C9-L58C24" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggingEnrichmentExtensions.cs#L52C9-L58C24" } ], "DocsId": "T:Microsoft.Extensions.Logging.LoggingEnrichmentExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggingEnrichmentExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggingEnrichmentExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Logging.LoggingRedactionExtensions.EnableRedaction(Microsoft.Extensions.Logging.ILoggingBuilder)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggingRedactionExtensions.cs#L24C12-L24C46" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggingRedactionExtensions.cs#L24C12-L24C46" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggingRedactionExtensions.EnableRedaction(Microsoft.Extensions.Logging.ILoggingBuilder,System.Action{Microsoft.Extensions.Logging.LoggerRedactionOptions})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggingRedactionExtensions.cs#L34C9-L40C24" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggingRedactionExtensions.cs#L34C9-L40C24" }, { "DocsId": "M:Microsoft.Extensions.Logging.LoggingRedactionExtensions.EnableRedaction(Microsoft.Extensions.Logging.ILoggingBuilder,Microsoft.Extensions.Configuration.IConfigurationSection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggingRedactionExtensions.cs#L51C9-L57C24" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggingRedactionExtensions.cs#L51C9-L57C24" } ], "DocsId": "T:Microsoft.Extensions.Logging.LoggingRedactionExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggingRedactionExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Logging/LoggingRedactionExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Latency.LatencyConsoleOptions.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyConsoleOptions.cs#L17C51-L33C52" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyConsoleOptions.cs#L17C51-L33C52" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Latency.LatencyConsoleOptions.OutputCheckpoints", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyConsoleOptions.cs#L17C37-L17C41" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyConsoleOptions.cs#L17C37-L17C41" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Latency.LatencyConsoleOptions.OutputTags", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyConsoleOptions.cs#L25C30-L25C34" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyConsoleOptions.cs#L25C30-L25C34" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Latency.LatencyConsoleOptions.OutputMeasures", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyConsoleOptions.cs#L33C34-L33C38" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyConsoleOptions.cs#L33C34-L33C38" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Latency.LatencyConsoleOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyConsoleOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyConsoleOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Latency.LatencyContextOptions.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyContextOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyContextOptions.cs" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Latency.LatencyContextOptions.ThrowOnUnregisteredNames", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyContextOptions.cs#L17C44-L17C48" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyContextOptions.cs#L17C44-L17C48" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Latency.LatencyContextOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyContextOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyContextOptions.cs" }, { "Members": [ { "DocsId": "F:Microsoft.Extensions.Diagnostics.Enrichment.ApplicationEnricherTags.ApplicationName", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationEnricherTags.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationEnricherTags.cs" }, { "DocsId": "F:Microsoft.Extensions.Diagnostics.Enrichment.ApplicationEnricherTags.EnvironmentName", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationEnricherTags.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationEnricherTags.cs" }, { "DocsId": "F:Microsoft.Extensions.Diagnostics.Enrichment.ApplicationEnricherTags.DeploymentRing", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationEnricherTags.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationEnricherTags.cs" }, { "DocsId": "F:Microsoft.Extensions.Diagnostics.Enrichment.ApplicationEnricherTags.BuildVersion", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationEnricherTags.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationEnricherTags.cs" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Enrichment.ApplicationEnricherTags.DimensionNames", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationEnricherTags.cs#L38C58-L38C62" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationEnricherTags.cs#L38C58-L38C62" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Enrichment.ApplicationEnricherTags", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationEnricherTags.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationEnricherTags.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Enrichment.ApplicationLogEnricherOptions.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationLogEnricherOptions.cs#L19C49-L27C53" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationLogEnricherOptions.cs#L19C49-L27C53" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Enrichment.ApplicationLogEnricherOptions.EnvironmentName", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationLogEnricherOptions.cs#L19C35-L19C39" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationLogEnricherOptions.cs#L19C35-L19C39" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Enrichment.ApplicationLogEnricherOptions.ApplicationName", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationLogEnricherOptions.cs#L27C35-L27C39" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationLogEnricherOptions.cs#L27C35-L27C39" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Enrichment.ApplicationLogEnricherOptions.DeploymentRing", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationLogEnricherOptions.cs#L35C34-L35C38" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationLogEnricherOptions.cs#L35C34-L35C38" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Enrichment.ApplicationLogEnricherOptions.BuildVersion", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationLogEnricherOptions.cs#L43C32-L43C36" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationLogEnricherOptions.cs#L43C32-L43C36" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Enrichment.ApplicationLogEnricherOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationLogEnricherOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationLogEnricherOptions.cs" }, { "Members": [ { "DocsId": "F:Microsoft.Extensions.Diagnostics.Enrichment.ProcessEnricherTagNames.ProcessId", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ProcessEnricherTagNames.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ProcessEnricherTagNames.cs" }, { "DocsId": "F:Microsoft.Extensions.Diagnostics.Enrichment.ProcessEnricherTagNames.ThreadId", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ProcessEnricherTagNames.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ProcessEnricherTagNames.cs" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Enrichment.ProcessEnricherTagNames.DimensionNames", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ProcessEnricherTagNames.cs#L28C58-L28C62" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ProcessEnricherTagNames.cs#L28C58-L28C62" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Enrichment.ProcessEnricherTagNames", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ProcessEnricherTagNames.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ProcessEnricherTagNames.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.Diagnostics.Enrichment.ProcessLogEnricherOptions.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ProcessLogEnricherOptions.cs#L17C43-L17C47" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ProcessLogEnricherOptions.cs#L17C43-L17C47" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Enrichment.ProcessLogEnricherOptions.ProcessId", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ProcessLogEnricherOptions.cs#L17C29-L17C33" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ProcessLogEnricherOptions.cs#L17C29-L17C33" }, { "DocsId": "P:Microsoft.Extensions.Diagnostics.Enrichment.ProcessLogEnricherOptions.ThreadId", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ProcessLogEnricherOptions.cs#L25C28-L25C32" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ProcessLogEnricherOptions.cs#L25C28-L25C32" } ], "DocsId": "T:Microsoft.Extensions.Diagnostics.Enrichment.ProcessLogEnricherOptions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ProcessLogEnricherOptions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ProcessLogEnricherOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ApplicationEnricherServiceCollectionExtensions.AddServiceLogEnricher(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationEnricherServiceCollectionExtensions.cs#L24C9-L27C46" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationEnricherServiceCollectionExtensions.cs#L24C9-L27C46" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ApplicationEnricherServiceCollectionExtensions.AddServiceLogEnricher(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{Microsoft.Extensions.Diagnostics.Enrichment.ApplicationLogEnricherOptions})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationEnricherServiceCollectionExtensions.cs#L39C9-L44C47" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationEnricherServiceCollectionExtensions.cs#L39C9-L44C47" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ApplicationEnricherServiceCollectionExtensions.AddServiceLogEnricher(Microsoft.Extensions.DependencyInjection.IServiceCollection,Microsoft.Extensions.Configuration.IConfigurationSection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationEnricherServiceCollectionExtensions.cs#L56C9-L61C55" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationEnricherServiceCollectionExtensions.cs#L56C9-L61C55" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.ApplicationEnricherServiceCollectionExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationEnricherServiceCollectionExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ApplicationEnricherServiceCollectionExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ProcessEnricherServiceCollectionExtensions.AddProcessLogEnricher(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ProcessEnricherServiceCollectionExtensions.cs#L24C9-L27C46" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ProcessEnricherServiceCollectionExtensions.cs#L24C9-L27C46" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ProcessEnricherServiceCollectionExtensions.AddProcessLogEnricher(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{Microsoft.Extensions.Diagnostics.Enrichment.ProcessLogEnricherOptions})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ProcessEnricherServiceCollectionExtensions.cs#L39C9-L45C47" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ProcessEnricherServiceCollectionExtensions.cs#L39C9-L45C47" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.ProcessEnricherServiceCollectionExtensions.AddProcessLogEnricher(Microsoft.Extensions.DependencyInjection.IServiceCollection,Microsoft.Extensions.Configuration.IConfigurationSection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ProcessEnricherServiceCollectionExtensions.cs#L57C9-L63C55" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ProcessEnricherServiceCollectionExtensions.cs#L57C9-L63C55" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.ProcessEnricherServiceCollectionExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ProcessEnricherServiceCollectionExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Enrichment/ProcessEnricherServiceCollectionExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.LatencyConsoleExtensions.AddConsoleLatencyDataExporter(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyConsoleExtensions.cs#L26C9-L31C25" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyConsoleExtensions.cs#L26C9-L31C25" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.LatencyConsoleExtensions.AddConsoleLatencyDataExporter(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{Microsoft.Extensions.Diagnostics.Latency.LatencyConsoleOptions})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyConsoleExtensions.cs#L43C9-L48C57" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyConsoleExtensions.cs#L43C9-L48C57" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.LatencyConsoleExtensions.AddConsoleLatencyDataExporter(Microsoft.Extensions.DependencyInjection.IServiceCollection,Microsoft.Extensions.Configuration.IConfigurationSection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyConsoleExtensions.cs#L60C9-L65C57" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyConsoleExtensions.cs#L60C9-L65C57" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.LatencyConsoleExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyConsoleExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyConsoleExtensions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.LatencyContextExtensions.AddLatencyContext(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyContextExtensions.cs#L25C9-L31C25" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyContextExtensions.cs#L25C9-L31C25" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.LatencyContextExtensions.AddLatencyContext(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{Microsoft.Extensions.Diagnostics.Latency.LatencyContextOptions})", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyContextExtensions.cs#L42C9-L47C45" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyContextExtensions.cs#L42C9-L47C45" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.LatencyContextExtensions.AddLatencyContext(Microsoft.Extensions.DependencyInjection.IServiceCollection,Microsoft.Extensions.Configuration.IConfigurationSection)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyContextExtensions.cs#L58C9-L63C45" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyContextExtensions.cs#L58C9-L63C45" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.LatencyContextExtensions", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyContextExtensions.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.Telemetry/Latency/LatencyContextExtensions.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.TimeProvider.Testing.json b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.TimeProvider.Testing.json index 622131188e1..fc1bd81b6d1 100644 --- a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.TimeProvider.Testing.json +++ b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.TimeProvider.Testing.json @@ -1,65 +1,64 @@ { "Assembly": "Microsoft.Extensions.TimeProvider.Testing", - "GUID": "D6939BB0470E44318A077E3F8E9BED81FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "8F8AF88E1D5B4A138A4E3853BFC3E640FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.Time.Testing.FakeTimeProvider.#ctor", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.TimeProvider.Testing/FakeTimeProvider.cs#L18C5-L34C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.TimeProvider.Testing/FakeTimeProvider.cs#L18C5-L34C6" }, { "DocsId": "M:Microsoft.Extensions.Time.Testing.FakeTimeProvider.#ctor(System.DateTimeOffset)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.TimeProvider.Testing/FakeTimeProvider.cs#L18C5-L49C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.TimeProvider.Testing/FakeTimeProvider.cs#L18C5-L49C6" }, { "DocsId": "M:Microsoft.Extensions.Time.Testing.FakeTimeProvider.GetUtcNow", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.TimeProvider.Testing/FakeTimeProvider.cs#L78C9-L85C23" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.TimeProvider.Testing/FakeTimeProvider.cs#L78C9-L85C23" }, { "DocsId": "M:Microsoft.Extensions.Time.Testing.FakeTimeProvider.SetUtcNow(System.DateTimeOffset)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.TimeProvider.Testing/FakeTimeProvider.cs#L95C9-L106C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.TimeProvider.Testing/FakeTimeProvider.cs#L95C9-L106C6" }, { "DocsId": "M:Microsoft.Extensions.Time.Testing.FakeTimeProvider.Advance(System.TimeSpan)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.TimeProvider.Testing/FakeTimeProvider.cs#L121C9-L129C6" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.TimeProvider.Testing/FakeTimeProvider.cs#L121C9-L129C6" }, { "DocsId": "M:Microsoft.Extensions.Time.Testing.FakeTimeProvider.GetTimestamp", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.TimeProvider.Testing/FakeTimeProvider.cs#L143C9-L143C27" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.TimeProvider.Testing/FakeTimeProvider.cs#L143C9-L143C27" }, { "DocsId": "M:Microsoft.Extensions.Time.Testing.FakeTimeProvider.SetLocalTimeZone(System.TimeZoneInfo)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.TimeProvider.Testing/FakeTimeProvider.cs#L153C65-L153C109" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.TimeProvider.Testing/FakeTimeProvider.cs#L153C65-L153C109" }, { "DocsId": "M:Microsoft.Extensions.Time.Testing.FakeTimeProvider.ToString", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.TimeProvider.Testing/FakeTimeProvider.cs#L167C42-L167C112" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.TimeProvider.Testing/FakeTimeProvider.cs#L167C42-L167C112" }, { "DocsId": "M:Microsoft.Extensions.Time.Testing.FakeTimeProvider.CreateTimer(System.Threading.TimerCallback,System.Object,System.TimeSpan,System.TimeSpan)", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.TimeProvider.Testing/FakeTimeProvider.cs#L172C9-L174C22" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.TimeProvider.Testing/FakeTimeProvider.cs#L172C9-L174C22" }, { "DocsId": "P:Microsoft.Extensions.Time.Testing.FakeTimeProvider.Start", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.TimeProvider.Testing/FakeTimeProvider.cs#L54C35-L54C39" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.TimeProvider.Testing/FakeTimeProvider.cs#L54C35-L54C39" }, { "DocsId": "P:Microsoft.Extensions.Time.Testing.FakeTimeProvider.AutoAdvanceAmount", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.TimeProvider.Testing/FakeTimeProvider.cs#L65C16-L65C34" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.TimeProvider.Testing/FakeTimeProvider.cs#L65C16-L65C34" }, { "DocsId": "P:Microsoft.Extensions.Time.Testing.FakeTimeProvider.LocalTimeZone", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.TimeProvider.Testing/FakeTimeProvider.cs#L147C51-L147C65" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.TimeProvider.Testing/FakeTimeProvider.cs#L147C51-L147C65" }, { "DocsId": "P:Microsoft.Extensions.Time.Testing.FakeTimeProvider.TimestampFrequency", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.TimeProvider.Testing/FakeTimeProvider.cs#L161C48-L161C71" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.TimeProvider.Testing/FakeTimeProvider.cs#L161C48-L161C71" } ], "DocsId": "T:Microsoft.Extensions.Time.Testing.FakeTimeProvider", - "SourceLink": "https://github.com/dotnet/extensions/blob/e5e1c7c88f3232bb3a096990da52fe7bf8a76996/src/Libraries/Microsoft.Extensions.TimeProvider.Testing/FakeTimeProvider.cs" + "SourceLink": "https://github.com/dotnet/extensions/blob/760e68ac1285fc2b81cb09bf81b9db6222cfdd29/src/Libraries/Microsoft.Extensions.TimeProvider.Testing/FakeTimeProvider.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.WebEncoders.json b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.WebEncoders.json index 2da1d45d3b5..3aabbb13c18 100644 --- a/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.WebEncoders.json +++ b/xml/SourceLinkInformation/net-9.0/Microsoft.Extensions.WebEncoders.json @@ -1,149 +1,148 @@ { "Assembly": "Microsoft.Extensions.WebEncoders", - "GUID": "3C9C64FA2FF243979509DF0FFFD1A08AFFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "8C656612C42E46168C994EF0A6CF83EBFFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Extensions.WebEncoders.WebEncoderOptions.#ctor", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/WebEncoders/src/WebEncoderOptions.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/WebEncoders/src/WebEncoderOptions.cs" }, { "DocsId": "P:Microsoft.Extensions.WebEncoders.WebEncoderOptions.TextEncoderSettings", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/WebEncoders/src/WebEncoderOptions.cs#L19C55-L19C59" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/WebEncoders/src/WebEncoderOptions.cs#L19C55-L19C59" } ], "DocsId": "T:Microsoft.Extensions.WebEncoders.WebEncoderOptions", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/WebEncoders/src/WebEncoderOptions.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/WebEncoders/src/WebEncoderOptions.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.WebEncoders.Testing.HtmlTestEncoder.Encode(System.String)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/WebEncoders/src/Testing/HtmlTestEncoder.cs#L25C9-L32C41" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/WebEncoders/src/Testing/HtmlTestEncoder.cs#L25C9-L32C41" }, { "DocsId": "M:Microsoft.Extensions.WebEncoders.Testing.HtmlTestEncoder.Encode(System.IO.TextWriter,System.Char[],System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/WebEncoders/src/Testing/HtmlTestEncoder.cs#L38C9-L49C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/WebEncoders/src/Testing/HtmlTestEncoder.cs#L38C9-L49C6" }, { "DocsId": "M:Microsoft.Extensions.WebEncoders.Testing.HtmlTestEncoder.Encode(System.IO.TextWriter,System.String,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/WebEncoders/src/Testing/HtmlTestEncoder.cs#L54C9-L69C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/WebEncoders/src/Testing/HtmlTestEncoder.cs#L54C9-L69C6" }, { "DocsId": "M:Microsoft.Extensions.WebEncoders.Testing.HtmlTestEncoder.WillEncode(System.Int32)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/WebEncoders/src/Testing/HtmlTestEncoder.cs#L74C9-L74C22" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/WebEncoders/src/Testing/HtmlTestEncoder.cs#L74C9-L74C22" }, { "DocsId": "M:Microsoft.Extensions.WebEncoders.Testing.HtmlTestEncoder.FindFirstCharacterToEncode(System.Char*,System.Int32)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/WebEncoders/src/Testing/HtmlTestEncoder.cs#L80C9-L80C19" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/WebEncoders/src/Testing/HtmlTestEncoder.cs#L80C9-L80C19" }, { "DocsId": "M:Microsoft.Extensions.WebEncoders.Testing.HtmlTestEncoder.TryEncodeUnicodeScalar(System.Int32,System.Char*,System.Int32,System.Int32@)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/WebEncoders/src/Testing/HtmlTestEncoder.cs#L90C9-L96C22" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/WebEncoders/src/Testing/HtmlTestEncoder.cs#L90C9-L96C22" }, { "DocsId": "M:Microsoft.Extensions.WebEncoders.Testing.HtmlTestEncoder.#ctor", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/WebEncoders/src/Testing/HtmlTestEncoder.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/WebEncoders/src/Testing/HtmlTestEncoder.cs" }, { "DocsId": "P:Microsoft.Extensions.WebEncoders.Testing.HtmlTestEncoder.MaxOutputCharactersPerInputCharacter", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/WebEncoders/src/Testing/HtmlTestEncoder.cs#L19C15-L19C24" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/WebEncoders/src/Testing/HtmlTestEncoder.cs#L19C15-L19C24" } ], "DocsId": "T:Microsoft.Extensions.WebEncoders.Testing.HtmlTestEncoder", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/WebEncoders/src/Testing/HtmlTestEncoder.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/WebEncoders/src/Testing/HtmlTestEncoder.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.WebEncoders.Testing.JavaScriptTestEncoder.Encode(System.String)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/WebEncoders/src/Testing/JavaScriptTestEncoder.cs#L25C9-L32C47" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/WebEncoders/src/Testing/JavaScriptTestEncoder.cs#L25C9-L32C47" }, { "DocsId": "M:Microsoft.Extensions.WebEncoders.Testing.JavaScriptTestEncoder.Encode(System.IO.TextWriter,System.Char[],System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/WebEncoders/src/Testing/JavaScriptTestEncoder.cs#L38C9-L49C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/WebEncoders/src/Testing/JavaScriptTestEncoder.cs#L38C9-L49C6" }, { "DocsId": "M:Microsoft.Extensions.WebEncoders.Testing.JavaScriptTestEncoder.Encode(System.IO.TextWriter,System.String,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/WebEncoders/src/Testing/JavaScriptTestEncoder.cs#L54C9-L69C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/WebEncoders/src/Testing/JavaScriptTestEncoder.cs#L54C9-L69C6" }, { "DocsId": "M:Microsoft.Extensions.WebEncoders.Testing.JavaScriptTestEncoder.WillEncode(System.Int32)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/WebEncoders/src/Testing/JavaScriptTestEncoder.cs#L74C9-L74C22" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/WebEncoders/src/Testing/JavaScriptTestEncoder.cs#L74C9-L74C22" }, { "DocsId": "M:Microsoft.Extensions.WebEncoders.Testing.JavaScriptTestEncoder.FindFirstCharacterToEncode(System.Char*,System.Int32)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/WebEncoders/src/Testing/JavaScriptTestEncoder.cs#L80C9-L80C19" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/WebEncoders/src/Testing/JavaScriptTestEncoder.cs#L80C9-L80C19" }, { "DocsId": "M:Microsoft.Extensions.WebEncoders.Testing.JavaScriptTestEncoder.TryEncodeUnicodeScalar(System.Int32,System.Char*,System.Int32,System.Int32@)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/WebEncoders/src/Testing/JavaScriptTestEncoder.cs#L90C9-L96C22" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/WebEncoders/src/Testing/JavaScriptTestEncoder.cs#L90C9-L96C22" }, { "DocsId": "M:Microsoft.Extensions.WebEncoders.Testing.JavaScriptTestEncoder.#ctor", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/WebEncoders/src/Testing/JavaScriptTestEncoder.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/WebEncoders/src/Testing/JavaScriptTestEncoder.cs" }, { "DocsId": "P:Microsoft.Extensions.WebEncoders.Testing.JavaScriptTestEncoder.MaxOutputCharactersPerInputCharacter", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/WebEncoders/src/Testing/JavaScriptTestEncoder.cs#L19C15-L19C24" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/WebEncoders/src/Testing/JavaScriptTestEncoder.cs#L19C15-L19C24" } ], "DocsId": "T:Microsoft.Extensions.WebEncoders.Testing.JavaScriptTestEncoder", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/WebEncoders/src/Testing/JavaScriptTestEncoder.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/WebEncoders/src/Testing/JavaScriptTestEncoder.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.WebEncoders.Testing.UrlTestEncoder.Encode(System.String)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/WebEncoders/src/Testing/UrlTestEncoder.cs#L25C9-L32C40" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/WebEncoders/src/Testing/UrlTestEncoder.cs#L25C9-L32C40" }, { "DocsId": "M:Microsoft.Extensions.WebEncoders.Testing.UrlTestEncoder.Encode(System.IO.TextWriter,System.Char[],System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/WebEncoders/src/Testing/UrlTestEncoder.cs#L38C9-L49C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/WebEncoders/src/Testing/UrlTestEncoder.cs#L38C9-L49C6" }, { "DocsId": "M:Microsoft.Extensions.WebEncoders.Testing.UrlTestEncoder.Encode(System.IO.TextWriter,System.String,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/WebEncoders/src/Testing/UrlTestEncoder.cs#L54C9-L69C6" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/WebEncoders/src/Testing/UrlTestEncoder.cs#L54C9-L69C6" }, { "DocsId": "M:Microsoft.Extensions.WebEncoders.Testing.UrlTestEncoder.WillEncode(System.Int32)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/WebEncoders/src/Testing/UrlTestEncoder.cs#L74C9-L74C22" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/WebEncoders/src/Testing/UrlTestEncoder.cs#L74C9-L74C22" }, { "DocsId": "M:Microsoft.Extensions.WebEncoders.Testing.UrlTestEncoder.FindFirstCharacterToEncode(System.Char*,System.Int32)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/WebEncoders/src/Testing/UrlTestEncoder.cs#L80C9-L80C19" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/WebEncoders/src/Testing/UrlTestEncoder.cs#L80C9-L80C19" }, { "DocsId": "M:Microsoft.Extensions.WebEncoders.Testing.UrlTestEncoder.TryEncodeUnicodeScalar(System.Int32,System.Char*,System.Int32,System.Int32@)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/WebEncoders/src/Testing/UrlTestEncoder.cs#L90C9-L96C22" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/WebEncoders/src/Testing/UrlTestEncoder.cs#L90C9-L96C22" }, { "DocsId": "M:Microsoft.Extensions.WebEncoders.Testing.UrlTestEncoder.#ctor", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/WebEncoders/src/Testing/UrlTestEncoder.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/WebEncoders/src/Testing/UrlTestEncoder.cs" }, { "DocsId": "P:Microsoft.Extensions.WebEncoders.Testing.UrlTestEncoder.MaxOutputCharactersPerInputCharacter", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/WebEncoders/src/Testing/UrlTestEncoder.cs#L19C15-L19C24" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/WebEncoders/src/Testing/UrlTestEncoder.cs#L19C15-L19C24" } ], "DocsId": "T:Microsoft.Extensions.WebEncoders.Testing.UrlTestEncoder", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/WebEncoders/src/Testing/UrlTestEncoder.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/WebEncoders/src/Testing/UrlTestEncoder.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Extensions.DependencyInjection.EncoderServiceCollectionExtensions.AddWebEncoders(Microsoft.Extensions.DependencyInjection.IServiceCollection)", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/WebEncoders/src/EncoderServiceCollectionExtensions.cs#L26C9-L39C25" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/WebEncoders/src/EncoderServiceCollectionExtensions.cs#L26C9-L39C25" }, { "DocsId": "M:Microsoft.Extensions.DependencyInjection.EncoderServiceCollectionExtensions.AddWebEncoders(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{Microsoft.Extensions.WebEncoders.WebEncoderOptions})", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/WebEncoders/src/EncoderServiceCollectionExtensions.cs#L51C9-L57C25" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/WebEncoders/src/EncoderServiceCollectionExtensions.cs#L51C9-L57C25" } ], "DocsId": "T:Microsoft.Extensions.DependencyInjection.EncoderServiceCollectionExtensions", - "SourceLink": "https://github.com/dotnet/aspnetcore/blob/d4eca39c3fc1944b2c6431bf6b22036bdb176c0d/src/WebEncoders/src/EncoderServiceCollectionExtensions.cs" + "SourceLink": "https://github.com/dotnet/aspnetcore/blob/ada5ad97d2114250a05550cb28cc18b9cf9f8993/src/WebEncoders/src/EncoderServiceCollectionExtensions.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/Microsoft.Win32.Registry.AccessControl.json b/xml/SourceLinkInformation/net-9.0/Microsoft.Win32.Registry.AccessControl.json index ec7099b0a46..fdff6bf45d4 100644 --- a/xml/SourceLinkInformation/net-9.0/Microsoft.Win32.Registry.AccessControl.json +++ b/xml/SourceLinkInformation/net-9.0/Microsoft.Win32.Registry.AccessControl.json @@ -1,25 +1,24 @@ { "Assembly": "Microsoft.Win32.Registry.AccessControl", - "GUID": "5D0A0AE5FE3D4CF5A2C8091D86F3B9DCFFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "51CD276B231E4F4F8F223F9197825B21FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Win32.RegistryAclExtensions.GetAccessControl(Microsoft.Win32.RegistryKey)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.Registry.AccessControl/src/Microsoft/Win32/RegistryAclExtensions.cs#L13C13-L18C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.Registry.AccessControl/src/Microsoft/Win32/RegistryAclExtensions.cs#L13C13-L18C43" }, { "DocsId": "M:Microsoft.Win32.RegistryAclExtensions.GetAccessControl(Microsoft.Win32.RegistryKey,System.Security.AccessControl.AccessControlSections)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.Registry.AccessControl/src/Microsoft/Win32/RegistryAclExtensions.cs#L23C13-L28C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.Registry.AccessControl/src/Microsoft/Win32/RegistryAclExtensions.cs#L23C13-L28C58" }, { "DocsId": "M:Microsoft.Win32.RegistryAclExtensions.SetAccessControl(Microsoft.Win32.RegistryKey,System.Security.AccessControl.RegistrySecurity)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.Registry.AccessControl/src/Microsoft/Win32/RegistryAclExtensions.cs#L33C13-L39C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.Registry.AccessControl/src/Microsoft/Win32/RegistryAclExtensions.cs#L33C13-L39C10" } ], "DocsId": "T:Microsoft.Win32.RegistryAclExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.Registry.AccessControl/src/Microsoft/Win32/RegistryAclExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.Registry.AccessControl/src/Microsoft/Win32/RegistryAclExtensions.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/Microsoft.Win32.SystemEvents.json b/xml/SourceLinkInformation/net-9.0/Microsoft.Win32.SystemEvents.json index cde6dd4e9ba..fef45010c66 100644 --- a/xml/SourceLinkInformation/net-9.0/Microsoft.Win32.SystemEvents.json +++ b/xml/SourceLinkInformation/net-9.0/Microsoft.Win32.SystemEvents.json @@ -1,489 +1,488 @@ { "Assembly": "Microsoft.Win32.SystemEvents", - "GUID": "A9E59C22DC4848E7A0EB6379CC4FE1A5FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "58017B183DA149888D654C142725F008FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:Microsoft.Win32.PowerModeChangedEventArgs.#ctor(Microsoft.Win32.PowerModes)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/PowerModeChangedEventArgs.cs#L18C9-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/PowerModeChangedEventArgs.cs#L18C9-L21C10" }, { "DocsId": "P:Microsoft.Win32.PowerModeChangedEventArgs.Mode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/PowerModeChangedEventArgs.cs#L30C17-L30C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/PowerModeChangedEventArgs.cs#L30C17-L30C30" } ], "DocsId": "T:Microsoft.Win32.PowerModeChangedEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/PowerModeChangedEventArgs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/PowerModeChangedEventArgs.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Win32.PowerModeChangedEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/PowerModeChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/PowerModeChangedEventHandler.cs" }, { "DocsId": "M:Microsoft.Win32.PowerModeChangedEventHandler.Invoke(System.Object,Microsoft.Win32.PowerModeChangedEventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/PowerModeChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/PowerModeChangedEventHandler.cs" }, { "DocsId": "M:Microsoft.Win32.PowerModeChangedEventHandler.BeginInvoke(System.Object,Microsoft.Win32.PowerModeChangedEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/PowerModeChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/PowerModeChangedEventHandler.cs" }, { "DocsId": "M:Microsoft.Win32.PowerModeChangedEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/PowerModeChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/PowerModeChangedEventHandler.cs" } ], "DocsId": "T:Microsoft.Win32.PowerModeChangedEventHandler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/PowerModeChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/PowerModeChangedEventHandler.cs" }, { "Members": [ { "DocsId": "F:Microsoft.Win32.PowerModes.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/PowerModes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/PowerModes.cs" }, { "DocsId": "F:Microsoft.Win32.PowerModes.Resume", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/PowerModes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/PowerModes.cs" }, { "DocsId": "F:Microsoft.Win32.PowerModes.StatusChange", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/PowerModes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/PowerModes.cs" }, { "DocsId": "F:Microsoft.Win32.PowerModes.Suspend", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/PowerModes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/PowerModes.cs" } ], "DocsId": "T:Microsoft.Win32.PowerModes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/PowerModes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/PowerModes.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Win32.SessionEndedEventArgs.#ctor(Microsoft.Win32.SessionEndReasons)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndedEventArgs.cs#L18C9-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndedEventArgs.cs#L18C9-L21C10" }, { "DocsId": "P:Microsoft.Win32.SessionEndedEventArgs.Reason", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndedEventArgs.cs#L30C17-L30C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndedEventArgs.cs#L30C17-L30C32" } ], "DocsId": "T:Microsoft.Win32.SessionEndedEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndedEventArgs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndedEventArgs.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Win32.SessionEndedEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndedEventHandler.cs" }, { "DocsId": "M:Microsoft.Win32.SessionEndedEventHandler.Invoke(System.Object,Microsoft.Win32.SessionEndedEventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndedEventHandler.cs" }, { "DocsId": "M:Microsoft.Win32.SessionEndedEventHandler.BeginInvoke(System.Object,Microsoft.Win32.SessionEndedEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndedEventHandler.cs" }, { "DocsId": "M:Microsoft.Win32.SessionEndedEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndedEventHandler.cs" } ], "DocsId": "T:Microsoft.Win32.SessionEndedEventHandler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndedEventHandler.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Win32.SessionEndingEventArgs.#ctor(Microsoft.Win32.SessionEndReasons)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndingEventArgs.cs#L19C9-L22C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndingEventArgs.cs#L19C9-L22C10" }, { "DocsId": "P:Microsoft.Win32.SessionEndingEventArgs.Cancel", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndingEventArgs.cs#L31C17-L31C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndingEventArgs.cs#L31C17-L31C32" }, { "DocsId": "P:Microsoft.Win32.SessionEndingEventArgs.Reason", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndingEventArgs.cs#L46C17-L46C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndingEventArgs.cs#L46C17-L46C32" } ], "DocsId": "T:Microsoft.Win32.SessionEndingEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndingEventArgs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndingEventArgs.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Win32.SessionEndingEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndingEventHandler.cs" }, { "DocsId": "M:Microsoft.Win32.SessionEndingEventHandler.Invoke(System.Object,Microsoft.Win32.SessionEndingEventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndingEventHandler.cs" }, { "DocsId": "M:Microsoft.Win32.SessionEndingEventHandler.BeginInvoke(System.Object,Microsoft.Win32.SessionEndingEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndingEventHandler.cs" }, { "DocsId": "M:Microsoft.Win32.SessionEndingEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndingEventHandler.cs" } ], "DocsId": "T:Microsoft.Win32.SessionEndingEventHandler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndingEventHandler.cs" }, { "Members": [ { "DocsId": "F:Microsoft.Win32.SessionEndReasons.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndReasons.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndReasons.cs" }, { "DocsId": "F:Microsoft.Win32.SessionEndReasons.Logoff", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndReasons.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndReasons.cs" }, { "DocsId": "F:Microsoft.Win32.SessionEndReasons.SystemShutdown", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndReasons.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndReasons.cs" } ], "DocsId": "T:Microsoft.Win32.SessionEndReasons", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndReasons.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionEndReasons.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Win32.SessionSwitchEventArgs.#ctor(Microsoft.Win32.SessionSwitchReason)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchEventArgs.cs#L18C9-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchEventArgs.cs#L18C9-L21C10" }, { "DocsId": "P:Microsoft.Win32.SessionSwitchEventArgs.Reason", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchEventArgs.cs#L30C17-L30C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchEventArgs.cs#L30C17-L30C32" } ], "DocsId": "T:Microsoft.Win32.SessionSwitchEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchEventArgs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchEventArgs.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Win32.SessionSwitchEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchEventHandler.cs" }, { "DocsId": "M:Microsoft.Win32.SessionSwitchEventHandler.Invoke(System.Object,Microsoft.Win32.SessionSwitchEventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchEventHandler.cs" }, { "DocsId": "M:Microsoft.Win32.SessionSwitchEventHandler.BeginInvoke(System.Object,Microsoft.Win32.SessionSwitchEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchEventHandler.cs" }, { "DocsId": "M:Microsoft.Win32.SessionSwitchEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchEventHandler.cs" } ], "DocsId": "T:Microsoft.Win32.SessionSwitchEventHandler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchEventHandler.cs" }, { "Members": [ { "DocsId": "F:Microsoft.Win32.SessionSwitchReason.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchReason.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchReason.cs" }, { "DocsId": "F:Microsoft.Win32.SessionSwitchReason.ConsoleConnect", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchReason.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchReason.cs" }, { "DocsId": "F:Microsoft.Win32.SessionSwitchReason.ConsoleDisconnect", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchReason.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchReason.cs" }, { "DocsId": "F:Microsoft.Win32.SessionSwitchReason.RemoteConnect", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchReason.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchReason.cs" }, { "DocsId": "F:Microsoft.Win32.SessionSwitchReason.RemoteDisconnect", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchReason.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchReason.cs" }, { "DocsId": "F:Microsoft.Win32.SessionSwitchReason.SessionLogon", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchReason.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchReason.cs" }, { "DocsId": "F:Microsoft.Win32.SessionSwitchReason.SessionLogoff", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchReason.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchReason.cs" }, { "DocsId": "F:Microsoft.Win32.SessionSwitchReason.SessionLock", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchReason.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchReason.cs" }, { "DocsId": "F:Microsoft.Win32.SessionSwitchReason.SessionUnlock", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchReason.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchReason.cs" }, { "DocsId": "F:Microsoft.Win32.SessionSwitchReason.SessionRemoteControl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchReason.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchReason.cs" } ], "DocsId": "T:Microsoft.Win32.SessionSwitchReason", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchReason.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SessionSwitchReason.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Win32.SystemEvents.CreateTimer(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L390C13-L404C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L390C13-L404C28" }, { "DocsId": "M:Microsoft.Win32.SystemEvents.InvokeOnEventsThread(System.Delegate)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L755C13-L788C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L755C13-L788C10" }, { "DocsId": "M:Microsoft.Win32.SystemEvents.KillTimer(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L795C13-L805C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L795C13-L805C10" }, { "DocsId": "E:Microsoft.Win32.SystemEvents.DisplaySettingsChanging", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L106C17-L107C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L106C17-L107C14" }, { "DocsId": "E:Microsoft.Win32.SystemEvents.DisplaySettingsChanged", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L121C17-L122C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L121C17-L122C14" }, { "DocsId": "E:Microsoft.Win32.SystemEvents.EventsThreadShutdown", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L138C17-L139C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L138C17-L139C14" }, { "DocsId": "E:Microsoft.Win32.SystemEvents.InstalledFontsChanged", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L153C17-L154C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L153C17-L154C14" }, { "DocsId": "E:Microsoft.Win32.SystemEvents.LowMemory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L170C17-L172C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L170C17-L172C14" }, { "DocsId": "E:Microsoft.Win32.SystemEvents.PaletteChanged", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L187C17-L188C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L187C17-L188C14" }, { "DocsId": "E:Microsoft.Win32.SystemEvents.PowerModeChanged", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L203C17-L205C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L203C17-L205C14" }, { "DocsId": "E:Microsoft.Win32.SystemEvents.SessionEnded", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L219C17-L221C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L219C17-L221C14" }, { "DocsId": "E:Microsoft.Win32.SystemEvents.SessionEnding", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L235C17-L237C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L235C17-L237C14" }, { "DocsId": "E:Microsoft.Win32.SystemEvents.SessionSwitch", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L251C17-L254C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L251C17-L254C14" }, { "DocsId": "E:Microsoft.Win32.SystemEvents.TimeChanged", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L268C17-L270C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L268C17-L270C14" }, { "DocsId": "E:Microsoft.Win32.SystemEvents.TimerElapsed", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L284C17-L286C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L284C17-L286C14" }, { "DocsId": "E:Microsoft.Win32.SystemEvents.UserPreferenceChanged", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L301C17-L302C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L301C17-L302C14" }, { "DocsId": "E:Microsoft.Win32.SystemEvents.UserPreferenceChanging", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L316C17-L317C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs#L316C17-L317C14" } ], "DocsId": "T:Microsoft.Win32.SystemEvents", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/SystemEvents.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Win32.TimerElapsedEventArgs.#ctor(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/TimerElapsedEventArgs.cs#L18C9-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/TimerElapsedEventArgs.cs#L18C9-L21C10" }, { "DocsId": "P:Microsoft.Win32.TimerElapsedEventArgs.TimerId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/TimerElapsedEventArgs.cs#L30C17-L30C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/TimerElapsedEventArgs.cs#L30C17-L30C33" } ], "DocsId": "T:Microsoft.Win32.TimerElapsedEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/TimerElapsedEventArgs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/TimerElapsedEventArgs.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Win32.TimerElapsedEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/TimerElapsedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/TimerElapsedEventHandler.cs" }, { "DocsId": "M:Microsoft.Win32.TimerElapsedEventHandler.Invoke(System.Object,Microsoft.Win32.TimerElapsedEventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/TimerElapsedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/TimerElapsedEventHandler.cs" }, { "DocsId": "M:Microsoft.Win32.TimerElapsedEventHandler.BeginInvoke(System.Object,Microsoft.Win32.TimerElapsedEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/TimerElapsedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/TimerElapsedEventHandler.cs" }, { "DocsId": "M:Microsoft.Win32.TimerElapsedEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/TimerElapsedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/TimerElapsedEventHandler.cs" } ], "DocsId": "T:Microsoft.Win32.TimerElapsedEventHandler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/TimerElapsedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/TimerElapsedEventHandler.cs" }, { "Members": [ { "DocsId": "F:Microsoft.Win32.UserPreferenceCategory.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" }, { "DocsId": "F:Microsoft.Win32.UserPreferenceCategory.Accessibility", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" }, { "DocsId": "F:Microsoft.Win32.UserPreferenceCategory.Color", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" }, { "DocsId": "F:Microsoft.Win32.UserPreferenceCategory.Desktop", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" }, { "DocsId": "F:Microsoft.Win32.UserPreferenceCategory.General", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" }, { "DocsId": "F:Microsoft.Win32.UserPreferenceCategory.Icon", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" }, { "DocsId": "F:Microsoft.Win32.UserPreferenceCategory.Keyboard", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" }, { "DocsId": "F:Microsoft.Win32.UserPreferenceCategory.Menu", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" }, { "DocsId": "F:Microsoft.Win32.UserPreferenceCategory.Mouse", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" }, { "DocsId": "F:Microsoft.Win32.UserPreferenceCategory.Policy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" }, { "DocsId": "F:Microsoft.Win32.UserPreferenceCategory.Power", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" }, { "DocsId": "F:Microsoft.Win32.UserPreferenceCategory.Screensaver", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" }, { "DocsId": "F:Microsoft.Win32.UserPreferenceCategory.Window", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" }, { "DocsId": "F:Microsoft.Win32.UserPreferenceCategory.Locale", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" }, { "DocsId": "F:Microsoft.Win32.UserPreferenceCategory.VisualStyle", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" } ], "DocsId": "T:Microsoft.Win32.UserPreferenceCategory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceCategories.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Win32.UserPreferenceChangedEventArgs.#ctor(Microsoft.Win32.UserPreferenceCategory)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangedEventArgs.cs#L18C9-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangedEventArgs.cs#L18C9-L21C10" }, { "DocsId": "P:Microsoft.Win32.UserPreferenceChangedEventArgs.Category", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangedEventArgs.cs#L30C17-L30C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangedEventArgs.cs#L30C17-L30C34" } ], "DocsId": "T:Microsoft.Win32.UserPreferenceChangedEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangedEventArgs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangedEventArgs.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Win32.UserPreferenceChangedEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangedEventHandler.cs" }, { "DocsId": "M:Microsoft.Win32.UserPreferenceChangedEventHandler.Invoke(System.Object,Microsoft.Win32.UserPreferenceChangedEventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangedEventHandler.cs" }, { "DocsId": "M:Microsoft.Win32.UserPreferenceChangedEventHandler.BeginInvoke(System.Object,Microsoft.Win32.UserPreferenceChangedEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangedEventHandler.cs" }, { "DocsId": "M:Microsoft.Win32.UserPreferenceChangedEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangedEventHandler.cs" } ], "DocsId": "T:Microsoft.Win32.UserPreferenceChangedEventHandler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangedEventHandler.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Win32.UserPreferenceChangingEventArgs.#ctor(Microsoft.Win32.UserPreferenceCategory)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangingEventArgs.cs#L18C9-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangingEventArgs.cs#L18C9-L21C10" }, { "DocsId": "P:Microsoft.Win32.UserPreferenceChangingEventArgs.Category", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangingEventArgs.cs#L30C17-L30C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangingEventArgs.cs#L30C17-L30C34" } ], "DocsId": "T:Microsoft.Win32.UserPreferenceChangingEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangingEventArgs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangingEventArgs.cs" }, { "Members": [ { "DocsId": "M:Microsoft.Win32.UserPreferenceChangingEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangingEventHandler.cs" }, { "DocsId": "M:Microsoft.Win32.UserPreferenceChangingEventHandler.Invoke(System.Object,Microsoft.Win32.UserPreferenceChangingEventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangingEventHandler.cs" }, { "DocsId": "M:Microsoft.Win32.UserPreferenceChangingEventHandler.BeginInvoke(System.Object,Microsoft.Win32.UserPreferenceChangingEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangingEventHandler.cs" }, { "DocsId": "M:Microsoft.Win32.UserPreferenceChangingEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangingEventHandler.cs" } ], "DocsId": "T:Microsoft.Win32.UserPreferenceChangingEventHandler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft/Win32/UserPreferenceChangingEventHandler.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/System.CodeDom.json b/xml/SourceLinkInformation/net-9.0/System.CodeDom.json index aa37989c824..b086e8861ee 100644 --- a/xml/SourceLinkInformation/net-9.0/System.CodeDom.json +++ b/xml/SourceLinkInformation/net-9.0/System.CodeDom.json @@ -1,4229 +1,4228 @@ { "Assembly": "System.CodeDom", - "GUID": "834D5A25970C499EA174B16D578AFD24FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "2527287A175D470AB956B0E8DE006171FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:System.CodeDom.CodeArgumentReferenceExpression.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeArgumentReferenceExpression.cs#L10C9-L10C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeArgumentReferenceExpression.cs#L10C9-L10C53" }, { "DocsId": "M:System.CodeDom.CodeArgumentReferenceExpression.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeArgumentReferenceExpression.cs#L12C9-L15C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeArgumentReferenceExpression.cs#L12C9-L15C10" }, { "DocsId": "P:System.CodeDom.CodeArgumentReferenceExpression.ParameterName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeArgumentReferenceExpression.cs#L19C20-L19C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeArgumentReferenceExpression.cs#L19C20-L19C50" } ], "DocsId": "T:System.CodeDom.CodeArgumentReferenceExpression", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeArgumentReferenceExpression.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeArgumentReferenceExpression.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeArrayCreateExpression.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayCreateExpression.cs#L8C9-L13C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayCreateExpression.cs#L8C9-L13C10" }, { "DocsId": "M:System.CodeDom.CodeArrayCreateExpression.#ctor(System.CodeDom.CodeTypeReference,System.CodeDom.CodeExpression[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayCreateExpression.cs#L8C9-L19C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayCreateExpression.cs#L8C9-L19C10" }, { "DocsId": "M:System.CodeDom.CodeArrayCreateExpression.#ctor(System.String,System.CodeDom.CodeExpression[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayCreateExpression.cs#L8C9-L25C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayCreateExpression.cs#L8C9-L25C10" }, { "DocsId": "M:System.CodeDom.CodeArrayCreateExpression.#ctor(System.Type,System.CodeDom.CodeExpression[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayCreateExpression.cs#L8C9-L31C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayCreateExpression.cs#L8C9-L31C10" }, { "DocsId": "M:System.CodeDom.CodeArrayCreateExpression.#ctor(System.CodeDom.CodeTypeReference,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayCreateExpression.cs#L8C9-L37C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayCreateExpression.cs#L8C9-L37C10" }, { "DocsId": "M:System.CodeDom.CodeArrayCreateExpression.#ctor(System.String,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayCreateExpression.cs#L8C9-L43C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayCreateExpression.cs#L8C9-L43C10" }, { "DocsId": "M:System.CodeDom.CodeArrayCreateExpression.#ctor(System.Type,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayCreateExpression.cs#L8C9-L49C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayCreateExpression.cs#L8C9-L49C10" }, { "DocsId": "M:System.CodeDom.CodeArrayCreateExpression.#ctor(System.CodeDom.CodeTypeReference,System.CodeDom.CodeExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayCreateExpression.cs#L8C9-L55C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayCreateExpression.cs#L8C9-L55C10" }, { "DocsId": "M:System.CodeDom.CodeArrayCreateExpression.#ctor(System.String,System.CodeDom.CodeExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayCreateExpression.cs#L8C9-L61C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayCreateExpression.cs#L8C9-L61C10" }, { "DocsId": "M:System.CodeDom.CodeArrayCreateExpression.#ctor(System.Type,System.CodeDom.CodeExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayCreateExpression.cs#L8C9-L67C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayCreateExpression.cs#L8C9-L67C10" }, { "DocsId": "P:System.CodeDom.CodeArrayCreateExpression.CreateType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayCreateExpression.cs#L71C20-L71C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayCreateExpression.cs#L71C20-L71C61" }, { "DocsId": "P:System.CodeDom.CodeArrayCreateExpression.Initializers", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayCreateExpression.cs#L75C57-L75C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayCreateExpression.cs#L75C57-L75C70" }, { "DocsId": "P:System.CodeDom.CodeArrayCreateExpression.Size", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayCreateExpression.cs#L77C27-L77C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayCreateExpression.cs#L77C27-L77C31" }, { "DocsId": "P:System.CodeDom.CodeArrayCreateExpression.SizeExpression", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayCreateExpression.cs#L79C48-L79C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayCreateExpression.cs#L79C48-L79C52" } ], "DocsId": "T:System.CodeDom.CodeArrayCreateExpression", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayCreateExpression.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayCreateExpression.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeArrayIndexerExpression.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayIndexerExpression.cs#L10C9-L10C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayIndexerExpression.cs#L10C9-L10C48" }, { "DocsId": "M:System.CodeDom.CodeArrayIndexerExpression.#ctor(System.CodeDom.CodeExpression,System.CodeDom.CodeExpression[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayIndexerExpression.cs#L12C9-L16C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayIndexerExpression.cs#L12C9-L16C10" }, { "DocsId": "P:System.CodeDom.CodeArrayIndexerExpression.TargetObject", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayIndexerExpression.cs#L18C46-L18C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayIndexerExpression.cs#L18C46-L18C50" }, { "DocsId": "P:System.CodeDom.CodeArrayIndexerExpression.Indices", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayIndexerExpression.cs#L20C52-L20C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayIndexerExpression.cs#L20C52-L20C95" } ], "DocsId": "T:System.CodeDom.CodeArrayIndexerExpression", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayIndexerExpression.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeArrayIndexerExpression.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeAssignStatement.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAssignStatement.cs#L8C9-L8C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAssignStatement.cs#L8C9-L8C41" }, { "DocsId": "M:System.CodeDom.CodeAssignStatement.#ctor(System.CodeDom.CodeExpression,System.CodeDom.CodeExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAssignStatement.cs#L10C9-L14C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAssignStatement.cs#L10C9-L14C10" }, { "DocsId": "P:System.CodeDom.CodeAssignStatement.Left", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAssignStatement.cs#L16C38-L16C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAssignStatement.cs#L16C38-L16C42" }, { "DocsId": "P:System.CodeDom.CodeAssignStatement.Right", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAssignStatement.cs#L18C39-L18C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAssignStatement.cs#L18C39-L18C43" } ], "DocsId": "T:System.CodeDom.CodeAssignStatement", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAssignStatement.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAssignStatement.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeAttachEventStatement.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttachEventStatement.cs#L10C9-L10C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttachEventStatement.cs#L10C9-L10C46" }, { "DocsId": "M:System.CodeDom.CodeAttachEventStatement.#ctor(System.CodeDom.CodeEventReferenceExpression,System.CodeDom.CodeExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttachEventStatement.cs#L12C9-L16C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttachEventStatement.cs#L12C9-L16C10" }, { "DocsId": "M:System.CodeDom.CodeAttachEventStatement.#ctor(System.CodeDom.CodeExpression,System.String,System.CodeDom.CodeExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttachEventStatement.cs#L19C13-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttachEventStatement.cs#L19C13-L21C10" }, { "DocsId": "P:System.CodeDom.CodeAttachEventStatement.Event", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttachEventStatement.cs#L25C20-L25C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttachEventStatement.cs#L25C20-L25C68" }, { "DocsId": "P:System.CodeDom.CodeAttachEventStatement.Listener", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttachEventStatement.cs#L29C42-L29C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttachEventStatement.cs#L29C42-L29C46" } ], "DocsId": "T:System.CodeDom.CodeAttachEventStatement", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttachEventStatement.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttachEventStatement.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeAttributeArgument.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgument.cs#L10C9-L10C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgument.cs#L10C9-L10C43" }, { "DocsId": "M:System.CodeDom.CodeAttributeArgument.#ctor(System.CodeDom.CodeExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgument.cs#L12C9-L15C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgument.cs#L12C9-L15C10" }, { "DocsId": "M:System.CodeDom.CodeAttributeArgument.#ctor(System.String,System.CodeDom.CodeExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgument.cs#L17C9-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgument.cs#L17C9-L21C10" }, { "DocsId": "P:System.CodeDom.CodeAttributeArgument.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgument.cs#L25C20-L25C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgument.cs#L25C20-L25C41" }, { "DocsId": "P:System.CodeDom.CodeAttributeArgument.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgument.cs#L29C39-L29C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgument.cs#L29C39-L29C43" } ], "DocsId": "T:System.CodeDom.CodeAttributeArgument", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgument.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgument.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeAttributeArgumentCollection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgumentCollection.cs#L10C9-L10C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgumentCollection.cs#L10C9-L10C53" }, { "DocsId": "M:System.CodeDom.CodeAttributeArgumentCollection.#ctor(System.CodeDom.CodeAttributeArgumentCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgumentCollection.cs#L12C9-L15C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgumentCollection.cs#L12C9-L15C10" }, { "DocsId": "M:System.CodeDom.CodeAttributeArgumentCollection.#ctor(System.CodeDom.CodeAttributeArgument[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgumentCollection.cs#L17C9-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgumentCollection.cs#L17C9-L20C10" }, { "DocsId": "M:System.CodeDom.CodeAttributeArgumentCollection.Add(System.CodeDom.CodeAttributeArgument)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgumentCollection.cs#L28C56-L28C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgumentCollection.cs#L28C56-L28C71" }, { "DocsId": "M:System.CodeDom.CodeAttributeArgumentCollection.AddRange(System.CodeDom.CodeAttributeArgument[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgumentCollection.cs#L32C13-L41C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgumentCollection.cs#L32C13-L41C10" }, { "DocsId": "M:System.CodeDom.CodeAttributeArgumentCollection.AddRange(System.CodeDom.CodeAttributeArgumentCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgumentCollection.cs#L45C13-L55C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgumentCollection.cs#L45C13-L55C10" }, { "DocsId": "M:System.CodeDom.CodeAttributeArgumentCollection.Contains(System.CodeDom.CodeAttributeArgument)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgumentCollection.cs#L57C62-L57C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgumentCollection.cs#L57C62-L57C82" }, { "DocsId": "M:System.CodeDom.CodeAttributeArgumentCollection.CopyTo(System.CodeDom.CodeAttributeArgument[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgumentCollection.cs#L59C73-L59C98" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgumentCollection.cs#L59C73-L59C98" }, { "DocsId": "M:System.CodeDom.CodeAttributeArgumentCollection.IndexOf(System.CodeDom.CodeAttributeArgument)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgumentCollection.cs#L61C60-L61C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgumentCollection.cs#L61C60-L61C79" }, { "DocsId": "M:System.CodeDom.CodeAttributeArgumentCollection.Insert(System.Int32,System.CodeDom.CodeAttributeArgument)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgumentCollection.cs#L63C71-L63C96" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgumentCollection.cs#L63C71-L63C96" }, { "DocsId": "M:System.CodeDom.CodeAttributeArgumentCollection.Remove(System.CodeDom.CodeAttributeArgument)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgumentCollection.cs#L65C60-L65C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgumentCollection.cs#L65C60-L65C78" }, { "DocsId": "P:System.CodeDom.CodeAttributeArgumentCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgumentCollection.cs#L24C20-L24C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgumentCollection.cs#L24C20-L24C54" } ], "DocsId": "T:System.CodeDom.CodeAttributeArgumentCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgumentCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeArgumentCollection.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeAttributeDeclaration.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclaration.cs#L9C9-L12C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclaration.cs#L9C9-L12C46" }, { "DocsId": "M:System.CodeDom.CodeAttributeDeclaration.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclaration.cs#L9C9-L17C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclaration.cs#L9C9-L17C10" }, { "DocsId": "M:System.CodeDom.CodeAttributeDeclaration.#ctor(System.String,System.CodeDom.CodeAttributeArgument[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclaration.cs#L9C9-L23C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclaration.cs#L9C9-L23C10" }, { "DocsId": "M:System.CodeDom.CodeAttributeDeclaration.#ctor(System.CodeDom.CodeTypeReference)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclaration.cs#L25C76-L25C105" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclaration.cs#L25C76-L25C105" }, { "DocsId": "M:System.CodeDom.CodeAttributeDeclaration.#ctor(System.CodeDom.CodeTypeReference,System.CodeDom.CodeAttributeArgument[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclaration.cs#L9C9-L39C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclaration.cs#L9C9-L39C10" }, { "DocsId": "P:System.CodeDom.CodeAttributeDeclaration.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclaration.cs#L43C20-L43C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclaration.cs#L43C20-L43C41" }, { "DocsId": "P:System.CodeDom.CodeAttributeDeclaration.Arguments", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclaration.cs#L51C61-L51C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclaration.cs#L51C61-L51C71" }, { "DocsId": "P:System.CodeDom.CodeAttributeDeclaration.AttributeType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclaration.cs#L53C51-L53C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclaration.cs#L53C51-L53C65" } ], "DocsId": "T:System.CodeDom.CodeAttributeDeclaration", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclaration.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclaration.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeAttributeDeclarationCollection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclarationCollection.cs#L10C9-L12C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclarationCollection.cs#L10C9-L12C10" }, { "DocsId": "M:System.CodeDom.CodeAttributeDeclarationCollection.#ctor(System.CodeDom.CodeAttributeDeclarationCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclarationCollection.cs#L14C9-L17C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclarationCollection.cs#L14C9-L17C10" }, { "DocsId": "M:System.CodeDom.CodeAttributeDeclarationCollection.#ctor(System.CodeDom.CodeAttributeDeclaration[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclarationCollection.cs#L19C9-L22C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclarationCollection.cs#L19C9-L22C10" }, { "DocsId": "M:System.CodeDom.CodeAttributeDeclarationCollection.Add(System.CodeDom.CodeAttributeDeclaration)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclarationCollection.cs#L30C59-L30C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclarationCollection.cs#L30C59-L30C74" }, { "DocsId": "M:System.CodeDom.CodeAttributeDeclarationCollection.AddRange(System.CodeDom.CodeAttributeDeclaration[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclarationCollection.cs#L34C13-L43C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclarationCollection.cs#L34C13-L43C10" }, { "DocsId": "M:System.CodeDom.CodeAttributeDeclarationCollection.AddRange(System.CodeDom.CodeAttributeDeclarationCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclarationCollection.cs#L47C13-L57C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclarationCollection.cs#L47C13-L57C10" }, { "DocsId": "M:System.CodeDom.CodeAttributeDeclarationCollection.Contains(System.CodeDom.CodeAttributeDeclaration)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclarationCollection.cs#L59C65-L59C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclarationCollection.cs#L59C65-L59C85" }, { "DocsId": "M:System.CodeDom.CodeAttributeDeclarationCollection.CopyTo(System.CodeDom.CodeAttributeDeclaration[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclarationCollection.cs#L61C76-L61C101" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclarationCollection.cs#L61C76-L61C101" }, { "DocsId": "M:System.CodeDom.CodeAttributeDeclarationCollection.IndexOf(System.CodeDom.CodeAttributeDeclaration)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclarationCollection.cs#L63C63-L63C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclarationCollection.cs#L63C63-L63C82" }, { "DocsId": "M:System.CodeDom.CodeAttributeDeclarationCollection.Insert(System.Int32,System.CodeDom.CodeAttributeDeclaration)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclarationCollection.cs#L65C74-L65C99" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclarationCollection.cs#L65C74-L65C99" }, { "DocsId": "M:System.CodeDom.CodeAttributeDeclarationCollection.Remove(System.CodeDom.CodeAttributeDeclaration)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclarationCollection.cs#L67C63-L67C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclarationCollection.cs#L67C63-L67C81" }, { "DocsId": "P:System.CodeDom.CodeAttributeDeclarationCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclarationCollection.cs#L26C20-L26C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclarationCollection.cs#L26C20-L26C61" } ], "DocsId": "T:System.CodeDom.CodeAttributeDeclarationCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclarationCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeAttributeDeclarationCollection.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeBaseReferenceExpression.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeBaseReferenceExpression.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeBaseReferenceExpression.cs" } ], "DocsId": "T:System.CodeDom.CodeBaseReferenceExpression", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeBaseReferenceExpression.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeBaseReferenceExpression.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeBinaryOperatorExpression.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorExpression.cs#L8C9-L8C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorExpression.cs#L8C9-L8C50" }, { "DocsId": "M:System.CodeDom.CodeBinaryOperatorExpression.#ctor(System.CodeDom.CodeExpression,System.CodeDom.CodeBinaryOperatorType,System.CodeDom.CodeExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorExpression.cs#L10C9-L15C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorExpression.cs#L10C9-L15C10" }, { "DocsId": "P:System.CodeDom.CodeBinaryOperatorExpression.Right", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorExpression.cs#L17C39-L17C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorExpression.cs#L17C39-L17C43" }, { "DocsId": "P:System.CodeDom.CodeBinaryOperatorExpression.Left", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorExpression.cs#L19C38-L19C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorExpression.cs#L19C38-L19C42" }, { "DocsId": "P:System.CodeDom.CodeBinaryOperatorExpression.Operator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorExpression.cs#L21C50-L21C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorExpression.cs#L21C50-L21C54" } ], "DocsId": "T:System.CodeDom.CodeBinaryOperatorExpression", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorExpression.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorExpression.cs" }, { "Members": [ { "DocsId": "F:System.CodeDom.CodeBinaryOperatorType.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" }, { "DocsId": "F:System.CodeDom.CodeBinaryOperatorType.Add", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" }, { "DocsId": "F:System.CodeDom.CodeBinaryOperatorType.Subtract", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" }, { "DocsId": "F:System.CodeDom.CodeBinaryOperatorType.Multiply", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" }, { "DocsId": "F:System.CodeDom.CodeBinaryOperatorType.Divide", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" }, { "DocsId": "F:System.CodeDom.CodeBinaryOperatorType.Modulus", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" }, { "DocsId": "F:System.CodeDom.CodeBinaryOperatorType.Assign", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" }, { "DocsId": "F:System.CodeDom.CodeBinaryOperatorType.IdentityInequality", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" }, { "DocsId": "F:System.CodeDom.CodeBinaryOperatorType.IdentityEquality", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" }, { "DocsId": "F:System.CodeDom.CodeBinaryOperatorType.ValueEquality", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" }, { "DocsId": "F:System.CodeDom.CodeBinaryOperatorType.BitwiseOr", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" }, { "DocsId": "F:System.CodeDom.CodeBinaryOperatorType.BitwiseAnd", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" }, { "DocsId": "F:System.CodeDom.CodeBinaryOperatorType.BooleanOr", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" }, { "DocsId": "F:System.CodeDom.CodeBinaryOperatorType.BooleanAnd", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" }, { "DocsId": "F:System.CodeDom.CodeBinaryOperatorType.LessThan", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" }, { "DocsId": "F:System.CodeDom.CodeBinaryOperatorType.LessThanOrEqual", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" }, { "DocsId": "F:System.CodeDom.CodeBinaryOperatorType.GreaterThan", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" }, { "DocsId": "F:System.CodeDom.CodeBinaryOperatorType.GreaterThanOrEqual", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" } ], "DocsId": "T:System.CodeDom.CodeBinaryOperatorType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeBinaryOperatorType.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeCastExpression.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCastExpression.cs#L10C9-L10C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCastExpression.cs#L10C9-L10C40" }, { "DocsId": "M:System.CodeDom.CodeCastExpression.#ctor(System.CodeDom.CodeTypeReference,System.CodeDom.CodeExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCastExpression.cs#L12C9-L16C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCastExpression.cs#L12C9-L16C10" }, { "DocsId": "M:System.CodeDom.CodeCastExpression.#ctor(System.String,System.CodeDom.CodeExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCastExpression.cs#L18C9-L22C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCastExpression.cs#L18C9-L22C10" }, { "DocsId": "M:System.CodeDom.CodeCastExpression.#ctor(System.Type,System.CodeDom.CodeExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCastExpression.cs#L24C9-L28C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCastExpression.cs#L24C9-L28C10" }, { "DocsId": "P:System.CodeDom.CodeCastExpression.TargetType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCastExpression.cs#L32C20-L32C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCastExpression.cs#L32C20-L32C61" }, { "DocsId": "P:System.CodeDom.CodeCastExpression.Expression", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCastExpression.cs#L36C44-L36C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCastExpression.cs#L36C44-L36C48" } ], "DocsId": "T:System.CodeDom.CodeCastExpression", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCastExpression.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCastExpression.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeCatchClause.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClause.cs#L12C9-L12C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClause.cs#L12C9-L12C37" }, { "DocsId": "M:System.CodeDom.CodeCatchClause.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClause.cs#L14C9-L17C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClause.cs#L14C9-L17C10" }, { "DocsId": "M:System.CodeDom.CodeCatchClause.#ctor(System.String,System.CodeDom.CodeTypeReference)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClause.cs#L19C9-L23C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClause.cs#L19C9-L23C10" }, { "DocsId": "M:System.CodeDom.CodeCatchClause.#ctor(System.String,System.CodeDom.CodeTypeReference,System.CodeDom.CodeStatement[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClause.cs#L25C9-L30C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClause.cs#L25C9-L30C10" }, { "DocsId": "P:System.CodeDom.CodeCatchClause.LocalName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClause.cs#L34C20-L34C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClause.cs#L34C20-L34C46" }, { "DocsId": "P:System.CodeDom.CodeCatchClause.CatchExceptionType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClause.cs#L40C20-L40C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClause.cs#L40C20-L40C84" }, { "DocsId": "P:System.CodeDom.CodeCatchClause.Statements", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClause.cs#L44C54-L44C99" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClause.cs#L44C54-L44C99" } ], "DocsId": "T:System.CodeDom.CodeCatchClause", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClause.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClause.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeCatchClauseCollection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClauseCollection.cs#L10C9-L10C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClauseCollection.cs#L10C9-L10C47" }, { "DocsId": "M:System.CodeDom.CodeCatchClauseCollection.#ctor(System.CodeDom.CodeCatchClauseCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClauseCollection.cs#L12C9-L15C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClauseCollection.cs#L12C9-L15C10" }, { "DocsId": "M:System.CodeDom.CodeCatchClauseCollection.#ctor(System.CodeDom.CodeCatchClause[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClauseCollection.cs#L17C9-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClauseCollection.cs#L17C9-L20C10" }, { "DocsId": "M:System.CodeDom.CodeCatchClauseCollection.Add(System.CodeDom.CodeCatchClause)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClauseCollection.cs#L28C50-L28C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClauseCollection.cs#L28C50-L28C65" }, { "DocsId": "M:System.CodeDom.CodeCatchClauseCollection.AddRange(System.CodeDom.CodeCatchClause[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClauseCollection.cs#L32C13-L41C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClauseCollection.cs#L32C13-L41C10" }, { "DocsId": "M:System.CodeDom.CodeCatchClauseCollection.AddRange(System.CodeDom.CodeCatchClauseCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClauseCollection.cs#L45C13-L55C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClauseCollection.cs#L45C13-L55C10" }, { "DocsId": "M:System.CodeDom.CodeCatchClauseCollection.Contains(System.CodeDom.CodeCatchClause)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClauseCollection.cs#L57C56-L57C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClauseCollection.cs#L57C56-L57C76" }, { "DocsId": "M:System.CodeDom.CodeCatchClauseCollection.CopyTo(System.CodeDom.CodeCatchClause[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClauseCollection.cs#L59C67-L59C92" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClauseCollection.cs#L59C67-L59C92" }, { "DocsId": "M:System.CodeDom.CodeCatchClauseCollection.IndexOf(System.CodeDom.CodeCatchClause)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClauseCollection.cs#L61C54-L61C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClauseCollection.cs#L61C54-L61C73" }, { "DocsId": "M:System.CodeDom.CodeCatchClauseCollection.Insert(System.Int32,System.CodeDom.CodeCatchClause)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClauseCollection.cs#L63C65-L63C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClauseCollection.cs#L63C65-L63C90" }, { "DocsId": "M:System.CodeDom.CodeCatchClauseCollection.Remove(System.CodeDom.CodeCatchClause)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClauseCollection.cs#L65C54-L65C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClauseCollection.cs#L65C54-L65C72" }, { "DocsId": "P:System.CodeDom.CodeCatchClauseCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClauseCollection.cs#L24C20-L24C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClauseCollection.cs#L24C20-L24C52" } ], "DocsId": "T:System.CodeDom.CodeCatchClauseCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClauseCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCatchClauseCollection.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeChecksumPragma.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeChecksumPragma.cs#L10C9-L12C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeChecksumPragma.cs#L10C9-L12C10" }, { "DocsId": "M:System.CodeDom.CodeChecksumPragma.#ctor(System.String,System.Guid,System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeChecksumPragma.cs#L14C9-L19C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeChecksumPragma.cs#L14C9-L19C10" }, { "DocsId": "P:System.CodeDom.CodeChecksumPragma.FileName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeChecksumPragma.cs#L23C20-L23C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeChecksumPragma.cs#L23C20-L23C45" }, { "DocsId": "P:System.CodeDom.CodeChecksumPragma.ChecksumAlgorithmId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeChecksumPragma.cs#L27C43-L27C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeChecksumPragma.cs#L27C43-L27C47" }, { "DocsId": "P:System.CodeDom.CodeChecksumPragma.ChecksumData", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeChecksumPragma.cs#L29C38-L29C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeChecksumPragma.cs#L29C38-L29C42" } ], "DocsId": "T:System.CodeDom.CodeChecksumPragma", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeChecksumPragma.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeChecksumPragma.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeComment.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeComment.cs#L10C9-L10C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeComment.cs#L10C9-L10C33" }, { "DocsId": "M:System.CodeDom.CodeComment.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeComment.cs#L12C9-L15C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeComment.cs#L12C9-L15C10" }, { "DocsId": "M:System.CodeDom.CodeComment.#ctor(System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeComment.cs#L17C9-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeComment.cs#L17C9-L21C10" }, { "DocsId": "P:System.CodeDom.CodeComment.DocComment", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeComment.cs#L23C34-L23C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeComment.cs#L23C34-L23C38" }, { "DocsId": "P:System.CodeDom.CodeComment.Text", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeComment.cs#L27C20-L27C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeComment.cs#L27C20-L27C41" } ], "DocsId": "T:System.CodeDom.CodeComment", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeComment.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeComment.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeCommentStatement.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatement.cs#L8C9-L8C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatement.cs#L8C9-L8C42" }, { "DocsId": "M:System.CodeDom.CodeCommentStatement.#ctor(System.CodeDom.CodeComment)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatement.cs#L10C9-L13C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatement.cs#L10C9-L13C10" }, { "DocsId": "M:System.CodeDom.CodeCommentStatement.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatement.cs#L15C9-L18C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatement.cs#L15C9-L18C10" }, { "DocsId": "M:System.CodeDom.CodeCommentStatement.#ctor(System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatement.cs#L20C9-L23C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatement.cs#L20C9-L23C10" }, { "DocsId": "P:System.CodeDom.CodeCommentStatement.Comment", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatement.cs#L25C38-L25C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatement.cs#L25C38-L25C42" } ], "DocsId": "T:System.CodeDom.CodeCommentStatement", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatement.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatement.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeCommentStatementCollection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatementCollection.cs#L10C9-L10C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatementCollection.cs#L10C9-L10C52" }, { "DocsId": "M:System.CodeDom.CodeCommentStatementCollection.#ctor(System.CodeDom.CodeCommentStatementCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatementCollection.cs#L12C9-L15C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatementCollection.cs#L12C9-L15C10" }, { "DocsId": "M:System.CodeDom.CodeCommentStatementCollection.#ctor(System.CodeDom.CodeCommentStatement[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatementCollection.cs#L17C9-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatementCollection.cs#L17C9-L20C10" }, { "DocsId": "M:System.CodeDom.CodeCommentStatementCollection.Add(System.CodeDom.CodeCommentStatement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatementCollection.cs#L28C55-L28C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatementCollection.cs#L28C55-L28C70" }, { "DocsId": "M:System.CodeDom.CodeCommentStatementCollection.AddRange(System.CodeDom.CodeCommentStatement[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatementCollection.cs#L32C13-L41C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatementCollection.cs#L32C13-L41C10" }, { "DocsId": "M:System.CodeDom.CodeCommentStatementCollection.AddRange(System.CodeDom.CodeCommentStatementCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatementCollection.cs#L45C13-L55C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatementCollection.cs#L45C13-L55C10" }, { "DocsId": "M:System.CodeDom.CodeCommentStatementCollection.Contains(System.CodeDom.CodeCommentStatement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatementCollection.cs#L57C61-L57C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatementCollection.cs#L57C61-L57C81" }, { "DocsId": "M:System.CodeDom.CodeCommentStatementCollection.CopyTo(System.CodeDom.CodeCommentStatement[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatementCollection.cs#L59C72-L59C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatementCollection.cs#L59C72-L59C97" }, { "DocsId": "M:System.CodeDom.CodeCommentStatementCollection.IndexOf(System.CodeDom.CodeCommentStatement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatementCollection.cs#L61C59-L61C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatementCollection.cs#L61C59-L61C78" }, { "DocsId": "M:System.CodeDom.CodeCommentStatementCollection.Insert(System.Int32,System.CodeDom.CodeCommentStatement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatementCollection.cs#L63C70-L63C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatementCollection.cs#L63C70-L63C95" }, { "DocsId": "M:System.CodeDom.CodeCommentStatementCollection.Remove(System.CodeDom.CodeCommentStatement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatementCollection.cs#L65C59-L65C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatementCollection.cs#L65C59-L65C77" }, { "DocsId": "P:System.CodeDom.CodeCommentStatementCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatementCollection.cs#L24C19-L24C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatementCollection.cs#L24C19-L24C60" } ], "DocsId": "T:System.CodeDom.CodeCommentStatementCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatementCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCommentStatementCollection.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeCompileUnit.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCompileUnit.cs#L18C62-L16C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCompileUnit.cs#L18C62-L16C37" }, { "DocsId": "P:System.CodeDom.CodeCompileUnit.Namespaces", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCompileUnit.cs#L18C53-L18C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCompileUnit.cs#L18C53-L18C57" }, { "DocsId": "P:System.CodeDom.CodeCompileUnit.ReferencedAssemblies", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCompileUnit.cs#L20C57-L20C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCompileUnit.cs#L20C57-L20C95" }, { "DocsId": "P:System.CodeDom.CodeCompileUnit.AssemblyCustomAttributes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCompileUnit.cs#L22C79-L22C135" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCompileUnit.cs#L22C79-L22C135" }, { "DocsId": "P:System.CodeDom.CodeCompileUnit.StartDirectives", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCompileUnit.cs#L24C59-L24C109" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCompileUnit.cs#L24C59-L24C109" }, { "DocsId": "P:System.CodeDom.CodeCompileUnit.EndDirectives", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCompileUnit.cs#L26C57-L26C105" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCompileUnit.cs#L26C57-L26C105" } ], "DocsId": "T:System.CodeDom.CodeCompileUnit", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeCompileUnit.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeCompileUnit.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeConditionStatement.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeConditionStatement.cs#L25C66-L8C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeConditionStatement.cs#L25C66-L8C44" }, { "DocsId": "M:System.CodeDom.CodeConditionStatement.#ctor(System.CodeDom.CodeExpression,System.CodeDom.CodeStatement[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeConditionStatement.cs#L25C66-L14C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeConditionStatement.cs#L25C66-L14C10" }, { "DocsId": "M:System.CodeDom.CodeConditionStatement.#ctor(System.CodeDom.CodeExpression,System.CodeDom.CodeStatement[],System.CodeDom.CodeStatement[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeConditionStatement.cs#L25C66-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeConditionStatement.cs#L25C66-L21C10" }, { "DocsId": "P:System.CodeDom.CodeConditionStatement.Condition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeConditionStatement.cs#L23C43-L23C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeConditionStatement.cs#L23C43-L23C47" }, { "DocsId": "P:System.CodeDom.CodeConditionStatement.TrueStatements", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeConditionStatement.cs#L25C57-L25C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeConditionStatement.cs#L25C57-L25C61" }, { "DocsId": "P:System.CodeDom.CodeConditionStatement.FalseStatements", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeConditionStatement.cs#L27C58-L27C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeConditionStatement.cs#L27C58-L27C62" } ], "DocsId": "T:System.CodeDom.CodeConditionStatement", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeConditionStatement.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeConditionStatement.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeConstructor.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeConstructor.cs#L13C72-L11C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeConstructor.cs#L13C72-L11C10" }, { "DocsId": "P:System.CodeDom.CodeConstructor.BaseConstructorArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeConstructor.cs#L13C63-L13C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeConstructor.cs#L13C63-L13C67" }, { "DocsId": "P:System.CodeDom.CodeConstructor.ChainedConstructorArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeConstructor.cs#L15C66-L15C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeConstructor.cs#L15C66-L15C70" } ], "DocsId": "T:System.CodeDom.CodeConstructor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeConstructor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeConstructor.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeDefaultValueExpression.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeDefaultValueExpression.cs#L10C9-L10C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeDefaultValueExpression.cs#L10C9-L10C48" }, { "DocsId": "M:System.CodeDom.CodeDefaultValueExpression.#ctor(System.CodeDom.CodeTypeReference)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeDefaultValueExpression.cs#L12C9-L15C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeDefaultValueExpression.cs#L12C9-L15C10" }, { "DocsId": "P:System.CodeDom.CodeDefaultValueExpression.Type", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeDefaultValueExpression.cs#L19C20-L19C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeDefaultValueExpression.cs#L19C20-L19C55" } ], "DocsId": "T:System.CodeDom.CodeDefaultValueExpression", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeDefaultValueExpression.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeDefaultValueExpression.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeDelegateCreateExpression.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeDelegateCreateExpression.cs#L11C9-L11C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeDelegateCreateExpression.cs#L11C9-L11C50" }, { "DocsId": "M:System.CodeDom.CodeDelegateCreateExpression.#ctor(System.CodeDom.CodeTypeReference,System.CodeDom.CodeExpression,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeDelegateCreateExpression.cs#L13C9-L18C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeDelegateCreateExpression.cs#L13C9-L18C10" }, { "DocsId": "P:System.CodeDom.CodeDelegateCreateExpression.DelegateType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeDelegateCreateExpression.cs#L22C20-L22C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeDelegateCreateExpression.cs#L22C20-L22C63" }, { "DocsId": "P:System.CodeDom.CodeDelegateCreateExpression.TargetObject", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeDelegateCreateExpression.cs#L26C46-L26C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeDelegateCreateExpression.cs#L26C46-L26C50" }, { "DocsId": "P:System.CodeDom.CodeDelegateCreateExpression.MethodName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeDelegateCreateExpression.cs#L30C20-L30C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeDelegateCreateExpression.cs#L30C20-L30C47" } ], "DocsId": "T:System.CodeDom.CodeDelegateCreateExpression", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeDelegateCreateExpression.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeDelegateCreateExpression.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeDelegateInvokeExpression.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeDelegateInvokeExpression.cs#L23C63-L8C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeDelegateInvokeExpression.cs#L23C63-L8C50" }, { "DocsId": "M:System.CodeDom.CodeDelegateInvokeExpression.#ctor(System.CodeDom.CodeExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeDelegateInvokeExpression.cs#L23C63-L13C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeDelegateInvokeExpression.cs#L23C63-L13C10" }, { "DocsId": "M:System.CodeDom.CodeDelegateInvokeExpression.#ctor(System.CodeDom.CodeExpression,System.CodeDom.CodeExpression[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeDelegateInvokeExpression.cs#L23C63-L19C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeDelegateInvokeExpression.cs#L23C63-L19C10" }, { "DocsId": "P:System.CodeDom.CodeDelegateInvokeExpression.TargetObject", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeDelegateInvokeExpression.cs#L21C46-L21C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeDelegateInvokeExpression.cs#L21C46-L21C50" }, { "DocsId": "P:System.CodeDom.CodeDelegateInvokeExpression.Parameters", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeDelegateInvokeExpression.cs#L23C54-L23C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeDelegateInvokeExpression.cs#L23C54-L23C58" } ], "DocsId": "T:System.CodeDom.CodeDelegateInvokeExpression", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeDelegateInvokeExpression.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeDelegateInvokeExpression.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeDirectionExpression.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectionExpression.cs#L8C9-L8C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectionExpression.cs#L8C9-L8C45" }, { "DocsId": "M:System.CodeDom.CodeDirectionExpression.#ctor(System.CodeDom.FieldDirection,System.CodeDom.CodeExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectionExpression.cs#L10C9-L14C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectionExpression.cs#L10C9-L14C10" }, { "DocsId": "P:System.CodeDom.CodeDirectionExpression.Expression", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectionExpression.cs#L16C44-L16C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectionExpression.cs#L16C44-L16C48" }, { "DocsId": "P:System.CodeDom.CodeDirectionExpression.Direction", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectionExpression.cs#L18C43-L18C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectionExpression.cs#L18C43-L18C47" } ], "DocsId": "T:System.CodeDom.CodeDirectionExpression", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectionExpression.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectionExpression.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeDirective.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirective.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirective.cs" } ], "DocsId": "T:System.CodeDom.CodeDirective", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirective.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirective.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeDirectiveCollection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectiveCollection.cs#L10C9-L10C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectiveCollection.cs#L10C9-L10C45" }, { "DocsId": "M:System.CodeDom.CodeDirectiveCollection.#ctor(System.CodeDom.CodeDirectiveCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectiveCollection.cs#L12C9-L15C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectiveCollection.cs#L12C9-L15C10" }, { "DocsId": "M:System.CodeDom.CodeDirectiveCollection.#ctor(System.CodeDom.CodeDirective[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectiveCollection.cs#L17C9-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectiveCollection.cs#L17C9-L20C10" }, { "DocsId": "M:System.CodeDom.CodeDirectiveCollection.Add(System.CodeDom.CodeDirective)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectiveCollection.cs#L28C48-L28C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectiveCollection.cs#L28C48-L28C63" }, { "DocsId": "M:System.CodeDom.CodeDirectiveCollection.AddRange(System.CodeDom.CodeDirective[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectiveCollection.cs#L32C13-L41C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectiveCollection.cs#L32C13-L41C10" }, { "DocsId": "M:System.CodeDom.CodeDirectiveCollection.AddRange(System.CodeDom.CodeDirectiveCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectiveCollection.cs#L45C13-L55C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectiveCollection.cs#L45C13-L55C10" }, { "DocsId": "M:System.CodeDom.CodeDirectiveCollection.Contains(System.CodeDom.CodeDirective)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectiveCollection.cs#L57C54-L57C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectiveCollection.cs#L57C54-L57C74" }, { "DocsId": "M:System.CodeDom.CodeDirectiveCollection.CopyTo(System.CodeDom.CodeDirective[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectiveCollection.cs#L59C65-L59C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectiveCollection.cs#L59C65-L59C90" }, { "DocsId": "M:System.CodeDom.CodeDirectiveCollection.IndexOf(System.CodeDom.CodeDirective)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectiveCollection.cs#L61C52-L61C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectiveCollection.cs#L61C52-L61C71" }, { "DocsId": "M:System.CodeDom.CodeDirectiveCollection.Insert(System.Int32,System.CodeDom.CodeDirective)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectiveCollection.cs#L63C63-L63C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectiveCollection.cs#L63C63-L63C88" }, { "DocsId": "M:System.CodeDom.CodeDirectiveCollection.Remove(System.CodeDom.CodeDirective)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectiveCollection.cs#L65C52-L65C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectiveCollection.cs#L65C52-L65C70" }, { "DocsId": "P:System.CodeDom.CodeDirectiveCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectiveCollection.cs#L24C20-L24C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectiveCollection.cs#L24C20-L24C46" } ], "DocsId": "T:System.CodeDom.CodeDirectiveCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectiveCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeDirectiveCollection.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeEntryPointMethod.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeEntryPointMethod.cs#L8C9-L8C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeEntryPointMethod.cs#L8C9-L8C42" } ], "DocsId": "T:System.CodeDom.CodeEntryPointMethod", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeEntryPointMethod.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeEntryPointMethod.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeEventReferenceExpression.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeEventReferenceExpression.cs#L10C9-L10C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeEventReferenceExpression.cs#L10C9-L10C50" }, { "DocsId": "M:System.CodeDom.CodeEventReferenceExpression.#ctor(System.CodeDom.CodeExpression,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeEventReferenceExpression.cs#L12C9-L16C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeEventReferenceExpression.cs#L12C9-L16C10" }, { "DocsId": "P:System.CodeDom.CodeEventReferenceExpression.TargetObject", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeEventReferenceExpression.cs#L18C46-L18C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeEventReferenceExpression.cs#L18C46-L18C50" }, { "DocsId": "P:System.CodeDom.CodeEventReferenceExpression.EventName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeEventReferenceExpression.cs#L22C20-L22C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeEventReferenceExpression.cs#L22C20-L22C46" } ], "DocsId": "T:System.CodeDom.CodeEventReferenceExpression", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeEventReferenceExpression.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeEventReferenceExpression.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeExpression.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpression.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpression.cs" } ], "DocsId": "T:System.CodeDom.CodeExpression", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpression.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpression.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeExpressionCollection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionCollection.cs#L10C9-L10C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionCollection.cs#L10C9-L10C46" }, { "DocsId": "M:System.CodeDom.CodeExpressionCollection.#ctor(System.CodeDom.CodeExpressionCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionCollection.cs#L12C9-L15C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionCollection.cs#L12C9-L15C10" }, { "DocsId": "M:System.CodeDom.CodeExpressionCollection.#ctor(System.CodeDom.CodeExpression[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionCollection.cs#L17C9-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionCollection.cs#L17C9-L20C10" }, { "DocsId": "M:System.CodeDom.CodeExpressionCollection.Add(System.CodeDom.CodeExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionCollection.cs#L28C49-L28C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionCollection.cs#L28C49-L28C64" }, { "DocsId": "M:System.CodeDom.CodeExpressionCollection.AddRange(System.CodeDom.CodeExpression[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionCollection.cs#L32C13-L41C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionCollection.cs#L32C13-L41C10" }, { "DocsId": "M:System.CodeDom.CodeExpressionCollection.AddRange(System.CodeDom.CodeExpressionCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionCollection.cs#L45C13-L55C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionCollection.cs#L45C13-L55C10" }, { "DocsId": "M:System.CodeDom.CodeExpressionCollection.Contains(System.CodeDom.CodeExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionCollection.cs#L57C55-L57C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionCollection.cs#L57C55-L57C75" }, { "DocsId": "M:System.CodeDom.CodeExpressionCollection.CopyTo(System.CodeDom.CodeExpression[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionCollection.cs#L59C66-L59C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionCollection.cs#L59C66-L59C91" }, { "DocsId": "M:System.CodeDom.CodeExpressionCollection.IndexOf(System.CodeDom.CodeExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionCollection.cs#L61C53-L61C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionCollection.cs#L61C53-L61C72" }, { "DocsId": "M:System.CodeDom.CodeExpressionCollection.Insert(System.Int32,System.CodeDom.CodeExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionCollection.cs#L63C64-L63C89" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionCollection.cs#L63C64-L63C89" }, { "DocsId": "M:System.CodeDom.CodeExpressionCollection.Remove(System.CodeDom.CodeExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionCollection.cs#L65C53-L65C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionCollection.cs#L65C53-L65C71" }, { "DocsId": "P:System.CodeDom.CodeExpressionCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionCollection.cs#L24C20-L24C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionCollection.cs#L24C20-L24C47" } ], "DocsId": "T:System.CodeDom.CodeExpressionCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionCollection.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeExpressionStatement.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionStatement.cs#L8C9-L8C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionStatement.cs#L8C9-L8C45" }, { "DocsId": "M:System.CodeDom.CodeExpressionStatement.#ctor(System.CodeDom.CodeExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionStatement.cs#L10C9-L13C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionStatement.cs#L10C9-L13C10" }, { "DocsId": "P:System.CodeDom.CodeExpressionStatement.Expression", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionStatement.cs#L15C44-L15C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionStatement.cs#L15C44-L15C48" } ], "DocsId": "T:System.CodeDom.CodeExpressionStatement", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionStatement.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeExpressionStatement.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeFieldReferenceExpression.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeFieldReferenceExpression.cs#L10C9-L10C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeFieldReferenceExpression.cs#L10C9-L10C50" }, { "DocsId": "M:System.CodeDom.CodeFieldReferenceExpression.#ctor(System.CodeDom.CodeExpression,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeFieldReferenceExpression.cs#L12C9-L16C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeFieldReferenceExpression.cs#L12C9-L16C10" }, { "DocsId": "P:System.CodeDom.CodeFieldReferenceExpression.TargetObject", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeFieldReferenceExpression.cs#L18C46-L18C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeFieldReferenceExpression.cs#L18C46-L18C50" }, { "DocsId": "P:System.CodeDom.CodeFieldReferenceExpression.FieldName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeFieldReferenceExpression.cs#L22C20-L22C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeFieldReferenceExpression.cs#L22C20-L22C46" } ], "DocsId": "T:System.CodeDom.CodeFieldReferenceExpression", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeFieldReferenceExpression.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeFieldReferenceExpression.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeGotoStatement.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeGotoStatement.cs#L10C9-L10C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeGotoStatement.cs#L10C9-L10C39" }, { "DocsId": "M:System.CodeDom.CodeGotoStatement.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeGotoStatement.cs#L12C9-L15C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeGotoStatement.cs#L12C9-L15C10" }, { "DocsId": "P:System.CodeDom.CodeGotoStatement.Label", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeGotoStatement.cs#L19C20-L19C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeGotoStatement.cs#L19C20-L19C26" } ], "DocsId": "T:System.CodeDom.CodeGotoStatement", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeGotoStatement.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeGotoStatement.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeIndexerExpression.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeIndexerExpression.cs#L10C9-L10C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeIndexerExpression.cs#L10C9-L10C43" }, { "DocsId": "M:System.CodeDom.CodeIndexerExpression.#ctor(System.CodeDom.CodeExpression,System.CodeDom.CodeExpression[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeIndexerExpression.cs#L12C9-L16C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeIndexerExpression.cs#L12C9-L16C10" }, { "DocsId": "P:System.CodeDom.CodeIndexerExpression.TargetObject", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeIndexerExpression.cs#L18C46-L18C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeIndexerExpression.cs#L18C46-L18C50" }, { "DocsId": "P:System.CodeDom.CodeIndexerExpression.Indices", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeIndexerExpression.cs#L20C52-L20C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeIndexerExpression.cs#L20C52-L20C95" } ], "DocsId": "T:System.CodeDom.CodeIndexerExpression", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeIndexerExpression.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeIndexerExpression.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeIterationStatement.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeIterationStatement.cs#L24C62-L8C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeIterationStatement.cs#L24C62-L8C44" }, { "DocsId": "M:System.CodeDom.CodeIterationStatement.#ctor(System.CodeDom.CodeStatement,System.CodeDom.CodeExpression,System.CodeDom.CodeStatement,System.CodeDom.CodeStatement[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeIterationStatement.cs#L24C62-L16C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeIterationStatement.cs#L24C62-L16C10" }, { "DocsId": "P:System.CodeDom.CodeIterationStatement.InitStatement", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeIterationStatement.cs#L18C46-L18C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeIterationStatement.cs#L18C46-L18C50" }, { "DocsId": "P:System.CodeDom.CodeIterationStatement.TestExpression", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeIterationStatement.cs#L20C48-L20C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeIterationStatement.cs#L20C48-L20C52" }, { "DocsId": "P:System.CodeDom.CodeIterationStatement.IncrementStatement", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeIterationStatement.cs#L22C51-L22C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeIterationStatement.cs#L22C51-L22C55" }, { "DocsId": "P:System.CodeDom.CodeIterationStatement.Statements", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeIterationStatement.cs#L24C53-L24C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeIterationStatement.cs#L24C53-L24C57" } ], "DocsId": "T:System.CodeDom.CodeIterationStatement", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeIterationStatement.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeIterationStatement.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeLabeledStatement.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeLabeledStatement.cs#L10C9-L10C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeLabeledStatement.cs#L10C9-L10C42" }, { "DocsId": "M:System.CodeDom.CodeLabeledStatement.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeLabeledStatement.cs#L12C9-L15C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeLabeledStatement.cs#L12C9-L15C10" }, { "DocsId": "M:System.CodeDom.CodeLabeledStatement.#ctor(System.String,System.CodeDom.CodeStatement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeLabeledStatement.cs#L17C9-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeLabeledStatement.cs#L17C9-L21C10" }, { "DocsId": "P:System.CodeDom.CodeLabeledStatement.Label", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeLabeledStatement.cs#L25C20-L25C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeLabeledStatement.cs#L25C20-L25C42" }, { "DocsId": "P:System.CodeDom.CodeLabeledStatement.Statement", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeLabeledStatement.cs#L29C42-L29C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeLabeledStatement.cs#L29C42-L29C46" } ], "DocsId": "T:System.CodeDom.CodeLabeledStatement", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeLabeledStatement.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeLabeledStatement.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeLinePragma.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeLinePragma.cs#L10C9-L10C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeLinePragma.cs#L10C9-L10C36" }, { "DocsId": "M:System.CodeDom.CodeLinePragma.#ctor(System.String,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeLinePragma.cs#L12C9-L16C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeLinePragma.cs#L12C9-L16C10" }, { "DocsId": "P:System.CodeDom.CodeLinePragma.FileName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeLinePragma.cs#L20C20-L20C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeLinePragma.cs#L20C20-L20C45" }, { "DocsId": "P:System.CodeDom.CodeLinePragma.LineNumber", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeLinePragma.cs#L24C33-L24C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeLinePragma.cs#L24C33-L24C37" } ], "DocsId": "T:System.CodeDom.CodeLinePragma", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeLinePragma.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeLinePragma.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeMemberEvent.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberEvent.cs#L11C9-L11C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberEvent.cs#L11C9-L11C37" }, { "DocsId": "P:System.CodeDom.CodeMemberEvent.Type", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberEvent.cs#L15C20-L15C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberEvent.cs#L15C20-L15C55" }, { "DocsId": "P:System.CodeDom.CodeMemberEvent.PrivateImplementationType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberEvent.cs#L19C62-L19C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberEvent.cs#L19C62-L19C66" }, { "DocsId": "P:System.CodeDom.CodeMemberEvent.ImplementationTypes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberEvent.cs#L21C67-L21C125" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberEvent.cs#L21C67-L21C125" } ], "DocsId": "T:System.CodeDom.CodeMemberEvent", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberEvent.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberEvent.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeMemberField.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberField.cs#L10C9-L10C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberField.cs#L10C9-L10C37" }, { "DocsId": "M:System.CodeDom.CodeMemberField.#ctor(System.CodeDom.CodeTypeReference,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberField.cs#L12C9-L16C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberField.cs#L12C9-L16C10" }, { "DocsId": "M:System.CodeDom.CodeMemberField.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberField.cs#L18C9-L22C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberField.cs#L18C9-L22C10" }, { "DocsId": "M:System.CodeDom.CodeMemberField.#ctor(System.Type,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberField.cs#L24C9-L28C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberField.cs#L24C9-L28C10" }, { "DocsId": "P:System.CodeDom.CodeMemberField.Type", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberField.cs#L32C20-L32C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberField.cs#L32C20-L32C55" }, { "DocsId": "P:System.CodeDom.CodeMemberField.InitExpression", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberField.cs#L36C48-L36C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberField.cs#L36C48-L36C52" } ], "DocsId": "T:System.CodeDom.CodeMemberField", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberField.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberField.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeMemberMethod.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberMethod.cs#L8C9-L9C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberMethod.cs#L8C9-L9C94" }, { "DocsId": "E:System.CodeDom.CodeMemberMethod.PopulateParameters", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberMethod.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberMethod.cs" }, { "DocsId": "E:System.CodeDom.CodeMemberMethod.PopulateStatements", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberMethod.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberMethod.cs" }, { "DocsId": "E:System.CodeDom.CodeMemberMethod.PopulateImplementationTypes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberMethod.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberMethod.cs" }, { "DocsId": "P:System.CodeDom.CodeMemberMethod.ReturnType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberMethod.cs#L26C20-L26C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberMethod.cs#L26C20-L26C80" }, { "DocsId": "P:System.CodeDom.CodeMemberMethod.Statements", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberMethod.cs#L34C17-L40C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberMethod.cs#L34C17-L40C36" }, { "DocsId": "P:System.CodeDom.CodeMemberMethod.Parameters", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberMethod.cs#L48C17-L54C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberMethod.cs#L48C17-L54C36" }, { "DocsId": "P:System.CodeDom.CodeMemberMethod.PrivateImplementationType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberMethod.cs#L58C62-L58C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberMethod.cs#L58C62-L58C66" }, { "DocsId": "P:System.CodeDom.CodeMemberMethod.ImplementationTypes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberMethod.cs#L64C17-L72C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberMethod.cs#L64C17-L72C45" }, { "DocsId": "P:System.CodeDom.CodeMemberMethod.ReturnTypeCustomAttributes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberMethod.cs#L76C81-L76C143" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberMethod.cs#L76C81-L76C143" }, { "DocsId": "P:System.CodeDom.CodeMemberMethod.TypeParameters", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberMethod.cs#L78C62-L78C115" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberMethod.cs#L78C62-L78C115" } ], "DocsId": "T:System.CodeDom.CodeMemberMethod", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberMethod.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberMethod.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeMemberProperty.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberProperty.cs#L49C65-L53C133" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberProperty.cs#L49C65-L53C133" }, { "DocsId": "P:System.CodeDom.CodeMemberProperty.PrivateImplementationType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberProperty.cs#L13C62-L13C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberProperty.cs#L13C62-L13C66" }, { "DocsId": "P:System.CodeDom.CodeMemberProperty.ImplementationTypes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberProperty.cs#L15C67-L15C125" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberProperty.cs#L15C67-L15C125" }, { "DocsId": "P:System.CodeDom.CodeMemberProperty.Type", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberProperty.cs#L19C20-L19C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberProperty.cs#L19C20-L19C55" }, { "DocsId": "P:System.CodeDom.CodeMemberProperty.HasGet", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberProperty.cs#L25C20-L25C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberProperty.cs#L25C20-L25C54" }, { "DocsId": "P:System.CodeDom.CodeMemberProperty.HasSet", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberProperty.cs#L38C20-L38C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberProperty.cs#L38C20-L38C54" }, { "DocsId": "P:System.CodeDom.CodeMemberProperty.GetStatements", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberProperty.cs#L49C56-L49C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberProperty.cs#L49C56-L49C60" }, { "DocsId": "P:System.CodeDom.CodeMemberProperty.SetStatements", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberProperty.cs#L51C56-L51C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberProperty.cs#L51C56-L51C60" }, { "DocsId": "P:System.CodeDom.CodeMemberProperty.Parameters", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberProperty.cs#L53C74-L53C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberProperty.cs#L53C74-L53C78" } ], "DocsId": "T:System.CodeDom.CodeMemberProperty", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberProperty.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeMemberProperty.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeMethodInvokeExpression.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeMethodInvokeExpression.cs#L30C63-L10C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeMethodInvokeExpression.cs#L30C63-L10C48" }, { "DocsId": "M:System.CodeDom.CodeMethodInvokeExpression.#ctor(System.CodeDom.CodeMethodReferenceExpression,System.CodeDom.CodeExpression[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeMethodInvokeExpression.cs#L30C63-L16C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeMethodInvokeExpression.cs#L30C63-L16C10" }, { "DocsId": "M:System.CodeDom.CodeMethodInvokeExpression.#ctor(System.CodeDom.CodeExpression,System.String,System.CodeDom.CodeExpression[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeMethodInvokeExpression.cs#L30C63-L22C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeMethodInvokeExpression.cs#L30C63-L22C10" }, { "DocsId": "P:System.CodeDom.CodeMethodInvokeExpression.Method", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeMethodInvokeExpression.cs#L26C20-L26C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeMethodInvokeExpression.cs#L26C20-L26C67" }, { "DocsId": "P:System.CodeDom.CodeMethodInvokeExpression.Parameters", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeMethodInvokeExpression.cs#L30C54-L30C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeMethodInvokeExpression.cs#L30C54-L30C58" } ], "DocsId": "T:System.CodeDom.CodeMethodInvokeExpression", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeMethodInvokeExpression.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeMethodInvokeExpression.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeMethodReferenceExpression.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/codemethodreferenceexpression.cs#L11C9-L11C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/codemethodreferenceexpression.cs#L11C9-L11C51" }, { "DocsId": "M:System.CodeDom.CodeMethodReferenceExpression.#ctor(System.CodeDom.CodeExpression,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/codemethodreferenceexpression.cs#L13C9-L17C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/codemethodreferenceexpression.cs#L13C9-L17C10" }, { "DocsId": "M:System.CodeDom.CodeMethodReferenceExpression.#ctor(System.CodeDom.CodeExpression,System.String,System.CodeDom.CodeTypeReference[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/codemethodreferenceexpression.cs#L19C9-L27C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/codemethodreferenceexpression.cs#L19C9-L27C10" }, { "DocsId": "P:System.CodeDom.CodeMethodReferenceExpression.TargetObject", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/codemethodreferenceexpression.cs#L29C46-L29C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/codemethodreferenceexpression.cs#L29C46-L29C50" }, { "DocsId": "P:System.CodeDom.CodeMethodReferenceExpression.MethodName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/codemethodreferenceexpression.cs#L33C20-L33C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/codemethodreferenceexpression.cs#L33C20-L33C47" }, { "DocsId": "P:System.CodeDom.CodeMethodReferenceExpression.TypeArguments", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/codemethodreferenceexpression.cs#L37C61-L37C113" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/codemethodreferenceexpression.cs#L37C61-L37C113" } ], "DocsId": "T:System.CodeDom.CodeMethodReferenceExpression", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/codemethodreferenceexpression.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/codemethodreferenceexpression.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeMethodReturnStatement.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeMethodReturnStatement.cs#L8C9-L8C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeMethodReturnStatement.cs#L8C9-L8C47" }, { "DocsId": "M:System.CodeDom.CodeMethodReturnStatement.#ctor(System.CodeDom.CodeExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeMethodReturnStatement.cs#L10C9-L13C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeMethodReturnStatement.cs#L10C9-L13C10" }, { "DocsId": "P:System.CodeDom.CodeMethodReturnStatement.Expression", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeMethodReturnStatement.cs#L15C44-L15C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeMethodReturnStatement.cs#L15C44-L15C48" } ], "DocsId": "T:System.CodeDom.CodeMethodReturnStatement", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeMethodReturnStatement.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeMethodReturnStatement.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeNamespace.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespace.cs#L10C9-L23C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespace.cs#L10C9-L23C35" }, { "DocsId": "M:System.CodeDom.CodeNamespace.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespace.cs#L10C9-L28C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespace.cs#L10C9-L28C10" }, { "DocsId": "E:System.CodeDom.CodeNamespace.PopulateComments", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespace.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespace.cs" }, { "DocsId": "E:System.CodeDom.CodeNamespace.PopulateImports", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespace.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespace.cs" }, { "DocsId": "E:System.CodeDom.CodeNamespace.PopulateTypes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespace.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespace.cs" }, { "DocsId": "P:System.CodeDom.CodeNamespace.Types", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespace.cs#L34C17-L40C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespace.cs#L34C17-L40C33" }, { "DocsId": "P:System.CodeDom.CodeNamespace.Imports", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespace.cs#L48C17-L54C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespace.cs#L48C17-L54C33" }, { "DocsId": "P:System.CodeDom.CodeNamespace.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespace.cs#L60C20-L60C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespace.cs#L60C20-L60C41" }, { "DocsId": "P:System.CodeDom.CodeNamespace.Comments", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespace.cs#L68C17-L74C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespace.cs#L68C17-L74C34" } ], "DocsId": "T:System.CodeDom.CodeNamespace", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespace.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespace.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeNamespaceCollection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceCollection.cs#L10C9-L10C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceCollection.cs#L10C9-L10C45" }, { "DocsId": "M:System.CodeDom.CodeNamespaceCollection.#ctor(System.CodeDom.CodeNamespaceCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceCollection.cs#L12C9-L15C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceCollection.cs#L12C9-L15C10" }, { "DocsId": "M:System.CodeDom.CodeNamespaceCollection.#ctor(System.CodeDom.CodeNamespace[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceCollection.cs#L17C9-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceCollection.cs#L17C9-L20C10" }, { "DocsId": "M:System.CodeDom.CodeNamespaceCollection.Add(System.CodeDom.CodeNamespace)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceCollection.cs#L28C48-L28C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceCollection.cs#L28C48-L28C63" }, { "DocsId": "M:System.CodeDom.CodeNamespaceCollection.AddRange(System.CodeDom.CodeNamespace[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceCollection.cs#L32C13-L41C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceCollection.cs#L32C13-L41C10" }, { "DocsId": "M:System.CodeDom.CodeNamespaceCollection.AddRange(System.CodeDom.CodeNamespaceCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceCollection.cs#L45C13-L55C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceCollection.cs#L45C13-L55C10" }, { "DocsId": "M:System.CodeDom.CodeNamespaceCollection.Contains(System.CodeDom.CodeNamespace)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceCollection.cs#L57C54-L57C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceCollection.cs#L57C54-L57C74" }, { "DocsId": "M:System.CodeDom.CodeNamespaceCollection.CopyTo(System.CodeDom.CodeNamespace[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceCollection.cs#L59C65-L59C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceCollection.cs#L59C65-L59C90" }, { "DocsId": "M:System.CodeDom.CodeNamespaceCollection.IndexOf(System.CodeDom.CodeNamespace)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceCollection.cs#L61C52-L61C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceCollection.cs#L61C52-L61C71" }, { "DocsId": "M:System.CodeDom.CodeNamespaceCollection.Insert(System.Int32,System.CodeDom.CodeNamespace)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceCollection.cs#L63C63-L63C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceCollection.cs#L63C63-L63C88" }, { "DocsId": "M:System.CodeDom.CodeNamespaceCollection.Remove(System.CodeDom.CodeNamespace)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceCollection.cs#L65C52-L65C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceCollection.cs#L65C52-L65C70" }, { "DocsId": "P:System.CodeDom.CodeNamespaceCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceCollection.cs#L24C20-L24C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceCollection.cs#L24C20-L24C46" } ], "DocsId": "T:System.CodeDom.CodeNamespaceCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceCollection.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeNamespaceImport.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImport.cs#L10C9-L10C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImport.cs#L10C9-L10C41" }, { "DocsId": "M:System.CodeDom.CodeNamespaceImport.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImport.cs#L12C9-L15C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImport.cs#L12C9-L15C10" }, { "DocsId": "P:System.CodeDom.CodeNamespaceImport.LinePragma", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImport.cs#L17C44-L17C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImport.cs#L17C44-L17C48" }, { "DocsId": "P:System.CodeDom.CodeNamespaceImport.Namespace", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImport.cs#L21C20-L21C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImport.cs#L21C20-L21C46" } ], "DocsId": "T:System.CodeDom.CodeNamespaceImport", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImport.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImport.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeNamespaceImportCollection.System#Collections#IList#get_IsReadOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L26C34-L26C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L26C34-L26C39" }, { "DocsId": "M:System.CodeDom.CodeNamespaceImportCollection.System#Collections#IList#get_IsFixedSize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L28C35-L28C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L28C35-L28C40" }, { "DocsId": "M:System.CodeDom.CodeNamespaceImportCollection.Add(System.CodeDom.CodeNamespaceImport)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L32C13-L37C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L32C13-L37C10" }, { "DocsId": "M:System.CodeDom.CodeNamespaceImportCollection.AddRange(System.CodeDom.CodeNamespaceImport[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L41C13-L50C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L41C13-L50C10" }, { "DocsId": "M:System.CodeDom.CodeNamespaceImportCollection.Clear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L54C13-L56C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L54C13-L56C10" }, { "DocsId": "M:System.CodeDom.CodeNamespaceImportCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L67C47-L67C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L67C47-L67C68" }, { "DocsId": "M:System.CodeDom.CodeNamespaceImportCollection.System#Collections#IList#get_Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L71C20-L71C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L71C20-L71C31" }, { "DocsId": "M:System.CodeDom.CodeNamespaceImportCollection.System#Collections#IList#set_Item(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L74C17-L76C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L74C17-L76C14" }, { "DocsId": "M:System.CodeDom.CodeNamespaceImportCollection.System#Collections#ICollection#get_Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L79C34-L79C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L79C34-L79C39" }, { "DocsId": "M:System.CodeDom.CodeNamespaceImportCollection.System#Collections#ICollection#get_IsSynchronized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L81C44-L81C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L81C44-L81C49" }, { "DocsId": "M:System.CodeDom.CodeNamespaceImportCollection.System#Collections#ICollection#get_SyncRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L83C40-L83C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L83C40-L83C44" }, { "DocsId": "M:System.CodeDom.CodeNamespaceImportCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L85C60-L85C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L85C60-L85C86" }, { "DocsId": "M:System.CodeDom.CodeNamespaceImportCollection.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L87C52-L87C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L87C52-L87C67" }, { "DocsId": "M:System.CodeDom.CodeNamespaceImportCollection.System#Collections#IList#Add(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L89C40-L89C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L89C40-L89C77" }, { "DocsId": "M:System.CodeDom.CodeNamespaceImportCollection.System#Collections#IList#Clear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L91C31-L91C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L91C31-L91C38" }, { "DocsId": "M:System.CodeDom.CodeNamespaceImportCollection.System#Collections#IList#Contains(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L93C46-L93C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L93C46-L93C67" }, { "DocsId": "M:System.CodeDom.CodeNamespaceImportCollection.System#Collections#IList#IndexOf(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L95C44-L95C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L95C44-L95C85" }, { "DocsId": "M:System.CodeDom.CodeNamespaceImportCollection.System#Collections#IList#Insert(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L99C13-L101C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L99C13-L101C10" }, { "DocsId": "M:System.CodeDom.CodeNamespaceImportCollection.System#Collections#IList#Remove(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L105C13-L107C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L105C13-L107C10" }, { "DocsId": "M:System.CodeDom.CodeNamespaceImportCollection.System#Collections#IList#RemoveAt(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L111C13-L113C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L111C13-L113C10" }, { "DocsId": "M:System.CodeDom.CodeNamespaceImportCollection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L11C9-L12C152" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L11C9-L12C152" }, { "DocsId": "P:System.CodeDom.CodeNamespaceImportCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L16C20-L16C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L16C20-L16C53" }, { "DocsId": "P:System.CodeDom.CodeNamespaceImportCollection.Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L24C29-L24C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L24C29-L24C40" }, { "DocsId": "P:System.CodeDom.CodeNamespaceImportCollection.System#Collections#IList#IsReadOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L26C34-L26C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L26C34-L26C39" }, { "DocsId": "P:System.CodeDom.CodeNamespaceImportCollection.System#Collections#IList#IsFixedSize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L28C35-L28C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L28C35-L28C40" }, { "DocsId": "P:System.CodeDom.CodeNamespaceImportCollection.System#Collections#IList#Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L71C20-L71C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L71C20-L71C31" }, { "DocsId": "P:System.CodeDom.CodeNamespaceImportCollection.System#Collections#ICollection#Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L79C34-L79C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L79C34-L79C39" }, { "DocsId": "P:System.CodeDom.CodeNamespaceImportCollection.System#Collections#ICollection#IsSynchronized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L81C44-L81C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L81C44-L81C49" }, { "DocsId": "P:System.CodeDom.CodeNamespaceImportCollection.System#Collections#ICollection#SyncRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L83C40-L83C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs#L83C40-L83C44" } ], "DocsId": "T:System.CodeDom.CodeNamespaceImportCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeNamespaceImportCollection.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeObject.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/CodeDom/CodeObject.cs#L21C9-L21C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/CodeDom/CodeObject.cs#L21C9-L21C32" }, { "DocsId": "P:System.CodeDom.CodeObject.UserData", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/CodeDom/CodeObject.cs#L23C40-L23C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/CodeDom/CodeObject.cs#L23C40-L23C74" } ], "DocsId": "T:System.CodeDom.CodeObject", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/CodeDom/CodeObject.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/CodeDom/CodeObject.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeObjectCreateExpression.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeObjectCreateExpression.cs#L36C63-L10C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeObjectCreateExpression.cs#L36C63-L10C48" }, { "DocsId": "M:System.CodeDom.CodeObjectCreateExpression.#ctor(System.CodeDom.CodeTypeReference,System.CodeDom.CodeExpression[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeObjectCreateExpression.cs#L36C63-L16C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeObjectCreateExpression.cs#L36C63-L16C10" }, { "DocsId": "M:System.CodeDom.CodeObjectCreateExpression.#ctor(System.String,System.CodeDom.CodeExpression[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeObjectCreateExpression.cs#L36C63-L22C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeObjectCreateExpression.cs#L36C63-L22C10" }, { "DocsId": "M:System.CodeDom.CodeObjectCreateExpression.#ctor(System.Type,System.CodeDom.CodeExpression[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeObjectCreateExpression.cs#L36C63-L28C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeObjectCreateExpression.cs#L36C63-L28C10" }, { "DocsId": "P:System.CodeDom.CodeObjectCreateExpression.CreateType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeObjectCreateExpression.cs#L32C20-L32C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeObjectCreateExpression.cs#L32C20-L32C61" }, { "DocsId": "P:System.CodeDom.CodeObjectCreateExpression.Parameters", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeObjectCreateExpression.cs#L36C54-L36C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeObjectCreateExpression.cs#L36C54-L36C58" } ], "DocsId": "T:System.CodeDom.CodeObjectCreateExpression", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeObjectCreateExpression.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeObjectCreateExpression.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeParameterDeclarationExpression.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpression.cs#L12C9-L12C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpression.cs#L12C9-L12C56" }, { "DocsId": "M:System.CodeDom.CodeParameterDeclarationExpression.#ctor(System.CodeDom.CodeTypeReference,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpression.cs#L14C9-L18C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpression.cs#L14C9-L18C10" }, { "DocsId": "M:System.CodeDom.CodeParameterDeclarationExpression.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpression.cs#L20C9-L24C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpression.cs#L20C9-L24C10" }, { "DocsId": "M:System.CodeDom.CodeParameterDeclarationExpression.#ctor(System.Type,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpression.cs#L26C9-L30C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpression.cs#L26C9-L30C10" }, { "DocsId": "P:System.CodeDom.CodeParameterDeclarationExpression.CustomAttributes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpression.cs#L34C20-L34C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpression.cs#L34C20-L34C82" }, { "DocsId": "P:System.CodeDom.CodeParameterDeclarationExpression.Direction", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpression.cs#L38C43-L38C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpression.cs#L38C43-L38C47" }, { "DocsId": "P:System.CodeDom.CodeParameterDeclarationExpression.Type", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpression.cs#L42C20-L42C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpression.cs#L42C20-L42C55" }, { "DocsId": "P:System.CodeDom.CodeParameterDeclarationExpression.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpression.cs#L48C20-L48C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpression.cs#L48C20-L48C41" } ], "DocsId": "T:System.CodeDom.CodeParameterDeclarationExpression", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpression.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpression.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeParameterDeclarationExpressionCollection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpressionCollection.cs#L10C9-L10C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpressionCollection.cs#L10C9-L10C66" }, { "DocsId": "M:System.CodeDom.CodeParameterDeclarationExpressionCollection.#ctor(System.CodeDom.CodeParameterDeclarationExpressionCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpressionCollection.cs#L12C9-L15C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpressionCollection.cs#L12C9-L15C10" }, { "DocsId": "M:System.CodeDom.CodeParameterDeclarationExpressionCollection.#ctor(System.CodeDom.CodeParameterDeclarationExpression[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpressionCollection.cs#L17C9-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpressionCollection.cs#L17C9-L20C10" }, { "DocsId": "M:System.CodeDom.CodeParameterDeclarationExpressionCollection.Add(System.CodeDom.CodeParameterDeclarationExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpressionCollection.cs#L28C69-L28C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpressionCollection.cs#L28C69-L28C84" }, { "DocsId": "M:System.CodeDom.CodeParameterDeclarationExpressionCollection.AddRange(System.CodeDom.CodeParameterDeclarationExpression[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpressionCollection.cs#L32C13-L41C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpressionCollection.cs#L32C13-L41C10" }, { "DocsId": "M:System.CodeDom.CodeParameterDeclarationExpressionCollection.AddRange(System.CodeDom.CodeParameterDeclarationExpressionCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpressionCollection.cs#L45C13-L55C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpressionCollection.cs#L45C13-L55C10" }, { "DocsId": "M:System.CodeDom.CodeParameterDeclarationExpressionCollection.Contains(System.CodeDom.CodeParameterDeclarationExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpressionCollection.cs#L57C75-L57C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpressionCollection.cs#L57C75-L57C95" }, { "DocsId": "M:System.CodeDom.CodeParameterDeclarationExpressionCollection.CopyTo(System.CodeDom.CodeParameterDeclarationExpression[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpressionCollection.cs#L59C86-L59C111" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpressionCollection.cs#L59C86-L59C111" }, { "DocsId": "M:System.CodeDom.CodeParameterDeclarationExpressionCollection.IndexOf(System.CodeDom.CodeParameterDeclarationExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpressionCollection.cs#L61C73-L61C92" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpressionCollection.cs#L61C73-L61C92" }, { "DocsId": "M:System.CodeDom.CodeParameterDeclarationExpressionCollection.Insert(System.Int32,System.CodeDom.CodeParameterDeclarationExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpressionCollection.cs#L63C84-L63C109" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpressionCollection.cs#L63C84-L63C109" }, { "DocsId": "M:System.CodeDom.CodeParameterDeclarationExpressionCollection.Remove(System.CodeDom.CodeParameterDeclarationExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpressionCollection.cs#L65C73-L65C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpressionCollection.cs#L65C73-L65C91" }, { "DocsId": "P:System.CodeDom.CodeParameterDeclarationExpressionCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpressionCollection.cs#L24C20-L24C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpressionCollection.cs#L24C20-L24C67" } ], "DocsId": "T:System.CodeDom.CodeParameterDeclarationExpressionCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpressionCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeParameterDeclarationExpressionCollection.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodePrimitiveExpression.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodePrimitiveExpression.cs#L8C9-L8C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodePrimitiveExpression.cs#L8C9-L8C45" }, { "DocsId": "M:System.CodeDom.CodePrimitiveExpression.#ctor(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodePrimitiveExpression.cs#L10C9-L13C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodePrimitiveExpression.cs#L10C9-L13C10" }, { "DocsId": "P:System.CodeDom.CodePrimitiveExpression.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodePrimitiveExpression.cs#L15C31-L15C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodePrimitiveExpression.cs#L15C31-L15C35" } ], "DocsId": "T:System.CodeDom.CodePrimitiveExpression", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodePrimitiveExpression.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodePrimitiveExpression.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodePropertyReferenceExpression.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodePropertyReferenceExpression.cs#L10C9-L10C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodePropertyReferenceExpression.cs#L10C9-L10C53" }, { "DocsId": "M:System.CodeDom.CodePropertyReferenceExpression.#ctor(System.CodeDom.CodeExpression,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodePropertyReferenceExpression.cs#L12C9-L16C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodePropertyReferenceExpression.cs#L12C9-L16C10" }, { "DocsId": "P:System.CodeDom.CodePropertyReferenceExpression.TargetObject", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodePropertyReferenceExpression.cs#L18C46-L18C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodePropertyReferenceExpression.cs#L18C46-L18C50" }, { "DocsId": "P:System.CodeDom.CodePropertyReferenceExpression.PropertyName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodePropertyReferenceExpression.cs#L22C20-L22C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodePropertyReferenceExpression.cs#L22C20-L22C49" } ], "DocsId": "T:System.CodeDom.CodePropertyReferenceExpression", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodePropertyReferenceExpression.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodePropertyReferenceExpression.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodePropertySetValueReferenceExpression.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodePropertySetValueReferenceExpression.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodePropertySetValueReferenceExpression.cs" } ], "DocsId": "T:System.CodeDom.CodePropertySetValueReferenceExpression", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodePropertySetValueReferenceExpression.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodePropertySetValueReferenceExpression.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeRegionDirective.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeRegionDirective.cs#L10C9-L10C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeRegionDirective.cs#L10C9-L10C41" }, { "DocsId": "M:System.CodeDom.CodeRegionDirective.#ctor(System.CodeDom.CodeRegionMode,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeRegionDirective.cs#L12C9-L16C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeRegionDirective.cs#L12C9-L16C10" }, { "DocsId": "P:System.CodeDom.CodeRegionDirective.RegionText", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeRegionDirective.cs#L20C20-L20C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeRegionDirective.cs#L20C20-L20C47" }, { "DocsId": "P:System.CodeDom.CodeRegionDirective.RegionMode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeRegionDirective.cs#L24C44-L24C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeRegionDirective.cs#L24C44-L24C48" } ], "DocsId": "T:System.CodeDom.CodeRegionDirective", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeRegionDirective.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeRegionDirective.cs" }, { "Members": [ { "DocsId": "F:System.CodeDom.CodeRegionMode.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeRegionMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeRegionMode.cs" }, { "DocsId": "F:System.CodeDom.CodeRegionMode.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeRegionMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeRegionMode.cs" }, { "DocsId": "F:System.CodeDom.CodeRegionMode.Start", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeRegionMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeRegionMode.cs" }, { "DocsId": "F:System.CodeDom.CodeRegionMode.End", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeRegionMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeRegionMode.cs" } ], "DocsId": "T:System.CodeDom.CodeRegionMode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeRegionMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeRegionMode.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeRemoveEventStatement.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeRemoveEventStatement.cs#L10C9-L10C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeRemoveEventStatement.cs#L10C9-L10C46" }, { "DocsId": "M:System.CodeDom.CodeRemoveEventStatement.#ctor(System.CodeDom.CodeEventReferenceExpression,System.CodeDom.CodeExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeRemoveEventStatement.cs#L12C9-L16C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeRemoveEventStatement.cs#L12C9-L16C10" }, { "DocsId": "M:System.CodeDom.CodeRemoveEventStatement.#ctor(System.CodeDom.CodeExpression,System.String,System.CodeDom.CodeExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeRemoveEventStatement.cs#L18C9-L22C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeRemoveEventStatement.cs#L18C9-L22C10" }, { "DocsId": "P:System.CodeDom.CodeRemoveEventStatement.Event", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeRemoveEventStatement.cs#L26C20-L26C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeRemoveEventStatement.cs#L26C20-L26C68" }, { "DocsId": "P:System.CodeDom.CodeRemoveEventStatement.Listener", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeRemoveEventStatement.cs#L30C42-L30C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeRemoveEventStatement.cs#L30C42-L30C46" } ], "DocsId": "T:System.CodeDom.CodeRemoveEventStatement", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeRemoveEventStatement.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeRemoveEventStatement.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeSnippetCompileUnit.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetCompileUnit.cs#L10C9-L10C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetCompileUnit.cs#L10C9-L10C44" }, { "DocsId": "M:System.CodeDom.CodeSnippetCompileUnit.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetCompileUnit.cs#L12C9-L15C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetCompileUnit.cs#L12C9-L15C10" }, { "DocsId": "P:System.CodeDom.CodeSnippetCompileUnit.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetCompileUnit.cs#L19C20-L19C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetCompileUnit.cs#L19C20-L19C42" }, { "DocsId": "P:System.CodeDom.CodeSnippetCompileUnit.LinePragma", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetCompileUnit.cs#L23C44-L23C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetCompileUnit.cs#L23C44-L23C48" } ], "DocsId": "T:System.CodeDom.CodeSnippetCompileUnit", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetCompileUnit.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetCompileUnit.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeSnippetExpression.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetExpression.cs#L10C9-L10C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetExpression.cs#L10C9-L10C43" }, { "DocsId": "M:System.CodeDom.CodeSnippetExpression.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetExpression.cs#L12C9-L15C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetExpression.cs#L12C9-L15C10" }, { "DocsId": "P:System.CodeDom.CodeSnippetExpression.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetExpression.cs#L19C20-L19C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetExpression.cs#L19C20-L19C42" } ], "DocsId": "T:System.CodeDom.CodeSnippetExpression", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetExpression.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetExpression.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeSnippetStatement.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetStatement.cs#L10C9-L10C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetStatement.cs#L10C9-L10C42" }, { "DocsId": "M:System.CodeDom.CodeSnippetStatement.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetStatement.cs#L12C9-L15C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetStatement.cs#L12C9-L15C10" }, { "DocsId": "P:System.CodeDom.CodeSnippetStatement.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetStatement.cs#L19C20-L19C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetStatement.cs#L19C20-L19C42" } ], "DocsId": "T:System.CodeDom.CodeSnippetStatement", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetStatement.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetStatement.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeSnippetTypeMember.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetTypeMember.cs#L10C9-L10C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetTypeMember.cs#L10C9-L10C43" }, { "DocsId": "M:System.CodeDom.CodeSnippetTypeMember.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetTypeMember.cs#L12C9-L15C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetTypeMember.cs#L12C9-L15C10" }, { "DocsId": "P:System.CodeDom.CodeSnippetTypeMember.Text", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetTypeMember.cs#L19C20-L19C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetTypeMember.cs#L19C20-L19C41" } ], "DocsId": "T:System.CodeDom.CodeSnippetTypeMember", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetTypeMember.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeSnippetTypeMember.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeStatement.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatement.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatement.cs" }, { "DocsId": "P:System.CodeDom.CodeStatement.LinePragma", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatement.cs#L11C44-L11C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatement.cs#L11C44-L11C48" }, { "DocsId": "P:System.CodeDom.CodeStatement.StartDirectives", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatement.cs#L13C59-L13C109" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatement.cs#L13C59-L13C109" }, { "DocsId": "P:System.CodeDom.CodeStatement.EndDirectives", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatement.cs#L15C57-L15C105" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatement.cs#L15C57-L15C105" } ], "DocsId": "T:System.CodeDom.CodeStatement", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatement.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatement.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeStatementCollection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatementCollection.cs#L10C9-L10C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatementCollection.cs#L10C9-L10C45" }, { "DocsId": "M:System.CodeDom.CodeStatementCollection.#ctor(System.CodeDom.CodeStatementCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatementCollection.cs#L12C9-L15C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatementCollection.cs#L12C9-L15C10" }, { "DocsId": "M:System.CodeDom.CodeStatementCollection.#ctor(System.CodeDom.CodeStatement[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatementCollection.cs#L17C9-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatementCollection.cs#L17C9-L20C10" }, { "DocsId": "M:System.CodeDom.CodeStatementCollection.Add(System.CodeDom.CodeStatement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatementCollection.cs#L28C48-L28C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatementCollection.cs#L28C48-L28C63" }, { "DocsId": "M:System.CodeDom.CodeStatementCollection.Add(System.CodeDom.CodeExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatementCollection.cs#L30C49-L30C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatementCollection.cs#L30C49-L30C88" }, { "DocsId": "M:System.CodeDom.CodeStatementCollection.AddRange(System.CodeDom.CodeStatement[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatementCollection.cs#L34C13-L43C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatementCollection.cs#L34C13-L43C10" }, { "DocsId": "M:System.CodeDom.CodeStatementCollection.AddRange(System.CodeDom.CodeStatementCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatementCollection.cs#L47C13-L57C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatementCollection.cs#L47C13-L57C10" }, { "DocsId": "M:System.CodeDom.CodeStatementCollection.Contains(System.CodeDom.CodeStatement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatementCollection.cs#L59C54-L59C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatementCollection.cs#L59C54-L59C74" }, { "DocsId": "M:System.CodeDom.CodeStatementCollection.CopyTo(System.CodeDom.CodeStatement[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatementCollection.cs#L61C65-L61C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatementCollection.cs#L61C65-L61C90" }, { "DocsId": "M:System.CodeDom.CodeStatementCollection.IndexOf(System.CodeDom.CodeStatement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatementCollection.cs#L63C52-L63C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatementCollection.cs#L63C52-L63C71" }, { "DocsId": "M:System.CodeDom.CodeStatementCollection.Insert(System.Int32,System.CodeDom.CodeStatement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatementCollection.cs#L65C63-L65C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatementCollection.cs#L65C63-L65C88" }, { "DocsId": "M:System.CodeDom.CodeStatementCollection.Remove(System.CodeDom.CodeStatement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatementCollection.cs#L67C52-L67C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatementCollection.cs#L67C52-L67C70" }, { "DocsId": "P:System.CodeDom.CodeStatementCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatementCollection.cs#L24C20-L24C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatementCollection.cs#L24C20-L24C46" } ], "DocsId": "T:System.CodeDom.CodeStatementCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatementCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeStatementCollection.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeThisReferenceExpression.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeThisReferenceExpression.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeThisReferenceExpression.cs" } ], "DocsId": "T:System.CodeDom.CodeThisReferenceExpression", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeThisReferenceExpression.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeThisReferenceExpression.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeThrowExceptionStatement.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeThrowExceptionStatement.cs#L8C9-L8C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeThrowExceptionStatement.cs#L8C9-L8C49" }, { "DocsId": "M:System.CodeDom.CodeThrowExceptionStatement.#ctor(System.CodeDom.CodeExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeThrowExceptionStatement.cs#L10C9-L13C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeThrowExceptionStatement.cs#L10C9-L13C10" }, { "DocsId": "P:System.CodeDom.CodeThrowExceptionStatement.ToThrow", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeThrowExceptionStatement.cs#L15C41-L15C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeThrowExceptionStatement.cs#L15C41-L15C45" } ], "DocsId": "T:System.CodeDom.CodeThrowExceptionStatement", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeThrowExceptionStatement.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeThrowExceptionStatement.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeTryCatchFinallyStatement.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTryCatchFinallyStatement.cs#L23C65-L8C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTryCatchFinallyStatement.cs#L23C65-L8C50" }, { "DocsId": "M:System.CodeDom.CodeTryCatchFinallyStatement.#ctor(System.CodeDom.CodeStatement[],System.CodeDom.CodeCatchClause[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTryCatchFinallyStatement.cs#L23C65-L14C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTryCatchFinallyStatement.cs#L23C65-L14C10" }, { "DocsId": "M:System.CodeDom.CodeTryCatchFinallyStatement.#ctor(System.CodeDom.CodeStatement[],System.CodeDom.CodeCatchClause[],System.CodeDom.CodeStatement[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTryCatchFinallyStatement.cs#L23C65-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTryCatchFinallyStatement.cs#L23C65-L21C10" }, { "DocsId": "P:System.CodeDom.CodeTryCatchFinallyStatement.TryStatements", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTryCatchFinallyStatement.cs#L23C56-L23C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTryCatchFinallyStatement.cs#L23C56-L23C60" }, { "DocsId": "P:System.CodeDom.CodeTryCatchFinallyStatement.CatchClauses", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTryCatchFinallyStatement.cs#L25C57-L25C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTryCatchFinallyStatement.cs#L25C57-L25C61" }, { "DocsId": "P:System.CodeDom.CodeTryCatchFinallyStatement.FinallyStatements", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTryCatchFinallyStatement.cs#L27C60-L27C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTryCatchFinallyStatement.cs#L27C60-L27C64" } ], "DocsId": "T:System.CodeDom.CodeTryCatchFinallyStatement", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTryCatchFinallyStatement.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTryCatchFinallyStatement.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeTypeConstructor.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeConstructor.cs#L8C9-L11C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeConstructor.cs#L8C9-L11C10" } ], "DocsId": "T:System.CodeDom.CodeTypeConstructor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeConstructor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeConstructor.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeTypeDeclaration.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclaration.cs#L10C9-L22C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclaration.cs#L10C9-L22C41" }, { "DocsId": "M:System.CodeDom.CodeTypeDeclaration.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclaration.cs#L10C9-L27C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclaration.cs#L10C9-L27C10" }, { "DocsId": "E:System.CodeDom.CodeTypeDeclaration.PopulateBaseTypes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclaration.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclaration.cs" }, { "DocsId": "E:System.CodeDom.CodeTypeDeclaration.PopulateMembers", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclaration.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclaration.cs" }, { "DocsId": "P:System.CodeDom.CodeTypeDeclaration.TypeAttributes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclaration.cs#L29C48-L29C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclaration.cs#L29C48-L29C52" }, { "DocsId": "P:System.CodeDom.CodeTypeDeclaration.BaseTypes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclaration.cs#L35C17-L41C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclaration.cs#L35C17-L41C35" }, { "DocsId": "P:System.CodeDom.CodeTypeDeclaration.IsClass", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclaration.cs#L47C20-L47C122" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclaration.cs#L47C20-L47C122" }, { "DocsId": "P:System.CodeDom.CodeTypeDeclaration.IsStruct", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclaration.cs#L62C20-L62C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclaration.cs#L62C20-L62C29" }, { "DocsId": "P:System.CodeDom.CodeTypeDeclaration.IsEnum", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclaration.cs#L77C20-L77C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclaration.cs#L77C20-L77C27" }, { "DocsId": "P:System.CodeDom.CodeTypeDeclaration.IsInterface", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclaration.cs#L92C20-L92C100" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclaration.cs#L92C20-L92C100" }, { "DocsId": "P:System.CodeDom.CodeTypeDeclaration.IsPartial", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclaration.cs#L109C33-L109C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclaration.cs#L109C33-L109C37" }, { "DocsId": "P:System.CodeDom.CodeTypeDeclaration.Members", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclaration.cs#L115C17-L121C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclaration.cs#L115C17-L121C33" }, { "DocsId": "P:System.CodeDom.CodeTypeDeclaration.TypeParameters", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclaration.cs#L125C62-L125C115" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclaration.cs#L125C62-L125C115" } ], "DocsId": "T:System.CodeDom.CodeTypeDeclaration", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclaration.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclaration.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeTypeDeclarationCollection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclarationCollection.cs#L10C9-L10C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclarationCollection.cs#L10C9-L10C51" }, { "DocsId": "M:System.CodeDom.CodeTypeDeclarationCollection.#ctor(System.CodeDom.CodeTypeDeclarationCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclarationCollection.cs#L12C9-L15C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclarationCollection.cs#L12C9-L15C10" }, { "DocsId": "M:System.CodeDom.CodeTypeDeclarationCollection.#ctor(System.CodeDom.CodeTypeDeclaration[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclarationCollection.cs#L17C9-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclarationCollection.cs#L17C9-L20C10" }, { "DocsId": "M:System.CodeDom.CodeTypeDeclarationCollection.Add(System.CodeDom.CodeTypeDeclaration)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclarationCollection.cs#L28C54-L28C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclarationCollection.cs#L28C54-L28C69" }, { "DocsId": "M:System.CodeDom.CodeTypeDeclarationCollection.AddRange(System.CodeDom.CodeTypeDeclaration[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclarationCollection.cs#L32C13-L41C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclarationCollection.cs#L32C13-L41C10" }, { "DocsId": "M:System.CodeDom.CodeTypeDeclarationCollection.AddRange(System.CodeDom.CodeTypeDeclarationCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclarationCollection.cs#L45C13-L55C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclarationCollection.cs#L45C13-L55C10" }, { "DocsId": "M:System.CodeDom.CodeTypeDeclarationCollection.Contains(System.CodeDom.CodeTypeDeclaration)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclarationCollection.cs#L57C60-L57C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclarationCollection.cs#L57C60-L57C80" }, { "DocsId": "M:System.CodeDom.CodeTypeDeclarationCollection.CopyTo(System.CodeDom.CodeTypeDeclaration[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclarationCollection.cs#L59C71-L59C96" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclarationCollection.cs#L59C71-L59C96" }, { "DocsId": "M:System.CodeDom.CodeTypeDeclarationCollection.IndexOf(System.CodeDom.CodeTypeDeclaration)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclarationCollection.cs#L61C58-L61C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclarationCollection.cs#L61C58-L61C77" }, { "DocsId": "M:System.CodeDom.CodeTypeDeclarationCollection.Insert(System.Int32,System.CodeDom.CodeTypeDeclaration)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclarationCollection.cs#L63C69-L63C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclarationCollection.cs#L63C69-L63C94" }, { "DocsId": "M:System.CodeDom.CodeTypeDeclarationCollection.Remove(System.CodeDom.CodeTypeDeclaration)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclarationCollection.cs#L65C58-L65C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclarationCollection.cs#L65C58-L65C76" }, { "DocsId": "P:System.CodeDom.CodeTypeDeclarationCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclarationCollection.cs#L24C20-L24C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclarationCollection.cs#L24C20-L24C52" } ], "DocsId": "T:System.CodeDom.CodeTypeDeclarationCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclarationCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDeclarationCollection.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeTypeDelegate.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDelegate.cs#L31C83-L18C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDelegate.cs#L31C83-L18C10" }, { "DocsId": "M:System.CodeDom.CodeTypeDelegate.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDelegate.cs#L20C48-L23C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDelegate.cs#L20C48-L23C10" }, { "DocsId": "P:System.CodeDom.CodeTypeDelegate.ReturnType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDelegate.cs#L27C20-L27C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDelegate.cs#L27C20-L27C61" }, { "DocsId": "P:System.CodeDom.CodeTypeDelegate.Parameters", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDelegate.cs#L31C74-L31C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDelegate.cs#L31C74-L31C78" } ], "DocsId": "T:System.CodeDom.CodeTypeDelegate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDelegate.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeDelegate.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeTypeMember.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMember.cs#L19C60-L29C103" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMember.cs#L19C60-L29C103" }, { "DocsId": "P:System.CodeDom.CodeTypeMember.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMember.cs#L15C20-L15C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMember.cs#L15C20-L15C41" }, { "DocsId": "P:System.CodeDom.CodeTypeMember.Attributes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMember.cs#L19C46-L19C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMember.cs#L19C46-L19C50" }, { "DocsId": "P:System.CodeDom.CodeTypeMember.CustomAttributes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMember.cs#L23C20-L23C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMember.cs#L23C20-L23C82" }, { "DocsId": "P:System.CodeDom.CodeTypeMember.LinePragma", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMember.cs#L27C44-L27C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMember.cs#L27C44-L27C48" }, { "DocsId": "P:System.CodeDom.CodeTypeMember.Comments", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMember.cs#L29C58-L29C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMember.cs#L29C58-L29C62" }, { "DocsId": "P:System.CodeDom.CodeTypeMember.StartDirectives", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMember.cs#L31C59-L31C109" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMember.cs#L31C59-L31C109" }, { "DocsId": "P:System.CodeDom.CodeTypeMember.EndDirectives", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMember.cs#L33C57-L33C105" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMember.cs#L33C57-L33C105" } ], "DocsId": "T:System.CodeDom.CodeTypeMember", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMember.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMember.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeTypeMemberCollection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMemberCollection.cs#L10C9-L10C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMemberCollection.cs#L10C9-L10C46" }, { "DocsId": "M:System.CodeDom.CodeTypeMemberCollection.#ctor(System.CodeDom.CodeTypeMemberCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMemberCollection.cs#L12C9-L15C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMemberCollection.cs#L12C9-L15C10" }, { "DocsId": "M:System.CodeDom.CodeTypeMemberCollection.#ctor(System.CodeDom.CodeTypeMember[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMemberCollection.cs#L17C9-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMemberCollection.cs#L17C9-L20C10" }, { "DocsId": "M:System.CodeDom.CodeTypeMemberCollection.Add(System.CodeDom.CodeTypeMember)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMemberCollection.cs#L28C49-L28C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMemberCollection.cs#L28C49-L28C64" }, { "DocsId": "M:System.CodeDom.CodeTypeMemberCollection.AddRange(System.CodeDom.CodeTypeMember[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMemberCollection.cs#L32C13-L41C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMemberCollection.cs#L32C13-L41C10" }, { "DocsId": "M:System.CodeDom.CodeTypeMemberCollection.AddRange(System.CodeDom.CodeTypeMemberCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMemberCollection.cs#L45C13-L55C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMemberCollection.cs#L45C13-L55C10" }, { "DocsId": "M:System.CodeDom.CodeTypeMemberCollection.Contains(System.CodeDom.CodeTypeMember)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMemberCollection.cs#L57C55-L57C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMemberCollection.cs#L57C55-L57C75" }, { "DocsId": "M:System.CodeDom.CodeTypeMemberCollection.CopyTo(System.CodeDom.CodeTypeMember[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMemberCollection.cs#L59C66-L59C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMemberCollection.cs#L59C66-L59C91" }, { "DocsId": "M:System.CodeDom.CodeTypeMemberCollection.IndexOf(System.CodeDom.CodeTypeMember)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMemberCollection.cs#L61C53-L61C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMemberCollection.cs#L61C53-L61C72" }, { "DocsId": "M:System.CodeDom.CodeTypeMemberCollection.Insert(System.Int32,System.CodeDom.CodeTypeMember)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMemberCollection.cs#L63C64-L63C89" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMemberCollection.cs#L63C64-L63C89" }, { "DocsId": "M:System.CodeDom.CodeTypeMemberCollection.Remove(System.CodeDom.CodeTypeMember)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMemberCollection.cs#L65C53-L65C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMemberCollection.cs#L65C53-L65C71" }, { "DocsId": "P:System.CodeDom.CodeTypeMemberCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMemberCollection.cs#L24C20-L24C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMemberCollection.cs#L24C20-L24C47" } ], "DocsId": "T:System.CodeDom.CodeTypeMemberCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMemberCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeMemberCollection.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeTypeOfExpression.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeOfExpression.cs#L10C9-L10C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeOfExpression.cs#L10C9-L10C42" }, { "DocsId": "M:System.CodeDom.CodeTypeOfExpression.#ctor(System.CodeDom.CodeTypeReference)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeOfExpression.cs#L12C9-L15C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeOfExpression.cs#L12C9-L15C10" }, { "DocsId": "M:System.CodeDom.CodeTypeOfExpression.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeOfExpression.cs#L17C9-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeOfExpression.cs#L17C9-L20C10" }, { "DocsId": "M:System.CodeDom.CodeTypeOfExpression.#ctor(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeOfExpression.cs#L22C9-L25C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeOfExpression.cs#L22C9-L25C10" }, { "DocsId": "P:System.CodeDom.CodeTypeOfExpression.Type", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeOfExpression.cs#L29C20-L29C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeOfExpression.cs#L29C20-L29C55" } ], "DocsId": "T:System.CodeDom.CodeTypeOfExpression", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeOfExpression.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeOfExpression.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeTypeParameter.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameter.cs#L12C9-L12C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameter.cs#L12C9-L12C39" }, { "DocsId": "M:System.CodeDom.CodeTypeParameter.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameter.cs#L14C9-L17C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameter.cs#L14C9-L17C10" }, { "DocsId": "P:System.CodeDom.CodeTypeParameter.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameter.cs#L21C20-L21C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameter.cs#L21C20-L21C41" }, { "DocsId": "P:System.CodeDom.CodeTypeParameter.Constraints", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameter.cs#L25C59-L25C109" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameter.cs#L25C59-L25C109" }, { "DocsId": "P:System.CodeDom.CodeTypeParameter.CustomAttributes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameter.cs#L27C71-L27C133" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameter.cs#L27C71-L27C133" }, { "DocsId": "P:System.CodeDom.CodeTypeParameter.HasConstructorConstraint", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameter.cs#L29C48-L29C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameter.cs#L29C48-L29C52" } ], "DocsId": "T:System.CodeDom.CodeTypeParameter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameter.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeTypeParameterCollection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameterCollection.cs#L10C9-L10C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameterCollection.cs#L10C9-L10C49" }, { "DocsId": "M:System.CodeDom.CodeTypeParameterCollection.#ctor(System.CodeDom.CodeTypeParameterCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameterCollection.cs#L12C9-L15C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameterCollection.cs#L12C9-L15C10" }, { "DocsId": "M:System.CodeDom.CodeTypeParameterCollection.#ctor(System.CodeDom.CodeTypeParameter[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameterCollection.cs#L17C9-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameterCollection.cs#L17C9-L20C10" }, { "DocsId": "M:System.CodeDom.CodeTypeParameterCollection.Add(System.CodeDom.CodeTypeParameter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameterCollection.cs#L28C52-L28C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameterCollection.cs#L28C52-L28C67" }, { "DocsId": "M:System.CodeDom.CodeTypeParameterCollection.Add(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameterCollection.cs#L30C42-L30C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameterCollection.cs#L30C42-L30C75" }, { "DocsId": "M:System.CodeDom.CodeTypeParameterCollection.AddRange(System.CodeDom.CodeTypeParameter[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameterCollection.cs#L34C13-L43C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameterCollection.cs#L34C13-L43C10" }, { "DocsId": "M:System.CodeDom.CodeTypeParameterCollection.AddRange(System.CodeDom.CodeTypeParameterCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameterCollection.cs#L47C13-L57C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameterCollection.cs#L47C13-L57C10" }, { "DocsId": "M:System.CodeDom.CodeTypeParameterCollection.Contains(System.CodeDom.CodeTypeParameter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameterCollection.cs#L59C58-L59C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameterCollection.cs#L59C58-L59C78" }, { "DocsId": "M:System.CodeDom.CodeTypeParameterCollection.CopyTo(System.CodeDom.CodeTypeParameter[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameterCollection.cs#L61C69-L61C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameterCollection.cs#L61C69-L61C94" }, { "DocsId": "M:System.CodeDom.CodeTypeParameterCollection.IndexOf(System.CodeDom.CodeTypeParameter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameterCollection.cs#L63C56-L63C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameterCollection.cs#L63C56-L63C75" }, { "DocsId": "M:System.CodeDom.CodeTypeParameterCollection.Insert(System.Int32,System.CodeDom.CodeTypeParameter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameterCollection.cs#L65C67-L65C92" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameterCollection.cs#L65C67-L65C92" }, { "DocsId": "M:System.CodeDom.CodeTypeParameterCollection.Remove(System.CodeDom.CodeTypeParameter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameterCollection.cs#L67C56-L67C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameterCollection.cs#L67C56-L67C74" }, { "DocsId": "P:System.CodeDom.CodeTypeParameterCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameterCollection.cs#L24C20-L24C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameterCollection.cs#L24C20-L24C50" } ], "DocsId": "T:System.CodeDom.CodeTypeParameterCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameterCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeParameterCollection.cs" }, { "Members": [ { "DocsId": "F:System.CodeDom.CodeTypeReferenceOptions.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs" }, { "DocsId": "F:System.CodeDom.CodeTypeReferenceOptions.GlobalReference", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs" }, { "DocsId": "F:System.CodeDom.CodeTypeReferenceOptions.GenericTypeParameter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs" } ], "DocsId": "T:System.CodeDom.CodeTypeReferenceOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeTypeReference.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs#L36C9-L41C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs#L36C9-L41C10" }, { "DocsId": "M:System.CodeDom.CodeTypeReference.#ctor(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs#L43C9-L68C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs#L43C9-L68C10" }, { "DocsId": "M:System.CodeDom.CodeTypeReference.#ctor(System.Type,System.CodeDom.CodeTypeReferenceOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs#L70C97-L73C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs#L70C97-L73C10" }, { "DocsId": "M:System.CodeDom.CodeTypeReference.#ctor(System.String,System.CodeDom.CodeTypeReferenceOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs#L75C9-L78C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs#L75C9-L78C10" }, { "DocsId": "M:System.CodeDom.CodeTypeReference.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs#L80C9-L83C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs#L80C9-L83C10" }, { "DocsId": "M:System.CodeDom.CodeTypeReference.#ctor(System.String,System.CodeDom.CodeTypeReference[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs#L284C95-L290C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs#L284C95-L290C10" }, { "DocsId": "M:System.CodeDom.CodeTypeReference.#ctor(System.CodeDom.CodeTypeParameter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs#L294C13-L297C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs#L294C13-L297C10" }, { "DocsId": "M:System.CodeDom.CodeTypeReference.#ctor(System.String,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs#L300C9-L305C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs#L300C9-L305C10" }, { "DocsId": "M:System.CodeDom.CodeTypeReference.#ctor(System.CodeDom.CodeTypeReference,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs#L307C9-L312C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs#L307C9-L312C10" }, { "DocsId": "P:System.CodeDom.CodeTypeReference.ArrayElementType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs#L314C54-L314C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs#L314C54-L314C58" }, { "DocsId": "P:System.CodeDom.CodeTypeReference.ArrayRank", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs#L316C32-L316C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs#L316C32-L316C36" }, { "DocsId": "P:System.CodeDom.CodeTypeReference.BaseType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs#L324C17-L337C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs#L324C17-L337C32" }, { "DocsId": "P:System.CodeDom.CodeTypeReference.Options", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs#L346C51-L346C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs#L346C51-L346C55" }, { "DocsId": "P:System.CodeDom.CodeTypeReference.TypeArguments", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs#L352C17-L357C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs#L352C17-L357C77" } ], "DocsId": "T:System.CodeDom.CodeTypeReference", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/CodeDom/CodeTypeReference.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeTypeReferenceCollection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/CodeDom/CodeTypeReferenceCollection.cs#L18C9-L18C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/CodeDom/CodeTypeReferenceCollection.cs#L18C9-L18C49" }, { "DocsId": "M:System.CodeDom.CodeTypeReferenceCollection.#ctor(System.CodeDom.CodeTypeReferenceCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/CodeDom/CodeTypeReferenceCollection.cs#L20C9-L23C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/CodeDom/CodeTypeReferenceCollection.cs#L20C9-L23C10" }, { "DocsId": "M:System.CodeDom.CodeTypeReferenceCollection.#ctor(System.CodeDom.CodeTypeReference[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/CodeDom/CodeTypeReferenceCollection.cs#L25C9-L28C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/CodeDom/CodeTypeReferenceCollection.cs#L25C9-L28C10" }, { "DocsId": "M:System.CodeDom.CodeTypeReferenceCollection.Add(System.CodeDom.CodeTypeReference)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/CodeDom/CodeTypeReferenceCollection.cs#L36C52-L36C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/CodeDom/CodeTypeReferenceCollection.cs#L36C52-L36C67" }, { "DocsId": "M:System.CodeDom.CodeTypeReferenceCollection.Add(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/CodeDom/CodeTypeReferenceCollection.cs#L38C42-L38C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/CodeDom/CodeTypeReferenceCollection.cs#L38C42-L38C75" }, { "DocsId": "M:System.CodeDom.CodeTypeReferenceCollection.Add(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/CodeDom/CodeTypeReferenceCollection.cs#L40C40-L40C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/CodeDom/CodeTypeReferenceCollection.cs#L40C40-L40C73" }, { "DocsId": "M:System.CodeDom.CodeTypeReferenceCollection.AddRange(System.CodeDom.CodeTypeReference[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/CodeDom/CodeTypeReferenceCollection.cs#L45C13-L57C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/CodeDom/CodeTypeReferenceCollection.cs#L45C13-L57C10" }, { "DocsId": "M:System.CodeDom.CodeTypeReferenceCollection.AddRange(System.CodeDom.CodeTypeReferenceCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/CodeDom/CodeTypeReferenceCollection.cs#L62C13-L75C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/CodeDom/CodeTypeReferenceCollection.cs#L62C13-L75C10" }, { "DocsId": "M:System.CodeDom.CodeTypeReferenceCollection.Contains(System.CodeDom.CodeTypeReference)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/CodeDom/CodeTypeReferenceCollection.cs#L77C58-L77C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/CodeDom/CodeTypeReferenceCollection.cs#L77C58-L77C78" }, { "DocsId": "M:System.CodeDom.CodeTypeReferenceCollection.CopyTo(System.CodeDom.CodeTypeReference[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/CodeDom/CodeTypeReferenceCollection.cs#L79C69-L79C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/CodeDom/CodeTypeReferenceCollection.cs#L79C69-L79C94" }, { "DocsId": "M:System.CodeDom.CodeTypeReferenceCollection.IndexOf(System.CodeDom.CodeTypeReference)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/CodeDom/CodeTypeReferenceCollection.cs#L81C56-L81C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/CodeDom/CodeTypeReferenceCollection.cs#L81C56-L81C75" }, { "DocsId": "M:System.CodeDom.CodeTypeReferenceCollection.Insert(System.Int32,System.CodeDom.CodeTypeReference)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/CodeDom/CodeTypeReferenceCollection.cs#L83C67-L83C92" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/CodeDom/CodeTypeReferenceCollection.cs#L83C67-L83C92" }, { "DocsId": "M:System.CodeDom.CodeTypeReferenceCollection.Remove(System.CodeDom.CodeTypeReference)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/CodeDom/CodeTypeReferenceCollection.cs#L85C56-L85C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/CodeDom/CodeTypeReferenceCollection.cs#L85C56-L85C74" }, { "DocsId": "P:System.CodeDom.CodeTypeReferenceCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/CodeDom/CodeTypeReferenceCollection.cs#L32C19-L32C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/CodeDom/CodeTypeReferenceCollection.cs#L32C19-L32C62" } ], "DocsId": "T:System.CodeDom.CodeTypeReferenceCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/CodeDom/CodeTypeReferenceCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/CodeDom/CodeTypeReferenceCollection.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeTypeReferenceExpression.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeReferenceExpression.cs#L10C9-L10C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeReferenceExpression.cs#L10C9-L10C49" }, { "DocsId": "M:System.CodeDom.CodeTypeReferenceExpression.#ctor(System.CodeDom.CodeTypeReference)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeReferenceExpression.cs#L12C9-L15C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeReferenceExpression.cs#L12C9-L15C10" }, { "DocsId": "M:System.CodeDom.CodeTypeReferenceExpression.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeReferenceExpression.cs#L17C9-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeReferenceExpression.cs#L17C9-L20C10" }, { "DocsId": "M:System.CodeDom.CodeTypeReferenceExpression.#ctor(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeReferenceExpression.cs#L22C9-L25C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeReferenceExpression.cs#L22C9-L25C10" }, { "DocsId": "P:System.CodeDom.CodeTypeReferenceExpression.Type", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeReferenceExpression.cs#L29C20-L29C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeReferenceExpression.cs#L29C20-L29C55" } ], "DocsId": "T:System.CodeDom.CodeTypeReferenceExpression", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeReferenceExpression.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeTypeReferenceExpression.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeVariableDeclarationStatement.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeVariableDeclarationStatement.cs#L11C9-L11C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeVariableDeclarationStatement.cs#L11C9-L11C54" }, { "DocsId": "M:System.CodeDom.CodeVariableDeclarationStatement.#ctor(System.CodeDom.CodeTypeReference,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeVariableDeclarationStatement.cs#L13C9-L17C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeVariableDeclarationStatement.cs#L13C9-L17C10" }, { "DocsId": "M:System.CodeDom.CodeVariableDeclarationStatement.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeVariableDeclarationStatement.cs#L19C9-L23C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeVariableDeclarationStatement.cs#L19C9-L23C10" }, { "DocsId": "M:System.CodeDom.CodeVariableDeclarationStatement.#ctor(System.Type,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeVariableDeclarationStatement.cs#L25C9-L29C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeVariableDeclarationStatement.cs#L25C9-L29C10" }, { "DocsId": "M:System.CodeDom.CodeVariableDeclarationStatement.#ctor(System.CodeDom.CodeTypeReference,System.String,System.CodeDom.CodeExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeVariableDeclarationStatement.cs#L31C9-L36C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeVariableDeclarationStatement.cs#L31C9-L36C10" }, { "DocsId": "M:System.CodeDom.CodeVariableDeclarationStatement.#ctor(System.String,System.String,System.CodeDom.CodeExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeVariableDeclarationStatement.cs#L38C9-L43C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeVariableDeclarationStatement.cs#L38C9-L43C10" }, { "DocsId": "M:System.CodeDom.CodeVariableDeclarationStatement.#ctor(System.Type,System.String,System.CodeDom.CodeExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeVariableDeclarationStatement.cs#L45C9-L50C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeVariableDeclarationStatement.cs#L45C9-L50C10" }, { "DocsId": "P:System.CodeDom.CodeVariableDeclarationStatement.InitExpression", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeVariableDeclarationStatement.cs#L52C48-L52C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeVariableDeclarationStatement.cs#L52C48-L52C52" }, { "DocsId": "P:System.CodeDom.CodeVariableDeclarationStatement.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeVariableDeclarationStatement.cs#L56C20-L56C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeVariableDeclarationStatement.cs#L56C20-L56C41" }, { "DocsId": "P:System.CodeDom.CodeVariableDeclarationStatement.Type", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeVariableDeclarationStatement.cs#L62C20-L62C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeVariableDeclarationStatement.cs#L62C20-L62C55" } ], "DocsId": "T:System.CodeDom.CodeVariableDeclarationStatement", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeVariableDeclarationStatement.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeVariableDeclarationStatement.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.CodeVariableReferenceExpression.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeVariableReferenceExpression.cs#L10C9-L10C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeVariableReferenceExpression.cs#L10C9-L10C53" }, { "DocsId": "M:System.CodeDom.CodeVariableReferenceExpression.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeVariableReferenceExpression.cs#L12C9-L15C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeVariableReferenceExpression.cs#L12C9-L15C10" }, { "DocsId": "P:System.CodeDom.CodeVariableReferenceExpression.VariableName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeVariableReferenceExpression.cs#L19C20-L19C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeVariableReferenceExpression.cs#L19C20-L19C49" } ], "DocsId": "T:System.CodeDom.CodeVariableReferenceExpression", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/CodeVariableReferenceExpression.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/CodeVariableReferenceExpression.cs" }, { "Members": [ { "DocsId": "F:System.CodeDom.FieldDirection.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/FieldDirection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/FieldDirection.cs" }, { "DocsId": "F:System.CodeDom.FieldDirection.In", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/FieldDirection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/FieldDirection.cs" }, { "DocsId": "F:System.CodeDom.FieldDirection.Out", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/FieldDirection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/FieldDirection.cs" }, { "DocsId": "F:System.CodeDom.FieldDirection.Ref", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/FieldDirection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/FieldDirection.cs" } ], "DocsId": "T:System.CodeDom.FieldDirection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/FieldDirection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/FieldDirection.cs" }, { "Members": [ { "DocsId": "F:System.CodeDom.MemberAttributes.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" }, { "DocsId": "F:System.CodeDom.MemberAttributes.Abstract", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" }, { "DocsId": "F:System.CodeDom.MemberAttributes.Final", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" }, { "DocsId": "F:System.CodeDom.MemberAttributes.Static", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" }, { "DocsId": "F:System.CodeDom.MemberAttributes.Override", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" }, { "DocsId": "F:System.CodeDom.MemberAttributes.Const", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" }, { "DocsId": "F:System.CodeDom.MemberAttributes.New", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" }, { "DocsId": "F:System.CodeDom.MemberAttributes.Overloaded", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" }, { "DocsId": "F:System.CodeDom.MemberAttributes.Assembly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" }, { "DocsId": "F:System.CodeDom.MemberAttributes.FamilyAndAssembly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" }, { "DocsId": "F:System.CodeDom.MemberAttributes.Family", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" }, { "DocsId": "F:System.CodeDom.MemberAttributes.FamilyOrAssembly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" }, { "DocsId": "F:System.CodeDom.MemberAttributes.Private", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" }, { "DocsId": "F:System.CodeDom.MemberAttributes.Public", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" }, { "DocsId": "F:System.CodeDom.MemberAttributes.AccessMask", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" }, { "DocsId": "F:System.CodeDom.MemberAttributes.ScopeMask", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" }, { "DocsId": "F:System.CodeDom.MemberAttributes.VTableMask", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" } ], "DocsId": "T:System.CodeDom.MemberAttributes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/MemberAttributes.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.Compiler.CodeCompiler.System#CodeDom#Compiler#ICodeCompiler#CompileAssemblyFromDom(System.CodeDom.Compiler.CompilerParameters,System.CodeDom.CodeCompileUnit)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs#L13C13-L26C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs#L13C13-L26C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeCompiler.System#CodeDom#Compiler#ICodeCompiler#CompileAssemblyFromFile(System.CodeDom.Compiler.CompilerParameters,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs#L30C13-L43C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs#L30C13-L43C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeCompiler.System#CodeDom#Compiler#ICodeCompiler#CompileAssemblyFromSource(System.CodeDom.Compiler.CompilerParameters,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs#L47C13-L60C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs#L47C13-L60C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeCompiler.System#CodeDom#Compiler#ICodeCompiler#CompileAssemblyFromSourceBatch(System.CodeDom.Compiler.CompilerParameters,System.String[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs#L64C13-L77C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs#L64C13-L77C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeCompiler.System#CodeDom#Compiler#ICodeCompiler#CompileAssemblyFromFileBatch(System.CodeDom.Compiler.CompilerParameters,System.String[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs#L81C13-L104C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs#L81C13-L104C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeCompiler.System#CodeDom#Compiler#ICodeCompiler#CompileAssemblyFromDomBatch(System.CodeDom.Compiler.CompilerParameters,System.CodeDom.CodeCompileUnit[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs#L108C13-L121C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs#L108C13-L121C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeCompiler.FromDom(System.CodeDom.Compiler.CompilerParameters,System.CodeDom.CodeCompileUnit)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs#L129C13-L134C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs#L129C13-L134C72" }, { "DocsId": "M:System.CodeDom.Compiler.CodeCompiler.FromFile(System.CodeDom.Compiler.CompilerParameters,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs#L139C13-L151C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs#L139C13-L151C71" }, { "DocsId": "M:System.CodeDom.Compiler.CodeCompiler.FromSource(System.CodeDom.Compiler.CompilerParameters,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs#L156C13-L161C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs#L156C13-L161C71" }, { "DocsId": "M:System.CodeDom.Compiler.CodeCompiler.FromDomBatch(System.CodeDom.Compiler.CompilerParameters,System.CodeDom.CodeCompileUnit[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs#L166C13-L194C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs#L166C13-L194C54" }, { "DocsId": "M:System.CodeDom.Compiler.CodeCompiler.FromFileBatch(System.CodeDom.Compiler.CompilerParameters,System.String[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs#L213C13-L222C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs#L213C13-L222C55" }, { "DocsId": "M:System.CodeDom.Compiler.CodeCompiler.ProcessCompilerOutputLine(System.CodeDom.Compiler.CompilerResults,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeCompiler.CmdArgsFromParameters(System.CodeDom.Compiler.CompilerParameters)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeCompiler.GetResponseFileCmdArgs(System.CodeDom.Compiler.CompilerParameters,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs#L231C13-L240C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs#L231C13-L240C52" }, { "DocsId": "M:System.CodeDom.Compiler.CodeCompiler.FromSourceBatch(System.CodeDom.Compiler.CompilerParameters,System.String[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs#L245C13-L267C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs#L245C13-L267C54" }, { "DocsId": "M:System.CodeDom.Compiler.CodeCompiler.JoinStringArray(System.String[],System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs#L272C13-L294C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs#L272C13-L294C34" }, { "DocsId": "M:System.CodeDom.Compiler.CodeCompiler.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs" }, { "DocsId": "P:System.CodeDom.Compiler.CodeCompiler.FileExtension", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs" }, { "DocsId": "P:System.CodeDom.Compiler.CodeCompiler.CompilerName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs" } ], "DocsId": "T:System.CodeDom.Compiler.CodeCompiler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeCompiler.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.Compiler.CodeDomProvider.CreateProvider(System.String,System.Collections.Generic.IDictionary{System.String,System.String})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L55C13-L56C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L55C13-L56C65" }, { "DocsId": "M:System.CodeDom.Compiler.CodeDomProvider.CreateProvider(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L61C13-L62C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L61C13-L62C50" }, { "DocsId": "M:System.CodeDom.Compiler.CodeDomProvider.GetLanguageFromExtension(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L67C13-L72C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L67C13-L72C55" }, { "DocsId": "M:System.CodeDom.Compiler.CodeDomProvider.IsDefinedLanguage(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L75C66-L75C117" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L75C66-L75C117" }, { "DocsId": "M:System.CodeDom.Compiler.CodeDomProvider.IsDefinedExtension(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L77C68-L77C121" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L77C68-L77C121" }, { "DocsId": "M:System.CodeDom.Compiler.CodeDomProvider.GetCompilerInfo(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L81C13-L86C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L81C13-L86C33" }, { "DocsId": "M:System.CodeDom.Compiler.CodeDomProvider.GetAllCompilerInfo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L113C62-L113C89" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L113C62-L113C89" }, { "DocsId": "M:System.CodeDom.Compiler.CodeDomProvider.CreateGenerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeDomProvider.CreateGenerator(System.IO.TextWriter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L123C77-L123C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L123C77-L123C94" }, { "DocsId": "M:System.CodeDom.Compiler.CodeDomProvider.CreateGenerator(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L125C75-L125C92" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L125C75-L125C92" }, { "DocsId": "M:System.CodeDom.Compiler.CodeDomProvider.CreateCompiler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeDomProvider.CreateParser", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L132C54-L132C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L132C54-L132C58" }, { "DocsId": "M:System.CodeDom.Compiler.CodeDomProvider.GetConverter(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L134C65-L134C98" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L134C65-L134C98" }, { "DocsId": "M:System.CodeDom.Compiler.CodeDomProvider.CompileAssemblyFromDom(System.CodeDom.Compiler.CompilerParameters,System.CodeDom.CodeCompileUnit[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L137C13-L137C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L137C13-L137C90" }, { "DocsId": "M:System.CodeDom.Compiler.CodeDomProvider.CompileAssemblyFromFile(System.CodeDom.Compiler.CompilerParameters,System.String[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L140C13-L140C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L140C13-L140C84" }, { "DocsId": "M:System.CodeDom.Compiler.CodeDomProvider.CompileAssemblyFromSource(System.CodeDom.Compiler.CompilerParameters,System.String[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L143C13-L143C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L143C13-L143C84" }, { "DocsId": "M:System.CodeDom.Compiler.CodeDomProvider.IsValidIdentifier(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L146C13-L146C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L146C13-L146C61" }, { "DocsId": "M:System.CodeDom.Compiler.CodeDomProvider.CreateEscapedIdentifier(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L149C13-L149C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L149C13-L149C67" }, { "DocsId": "M:System.CodeDom.Compiler.CodeDomProvider.CreateValidIdentifier(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L152C13-L152C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L152C13-L152C65" }, { "DocsId": "M:System.CodeDom.Compiler.CodeDomProvider.GetTypeOutput(System.CodeDom.CodeTypeReference)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L155C13-L155C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L155C13-L155C56" }, { "DocsId": "M:System.CodeDom.Compiler.CodeDomProvider.Supports(System.CodeDom.Compiler.GeneratorSupport)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L158C13-L158C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L158C13-L158C63" }, { "DocsId": "M:System.CodeDom.Compiler.CodeDomProvider.GenerateCodeFromExpression(System.CodeDom.CodeExpression,System.IO.TextWriter,System.CodeDom.Compiler.CodeGeneratorOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L161C13-L161C92" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L161C13-L161C92" }, { "DocsId": "M:System.CodeDom.Compiler.CodeDomProvider.GenerateCodeFromStatement(System.CodeDom.CodeStatement,System.IO.TextWriter,System.CodeDom.Compiler.CodeGeneratorOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L164C13-L164C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L164C13-L164C90" }, { "DocsId": "M:System.CodeDom.Compiler.CodeDomProvider.GenerateCodeFromNamespace(System.CodeDom.CodeNamespace,System.IO.TextWriter,System.CodeDom.Compiler.CodeGeneratorOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L167C13-L167C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L167C13-L167C94" }, { "DocsId": "M:System.CodeDom.Compiler.CodeDomProvider.GenerateCodeFromCompileUnit(System.CodeDom.CodeCompileUnit,System.IO.TextWriter,System.CodeDom.Compiler.CodeGeneratorOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L170C13-L170C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L170C13-L170C94" }, { "DocsId": "M:System.CodeDom.Compiler.CodeDomProvider.GenerateCodeFromType(System.CodeDom.CodeTypeDeclaration,System.IO.TextWriter,System.CodeDom.Compiler.CodeGeneratorOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L173C13-L173C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L173C13-L173C84" }, { "DocsId": "M:System.CodeDom.Compiler.CodeDomProvider.GenerateCodeFromMember(System.CodeDom.CodeTypeMember,System.IO.TextWriter,System.CodeDom.Compiler.CodeGeneratorOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L177C13-L177C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L177C13-L177C75" }, { "DocsId": "M:System.CodeDom.Compiler.CodeDomProvider.Parse(System.IO.TextReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L181C13-L181C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L181C13-L181C51" }, { "DocsId": "M:System.CodeDom.Compiler.CodeDomProvider.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs" }, { "DocsId": "P:System.CodeDom.Compiler.CodeDomProvider.FileExtension", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L115C48-L115C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L115C48-L115C60" }, { "DocsId": "P:System.CodeDom.Compiler.CodeDomProvider.LanguageOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L117C59-L117C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs#L117C59-L117C79" } ], "DocsId": "T:System.CodeDom.Compiler.CodeDomProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeDomProvider.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateDirectives(System.CodeDom.CodeDirectiveCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L105C9-L105C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L105C9-L105C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateNamespaces(System.CodeDom.CodeCompileUnit)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L229C41-L233C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L229C41-L233C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateTypes(System.CodeDom.CodeNamespace)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L237C13-L250C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L237C13-L250C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.System#CodeDom#Compiler#ICodeGenerator#Supports(System.CodeDom.Compiler.GeneratorSupport)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L252C67-L252C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L252C67-L252C84" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.System#CodeDom#Compiler#ICodeGenerator#GenerateCodeFromType(System.CodeDom.CodeTypeDeclaration,System.IO.TextWriter,System.CodeDom.Compiler.CodeGeneratorOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L256C13-L280C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L256C13-L280C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.System#CodeDom#Compiler#ICodeGenerator#GenerateCodeFromExpression(System.CodeDom.CodeExpression,System.IO.TextWriter,System.CodeDom.Compiler.CodeGeneratorOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L284C13-L308C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L284C13-L308C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.System#CodeDom#Compiler#ICodeGenerator#GenerateCodeFromCompileUnit(System.CodeDom.CodeCompileUnit,System.IO.TextWriter,System.CodeDom.Compiler.CodeGeneratorOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L312C13-L343C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L312C13-L343C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.System#CodeDom#Compiler#ICodeGenerator#GenerateCodeFromNamespace(System.CodeDom.CodeNamespace,System.IO.TextWriter,System.CodeDom.Compiler.CodeGeneratorOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L347C13-L371C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L347C13-L371C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.System#CodeDom#Compiler#ICodeGenerator#GenerateCodeFromStatement(System.CodeDom.CodeStatement,System.IO.TextWriter,System.CodeDom.Compiler.CodeGeneratorOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L375C13-L399C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L375C13-L399C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateCodeFromMember(System.CodeDom.CodeTypeMember,System.IO.TextWriter,System.CodeDom.Compiler.CodeGeneratorOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L403C13-L427C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L403C13-L427C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.System#CodeDom#Compiler#ICodeGenerator#IsValidIdentifier(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L429C64-L429C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L429C64-L429C88" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.System#CodeDom#Compiler#ICodeGenerator#ValidateIdentifier(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L431C65-L431C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L431C65-L431C90" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.System#CodeDom#Compiler#ICodeGenerator#CreateEscapedIdentifier(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L433C72-L433C102" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L433C72-L433C102" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.System#CodeDom#Compiler#ICodeGenerator#CreateValidIdentifier(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L435C70-L435C98" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L435C70-L435C98" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.System#CodeDom#Compiler#ICodeGenerator#GetTypeOutput(System.CodeDom.CodeTypeReference)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L437C72-L437C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L437C72-L437C91" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateExpression(System.CodeDom.CodeExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L511C13-L619C116" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L511C13-L619C116" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateSnippetCompileUnit(System.CodeDom.CodeSnippetCompileUnit)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L716C13-L737C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L716C13-L737C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateCompileUnit(System.CodeDom.CodeCompileUnit)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L799C13-L802C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L799C13-L802C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateNamespace(System.CodeDom.CodeNamespace)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L806C13-L819C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L806C13-L819C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateNamespaceImports(System.CodeDom.CodeNamespace)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L823C13-L841C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L823C13-L841C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateStatement(System.CodeDom.CodeStatement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L880C13-L973C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L880C13-L973C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateStatements(System.CodeDom.CodeStatementCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L977C13-L986C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L977C13-L986C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.OutputAttributeDeclarations(System.CodeDom.CodeAttributeDeclarationCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L990C13-L1034C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L990C13-L1034C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.OutputAttributeArgument(System.CodeDom.CodeAttributeArgument)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1038C13-L1049C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1038C13-L1049C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.OutputDirection(System.CodeDom.FieldDirection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1058C21-L1064C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L16707566C0-L1064C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.OutputFieldScopeModifier(System.CodeDom.MemberAttributes)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1068C13-L1088C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1068C13-L1088C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.OutputMemberAccessModifier(System.CodeDom.MemberAttributes)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1092C13-L1113C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1092C13-L1113C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.OutputMemberScopeModifier(System.CodeDom.MemberAttributes)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1117C13-L1151C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1117C13-L1151C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.OutputType(System.CodeDom.CodeTypeReference)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.OutputTypeAttributes(System.Reflection.TypeAttributes,System.Boolean,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1157C13-L1196C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1157C13-L1196C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.OutputTypeNamePair(System.CodeDom.CodeTypeReference,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1200C13-L1203C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1200C13-L1203C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.OutputIdentifier(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1205C66-L1205C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1205C66-L1205C85" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.OutputExpressionList(System.CodeDom.CodeExpressionCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1209C13-L1210C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1209C13-L1210C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.OutputExpressionList(System.CodeDom.CodeExpressionCollection,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1214C13-L1232C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1214C13-L1232C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.OutputOperator(System.CodeDom.CodeBinaryOperatorType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1239C21-L1290C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L16707566C0-L1290C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.OutputParameters(System.CodeDom.CodeParameterDeclarationExpressionCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1294C13-L1325C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1294C13-L1325C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateArrayCreateExpression(System.CodeDom.CodeArrayCreateExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateBaseReferenceExpression(System.CodeDom.CodeBaseReferenceExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateBinaryOperatorExpression(System.CodeDom.CodeBinaryOperatorExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1332C13-L1368C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1332C13-L1368C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.ContinueOnNewLine(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1370C64-L1370C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1370C64-L1370C84" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateCastExpression(System.CodeDom.CodeCastExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateDelegateCreateExpression(System.CodeDom.CodeDelegateCreateExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateFieldReferenceExpression(System.CodeDom.CodeFieldReferenceExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateArgumentReferenceExpression(System.CodeDom.CodeArgumentReferenceExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateVariableReferenceExpression(System.CodeDom.CodeVariableReferenceExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateIndexerExpression(System.CodeDom.CodeIndexerExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateArrayIndexerExpression(System.CodeDom.CodeArrayIndexerExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateSnippetExpression(System.CodeDom.CodeSnippetExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateMethodInvokeExpression(System.CodeDom.CodeMethodInvokeExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateMethodReferenceExpression(System.CodeDom.CodeMethodReferenceExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateEventReferenceExpression(System.CodeDom.CodeEventReferenceExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateDelegateInvokeExpression(System.CodeDom.CodeDelegateInvokeExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateObjectCreateExpression(System.CodeDom.CodeObjectCreateExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateParameterDeclarationExpression(System.CodeDom.CodeParameterDeclarationExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1388C13-L1401C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1388C13-L1401C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateDirectionExpression(System.CodeDom.CodeDirectionExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1405C13-L1412C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1405C13-L1412C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GeneratePrimitiveExpression(System.CodeDom.CodePrimitiveExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1416C13-L1474C111" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1416C13-L1474C111" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateSingleFloatValue(System.Single)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1478C69-L1478C128" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1478C69-L1478C128" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateDoubleValue(System.Double)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1480C65-L1480C124" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1480C65-L1480C124" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateDecimalValue(System.Decimal)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1482C67-L1482C121" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1482C67-L1482C121" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateDefaultValueExpression(System.CodeDom.CodeDefaultValueExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1486C9-L1486C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1486C9-L1486C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GeneratePropertyReferenceExpression(System.CodeDom.CodePropertyReferenceExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GeneratePropertySetValueReferenceExpression(System.CodeDom.CodePropertySetValueReferenceExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateThisReferenceExpression(System.CodeDom.CodeThisReferenceExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateTypeReferenceExpression(System.CodeDom.CodeTypeReferenceExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1496C13-L1502C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1496C13-L1502C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateTypeOfExpression(System.CodeDom.CodeTypeOfExpression)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1506C13-L1514C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1506C13-L1514C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateExpressionStatement(System.CodeDom.CodeExpressionStatement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateIterationStatement(System.CodeDom.CodeIterationStatement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateThrowExceptionStatement(System.CodeDom.CodeThrowExceptionStatement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateCommentStatement(System.CodeDom.CodeCommentStatement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1521C13-L1531C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1521C13-L1531C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateCommentStatements(System.CodeDom.CodeCommentStatementCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1535C13-L1544C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1535C13-L1544C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateComment(System.CodeDom.CodeComment)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateMethodReturnStatement(System.CodeDom.CodeMethodReturnStatement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateConditionStatement(System.CodeDom.CodeConditionStatement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateTryCatchFinallyStatement(System.CodeDom.CodeTryCatchFinallyStatement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateAssignStatement(System.CodeDom.CodeAssignStatement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateAttachEventStatement(System.CodeDom.CodeAttachEventStatement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateRemoveEventStatement(System.CodeDom.CodeRemoveEventStatement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateGotoStatement(System.CodeDom.CodeGotoStatement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateLabeledStatement(System.CodeDom.CodeLabeledStatement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateSnippetStatement(System.CodeDom.CodeSnippetStatement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1558C13-L1564C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1558C13-L1564C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateVariableDeclarationStatement(System.CodeDom.CodeVariableDeclarationStatement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateLinePragmaStart(System.CodeDom.CodeLinePragma)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateLinePragmaEnd(System.CodeDom.CodeLinePragma)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateEvent(System.CodeDom.CodeMemberEvent,System.CodeDom.CodeTypeDeclaration)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateField(System.CodeDom.CodeMemberField)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateSnippetMember(System.CodeDom.CodeSnippetTypeMember)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateEntryPointMethod(System.CodeDom.CodeEntryPointMethod,System.CodeDom.CodeTypeDeclaration)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateMethod(System.CodeDom.CodeMemberMethod,System.CodeDom.CodeTypeDeclaration)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateProperty(System.CodeDom.CodeMemberProperty,System.CodeDom.CodeTypeDeclaration)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateConstructor(System.CodeDom.CodeConstructor,System.CodeDom.CodeTypeDeclaration)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateTypeConstructor(System.CodeDom.CodeTypeConstructor)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateTypeStart(System.CodeDom.CodeTypeDeclaration)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateTypeEnd(System.CodeDom.CodeTypeDeclaration)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateCompileUnitStart(System.CodeDom.CodeCompileUnit)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1582C13-L1591C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1582C13-L1591C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateCompileUnitEnd(System.CodeDom.CodeCompileUnit)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1595C13-L1604C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1595C13-L1604C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateNamespaceStart(System.CodeDom.CodeNamespace)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateNamespaceEnd(System.CodeDom.CodeNamespace)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateNamespaceImport(System.CodeDom.CodeNamespaceImport)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateAttributeDeclarationsStart(System.CodeDom.CodeAttributeDeclarationCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GenerateAttributeDeclarationsEnd(System.CodeDom.CodeAttributeDeclarationCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.Supports(System.CodeDom.Compiler.GeneratorSupport)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.IsValidIdentifier(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.ValidateIdentifier(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1616C13-L1620C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1616C13-L1620C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.CreateEscapedIdentifier(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.CreateValidIdentifier(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.GetTypeOutput(System.CodeDom.CodeTypeReference)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.QuoteSnippetString(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.IsValidLanguageIndependentIdentifier(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1627C82-L1627C137" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1627C82-L1627C137" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.ValidateIdentifiers(System.CodeDom.CodeObject)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1633C13-L1635C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L1633C13-L1635C10" }, { "DocsId": "M:System.CodeDom.Compiler.CodeGenerator.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "P:System.CodeDom.Compiler.CodeGenerator.CurrentClass", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L21C55-L21C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L21C55-L21C68" }, { "DocsId": "P:System.CodeDom.Compiler.CodeGenerator.CurrentTypeName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L23C45-L23C105" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L23C45-L23C105" }, { "DocsId": "P:System.CodeDom.Compiler.CodeGenerator.CurrentMember", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L25C51-L25C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L25C51-L25C65" }, { "DocsId": "P:System.CodeDom.Compiler.CodeGenerator.CurrentMemberName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L27C47-L27C109" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L27C47-L27C109" }, { "DocsId": "P:System.CodeDom.Compiler.CodeGenerator.IsCurrentInterface", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L29C46-L29C143" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L29C46-L29C143" }, { "DocsId": "P:System.CodeDom.Compiler.CodeGenerator.IsCurrentClass", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L31C42-L31C135" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L31C42-L31C135" }, { "DocsId": "P:System.CodeDom.Compiler.CodeGenerator.IsCurrentStruct", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L33C43-L33C137" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L33C43-L33C137" }, { "DocsId": "P:System.CodeDom.Compiler.CodeGenerator.IsCurrentEnum", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L35C41-L35C133" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L35C41-L35C133" }, { "DocsId": "P:System.CodeDom.Compiler.CodeGenerator.IsCurrentDelegate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L37C45-L37C103" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L37C45-L37C103" }, { "DocsId": "P:System.CodeDom.Compiler.CodeGenerator.Indent", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L41C20-L41C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L41C20-L41C34" }, { "DocsId": "P:System.CodeDom.Compiler.CodeGenerator.NullToken", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "DocsId": "P:System.CodeDom.Compiler.CodeGenerator.Output", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L47C40-L47C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L47C40-L47C47" }, { "DocsId": "P:System.CodeDom.Compiler.CodeGenerator.Options", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L49C51-L49C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs#L49C51-L49C59" } ], "DocsId": "T:System.CodeDom.Compiler.CodeGenerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGenerator.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.Compiler.CodeGeneratorOptions.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGeneratorOptions.cs#L11C9-L13C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGeneratorOptions.cs#L11C9-L13C42" }, { "DocsId": "P:System.CodeDom.Compiler.CodeGeneratorOptions.Item(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGeneratorOptions.cs#L17C20-L17C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGeneratorOptions.cs#L17C20-L17C35" }, { "DocsId": "P:System.CodeDom.Compiler.CodeGeneratorOptions.IndentString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGeneratorOptions.cs#L25C17-L26C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGeneratorOptions.cs#L25C17-L26C55" }, { "DocsId": "P:System.CodeDom.Compiler.CodeGeneratorOptions.BracingStyle", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGeneratorOptions.cs#L35C17-L36C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGeneratorOptions.cs#L35C17-L36C56" }, { "DocsId": "P:System.CodeDom.Compiler.CodeGeneratorOptions.ElseOnClosing", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGeneratorOptions.cs#L45C17-L46C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGeneratorOptions.cs#L45C17-L46C52" }, { "DocsId": "P:System.CodeDom.Compiler.CodeGeneratorOptions.BlankLinesBetweenMembers", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGeneratorOptions.cs#L55C17-L56C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGeneratorOptions.cs#L55C17-L56C51" }, { "DocsId": "P:System.CodeDom.Compiler.CodeGeneratorOptions.VerbatimOrder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGeneratorOptions.cs#L65C17-L66C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGeneratorOptions.cs#L65C17-L66C52" } ], "DocsId": "T:System.CodeDom.Compiler.CodeGeneratorOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGeneratorOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeGeneratorOptions.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.Compiler.CodeParser.Parse(System.IO.TextReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeParser.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeParser.cs" }, { "DocsId": "M:System.CodeDom.Compiler.CodeParser.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeParser.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeParser.cs" } ], "DocsId": "T:System.CodeDom.Compiler.CodeParser", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeParser.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CodeParser.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.Compiler.CompilerError.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerError.cs#L10C34-L10C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerError.cs#L10C34-L10C90" }, { "DocsId": "M:System.CodeDom.Compiler.CompilerError.#ctor(System.String,System.Int32,System.Int32,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerError.cs#L12C9-L19C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerError.cs#L12C9-L19C10" }, { "DocsId": "M:System.CodeDom.Compiler.CompilerError.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerError.cs#L33C46-L35C111" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerError.cs#L33C46-L35C111" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerError.Line", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerError.cs#L21C27-L21C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerError.cs#L21C27-L21C31" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerError.Column", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerError.cs#L23C29-L23C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerError.cs#L23C29-L23C33" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerError.ErrorNumber", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerError.cs#L25C37-L25C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerError.cs#L25C37-L25C41" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerError.ErrorText", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerError.cs#L27C35-L27C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerError.cs#L27C35-L27C39" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerError.IsWarning", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerError.cs#L29C33-L29C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerError.cs#L29C33-L29C37" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerError.FileName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerError.cs#L31C34-L31C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerError.cs#L31C34-L31C38" } ], "DocsId": "T:System.CodeDom.Compiler.CompilerError", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerError.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerError.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.Compiler.CompilerErrorCollection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerErrorCollection.cs#L10C9-L10C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerErrorCollection.cs#L10C9-L10C45" }, { "DocsId": "M:System.CodeDom.Compiler.CompilerErrorCollection.#ctor(System.CodeDom.Compiler.CompilerErrorCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerErrorCollection.cs#L12C9-L15C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerErrorCollection.cs#L12C9-L15C10" }, { "DocsId": "M:System.CodeDom.Compiler.CompilerErrorCollection.#ctor(System.CodeDom.Compiler.CompilerError[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerErrorCollection.cs#L17C9-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerErrorCollection.cs#L17C9-L20C10" }, { "DocsId": "M:System.CodeDom.Compiler.CompilerErrorCollection.Add(System.CodeDom.Compiler.CompilerError)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerErrorCollection.cs#L28C48-L28C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerErrorCollection.cs#L28C48-L28C63" }, { "DocsId": "M:System.CodeDom.Compiler.CompilerErrorCollection.AddRange(System.CodeDom.Compiler.CompilerError[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerErrorCollection.cs#L32C13-L41C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerErrorCollection.cs#L32C13-L41C10" }, { "DocsId": "M:System.CodeDom.Compiler.CompilerErrorCollection.AddRange(System.CodeDom.Compiler.CompilerErrorCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerErrorCollection.cs#L45C13-L55C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerErrorCollection.cs#L45C13-L55C10" }, { "DocsId": "M:System.CodeDom.Compiler.CompilerErrorCollection.Contains(System.CodeDom.Compiler.CompilerError)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerErrorCollection.cs#L57C54-L57C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerErrorCollection.cs#L57C54-L57C74" }, { "DocsId": "M:System.CodeDom.Compiler.CompilerErrorCollection.CopyTo(System.CodeDom.Compiler.CompilerError[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerErrorCollection.cs#L59C65-L59C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerErrorCollection.cs#L59C65-L59C90" }, { "DocsId": "M:System.CodeDom.Compiler.CompilerErrorCollection.IndexOf(System.CodeDom.Compiler.CompilerError)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerErrorCollection.cs#L97C52-L97C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerErrorCollection.cs#L97C52-L97C71" }, { "DocsId": "M:System.CodeDom.Compiler.CompilerErrorCollection.Insert(System.Int32,System.CodeDom.Compiler.CompilerError)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerErrorCollection.cs#L99C63-L99C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerErrorCollection.cs#L99C63-L99C88" }, { "DocsId": "M:System.CodeDom.Compiler.CompilerErrorCollection.Remove(System.CodeDom.Compiler.CompilerError)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerErrorCollection.cs#L101C52-L101C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerErrorCollection.cs#L101C52-L101C70" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerErrorCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerErrorCollection.cs#L24C20-L24C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerErrorCollection.cs#L24C20-L24C46" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerErrorCollection.HasErrors", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerErrorCollection.cs#L65C17-L76C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerErrorCollection.cs#L65C17-L76C14" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerErrorCollection.HasWarnings", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerErrorCollection.cs#L83C17-L94C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerErrorCollection.cs#L83C17-L94C14" } ], "DocsId": "T:System.CodeDom.Compiler.CompilerErrorCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerErrorCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerErrorCollection.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.Compiler.CompilerInfo.GetLanguages", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerInfo.cs#L21C43-L21C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerInfo.cs#L21C43-L21C79" }, { "DocsId": "M:System.CodeDom.Compiler.CompilerInfo.GetExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerInfo.cs#L23C44-L23C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerInfo.cs#L23C44-L23C81" }, { "DocsId": "M:System.CodeDom.Compiler.CompilerInfo.CreateProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerInfo.cs#L51C13-L60C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerInfo.cs#L51C13-L60C83" }, { "DocsId": "M:System.CodeDom.Compiler.CompilerInfo.CreateProvider(System.Collections.Generic.IDictionary{System.String,System.String})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerInfo.cs#L65C13-L77C123" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerInfo.cs#L65C13-L77C123" }, { "DocsId": "M:System.CodeDom.Compiler.CompilerInfo.CreateDefaultCompilerParameters", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerInfo.cs#L81C72-L81C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerInfo.cs#L81C72-L81C97" }, { "DocsId": "M:System.CodeDom.Compiler.CompilerInfo.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerInfo.cs#L89C46-L89C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerInfo.cs#L89C46-L89C84" }, { "DocsId": "M:System.CodeDom.Compiler.CompilerInfo.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerInfo.cs#L93C13-L98C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerInfo.cs#L93C13-L98C88" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerInfo.CodeDomProviderType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerInfo.cs#L29C17-L37C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerInfo.cs#L29C17-L37C30" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerInfo.IsCodeDomProviderTypeValid", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerInfo.cs#L41C51-L41C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerInfo.cs#L41C51-L41C97" } ], "DocsId": "T:System.CodeDom.Compiler.CompilerInfo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerInfo.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerInfo.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.Compiler.CompilerParameters.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L12C39-L14C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L12C39-L14C10" }, { "DocsId": "M:System.CodeDom.Compiler.CompilerParameters.#ctor(System.String[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L17C13-L19C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L17C13-L19C10" }, { "DocsId": "M:System.CodeDom.Compiler.CompilerParameters.#ctor(System.String[],System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L22C13-L24C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L22C13-L24C10" }, { "DocsId": "M:System.CodeDom.Compiler.CompilerParameters.#ctor(System.String[],System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L50C60-L34C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L50C60-L34C10" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerParameters.CoreAssemblyFileName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L50C46-L50C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L50C46-L50C50" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerParameters.GenerateExecutable", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L52C42-L52C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L52C42-L52C46" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerParameters.GenerateInMemory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L54C40-L54C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L54C40-L54C44" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerParameters.ReferencedAssemblies", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L56C56-L56C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L56C56-L56C60" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerParameters.MainClass", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L57C35-L57C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L57C35-L57C39" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerParameters.OutputAssembly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L59C40-L59C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L59C40-L59C44" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerParameters.TempFiles", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L63C20-L63C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L63C20-L63C59" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerParameters.IncludeDebugInformation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L67C47-L67C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L67C47-L67C51" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerParameters.TreatWarningsAsErrors", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L69C45-L69C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L69C45-L69C49" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerParameters.WarningLevel", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L71C35-L71C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L71C35-L71C39" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerParameters.CompilerOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L73C41-L73C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L73C41-L73C45" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerParameters.Win32Resource", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L75C39-L75C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L75C39-L75C43" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerParameters.EmbeddedResources", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L77C53-L77C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L77C53-L77C57" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerParameters.LinkedResources", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L79C51-L79C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L79C51-L79C55" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerParameters.UserToken", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L81C35-L81C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs#L81C35-L81C39" } ], "DocsId": "T:System.CodeDom.Compiler.CompilerParameters", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerParameters.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.Compiler.CompilerResults.#ctor(System.CodeDom.Compiler.TempFileCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerResults.cs#L32C58-L16C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerResults.cs#L32C58-L16C10" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerResults.TempFiles", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerResults.cs#L18C47-L18C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerResults.cs#L18C47-L18C51" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerResults.CompiledAssembly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerResults.cs#L24C17-L28C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerResults.cs#L24C17-L28C42" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerResults.Errors", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerResults.cs#L32C49-L32C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerResults.cs#L32C49-L32C53" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerResults.Output", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerResults.cs#L34C42-L34C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerResults.cs#L34C42-L34C46" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerResults.PathToAssembly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerResults.cs#L36C40-L36C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerResults.cs#L36C40-L36C44" }, { "DocsId": "P:System.CodeDom.Compiler.CompilerResults.NativeCompilerReturnValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerResults.cs#L38C48-L38C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerResults.cs#L38C48-L38C52" } ], "DocsId": "T:System.CodeDom.Compiler.CompilerResults", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerResults.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/CompilerResults.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.Compiler.Executor.ExecWait(System.String,System.CodeDom.Compiler.TempFileCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/Executor.cs#L20C13-L22C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/Executor.cs#L20C13-L22C10" }, { "DocsId": "M:System.CodeDom.Compiler.Executor.ExecWaitWithCapture(System.IntPtr,System.String,System.CodeDom.Compiler.TempFileCollection,System.String@,System.String@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/Executor.cs#L25C13-L25C120" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/Executor.cs#L25C13-L25C120" }, { "DocsId": "M:System.CodeDom.Compiler.Executor.ExecWaitWithCapture(System.String,System.String,System.CodeDom.Compiler.TempFileCollection,System.String@,System.String@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/Executor.cs#L28C13-L28C104" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/Executor.cs#L28C13-L28C104" }, { "DocsId": "M:System.CodeDom.Compiler.Executor.ExecWaitWithCapture(System.String,System.CodeDom.Compiler.TempFileCollection,System.String@,System.String@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/Executor.cs#L31C13-L31C122" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/Executor.cs#L31C13-L31C122" }, { "DocsId": "M:System.CodeDom.Compiler.Executor.ExecWaitWithCapture(System.IntPtr,System.String,System.String,System.CodeDom.Compiler.TempFileCollection,System.String@,System.String@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/Executor.cs#L35C13-L98C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/Executor.cs#L35C13-L98C10" } ], "DocsId": "T:System.CodeDom.Compiler.Executor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/Executor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/Executor.cs" }, { "Members": [ { "DocsId": "F:System.CodeDom.Compiler.GeneratorSupport.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" }, { "DocsId": "F:System.CodeDom.Compiler.GeneratorSupport.ArraysOfArrays", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" }, { "DocsId": "F:System.CodeDom.Compiler.GeneratorSupport.EntryPointMethod", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" }, { "DocsId": "F:System.CodeDom.Compiler.GeneratorSupport.GotoStatements", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" }, { "DocsId": "F:System.CodeDom.Compiler.GeneratorSupport.MultidimensionalArrays", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" }, { "DocsId": "F:System.CodeDom.Compiler.GeneratorSupport.StaticConstructors", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" }, { "DocsId": "F:System.CodeDom.Compiler.GeneratorSupport.TryCatchStatements", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" }, { "DocsId": "F:System.CodeDom.Compiler.GeneratorSupport.ReturnTypeAttributes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" }, { "DocsId": "F:System.CodeDom.Compiler.GeneratorSupport.DeclareValueTypes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" }, { "DocsId": "F:System.CodeDom.Compiler.GeneratorSupport.DeclareEnums", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" }, { "DocsId": "F:System.CodeDom.Compiler.GeneratorSupport.DeclareDelegates", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" }, { "DocsId": "F:System.CodeDom.Compiler.GeneratorSupport.DeclareInterfaces", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" }, { "DocsId": "F:System.CodeDom.Compiler.GeneratorSupport.DeclareEvents", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" }, { "DocsId": "F:System.CodeDom.Compiler.GeneratorSupport.AssemblyAttributes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" }, { "DocsId": "F:System.CodeDom.Compiler.GeneratorSupport.ParameterAttributes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" }, { "DocsId": "F:System.CodeDom.Compiler.GeneratorSupport.ReferenceParameters", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" }, { "DocsId": "F:System.CodeDom.Compiler.GeneratorSupport.ChainedConstructorArguments", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" }, { "DocsId": "F:System.CodeDom.Compiler.GeneratorSupport.NestedTypes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" }, { "DocsId": "F:System.CodeDom.Compiler.GeneratorSupport.MultipleInterfaceMembers", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" }, { "DocsId": "F:System.CodeDom.Compiler.GeneratorSupport.PublicStaticMembers", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" }, { "DocsId": "F:System.CodeDom.Compiler.GeneratorSupport.ComplexExpressions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" }, { "DocsId": "F:System.CodeDom.Compiler.GeneratorSupport.Win32Resources", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" }, { "DocsId": "F:System.CodeDom.Compiler.GeneratorSupport.Resources", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" }, { "DocsId": "F:System.CodeDom.Compiler.GeneratorSupport.PartialTypes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" }, { "DocsId": "F:System.CodeDom.Compiler.GeneratorSupport.GenericTypeReference", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" }, { "DocsId": "F:System.CodeDom.Compiler.GeneratorSupport.GenericTypeDeclaration", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" }, { "DocsId": "F:System.CodeDom.Compiler.GeneratorSupport.DeclareIndexerProperties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" } ], "DocsId": "T:System.CodeDom.Compiler.GeneratorSupport", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/GeneratorSupport.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.Compiler.ICodeCompiler.CompileAssemblyFromDom(System.CodeDom.Compiler.CompilerParameters,System.CodeDom.CodeCompileUnit)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeCompiler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeCompiler.cs" }, { "DocsId": "M:System.CodeDom.Compiler.ICodeCompiler.CompileAssemblyFromFile(System.CodeDom.Compiler.CompilerParameters,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeCompiler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeCompiler.cs" }, { "DocsId": "M:System.CodeDom.Compiler.ICodeCompiler.CompileAssemblyFromSource(System.CodeDom.Compiler.CompilerParameters,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeCompiler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeCompiler.cs" }, { "DocsId": "M:System.CodeDom.Compiler.ICodeCompiler.CompileAssemblyFromDomBatch(System.CodeDom.Compiler.CompilerParameters,System.CodeDom.CodeCompileUnit[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeCompiler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeCompiler.cs" }, { "DocsId": "M:System.CodeDom.Compiler.ICodeCompiler.CompileAssemblyFromFileBatch(System.CodeDom.Compiler.CompilerParameters,System.String[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeCompiler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeCompiler.cs" }, { "DocsId": "M:System.CodeDom.Compiler.ICodeCompiler.CompileAssemblyFromSourceBatch(System.CodeDom.Compiler.CompilerParameters,System.String[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeCompiler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeCompiler.cs" } ], "DocsId": "T:System.CodeDom.Compiler.ICodeCompiler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeCompiler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeCompiler.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.Compiler.ICodeGenerator.IsValidIdentifier(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.ICodeGenerator.ValidateIdentifier(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.ICodeGenerator.CreateEscapedIdentifier(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.ICodeGenerator.CreateValidIdentifier(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.ICodeGenerator.GetTypeOutput(System.CodeDom.CodeTypeReference)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.ICodeGenerator.Supports(System.CodeDom.Compiler.GeneratorSupport)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.ICodeGenerator.GenerateCodeFromExpression(System.CodeDom.CodeExpression,System.IO.TextWriter,System.CodeDom.Compiler.CodeGeneratorOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.ICodeGenerator.GenerateCodeFromStatement(System.CodeDom.CodeStatement,System.IO.TextWriter,System.CodeDom.Compiler.CodeGeneratorOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.ICodeGenerator.GenerateCodeFromNamespace(System.CodeDom.CodeNamespace,System.IO.TextWriter,System.CodeDom.Compiler.CodeGeneratorOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.ICodeGenerator.GenerateCodeFromCompileUnit(System.CodeDom.CodeCompileUnit,System.IO.TextWriter,System.CodeDom.Compiler.CodeGeneratorOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeGenerator.cs" }, { "DocsId": "M:System.CodeDom.Compiler.ICodeGenerator.GenerateCodeFromType(System.CodeDom.CodeTypeDeclaration,System.IO.TextWriter,System.CodeDom.Compiler.CodeGeneratorOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeGenerator.cs" } ], "DocsId": "T:System.CodeDom.Compiler.ICodeGenerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeGenerator.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.Compiler.ICodeParser.Parse(System.IO.TextReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeParser.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeParser.cs" } ], "DocsId": "T:System.CodeDom.Compiler.ICodeParser", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeParser.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/ICodeParser.cs" }, { "Members": [ { "DocsId": "F:System.CodeDom.Compiler.LanguageOptions.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/LanguageOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/LanguageOptions.cs" }, { "DocsId": "F:System.CodeDom.Compiler.LanguageOptions.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/LanguageOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/LanguageOptions.cs" }, { "DocsId": "F:System.CodeDom.Compiler.LanguageOptions.CaseInsensitive", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/LanguageOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/LanguageOptions.cs" } ], "DocsId": "T:System.CodeDom.Compiler.LanguageOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/LanguageOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/System/CodeDom/Compiler/LanguageOptions.cs" }, { "Members": [ { "DocsId": "M:System.CodeDom.Compiler.TempFileCollection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/IO/TempFileCollection.cs#L29C39-L31C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/IO/TempFileCollection.cs#L29C39-L31C10" }, { "DocsId": "M:System.CodeDom.Compiler.TempFileCollection.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/IO/TempFileCollection.cs#L33C53-L35C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/IO/TempFileCollection.cs#L33C53-L35C10" }, { "DocsId": "M:System.CodeDom.Compiler.TempFileCollection.#ctor(System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/IO/TempFileCollection.cs#L37C9-L42C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/IO/TempFileCollection.cs#L37C9-L42C10" }, { "DocsId": "M:System.CodeDom.Compiler.TempFileCollection.System#IDisposable#Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/IO/TempFileCollection.cs#L46C13-L48C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/IO/TempFileCollection.cs#L46C13-L48C10" }, { "DocsId": "M:System.CodeDom.Compiler.TempFileCollection.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/IO/TempFileCollection.cs#L58C13-L59C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/IO/TempFileCollection.cs#L58C13-L59C10" }, { "DocsId": "M:System.CodeDom.Compiler.TempFileCollection.Finalize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/IO/TempFileCollection.cs#L64C13-L65C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/IO/TempFileCollection.cs#L64C13-L65C10" }, { "DocsId": "M:System.CodeDom.Compiler.TempFileCollection.AddExtension(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/IO/TempFileCollection.cs#L67C61-L67C99" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/IO/TempFileCollection.cs#L67C61-L67C99" }, { "DocsId": "M:System.CodeDom.Compiler.TempFileCollection.AddExtension(System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/IO/TempFileCollection.cs#L71C13-L78C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/IO/TempFileCollection.cs#L71C13-L78C29" }, { "DocsId": "M:System.CodeDom.Compiler.TempFileCollection.AddFile(System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/IO/TempFileCollection.cs#L83C13-L94C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/IO/TempFileCollection.cs#L83C13-L94C10" }, { "DocsId": "M:System.CodeDom.Compiler.TempFileCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/IO/TempFileCollection.cs#L96C47-L96C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/IO/TempFileCollection.cs#L96C47-L96C74" }, { "DocsId": "M:System.CodeDom.Compiler.TempFileCollection.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/IO/TempFileCollection.cs#L98C52-L98C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/IO/TempFileCollection.cs#L98C52-L98C79" }, { "DocsId": "M:System.CodeDom.Compiler.TempFileCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/IO/TempFileCollection.cs#L100C60-L100C92" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/IO/TempFileCollection.cs#L100C60-L100C92" }, { "DocsId": "M:System.CodeDom.Compiler.TempFileCollection.CopyTo(System.String[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/IO/TempFileCollection.cs#L102C62-L102C98" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/IO/TempFileCollection.cs#L102C62-L102C98" }, { "DocsId": "M:System.CodeDom.Compiler.TempFileCollection.System#Collections#ICollection#get_Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/IO/TempFileCollection.cs#L106C34-L106C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/IO/TempFileCollection.cs#L106C34-L106C46" }, { "DocsId": "M:System.CodeDom.Compiler.TempFileCollection.System#Collections#ICollection#get_SyncRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/IO/TempFileCollection.cs#L108C40-L108C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/IO/TempFileCollection.cs#L108C40-L108C44" }, { "DocsId": "M:System.CodeDom.Compiler.TempFileCollection.System#Collections#ICollection#get_IsSynchronized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/IO/TempFileCollection.cs#L110C44-L110C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/IO/TempFileCollection.cs#L110C44-L110C49" }, { "DocsId": "M:System.CodeDom.Compiler.TempFileCollection.Delete", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/IO/TempFileCollection.cs#L179C13-L180C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/IO/TempFileCollection.cs#L179C13-L180C10" }, { "DocsId": "P:System.CodeDom.Compiler.TempFileCollection.Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/IO/TempFileCollection.cs#L104C29-L104C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/IO/TempFileCollection.cs#L104C29-L104C41" }, { "DocsId": "P:System.CodeDom.Compiler.TempFileCollection.System#Collections#ICollection#Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/IO/TempFileCollection.cs#L106C34-L106C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/IO/TempFileCollection.cs#L106C34-L106C46" }, { "DocsId": "P:System.CodeDom.Compiler.TempFileCollection.System#Collections#ICollection#SyncRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/IO/TempFileCollection.cs#L108C40-L108C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/IO/TempFileCollection.cs#L108C40-L108C44" }, { "DocsId": "P:System.CodeDom.Compiler.TempFileCollection.System#Collections#ICollection#IsSynchronized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/IO/TempFileCollection.cs#L110C44-L110C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/IO/TempFileCollection.cs#L110C44-L110C49" }, { "DocsId": "P:System.CodeDom.Compiler.TempFileCollection.TempDir", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/IO/TempFileCollection.cs#L112C34-L112C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/IO/TempFileCollection.cs#L112C34-L112C58" }, { "DocsId": "P:System.CodeDom.Compiler.TempFileCollection.BasePath", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/IO/TempFileCollection.cs#L118C17-L119C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/IO/TempFileCollection.cs#L118C17-L119C34" }, { "DocsId": "P:System.CodeDom.Compiler.TempFileCollection.KeepFiles", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/IO/TempFileCollection.cs#L169C33-L169C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/IO/TempFileCollection.cs#L169C33-L169C37" } ], "DocsId": "T:System.CodeDom.Compiler.TempFileCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/IO/TempFileCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/IO/TempFileCollection.cs" }, { "Members": [ { "DocsId": "M:Microsoft.VisualBasic.VBCodeProvider.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/Microsoft/VisualBasic/VBCodeProvider.cs#L18C9-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/Microsoft/VisualBasic/VBCodeProvider.cs#L18C9-L21C10" }, { "DocsId": "M:Microsoft.VisualBasic.VBCodeProvider.#ctor(System.Collections.Generic.IDictionary{System.String,System.String})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/Microsoft/VisualBasic/VBCodeProvider.cs#L23C9-L31C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/Microsoft/VisualBasic/VBCodeProvider.cs#L23C9-L31C10" }, { "DocsId": "M:Microsoft.VisualBasic.VBCodeProvider.CreateGenerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/Microsoft/VisualBasic/VBCodeProvider.cs#L38C61-L38C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/Microsoft/VisualBasic/VBCodeProvider.cs#L38C61-L38C71" }, { "DocsId": "M:Microsoft.VisualBasic.VBCodeProvider.CreateCompiler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/Microsoft/VisualBasic/VBCodeProvider.cs#L41C59-L41C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/Microsoft/VisualBasic/VBCodeProvider.cs#L41C59-L41C69" }, { "DocsId": "M:Microsoft.VisualBasic.VBCodeProvider.GetConverter(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/Microsoft/VisualBasic/VBCodeProvider.cs#L44C13-L46C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/Microsoft/VisualBasic/VBCodeProvider.cs#L44C13-L46C36" }, { "DocsId": "M:Microsoft.VisualBasic.VBCodeProvider.GenerateCodeFromMember(System.CodeDom.CodeTypeMember,System.IO.TextWriter,System.CodeDom.Compiler.CodeGeneratorOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/Microsoft/VisualBasic/VBCodeProvider.cs#L49C13-L49C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/Microsoft/VisualBasic/VBCodeProvider.cs#L49C13-L49C71" }, { "DocsId": "P:Microsoft.VisualBasic.VBCodeProvider.FileExtension", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/Microsoft/VisualBasic/VBCodeProvider.cs#L33C49-L33C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/Microsoft/VisualBasic/VBCodeProvider.cs#L33C49-L33C53" }, { "DocsId": "P:Microsoft.VisualBasic.VBCodeProvider.LanguageOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/Microsoft/VisualBasic/VBCodeProvider.cs#L35C60-L35C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/Microsoft/VisualBasic/VBCodeProvider.cs#L35C60-L35C91" } ], "DocsId": "T:Microsoft.VisualBasic.VBCodeProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/Microsoft/VisualBasic/VBCodeProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/Microsoft/VisualBasic/VBCodeProvider.cs" }, { "Members": [ { "DocsId": "M:Microsoft.CSharp.CSharpCodeProvider.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/Microsoft/CSharp/CSharpCodeProvider.cs#L18C9-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/Microsoft/CSharp/CSharpCodeProvider.cs#L18C9-L21C10" }, { "DocsId": "M:Microsoft.CSharp.CSharpCodeProvider.#ctor(System.Collections.Generic.IDictionary{System.String,System.String})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/Microsoft/CSharp/CSharpCodeProvider.cs#L23C9-L31C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/Microsoft/CSharp/CSharpCodeProvider.cs#L23C9-L31C10" }, { "DocsId": "M:Microsoft.CSharp.CSharpCodeProvider.CreateGenerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/Microsoft/CSharp/CSharpCodeProvider.cs#L36C61-L36C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/Microsoft/CSharp/CSharpCodeProvider.cs#L36C61-L36C71" }, { "DocsId": "M:Microsoft.CSharp.CSharpCodeProvider.CreateCompiler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/Microsoft/CSharp/CSharpCodeProvider.cs#L39C59-L39C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/Microsoft/CSharp/CSharpCodeProvider.cs#L39C59-L39C69" }, { "DocsId": "M:Microsoft.CSharp.CSharpCodeProvider.GetConverter(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/Microsoft/CSharp/CSharpCodeProvider.cs#L42C13-L44C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/Microsoft/CSharp/CSharpCodeProvider.cs#L42C13-L44C36" }, { "DocsId": "M:Microsoft.CSharp.CSharpCodeProvider.GenerateCodeFromMember(System.CodeDom.CodeTypeMember,System.IO.TextWriter,System.CodeDom.Compiler.CodeGeneratorOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/Microsoft/CSharp/CSharpCodeProvider.cs#L47C13-L47C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/Microsoft/CSharp/CSharpCodeProvider.cs#L47C13-L47C71" }, { "DocsId": "P:Microsoft.CSharp.CSharpCodeProvider.FileExtension", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/Microsoft/CSharp/CSharpCodeProvider.cs#L33C49-L33C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/Microsoft/CSharp/CSharpCodeProvider.cs#L33C49-L33C53" } ], "DocsId": "T:Microsoft.CSharp.CSharpCodeProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.CodeDom/src/Microsoft/CSharp/CSharpCodeProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.CodeDom/src/Microsoft/CSharp/CSharpCodeProvider.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/System.ComponentModel.Composition.Registration.json b/xml/SourceLinkInformation/net-9.0/System.ComponentModel.Composition.Registration.json index ef6c78ddb6c..cd753725b62 100644 --- a/xml/SourceLinkInformation/net-9.0/System.ComponentModel.Composition.Registration.json +++ b/xml/SourceLinkInformation/net-9.0/System.ComponentModel.Composition.Registration.json @@ -1,271 +1,270 @@ { "Assembly": "System.ComponentModel.Composition.Registration", - "GUID": "19FD457B8CAA49D8BDF8F9FA232542B9FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "C41CE4337436431A9BB8B59C45D85FA7FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.Registration.ExportBuilder.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/ExportBuilder.cs#L16C9-L16C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/ExportBuilder.cs#L16C9-L16C35" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.ExportBuilder.AsContractType``1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/ExportBuilder.cs#L20C13-L20C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/ExportBuilder.cs#L20C13-L20C46" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.ExportBuilder.AsContractType(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/ExportBuilder.cs#L25C13-L26C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/ExportBuilder.cs#L25C13-L26C25" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.ExportBuilder.AsContractName(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/ExportBuilder.cs#L31C13-L32C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/ExportBuilder.cs#L31C13-L32C25" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.ExportBuilder.Inherited", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/ExportBuilder.cs#L37C13-L38C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/ExportBuilder.cs#L37C13-L38C25" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.ExportBuilder.AddMetadata(System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/ExportBuilder.cs#L43C13-L46C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/ExportBuilder.cs#L43C13-L46C25" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.ExportBuilder.AddMetadata(System.String,System.Func{System.Type,System.Object})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/ExportBuilder.cs#L51C13-L54C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/ExportBuilder.cs#L51C13-L54C25" } ], "DocsId": "T:System.ComponentModel.Composition.Registration.ExportBuilder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/ExportBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/ExportBuilder.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.Registration.ImportBuilder.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/ImportBuilder.cs#L21C9-L21C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/ImportBuilder.cs#L21C9-L21C35" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.ImportBuilder.AsContractType``1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/ImportBuilder.cs#L25C13-L25C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/ImportBuilder.cs#L25C13-L25C46" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.ImportBuilder.AsContractType(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/ImportBuilder.cs#L30C13-L31C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/ImportBuilder.cs#L30C13-L31C25" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.ImportBuilder.AsContractName(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/ImportBuilder.cs#L36C13-L37C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/ImportBuilder.cs#L36C13-L37C25" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.ImportBuilder.AsMany(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/ImportBuilder.cs#L42C13-L44C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/ImportBuilder.cs#L42C13-L44C25" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.ImportBuilder.AllowDefault", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/ImportBuilder.cs#L49C13-L50C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/ImportBuilder.cs#L49C13-L50C25" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.ImportBuilder.AllowRecomposition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/ImportBuilder.cs#L55C13-L56C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/ImportBuilder.cs#L55C13-L56C25" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.ImportBuilder.RequiredCreationPolicy(System.ComponentModel.Composition.CreationPolicy)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/ImportBuilder.cs#L61C13-L62C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/ImportBuilder.cs#L61C13-L62C25" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.ImportBuilder.Source(System.ComponentModel.Composition.ImportSource)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/ImportBuilder.cs#L67C13-L68C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/ImportBuilder.cs#L67C13-L68C25" } ], "DocsId": "T:System.ComponentModel.Composition.Registration.ImportBuilder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/ImportBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/ImportBuilder.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.Registration.ParameterImportBuilder.Import``1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/ParameterImportBuilder.cs#L11C13-L11C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/ParameterImportBuilder.cs#L11C13-L11C28" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.ParameterImportBuilder.Import``1(System.Action{System.ComponentModel.Composition.Registration.ImportBuilder})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/ParameterImportBuilder.cs#L16C13-L16C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/ParameterImportBuilder.cs#L16C13-L16C28" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.ParameterImportBuilder.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/ParameterImportBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/ParameterImportBuilder.cs" } ], "DocsId": "T:System.ComponentModel.Composition.Registration.ParameterImportBuilder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/ParameterImportBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/ParameterImportBuilder.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.Registration.PartBuilder.Export", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilder.cs#L47C13-L47C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilder.cs#L47C13-L47C33" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.PartBuilder.Export(System.Action{System.ComponentModel.Composition.Registration.ExportBuilder})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilder.cs#L52C13-L56C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilder.cs#L52C13-L56C25" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.PartBuilder.Export``1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilder.cs#L61C13-L61C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilder.cs#L61C13-L61C36" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.PartBuilder.Export``1(System.Action{System.ComponentModel.Composition.Registration.ExportBuilder})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilder.cs#L66C13-L70C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilder.cs#L66C13-L70C25" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.PartBuilder.SelectConstructor(System.Func{System.Reflection.ConstructorInfo[],System.Reflection.ConstructorInfo})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilder.cs#L76C13-L76C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilder.cs#L76C13-L76C63" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.PartBuilder.SelectConstructor(System.Func{System.Reflection.ConstructorInfo[],System.Reflection.ConstructorInfo},System.Action{System.Reflection.ParameterInfo,System.ComponentModel.Composition.Registration.ImportBuilder})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilder.cs#L82C13-L85C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilder.cs#L82C13-L85C25" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.PartBuilder.ExportInterfaces(System.Predicate{System.Type})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilder.cs#L91C13-L91C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilder.cs#L91C13-L91C60" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.PartBuilder.ExportInterfaces", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilder.cs#L96C13-L96C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilder.cs#L96C13-L96C54" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.PartBuilder.ExportInterfaces(System.Predicate{System.Type},System.Action{System.Type,System.ComponentModel.Composition.Registration.ExportBuilder})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilder.cs#L102C13-L109C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilder.cs#L102C13-L109C25" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.PartBuilder.ExportProperties(System.Predicate{System.Reflection.PropertyInfo})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilder.cs#L115C13-L120C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilder.cs#L115C13-L120C59" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.PartBuilder.ExportProperties(System.Predicate{System.Reflection.PropertyInfo},System.Action{System.Reflection.PropertyInfo,System.ComponentModel.Composition.Registration.ExportBuilder})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilder.cs#L126C13-L133C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilder.cs#L126C13-L133C25" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.PartBuilder.ExportProperties``1(System.Predicate{System.Reflection.PropertyInfo})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilder.cs#L139C13-L144C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilder.cs#L139C13-L144C62" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.PartBuilder.ExportProperties``1(System.Predicate{System.Reflection.PropertyInfo},System.Action{System.Reflection.PropertyInfo,System.ComponentModel.Composition.Registration.ExportBuilder})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilder.cs#L150C13-L157C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilder.cs#L150C13-L157C25" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.PartBuilder.ImportProperties(System.Predicate{System.Reflection.PropertyInfo})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilder.cs#L163C13-L168C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilder.cs#L163C13-L168C59" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.PartBuilder.ImportProperties(System.Predicate{System.Reflection.PropertyInfo},System.Action{System.Reflection.PropertyInfo,System.ComponentModel.Composition.Registration.ImportBuilder})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilder.cs#L174C13-L180C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilder.cs#L174C13-L180C25" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.PartBuilder.ImportProperties``1(System.Predicate{System.Reflection.PropertyInfo})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilder.cs#L186C13-L191C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilder.cs#L186C13-L191C62" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.PartBuilder.ImportProperties``1(System.Predicate{System.Reflection.PropertyInfo},System.Action{System.Reflection.PropertyInfo,System.ComponentModel.Composition.Registration.ImportBuilder})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilder.cs#L197C13-L203C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilder.cs#L197C13-L203C25" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.PartBuilder.SetCreationPolicy(System.ComponentModel.Composition.CreationPolicy)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilder.cs#L208C13-L210C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilder.cs#L208C13-L210C25" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.PartBuilder.AddMetadata(System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilder.cs#L215C13-L218C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilder.cs#L215C13-L218C25" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.PartBuilder.AddMetadata(System.String,System.Func{System.Type,System.Object})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilder.cs#L223C13-L226C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilder.cs#L223C13-L226C25" } ], "DocsId": "T:System.ComponentModel.Composition.Registration.PartBuilder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilder.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.Registration.PartBuilder`1.SelectConstructor(System.Linq.Expressions.Expression{System.Func{System.ComponentModel.Composition.Registration.ParameterImportBuilder,`0}})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilderOfT.cs#L156C13-L164C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilderOfT.cs#L156C13-L164C25" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.PartBuilder`1.ExportProperty(System.Linq.Expressions.Expression{System.Func{`0,System.Object}})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilderOfT.cs#L170C13-L170C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilderOfT.cs#L170C13-L170C57" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.PartBuilder`1.ExportProperty(System.Linq.Expressions.Expression{System.Func{`0,System.Object}},System.Action{System.ComponentModel.Composition.Registration.ExportBuilder})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilderOfT.cs#L177C13-L185C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilderOfT.cs#L177C13-L185C25" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.PartBuilder`1.ExportProperty``1(System.Linq.Expressions.Expression{System.Func{`0,System.Object}})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilderOfT.cs#L190C13-L190C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilderOfT.cs#L190C13-L190C68" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.PartBuilder`1.ExportProperty``1(System.Linq.Expressions.Expression{System.Func{`0,System.Object}},System.Action{System.ComponentModel.Composition.Registration.ExportBuilder})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilderOfT.cs#L196C13-L204C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilderOfT.cs#L196C13-L204C25" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.PartBuilder`1.ImportProperty(System.Linq.Expressions.Expression{System.Func{`0,System.Object}})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilderOfT.cs#L209C13-L209C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilderOfT.cs#L209C13-L209C57" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.PartBuilder`1.ImportProperty(System.Linq.Expressions.Expression{System.Func{`0,System.Object}},System.Action{System.ComponentModel.Composition.Registration.ImportBuilder})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilderOfT.cs#L215C13-L223C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilderOfT.cs#L215C13-L223C25" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.PartBuilder`1.ImportProperty``1(System.Linq.Expressions.Expression{System.Func{`0,System.Object}})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilderOfT.cs#L228C13-L228C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilderOfT.cs#L228C13-L228C68" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.PartBuilder`1.ImportProperty``1(System.Linq.Expressions.Expression{System.Func{`0,System.Object}},System.Action{System.ComponentModel.Composition.Registration.ImportBuilder})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilderOfT.cs#L234C13-L242C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilderOfT.cs#L234C13-L242C25" } ], "DocsId": "T:System.ComponentModel.Composition.Registration.PartBuilder`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilderOfT.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/PartBuilderOfT.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.Registration.RegistrationBuilder.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/RegistrationBuilder.cs#L23C9-L31C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/RegistrationBuilder.cs#L23C9-L31C10" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.RegistrationBuilder.ForTypesDerivedFrom``1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/RegistrationBuilder.cs#L35C13-L38C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/RegistrationBuilder.cs#L35C13-L38C32" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.RegistrationBuilder.ForTypesDerivedFrom(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/RegistrationBuilder.cs#L43C13-L51C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/RegistrationBuilder.cs#L16707566C0-L51C32" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.RegistrationBuilder.ForType``1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/RegistrationBuilder.cs#L56C13-L59C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/RegistrationBuilder.cs#L56C13-L59C32" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.RegistrationBuilder.ForType(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/RegistrationBuilder.cs#L64C13-L72C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/RegistrationBuilder.cs#L16707566C0-L72C32" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.RegistrationBuilder.ForTypesMatching``1(System.Predicate{System.Type})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/RegistrationBuilder.cs#L77C13-L85C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/RegistrationBuilder.cs#L77C13-L85C32" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.RegistrationBuilder.ForTypesMatching(System.Predicate{System.Type})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/RegistrationBuilder.cs#L90C13-L98C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/RegistrationBuilder.cs#L90C13-L98C32" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.RegistrationBuilder.GetCustomAttributes(System.Reflection.MemberInfo,System.Collections.Generic.IEnumerable{System.Object})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/RegistrationBuilder.cs#L132C13-L217C96" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/RegistrationBuilder.cs#L132C13-L217C96" }, { "DocsId": "M:System.ComponentModel.Composition.Registration.RegistrationBuilder.GetCustomAttributes(System.Reflection.ParameterInfo,System.Collections.Generic.IEnumerable{System.Object})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/RegistrationBuilder.cs#L223C13-L226C96" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/RegistrationBuilder.cs#L223C13-L226C96" } ], "DocsId": "T:System.ComponentModel.Composition.Registration.RegistrationBuilder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/RegistrationBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition.Registration/src/System/ComponentModel/Composition/Registration/RegistrationBuilder.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/System.ComponentModel.Composition.json b/xml/SourceLinkInformation/net-9.0/System.ComponentModel.Composition.json index 83d618aab11..4ed5adc92e3 100644 --- a/xml/SourceLinkInformation/net-9.0/System.ComponentModel.Composition.json +++ b/xml/SourceLinkInformation/net-9.0/System.ComponentModel.Composition.json @@ -1,2131 +1,2130 @@ { "Assembly": "System.ComponentModel.Composition", - "GUID": "149AAA32AB544D2BAC2B4588B96B1D45FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "718D99DDDDAF4455B1C7CBB80E8023DFFFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.AttributedModelServices.GetMetadataView``1(System.Collections.Generic.IDictionary{System.String,System.Object})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs#L21C13-L23C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs#L21C13-L23C82" }, { "DocsId": "M:System.ComponentModel.Composition.AttributedModelServices.CreatePart(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs#L28C13-L30C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs#L28C13-L30C72" }, { "DocsId": "M:System.ComponentModel.Composition.AttributedModelServices.CreatePart(System.Object,System.Reflection.ReflectionContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs#L35C13-L38C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs#L35C13-L38C91" }, { "DocsId": "M:System.ComponentModel.Composition.AttributedModelServices.CreatePart(System.ComponentModel.Composition.Primitives.ComposablePartDefinition,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs#L43C13-L52C108" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs#L43C13-L52C108" }, { "DocsId": "M:System.ComponentModel.Composition.AttributedModelServices.CreatePartDefinition(System.Type,System.ComponentModel.Composition.Primitives.ICompositionElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs#L57C13-L59C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs#L57C13-L59C86" }, { "DocsId": "M:System.ComponentModel.Composition.AttributedModelServices.CreatePartDefinition(System.Type,System.ComponentModel.Composition.Primitives.ICompositionElement,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs#L64C13-L71C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs#L64C13-L71C97" }, { "DocsId": "M:System.ComponentModel.Composition.AttributedModelServices.GetTypeIdentity(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs#L77C13-L79C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs#L77C13-L79C63" }, { "DocsId": "M:System.ComponentModel.Composition.AttributedModelServices.GetTypeIdentity(System.Reflection.MethodInfo)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs#L84C13-L86C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs#L84C13-L86C75" }, { "DocsId": "M:System.ComponentModel.Composition.AttributedModelServices.GetContractName(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs#L91C13-L93C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs#L91C13-L93C66" }, { "DocsId": "M:System.ComponentModel.Composition.AttributedModelServices.AddExportedValue``1(System.ComponentModel.Composition.Hosting.CompositionBatch,``0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs#L98C13-L102C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs#L98C13-L102C75" }, { "DocsId": "M:System.ComponentModel.Composition.AttributedModelServices.ComposeExportedValue``1(System.ComponentModel.Composition.Hosting.CompositionContainer,``0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs#L107C13-L112C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs#L107C13-L112C10" }, { "DocsId": "M:System.ComponentModel.Composition.AttributedModelServices.AddExportedValue``1(System.ComponentModel.Composition.Hosting.CompositionBatch,System.String,``0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs#L116C13-L123C93" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs#L16707566C0-L123C93" }, { "DocsId": "M:System.ComponentModel.Composition.AttributedModelServices.ComposeExportedValue``1(System.ComponentModel.Composition.Hosting.CompositionContainer,System.String,``0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs#L128C13-L133C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs#L128C13-L133C10" }, { "DocsId": "M:System.ComponentModel.Composition.AttributedModelServices.AddPart(System.ComponentModel.Composition.Hosting.CompositionBatch,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs#L137C13-L145C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs#L137C13-L145C25" }, { "DocsId": "M:System.ComponentModel.Composition.AttributedModelServices.ComposeParts(System.ComponentModel.Composition.Hosting.CompositionContainer,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs#L150C13-L158C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs#L150C13-L158C10" }, { "DocsId": "M:System.ComponentModel.Composition.AttributedModelServices.SatisfyImportsOnce(System.ComponentModel.Composition.ICompositionService,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs#L180C13-L187C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs#L180C13-L187C25" }, { "DocsId": "M:System.ComponentModel.Composition.AttributedModelServices.SatisfyImportsOnce(System.ComponentModel.Composition.ICompositionService,System.Object,System.Reflection.ReflectionContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs#L211C13-L219C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs#L211C13-L219C25" }, { "DocsId": "M:System.ComponentModel.Composition.AttributedModelServices.Exports(System.ComponentModel.Composition.Primitives.ComposablePartDefinition,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs#L232C13-L235C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs#L232C13-L235C88" }, { "DocsId": "M:System.ComponentModel.Composition.AttributedModelServices.Exports``1(System.ComponentModel.Composition.Primitives.ComposablePartDefinition)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs#L248C13-L250C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs#L248C13-L250C44" }, { "DocsId": "M:System.ComponentModel.Composition.AttributedModelServices.Imports(System.ComponentModel.Composition.Primitives.ComposablePartDefinition,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs#L263C13-L266C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs#L263C13-L266C88" }, { "DocsId": "M:System.ComponentModel.Composition.AttributedModelServices.Imports``1(System.ComponentModel.Composition.Primitives.ComposablePartDefinition)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs#L279C13-L281C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs#L279C13-L281C44" }, { "DocsId": "M:System.ComponentModel.Composition.AttributedModelServices.Imports(System.ComponentModel.Composition.Primitives.ComposablePartDefinition,System.Type,System.ComponentModel.Composition.Primitives.ImportCardinality)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs#L295C13-L298C107" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs#L295C13-L298C107" }, { "DocsId": "M:System.ComponentModel.Composition.AttributedModelServices.Imports``1(System.ComponentModel.Composition.Primitives.ComposablePartDefinition,System.ComponentModel.Composition.Primitives.ImportCardinality)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs#L312C13-L314C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs#L312C13-L314C63" } ], "DocsId": "T:System.ComponentModel.Composition.AttributedModelServices", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AttributedModelServices.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.CatalogReflectionContextAttribute.#ctor(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CatalogReflectionContextAttribute.cs#L18C9-L23C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CatalogReflectionContextAttribute.cs#L18C9-L23C10" }, { "DocsId": "M:System.ComponentModel.Composition.CatalogReflectionContextAttribute.CreateReflectionContext", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CatalogReflectionContextAttribute.cs#L27C13-L46C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CatalogReflectionContextAttribute.cs#L27C13-L46C38" } ], "DocsId": "T:System.ComponentModel.Composition.CatalogReflectionContextAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CatalogReflectionContextAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CatalogReflectionContextAttribute.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.ChangeRejectedException.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ChangeRejectedException.cs#L19C15-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ChangeRejectedException.cs#L19C15-L21C10" }, { "DocsId": "M:System.ComponentModel.Composition.ChangeRejectedException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ChangeRejectedException.cs#L27C15-L29C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ChangeRejectedException.cs#L27C15-L29C10" }, { "DocsId": "M:System.ComponentModel.Composition.ChangeRejectedException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ChangeRejectedException.cs#L35C15-L37C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ChangeRejectedException.cs#L35C15-L37C10" }, { "DocsId": "M:System.ComponentModel.Composition.ChangeRejectedException.#ctor(System.Collections.Generic.IEnumerable{System.ComponentModel.Composition.CompositionError})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ChangeRejectedException.cs#L44C15-L46C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ChangeRejectedException.cs#L44C15-L46C10" }, { "DocsId": "P:System.ComponentModel.Composition.ChangeRejectedException.Message", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ChangeRejectedException.cs#L59C17-L61C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ChangeRejectedException.cs#L59C17-L61C35" } ], "DocsId": "T:System.ComponentModel.Composition.ChangeRejectedException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ChangeRejectedException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ChangeRejectedException.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.CompositionContractMismatchException.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CompositionContractMismatchException.cs#L21C15-L23C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CompositionContractMismatchException.cs#L21C15-L23C10" }, { "DocsId": "M:System.ComponentModel.Composition.CompositionContractMismatchException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CompositionContractMismatchException.cs#L35C15-L37C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CompositionContractMismatchException.cs#L35C15-L37C10" }, { "DocsId": "M:System.ComponentModel.Composition.CompositionContractMismatchException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CompositionContractMismatchException.cs#L55C15-L57C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CompositionContractMismatchException.cs#L55C15-L57C10" }, { "DocsId": "M:System.ComponentModel.Composition.CompositionContractMismatchException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CompositionContractMismatchException.cs#L85C15-L87C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CompositionContractMismatchException.cs#L85C15-L87C10" } ], "DocsId": "T:System.ComponentModel.Composition.CompositionContractMismatchException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CompositionContractMismatchException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CompositionContractMismatchException.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.CompositionError.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CompositionError.cs#L32C15-L34C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CompositionError.cs#L32C15-L34C10" }, { "DocsId": "M:System.ComponentModel.Composition.CompositionError.#ctor(System.String,System.ComponentModel.Composition.Primitives.ICompositionElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CompositionError.cs#L53C15-L55C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CompositionError.cs#L53C15-L55C10" }, { "DocsId": "M:System.ComponentModel.Composition.CompositionError.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CompositionError.cs#L73C15-L75C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CompositionError.cs#L73C15-L75C10" }, { "DocsId": "M:System.ComponentModel.Composition.CompositionError.#ctor(System.String,System.ComponentModel.Composition.Primitives.ICompositionElement,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CompositionError.cs#L99C15-L101C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CompositionError.cs#L99C15-L101C10" }, { "DocsId": "M:System.ComponentModel.Composition.CompositionError.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CompositionError.cs#L165C13-L165C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CompositionError.cs#L165C13-L165C32" }, { "DocsId": "P:System.ComponentModel.Composition.CompositionError.Element", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CompositionError.cs#L120C19-L120C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CompositionError.cs#L120C19-L120C35" }, { "DocsId": "P:System.ComponentModel.Composition.CompositionError.Description", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CompositionError.cs#L132C19-L132C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CompositionError.cs#L132C19-L132C39" }, { "DocsId": "P:System.ComponentModel.Composition.CompositionError.Exception", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CompositionError.cs#L144C19-L144C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CompositionError.cs#L144C19-L144C37" } ], "DocsId": "T:System.ComponentModel.Composition.CompositionError", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CompositionError.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CompositionError.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.CompositionException.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CompositionException.cs#L30C19-L32C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CompositionException.cs#L30C19-L32C10" }, { "DocsId": "M:System.ComponentModel.Composition.CompositionException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CompositionException.cs#L44C15-L46C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CompositionException.cs#L44C15-L46C10" }, { "DocsId": "M:System.ComponentModel.Composition.CompositionException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CompositionException.cs#L64C15-L66C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CompositionException.cs#L64C15-L66C10" }, { "DocsId": "M:System.ComponentModel.Composition.CompositionException.#ctor(System.Collections.Generic.IEnumerable{System.ComponentModel.Composition.CompositionError})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CompositionException.cs#L87C15-L89C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CompositionException.cs#L87C15-L89C10" }, { "DocsId": "P:System.ComponentModel.Composition.CompositionException.Errors", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CompositionException.cs#L108C19-L108C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CompositionException.cs#L108C19-L108C34" }, { "DocsId": "P:System.ComponentModel.Composition.CompositionException.Message", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CompositionException.cs#L122C17-L130C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CompositionException.cs#L122C17-L130C46" }, { "DocsId": "P:System.ComponentModel.Composition.CompositionException.RootCauses", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CompositionException.cs#L138C17-L156C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CompositionException.cs#L138C17-L156C65" } ], "DocsId": "T:System.ComponentModel.Composition.CompositionException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CompositionException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CompositionException.cs" }, { "Members": [ { "DocsId": "F:System.ComponentModel.Composition.CreationPolicy.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CreationPolicy.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CreationPolicy.cs" }, { "DocsId": "F:System.ComponentModel.Composition.CreationPolicy.Any", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CreationPolicy.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CreationPolicy.cs" }, { "DocsId": "F:System.ComponentModel.Composition.CreationPolicy.Shared", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CreationPolicy.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CreationPolicy.cs" }, { "DocsId": "F:System.ComponentModel.Composition.CreationPolicy.NonShared", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CreationPolicy.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CreationPolicy.cs" } ], "DocsId": "T:System.ComponentModel.Composition.CreationPolicy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CreationPolicy.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/CreationPolicy.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.ExportAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ExportAttribute.cs#L31C15-L33C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ExportAttribute.cs#L31C15-L33C10" }, { "DocsId": "M:System.ComponentModel.Composition.ExportAttribute.#ctor(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ExportAttribute.cs#L62C15-L64C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ExportAttribute.cs#L62C15-L64C10" }, { "DocsId": "M:System.ComponentModel.Composition.ExportAttribute.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ExportAttribute.cs#L87C15-L89C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ExportAttribute.cs#L87C15-L89C10" }, { "DocsId": "M:System.ComponentModel.Composition.ExportAttribute.#ctor(System.String,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ExportAttribute.cs#L116C9-L120C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ExportAttribute.cs#L116C9-L120C10" }, { "DocsId": "P:System.ComponentModel.Composition.ExportAttribute.ContractName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ExportAttribute.cs#L129C39-L129C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ExportAttribute.cs#L129C39-L129C43" }, { "DocsId": "P:System.ComponentModel.Composition.ExportAttribute.ContractType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ExportAttribute.cs#L139C37-L139C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ExportAttribute.cs#L139C37-L139C41" } ], "DocsId": "T:System.ComponentModel.Composition.ExportAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ExportAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ExportAttribute.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.ExportFactory`1.#ctor(System.Func{System.Tuple{`0,System.Action}})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ExportFactoryOfT.cs#L10C9-L15C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ExportFactoryOfT.cs#L10C9-L15C10" }, { "DocsId": "M:System.ComponentModel.Composition.ExportFactory`1.CreateExport", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ExportFactoryOfT.cs#L19C13-L20C109" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ExportFactoryOfT.cs#L19C13-L20C109" } ], "DocsId": "T:System.ComponentModel.Composition.ExportFactory`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ExportFactoryOfT.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ExportFactoryOfT.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.ExportFactory`2.#ctor(System.Func{System.Tuple{`0,System.Action}},`1)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ExportFactoryOfTTMetadata.cs#L11C15-L14C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ExportFactoryOfTTMetadata.cs#L11C15-L14C10" }, { "DocsId": "P:System.ComponentModel.Composition.ExportFactory`2.Metadata", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ExportFactoryOfTTMetadata.cs#L18C19-L18C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ExportFactoryOfTTMetadata.cs#L18C19-L18C36" } ], "DocsId": "T:System.ComponentModel.Composition.ExportFactory`2", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ExportFactoryOfTTMetadata.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ExportFactoryOfTTMetadata.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.ExportLifetimeContext`1.#ctor(`0,System.Action)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ExportLifetimeContextOfT.cs#L11C9-L15C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ExportLifetimeContextOfT.cs#L11C9-L15C10" }, { "DocsId": "M:System.ComponentModel.Composition.ExportLifetimeContext`1.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ExportLifetimeContextOfT.cs#L27C13-L28C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ExportLifetimeContextOfT.cs#L27C13-L28C10" }, { "DocsId": "P:System.ComponentModel.Composition.ExportLifetimeContext`1.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ExportLifetimeContextOfT.cs#L21C17-L21C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ExportLifetimeContextOfT.cs#L21C17-L21C31" } ], "DocsId": "T:System.ComponentModel.Composition.ExportLifetimeContext`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ExportLifetimeContextOfT.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ExportLifetimeContextOfT.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.ExportMetadataAttribute.#ctor(System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ExportMetadataAttribute.cs#L27C9-L31C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ExportMetadataAttribute.cs#L27C9-L31C10" }, { "DocsId": "P:System.ComponentModel.Composition.ExportMetadataAttribute.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ExportMetadataAttribute.cs#L41C13-L41C17" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ExportMetadataAttribute.cs#L41C13-L41C17" }, { "DocsId": "P:System.ComponentModel.Composition.ExportMetadataAttribute.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ExportMetadataAttribute.cs#L53C13-L53C17" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ExportMetadataAttribute.cs#L53C13-L53C17" }, { "DocsId": "P:System.ComponentModel.Composition.ExportMetadataAttribute.IsMultiple", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ExportMetadataAttribute.cs#L59C13-L59C17" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ExportMetadataAttribute.cs#L59C13-L59C17" } ], "DocsId": "T:System.ComponentModel.Composition.ExportMetadataAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ExportMetadataAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ExportMetadataAttribute.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.ICompositionService.SatisfyImportsOnce(System.ComponentModel.Composition.Primitives.ComposablePart)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ICompositionService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ICompositionService.cs" } ], "DocsId": "T:System.ComponentModel.Composition.ICompositionService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ICompositionService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ICompositionService.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.ImportAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportAttribute.cs#L32C15-L34C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportAttribute.cs#L32C15-L34C10" }, { "DocsId": "M:System.ComponentModel.Composition.ImportAttribute.#ctor(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportAttribute.cs#L61C15-L63C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportAttribute.cs#L61C15-L63C10" }, { "DocsId": "M:System.ComponentModel.Composition.ImportAttribute.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportAttribute.cs#L85C15-L87C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportAttribute.cs#L85C15-L87C10" }, { "DocsId": "M:System.ComponentModel.Composition.ImportAttribute.#ctor(System.String,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportAttribute.cs#L89C9-L93C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportAttribute.cs#L89C9-L93C10" }, { "DocsId": "M:System.ComponentModel.Composition.ImportAttribute.System#ComponentModel#Composition#IAttributedImport#get_Cardinality", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportAttribute.cs#L186C17-L190C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportAttribute.cs#L186C17-L190C53" }, { "DocsId": "P:System.ComponentModel.Composition.ImportAttribute.ContractName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportAttribute.cs#L102C39-L102C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportAttribute.cs#L102C39-L102C43" }, { "DocsId": "P:System.ComponentModel.Composition.ImportAttribute.ContractType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportAttribute.cs#L113C37-L113C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportAttribute.cs#L113C37-L113C41" }, { "DocsId": "P:System.ComponentModel.Composition.ImportAttribute.AllowDefault", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportAttribute.cs#L135C36-L135C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportAttribute.cs#L135C36-L135C40" }, { "DocsId": "P:System.ComponentModel.Composition.ImportAttribute.AllowRecomposition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportAttribute.cs#L148C42-L148C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportAttribute.cs#L148C42-L148C46" }, { "DocsId": "P:System.ComponentModel.Composition.ImportAttribute.RequiredCreationPolicy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportAttribute.cs#L164C56-L164C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportAttribute.cs#L164C56-L164C60" }, { "DocsId": "P:System.ComponentModel.Composition.ImportAttribute.Source", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportAttribute.cs#L180C38-L180C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportAttribute.cs#L180C38-L180C42" }, { "DocsId": "P:System.ComponentModel.Composition.ImportAttribute.System#ComponentModel#Composition#IAttributedImport#Cardinality", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportAttribute.cs#L186C17-L190C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportAttribute.cs#L186C17-L190C53" } ], "DocsId": "T:System.ComponentModel.Composition.ImportAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportAttribute.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.ImportCardinalityMismatchException.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportCardinalityMismatchException.cs#L24C15-L26C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportCardinalityMismatchException.cs#L24C15-L26C10" }, { "DocsId": "M:System.ComponentModel.Composition.ImportCardinalityMismatchException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportCardinalityMismatchException.cs#L38C15-L40C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportCardinalityMismatchException.cs#L38C15-L40C10" }, { "DocsId": "M:System.ComponentModel.Composition.ImportCardinalityMismatchException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportCardinalityMismatchException.cs#L58C15-L60C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportCardinalityMismatchException.cs#L58C15-L60C10" }, { "DocsId": "M:System.ComponentModel.Composition.ImportCardinalityMismatchException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportCardinalityMismatchException.cs#L88C15-L90C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportCardinalityMismatchException.cs#L88C15-L90C10" } ], "DocsId": "T:System.ComponentModel.Composition.ImportCardinalityMismatchException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportCardinalityMismatchException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportCardinalityMismatchException.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.ImportingConstructorAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportingConstructorAttribute.cs#L22C9-L24C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportingConstructorAttribute.cs#L22C9-L24C10" } ], "DocsId": "T:System.ComponentModel.Composition.ImportingConstructorAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportingConstructorAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportingConstructorAttribute.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.ImportManyAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportManyAttribute.cs#L32C15-L34C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportManyAttribute.cs#L32C15-L34C10" }, { "DocsId": "M:System.ComponentModel.Composition.ImportManyAttribute.#ctor(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportManyAttribute.cs#L61C15-L63C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportManyAttribute.cs#L61C15-L63C10" }, { "DocsId": "M:System.ComponentModel.Composition.ImportManyAttribute.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportManyAttribute.cs#L85C15-L87C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportManyAttribute.cs#L85C15-L87C10" }, { "DocsId": "M:System.ComponentModel.Composition.ImportManyAttribute.#ctor(System.String,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportManyAttribute.cs#L89C9-L93C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportManyAttribute.cs#L89C9-L93C10" }, { "DocsId": "M:System.ComponentModel.Composition.ImportManyAttribute.System#ComponentModel#Composition#IAttributedImport#get_Cardinality", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportManyAttribute.cs#L162C19-L162C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportManyAttribute.cs#L162C19-L162C55" }, { "DocsId": "P:System.ComponentModel.Composition.ImportManyAttribute.ContractName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportManyAttribute.cs#L102C39-L102C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportManyAttribute.cs#L102C39-L102C43" }, { "DocsId": "P:System.ComponentModel.Composition.ImportManyAttribute.ContractType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportManyAttribute.cs#L113C37-L113C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportManyAttribute.cs#L113C37-L113C41" }, { "DocsId": "P:System.ComponentModel.Composition.ImportManyAttribute.AllowRecomposition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportManyAttribute.cs#L126C42-L126C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportManyAttribute.cs#L126C42-L126C46" }, { "DocsId": "P:System.ComponentModel.Composition.ImportManyAttribute.RequiredCreationPolicy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportManyAttribute.cs#L142C56-L142C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportManyAttribute.cs#L142C56-L142C60" }, { "DocsId": "P:System.ComponentModel.Composition.ImportManyAttribute.Source", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportManyAttribute.cs#L158C38-L158C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportManyAttribute.cs#L158C38-L158C42" }, { "DocsId": "P:System.ComponentModel.Composition.ImportManyAttribute.System#ComponentModel#Composition#IAttributedImport#Cardinality", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportManyAttribute.cs#L162C19-L162C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportManyAttribute.cs#L162C19-L162C55" } ], "DocsId": "T:System.ComponentModel.Composition.ImportManyAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportManyAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportManyAttribute.cs" }, { "Members": [ { "DocsId": "F:System.ComponentModel.Composition.ImportSource.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportSource.cs" }, { "DocsId": "F:System.ComponentModel.Composition.ImportSource.Any", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportSource.cs" }, { "DocsId": "F:System.ComponentModel.Composition.ImportSource.Local", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportSource.cs" }, { "DocsId": "F:System.ComponentModel.Composition.ImportSource.NonLocal", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportSource.cs" } ], "DocsId": "T:System.ComponentModel.Composition.ImportSource", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ImportSource.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.InheritedExportAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/InheritedExportAttribute.cs#L30C15-L32C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/InheritedExportAttribute.cs#L30C15-L32C10" }, { "DocsId": "M:System.ComponentModel.Composition.InheritedExportAttribute.#ctor(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/InheritedExportAttribute.cs#L60C15-L62C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/InheritedExportAttribute.cs#L60C15-L62C10" }, { "DocsId": "M:System.ComponentModel.Composition.InheritedExportAttribute.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/InheritedExportAttribute.cs#L85C15-L87C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/InheritedExportAttribute.cs#L85C15-L87C10" }, { "DocsId": "M:System.ComponentModel.Composition.InheritedExportAttribute.#ctor(System.String,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/InheritedExportAttribute.cs#L115C15-L117C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/InheritedExportAttribute.cs#L115C15-L117C10" } ], "DocsId": "T:System.ComponentModel.Composition.InheritedExportAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/InheritedExportAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/InheritedExportAttribute.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.IPartImportsSatisfiedNotification.OnImportsSatisfied", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/IPartImportsSatisfiedNotification.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/IPartImportsSatisfiedNotification.cs" } ], "DocsId": "T:System.ComponentModel.Composition.IPartImportsSatisfiedNotification", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/IPartImportsSatisfiedNotification.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/IPartImportsSatisfiedNotification.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.MetadataAttributeAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/MetadataAttributeAttribute.cs#L16C9-L18C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/MetadataAttributeAttribute.cs#L16C9-L18C10" } ], "DocsId": "T:System.ComponentModel.Composition.MetadataAttributeAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/MetadataAttributeAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/MetadataAttributeAttribute.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.MetadataViewImplementationAttribute.#ctor(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/MetadataViewImplementationAttribute.cs#L26C9-L29C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/MetadataViewImplementationAttribute.cs#L26C9-L29C10" }, { "DocsId": "P:System.ComponentModel.Composition.MetadataViewImplementationAttribute.ImplementationType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/MetadataViewImplementationAttribute.cs#L39C43-L39C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/MetadataViewImplementationAttribute.cs#L39C43-L39C47" } ], "DocsId": "T:System.ComponentModel.Composition.MetadataViewImplementationAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/MetadataViewImplementationAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/MetadataViewImplementationAttribute.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.PartCreationPolicyAttribute.#ctor(System.ComponentModel.Composition.CreationPolicy)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/PartCreationPolicyAttribute.cs#L18C9-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/PartCreationPolicyAttribute.cs#L18C9-L21C10" }, { "DocsId": "P:System.ComponentModel.Composition.PartCreationPolicyAttribute.CreationPolicy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/PartCreationPolicyAttribute.cs#L31C48-L31C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/PartCreationPolicyAttribute.cs#L31C48-L31C52" } ], "DocsId": "T:System.ComponentModel.Composition.PartCreationPolicyAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/PartCreationPolicyAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/PartCreationPolicyAttribute.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.PartMetadataAttribute.#ctor(System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/PartMetadataAttribute.cs#L25C9-L29C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/PartMetadataAttribute.cs#L25C9-L29C10" }, { "DocsId": "P:System.ComponentModel.Composition.PartMetadataAttribute.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/PartMetadataAttribute.cs#L39C13-L39C17" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/PartMetadataAttribute.cs#L39C13-L39C17" }, { "DocsId": "P:System.ComponentModel.Composition.PartMetadataAttribute.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/PartMetadataAttribute.cs#L51C13-L51C17" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/PartMetadataAttribute.cs#L51C13-L51C17" } ], "DocsId": "T:System.ComponentModel.Composition.PartMetadataAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/PartMetadataAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/PartMetadataAttribute.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.PartNotDiscoverableAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/PartNotDiscoverableAttribute.cs#L16C9-L18C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/PartNotDiscoverableAttribute.cs#L16C9-L18C10" } ], "DocsId": "T:System.ComponentModel.Composition.PartNotDiscoverableAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/PartNotDiscoverableAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/PartNotDiscoverableAttribute.cs" }, { "Members": [ { "DocsId": "F:System.ComponentModel.Composition.AdaptationConstants.AdapterContractName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AdaptationConstants.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AdaptationConstants.cs" }, { "DocsId": "F:System.ComponentModel.Composition.AdaptationConstants.AdapterFromContractMetadataName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AdaptationConstants.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AdaptationConstants.cs" }, { "DocsId": "F:System.ComponentModel.Composition.AdaptationConstants.AdapterToContractMetadataName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AdaptationConstants.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AdaptationConstants.cs" } ], "DocsId": "T:System.ComponentModel.Composition.AdaptationConstants", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AdaptationConstants.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/AdaptationConstants.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.ReflectionModel.LazyMemberInfo.#ctor(System.Reflection.MemberInfo)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/LazyMemberInfo.cs#L19C13-L43C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/LazyMemberInfo.cs#L19C13-L43C10" }, { "DocsId": "M:System.ComponentModel.Composition.ReflectionModel.LazyMemberInfo.#ctor(System.Reflection.MemberTypes,System.Reflection.MemberInfo[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/LazyMemberInfo.cs#L47C13-L59C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/LazyMemberInfo.cs#L47C13-L59C10" }, { "DocsId": "M:System.ComponentModel.Composition.ReflectionModel.LazyMemberInfo.#ctor(System.Reflection.MemberTypes,System.Func{System.Reflection.MemberInfo[]})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/LazyMemberInfo.cs#L63C13-L69C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/LazyMemberInfo.cs#L63C13-L69C10" }, { "DocsId": "M:System.ComponentModel.Composition.ReflectionModel.LazyMemberInfo.GetAccessors", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/LazyMemberInfo.cs#L78C13-L91C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/LazyMemberInfo.cs#L78C13-L91C32" }, { "DocsId": "M:System.ComponentModel.Composition.ReflectionModel.LazyMemberInfo.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/LazyMemberInfo.cs#L96C13-L106C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/LazyMemberInfo.cs#L96C13-L106C73" }, { "DocsId": "M:System.ComponentModel.Composition.ReflectionModel.LazyMemberInfo.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/LazyMemberInfo.cs#L110C13-L110C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/LazyMemberInfo.cs#L110C13-L110C57" }, { "DocsId": "M:System.ComponentModel.Composition.ReflectionModel.LazyMemberInfo.Equals(System.ComponentModel.Composition.ReflectionModel.LazyMemberInfo)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/LazyMemberInfo.cs#L118C13-L134C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/LazyMemberInfo.cs#L118C13-L134C63" }, { "DocsId": "M:System.ComponentModel.Composition.ReflectionModel.LazyMemberInfo.op_Equality(System.ComponentModel.Composition.ReflectionModel.LazyMemberInfo,System.ComponentModel.Composition.ReflectionModel.LazyMemberInfo)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/LazyMemberInfo.cs#L139C13-L139C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/LazyMemberInfo.cs#L139C13-L139C39" }, { "DocsId": "M:System.ComponentModel.Composition.ReflectionModel.LazyMemberInfo.op_Inequality(System.ComponentModel.Composition.ReflectionModel.LazyMemberInfo,System.ComponentModel.Composition.ReflectionModel.LazyMemberInfo)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/LazyMemberInfo.cs#L144C13-L144C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/LazyMemberInfo.cs#L144C13-L144C40" }, { "DocsId": "P:System.ComponentModel.Composition.ReflectionModel.LazyMemberInfo.MemberType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/LazyMemberInfo.cs#L73C19-L73C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/LazyMemberInfo.cs#L73C19-L73C38" } ], "DocsId": "T:System.ComponentModel.Composition.ReflectionModel.LazyMemberInfo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/LazyMemberInfo.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/LazyMemberInfo.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.ReflectionModel.ReflectionModelServices.GetPartType(System.ComponentModel.Composition.Primitives.ComposablePartDefinition)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/ReflectionModelServices.cs#L19C13-L27C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/ReflectionModelServices.cs#L19C13-L27C63" }, { "DocsId": "M:System.ComponentModel.Composition.ReflectionModel.ReflectionModelServices.IsDisposalRequired(System.ComponentModel.Composition.Primitives.ComposablePartDefinition)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/ReflectionModelServices.cs#L32C13-L40C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/ReflectionModelServices.cs#L32C13-L40C64" }, { "DocsId": "M:System.ComponentModel.Composition.ReflectionModel.ReflectionModelServices.GetExportingMember(System.ComponentModel.Composition.Primitives.ExportDefinition)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/ReflectionModelServices.cs#L45C13-L55C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/ReflectionModelServices.cs#L45C13-L55C67" }, { "DocsId": "M:System.ComponentModel.Composition.ReflectionModel.ReflectionModelServices.GetImportingMember(System.ComponentModel.Composition.Primitives.ImportDefinition)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/ReflectionModelServices.cs#L60C13-L70C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/ReflectionModelServices.cs#L60C13-L70C73" }, { "DocsId": "M:System.ComponentModel.Composition.ReflectionModel.ReflectionModelServices.GetImportingParameter(System.ComponentModel.Composition.Primitives.ImportDefinition)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/ReflectionModelServices.cs#L75C13-L86C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/ReflectionModelServices.cs#L75C13-L86C79" }, { "DocsId": "M:System.ComponentModel.Composition.ReflectionModel.ReflectionModelServices.IsImportingParameter(System.ComponentModel.Composition.Primitives.ImportDefinition)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/ReflectionModelServices.cs#L91C13-L101C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/ReflectionModelServices.cs#L91C13-L101C78" }, { "DocsId": "M:System.ComponentModel.Composition.ReflectionModel.ReflectionModelServices.IsExportFactoryImportDefinition(System.ComponentModel.Composition.Primitives.ImportDefinition)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/ReflectionModelServices.cs#L106C13-L108C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/ReflectionModelServices.cs#L106C13-L108C71" }, { "DocsId": "M:System.ComponentModel.Composition.ReflectionModel.ReflectionModelServices.GetExportFactoryProductImportDefinition(System.ComponentModel.Composition.Primitives.ImportDefinition)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/ReflectionModelServices.cs#L113C13-L123C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/ReflectionModelServices.cs#L113C13-L123C72" }, { "DocsId": "M:System.ComponentModel.Composition.ReflectionModel.ReflectionModelServices.CreatePartDefinition(System.Lazy{System.Type},System.Boolean,System.Lazy{System.Collections.Generic.IEnumerable{System.ComponentModel.Composition.Primitives.ImportDefinition}},System.Lazy{System.Collections.Generic.IEnumerable{System.ComponentModel.Composition.Primitives.ExportDefinition}},System.Lazy{System.Collections.Generic.IDictionary{System.String,System.Object}},System.ComponentModel.Composition.Primitives.ICompositionElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/ReflectionModelServices.cs#L134C13-L143C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/ReflectionModelServices.cs#L134C13-L143C30" }, { "DocsId": "M:System.ComponentModel.Composition.ReflectionModel.ReflectionModelServices.CreateExportDefinition(System.ComponentModel.Composition.ReflectionModel.LazyMemberInfo,System.String,System.Lazy{System.Collections.Generic.IDictionary{System.String,System.Object}},System.ComponentModel.Composition.Primitives.ICompositionElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/ReflectionModelServices.cs#L152C13-L158C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/ReflectionModelServices.cs#L152C13-L158C25" }, { "DocsId": "M:System.ComponentModel.Composition.ReflectionModel.ReflectionModelServices.CreateImportDefinition(System.ComponentModel.Composition.ReflectionModel.LazyMemberInfo,System.String,System.String,System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{System.String,System.Type}},System.ComponentModel.Composition.Primitives.ImportCardinality,System.Boolean,System.ComponentModel.Composition.CreationPolicy,System.ComponentModel.Composition.Primitives.ICompositionElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/ReflectionModelServices.cs#L171C13-L171C214" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/ReflectionModelServices.cs#L171C13-L171C214" }, { "DocsId": "M:System.ComponentModel.Composition.ReflectionModel.ReflectionModelServices.CreateImportDefinition(System.ComponentModel.Composition.ReflectionModel.LazyMemberInfo,System.String,System.String,System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{System.String,System.Type}},System.ComponentModel.Composition.Primitives.ImportCardinality,System.Boolean,System.ComponentModel.Composition.CreationPolicy,System.Collections.Generic.IDictionary{System.String,System.Object},System.Boolean,System.ComponentModel.Composition.Primitives.ICompositionElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/ReflectionModelServices.cs#L186C13-L197C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/ReflectionModelServices.cs#L186C13-L197C25" }, { "DocsId": "M:System.ComponentModel.Composition.ReflectionModel.ReflectionModelServices.CreateImportDefinition(System.ComponentModel.Composition.ReflectionModel.LazyMemberInfo,System.String,System.String,System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{System.String,System.Type}},System.ComponentModel.Composition.Primitives.ImportCardinality,System.Boolean,System.Boolean,System.ComponentModel.Composition.CreationPolicy,System.Collections.Generic.IDictionary{System.String,System.Object},System.Boolean,System.ComponentModel.Composition.Primitives.ICompositionElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/ReflectionModelServices.cs#L213C13-L243C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/ReflectionModelServices.cs#L213C13-L243C29" }, { "DocsId": "M:System.ComponentModel.Composition.ReflectionModel.ReflectionModelServices.CreateImportDefinition(System.Lazy{System.Reflection.ParameterInfo},System.String,System.String,System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{System.String,System.Type}},System.ComponentModel.Composition.Primitives.ImportCardinality,System.ComponentModel.Composition.CreationPolicy,System.ComponentModel.Composition.Primitives.ICompositionElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/ReflectionModelServices.cs#L256C13-L256C192" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/ReflectionModelServices.cs#L256C13-L256C192" }, { "DocsId": "M:System.ComponentModel.Composition.ReflectionModel.ReflectionModelServices.CreateImportDefinition(System.Lazy{System.Reflection.ParameterInfo},System.String,System.String,System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{System.String,System.Type}},System.ComponentModel.Composition.Primitives.ImportCardinality,System.ComponentModel.Composition.CreationPolicy,System.Collections.Generic.IDictionary{System.String,System.Object},System.Boolean,System.ComponentModel.Composition.Primitives.ICompositionElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/ReflectionModelServices.cs#L270C13-L298C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/ReflectionModelServices.cs#L270C13-L298C29" }, { "DocsId": "M:System.ComponentModel.Composition.ReflectionModel.ReflectionModelServices.TryMakeGenericPartDefinition(System.ComponentModel.Composition.Primitives.ComposablePartDefinition,System.Collections.Generic.IEnumerable{System.Type},System.ComponentModel.Composition.Primitives.ComposablePartDefinition@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/ReflectionModelServices.cs#L304C13-L313C123" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/ReflectionModelServices.cs#L304C13-L313C123" } ], "DocsId": "T:System.ComponentModel.Composition.ReflectionModel.ReflectionModelServices", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/ReflectionModelServices.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/ReflectionModel/ReflectionModelServices.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.Primitives.ComposablePart.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePart.cs#L17C9-L19C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePart.cs#L17C9-L19C10" }, { "DocsId": "M:System.ComponentModel.Composition.Primitives.ComposablePart.Activate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePart.cs#L127C9-L127C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePart.cs#L127C9-L127C10" }, { "DocsId": "M:System.ComponentModel.Composition.Primitives.ComposablePart.GetExportedValue(System.ComponentModel.Composition.Primitives.ExportDefinition)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePart.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePart.cs" }, { "DocsId": "M:System.ComponentModel.Composition.Primitives.ComposablePart.SetImport(System.ComponentModel.Composition.Primitives.ImportDefinition,System.Collections.Generic.IEnumerable{System.ComponentModel.Composition.Primitives.Export})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePart.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePart.cs" }, { "DocsId": "P:System.ComponentModel.Composition.Primitives.ComposablePart.ExportDefinitions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePart.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePart.cs" }, { "DocsId": "P:System.ComponentModel.Composition.Primitives.ComposablePart.ImportDefinitions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePart.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePart.cs" }, { "DocsId": "P:System.ComponentModel.Composition.Primitives.ComposablePart.Metadata", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePart.cs#L111C17-L111C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePart.cs#L111C17-L111C55" } ], "DocsId": "T:System.ComponentModel.Composition.Primitives.ComposablePart", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePart.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePart.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.Primitives.ComposablePartCatalog.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePartCatalog.cs#L32C9-L34C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePartCatalog.cs#L32C9-L34C10" }, { "DocsId": "M:System.ComponentModel.Composition.Primitives.ComposablePartCatalog.GetExports(System.ComponentModel.Composition.Primitives.ImportDefinition)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePartCatalog.cs#L99C13-L117C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePartCatalog.cs#L99C13-L117C49" }, { "DocsId": "M:System.ComponentModel.Composition.Primitives.ComposablePartCatalog.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePartCatalog.cs#L130C13-L132C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePartCatalog.cs#L130C13-L132C10" }, { "DocsId": "M:System.ComponentModel.Composition.Primitives.ComposablePartCatalog.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePartCatalog.cs#L136C13-L137C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePartCatalog.cs#L136C13-L137C10" }, { "DocsId": "M:System.ComponentModel.Composition.Primitives.ComposablePartCatalog.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePartCatalog.cs#L160C13-L165C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePartCatalog.cs#L160C13-L165C42" }, { "DocsId": "M:System.ComponentModel.Composition.Primitives.ComposablePartCatalog.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePartCatalog.cs#L170C13-L170C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePartCatalog.cs#L170C13-L170C36" }, { "DocsId": "P:System.ComponentModel.Composition.Primitives.ComposablePartCatalog.Parts", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePartCatalog.cs#L56C17-L67C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePartCatalog.cs#L56C17-L67C40" } ], "DocsId": "T:System.ComponentModel.Composition.Primitives.ComposablePartCatalog", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePartCatalog.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePartCatalog.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.Primitives.ComposablePartDefinition.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePartDefinition.cs#L21C9-L23C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePartDefinition.cs#L21C9-L23C10" }, { "DocsId": "M:System.ComponentModel.Composition.Primitives.ComposablePartDefinition.CreatePart", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePartDefinition.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePartDefinition.cs" }, { "DocsId": "P:System.ComponentModel.Composition.Primitives.ComposablePartDefinition.ExportDefinitions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePartDefinition.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePartDefinition.cs" }, { "DocsId": "P:System.ComponentModel.Composition.Primitives.ComposablePartDefinition.ImportDefinitions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePartDefinition.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePartDefinition.cs" }, { "DocsId": "P:System.ComponentModel.Composition.Primitives.ComposablePartDefinition.Metadata", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePartDefinition.cs#L85C19-L85C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePartDefinition.cs#L85C19-L85C57" } ], "DocsId": "T:System.ComponentModel.Composition.Primitives.ComposablePartDefinition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePartDefinition.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePartDefinition.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.Primitives.ComposablePartException.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePartException.cs#L25C15-L27C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePartException.cs#L25C15-L27C10" }, { "DocsId": "M:System.ComponentModel.Composition.Primitives.ComposablePartException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePartException.cs#L54C95-L57C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePartException.cs#L54C95-L57C10" }, { "DocsId": "M:System.ComponentModel.Composition.Primitives.ComposablePartException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePartException.cs#L69C15-L71C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePartException.cs#L69C15-L71C10" }, { "DocsId": "M:System.ComponentModel.Composition.Primitives.ComposablePartException.#ctor(System.String,System.ComponentModel.Composition.Primitives.ICompositionElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePartException.cs#L90C15-L92C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePartException.cs#L90C15-L92C10" }, { "DocsId": "M:System.ComponentModel.Composition.Primitives.ComposablePartException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePartException.cs#L110C15-L112C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePartException.cs#L110C15-L112C10" }, { "DocsId": "M:System.ComponentModel.Composition.Primitives.ComposablePartException.#ctor(System.String,System.ComponentModel.Composition.Primitives.ICompositionElement,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePartException.cs#L136C15-L139C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePartException.cs#L136C15-L139C10" }, { "DocsId": "M:System.ComponentModel.Composition.Primitives.ComposablePartException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePartException.cs#L173C13-L175C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePartException.cs#L173C13-L175C10" }, { "DocsId": "P:System.ComponentModel.Composition.Primitives.ComposablePartException.Element", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePartException.cs#L150C19-L150C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePartException.cs#L150C19-L150C35" } ], "DocsId": "T:System.ComponentModel.Composition.Primitives.ComposablePartException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePartException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ComposablePartException.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.Primitives.ContractBasedImportDefinition.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ContractBasedImportDefinition.cs#L24C9-L44C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ContractBasedImportDefinition.cs#L24C9-L44C10" }, { "DocsId": "M:System.ComponentModel.Composition.Primitives.ContractBasedImportDefinition.#ctor(System.String,System.String,System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{System.String,System.Type}},System.ComponentModel.Composition.Primitives.ImportCardinality,System.Boolean,System.Boolean,System.ComponentModel.Composition.CreationPolicy)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ContractBasedImportDefinition.cs#L103C15-L105C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ContractBasedImportDefinition.cs#L103C15-L105C10" }, { "DocsId": "M:System.ComponentModel.Composition.Primitives.ContractBasedImportDefinition.#ctor(System.String,System.String,System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{System.String,System.Type}},System.ComponentModel.Composition.Primitives.ImportCardinality,System.Boolean,System.Boolean,System.ComponentModel.Composition.CreationPolicy,System.Collections.Generic.IDictionary{System.String,System.Object})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ContractBasedImportDefinition.cs#L24C9-L177C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ContractBasedImportDefinition.cs#L24C9-L177C10" }, { "DocsId": "M:System.ComponentModel.Composition.Primitives.ContractBasedImportDefinition.IsConstraintSatisfiedBy(System.ComponentModel.Composition.Primitives.ExportDefinition)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ContractBasedImportDefinition.cs#L297C13-L304C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ContractBasedImportDefinition.cs#L297C13-L304C60" }, { "DocsId": "M:System.ComponentModel.Composition.Primitives.ContractBasedImportDefinition.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ContractBasedImportDefinition.cs#L362C13-L379C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ContractBasedImportDefinition.cs#L362C13-L379C34" }, { "DocsId": "P:System.ComponentModel.Composition.Primitives.ContractBasedImportDefinition.RequiredTypeIdentity", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ContractBasedImportDefinition.cs#L189C19-L189C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ContractBasedImportDefinition.cs#L189C19-L189C48" }, { "DocsId": "P:System.ComponentModel.Composition.Primitives.ContractBasedImportDefinition.RequiredMetadata", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ContractBasedImportDefinition.cs#L213C17-L216C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ContractBasedImportDefinition.cs#L213C17-L216C42" }, { "DocsId": "P:System.ComponentModel.Composition.Primitives.ContractBasedImportDefinition.RequiredCreationPolicy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ContractBasedImportDefinition.cs#L252C19-L252C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ContractBasedImportDefinition.cs#L252C19-L252C50" }, { "DocsId": "P:System.ComponentModel.Composition.Primitives.ContractBasedImportDefinition.Constraint", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ContractBasedImportDefinition.cs#L273C13-L273C142" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ContractBasedImportDefinition.cs#L273C13-L273C142" } ], "DocsId": "T:System.ComponentModel.Composition.Primitives.ContractBasedImportDefinition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ContractBasedImportDefinition.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ContractBasedImportDefinition.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.Primitives.Export.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/Export.cs#L21C9-L34C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/Export.cs#L21C9-L34C10" }, { "DocsId": "M:System.ComponentModel.Composition.Primitives.Export.#ctor(System.String,System.Func{System.Object})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/Export.cs#L59C15-L61C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/Export.cs#L59C15-L61C10" }, { "DocsId": "M:System.ComponentModel.Composition.Primitives.Export.#ctor(System.String,System.Collections.Generic.IDictionary{System.String,System.Object},System.Func{System.Object})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/Export.cs#L92C15-L94C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/Export.cs#L92C15-L94C10" }, { "DocsId": "M:System.ComponentModel.Composition.Primitives.Export.#ctor(System.ComponentModel.Composition.Primitives.ExportDefinition,System.Func{System.Object})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/Export.cs#L21C9-L122C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/Export.cs#L21C9-L122C10" }, { "DocsId": "M:System.ComponentModel.Composition.Primitives.Export.GetExportedValueCore", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/Export.cs#L237C13-L242C89" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/Export.cs#L237C13-L242C89" }, { "DocsId": "P:System.ComponentModel.Composition.Primitives.Export.Definition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/Export.cs#L144C17-L149C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/Export.cs#L144C17-L149C83" }, { "DocsId": "P:System.ComponentModel.Composition.Primitives.Export.Metadata", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/Export.cs#L175C17-L175C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/Export.cs#L175C17-L175C44" }, { "DocsId": "P:System.ComponentModel.Composition.Primitives.Export.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/Export.cs#L202C17-L208C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/Export.cs#L202C17-L208C39" } ], "DocsId": "T:System.ComponentModel.Composition.Primitives.Export", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/Export.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/Export.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.Primitives.ExportDefinition.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ExportDefinition.cs#L17C9-L32C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ExportDefinition.cs#L17C9-L32C10" }, { "DocsId": "M:System.ComponentModel.Composition.Primitives.ExportDefinition.#ctor(System.String,System.Collections.Generic.IDictionary{System.String,System.Object})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ExportDefinition.cs#L17C9-L64C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ExportDefinition.cs#L17C9-L64C10" }, { "DocsId": "M:System.ComponentModel.Composition.Primitives.ExportDefinition.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ExportDefinition.cs#L133C13-L133C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ExportDefinition.cs#L133C13-L133C33" }, { "DocsId": "P:System.ComponentModel.Composition.Primitives.ExportDefinition.ContractName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ExportDefinition.cs#L86C17-L91C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ExportDefinition.cs#L86C17-L91C85" }, { "DocsId": "P:System.ComponentModel.Composition.Primitives.ExportDefinition.Metadata", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ExportDefinition.cs#L121C17-L121C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ExportDefinition.cs#L121C17-L121C34" } ], "DocsId": "T:System.ComponentModel.Composition.Primitives.ExportDefinition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ExportDefinition.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ExportDefinition.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.Primitives.ExportedDelegate.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ExportedDelegate.cs#L16C9-L16C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ExportedDelegate.cs#L16C9-L16C41" }, { "DocsId": "M:System.ComponentModel.Composition.Primitives.ExportedDelegate.#ctor(System.Object,System.Reflection.MethodInfo)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ExportedDelegate.cs#L18C9-L24C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ExportedDelegate.cs#L18C9-L24C10" }, { "DocsId": "M:System.ComponentModel.Composition.Primitives.ExportedDelegate.CreateDelegate(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ExportedDelegate.cs#L28C13-L43C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ExportedDelegate.cs#L28C13-L43C10" } ], "DocsId": "T:System.ComponentModel.Composition.Primitives.ExportedDelegate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ExportedDelegate.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ExportedDelegate.cs" }, { "Members": [ { "DocsId": "P:System.ComponentModel.Composition.Primitives.ICompositionElement.DisplayName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ICompositionElement.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ICompositionElement.cs" }, { "DocsId": "P:System.ComponentModel.Composition.Primitives.ICompositionElement.Origin", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ICompositionElement.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ICompositionElement.cs" } ], "DocsId": "T:System.ComponentModel.Composition.Primitives.ICompositionElement", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ICompositionElement.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ICompositionElement.cs" }, { "Members": [ { "DocsId": "F:System.ComponentModel.Composition.Primitives.ImportCardinality.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ImportCardinality.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ImportCardinality.cs" }, { "DocsId": "F:System.ComponentModel.Composition.Primitives.ImportCardinality.ZeroOrOne", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ImportCardinality.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ImportCardinality.cs" }, { "DocsId": "F:System.ComponentModel.Composition.Primitives.ImportCardinality.ExactlyOne", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ImportCardinality.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ImportCardinality.cs" }, { "DocsId": "F:System.ComponentModel.Composition.Primitives.ImportCardinality.ZeroOrMore", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ImportCardinality.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ImportCardinality.cs" } ], "DocsId": "T:System.ComponentModel.Composition.Primitives.ImportCardinality", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ImportCardinality.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ImportCardinality.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.Primitives.ImportDefinition.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ImportDefinition.cs#L20C9-L40C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ImportDefinition.cs#L20C9-L40C10" }, { "DocsId": "M:System.ComponentModel.Composition.Primitives.ImportDefinition.#ctor(System.Linq.Expressions.Expression{System.Func{System.ComponentModel.Composition.Primitives.ExportDefinition,System.Boolean}},System.String,System.ComponentModel.Composition.Primitives.ImportCardinality,System.Boolean,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ImportDefinition.cs#L82C15-L87C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ImportDefinition.cs#L82C15-L87C10" }, { "DocsId": "M:System.ComponentModel.Composition.Primitives.ImportDefinition.#ctor(System.Linq.Expressions.Expression{System.Func{System.ComponentModel.Composition.Primitives.ExportDefinition,System.Boolean}},System.String,System.ComponentModel.Composition.Primitives.ImportCardinality,System.Boolean,System.Boolean,System.Collections.Generic.IDictionary{System.String,System.Object})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ImportDefinition.cs#L90C15-L95C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ImportDefinition.cs#L90C15-L95C10" }, { "DocsId": "M:System.ComponentModel.Composition.Primitives.ImportDefinition.IsConstraintSatisfiedBy(System.ComponentModel.Composition.Primitives.ExportDefinition)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ImportDefinition.cs#L264C13-L268C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ImportDefinition.cs#L264C13-L268C65" }, { "DocsId": "M:System.ComponentModel.Composition.Primitives.ImportDefinition.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ImportDefinition.cs#L279C13-L279C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ImportDefinition.cs#L279C13-L279C47" }, { "DocsId": "P:System.ComponentModel.Composition.Primitives.ImportDefinition.ContractName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ImportDefinition.cs#L135C17-L135C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ImportDefinition.cs#L135C17-L135C38" }, { "DocsId": "P:System.ComponentModel.Composition.Primitives.ImportDefinition.Metadata", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ImportDefinition.cs#L165C17-L165C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ImportDefinition.cs#L165C17-L165C34" }, { "DocsId": "P:System.ComponentModel.Composition.Primitives.ImportDefinition.Cardinality", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ImportDefinition.cs#L180C19-L180C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ImportDefinition.cs#L180C19-L180C39" }, { "DocsId": "P:System.ComponentModel.Composition.Primitives.ImportDefinition.Constraint", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ImportDefinition.cs#L204C17-L209C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ImportDefinition.cs#L204C17-L209C83" }, { "DocsId": "P:System.ComponentModel.Composition.Primitives.ImportDefinition.IsPrerequisite", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ImportDefinition.cs#L224C19-L224C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ImportDefinition.cs#L224C19-L224C42" }, { "DocsId": "P:System.ComponentModel.Composition.Primitives.ImportDefinition.IsRecomposable", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ImportDefinition.cs#L237C19-L237C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ImportDefinition.cs#L237C19-L237C42" } ], "DocsId": "T:System.ComponentModel.Composition.Primitives.ImportDefinition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ImportDefinition.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Primitives/ImportDefinition.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.Hosting.AggregateCatalog.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AggregateCatalog.cs#L28C15-L30C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AggregateCatalog.cs#L28C15-L30C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.AggregateCatalog.#ctor(System.ComponentModel.Composition.Primitives.ComposablePartCatalog[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AggregateCatalog.cs#L47C15-L49C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AggregateCatalog.cs#L47C15-L49C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.AggregateCatalog.#ctor(System.Collections.Generic.IEnumerable{System.ComponentModel.Composition.Primitives.ComposablePartCatalog})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AggregateCatalog.cs#L63C9-L68C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AggregateCatalog.cs#L63C9-L68C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.AggregateCatalog.GetExports(System.ComponentModel.Composition.Primitives.ImportDefinition)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AggregateCatalog.cs#L121C13-L152C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AggregateCatalog.cs#L121C13-L152C70" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.AggregateCatalog.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AggregateCatalog.cs#L180C17-L192C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AggregateCatalog.cs#L180C17-L192C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.AggregateCatalog.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AggregateCatalog.cs#L196C13-L196C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AggregateCatalog.cs#L196C13-L196C77" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.AggregateCatalog.OnChanged(System.ComponentModel.Composition.Hosting.ComposablePartCatalogChangeEventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AggregateCatalog.cs#L207C13-L208C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AggregateCatalog.cs#L207C13-L208C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.AggregateCatalog.OnChanging(System.ComponentModel.Composition.Hosting.ComposablePartCatalogChangeEventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AggregateCatalog.cs#L218C13-L219C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AggregateCatalog.cs#L218C13-L219C10" }, { "DocsId": "E:System.ComponentModel.Composition.Hosting.AggregateCatalog.Changed", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AggregateCatalog.cs#L77C17-L78C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AggregateCatalog.cs#L77C17-L78C14" }, { "DocsId": "E:System.ComponentModel.Composition.Hosting.AggregateCatalog.Changing", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AggregateCatalog.cs#L92C17-L93C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AggregateCatalog.cs#L92C17-L93C14" }, { "DocsId": "P:System.ComponentModel.Composition.Hosting.AggregateCatalog.Catalogs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AggregateCatalog.cs#L169C17-L172C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AggregateCatalog.cs#L169C17-L172C34" } ], "DocsId": "T:System.ComponentModel.Composition.Hosting.AggregateCatalog", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AggregateCatalog.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AggregateCatalog.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.Hosting.AggregateExportProvider.#ctor(System.ComponentModel.Composition.Hosting.ExportProvider[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AggregateExportProvider.cs#L37C9-L66C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AggregateExportProvider.cs#L37C9-L66C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.AggregateExportProvider.#ctor(System.Collections.Generic.IEnumerable{System.ComponentModel.Composition.Hosting.ExportProvider})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AggregateExportProvider.cs#L83C15-L85C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AggregateExportProvider.cs#L83C15-L85C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.AggregateExportProvider.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AggregateExportProvider.cs#L92C13-L94C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AggregateExportProvider.cs#L92C13-L94C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.AggregateExportProvider.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AggregateExportProvider.cs#L102C13-L113C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AggregateExportProvider.cs#L102C13-L113C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.AggregateExportProvider.GetExportsCore(System.ComponentModel.Composition.Primitives.ImportDefinition,System.ComponentModel.Composition.Hosting.AtomicComposition)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AggregateExportProvider.cs#L158C13-L203C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AggregateExportProvider.cs#L158C13-L203C36" }, { "DocsId": "P:System.ComponentModel.Composition.Hosting.AggregateExportProvider.Providers", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AggregateExportProvider.cs#L129C17-L132C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AggregateExportProvider.cs#L129C17-L132C43" } ], "DocsId": "T:System.ComponentModel.Composition.Hosting.AggregateExportProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AggregateExportProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AggregateExportProvider.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.Hosting.ApplicationCatalog.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ApplicationCatalog.cs#L19C9-L23C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ApplicationCatalog.cs#L19C9-L23C40" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ApplicationCatalog.#ctor(System.ComponentModel.Composition.Primitives.ICompositionElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ApplicationCatalog.cs#L19C9-L30C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ApplicationCatalog.cs#L19C9-L30C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ApplicationCatalog.#ctor(System.Reflection.ReflectionContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ApplicationCatalog.cs#L19C9-L37C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ApplicationCatalog.cs#L19C9-L37C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ApplicationCatalog.#ctor(System.Reflection.ReflectionContext,System.ComponentModel.Composition.Primitives.ICompositionElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ApplicationCatalog.cs#L19C9-L46C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ApplicationCatalog.cs#L19C9-L46C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ApplicationCatalog.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ApplicationCatalog.cs#L111C17-L127C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ApplicationCatalog.cs#L111C17-L127C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ApplicationCatalog.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ApplicationCatalog.cs#L131C13-L133C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ApplicationCatalog.cs#L131C13-L133C49" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ApplicationCatalog.GetExports(System.ComponentModel.Composition.Primitives.ImportDefinition)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ApplicationCatalog.cs#L157C13-L161C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ApplicationCatalog.cs#L157C13-L161C56" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ApplicationCatalog.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ApplicationCatalog.cs#L184C13-L184C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ApplicationCatalog.cs#L184C13-L184C37" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ApplicationCatalog.System#ComponentModel#Composition#Primitives#ICompositionElement#get_DisplayName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ApplicationCatalog.cs#L195C19-L195C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ApplicationCatalog.cs#L195C19-L195C43" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ApplicationCatalog.System#ComponentModel#Composition#Primitives#ICompositionElement#get_Origin", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ApplicationCatalog.cs#L206C19-L206C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ApplicationCatalog.cs#L206C19-L206C31" }, { "DocsId": "P:System.ComponentModel.Composition.Hosting.ApplicationCatalog.System#ComponentModel#Composition#Primitives#ICompositionElement#DisplayName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ApplicationCatalog.cs#L195C19-L195C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ApplicationCatalog.cs#L195C19-L195C43" }, { "DocsId": "P:System.ComponentModel.Composition.Hosting.ApplicationCatalog.System#ComponentModel#Composition#Primitives#ICompositionElement#Origin", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ApplicationCatalog.cs#L206C19-L206C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ApplicationCatalog.cs#L206C19-L206C31" } ], "DocsId": "T:System.ComponentModel.Composition.Hosting.ApplicationCatalog", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ApplicationCatalog.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ApplicationCatalog.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.Hosting.AssemblyCatalog.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AssemblyCatalog.cs#L25C9-L79C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AssemblyCatalog.cs#L25C9-L79C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.AssemblyCatalog.#ctor(System.String,System.Reflection.ReflectionContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AssemblyCatalog.cs#L25C9-L137C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AssemblyCatalog.cs#L25C9-L137C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.AssemblyCatalog.#ctor(System.String,System.ComponentModel.Composition.Primitives.ICompositionElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AssemblyCatalog.cs#L25C9-L193C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AssemblyCatalog.cs#L25C9-L193C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.AssemblyCatalog.#ctor(System.String,System.Reflection.ReflectionContext,System.ComponentModel.Composition.Primitives.ICompositionElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AssemblyCatalog.cs#L25C9-L259C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AssemblyCatalog.cs#L25C9-L259C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.AssemblyCatalog.#ctor(System.Reflection.Assembly,System.Reflection.ReflectionContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AssemblyCatalog.cs#L25C9-L292C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AssemblyCatalog.cs#L25C9-L292C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.AssemblyCatalog.#ctor(System.Reflection.Assembly,System.Reflection.ReflectionContext,System.ComponentModel.Composition.Primitives.ICompositionElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AssemblyCatalog.cs#L25C9-L333C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AssemblyCatalog.cs#L25C9-L333C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.AssemblyCatalog.#ctor(System.Reflection.Assembly)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AssemblyCatalog.cs#L25C9-L356C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AssemblyCatalog.cs#L25C9-L356C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.AssemblyCatalog.#ctor(System.Reflection.Assembly,System.ComponentModel.Composition.Primitives.ICompositionElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AssemblyCatalog.cs#L25C9-L387C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AssemblyCatalog.cs#L25C9-L387C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.AssemblyCatalog.GetExports(System.ComponentModel.Composition.Primitives.ImportDefinition)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AssemblyCatalog.cs#L427C13-L427C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AssemblyCatalog.cs#L427C13-L427C56" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.AssemblyCatalog.System#ComponentModel#Composition#Primitives#ICompositionElement#get_DisplayName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AssemblyCatalog.cs#L484C19-L484C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AssemblyCatalog.cs#L484C19-L484C43" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.AssemblyCatalog.System#ComponentModel#Composition#Primitives#ICompositionElement#get_Origin", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AssemblyCatalog.cs#L495C19-L495C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AssemblyCatalog.cs#L495C19-L495C31" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.AssemblyCatalog.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AssemblyCatalog.cs#L506C13-L506C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AssemblyCatalog.cs#L506C13-L506C37" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.AssemblyCatalog.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AssemblyCatalog.cs#L513C17-L525C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AssemblyCatalog.cs#L513C17-L525C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.AssemblyCatalog.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AssemblyCatalog.cs#L529C13-L529C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AssemblyCatalog.cs#L529C13-L529C49" }, { "DocsId": "P:System.ComponentModel.Composition.Hosting.AssemblyCatalog.Assembly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AssemblyCatalog.cs#L472C17-L472C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AssemblyCatalog.cs#L472C17-L472C34" }, { "DocsId": "P:System.ComponentModel.Composition.Hosting.AssemblyCatalog.System#ComponentModel#Composition#Primitives#ICompositionElement#DisplayName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AssemblyCatalog.cs#L484C19-L484C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AssemblyCatalog.cs#L484C19-L484C43" }, { "DocsId": "P:System.ComponentModel.Composition.Hosting.AssemblyCatalog.System#ComponentModel#Composition#Primitives#ICompositionElement#Origin", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AssemblyCatalog.cs#L495C19-L495C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AssemblyCatalog.cs#L495C19-L495C31" } ], "DocsId": "T:System.ComponentModel.Composition.Hosting.AssemblyCatalog", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AssemblyCatalog.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AssemblyCatalog.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.Hosting.AtomicComposition.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AtomicComposition.cs#L47C15-L49C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AtomicComposition.cs#L47C15-L49C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.AtomicComposition.#ctor(System.ComponentModel.Composition.Hosting.AtomicComposition)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AtomicComposition.cs#L51C9-L60C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AtomicComposition.cs#L51C9-L60C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.AtomicComposition.SetValue(System.Object,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AtomicComposition.cs#L64C13-L71C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AtomicComposition.cs#L64C13-L71C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.AtomicComposition.TryGetValue``1(System.Object,``0@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AtomicComposition.cs#L75C13-L75C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AtomicComposition.cs#L75C13-L75C55" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.AtomicComposition.TryGetValue``1(System.Object,System.Boolean,``0@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AtomicComposition.cs#L80C13-L85C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AtomicComposition.cs#L80C13-L85C84" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.AtomicComposition.AddCompleteAction(System.Action)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AtomicComposition.cs#L90C13-L98C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AtomicComposition.cs#L90C13-L98C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.AtomicComposition.AddRevertAction(System.Action)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AtomicComposition.cs#L102C13-L110C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AtomicComposition.cs#L102C13-L110C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.AtomicComposition.Complete", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AtomicComposition.cs#L114C13-L127C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AtomicComposition.cs#L114C13-L127C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.AtomicComposition.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AtomicComposition.cs#L131C13-L133C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AtomicComposition.cs#L131C13-L133C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.AtomicComposition.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AtomicComposition.cs#L137C13-L183C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AtomicComposition.cs#L137C13-L183C10" } ], "DocsId": "T:System.ComponentModel.Composition.Hosting.AtomicComposition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AtomicComposition.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/AtomicComposition.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.Hosting.CatalogExportProvider.#ctor(System.ComponentModel.Composition.Primitives.ComposablePartCatalog)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CatalogExportProvider.cs#L63C15-L65C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CatalogExportProvider.cs#L63C15-L65C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.CatalogExportProvider.#ctor(System.ComponentModel.Composition.Primitives.ComposablePartCatalog,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CatalogExportProvider.cs#L68C15-L70C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CatalogExportProvider.cs#L68C15-L70C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.CatalogExportProvider.#ctor(System.ComponentModel.Composition.Primitives.ComposablePartCatalog,System.ComponentModel.Composition.Hosting.CompositionOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CatalogExportProvider.cs#L39C9-L97C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CatalogExportProvider.cs#L39C9-L97C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.CatalogExportProvider.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CatalogExportProvider.cs#L204C13-L206C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CatalogExportProvider.cs#L204C13-L206C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.CatalogExportProvider.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CatalogExportProvider.cs#L214C13-L275C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CatalogExportProvider.cs#L214C13-L275C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.CatalogExportProvider.GetExportsCore(System.ComponentModel.Composition.Primitives.ImportDefinition,System.ComponentModel.Composition.Hosting.AtomicComposition)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CatalogExportProvider.cs#L299C13-L308C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CatalogExportProvider.cs#L299C13-L308C29" }, { "DocsId": "P:System.ComponentModel.Composition.Hosting.CatalogExportProvider.Catalog", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CatalogExportProvider.cs#L115C17-L118C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CatalogExportProvider.cs#L115C17-L118C33" }, { "DocsId": "P:System.ComponentModel.Composition.Hosting.CatalogExportProvider.SourceProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CatalogExportProvider.cs#L154C17-L159C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CatalogExportProvider.cs#L154C17-L159C14" } ], "DocsId": "T:System.ComponentModel.Composition.Hosting.CatalogExportProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CatalogExportProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CatalogExportProvider.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.Hosting.CatalogExtensions.CreateCompositionService(System.ComponentModel.Composition.Primitives.ComposablePartCatalog)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CatalogExtensions.cs#L18C13-L20C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CatalogExtensions.cs#L18C13-L20C66" } ], "DocsId": "T:System.ComponentModel.Composition.Hosting.CatalogExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CatalogExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CatalogExtensions.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.Hosting.ComposablePartCatalogChangeEventArgs.#ctor(System.Collections.Generic.IEnumerable{System.ComponentModel.Composition.Primitives.ComposablePartDefinition},System.Collections.Generic.IEnumerable{System.ComponentModel.Composition.Primitives.ComposablePartDefinition},System.ComponentModel.Composition.Hosting.AtomicComposition)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ComposablePartCatalogChangeEventArgs.cs#L41C9-L50C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ComposablePartCatalogChangeEventArgs.cs#L41C9-L50C10" }, { "DocsId": "P:System.ComponentModel.Composition.Hosting.ComposablePartCatalogChangeEventArgs.AddedDefinitions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ComposablePartCatalogChangeEventArgs.cs#L65C17-L65C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ComposablePartCatalogChangeEventArgs.cs#L65C17-L65C42" }, { "DocsId": "P:System.ComponentModel.Composition.Hosting.ComposablePartCatalogChangeEventArgs.RemovedDefinitions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ComposablePartCatalogChangeEventArgs.cs#L82C17-L82C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ComposablePartCatalogChangeEventArgs.cs#L82C17-L82C44" }, { "DocsId": "P:System.ComponentModel.Composition.Hosting.ComposablePartCatalogChangeEventArgs.AtomicComposition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ComposablePartCatalogChangeEventArgs.cs#L98C55-L98C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ComposablePartCatalogChangeEventArgs.cs#L98C55-L98C59" } ], "DocsId": "T:System.ComponentModel.Composition.Hosting.ComposablePartCatalogChangeEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ComposablePartCatalogChangeEventArgs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ComposablePartCatalogChangeEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.Hosting.ComposablePartExportProvider.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ComposablePartExportProvider.cs#L30C13-L32C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ComposablePartExportProvider.cs#L30C13-L32C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ComposablePartExportProvider.#ctor(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ComposablePartExportProvider.cs#L35C15-L37C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ComposablePartExportProvider.cs#L35C15-L37C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ComposablePartExportProvider.#ctor(System.ComponentModel.Composition.Hosting.CompositionOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ComposablePartExportProvider.cs#L17C9-L48C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ComposablePartExportProvider.cs#L17C9-L48C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ComposablePartExportProvider.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ComposablePartExportProvider.cs#L55C13-L57C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ComposablePartExportProvider.cs#L55C13-L57C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ComposablePartExportProvider.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ComposablePartExportProvider.cs#L65C13-L97C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ComposablePartExportProvider.cs#L65C13-L97C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ComposablePartExportProvider.GetExportsCore(System.ComponentModel.Composition.Primitives.ImportDefinition,System.ComponentModel.Composition.Hosting.AtomicComposition)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ComposablePartExportProvider.cs#L199C13-L228C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ComposablePartExportProvider.cs#L199C13-L228C28" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ComposablePartExportProvider.Compose(System.ComponentModel.Composition.Hosting.CompositionBatch)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ComposablePartExportProvider.cs#L233C13-L313C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ComposablePartExportProvider.cs#L233C13-L313C10" }, { "DocsId": "P:System.ComponentModel.Composition.Hosting.ComposablePartExportProvider.SourceProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ComposablePartExportProvider.cs#L131C17-L133C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ComposablePartExportProvider.cs#L131C17-L133C40" } ], "DocsId": "T:System.ComponentModel.Composition.Hosting.ComposablePartExportProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ComposablePartExportProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ComposablePartExportProvider.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.Hosting.CompositionBatch.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionBatch.cs#L26C13-L28C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionBatch.cs#L26C13-L28C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.CompositionBatch.#ctor(System.Collections.Generic.IEnumerable{System.ComponentModel.Composition.Primitives.ComposablePart},System.Collections.Generic.IEnumerable{System.ComponentModel.Composition.Primitives.ComposablePart})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionBatch.cs#L14C9-L64C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionBatch.cs#L14C9-L64C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.CompositionBatch.AddPart(System.ComponentModel.Composition.Primitives.ComposablePart)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionBatch.cs#L111C13-L122C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionBatch.cs#L111C13-L122C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.CompositionBatch.RemovePart(System.ComponentModel.Composition.Primitives.ComposablePart)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionBatch.cs#L135C13-L146C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionBatch.cs#L135C13-L146C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.CompositionBatch.AddExport(System.ComponentModel.Composition.Primitives.Export)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionBatch.cs#L165C13-L171C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionBatch.cs#L165C13-L171C25" }, { "DocsId": "P:System.ComponentModel.Composition.Hosting.CompositionBatch.PartsToAdd", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionBatch.cs#L74C17-L80C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionBatch.cs#L74C17-L80C14" }, { "DocsId": "P:System.ComponentModel.Composition.Hosting.CompositionBatch.PartsToRemove", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionBatch.cs#L91C17-L97C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionBatch.cs#L91C17-L97C14" } ], "DocsId": "T:System.ComponentModel.Composition.Hosting.CompositionBatch", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionBatch.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionBatch.cs" }, { "Members": [ { "DocsId": "F:System.ComponentModel.Composition.Hosting.CompositionConstants.PartCreationPolicyMetadataName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionConstants.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionConstants.cs" }, { "DocsId": "F:System.ComponentModel.Composition.Hosting.CompositionConstants.ImportSourceMetadataName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionConstants.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionConstants.cs" }, { "DocsId": "F:System.ComponentModel.Composition.Hosting.CompositionConstants.IsGenericPartMetadataName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionConstants.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionConstants.cs" }, { "DocsId": "F:System.ComponentModel.Composition.Hosting.CompositionConstants.GenericContractMetadataName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionConstants.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionConstants.cs" }, { "DocsId": "F:System.ComponentModel.Composition.Hosting.CompositionConstants.GenericParametersMetadataName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionConstants.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionConstants.cs" }, { "DocsId": "F:System.ComponentModel.Composition.Hosting.CompositionConstants.ExportTypeIdentityMetadataName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionConstants.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionConstants.cs" } ], "DocsId": "T:System.ComponentModel.Composition.Hosting.CompositionConstants", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionConstants.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionConstants.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.Hosting.CompositionContainer.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionContainer.cs#L36C15-L38C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionContainer.cs#L36C15-L38C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.CompositionContainer.#ctor(System.ComponentModel.Composition.Hosting.ExportProvider[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionContainer.cs#L54C13-L56C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionContainer.cs#L54C13-L56C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.CompositionContainer.#ctor(System.ComponentModel.Composition.Hosting.CompositionOptions,System.ComponentModel.Composition.Hosting.ExportProvider[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionContainer.cs#L75C13-L77C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionContainer.cs#L75C13-L77C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.CompositionContainer.#ctor(System.ComponentModel.Composition.Primitives.ComposablePartCatalog,System.ComponentModel.Composition.Hosting.ExportProvider[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionContainer.cs#L94C13-L96C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionContainer.cs#L94C13-L96C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.CompositionContainer.#ctor(System.ComponentModel.Composition.Primitives.ComposablePartCatalog,System.Boolean,System.ComponentModel.Composition.Hosting.ExportProvider[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionContainer.cs#L116C15-L118C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionContainer.cs#L116C15-L118C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.CompositionContainer.#ctor(System.ComponentModel.Composition.Primitives.ComposablePartCatalog,System.ComponentModel.Composition.Hosting.CompositionOptions,System.ComponentModel.Composition.Hosting.ExportProvider[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionContainer.cs#L29C9-L227C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionContainer.cs#L29C9-L227C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.CompositionContainer.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionContainer.cs#L298C13-L300C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionContainer.cs#L298C13-L300C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.CompositionContainer.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionContainer.cs#L308C13-L366C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionContainer.cs#L308C13-L366C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.CompositionContainer.Compose(System.ComponentModel.Composition.Hosting.CompositionBatch)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionContainer.cs#L370C13-L374C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionContainer.cs#L370C13-L374C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.CompositionContainer.ReleaseExport(System.ComponentModel.Composition.Primitives.Export)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionContainer.cs#L397C13-L403C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionContainer.cs#L397C13-L403C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.CompositionContainer.ReleaseExport``1(System.Lazy{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionContainer.cs#L426C13-L432C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionContainer.cs#L426C13-L432C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.CompositionContainer.ReleaseExports(System.Collections.Generic.IEnumerable{System.ComponentModel.Composition.Primitives.Export})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionContainer.cs#L447C13-L453C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionContainer.cs#L447C13-L453C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.CompositionContainer.ReleaseExports``1(System.Collections.Generic.IEnumerable{System.Lazy{``0}})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionContainer.cs#L468C13-L474C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionContainer.cs#L468C13-L474C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.CompositionContainer.ReleaseExports``2(System.Collections.Generic.IEnumerable{System.Lazy{``0,``1}})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionContainer.cs#L489C13-L495C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionContainer.cs#L489C13-L495C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.CompositionContainer.SatisfyImportsOnce(System.ComponentModel.Composition.Primitives.ComposablePart)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionContainer.cs#L516C13-L534C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionContainer.cs#L516C13-L534C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.CompositionContainer.GetExportsCore(System.ComponentModel.Composition.Primitives.ImportDefinition,System.ComponentModel.Composition.Hosting.AtomicComposition)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionContainer.cs#L568C13-L598C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionContainer.cs#L568C13-L598C28" }, { "DocsId": "P:System.ComponentModel.Composition.Hosting.CompositionContainer.Catalog", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionContainer.cs#L254C17-L256C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionContainer.cs#L254C17-L256C56" }, { "DocsId": "P:System.ComponentModel.Composition.Hosting.CompositionContainer.Providers", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionContainer.cs#L286C17-L289C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionContainer.cs#L286C17-L289C35" } ], "DocsId": "T:System.ComponentModel.Composition.Hosting.CompositionContainer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionContainer.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionContainer.cs" }, { "Members": [ { "DocsId": "F:System.ComponentModel.Composition.Hosting.CompositionOptions.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionOptions.cs" }, { "DocsId": "F:System.ComponentModel.Composition.Hosting.CompositionOptions.Default", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionOptions.cs" }, { "DocsId": "F:System.ComponentModel.Composition.Hosting.CompositionOptions.DisableSilentRejection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionOptions.cs" }, { "DocsId": "F:System.ComponentModel.Composition.Hosting.CompositionOptions.IsThreadSafe", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionOptions.cs" }, { "DocsId": "F:System.ComponentModel.Composition.Hosting.CompositionOptions.ExportCompositionService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionOptions.cs" } ], "DocsId": "T:System.ComponentModel.Composition.Hosting.CompositionOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionOptions.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.Hosting.CompositionScopeDefinition.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionScopeDefinition.cs#L18C9-L24C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionScopeDefinition.cs#L18C9-L24C51" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.CompositionScopeDefinition.#ctor(System.ComponentModel.Composition.Primitives.ComposablePartCatalog,System.Collections.Generic.IEnumerable{System.ComponentModel.Composition.Hosting.CompositionScopeDefinition})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionScopeDefinition.cs#L18C9-L37C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionScopeDefinition.cs#L18C9-L37C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.CompositionScopeDefinition.#ctor(System.ComponentModel.Composition.Primitives.ComposablePartCatalog,System.Collections.Generic.IEnumerable{System.ComponentModel.Composition.Hosting.CompositionScopeDefinition},System.Collections.Generic.IEnumerable{System.ComponentModel.Composition.Primitives.ExportDefinition})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionScopeDefinition.cs#L18C9-L52C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionScopeDefinition.cs#L18C9-L52C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.CompositionScopeDefinition.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionScopeDefinition.cs#L87C17-L103C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionScopeDefinition.cs#L87C17-L103C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.CompositionScopeDefinition.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionScopeDefinition.cs#L152C13-L152C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionScopeDefinition.cs#L152C13-L152C45" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.CompositionScopeDefinition.GetExports(System.ComponentModel.Composition.Primitives.ImportDefinition)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionScopeDefinition.cs#L181C13-L184C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionScopeDefinition.cs#L181C13-L184C52" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.CompositionScopeDefinition.OnChanged(System.ComponentModel.Composition.Hosting.ComposablePartCatalogChangeEventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionScopeDefinition.cs#L226C13-L227C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionScopeDefinition.cs#L226C13-L227C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.CompositionScopeDefinition.OnChanging(System.ComponentModel.Composition.Hosting.ComposablePartCatalogChangeEventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionScopeDefinition.cs#L235C13-L236C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionScopeDefinition.cs#L235C13-L236C10" }, { "DocsId": "E:System.ComponentModel.Composition.Hosting.CompositionScopeDefinition.Changed", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionScopeDefinition.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionScopeDefinition.cs" }, { "DocsId": "E:System.ComponentModel.Composition.Hosting.CompositionScopeDefinition.Changing", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionScopeDefinition.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionScopeDefinition.cs" }, { "DocsId": "P:System.ComponentModel.Composition.Hosting.CompositionScopeDefinition.Children", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionScopeDefinition.cs#L113C17-L115C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionScopeDefinition.cs#L113C17-L115C34" }, { "DocsId": "P:System.ComponentModel.Composition.Hosting.CompositionScopeDefinition.PublicSurface", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionScopeDefinition.cs#L135C17-L141C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionScopeDefinition.cs#L135C17-L141C39" } ], "DocsId": "T:System.ComponentModel.Composition.Hosting.CompositionScopeDefinition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionScopeDefinition.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionScopeDefinition.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.Hosting.CompositionService.SatisfyImportsOnce(System.ComponentModel.Composition.Primitives.ComposablePart)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionService.cs#L49C13-L55C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionService.cs#L49C13-L55C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.CompositionService.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionService.cs#L59C13-L70C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionService.cs#L59C13-L70C10" } ], "DocsId": "T:System.ComponentModel.Composition.Hosting.CompositionService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/CompositionService.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.Hosting.DirectoryCatalog.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs#L73C15-L75C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs#L73C15-L75C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.DirectoryCatalog.#ctor(System.String,System.Reflection.ReflectionContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs#L112C15-L114C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs#L112C15-L114C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.DirectoryCatalog.#ctor(System.String,System.ComponentModel.Composition.Primitives.ICompositionElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs#L150C15-L152C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs#L150C15-L152C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.DirectoryCatalog.#ctor(System.String,System.Reflection.ReflectionContext,System.ComponentModel.Composition.Primitives.ICompositionElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs#L193C15-L195C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs#L193C15-L195C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.DirectoryCatalog.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs#L31C9-L237C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs#L31C9-L237C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.DirectoryCatalog.#ctor(System.String,System.String,System.ComponentModel.Composition.Primitives.ICompositionElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs#L31C9-L282C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs#L31C9-L282C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.DirectoryCatalog.#ctor(System.String,System.String,System.Reflection.ReflectionContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs#L31C9-L332C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs#L31C9-L332C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.DirectoryCatalog.#ctor(System.String,System.String,System.Reflection.ReflectionContext,System.ComponentModel.Composition.Primitives.ICompositionElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs#L31C9-L387C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs#L31C9-L387C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.DirectoryCatalog.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs#L459C17-L496C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs#L459C17-L496C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.DirectoryCatalog.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs#L500C13-L500C127" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs#L500C13-L500C127" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.DirectoryCatalog.GetExports(System.ComponentModel.Composition.Primitives.ImportDefinition)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs#L524C13-L528C93" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs#L16707566C0-L528C93" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.DirectoryCatalog.OnChanged(System.ComponentModel.Composition.Hosting.ComposablePartCatalogChangeEventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs#L539C13-L540C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs#L539C13-L540C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.DirectoryCatalog.OnChanging(System.ComponentModel.Composition.Hosting.ComposablePartCatalogChangeEventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs#L550C13-L551C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs#L550C13-L551C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.DirectoryCatalog.Refresh", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs#L568C13-L648C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs#L568C13-L648C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.DirectoryCatalog.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs#L658C13-L658C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs#L658C13-L658C37" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.DirectoryCatalog.System#ComponentModel#Composition#Primitives#ICompositionElement#get_DisplayName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs#L790C19-L790C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs#L790C19-L790C43" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.DirectoryCatalog.System#ComponentModel#Composition#Primitives#ICompositionElement#get_Origin", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs#L801C19-L801C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs#L801C19-L801C31" }, { "DocsId": "E:System.ComponentModel.Composition.Hosting.DirectoryCatalog.Changed", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs" }, { "DocsId": "E:System.ComponentModel.Composition.Hosting.DirectoryCatalog.Changing", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs" }, { "DocsId": "P:System.ComponentModel.Composition.Hosting.DirectoryCatalog.FullPath", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs#L398C17-L398C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs#L398C17-L398C34" }, { "DocsId": "P:System.ComponentModel.Composition.Hosting.DirectoryCatalog.LoadedFiles", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs#L409C17-L414C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs#L409C17-L414C14" }, { "DocsId": "P:System.ComponentModel.Composition.Hosting.DirectoryCatalog.Path", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs#L426C17-L426C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs#L426C17-L426C30" }, { "DocsId": "P:System.ComponentModel.Composition.Hosting.DirectoryCatalog.SearchPattern", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs#L437C17-L437C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs#L437C17-L437C39" }, { "DocsId": "P:System.ComponentModel.Composition.Hosting.DirectoryCatalog.System#ComponentModel#Composition#Primitives#ICompositionElement#DisplayName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs#L790C19-L790C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs#L790C19-L790C43" }, { "DocsId": "P:System.ComponentModel.Composition.Hosting.DirectoryCatalog.System#ComponentModel#Composition#Primitives#ICompositionElement#Origin", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs#L801C19-L801C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs#L801C19-L801C31" } ], "DocsId": "T:System.ComponentModel.Composition.Hosting.DirectoryCatalog", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/DirectoryCatalog.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.Hosting.ExportProvider.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.cs#L21C9-L23C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.cs#L21C9-L23C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ExportProvider.GetExports(System.ComponentModel.Composition.Primitives.ImportDefinition)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.cs#L65C13-L65C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.cs#L65C13-L65C49" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ExportProvider.GetExports(System.ComponentModel.Composition.Primitives.ImportDefinition,System.ComponentModel.Composition.Hosting.AtomicComposition)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.cs#L99C13-L114C139" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.cs#L99C13-L114C139" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ExportProvider.TryGetExports(System.ComponentModel.Composition.Primitives.ImportDefinition,System.ComponentModel.Composition.Hosting.AtomicComposition,System.Collections.Generic.IEnumerable{System.ComponentModel.Composition.Primitives.Export}@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.cs#L146C13-L149C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.cs#L146C13-L149C67" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ExportProvider.GetExportsCore(System.ComponentModel.Composition.Primitives.ImportDefinition,System.ComponentModel.Composition.Hosting.AtomicComposition)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.cs" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ExportProvider.OnExportsChanged(System.ComponentModel.Composition.Hosting.ExportsChangeEventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.cs#L184C13-L190C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.cs#L184C13-L190C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ExportProvider.OnExportsChanging(System.ComponentModel.Composition.Hosting.ExportsChangeEventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.cs#L200C13-L206C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.cs#L200C13-L206C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ExportProvider.GetExport``1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.GetExportOverrides.cs#L61C13-L61C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.GetExportOverrides.cs#L61C13-L61C48" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ExportProvider.GetExport``1(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.GetExportOverrides.cs#L112C13-L112C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.GetExportOverrides.cs#L112C13-L112C51" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ExportProvider.GetExport``2", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.GetExportOverrides.cs#L162C13-L162C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.GetExportOverrides.cs#L162C13-L162C63" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ExportProvider.GetExport``2(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.GetExportOverrides.cs#L213C13-L213C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.GetExportOverrides.cs#L213C13-L213C66" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ExportProvider.GetExports(System.Type,System.Type,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.GetExportOverrides.cs#L263C13-L272C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.GetExportOverrides.cs#L263C13-L272C27" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ExportProvider.GetExports``1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.GetExportOverrides.cs#L309C13-L309C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.GetExportOverrides.cs#L309C13-L309C49" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ExportProvider.GetExports``1(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.GetExportOverrides.cs#L350C13-L350C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.GetExportOverrides.cs#L350C13-L350C52" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ExportProvider.GetExports``2", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.GetExportOverrides.cs#L388C13-L388C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.GetExportOverrides.cs#L388C13-L388C64" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ExportProvider.GetExports``2(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.GetExportOverrides.cs#L430C13-L430C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.GetExportOverrides.cs#L430C13-L430C67" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ExportProvider.GetExportedValue``1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.GetExportOverrides.cs#L478C13-L478C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.GetExportOverrides.cs#L478C13-L478C55" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ExportProvider.GetExportedValue``1(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.GetExportOverrides.cs#L528C13-L528C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.GetExportOverrides.cs#L528C13-L528C88" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ExportProvider.GetExportedValueOrDefault``1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.GetExportOverrides.cs#L578C13-L578C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.GetExportOverrides.cs#L578C13-L578C64" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ExportProvider.GetExportedValueOrDefault``1(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.GetExportOverrides.cs#L628C13-L628C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.GetExportOverrides.cs#L628C13-L628C87" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ExportProvider.GetExportedValues``1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.GetExportOverrides.cs#L667C13-L667C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.GetExportOverrides.cs#L667C13-L667C56" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ExportProvider.GetExportedValues``1(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.GetExportOverrides.cs#L708C13-L708C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.GetExportOverrides.cs#L708C13-L708C59" }, { "DocsId": "E:System.ComponentModel.Composition.Hosting.ExportProvider.ExportsChanged", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.cs" }, { "DocsId": "E:System.ComponentModel.Composition.Hosting.ExportProvider.ExportsChanging", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.cs" } ], "DocsId": "T:System.ComponentModel.Composition.Hosting.ExportProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportProvider.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.Hosting.ExportsChangeEventArgs.#ctor(System.Collections.Generic.IEnumerable{System.ComponentModel.Composition.Primitives.ExportDefinition},System.Collections.Generic.IEnumerable{System.ComponentModel.Composition.Primitives.ExportDefinition},System.ComponentModel.Composition.Hosting.AtomicComposition)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportsChangeEventArgs.cs#L44C9-L53C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportsChangeEventArgs.cs#L44C9-L53C10" }, { "DocsId": "P:System.ComponentModel.Composition.Hosting.ExportsChangeEventArgs.AddedExports", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportsChangeEventArgs.cs#L68C17-L68C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportsChangeEventArgs.cs#L68C17-L68C38" }, { "DocsId": "P:System.ComponentModel.Composition.Hosting.ExportsChangeEventArgs.RemovedExports", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportsChangeEventArgs.cs#L85C17-L85C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportsChangeEventArgs.cs#L85C17-L85C40" }, { "DocsId": "P:System.ComponentModel.Composition.Hosting.ExportsChangeEventArgs.ChangedContractNames", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportsChangeEventArgs.cs#L97C13-L101C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportsChangeEventArgs.cs#L97C13-L101C49" }, { "DocsId": "P:System.ComponentModel.Composition.Hosting.ExportsChangeEventArgs.AtomicComposition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportsChangeEventArgs.cs#L116C55-L116C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportsChangeEventArgs.cs#L116C55-L116C59" } ], "DocsId": "T:System.ComponentModel.Composition.Hosting.ExportsChangeEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportsChangeEventArgs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ExportsChangeEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.Hosting.FilteredCatalog.#ctor(System.ComponentModel.Composition.Primitives.ComposablePartCatalog,System.Func{System.ComponentModel.Composition.Primitives.ComposablePartDefinition,System.Boolean})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/FilteredCatalog.cs#L28C13-L30C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/FilteredCatalog.cs#L28C13-L30C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.FilteredCatalog.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/FilteredCatalog.cs#L56C17-L88C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/FilteredCatalog.cs#L56C17-L88C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.FilteredCatalog.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/FilteredCatalog.cs#L92C13-L92C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/FilteredCatalog.cs#L92C13-L92C65" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.FilteredCatalog.GetExports(System.ComponentModel.Composition.Primitives.ImportDefinition)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/FilteredCatalog.cs#L151C13-L163C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/FilteredCatalog.cs#L151C13-L163C28" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.FilteredCatalog.OnChanged(System.ComponentModel.Composition.Hosting.ComposablePartCatalogChangeEventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/FilteredCatalog.cs#L182C13-L183C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/FilteredCatalog.cs#L182C13-L183C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.FilteredCatalog.OnChanging(System.ComponentModel.Composition.Hosting.ComposablePartCatalogChangeEventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/FilteredCatalog.cs#L191C13-L192C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/FilteredCatalog.cs#L191C13-L192C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.FilteredCatalog.IncludeDependencies", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/FilteredCatalog.Traversal.cs#L19C13-L19C92" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/FilteredCatalog.Traversal.cs#L19C13-L19C92" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.FilteredCatalog.IncludeDependencies(System.Func{System.ComponentModel.Composition.Primitives.ImportDefinition,System.Boolean})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/FilteredCatalog.Traversal.cs#L30C13-L33C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/FilteredCatalog.Traversal.cs#L30C13-L33C76" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.FilteredCatalog.IncludeDependents", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/FilteredCatalog.Traversal.cs#L42C13-L42C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/FilteredCatalog.Traversal.cs#L42C13-L42C90" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.FilteredCatalog.IncludeDependents(System.Func{System.ComponentModel.Composition.Primitives.ImportDefinition,System.Boolean})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/FilteredCatalog.Traversal.cs#L53C13-L56C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/FilteredCatalog.Traversal.cs#L53C13-L56C74" }, { "DocsId": "E:System.ComponentModel.Composition.Hosting.FilteredCatalog.Changed", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/FilteredCatalog.IComposablePartCatalogTraversal.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/FilteredCatalog.IComposablePartCatalogTraversal.cs" }, { "DocsId": "E:System.ComponentModel.Composition.Hosting.FilteredCatalog.Changing", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/FilteredCatalog.IComposablePartCatalogTraversal.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/FilteredCatalog.IComposablePartCatalogTraversal.cs" }, { "DocsId": "P:System.ComponentModel.Composition.Hosting.FilteredCatalog.Complement", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/FilteredCatalog.cs#L103C17-L121C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/FilteredCatalog.cs#L103C17-L121C36" } ], "DocsId": "T:System.ComponentModel.Composition.Hosting.FilteredCatalog", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/FilteredCatalog.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/FilteredCatalog.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.Hosting.ImportEngine.#ctor(System.ComponentModel.Composition.Hosting.ExportProvider)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ImportEngine.cs#L38C15-L40C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ImportEngine.cs#L38C15-L40C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ImportEngine.#ctor(System.ComponentModel.Composition.Hosting.ExportProvider,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ImportEngine.cs#L43C15-L45C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ImportEngine.cs#L43C15-L45C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ImportEngine.#ctor(System.ComponentModel.Composition.Hosting.ExportProvider,System.ComponentModel.Composition.Hosting.CompositionOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ImportEngine.cs#L24C9-L55C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ImportEngine.cs#L24C9-L55C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ImportEngine.PreviewImports(System.ComponentModel.Composition.Primitives.ComposablePart,System.ComponentModel.Composition.Hosting.AtomicComposition)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ImportEngine.cs#L85C13-L134C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ImportEngine.cs#L16707566C0-L134C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ImportEngine.SatisfyImports(System.ComponentModel.Composition.Primitives.ComposablePart)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ImportEngine.cs#L158C13-L174C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ImportEngine.cs#L158C13-L174C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ImportEngine.SatisfyImportsOnce(System.ComponentModel.Composition.Primitives.ComposablePart)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ImportEngine.cs#L195C13-L211C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ImportEngine.cs#L195C13-L211C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ImportEngine.ReleaseImports(System.ComponentModel.Composition.Primitives.ComposablePart,System.ComponentModel.Composition.Hosting.AtomicComposition)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ImportEngine.cs#L229C13-L241C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ImportEngine.cs#L229C13-L241C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ImportEngine.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ImportEngine.cs#L248C13-L250C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ImportEngine.cs#L248C13-L250C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ImportEngine.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ImportEngine.cs#L258C13-L288C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ImportEngine.cs#L258C13-L288C10" } ], "DocsId": "T:System.ComponentModel.Composition.Hosting.ImportEngine", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ImportEngine.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ImportEngine.cs" }, { "Members": [ { "DocsId": "E:System.ComponentModel.Composition.Hosting.INotifyComposablePartCatalogChanged.Changed", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/INotifyComposablePartCatalogChanged.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/INotifyComposablePartCatalogChanged.cs" }, { "DocsId": "E:System.ComponentModel.Composition.Hosting.INotifyComposablePartCatalogChanged.Changing", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/INotifyComposablePartCatalogChanged.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/INotifyComposablePartCatalogChanged.cs" } ], "DocsId": "T:System.ComponentModel.Composition.Hosting.INotifyComposablePartCatalogChanged", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/INotifyComposablePartCatalogChanged.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/INotifyComposablePartCatalogChanged.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.Hosting.ScopingExtensions.Exports(System.ComponentModel.Composition.Primitives.ComposablePartDefinition,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ScopingExtensions.cs#L21C13-L32C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ScopingExtensions.cs#L21C13-L32C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ScopingExtensions.Imports(System.ComponentModel.Composition.Primitives.ComposablePartDefinition,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ScopingExtensions.cs#L44C13-L56C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ScopingExtensions.cs#L44C13-L56C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ScopingExtensions.Imports(System.ComponentModel.Composition.Primitives.ComposablePartDefinition,System.String,System.ComponentModel.Composition.Primitives.ImportCardinality)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ScopingExtensions.cs#L69C13-L81C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ScopingExtensions.cs#L69C13-L81C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ScopingExtensions.ContainsPartMetadataWithKey(System.ComponentModel.Composition.Primitives.ComposablePartDefinition,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ScopingExtensions.cs#L93C13-L96C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ScopingExtensions.cs#L93C13-L96C51" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ScopingExtensions.ContainsPartMetadata``1(System.ComponentModel.Composition.Primitives.ComposablePartDefinition,System.String,``0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ScopingExtensions.cs#L111C13-L126C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ScopingExtensions.cs#L111C13-L126C26" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.ScopingExtensions.Filter(System.ComponentModel.Composition.Primitives.ComposablePartCatalog,System.Func{System.ComponentModel.Composition.Primitives.ComposablePartDefinition,System.Boolean})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ScopingExtensions.cs#L137C13-L140C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ScopingExtensions.cs#L137C13-L140C57" } ], "DocsId": "T:System.ComponentModel.Composition.Hosting.ScopingExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ScopingExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/ScopingExtensions.cs" }, { "Members": [ { "DocsId": "M:System.ComponentModel.Composition.Hosting.TypeCatalog.#ctor(System.Type[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/TypeCatalog.cs#L52C51-L54C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/TypeCatalog.cs#L52C51-L54C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.TypeCatalog.#ctor(System.Collections.Generic.IEnumerable{System.Type})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/TypeCatalog.cs#L27C9-L82C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/TypeCatalog.cs#L27C9-L82C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.TypeCatalog.#ctor(System.Collections.Generic.IEnumerable{System.Type},System.ComponentModel.Composition.Primitives.ICompositionElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/TypeCatalog.cs#L27C9-L110C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/TypeCatalog.cs#L27C9-L110C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.TypeCatalog.#ctor(System.Collections.Generic.IEnumerable{System.Type},System.Reflection.ReflectionContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/TypeCatalog.cs#L27C9-L139C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/TypeCatalog.cs#L27C9-L139C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.TypeCatalog.#ctor(System.Collections.Generic.IEnumerable{System.Type},System.Reflection.ReflectionContext,System.ComponentModel.Composition.Primitives.ICompositionElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/TypeCatalog.cs#L27C9-L172C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/TypeCatalog.cs#L27C9-L172C10" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.TypeCatalog.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/TypeCatalog.cs#L225C13-L226C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/TypeCatalog.cs#L225C13-L226C50" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.TypeCatalog.System#ComponentModel#Composition#Primitives#ICompositionElement#get_DisplayName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/TypeCatalog.cs#L237C19-L237C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/TypeCatalog.cs#L237C19-L237C43" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.TypeCatalog.System#ComponentModel#Composition#Primitives#ICompositionElement#get_Origin", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/TypeCatalog.cs#L248C19-L248C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/TypeCatalog.cs#L248C19-L248C31" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.TypeCatalog.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/TypeCatalog.cs#L344C13-L344C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/TypeCatalog.cs#L344C13-L344C37" }, { "DocsId": "M:System.ComponentModel.Composition.Hosting.TypeCatalog.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/TypeCatalog.cs#L349C13-L355C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/TypeCatalog.cs#L349C13-L355C10" }, { "DocsId": "P:System.ComponentModel.Composition.Hosting.TypeCatalog.System#ComponentModel#Composition#Primitives#ICompositionElement#DisplayName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/TypeCatalog.cs#L237C19-L237C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/TypeCatalog.cs#L237C19-L237C43" }, { "DocsId": "P:System.ComponentModel.Composition.Hosting.TypeCatalog.System#ComponentModel#Composition#Primitives#ICompositionElement#Origin", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/TypeCatalog.cs#L248C19-L248C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/TypeCatalog.cs#L248C19-L248C31" } ], "DocsId": "T:System.ComponentModel.Composition.Hosting.TypeCatalog", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/TypeCatalog.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/TypeCatalog.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/System.Composition.AttributedModel.json b/xml/SourceLinkInformation/net-9.0/System.Composition.AttributedModel.json index ded78c1920c..3e05de91afc 100644 --- a/xml/SourceLinkInformation/net-9.0/System.Composition.AttributedModel.json +++ b/xml/SourceLinkInformation/net-9.0/System.Composition.AttributedModel.json @@ -1,221 +1,220 @@ { "Assembly": "System.Composition.AttributedModel", - "GUID": "94EB70D53CD541E799F74E3568F4FBFEFFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "34EFA950446043A288474835AEF7ABBDFFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:System.Composition.ExportAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.AttributedModel/src/System/Composition/ExportAttribute.cs#L19C36-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.AttributedModel/src/System/Composition/ExportAttribute.cs#L19C36-L21C10" }, { "DocsId": "M:System.Composition.ExportAttribute.#ctor(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.AttributedModel/src/System/Composition/ExportAttribute.cs#L33C53-L35C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.AttributedModel/src/System/Composition/ExportAttribute.cs#L33C53-L35C10" }, { "DocsId": "M:System.Composition.ExportAttribute.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.AttributedModel/src/System/Composition/ExportAttribute.cs#L46C55-L48C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.AttributedModel/src/System/Composition/ExportAttribute.cs#L46C55-L48C10" }, { "DocsId": "M:System.Composition.ExportAttribute.#ctor(System.String,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.AttributedModel/src/System/Composition/ExportAttribute.cs#L64C9-L68C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.AttributedModel/src/System/Composition/ExportAttribute.cs#L64C9-L68C10" }, { "DocsId": "P:System.Composition.ExportAttribute.ContractName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.AttributedModel/src/System/Composition/ExportAttribute.cs#L77C38-L77C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.AttributedModel/src/System/Composition/ExportAttribute.cs#L77C38-L77C42" }, { "DocsId": "P:System.Composition.ExportAttribute.ContractType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.AttributedModel/src/System/Composition/ExportAttribute.cs#L87C36-L87C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.AttributedModel/src/System/Composition/ExportAttribute.cs#L87C36-L87C40" } ], "DocsId": "T:System.Composition.ExportAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.AttributedModel/src/System/Composition/ExportAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.AttributedModel/src/System/Composition/ExportAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Composition.ExportMetadataAttribute.#ctor(System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.AttributedModel/src/System/Composition/ExportMetadataAttribute.cs#L27C9-L31C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.AttributedModel/src/System/Composition/ExportMetadataAttribute.cs#L27C9-L31C10" }, { "DocsId": "P:System.Composition.ExportMetadataAttribute.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.AttributedModel/src/System/Composition/ExportMetadataAttribute.cs#L39C30-L39C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.AttributedModel/src/System/Composition/ExportMetadataAttribute.cs#L39C30-L39C34" }, { "DocsId": "P:System.Composition.ExportMetadataAttribute.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.AttributedModel/src/System/Composition/ExportMetadataAttribute.cs#L47C31-L47C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.AttributedModel/src/System/Composition/ExportMetadataAttribute.cs#L47C31-L47C35" } ], "DocsId": "T:System.Composition.ExportMetadataAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.AttributedModel/src/System/Composition/ExportMetadataAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.AttributedModel/src/System/Composition/ExportMetadataAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Composition.ImportAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.AttributedModel/src/System/Composition/ImportAttribute.cs#L19C36-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.AttributedModel/src/System/Composition/ImportAttribute.cs#L19C36-L21C10" }, { "DocsId": "M:System.Composition.ImportAttribute.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.AttributedModel/src/System/Composition/ImportAttribute.cs#L31C9-L34C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.AttributedModel/src/System/Composition/ImportAttribute.cs#L31C9-L34C10" }, { "DocsId": "P:System.Composition.ImportAttribute.ContractName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.AttributedModel/src/System/Composition/ImportAttribute.cs#L43C38-L43C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.AttributedModel/src/System/Composition/ImportAttribute.cs#L43C38-L43C42" }, { "DocsId": "P:System.Composition.ImportAttribute.AllowDefault", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.AttributedModel/src/System/Composition/ImportAttribute.cs#L50C36-L50C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.AttributedModel/src/System/Composition/ImportAttribute.cs#L50C36-L50C40" } ], "DocsId": "T:System.Composition.ImportAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.AttributedModel/src/System/Composition/ImportAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.AttributedModel/src/System/Composition/ImportAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Composition.ImportingConstructorAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.AttributedModel/src/System/Composition/ImportingConstructorAttribute.cs#L20C9-L22C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.AttributedModel/src/System/Composition/ImportingConstructorAttribute.cs#L20C9-L22C10" } ], "DocsId": "T:System.Composition.ImportingConstructorAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.AttributedModel/src/System/Composition/ImportingConstructorAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.AttributedModel/src/System/Composition/ImportingConstructorAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Composition.ImportManyAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.AttributedModel/src/System/Composition/ImportManyAttribute.cs#L19C40-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.AttributedModel/src/System/Composition/ImportManyAttribute.cs#L19C40-L21C10" }, { "DocsId": "M:System.Composition.ImportManyAttribute.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.AttributedModel/src/System/Composition/ImportManyAttribute.cs#L31C9-L34C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.AttributedModel/src/System/Composition/ImportManyAttribute.cs#L31C9-L34C10" }, { "DocsId": "P:System.Composition.ImportManyAttribute.ContractName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.AttributedModel/src/System/Composition/ImportManyAttribute.cs#L43C38-L43C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.AttributedModel/src/System/Composition/ImportManyAttribute.cs#L43C38-L43C42" } ], "DocsId": "T:System.Composition.ImportManyAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.AttributedModel/src/System/Composition/ImportManyAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.AttributedModel/src/System/Composition/ImportManyAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Composition.ImportMetadataConstraintAttribute.#ctor(System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.AttributedModel/src/System/Composition/ImportMetadataConstraintAttribute.cs#L17C9-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.AttributedModel/src/System/Composition/ImportMetadataConstraintAttribute.cs#L17C9-L21C10" }, { "DocsId": "P:System.Composition.ImportMetadataConstraintAttribute.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.AttributedModel/src/System/Composition/ImportMetadataConstraintAttribute.cs#L26C30-L26C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.AttributedModel/src/System/Composition/ImportMetadataConstraintAttribute.cs#L26C30-L26C34" }, { "DocsId": "P:System.Composition.ImportMetadataConstraintAttribute.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.AttributedModel/src/System/Composition/ImportMetadataConstraintAttribute.cs#L31C31-L31C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.AttributedModel/src/System/Composition/ImportMetadataConstraintAttribute.cs#L31C31-L31C35" } ], "DocsId": "T:System.Composition.ImportMetadataConstraintAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.AttributedModel/src/System/Composition/ImportMetadataConstraintAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.AttributedModel/src/System/Composition/ImportMetadataConstraintAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Composition.MetadataAttributeAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.AttributedModel/src/System/Composition/MetadataAttributeAttribute.cs#L17C9-L19C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.AttributedModel/src/System/Composition/MetadataAttributeAttribute.cs#L17C9-L19C10" } ], "DocsId": "T:System.Composition.MetadataAttributeAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.AttributedModel/src/System/Composition/MetadataAttributeAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.AttributedModel/src/System/Composition/MetadataAttributeAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Composition.OnImportsSatisfiedAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.AttributedModel/src/System/Composition/OnImportsSatisfiedAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.AttributedModel/src/System/Composition/OnImportsSatisfiedAttribute.cs" } ], "DocsId": "T:System.Composition.OnImportsSatisfiedAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.AttributedModel/src/System/Composition/OnImportsSatisfiedAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.AttributedModel/src/System/Composition/OnImportsSatisfiedAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Composition.PartMetadataAttribute.#ctor(System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.AttributedModel/src/System/Composition/PartMetadataAttribute.cs#L24C9-L28C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.AttributedModel/src/System/Composition/PartMetadataAttribute.cs#L24C9-L28C10" }, { "DocsId": "P:System.Composition.PartMetadataAttribute.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.AttributedModel/src/System/Composition/PartMetadataAttribute.cs#L36C30-L36C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.AttributedModel/src/System/Composition/PartMetadataAttribute.cs#L36C30-L36C34" }, { "DocsId": "P:System.Composition.PartMetadataAttribute.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.AttributedModel/src/System/Composition/PartMetadataAttribute.cs#L44C31-L44C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.AttributedModel/src/System/Composition/PartMetadataAttribute.cs#L44C31-L44C35" } ], "DocsId": "T:System.Composition.PartMetadataAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.AttributedModel/src/System/Composition/PartMetadataAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.AttributedModel/src/System/Composition/PartMetadataAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Composition.PartNotDiscoverableAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.AttributedModel/src/System/Composition/PartNotDiscoverableAttribute.cs#L15C9-L17C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.AttributedModel/src/System/Composition/PartNotDiscoverableAttribute.cs#L15C9-L17C10" } ], "DocsId": "T:System.Composition.PartNotDiscoverableAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.AttributedModel/src/System/Composition/PartNotDiscoverableAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.AttributedModel/src/System/Composition/PartNotDiscoverableAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Composition.SharedAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.AttributedModel/src/System/Composition/SharedAttribute.cs#L23C36-L25C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.AttributedModel/src/System/Composition/SharedAttribute.cs#L23C36-L25C10" }, { "DocsId": "M:System.Composition.SharedAttribute.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.AttributedModel/src/System/Composition/SharedAttribute.cs#L32C62-L34C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.AttributedModel/src/System/Composition/SharedAttribute.cs#L32C62-L34C10" }, { "DocsId": "P:System.Composition.SharedAttribute.SharingBoundary", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.AttributedModel/src/System/Composition/SharedAttribute.cs#L39C42-L39C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.AttributedModel/src/System/Composition/SharedAttribute.cs#L39C42-L39C60" } ], "DocsId": "T:System.Composition.SharedAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.AttributedModel/src/System/Composition/SharedAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.AttributedModel/src/System/Composition/SharedAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Composition.SharingBoundaryAttribute.#ctor(System.String[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.AttributedModel/src/System/Composition/SharingBoundaryAttribute.cs#L30C9-L33C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.AttributedModel/src/System/Composition/SharingBoundaryAttribute.cs#L30C9-L33C10" }, { "DocsId": "P:System.Composition.SharingBoundaryAttribute.SharingBoundaryNames", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.AttributedModel/src/System/Composition/SharingBoundaryAttribute.cs#L38C67-L38C106" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.AttributedModel/src/System/Composition/SharingBoundaryAttribute.cs#L38C67-L38C106" } ], "DocsId": "T:System.Composition.SharingBoundaryAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.AttributedModel/src/System/Composition/SharingBoundaryAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.AttributedModel/src/System/Composition/SharingBoundaryAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Composition.Convention.AttributedModelProvider.GetCustomAttributes(System.Type,System.Reflection.MemberInfo)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.AttributedModel/src/System/Composition/Convention/AttributedModelProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.AttributedModel/src/System/Composition/Convention/AttributedModelProvider.cs" }, { "DocsId": "M:System.Composition.Convention.AttributedModelProvider.GetCustomAttributes(System.Type,System.Reflection.ParameterInfo)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.AttributedModel/src/System/Composition/Convention/AttributedModelProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.AttributedModel/src/System/Composition/Convention/AttributedModelProvider.cs" }, { "DocsId": "M:System.Composition.Convention.AttributedModelProvider.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.AttributedModel/src/System/Composition/Convention/AttributedModelProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.AttributedModel/src/System/Composition/Convention/AttributedModelProvider.cs" } ], "DocsId": "T:System.Composition.Convention.AttributedModelProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.AttributedModel/src/System/Composition/Convention/AttributedModelProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.AttributedModel/src/System/Composition/Convention/AttributedModelProvider.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/System.Composition.Convention.json b/xml/SourceLinkInformation/net-9.0/System.Composition.Convention.json index f13c9765de9..40e37ea1258 100644 --- a/xml/SourceLinkInformation/net-9.0/System.Composition.Convention.json +++ b/xml/SourceLinkInformation/net-9.0/System.Composition.Convention.json @@ -1,267 +1,266 @@ { "Assembly": "System.Composition.Convention", - "GUID": "BB149310E8AC4EDE97220033E30CF897FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "3A496E6D3BB64654A952411E0F1E94B6FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:System.Composition.Convention.ConventionBuilder.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ConventionBuilder.cs#L16C9-L27C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ConventionBuilder.cs#L16C9-L27C10" }, { "DocsId": "M:System.Composition.Convention.ConventionBuilder.ForTypesDerivedFrom``1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ConventionBuilder.cs#L37C13-L39C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ConventionBuilder.cs#L37C13-L39C32" }, { "DocsId": "M:System.Composition.Convention.ConventionBuilder.ForTypesDerivedFrom(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ConventionBuilder.cs#L50C13-L57C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ConventionBuilder.cs#L16707566C0-L57C32" }, { "DocsId": "M:System.Composition.Convention.ConventionBuilder.ForType``1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ConventionBuilder.cs#L67C13-L69C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ConventionBuilder.cs#L67C13-L69C32" }, { "DocsId": "M:System.Composition.Convention.ConventionBuilder.ForType(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ConventionBuilder.cs#L79C13-L86C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ConventionBuilder.cs#L16707566C0-L86C32" }, { "DocsId": "M:System.Composition.Convention.ConventionBuilder.ForTypesMatching``1(System.Predicate{System.Type})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ConventionBuilder.cs#L98C13-L105C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ConventionBuilder.cs#L98C13-L105C32" }, { "DocsId": "M:System.Composition.Convention.ConventionBuilder.ForTypesMatching(System.Predicate{System.Type})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ConventionBuilder.cs#L116C13-L123C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ConventionBuilder.cs#L116C13-L123C32" }, { "DocsId": "M:System.Composition.Convention.ConventionBuilder.GetCustomAttributes(System.Type,System.Reflection.MemberInfo)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ConventionBuilder.cs#L161C13-L244C110" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ConventionBuilder.cs#L161C13-L244C110" }, { "DocsId": "M:System.Composition.Convention.ConventionBuilder.GetCustomAttributes(System.Type,System.Reflection.ParameterInfo)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ConventionBuilder.cs#L301C13-L308C96" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ConventionBuilder.cs#L301C13-L308C96" } ], "DocsId": "T:System.Composition.Convention.ConventionBuilder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ConventionBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ConventionBuilder.cs" }, { "Members": [ { "DocsId": "M:System.Composition.Convention.ExportConventionBuilder.AsContractType``1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ExportConventionBuilder.cs#L33C13-L33C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ExportConventionBuilder.cs#L33C13-L33C46" }, { "DocsId": "M:System.Composition.Convention.ExportConventionBuilder.AsContractType(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ExportConventionBuilder.cs#L43C13-L49C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ExportConventionBuilder.cs#L43C13-L49C25" }, { "DocsId": "M:System.Composition.Convention.ExportConventionBuilder.AsContractName(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ExportConventionBuilder.cs#L59C13-L69C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ExportConventionBuilder.cs#L59C13-L69C25" }, { "DocsId": "M:System.Composition.Convention.ExportConventionBuilder.AsContractName(System.Func{System.Type,System.String})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ExportConventionBuilder.cs#L79C13-L85C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ExportConventionBuilder.cs#L79C13-L85C25" }, { "DocsId": "M:System.Composition.Convention.ExportConventionBuilder.AddMetadata(System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ExportConventionBuilder.cs#L96C13-L108C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ExportConventionBuilder.cs#L96C13-L108C25" }, { "DocsId": "M:System.Composition.Convention.ExportConventionBuilder.AddMetadata(System.String,System.Func{System.Type,System.Object})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ExportConventionBuilder.cs#L119C13-L135C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ExportConventionBuilder.cs#L119C13-L135C25" } ], "DocsId": "T:System.Composition.Convention.ExportConventionBuilder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ExportConventionBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ExportConventionBuilder.cs" }, { "Members": [ { "DocsId": "M:System.Composition.Convention.ImportConventionBuilder.AsContractName(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ImportConventionBuilder.cs#L33C13-L43C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ImportConventionBuilder.cs#L33C13-L43C25" }, { "DocsId": "M:System.Composition.Convention.ImportConventionBuilder.AsContractName(System.Func{System.Type,System.String})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ImportConventionBuilder.cs#L53C13-L59C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ImportConventionBuilder.cs#L53C13-L59C25" }, { "DocsId": "M:System.Composition.Convention.ImportConventionBuilder.AsMany", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ImportConventionBuilder.cs#L68C13-L68C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ImportConventionBuilder.cs#L68C13-L68C33" }, { "DocsId": "M:System.Composition.Convention.ImportConventionBuilder.AsMany(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ImportConventionBuilder.cs#L78C13-L79C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ImportConventionBuilder.cs#L78C13-L79C25" }, { "DocsId": "M:System.Composition.Convention.ImportConventionBuilder.AllowDefault", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ImportConventionBuilder.cs#L89C13-L90C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ImportConventionBuilder.cs#L89C13-L90C25" }, { "DocsId": "M:System.Composition.Convention.ImportConventionBuilder.AddMetadataConstraint(System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ImportConventionBuilder.cs#L101C13-L113C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ImportConventionBuilder.cs#L101C13-L113C25" }, { "DocsId": "M:System.Composition.Convention.ImportConventionBuilder.AddMetadataConstraint(System.String,System.Func{System.Type,System.Object})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ImportConventionBuilder.cs#L124C13-L140C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ImportConventionBuilder.cs#L124C13-L140C25" } ], "DocsId": "T:System.Composition.Convention.ImportConventionBuilder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ImportConventionBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ImportConventionBuilder.cs" }, { "Members": [ { "DocsId": "M:System.Composition.Convention.ParameterImportConventionBuilder.Import``1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ParameterImportConventionBuilder.cs#L21C13-L21C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ParameterImportConventionBuilder.cs#L21C13-L21C28" }, { "DocsId": "M:System.Composition.Convention.ParameterImportConventionBuilder.Import``1(System.Action{System.Composition.Convention.ImportConventionBuilder})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ParameterImportConventionBuilder.cs#L32C13-L32C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ParameterImportConventionBuilder.cs#L32C13-L32C28" } ], "DocsId": "T:System.Composition.Convention.ParameterImportConventionBuilder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ParameterImportConventionBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/ParameterImportConventionBuilder.cs" }, { "Members": [ { "DocsId": "M:System.Composition.Convention.PartConventionBuilder.Export", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilder.cs#L56C13-L58C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilder.cs#L56C13-L58C25" }, { "DocsId": "M:System.Composition.Convention.PartConventionBuilder.Export(System.Action{System.Composition.Convention.ExportConventionBuilder})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilder.cs#L68C13-L76C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilder.cs#L68C13-L76C25" }, { "DocsId": "M:System.Composition.Convention.PartConventionBuilder.Export``1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilder.cs#L85C13-L87C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilder.cs#L85C13-L87C25" }, { "DocsId": "M:System.Composition.Convention.PartConventionBuilder.Export``1(System.Action{System.Composition.Convention.ExportConventionBuilder})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilder.cs#L97C13-L105C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilder.cs#L97C13-L105C25" }, { "DocsId": "M:System.Composition.Convention.PartConventionBuilder.SelectConstructor(System.Func{System.Collections.Generic.IEnumerable{System.Reflection.ConstructorInfo},System.Reflection.ConstructorInfo})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilder.cs#L115C13-L121C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilder.cs#L115C13-L121C25" }, { "DocsId": "M:System.Composition.Convention.PartConventionBuilder.SelectConstructor(System.Func{System.Collections.Generic.IEnumerable{System.Reflection.ConstructorInfo},System.Reflection.ConstructorInfo},System.Action{System.Reflection.ParameterInfo,System.Composition.Convention.ImportConventionBuilder})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilder.cs#L133C13-L140C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilder.cs#L133C13-L140C25" }, { "DocsId": "M:System.Composition.Convention.PartConventionBuilder.ExportInterfaces(System.Predicate{System.Type})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilder.cs#L150C13-L155C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilder.cs#L150C13-L155C64" }, { "DocsId": "M:System.Composition.Convention.PartConventionBuilder.ExportInterfaces", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilder.cs#L164C13-L164C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilder.cs#L164C13-L164C48" }, { "DocsId": "M:System.Composition.Convention.PartConventionBuilder.ExportInterfaces(System.Predicate{System.Type},System.Action{System.Type,System.Composition.Convention.ExportConventionBuilder})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilder.cs#L176C13-L185C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilder.cs#L176C13-L185C79" }, { "DocsId": "M:System.Composition.Convention.PartConventionBuilder.ExportProperties(System.Predicate{System.Reflection.PropertyInfo})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilder.cs#L202C13-L207C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilder.cs#L202C13-L207C63" }, { "DocsId": "M:System.Composition.Convention.PartConventionBuilder.ExportProperties(System.Predicate{System.Reflection.PropertyInfo},System.Action{System.Reflection.PropertyInfo,System.Composition.Convention.ExportConventionBuilder})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilder.cs#L219C13-L228C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilder.cs#L219C13-L228C78" }, { "DocsId": "M:System.Composition.Convention.PartConventionBuilder.ExportProperties``1(System.Predicate{System.Reflection.PropertyInfo})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilder.cs#L246C13-L251C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilder.cs#L246C13-L251C66" }, { "DocsId": "M:System.Composition.Convention.PartConventionBuilder.ExportProperties``1(System.Predicate{System.Reflection.PropertyInfo},System.Action{System.Reflection.PropertyInfo,System.Composition.Convention.ExportConventionBuilder})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilder.cs#L264C13-L273C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilder.cs#L264C13-L273C81" }, { "DocsId": "M:System.Composition.Convention.PartConventionBuilder.ImportProperties(System.Predicate{System.Reflection.PropertyInfo})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilder.cs#L290C13-L295C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilder.cs#L290C13-L295C63" }, { "DocsId": "M:System.Composition.Convention.PartConventionBuilder.ImportProperties(System.Predicate{System.Reflection.PropertyInfo},System.Action{System.Reflection.PropertyInfo,System.Composition.Convention.ImportConventionBuilder})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilder.cs#L307C13-L316C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilder.cs#L307C13-L316C78" }, { "DocsId": "M:System.Composition.Convention.PartConventionBuilder.ImportProperties``1(System.Predicate{System.Reflection.PropertyInfo})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilder.cs#L334C13-L339C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilder.cs#L334C13-L339C66" }, { "DocsId": "M:System.Composition.Convention.PartConventionBuilder.ImportProperties``1(System.Predicate{System.Reflection.PropertyInfo},System.Action{System.Reflection.PropertyInfo,System.Composition.Convention.ImportConventionBuilder})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilder.cs#L352C13-L361C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilder.cs#L352C13-L361C81" }, { "DocsId": "M:System.Composition.Convention.PartConventionBuilder.NotifyImportsSatisfied(System.Predicate{System.Reflection.MethodInfo})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilder.cs#L378C13-L379C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilder.cs#L378C13-L379C25" }, { "DocsId": "M:System.Composition.Convention.PartConventionBuilder.Shared", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilder.cs#L388C13-L388C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilder.cs#L388C13-L388C37" }, { "DocsId": "M:System.Composition.Convention.PartConventionBuilder.Shared(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilder.cs#L398C13-L408C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilder.cs#L398C13-L408C48" }, { "DocsId": "M:System.Composition.Convention.PartConventionBuilder.AddPartMetadata(System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilder.cs#L426C13-L438C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilder.cs#L426C13-L438C25" }, { "DocsId": "M:System.Composition.Convention.PartConventionBuilder.AddPartMetadata(System.String,System.Func{System.Type,System.Object})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilder.cs#L449C13-L465C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilder.cs#L449C13-L465C25" } ], "DocsId": "T:System.Composition.Convention.PartConventionBuilder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilder.cs" }, { "Members": [ { "DocsId": "M:System.Composition.Convention.PartConventionBuilder`1.SelectConstructor(System.Linq.Expressions.Expression{System.Func{System.Composition.Convention.ParameterImportConventionBuilder,`0}})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilderOfT.cs#L220C13-L227C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilderOfT.cs#L220C13-L227C25" }, { "DocsId": "M:System.Composition.Convention.PartConventionBuilder`1.ExportProperty(System.Linq.Expressions.Expression{System.Func{`0,System.Object}})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilderOfT.cs#L237C13-L237C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilderOfT.cs#L237C13-L237C59" }, { "DocsId": "M:System.Composition.Convention.PartConventionBuilder`1.ExportProperty(System.Linq.Expressions.Expression{System.Func{`0,System.Object}},System.Action{System.Composition.Convention.ExportConventionBuilder})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilderOfT.cs#L250C13-L257C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilderOfT.cs#L250C13-L257C25" }, { "DocsId": "M:System.Composition.Convention.PartConventionBuilder`1.ExportProperty``1(System.Linq.Expressions.Expression{System.Func{`0,System.Object}})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilderOfT.cs#L269C13-L269C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilderOfT.cs#L269C13-L269C70" }, { "DocsId": "M:System.Composition.Convention.PartConventionBuilder`1.ExportProperty``1(System.Linq.Expressions.Expression{System.Func{`0,System.Object}},System.Action{System.Composition.Convention.ExportConventionBuilder})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilderOfT.cs#L283C13-L290C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilderOfT.cs#L283C13-L290C25" }, { "DocsId": "M:System.Composition.Convention.PartConventionBuilder`1.ImportProperty(System.Linq.Expressions.Expression{System.Func{`0,System.Object}})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilderOfT.cs#L300C13-L300C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilderOfT.cs#L300C13-L300C59" }, { "DocsId": "M:System.Composition.Convention.PartConventionBuilder`1.ImportProperty(System.Linq.Expressions.Expression{System.Func{`0,System.Object}},System.Action{System.Composition.Convention.ImportConventionBuilder})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilderOfT.cs#L313C13-L320C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilderOfT.cs#L313C13-L320C25" }, { "DocsId": "M:System.Composition.Convention.PartConventionBuilder`1.ImportProperty``1(System.Linq.Expressions.Expression{System.Func{`0,System.Object}})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilderOfT.cs#L331C13-L331C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilderOfT.cs#L331C13-L331C70" }, { "DocsId": "M:System.Composition.Convention.PartConventionBuilder`1.ImportProperty``1(System.Linq.Expressions.Expression{System.Func{`0,System.Object}},System.Action{System.Composition.Convention.ImportConventionBuilder})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilderOfT.cs#L345C13-L352C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilderOfT.cs#L345C13-L352C25" }, { "DocsId": "M:System.Composition.Convention.PartConventionBuilder`1.NotifyImportsSatisfied(System.Linq.Expressions.Expression{System.Action{`0}})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilderOfT.cs#L361C13-L368C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilderOfT.cs#L361C13-L368C25" } ], "DocsId": "T:System.Composition.Convention.PartConventionBuilder`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilderOfT.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Convention/src/System/Composition/Convention/PartConventionBuilderOfT.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/System.Composition.Hosting.json b/xml/SourceLinkInformation/net-9.0/System.Composition.Hosting.json index ec1f472995d..a32b2e6f507 100644 --- a/xml/SourceLinkInformation/net-9.0/System.Composition.Hosting.json +++ b/xml/SourceLinkInformation/net-9.0/System.Composition.Hosting.json @@ -1,253 +1,252 @@ { "Assembly": "System.Composition.Hosting", - "GUID": "3E7760F5F2F74547B9148247804829DAFFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "F010B2ACA747412FA2C97942D5447766FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:System.Composition.Hosting.CompositionHost.CreateCompositionHost(System.Composition.Hosting.Core.ExportDescriptorProvider[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/CompositionHost.cs#L37C13-L37C92" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/CompositionHost.cs#L37C13-L37C92" }, { "DocsId": "M:System.Composition.Hosting.CompositionHost.CreateCompositionHost(System.Collections.Generic.IEnumerable{System.Composition.Hosting.Core.ExportDescriptorProvider})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/CompositionHost.cs#L46C13-L63C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/CompositionHost.cs#L46C13-L63C51" }, { "DocsId": "M:System.Composition.Hosting.CompositionHost.TryGetExport(System.Composition.Hosting.Core.CompositionContract,System.Object@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/CompositionHost.cs#L76C13-L76C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/CompositionHost.cs#L76C13-L76C76" }, { "DocsId": "M:System.Composition.Hosting.CompositionHost.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/CompositionHost.cs#L84C13-L85C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/CompositionHost.cs#L84C13-L85C10" } ], "DocsId": "T:System.Composition.Hosting.CompositionHost", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/CompositionHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/CompositionHost.cs" }, { "Members": [ { "DocsId": "M:System.Composition.Hosting.Core.CompositeActivator.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/CompositeActivator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/CompositeActivator.cs" }, { "DocsId": "M:System.Composition.Hosting.Core.CompositeActivator.Invoke(System.Composition.Hosting.Core.LifetimeContext,System.Composition.Hosting.Core.CompositionOperation)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/CompositeActivator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/CompositeActivator.cs" }, { "DocsId": "M:System.Composition.Hosting.Core.CompositeActivator.BeginInvoke(System.Composition.Hosting.Core.LifetimeContext,System.Composition.Hosting.Core.CompositionOperation,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/CompositeActivator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/CompositeActivator.cs" }, { "DocsId": "M:System.Composition.Hosting.Core.CompositeActivator.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/CompositeActivator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/CompositeActivator.cs" } ], "DocsId": "T:System.Composition.Hosting.Core.CompositeActivator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/CompositeActivator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/CompositeActivator.cs" }, { "Members": [ { "DocsId": "M:System.Composition.Hosting.Core.CompositionDependency.Satisfied(System.Composition.Hosting.Core.CompositionContract,System.Composition.Hosting.Core.ExportDescriptorPromise,System.Boolean,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/CompositionDependency.cs#L42C13-L55C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/CompositionDependency.cs#L42C13-L55C86" }, { "DocsId": "M:System.Composition.Hosting.Core.CompositionDependency.Missing(System.Composition.Hosting.Core.CompositionContract,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/CompositionDependency.cs#L67C13-L76C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/CompositionDependency.cs#L67C13-L76C62" }, { "DocsId": "M:System.Composition.Hosting.Core.CompositionDependency.Oversupplied(System.Composition.Hosting.Core.CompositionContract,System.Collections.Generic.IEnumerable{System.Composition.Hosting.Core.ExportDescriptorPromise},System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/CompositionDependency.cs#L89C13-L102C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/CompositionDependency.cs#L89C13-L102C71" }, { "DocsId": "M:System.Composition.Hosting.Core.CompositionDependency.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/CompositionDependency.cs#L156C13-L159C98" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/CompositionDependency.cs#L156C13-L159C98" }, { "DocsId": "P:System.Composition.Hosting.Core.CompositionDependency.Target", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/CompositionDependency.cs#L130C55-L130C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/CompositionDependency.cs#L130C55-L130C70" }, { "DocsId": "P:System.Composition.Hosting.Core.CompositionDependency.IsPrerequisite", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/CompositionDependency.cs#L137C44-L137C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/CompositionDependency.cs#L137C44-L137C67" }, { "DocsId": "P:System.Composition.Hosting.Core.CompositionDependency.Site", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/CompositionDependency.cs#L143C36-L143C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/CompositionDependency.cs#L143C36-L143C49" }, { "DocsId": "P:System.Composition.Hosting.Core.CompositionDependency.Contract", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/CompositionDependency.cs#L148C53-L148C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/CompositionDependency.cs#L148C53-L148C70" } ], "DocsId": "T:System.Composition.Hosting.Core.CompositionDependency", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/CompositionDependency.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/CompositionDependency.cs" }, { "Members": [ { "DocsId": "M:System.Composition.Hosting.Core.CompositionOperation.Run(System.Composition.Hosting.Core.LifetimeContext,System.Composition.Hosting.Core.CompositeActivator)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/CompositionOperation.cs#L33C13-L48C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/CompositionOperation.cs#L33C13-L48C10" }, { "DocsId": "M:System.Composition.Hosting.Core.CompositionOperation.AddNonPrerequisiteAction(System.Action)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/CompositionOperation.cs#L57C13-L65C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/CompositionOperation.cs#L57C13-L65C10" }, { "DocsId": "M:System.Composition.Hosting.Core.CompositionOperation.AddPostCompositionAction(System.Action)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/CompositionOperation.cs#L74C13-L82C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/CompositionOperation.cs#L74C13-L82C10" }, { "DocsId": "M:System.Composition.Hosting.Core.CompositionOperation.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/CompositionOperation.cs#L128C13-L130C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/CompositionOperation.cs#L128C13-L130C10" } ], "DocsId": "T:System.Composition.Hosting.Core.CompositionOperation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/CompositionOperation.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/CompositionOperation.cs" }, { "Members": [ { "DocsId": "M:System.Composition.Hosting.Core.DependencyAccessor.GetPromises(System.Composition.Hosting.Core.CompositionContract)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/DependencyAccessor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/DependencyAccessor.cs" }, { "DocsId": "M:System.Composition.Hosting.Core.DependencyAccessor.ResolveDependencies(System.Object,System.Composition.Hosting.Core.CompositionContract,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/DependencyAccessor.cs#L30C13-L34C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/DependencyAccessor.cs#L30C13-L34C27" }, { "DocsId": "M:System.Composition.Hosting.Core.DependencyAccessor.ResolveRequiredDependency(System.Object,System.Composition.Hosting.Core.CompositionContract,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/DependencyAccessor.cs#L47C13-L50C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/DependencyAccessor.cs#L47C13-L50C27" }, { "DocsId": "M:System.Composition.Hosting.Core.DependencyAccessor.TryResolveOptionalDependency(System.Object,System.Composition.Hosting.Core.CompositionContract,System.Boolean,System.Composition.Hosting.Core.CompositionDependency@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/DependencyAccessor.cs#L63C13-L77C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/DependencyAccessor.cs#L63C13-L77C25" }, { "DocsId": "M:System.Composition.Hosting.Core.DependencyAccessor.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/DependencyAccessor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/DependencyAccessor.cs" } ], "DocsId": "T:System.Composition.Hosting.Core.DependencyAccessor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/DependencyAccessor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/DependencyAccessor.cs" }, { "Members": [ { "DocsId": "M:System.Composition.Hosting.Core.ExportDescriptor.Create(System.Composition.Hosting.Core.CompositeActivator,System.Collections.Generic.IDictionary{System.String,System.Object})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/ExportDescriptor.cs#L33C13-L33C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/ExportDescriptor.cs#L33C13-L33C68" }, { "DocsId": "M:System.Composition.Hosting.Core.ExportDescriptor.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/ExportDescriptor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/ExportDescriptor.cs" }, { "DocsId": "P:System.Composition.Hosting.Core.ExportDescriptor.Activator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/ExportDescriptor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/ExportDescriptor.cs" }, { "DocsId": "P:System.Composition.Hosting.Core.ExportDescriptor.Metadata", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/ExportDescriptor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/ExportDescriptor.cs" } ], "DocsId": "T:System.Composition.Hosting.Core.ExportDescriptor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/ExportDescriptor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/ExportDescriptor.cs" }, { "Members": [ { "DocsId": "M:System.Composition.Hosting.Core.ExportDescriptorPromise.#ctor(System.Composition.Hosting.Core.CompositionContract,System.String,System.Boolean,System.Func{System.Collections.Generic.IEnumerable{System.Composition.Hosting.Core.CompositionDependency}},System.Func{System.Collections.Generic.IEnumerable{System.Composition.Hosting.Core.CompositionDependency},System.Composition.Hosting.Core.ExportDescriptor})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/ExportDescriptorPromise.cs#L36C9-L48C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/ExportDescriptorPromise.cs#L16707566C0-L48C10" }, { "DocsId": "M:System.Composition.Hosting.Core.ExportDescriptorPromise.GetDescriptor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/ExportDescriptorPromise.cs#L78C13-L95C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/ExportDescriptorPromise.cs#L78C13-L95C10" }, { "DocsId": "M:System.Composition.Hosting.Core.ExportDescriptorPromise.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/ExportDescriptorPromise.cs#L103C13-L103C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/ExportDescriptorPromise.cs#L103C13-L103C84" }, { "DocsId": "P:System.Composition.Hosting.Core.ExportDescriptorPromise.Origin", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/ExportDescriptorPromise.cs#L54C38-L54C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/ExportDescriptorPromise.cs#L54C38-L54C53" }, { "DocsId": "P:System.Composition.Hosting.Core.ExportDescriptorPromise.IsShared", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/ExportDescriptorPromise.cs#L60C38-L60C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/ExportDescriptorPromise.cs#L60C38-L60C55" }, { "DocsId": "P:System.Composition.Hosting.Core.ExportDescriptorPromise.Dependencies", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/ExportDescriptorPromise.cs#L65C79-L65C106" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/ExportDescriptorPromise.cs#L65C79-L65C106" }, { "DocsId": "P:System.Composition.Hosting.Core.ExportDescriptorPromise.Contract", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/ExportDescriptorPromise.cs#L70C53-L70C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/ExportDescriptorPromise.cs#L70C53-L70C70" } ], "DocsId": "T:System.Composition.Hosting.Core.ExportDescriptorPromise", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/ExportDescriptorPromise.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/ExportDescriptorPromise.cs" }, { "Members": [ { "DocsId": "M:System.Composition.Hosting.Core.ExportDescriptorProvider.GetExportDescriptors(System.Composition.Hosting.Core.CompositionContract,System.Composition.Hosting.Core.DependencyAccessor)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/ExportDescriptorProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/ExportDescriptorProvider.cs" }, { "DocsId": "M:System.Composition.Hosting.Core.ExportDescriptorProvider.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/ExportDescriptorProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/ExportDescriptorProvider.cs" }, { "DocsId": "F:System.Composition.Hosting.Core.ExportDescriptorProvider.NoExportDescriptors", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/ExportDescriptorProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/ExportDescriptorProvider.cs" }, { "DocsId": "F:System.Composition.Hosting.Core.ExportDescriptorProvider.NoMetadata", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/ExportDescriptorProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/ExportDescriptorProvider.cs" }, { "DocsId": "F:System.Composition.Hosting.Core.ExportDescriptorProvider.NoDependencies", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/ExportDescriptorProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/ExportDescriptorProvider.cs" } ], "DocsId": "T:System.Composition.Hosting.Core.ExportDescriptorProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/ExportDescriptorProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/ExportDescriptorProvider.cs" }, { "Members": [ { "DocsId": "M:System.Composition.Hosting.Core.LifetimeContext.AllocateSharingId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/LifetimeContext.cs#L51C13-L51C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/LifetimeContext.cs#L51C13-L51C63" }, { "DocsId": "M:System.Composition.Hosting.Core.LifetimeContext.FindContextWithin(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/LifetimeContext.cs#L77C13-L97C22" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/LifetimeContext.cs#L77C13-L97C22" }, { "DocsId": "M:System.Composition.Hosting.Core.LifetimeContext.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/LifetimeContext.cs#L106C13-L121C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/LifetimeContext.cs#L106C13-L121C10" }, { "DocsId": "M:System.Composition.Hosting.Core.LifetimeContext.AddBoundInstance(System.IDisposable)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/LifetimeContext.cs#L130C13-L137C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/LifetimeContext.cs#L130C13-L137C10" }, { "DocsId": "M:System.Composition.Hosting.Core.LifetimeContext.GetOrCreate(System.Int32,System.Composition.Hosting.Core.CompositionOperation,System.Composition.Hosting.Core.CompositeActivator)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/LifetimeContext.cs#L155C13-L184C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/LifetimeContext.cs#L16707566C0-L184C27" }, { "DocsId": "M:System.Composition.Hosting.Core.LifetimeContext.TryGetExport(System.Composition.Hosting.Core.CompositionContract,System.Object@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/LifetimeContext.cs#L198C13-L205C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/LifetimeContext.cs#L198C13-L205C25" }, { "DocsId": "M:System.Composition.Hosting.Core.LifetimeContext.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/LifetimeContext.cs#L214C13-L220C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/LifetimeContext.cs#L214C13-L220C76" } ], "DocsId": "T:System.Composition.Hosting.Core.LifetimeContext", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/LifetimeContext.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Hosting/src/System/Composition/Hosting/Core/LifetimeContext.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/System.Composition.Runtime.json b/xml/SourceLinkInformation/net-9.0/System.Composition.Runtime.json index 7dd2d1f989e..4f6f28a4490 100644 --- a/xml/SourceLinkInformation/net-9.0/System.Composition.Runtime.json +++ b/xml/SourceLinkInformation/net-9.0/System.Composition.Runtime.json @@ -1,187 +1,186 @@ { "Assembly": "System.Composition.Runtime", - "GUID": "06A2EDA2F91244D193D4BC63F15AF0D1FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "2593053E52AE4C149202EE67BE749C41FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:System.Composition.CompositionContext.TryGetExport(System.Composition.Hosting.Core.CompositionContract,System.Object@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Runtime/src/System/Composition/CompositionContext.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Runtime/src/System/Composition/CompositionContext.cs" }, { "DocsId": "M:System.Composition.CompositionContext.GetExport``1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Runtime/src/System/Composition/CompositionContext.cs#L36C13-L36C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Runtime/src/System/Composition/CompositionContext.cs#L36C13-L36C45" }, { "DocsId": "M:System.Composition.CompositionContext.GetExport``1(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Runtime/src/System/Composition/CompositionContext.cs#L49C13-L49C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Runtime/src/System/Composition/CompositionContext.cs#L49C13-L49C70" }, { "DocsId": "M:System.Composition.CompositionContext.TryGetExport(System.Type,System.Object@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Runtime/src/System/Composition/CompositionContext.cs#L62C13-L62C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Runtime/src/System/Composition/CompositionContext.cs#L62C13-L62C63" }, { "DocsId": "M:System.Composition.CompositionContext.TryGetExport(System.Type,System.String,System.Object@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Runtime/src/System/Composition/CompositionContext.cs#L76C13-L80C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Runtime/src/System/Composition/CompositionContext.cs#L76C13-L80C26" }, { "DocsId": "M:System.Composition.CompositionContext.TryGetExport``1(``0@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Runtime/src/System/Composition/CompositionContext.cs#L93C13-L93C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Runtime/src/System/Composition/CompositionContext.cs#L93C13-L93C51" }, { "DocsId": "M:System.Composition.CompositionContext.TryGetExport``1(System.String,``0@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Runtime/src/System/Composition/CompositionContext.cs#L107C13-L114C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Runtime/src/System/Composition/CompositionContext.cs#L107C13-L114C25" }, { "DocsId": "M:System.Composition.CompositionContext.GetExport(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Runtime/src/System/Composition/CompositionContext.cs#L126C13-L126C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Runtime/src/System/Composition/CompositionContext.cs#L126C13-L126C48" }, { "DocsId": "M:System.Composition.CompositionContext.GetExport(System.Type,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Runtime/src/System/Composition/CompositionContext.cs#L139C13-L139C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Runtime/src/System/Composition/CompositionContext.cs#L139C13-L139C81" }, { "DocsId": "M:System.Composition.CompositionContext.GetExport(System.Composition.Hosting.Core.CompositionContract)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Runtime/src/System/Composition/CompositionContext.cs#L151C13-L154C119" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Runtime/src/System/Composition/CompositionContext.cs#L151C13-L154C119" }, { "DocsId": "M:System.Composition.CompositionContext.GetExports(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Runtime/src/System/Composition/CompositionContext.cs#L165C13-L165C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Runtime/src/System/Composition/CompositionContext.cs#L165C13-L165C49" }, { "DocsId": "M:System.Composition.CompositionContext.GetExports(System.Type,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Runtime/src/System/Composition/CompositionContext.cs#L178C13-L183C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Runtime/src/System/Composition/CompositionContext.cs#L178C13-L183C65" }, { "DocsId": "M:System.Composition.CompositionContext.GetExports``1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Runtime/src/System/Composition/CompositionContext.cs#L195C13-L195C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Runtime/src/System/Composition/CompositionContext.cs#L195C13-L195C46" }, { "DocsId": "M:System.Composition.CompositionContext.GetExports``1(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Runtime/src/System/Composition/CompositionContext.cs#L208C13-L208C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Runtime/src/System/Composition/CompositionContext.cs#L208C13-L208C84" }, { "DocsId": "M:System.Composition.CompositionContext.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Runtime/src/System/Composition/CompositionContext.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Runtime/src/System/Composition/CompositionContext.cs" } ], "DocsId": "T:System.Composition.CompositionContext", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Runtime/src/System/Composition/CompositionContext.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Runtime/src/System/Composition/CompositionContext.cs" }, { "Members": [ { "DocsId": "M:System.Composition.ExportFactory`1.#ctor(System.Func{System.Tuple{`0,System.Action}})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Runtime/src/System/Composition/ExportFactoryOfT.cs#L18C9-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Runtime/src/System/Composition/ExportFactoryOfT.cs#L18C9-L21C10" }, { "DocsId": "M:System.Composition.ExportFactory`1.CreateExport", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Runtime/src/System/Composition/ExportFactoryOfT.cs#L29C13-L30C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Runtime/src/System/Composition/ExportFactoryOfT.cs#L29C13-L30C94" } ], "DocsId": "T:System.Composition.ExportFactory`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Runtime/src/System/Composition/ExportFactoryOfT.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Runtime/src/System/Composition/ExportFactoryOfT.cs" }, { "Members": [ { "DocsId": "M:System.Composition.ExportFactory`2.#ctor(System.Func{System.Tuple{`0,System.Action}},`1)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Runtime/src/System/Composition/ExportFactoryOfTTMetadata.cs#L19C15-L22C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Runtime/src/System/Composition/ExportFactoryOfTTMetadata.cs#L19C15-L22C10" }, { "DocsId": "P:System.Composition.ExportFactory`2.Metadata", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Runtime/src/System/Composition/ExportFactoryOfTTMetadata.cs#L27C37-L27C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Runtime/src/System/Composition/ExportFactoryOfTTMetadata.cs#L27C37-L27C41" } ], "DocsId": "T:System.Composition.ExportFactory`2", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Runtime/src/System/Composition/ExportFactoryOfTTMetadata.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Runtime/src/System/Composition/ExportFactoryOfTTMetadata.cs" }, { "Members": [ { "DocsId": "M:System.Composition.Export`1.#ctor(`0,System.Action)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Runtime/src/System/Composition/ExportOfT.cs#L20C9-L24C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Runtime/src/System/Composition/ExportOfT.cs#L20C9-L24C10" }, { "DocsId": "M:System.Composition.Export`1.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Runtime/src/System/Composition/ExportOfT.cs#L34C34-L34C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Runtime/src/System/Composition/ExportOfT.cs#L34C34-L34C58" }, { "DocsId": "P:System.Composition.Export`1.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Runtime/src/System/Composition/ExportOfT.cs#L29C26-L29C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Runtime/src/System/Composition/ExportOfT.cs#L29C26-L29C30" } ], "DocsId": "T:System.Composition.Export`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Runtime/src/System/Composition/ExportOfT.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Runtime/src/System/Composition/ExportOfT.cs" }, { "Members": [ { "DocsId": "M:System.Composition.Hosting.CompositionFailedException.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Runtime/src/System/Composition/Hosting/CompositionFailedException.cs#L17C15-L18C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Runtime/src/System/Composition/Hosting/CompositionFailedException.cs#L17C15-L18C12" }, { "DocsId": "M:System.Composition.Hosting.CompositionFailedException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Runtime/src/System/Composition/Hosting/CompositionFailedException.cs#L25C15-L26C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Runtime/src/System/Composition/Hosting/CompositionFailedException.cs#L25C15-L26C12" }, { "DocsId": "M:System.Composition.Hosting.CompositionFailedException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Runtime/src/System/Composition/Hosting/CompositionFailedException.cs#L34C15-L35C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Runtime/src/System/Composition/Hosting/CompositionFailedException.cs#L34C15-L35C12" } ], "DocsId": "T:System.Composition.Hosting.CompositionFailedException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Runtime/src/System/Composition/Hosting/CompositionFailedException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Runtime/src/System/Composition/Hosting/CompositionFailedException.cs" }, { "Members": [ { "DocsId": "M:System.Composition.Hosting.Core.CompositionContract.#ctor(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Runtime/src/System/Composition/Hosting/Core/CompositionContract.cs#L25C15-L27C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Runtime/src/System/Composition/Hosting/Core/CompositionContract.cs#L25C15-L27C10" }, { "DocsId": "M:System.Composition.Hosting.Core.CompositionContract.#ctor(System.Type,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Runtime/src/System/Composition/Hosting/Core/CompositionContract.cs#L35C15-L37C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Runtime/src/System/Composition/Hosting/Core/CompositionContract.cs#L35C15-L37C10" }, { "DocsId": "M:System.Composition.Hosting.Core.CompositionContract.#ctor(System.Type,System.String,System.Collections.Generic.IDictionary{System.String,System.Object})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Runtime/src/System/Composition/Hosting/Core/CompositionContract.cs#L45C9-L53C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Runtime/src/System/Composition/Hosting/Core/CompositionContract.cs#L45C9-L53C10" }, { "DocsId": "M:System.Composition.Hosting.Core.CompositionContract.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Runtime/src/System/Composition/Hosting/Core/CompositionContract.cs#L78C13-L82C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Runtime/src/System/Composition/Hosting/Core/CompositionContract.cs#L78C13-L82C86" }, { "DocsId": "M:System.Composition.Hosting.Core.CompositionContract.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Runtime/src/System/Composition/Hosting/Core/CompositionContract.cs#L91C13-L96C23" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Runtime/src/System/Composition/Hosting/Core/CompositionContract.cs#L91C13-L96C23" }, { "DocsId": "M:System.Composition.Hosting.Core.CompositionContract.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Runtime/src/System/Composition/Hosting/Core/CompositionContract.cs#L105C13-L115C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Runtime/src/System/Composition/Hosting/Core/CompositionContract.cs#L105C13-L115C27" }, { "DocsId": "M:System.Composition.Hosting.Core.CompositionContract.ChangeType(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Runtime/src/System/Composition/Hosting/Core/CompositionContract.cs#L127C13-L128C98" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Runtime/src/System/Composition/Hosting/Core/CompositionContract.cs#L127C13-L128C98" }, { "DocsId": "M:System.Composition.Hosting.Core.CompositionContract.TryUnwrapMetadataConstraint``1(System.String,``0@,System.Composition.Hosting.Core.CompositionContract@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Runtime/src/System/Composition/Hosting/Core/CompositionContract.cs#L143C13-L172C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Runtime/src/System/Composition/Hosting/Core/CompositionContract.cs#L143C13-L172C25" }, { "DocsId": "P:System.Composition.Hosting.Core.CompositionContract.ContractType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Runtime/src/System/Composition/Hosting/Core/CompositionContract.cs#L58C37-L58C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Runtime/src/System/Composition/Hosting/Core/CompositionContract.cs#L58C37-L58C50" }, { "DocsId": "P:System.Composition.Hosting.Core.CompositionContract.ContractName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Runtime/src/System/Composition/Hosting/Core/CompositionContract.cs#L63C39-L63C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Runtime/src/System/Composition/Hosting/Core/CompositionContract.cs#L63C39-L63C52" }, { "DocsId": "P:System.Composition.Hosting.Core.CompositionContract.MetadataConstraints", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Runtime/src/System/Composition/Hosting/Core/CompositionContract.cs#L69C81-L69C101" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Runtime/src/System/Composition/Hosting/Core/CompositionContract.cs#L69C81-L69C101" } ], "DocsId": "T:System.Composition.Hosting.Core.CompositionContract", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.Runtime/src/System/Composition/Hosting/Core/CompositionContract.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.Runtime/src/System/Composition/Hosting/Core/CompositionContract.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/System.Composition.TypedParts.json b/xml/SourceLinkInformation/net-9.0/System.Composition.TypedParts.json index ee286e2eece..e5733e1f01e 100644 --- a/xml/SourceLinkInformation/net-9.0/System.Composition.TypedParts.json +++ b/xml/SourceLinkInformation/net-9.0/System.Composition.TypedParts.json @@ -1,103 +1,102 @@ { "Assembly": "System.Composition.TypedParts", - "GUID": "1B53156F962B4824A5F0650470747E9BFFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "C3A20FE98FBF471BB34FAE7FF9B0702AFFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:System.Composition.CompositionContextExtensions.SatisfyImports(System.Composition.CompositionContext,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.TypedParts/src/System/Composition/CompositionContextExtensions.cs#L30C13-L31C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.TypedParts/src/System/Composition/CompositionContextExtensions.cs#L30C13-L31C10" }, { "DocsId": "M:System.Composition.CompositionContextExtensions.SatisfyImports(System.Composition.CompositionContext,System.Object,System.Composition.Convention.AttributedModelProvider)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.TypedParts/src/System/Composition/CompositionContextExtensions.cs#L42C13-L43C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.TypedParts/src/System/Composition/CompositionContextExtensions.cs#L42C13-L43C10" } ], "DocsId": "T:System.Composition.CompositionContextExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.TypedParts/src/System/Composition/CompositionContextExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.TypedParts/src/System/Composition/CompositionContextExtensions.cs" }, { "Members": [ { "DocsId": "M:System.Composition.Hosting.ContainerConfiguration.CreateContainer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.TypedParts/src/System/Composition/Hosting/ContainerConfiguration.cs#L33C13-L42C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.TypedParts/src/System/Composition/Hosting/ContainerConfiguration.cs#L33C13-L42C79" }, { "DocsId": "M:System.Composition.Hosting.ContainerConfiguration.WithProvider(System.Composition.Hosting.Core.ExportDescriptorProvider)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.TypedParts/src/System/Composition/Hosting/ContainerConfiguration.cs#L52C13-L58C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.TypedParts/src/System/Composition/Hosting/ContainerConfiguration.cs#L52C13-L58C25" }, { "DocsId": "M:System.Composition.Hosting.ContainerConfiguration.WithDefaultConventions(System.Composition.Convention.AttributedModelProvider)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.TypedParts/src/System/Composition/Hosting/ContainerConfiguration.cs#L70C13-L79C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.TypedParts/src/System/Composition/Hosting/ContainerConfiguration.cs#L70C13-L79C25" }, { "DocsId": "M:System.Composition.Hosting.ContainerConfiguration.WithPart(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.TypedParts/src/System/Composition/Hosting/ContainerConfiguration.cs#L90C13-L90C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.TypedParts/src/System/Composition/Hosting/ContainerConfiguration.cs#L90C13-L90C45" }, { "DocsId": "M:System.Composition.Hosting.ContainerConfiguration.WithPart(System.Type,System.Composition.Convention.AttributedModelProvider)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.TypedParts/src/System/Composition/Hosting/ContainerConfiguration.cs#L102C13-L103C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.TypedParts/src/System/Composition/Hosting/ContainerConfiguration.cs#L102C13-L103C63" }, { "DocsId": "M:System.Composition.Hosting.ContainerConfiguration.WithPart``1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.TypedParts/src/System/Composition/Hosting/ContainerConfiguration.cs#L114C13-L114C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.TypedParts/src/System/Composition/Hosting/ContainerConfiguration.cs#L114C13-L114C42" }, { "DocsId": "M:System.Composition.Hosting.ContainerConfiguration.WithPart``1(System.Composition.Convention.AttributedModelProvider)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.TypedParts/src/System/Composition/Hosting/ContainerConfiguration.cs#L126C13-L126C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.TypedParts/src/System/Composition/Hosting/ContainerConfiguration.cs#L126C13-L126C57" }, { "DocsId": "M:System.Composition.Hosting.ContainerConfiguration.WithParts(System.Type[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.TypedParts/src/System/Composition/Hosting/ContainerConfiguration.cs#L137C13-L137C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.TypedParts/src/System/Composition/Hosting/ContainerConfiguration.cs#L137C13-L137C60" }, { "DocsId": "M:System.Composition.Hosting.ContainerConfiguration.WithParts(System.Collections.Generic.IEnumerable{System.Type})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.TypedParts/src/System/Composition/Hosting/ContainerConfiguration.cs#L148C13-L148C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.TypedParts/src/System/Composition/Hosting/ContainerConfiguration.cs#L148C13-L148C47" }, { "DocsId": "M:System.Composition.Hosting.ContainerConfiguration.WithParts(System.Collections.Generic.IEnumerable{System.Type},System.Composition.Convention.AttributedModelProvider)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.TypedParts/src/System/Composition/Hosting/ContainerConfiguration.cs#L160C13-L166C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.TypedParts/src/System/Composition/Hosting/ContainerConfiguration.cs#L160C13-L166C25" }, { "DocsId": "M:System.Composition.Hosting.ContainerConfiguration.WithAssembly(System.Reflection.Assembly)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.TypedParts/src/System/Composition/Hosting/ContainerConfiguration.cs#L177C13-L177C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.TypedParts/src/System/Composition/Hosting/ContainerConfiguration.cs#L177C13-L177C49" }, { "DocsId": "M:System.Composition.Hosting.ContainerConfiguration.WithAssembly(System.Reflection.Assembly,System.Composition.Convention.AttributedModelProvider)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.TypedParts/src/System/Composition/Hosting/ContainerConfiguration.cs#L189C13-L189C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.TypedParts/src/System/Composition/Hosting/ContainerConfiguration.cs#L189C13-L189C68" }, { "DocsId": "M:System.Composition.Hosting.ContainerConfiguration.WithAssemblies(System.Collections.Generic.IEnumerable{System.Reflection.Assembly})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.TypedParts/src/System/Composition/Hosting/ContainerConfiguration.cs#L200C13-L200C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.TypedParts/src/System/Composition/Hosting/ContainerConfiguration.cs#L200C13-L200C53" }, { "DocsId": "M:System.Composition.Hosting.ContainerConfiguration.WithAssemblies(System.Collections.Generic.IEnumerable{System.Reflection.Assembly},System.Composition.Convention.AttributedModelProvider)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.TypedParts/src/System/Composition/Hosting/ContainerConfiguration.cs#L212C13-L217C113" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.TypedParts/src/System/Composition/Hosting/ContainerConfiguration.cs#L212C13-L217C113" }, { "DocsId": "M:System.Composition.Hosting.ContainerConfiguration.WithExport``1(``0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.TypedParts/src/System/Composition/Hosting/ContainerConfiguration.cs#L228C13-L233C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.TypedParts/src/System/Composition/Hosting/ContainerConfiguration.cs#L228C13-L233C61" }, { "DocsId": "M:System.Composition.Hosting.ContainerConfiguration.WithExport``1(``0,System.String,System.Collections.Generic.IDictionary{System.String,System.Object})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.TypedParts/src/System/Composition/Hosting/ContainerConfiguration.cs#L246C13-L251C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.TypedParts/src/System/Composition/Hosting/ContainerConfiguration.cs#L246C13-L251C90" }, { "DocsId": "M:System.Composition.Hosting.ContainerConfiguration.WithExport(System.Type,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.TypedParts/src/System/Composition/Hosting/ContainerConfiguration.cs#L262C13-L271C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.TypedParts/src/System/Composition/Hosting/ContainerConfiguration.cs#L262C13-L271C75" }, { "DocsId": "M:System.Composition.Hosting.ContainerConfiguration.WithExport(System.Type,System.Object,System.String,System.Collections.Generic.IDictionary{System.String,System.Object})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.TypedParts/src/System/Composition/Hosting/ContainerConfiguration.cs#L284C13-L293C127" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.TypedParts/src/System/Composition/Hosting/ContainerConfiguration.cs#L284C13-L293C127" }, { "DocsId": "M:System.Composition.Hosting.ContainerConfiguration.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.TypedParts/src/System/Composition/Hosting/ContainerConfiguration.cs#L23C9-L24C153" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.TypedParts/src/System/Composition/Hosting/ContainerConfiguration.cs#L23C9-L24C153" } ], "DocsId": "T:System.Composition.Hosting.ContainerConfiguration", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Composition.TypedParts/src/System/Composition/Hosting/ContainerConfiguration.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Composition.TypedParts/src/System/Composition/Hosting/ContainerConfiguration.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/System.Configuration.ConfigurationManager.json b/xml/SourceLinkInformation/net-9.0/System.Configuration.ConfigurationManager.json index ebfe5c96d52..25191039ff6 100644 --- a/xml/SourceLinkInformation/net-9.0/System.Configuration.ConfigurationManager.json +++ b/xml/SourceLinkInformation/net-9.0/System.Configuration.ConfigurationManager.json @@ -1,5203 +1,5202 @@ { "Assembly": "System.Configuration.ConfigurationManager", - "GUID": "DC8EBAF231C545309D74CF396AA90321FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "F9E35023436240828B85A16C27527A35FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "F:System.UriIdnScope.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/UriIdnScope.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/UriIdnScope.cs" }, { "DocsId": "F:System.UriIdnScope.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/UriIdnScope.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/UriIdnScope.cs" }, { "DocsId": "F:System.UriIdnScope.AllExceptIntranet", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/UriIdnScope.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/UriIdnScope.cs" }, { "DocsId": "F:System.UriIdnScope.All", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/UriIdnScope.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/UriIdnScope.cs" } ], "DocsId": "T:System.UriIdnScope", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/UriIdnScope.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/UriIdnScope.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.TraceConfiguration.Register", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Diagnostics/TraceConfiguration.cs#L16C13-L27C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Diagnostics/TraceConfiguration.cs#L16C13-L27C10" } ], "DocsId": "T:System.Diagnostics.TraceConfiguration", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Diagnostics/TraceConfiguration.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Diagnostics/TraceConfiguration.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Configuration.SystemDrawingSection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Drawing/Configuration/SystemDrawingSection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Drawing/Configuration/SystemDrawingSection.cs" }, { "DocsId": "P:System.Drawing.Configuration.SystemDrawingSection.BitmapSuffix", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Drawing/Configuration/SystemDrawingSection.cs#L17C20-L17C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Drawing/Configuration/SystemDrawingSection.cs#L17C20-L17C48" }, { "DocsId": "P:System.Drawing.Configuration.SystemDrawingSection.Properties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Drawing/Configuration/SystemDrawingSection.cs#L21C83-L21C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Drawing/Configuration/SystemDrawingSection.cs#L21C83-L21C95" } ], "DocsId": "T:System.Drawing.Configuration.SystemDrawingSection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Drawing/Configuration/SystemDrawingSection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Drawing/Configuration/SystemDrawingSection.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.DictionarySectionHandler.Create(System.Object,System.Object,System.Xml.XmlNode)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DictionarySectionHandler.cs#L31C13-L79C24" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DictionarySectionHandler.cs#L31C13-L79C24" }, { "DocsId": "M:System.Configuration.DictionarySectionHandler.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DictionarySectionHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DictionarySectionHandler.cs" }, { "DocsId": "P:System.Configuration.DictionarySectionHandler.KeyAttributeName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DictionarySectionHandler.cs#L87C19-L87C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DictionarySectionHandler.cs#L87C19-L87C32" }, { "DocsId": "P:System.Configuration.DictionarySectionHandler.ValueAttributeName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DictionarySectionHandler.cs#L95C19-L95C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DictionarySectionHandler.cs#L95C19-L95C34" } ], "DocsId": "T:System.Configuration.DictionarySectionHandler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DictionarySectionHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DictionarySectionHandler.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.DpapiProtectedConfigurationProvider.Decrypt(System.Xml.XmlNode)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DpapiProtectedConfigurationProvider.cs#L20C13-L42C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DpapiProtectedConfigurationProvider.cs#L20C13-L42C48" }, { "DocsId": "M:System.Configuration.DpapiProtectedConfigurationProvider.Encrypt(System.Xml.XmlNode)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DpapiProtectedConfigurationProvider.cs#L47C13-L56C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DpapiProtectedConfigurationProvider.cs#L47C13-L56C48" }, { "DocsId": "M:System.Configuration.DpapiProtectedConfigurationProvider.Initialize(System.String,System.Collections.Specialized.NameValueCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DpapiProtectedConfigurationProvider.cs#L95C13-L101C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DpapiProtectedConfigurationProvider.cs#L95C13-L101C10" }, { "DocsId": "M:System.Configuration.DpapiProtectedConfigurationProvider.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DpapiProtectedConfigurationProvider.cs#L15C9-L15C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DpapiProtectedConfigurationProvider.cs#L15C9-L15C51" }, { "DocsId": "P:System.Configuration.DpapiProtectedConfigurationProvider.UseMachineProtection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DpapiProtectedConfigurationProvider.cs#L91C50-L91C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DpapiProtectedConfigurationProvider.cs#L91C50-L91C79" } ], "DocsId": "T:System.Configuration.DpapiProtectedConfigurationProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DpapiProtectedConfigurationProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DpapiProtectedConfigurationProvider.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.IConfigurationSystem.GetConfig(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IConfigurationSystem.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IConfigurationSystem.cs" }, { "DocsId": "M:System.Configuration.IConfigurationSystem.Init", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IConfigurationSystem.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IConfigurationSystem.cs" } ], "DocsId": "T:System.Configuration.IConfigurationSystem", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IConfigurationSystem.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IConfigurationSystem.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.IdnElement.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IdnElement.cs#L13C9-L22C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IdnElement.cs#L13C9-L22C10" }, { "DocsId": "P:System.Configuration.IdnElement.Properties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IdnElement.cs#L28C17-L28C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IdnElement.cs#L28C17-L28C36" }, { "DocsId": "P:System.Configuration.IdnElement.Enabled", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IdnElement.cs#L35C19-L35C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IdnElement.cs#L35C19-L35C54" } ], "DocsId": "T:System.Configuration.IdnElement", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IdnElement.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IdnElement.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.IPersistComponentSettings.LoadComponentSettings", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IPersistComponentSettings.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IPersistComponentSettings.cs" }, { "DocsId": "M:System.Configuration.IPersistComponentSettings.SaveComponentSettings", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IPersistComponentSettings.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IPersistComponentSettings.cs" }, { "DocsId": "M:System.Configuration.IPersistComponentSettings.ResetComponentSettings", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IPersistComponentSettings.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IPersistComponentSettings.cs" }, { "DocsId": "P:System.Configuration.IPersistComponentSettings.SaveSettings", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IPersistComponentSettings.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IPersistComponentSettings.cs" }, { "DocsId": "P:System.Configuration.IPersistComponentSettings.SettingsKey", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IPersistComponentSettings.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IPersistComponentSettings.cs" } ], "DocsId": "T:System.Configuration.IPersistComponentSettings", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IPersistComponentSettings.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IPersistComponentSettings.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ApplicationSettingsBase.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L27C9-L35C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L27C9-L35C10" }, { "DocsId": "M:System.Configuration.ApplicationSettingsBase.#ctor(System.ComponentModel.IComponent)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L42C63-L44C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L42C63-L44C10" }, { "DocsId": "M:System.Configuration.ApplicationSettingsBase.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L27C9-L52C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L27C9-L52C10" }, { "DocsId": "M:System.Configuration.ApplicationSettingsBase.#ctor(System.ComponentModel.IComponent,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L57C83-L85C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L57C83-L85C10" }, { "DocsId": "M:System.Configuration.ApplicationSettingsBase.GetPreviousVersion(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L283C13-L304C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L283C13-L304C25" }, { "DocsId": "M:System.Configuration.ApplicationSettingsBase.OnPropertyChanged(System.Object,System.ComponentModel.PropertyChangedEventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L312C13-L313C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L312C13-L313C10" }, { "DocsId": "M:System.Configuration.ApplicationSettingsBase.OnSettingChanging(System.Object,System.Configuration.SettingChangingEventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L320C13-L321C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L320C13-L321C10" }, { "DocsId": "M:System.Configuration.ApplicationSettingsBase.OnSettingsLoaded(System.Object,System.Configuration.SettingsLoadedEventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L328C13-L329C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L328C13-L329C10" }, { "DocsId": "M:System.Configuration.ApplicationSettingsBase.OnSettingsSaving(System.Object,System.ComponentModel.CancelEventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L336C13-L337C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L336C13-L337C10" }, { "DocsId": "M:System.Configuration.ApplicationSettingsBase.Reload", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L344C13-L351C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L344C13-L351C10" }, { "DocsId": "M:System.Configuration.ApplicationSettingsBase.Reset", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L359C13-L368C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L359C13-L368C10" }, { "DocsId": "M:System.Configuration.ApplicationSettingsBase.Save", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L375C13-L382C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L375C13-L382C10" }, { "DocsId": "M:System.Configuration.ApplicationSettingsBase.Upgrade", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L426C13-L435C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L426C13-L435C10" }, { "DocsId": "E:System.Configuration.ApplicationSettingsBase.PropertyChanged", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L223C17-L224C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L223C17-L224C14" }, { "DocsId": "E:System.Configuration.ApplicationSettingsBase.SettingChanging", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L239C17-L240C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L239C17-L240C14" }, { "DocsId": "E:System.Configuration.ApplicationSettingsBase.SettingsLoaded", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L254C17-L255C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L254C17-L255C14" }, { "DocsId": "E:System.Configuration.ApplicationSettingsBase.SettingsSaving", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L269C17-L270C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L269C17-L270C14" }, { "DocsId": "P:System.Configuration.ApplicationSettingsBase.Context", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L95C17-L116C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L95C17-L116C33" }, { "DocsId": "P:System.Configuration.ApplicationSettingsBase.Properties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L130C17-L151C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L130C17-L151C34" }, { "DocsId": "P:System.Configuration.ApplicationSettingsBase.PropertyValues", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L163C17-L163C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L163C17-L163C44" }, { "DocsId": "P:System.Configuration.ApplicationSettingsBase.Providers", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L175C17-L195C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L175C17-L195C35" }, { "DocsId": "P:System.Configuration.ApplicationSettingsBase.SettingsKey", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L207C17-L207C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L207C17-L207C37" }, { "DocsId": "P:System.Configuration.ApplicationSettingsBase.Item(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L391C17-L403C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs#L391C17-L403C14" } ], "DocsId": "T:System.Configuration.ApplicationSettingsBase", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsBase.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ApplicationScopedSettingAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationScopedSettingAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationScopedSettingAttribute.cs" } ], "DocsId": "T:System.Configuration.ApplicationScopedSettingAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationScopedSettingAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationScopedSettingAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ApplicationSettingsGroup.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsGroup.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsGroup.cs" } ], "DocsId": "T:System.Configuration.ApplicationSettingsGroup", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsGroup.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ApplicationSettingsGroup.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.AppSettingsReader.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/AppSettingsReader.cs#L19C9-L22C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/AppSettingsReader.cs#L19C9-L22C10" }, { "DocsId": "M:System.Configuration.AppSettingsReader.GetValue(System.String,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/AppSettingsReader.cs#L33C13-L81C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/AppSettingsReader.cs#L33C13-L81C10" } ], "DocsId": "T:System.Configuration.AppSettingsReader", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/AppSettingsReader.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/AppSettingsReader.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.AppSettingsSection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/AppSettingsSection.cs#L18C9-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/AppSettingsSection.cs#L18C9-L21C10" }, { "DocsId": "M:System.Configuration.AppSettingsSection.GetRuntimeObject", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/AppSettingsSection.cs#L73C13-L74C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/AppSettingsSection.cs#L73C13-L74C37" }, { "DocsId": "M:System.Configuration.AppSettingsSection.Reset(System.Configuration.ConfigurationElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/AppSettingsSection.cs#L79C13-L86C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/AppSettingsSection.cs#L79C13-L86C10" }, { "DocsId": "M:System.Configuration.AppSettingsSection.DeserializeElement(System.Xml.XmlReader,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/AppSettingsSection.cs#L90C13-L141C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/AppSettingsSection.cs#L90C13-L141C10" }, { "DocsId": "P:System.Configuration.AppSettingsSection.Properties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/AppSettingsSection.cs#L23C83-L23C108" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/AppSettingsSection.cs#L23C83-L23C108" }, { "DocsId": "P:System.Configuration.AppSettingsSection.Settings", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/AppSettingsSection.cs#L29C60-L29C116" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/AppSettingsSection.cs#L29C60-L29C116" }, { "DocsId": "P:System.Configuration.AppSettingsSection.File", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/AppSettingsSection.cs#L36C17-L37C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/AppSettingsSection.cs#L36C17-L37C50" } ], "DocsId": "T:System.Configuration.AppSettingsSection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/AppSettingsSection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/AppSettingsSection.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.CallbackValidator.#ctor(System.Type,System.Configuration.ValidatorCallback)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/CallbackValidator.cs#L11C75-L15C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/CallbackValidator.cs#L11C75-L15C10" }, { "DocsId": "M:System.Configuration.CallbackValidator.CanValidate(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/CallbackValidator.cs#L31C13-L31C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/CallbackValidator.cs#L31C13-L31C55" }, { "DocsId": "M:System.Configuration.CallbackValidator.Validate(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/CallbackValidator.cs#L36C13-L37C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/CallbackValidator.cs#L36C13-L37C10" } ], "DocsId": "T:System.Configuration.CallbackValidator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/CallbackValidator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/CallbackValidator.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.CallbackValidatorAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/CallbackValidatorAttribute.cs#L12C9-L12C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/CallbackValidatorAttribute.cs#L12C9-L12C59" }, { "DocsId": "P:System.Configuration.CallbackValidatorAttribute.ValidatorInstance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/CallbackValidatorAttribute.cs#L19C17-L41C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/CallbackValidatorAttribute.cs#L19C17-L41C63" }, { "DocsId": "P:System.Configuration.CallbackValidatorAttribute.Type", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/CallbackValidatorAttribute.cs#L47C19-L47C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/CallbackValidatorAttribute.cs#L47C19-L47C32" }, { "DocsId": "P:System.Configuration.CallbackValidatorAttribute.CallbackMethodName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/CallbackValidatorAttribute.cs#L57C19-L57C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/CallbackValidatorAttribute.cs#L57C19-L57C46" } ], "DocsId": "T:System.Configuration.CallbackValidatorAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/CallbackValidatorAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/CallbackValidatorAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ClientSettingsSection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ClientSettingsSection.cs#L14C9-L16C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ClientSettingsSection.cs#L14C9-L16C10" }, { "DocsId": "P:System.Configuration.ClientSettingsSection.Properties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ClientSettingsSection.cs#L22C17-L22C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ClientSettingsSection.cs#L22C17-L22C37" }, { "DocsId": "P:System.Configuration.ClientSettingsSection.Settings", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ClientSettingsSection.cs#L31C17-L31C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ClientSettingsSection.cs#L31C17-L31C71" } ], "DocsId": "T:System.Configuration.ClientSettingsSection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ClientSettingsSection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ClientSettingsSection.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.CommaDelimitedStringCollectionConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/CommaDelimitedStringAttributeCollectionConverter.cs#L13C13-L15C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/CommaDelimitedStringAttributeCollectionConverter.cs#L13C13-L15C46" }, { "DocsId": "M:System.Configuration.CommaDelimitedStringCollectionConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/CommaDelimitedStringAttributeCollectionConverter.cs#L20C13-L22C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/CommaDelimitedStringAttributeCollectionConverter.cs#L20C13-L22C40" }, { "DocsId": "M:System.Configuration.CommaDelimitedStringCollectionConverter.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/CommaDelimitedStringAttributeCollectionConverter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/CommaDelimitedStringAttributeCollectionConverter.cs" } ], "DocsId": "T:System.Configuration.CommaDelimitedStringCollectionConverter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/CommaDelimitedStringAttributeCollectionConverter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/CommaDelimitedStringAttributeCollectionConverter.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.Configuration.GetSection(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L167C13-L169C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L167C13-L169C28" }, { "DocsId": "M:System.Configuration.Configuration.GetSectionGroup(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L174C13-L176C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L174C13-L176C33" }, { "DocsId": "M:System.Configuration.Configuration.Save", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L181C13-L182C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L181C13-L182C10" }, { "DocsId": "M:System.Configuration.Configuration.Save(System.Configuration.ConfigurationSaveMode)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L186C13-L187C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L186C13-L187C10" }, { "DocsId": "M:System.Configuration.Configuration.Save(System.Configuration.ConfigurationSaveMode,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L191C13-L192C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L191C13-L192C10" }, { "DocsId": "M:System.Configuration.Configuration.SaveAs(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L196C13-L197C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L196C13-L197C10" }, { "DocsId": "M:System.Configuration.Configuration.SaveAs(System.String,System.Configuration.ConfigurationSaveMode)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L201C13-L202C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L201C13-L202C10" }, { "DocsId": "M:System.Configuration.Configuration.SaveAs(System.String,System.Configuration.ConfigurationSaveMode,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L206C13-L209C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L206C13-L209C10" }, { "DocsId": "P:System.Configuration.Configuration.AppSettings", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L78C50-L78C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L78C50-L78C95" }, { "DocsId": "P:System.Configuration.Configuration.ConnectionStrings", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L80C62-L80C119" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L80C62-L80C119" }, { "DocsId": "P:System.Configuration.Configuration.FilePath", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L82C35-L82C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L82C35-L82C70" }, { "DocsId": "P:System.Configuration.Configuration.HasFile", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L84C32-L84C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L84C32-L84C55" }, { "DocsId": "P:System.Configuration.Configuration.Locations", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L87C16-L87C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L87C16-L87C72" }, { "DocsId": "P:System.Configuration.Configuration.EvaluationContext", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L90C16-L90C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L90C16-L90C70" }, { "DocsId": "P:System.Configuration.Configuration.RootSectionGroup", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L96C17-L102C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L96C17-L102C42" }, { "DocsId": "P:System.Configuration.Configuration.Sections", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L106C59-L106C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L106C59-L106C84" }, { "DocsId": "P:System.Configuration.Configuration.SectionGroups", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L108C69-L108C99" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L108C69-L108C99" }, { "DocsId": "P:System.Configuration.Configuration.NamespaceDeclared", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L116C19-L116C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L116C19-L116C57" }, { "DocsId": "P:System.Configuration.Configuration.TypeStringTransformer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L122C19-L122C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L122C19-L122C49" }, { "DocsId": "P:System.Configuration.Configuration.AssemblyStringTransformer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L135C19-L135C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L135C19-L135C53" }, { "DocsId": "P:System.Configuration.Configuration.TargetFramework", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L148C13-L148C17" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs#L148C13-L148C17" } ], "DocsId": "T:System.Configuration.Configuration", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Configuration.cs" }, { "Members": [ { "DocsId": "F:System.Configuration.ConfigurationAllowDefinition.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationAllowDefinition.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationAllowDefinition.cs" }, { "DocsId": "F:System.Configuration.ConfigurationAllowDefinition.MachineOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationAllowDefinition.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationAllowDefinition.cs" }, { "DocsId": "F:System.Configuration.ConfigurationAllowDefinition.MachineToWebRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationAllowDefinition.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationAllowDefinition.cs" }, { "DocsId": "F:System.Configuration.ConfigurationAllowDefinition.MachineToApplication", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationAllowDefinition.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationAllowDefinition.cs" }, { "DocsId": "F:System.Configuration.ConfigurationAllowDefinition.Everywhere", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationAllowDefinition.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationAllowDefinition.cs" } ], "DocsId": "T:System.Configuration.ConfigurationAllowDefinition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationAllowDefinition.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationAllowDefinition.cs" }, { "Members": [ { "DocsId": "F:System.Configuration.ConfigurationAllowExeDefinition.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationAllowExeDefinition.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationAllowExeDefinition.cs" }, { "DocsId": "F:System.Configuration.ConfigurationAllowExeDefinition.MachineOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationAllowExeDefinition.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationAllowExeDefinition.cs" }, { "DocsId": "F:System.Configuration.ConfigurationAllowExeDefinition.MachineToApplication", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationAllowExeDefinition.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationAllowExeDefinition.cs" }, { "DocsId": "F:System.Configuration.ConfigurationAllowExeDefinition.MachineToRoamingUser", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationAllowExeDefinition.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationAllowExeDefinition.cs" }, { "DocsId": "F:System.Configuration.ConfigurationAllowExeDefinition.MachineToLocalUser", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationAllowExeDefinition.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationAllowExeDefinition.cs" } ], "DocsId": "T:System.Configuration.ConfigurationAllowExeDefinition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationAllowExeDefinition.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationAllowExeDefinition.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ConfigurationCollectionAttribute.#ctor(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationCollectionAttribute.cs#L57C13-L22C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationCollectionAttribute.cs#L57C13-L22C10" }, { "DocsId": "P:System.Configuration.ConfigurationCollectionAttribute.ItemType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationCollectionAttribute.cs#L24C32-L24C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationCollectionAttribute.cs#L24C32-L24C36" }, { "DocsId": "P:System.Configuration.ConfigurationCollectionAttribute.AddItemName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationCollectionAttribute.cs#L28C19-L28C92" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationCollectionAttribute.cs#L28C19-L28C92" }, { "DocsId": "P:System.Configuration.ConfigurationCollectionAttribute.RemoveItemName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationCollectionAttribute.cs#L38C19-L38C98" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationCollectionAttribute.cs#L38C19-L38C98" }, { "DocsId": "P:System.Configuration.ConfigurationCollectionAttribute.ClearItemsName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationCollectionAttribute.cs#L48C19-L48C98" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationCollectionAttribute.cs#L48C19-L48C98" }, { "DocsId": "P:System.Configuration.ConfigurationCollectionAttribute.CollectionType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationCollectionAttribute.cs#L56C68-L56C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationCollectionAttribute.cs#L56C68-L56C72" } ], "DocsId": "T:System.Configuration.ConfigurationCollectionAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationCollectionAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationCollectionAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ConfigurationConverterBase.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationConverterBase.cs#L12C13-L12C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationConverterBase.cs#L12C13-L12C43" }, { "DocsId": "M:System.Configuration.ConfigurationConverterBase.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationConverterBase.cs#L17C13-L17C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationConverterBase.cs#L17C13-L17C43" }, { "DocsId": "M:System.Configuration.ConfigurationConverterBase.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationConverterBase.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationConverterBase.cs" } ], "DocsId": "T:System.Configuration.ConfigurationConverterBase", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationConverterBase.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationConverterBase.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ConfigurationElement.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L53C9-L70C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L53C9-L70C10" }, { "DocsId": "M:System.Configuration.ConfigurationElement.Init", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L241C13-L242C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L241C13-L242C10" }, { "DocsId": "M:System.Configuration.ConfigurationElement.IsModified", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L414C13-L426C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L414C13-L426C10" }, { "DocsId": "M:System.Configuration.ConfigurationElement.ResetModified", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L430C13-L437C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L430C13-L437C10" }, { "DocsId": "M:System.Configuration.ConfigurationElement.IsReadOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L441C13-L441C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L441C13-L441C30" }, { "DocsId": "M:System.Configuration.ConfigurationElement.SetReadOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L446C13-L448C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L446C13-L448C10" }, { "DocsId": "M:System.Configuration.ConfigurationElement.ListErrors(System.Collections.IList)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L496C55-L504C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L496C55-L504C10" }, { "DocsId": "M:System.Configuration.ConfigurationElement.InitializeDefault", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L506C63-L506C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L506C63-L506C64" }, { "DocsId": "M:System.Configuration.ConfigurationElement.Reset(System.Configuration.ConfigurationElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L606C13-L670C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L606C13-L670C10" }, { "DocsId": "M:System.Configuration.ConfigurationElement.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L674C13-L696C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L674C13-L696C10" }, { "DocsId": "M:System.Configuration.ConfigurationElement.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L700C13-L706C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L700C13-L706C30" }, { "DocsId": "M:System.Configuration.ConfigurationElement.SetPropertyValue(System.Configuration.ConfigurationProperty,System.Object,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L829C13-L846C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L829C13-L846C10" }, { "DocsId": "M:System.Configuration.ConfigurationElement.Unmerge(System.Configuration.ConfigurationElement,System.Configuration.ConfigurationElement,System.Configuration.ConfigurationSaveMode)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L878C13-L1007C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L878C13-L1007C10" }, { "DocsId": "M:System.Configuration.ConfigurationElement.SerializeToXmlElement(System.Xml.XmlWriter,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L1011C13-L1035C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L1011C13-L1035C32" }, { "DocsId": "M:System.Configuration.ConfigurationElement.SerializeElement(System.Xml.XmlWriter,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L1040C13-L1177C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L1040C13-L1177C32" }, { "DocsId": "M:System.Configuration.ConfigurationElement.DeserializeElement(System.Xml.XmlReader,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L1385C13-L1706C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L1385C13-L1706C10" }, { "DocsId": "M:System.Configuration.ConfigurationElement.OnRequiredPropertyNotFound(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L1833C13-L1835C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L1833C13-L1835C43" }, { "DocsId": "M:System.Configuration.ConfigurationElement.PostDeserialize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L1841C9-L1841C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L1841C9-L1841C10" }, { "DocsId": "M:System.Configuration.ConfigurationElement.PreSerialize(System.Xml.XmlWriter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L1846C9-L1846C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L1846C9-L1846C10" }, { "DocsId": "M:System.Configuration.ConfigurationElement.OnDeserializeUnrecognizedAttribute(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L1850C13-L1850C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L1850C13-L1850C26" }, { "DocsId": "M:System.Configuration.ConfigurationElement.OnDeserializeUnrecognizedElement(System.String,System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L1855C13-L1855C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L1855C13-L1855C26" }, { "DocsId": "M:System.Configuration.ConfigurationElement.GetTransformedTypeString(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L1860C13-L1863C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L1860C13-L1863C66" }, { "DocsId": "M:System.Configuration.ConfigurationElement.GetTransformedAssemblyString(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L1868C13-L1871C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L1868C13-L1871C74" }, { "DocsId": "P:System.Configuration.ConfigurationElement.LockAttributes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L89C62-L89C175" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L89C62-L89C175" }, { "DocsId": "P:System.Configuration.ConfigurationElement.LockAllAttributesExcept", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L91C71-L91C212" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L91C71-L91C212" }, { "DocsId": "P:System.Configuration.ConfigurationElement.LockElements", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L93C60-L93C169" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L93C60-L93C169" }, { "DocsId": "P:System.Configuration.ConfigurationElement.LockAllElementsExcept", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L95C69-L95C216" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L95C69-L95C216" }, { "DocsId": "P:System.Configuration.ConfigurationElement.LockItem", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L99C19-L99C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L99C19-L99C82" }, { "DocsId": "P:System.Configuration.ConfigurationElement.Item(System.Configuration.ConfigurationProperty)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L118C17-L160C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L118C17-L160C26" }, { "DocsId": "P:System.Configuration.ConfigurationElement.Item(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L172C17-L178C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L172C17-L178C35" }, { "DocsId": "P:System.Configuration.ConfigurationElement.Properties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L193C17-L196C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L193C17-L196C31" }, { "DocsId": "P:System.Configuration.ConfigurationElement.ElementInformation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L202C57-L202C108" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L202C57-L202C108" }, { "DocsId": "P:System.Configuration.ConfigurationElement.EvaluationContext", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L208C17-L219C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L208C17-L219C37" }, { "DocsId": "P:System.Configuration.ConfigurationElement.ElementProperty", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L223C84-L223C100" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L223C84-L223C100" }, { "DocsId": "P:System.Configuration.ConfigurationElement.HasContext", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L225C38-L225C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L225C38-L225C59" }, { "DocsId": "P:System.Configuration.ConfigurationElement.CurrentConfiguration", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L227C54-L227C89" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs#L227C54-L227C89" } ], "DocsId": "T:System.Configuration.ConfigurationElement", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElement.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ConfigurationElementCollection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L17C9-L30C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L17C9-L30C55" }, { "DocsId": "M:System.Configuration.ConfigurationElementCollection.#ctor(System.Collections.IComparer)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L17C9-L40C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L17C9-L40C10" }, { "DocsId": "M:System.Configuration.ConfigurationElementCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L130C37-L132C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L130C37-L132C10" }, { "DocsId": "M:System.Configuration.ConfigurationElementCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L136C13-L136C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L136C13-L136C40" }, { "DocsId": "M:System.Configuration.ConfigurationElementCollection.IsModified", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L149C13-L162C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L149C13-L162C10" }, { "DocsId": "M:System.Configuration.ConfigurationElementCollection.ResetModified", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L166C13-L176C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L166C13-L176C10" }, { "DocsId": "M:System.Configuration.ConfigurationElementCollection.IsReadOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L180C13-L180C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L180C13-L180C30" }, { "DocsId": "M:System.Configuration.ConfigurationElementCollection.SetReadOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L185C13-L193C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L185C13-L193C10" }, { "DocsId": "M:System.Configuration.ConfigurationElementCollection.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L211C13-L235C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L211C13-L235C10" }, { "DocsId": "M:System.Configuration.ConfigurationElementCollection.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L239C13-L245C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L239C13-L245C30" }, { "DocsId": "M:System.Configuration.ConfigurationElementCollection.Unmerge(System.Configuration.ConfigurationElement,System.Configuration.ConfigurationElement,System.Configuration.ConfigurationSaveMode)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L253C13-L454C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L253C13-L454C10" }, { "DocsId": "M:System.Configuration.ConfigurationElementCollection.Reset(System.Configuration.ConfigurationElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L458C13-L485C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L458C13-L485C10" }, { "DocsId": "M:System.Configuration.ConfigurationElementCollection.CopyTo(System.Configuration.ConfigurationElement[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L489C13-L490C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L489C13-L490C10" }, { "DocsId": "M:System.Configuration.ConfigurationElementCollection.BaseAdd(System.Configuration.ConfigurationElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L494C13-L495C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L494C13-L495C10" }, { "DocsId": "M:System.Configuration.ConfigurationElementCollection.BaseAdd(System.Configuration.ConfigurationElement,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L499C13-L500C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L499C13-L500C10" }, { "DocsId": "M:System.Configuration.ConfigurationElementCollection.BaseIndexOf(System.Configuration.ConfigurationElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L587C13-L596C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L587C13-L596C10" }, { "DocsId": "M:System.Configuration.ConfigurationElementCollection.BaseAdd(System.Int32,System.Configuration.ConfigurationElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L677C13-L678C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L677C13-L678C10" }, { "DocsId": "M:System.Configuration.ConfigurationElementCollection.BaseRemove(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L727C13-L728C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L727C13-L728C10" }, { "DocsId": "M:System.Configuration.ConfigurationElementCollection.BaseGet(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L835C37-L839C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L835C37-L839C10" }, { "DocsId": "M:System.Configuration.ConfigurationElementCollection.BaseIsRemoved(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L843C37-L847C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L843C37-L847C10" }, { "DocsId": "M:System.Configuration.ConfigurationElementCollection.BaseGet(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L851C13-L869C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L851C13-L869C90" }, { "DocsId": "M:System.Configuration.ConfigurationElementCollection.BaseGetAllKeys", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L874C13-L882C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L874C13-L882C25" }, { "DocsId": "M:System.Configuration.ConfigurationElementCollection.BaseGetKey(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L887C13-L905C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L887C13-L905C39" }, { "DocsId": "M:System.Configuration.ConfigurationElementCollection.BaseClear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L910C13-L959C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L910C13-L959C10" }, { "DocsId": "M:System.Configuration.ConfigurationElementCollection.BaseRemoveAt(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L963C13-L1028C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L963C13-L1028C10" }, { "DocsId": "M:System.Configuration.ConfigurationElementCollection.SerializeElement(System.Xml.XmlWriter,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L1032C13-L1091C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L1032C13-L1091C32" }, { "DocsId": "M:System.Configuration.ConfigurationElementCollection.OnDeserializeUnrecognizedElement(System.String,System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L1096C13-L1162C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L1096C13-L1162C25" }, { "DocsId": "M:System.Configuration.ConfigurationElementCollection.CreateNewElement(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L1183C13-L1183C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L1183C13-L1183C39" }, { "DocsId": "M:System.Configuration.ConfigurationElementCollection.CreateNewElement", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs" }, { "DocsId": "M:System.Configuration.ConfigurationElementCollection.GetElementKey(System.Configuration.ConfigurationElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs" }, { "DocsId": "M:System.Configuration.ConfigurationElementCollection.IsElementRemovable(System.Configuration.ConfigurationElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L1199C13-L1199C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L1199C13-L1199C25" }, { "DocsId": "M:System.Configuration.ConfigurationElementCollection.IsElementName(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L1210C13-L1210C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L1210C13-L1210C26" }, { "DocsId": "P:System.Configuration.ConfigurationElementCollection.AddElementName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L46C19-L46C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L46C19-L46C38" }, { "DocsId": "P:System.Configuration.ConfigurationElementCollection.RemoveElementName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L57C19-L57C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L57C19-L57C41" }, { "DocsId": "P:System.Configuration.ConfigurationElementCollection.ClearElementName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L68C19-L68C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L68C19-L68C40" }, { "DocsId": "P:System.Configuration.ConfigurationElementCollection.EmitClear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L79C19-L79C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L79C19-L79C40" }, { "DocsId": "P:System.Configuration.ConfigurationElementCollection.ElementName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L93C49-L93C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L93C49-L93C51" }, { "DocsId": "P:System.Configuration.ConfigurationElementCollection.ThrowOnDuplicate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L116C16-L117C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L116C16-L117C94" }, { "DocsId": "P:System.Configuration.ConfigurationElementCollection.CollectionType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L120C16-L120C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L120C16-L120C68" }, { "DocsId": "P:System.Configuration.ConfigurationElementCollection.Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L122C29-L122C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L122C29-L122C60" }, { "DocsId": "P:System.Configuration.ConfigurationElementCollection.IsSynchronized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L124C39-L124C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L124C39-L124C44" }, { "DocsId": "P:System.Configuration.ConfigurationElementCollection.SyncRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L126C35-L126C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs#L126C35-L126C39" } ], "DocsId": "T:System.Configuration.ConfigurationElementCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollection.cs" }, { "Members": [ { "DocsId": "F:System.Configuration.ConfigurationElementCollectionType.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollectionType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollectionType.cs" }, { "DocsId": "F:System.Configuration.ConfigurationElementCollectionType.BasicMap", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollectionType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollectionType.cs" }, { "DocsId": "F:System.Configuration.ConfigurationElementCollectionType.AddRemoveClearMap", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollectionType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollectionType.cs" }, { "DocsId": "F:System.Configuration.ConfigurationElementCollectionType.BasicMapAlternate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollectionType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollectionType.cs" }, { "DocsId": "F:System.Configuration.ConfigurationElementCollectionType.AddRemoveClearMapAlternate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollectionType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollectionType.cs" } ], "DocsId": "T:System.Configuration.ConfigurationElementCollectionType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollectionType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementCollectionType.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ConfigurationElementProperty.#ctor(System.Configuration.ConfigurationValidatorBase)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementProperty.cs#L12C9-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementProperty.cs#L12C9-L20C10" }, { "DocsId": "P:System.Configuration.ConfigurationElementProperty.Validator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementProperty.cs#L22C55-L22C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementProperty.cs#L22C55-L22C59" } ], "DocsId": "T:System.Configuration.ConfigurationElementProperty", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementProperty.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationElementProperty.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ConfigurationErrorsException.#ctor(System.String,System.Exception,System.String,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L36C15-L40C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L36C15-L40C10" }, { "DocsId": "M:System.Configuration.ConfigurationErrorsException.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L43C13-L44C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L43C13-L44C12" }, { "DocsId": "M:System.Configuration.ConfigurationErrorsException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L47C13-L48C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L47C13-L48C12" }, { "DocsId": "M:System.Configuration.ConfigurationErrorsException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L51C13-L52C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L51C13-L52C12" }, { "DocsId": "M:System.Configuration.ConfigurationErrorsException.#ctor(System.String,System.String,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L55C13-L56C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L55C13-L56C12" }, { "DocsId": "M:System.Configuration.ConfigurationErrorsException.#ctor(System.String,System.Xml.XmlNode)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L59C13-L60C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L59C13-L60C12" }, { "DocsId": "M:System.Configuration.ConfigurationErrorsException.#ctor(System.String,System.Exception,System.Xml.XmlNode)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L63C13-L64C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L63C13-L64C12" }, { "DocsId": "M:System.Configuration.ConfigurationErrorsException.#ctor(System.String,System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L67C13-L68C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L67C13-L68C12" }, { "DocsId": "M:System.Configuration.ConfigurationErrorsException.#ctor(System.String,System.Exception,System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L71C13-L72C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L71C13-L72C12" }, { "DocsId": "M:System.Configuration.ConfigurationErrorsException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L109C13-L139C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L109C13-L139C10" }, { "DocsId": "M:System.Configuration.ConfigurationErrorsException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L205C13-L228C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L205C13-L228C10" }, { "DocsId": "M:System.Configuration.ConfigurationErrorsException.GetLineNumber(System.Xml.XmlNode)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L233C13-L233C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L233C13-L233C75" }, { "DocsId": "M:System.Configuration.ConfigurationErrorsException.GetFilename(System.Xml.XmlNode)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L238C13-L238C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L238C13-L238C73" }, { "DocsId": "M:System.Configuration.ConfigurationErrorsException.GetLineNumber(System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L244C13-L244C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L244C13-L244C77" }, { "DocsId": "M:System.Configuration.ConfigurationErrorsException.GetFilename(System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L249C13-L249C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L249C13-L249C75" }, { "DocsId": "P:System.Configuration.ConfigurationErrorsException.Message", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L147C17-L157C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L147C17-L157C35" }, { "DocsId": "P:System.Configuration.ConfigurationErrorsException.Filename", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L161C44-L161C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L161C44-L161C58" }, { "DocsId": "P:System.Configuration.ConfigurationErrorsException.Line", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L163C37-L163C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L163C37-L163C47" }, { "DocsId": "P:System.Configuration.ConfigurationErrorsException.Errors", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L169C17-L175C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs#L169C17-L175C26" } ], "DocsId": "T:System.Configuration.ConfigurationErrorsException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationErrorsException.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ConfigurationException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs#L32C15-L35C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs#L32C15-L35C10" }, { "DocsId": "M:System.Configuration.ConfigurationException.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs#L38C43-L38C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs#L38C43-L38C72" }, { "DocsId": "M:System.Configuration.ConfigurationException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs#L41C57-L41C89" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs#L41C57-L41C89" }, { "DocsId": "M:System.Configuration.ConfigurationException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs#L44C74-L44C107" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs#L44C74-L44C107" }, { "DocsId": "M:System.Configuration.ConfigurationException.#ctor(System.String,System.Xml.XmlNode)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs#L48C15-L49C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs#L48C15-L49C12" }, { "DocsId": "M:System.Configuration.ConfigurationException.#ctor(System.String,System.Exception,System.Xml.XmlNode)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs#L53C15-L54C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs#L53C15-L54C12" }, { "DocsId": "M:System.Configuration.ConfigurationException.#ctor(System.String,System.String,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs#L57C84-L57C123" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs#L57C84-L57C123" }, { "DocsId": "M:System.Configuration.ConfigurationException.#ctor(System.String,System.Exception,System.String,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs#L60C101-L63C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs#L60C101-L63C10" }, { "DocsId": "M:System.Configuration.ConfigurationException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs#L104C13-L107C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs#L104C13-L107C10" }, { "DocsId": "M:System.Configuration.ConfigurationException.GetXmlNodeFilename(System.Xml.XmlNode)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs#L110C66-L110C118" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs#L110C66-L110C118" }, { "DocsId": "M:System.Configuration.ConfigurationException.GetXmlNodeLineNumber(System.Xml.XmlNode)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs#L113C65-L113C108" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs#L113C65-L113C108" }, { "DocsId": "P:System.Configuration.ConfigurationException.Message", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs#L71C17-L81C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs#L71C17-L81C35" }, { "DocsId": "P:System.Configuration.ConfigurationException.BareMessage", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs#L85C46-L85C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs#L85C46-L85C58" }, { "DocsId": "P:System.Configuration.ConfigurationException.Filename", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs#L87C43-L87C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs#L87C43-L87C52" }, { "DocsId": "P:System.Configuration.ConfigurationException.Line", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs#L89C36-L89C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs#L89C36-L89C41" } ], "DocsId": "T:System.Configuration.ConfigurationException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationException.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ConfigurationFileMap.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationFileMap.cs#L20C9-L23C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationFileMap.cs#L20C9-L23C10" }, { "DocsId": "M:System.Configuration.ConfigurationFileMap.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationFileMap.cs#L25C9-L35C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationFileMap.cs#L25C9-L35C10" }, { "DocsId": "M:System.Configuration.ConfigurationFileMap.Clone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationFileMap.cs#L51C13-L51C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationFileMap.cs#L51C13-L51C51" }, { "DocsId": "P:System.Configuration.ConfigurationFileMap.MachineConfigFilename", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationFileMap.cs#L45C19-L45C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationFileMap.cs#L45C19-L45C46" } ], "DocsId": "T:System.Configuration.ConfigurationFileMap", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationFileMap.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationFileMap.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ConfigurationLocation.OpenConfiguration", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLocation.cs#L20C13-L20C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLocation.cs#L20C13-L20C60" }, { "DocsId": "P:System.Configuration.ConfigurationLocation.Path", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLocation.cs#L16C30-L16C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLocation.cs#L16C30-L16C34" } ], "DocsId": "T:System.Configuration.ConfigurationLocation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLocation.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLocation.cs" }, { "Members": [ { "DocsId": "P:System.Configuration.ConfigurationLocationCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLocationCollection.cs#L15C57-L15C96" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLocationCollection.cs#L15C57-L15C96" } ], "DocsId": "T:System.Configuration.ConfigurationLocationCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLocationCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLocationCollection.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ConfigurationLockCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs#L112C13-L113C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs#L112C13-L113C10" }, { "DocsId": "M:System.Configuration.ConfigurationLockCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs#L117C13-L117C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs#L117C13-L117C55" }, { "DocsId": "M:System.Configuration.ConfigurationLockCollection.Add(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs#L127C13-L193C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs#L127C13-L193C10" }, { "DocsId": "M:System.Configuration.ConfigurationLockCollection.Remove(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs#L252C13-L275C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs#L252C13-L275C10" }, { "DocsId": "M:System.Configuration.ConfigurationLockCollection.Clear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs#L302C13-L303C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs#L302C13-L303C10" }, { "DocsId": "M:System.Configuration.ConfigurationLockCollection.Contains(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs#L307C13-L308C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs#L307C13-L308C55" }, { "DocsId": "M:System.Configuration.ConfigurationLockCollection.CopyTo(System.String[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs#L313C13-L314C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs#L313C13-L314C10" }, { "DocsId": "M:System.Configuration.ConfigurationLockCollection.IsReadOnly(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs#L323C13-L326C111" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs#L323C13-L326C111" }, { "DocsId": "M:System.Configuration.ConfigurationLockCollection.SetFromList(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs#L331C13-L338C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs#L331C13-L338C10" }, { "DocsId": "P:System.Configuration.ConfigurationLockCollection.IsModified", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs#L60C34-L60C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs#L60C34-L60C38" }, { "DocsId": "P:System.Configuration.ConfigurationLockCollection.AttributeList", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs#L68C17-L75C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs#L68C17-L75C38" }, { "DocsId": "P:System.Configuration.ConfigurationLockCollection.HasParentElements", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs#L84C17-L100C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs#L84C17-L100C31" }, { "DocsId": "P:System.Configuration.ConfigurationLockCollection.Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs#L104C29-L104C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs#L104C29-L104C54" }, { "DocsId": "P:System.Configuration.ConfigurationLockCollection.IsSynchronized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs#L106C39-L106C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs#L106C39-L106C44" }, { "DocsId": "P:System.Configuration.ConfigurationLockCollection.SyncRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs#L108C35-L108C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs#L108C35-L108C39" } ], "DocsId": "T:System.Configuration.ConfigurationLockCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationLockCollection.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ConfigurationManager.GetSection(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationManager.cs#L150C13-L155C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationManager.cs#L150C13-L155C28" }, { "DocsId": "M:System.Configuration.ConfigurationManager.RefreshSection(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationManager.cs#L162C13-L167C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationManager.cs#L162C13-L167C10" }, { "DocsId": "M:System.Configuration.ConfigurationManager.OpenMachineConfiguration", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationManager.cs#L171C13-L171C92" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationManager.cs#L171C13-L171C92" }, { "DocsId": "M:System.Configuration.ConfigurationManager.OpenMappedMachineConfiguration(System.Configuration.ConfigurationFileMap)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationManager.cs#L176C13-L176C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationManager.cs#L176C13-L176C95" }, { "DocsId": "M:System.Configuration.ConfigurationManager.OpenExeConfiguration(System.Configuration.ConfigurationUserLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationManager.cs#L181C13-L181C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationManager.cs#L181C13-L181C75" }, { "DocsId": "M:System.Configuration.ConfigurationManager.OpenExeConfiguration(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationManager.cs#L186C13-L186C96" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationManager.cs#L186C13-L186C96" }, { "DocsId": "M:System.Configuration.ConfigurationManager.OpenMappedExeConfiguration(System.Configuration.ExeConfigurationFileMap,System.Configuration.ConfigurationUserLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationManager.cs#L192C13-L192C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationManager.cs#L192C13-L192C78" }, { "DocsId": "M:System.Configuration.ConfigurationManager.OpenMappedExeConfiguration(System.Configuration.ExeConfigurationFileMap,System.Configuration.ConfigurationUserLevel,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationManager.cs#L198C13-L198C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationManager.cs#L198C13-L198C87" }, { "DocsId": "P:System.Configuration.ConfigurationManager.AppSettings", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationManager.cs#L37C17-L45C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationManager.cs#L37C17-L45C53" }, { "DocsId": "P:System.Configuration.ConfigurationManager.ConnectionStrings", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationManager.cs#L53C17-L64C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationManager.cs#L53C17-L64C67" } ], "DocsId": "T:System.Configuration.ConfigurationManager", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationManager.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationManager.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ConfigurationProperty.#ctor(System.String,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L20C9-L36C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L20C9-L36C10" }, { "DocsId": "M:System.Configuration.ConfigurationProperty.#ctor(System.String,System.Type,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L39C15-L40C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L39C15-L40C12" }, { "DocsId": "M:System.Configuration.ConfigurationProperty.#ctor(System.String,System.Type,System.Object,System.Configuration.ConfigurationPropertyOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L43C15-L44C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L43C15-L44C12" }, { "DocsId": "M:System.Configuration.ConfigurationProperty.#ctor(System.String,System.Type,System.Object,System.ComponentModel.TypeConverter,System.Configuration.ConfigurationValidatorBase,System.Configuration.ConfigurationPropertyOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L52C15-L53C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L52C15-L53C12" }, { "DocsId": "M:System.Configuration.ConfigurationProperty.#ctor(System.String,System.Type,System.Object,System.ComponentModel.TypeConverter,System.Configuration.ConfigurationValidatorBase,System.Configuration.ConfigurationPropertyOptions,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L55C9-L66C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L55C9-L66C10" }, { "DocsId": "P:System.Configuration.ConfigurationProperty.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L163C30-L163C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L163C30-L163C34" }, { "DocsId": "P:System.Configuration.ConfigurationProperty.Description", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L165C37-L165C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L165C37-L165C41" }, { "DocsId": "P:System.Configuration.ConfigurationProperty.Type", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L182C28-L182C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L182C28-L182C32" }, { "DocsId": "P:System.Configuration.ConfigurationProperty.DefaultValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L184C38-L184C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L184C38-L184C42" }, { "DocsId": "P:System.Configuration.ConfigurationProperty.IsRequired", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L186C35-L186C92" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L186C35-L186C92" }, { "DocsId": "P:System.Configuration.ConfigurationProperty.IsKey", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L188C30-L188C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L188C30-L188C82" }, { "DocsId": "P:System.Configuration.ConfigurationProperty.IsDefaultCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L190C44-L190C110" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L190C44-L190C110" }, { "DocsId": "P:System.Configuration.ConfigurationProperty.IsTypeStringTransformationRequired", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L193C16-L193C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L193C16-L193C97" }, { "DocsId": "P:System.Configuration.ConfigurationProperty.IsAssemblyStringTransformationRequired", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L196C16-L196C101" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L196C16-L196C101" }, { "DocsId": "P:System.Configuration.ConfigurationProperty.IsVersionCheckRequired", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L198C47-L198C116" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L198C47-L198C116" }, { "DocsId": "P:System.Configuration.ConfigurationProperty.Converter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L204C17-L205C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L204C17-L205C35" }, { "DocsId": "P:System.Configuration.ConfigurationProperty.Validator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L209C55-L209C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs#L209C55-L209C59" } ], "DocsId": "T:System.Configuration.ConfigurationProperty", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationProperty.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ConfigurationPropertyAttribute.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyAttribute.cs#L18C52-L14C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyAttribute.cs#L18C52-L14C10" }, { "DocsId": "P:System.Configuration.ConfigurationPropertyAttribute.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyAttribute.cs#L16C30-L16C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyAttribute.cs#L16C30-L16C34" }, { "DocsId": "P:System.Configuration.ConfigurationPropertyAttribute.DefaultValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyAttribute.cs#L18C38-L18C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyAttribute.cs#L18C38-L18C42" }, { "DocsId": "P:System.Configuration.ConfigurationPropertyAttribute.Options", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyAttribute.cs#L20C55-L20C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyAttribute.cs#L20C55-L20C59" }, { "DocsId": "P:System.Configuration.ConfigurationPropertyAttribute.IsDefaultCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyAttribute.cs#L24C19-L24C92" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyAttribute.cs#L24C19-L24C92" }, { "DocsId": "P:System.Configuration.ConfigurationPropertyAttribute.IsRequired", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyAttribute.cs#L35C19-L35C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyAttribute.cs#L35C19-L35C83" }, { "DocsId": "P:System.Configuration.ConfigurationPropertyAttribute.IsKey", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyAttribute.cs#L45C19-L45C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyAttribute.cs#L45C19-L45C78" } ], "DocsId": "T:System.Configuration.ConfigurationPropertyAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ConfigurationPropertyCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyCollection.cs#L36C13-L37C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyCollection.cs#L36C13-L37C10" }, { "DocsId": "M:System.Configuration.ConfigurationPropertyCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyCollection.cs#L41C13-L41C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyCollection.cs#L41C13-L41C43" }, { "DocsId": "M:System.Configuration.ConfigurationPropertyCollection.CopyTo(System.Configuration.ConfigurationProperty[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyCollection.cs#L46C13-L47C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyCollection.cs#L46C13-L47C10" }, { "DocsId": "M:System.Configuration.ConfigurationPropertyCollection.Contains(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyCollection.cs#L51C18-L56C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyCollection.cs#L51C18-L56C26" }, { "DocsId": "M:System.Configuration.ConfigurationPropertyCollection.Add(System.Configuration.ConfigurationProperty)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyCollection.cs#L61C13-L62C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyCollection.cs#L61C13-L62C10" }, { "DocsId": "M:System.Configuration.ConfigurationPropertyCollection.Remove(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyCollection.cs#L66C18-L74C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyCollection.cs#L66C18-L74C26" }, { "DocsId": "M:System.Configuration.ConfigurationPropertyCollection.Clear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyCollection.cs#L79C13-L80C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyCollection.cs#L79C13-L80C10" }, { "DocsId": "M:System.Configuration.ConfigurationPropertyCollection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyCollection.cs#L10C9-L10C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyCollection.cs#L10C9-L10C61" }, { "DocsId": "P:System.Configuration.ConfigurationPropertyCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyCollection.cs#L19C22-L24C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyCollection.cs#L19C22-L24C29" }, { "DocsId": "P:System.Configuration.ConfigurationPropertyCollection.Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyCollection.cs#L28C29-L28C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyCollection.cs#L28C29-L28C41" }, { "DocsId": "P:System.Configuration.ConfigurationPropertyCollection.IsSynchronized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyCollection.cs#L30C39-L30C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyCollection.cs#L30C39-L30C44" }, { "DocsId": "P:System.Configuration.ConfigurationPropertyCollection.SyncRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyCollection.cs#L32C35-L32C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyCollection.cs#L32C35-L32C41" } ], "DocsId": "T:System.Configuration.ConfigurationPropertyCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyCollection.cs" }, { "Members": [ { "DocsId": "F:System.Configuration.ConfigurationPropertyOptions.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyOptions.cs" }, { "DocsId": "F:System.Configuration.ConfigurationPropertyOptions.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyOptions.cs" }, { "DocsId": "F:System.Configuration.ConfigurationPropertyOptions.IsDefaultCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyOptions.cs" }, { "DocsId": "F:System.Configuration.ConfigurationPropertyOptions.IsRequired", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyOptions.cs" }, { "DocsId": "F:System.Configuration.ConfigurationPropertyOptions.IsKey", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyOptions.cs" }, { "DocsId": "F:System.Configuration.ConfigurationPropertyOptions.IsTypeStringTransformationRequired", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyOptions.cs" }, { "DocsId": "F:System.Configuration.ConfigurationPropertyOptions.IsAssemblyStringTransformationRequired", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyOptions.cs" }, { "DocsId": "F:System.Configuration.ConfigurationPropertyOptions.IsVersionCheckRequired", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyOptions.cs" } ], "DocsId": "T:System.Configuration.ConfigurationPropertyOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationPropertyOptions.cs" }, { "Members": [ { "DocsId": "F:System.Configuration.ConfigurationSaveMode.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSaveMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSaveMode.cs" }, { "DocsId": "F:System.Configuration.ConfigurationSaveMode.Modified", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSaveMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSaveMode.cs" }, { "DocsId": "F:System.Configuration.ConfigurationSaveMode.Minimal", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSaveMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSaveMode.cs" }, { "DocsId": "F:System.Configuration.ConfigurationSaveMode.Full", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSaveMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSaveMode.cs" } ], "DocsId": "T:System.Configuration.ConfigurationSaveMode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSaveMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSaveMode.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ConfigurationSection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSection.cs#L13C9-L16C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSection.cs#L13C9-L16C10" }, { "DocsId": "M:System.Configuration.ConfigurationSection.GetRuntimeObject", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSection.cs#L22C13-L22C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSection.cs#L22C13-L22C25" }, { "DocsId": "M:System.Configuration.ConfigurationSection.IsModified", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSection.cs#L27C13-L28C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSection.cs#L27C13-L28C35" }, { "DocsId": "M:System.Configuration.ConfigurationSection.ResetModified", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSection.cs#L33C13-L35C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSection.cs#L33C13-L35C10" }, { "DocsId": "M:System.Configuration.ConfigurationSection.DeserializeSection(System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSection.cs#L39C13-L43C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSection.cs#L39C13-L43C10" }, { "DocsId": "M:System.Configuration.ConfigurationSection.SerializeSection(System.Configuration.ConfigurationElement,System.String,System.Configuration.ConfigurationSaveMode)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSection.cs#L48C13-L77C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSection.cs#L48C13-L77C41" }, { "DocsId": "M:System.Configuration.ConfigurationSection.ShouldSerializePropertyInTargetVersion(System.Configuration.ConfigurationProperty,System.String,System.Runtime.Versioning.FrameworkName,System.Configuration.ConfigurationElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSection.cs#L83C13-L83C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSection.cs#L83C13-L83C25" }, { "DocsId": "M:System.Configuration.ConfigurationSection.ShouldSerializeElementInTargetVersion(System.Configuration.ConfigurationElement,System.String,System.Runtime.Versioning.FrameworkName)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSection.cs#L89C13-L89C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSection.cs#L89C13-L89C25" }, { "DocsId": "M:System.Configuration.ConfigurationSection.ShouldSerializeSectionInTargetVersion(System.Runtime.Versioning.FrameworkName)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSection.cs#L94C13-L94C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSection.cs#L94C13-L94C25" }, { "DocsId": "P:System.Configuration.ConfigurationSection.SectionInformation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSection.cs#L18C56-L18C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSection.cs#L18C56-L18C60" } ], "DocsId": "T:System.Configuration.ConfigurationSection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSection.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ConfigurationSectionCollection.Add(System.String,System.Configuration.ConfigurationSection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionCollection.cs#L50C13-L54C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionCollection.cs#L50C13-L54C10" }, { "DocsId": "M:System.Configuration.ConfigurationSectionCollection.Clear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionCollection.cs#L58C13-L62C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionCollection.cs#L58C13-L62C10" }, { "DocsId": "M:System.Configuration.ConfigurationSectionCollection.CopyTo(System.Configuration.ConfigurationSection[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionCollection.cs#L66C13-L75C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionCollection.cs#L66C13-L75C10" }, { "DocsId": "M:System.Configuration.ConfigurationSectionCollection.Get(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionCollection.cs#L79C13-L79C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionCollection.cs#L79C13-L79C39" }, { "DocsId": "M:System.Configuration.ConfigurationSectionCollection.Get(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionCollection.cs#L84C13-L100C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionCollection.cs#L84C13-L100C78" }, { "DocsId": "M:System.Configuration.ConfigurationSectionCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionCollection.cs" }, { "DocsId": "M:System.Configuration.ConfigurationSectionCollection.GetKey(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionCollection.cs#L113C13-L113C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionCollection.cs#L113C13-L113C38" }, { "DocsId": "M:System.Configuration.ConfigurationSectionCollection.Remove(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionCollection.cs#L125C13-L134C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionCollection.cs#L125C13-L134C10" }, { "DocsId": "M:System.Configuration.ConfigurationSectionCollection.RemoveAt(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionCollection.cs#L138C13-L141C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionCollection.cs#L138C13-L141C10" }, { "DocsId": "P:System.Configuration.ConfigurationSectionCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionCollection.cs#L28C58-L28C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionCollection.cs#L28C58-L28C67" }, { "DocsId": "P:System.Configuration.ConfigurationSectionCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionCollection.cs#L30C56-L30C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionCollection.cs#L30C56-L30C66" } ], "DocsId": "T:System.Configuration.ConfigurationSectionCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionCollection.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ConfigurationSectionGroup.ForceDeclaration", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroup.cs#L145C13-L146C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroup.cs#L145C13-L146C10" }, { "DocsId": "M:System.Configuration.ConfigurationSectionGroup.ForceDeclaration(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroup.cs#L152C13-L163C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroup.cs#L152C13-L163C10" }, { "DocsId": "M:System.Configuration.ConfigurationSectionGroup.ShouldSerializeSectionGroupInTargetVersion(System.Runtime.Versioning.FrameworkName)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroup.cs#L167C13-L167C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroup.cs#L167C13-L167C25" }, { "DocsId": "M:System.Configuration.ConfigurationSectionGroup.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroup.cs#L23C64-L25C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroup.cs#L23C64-L25C64" }, { "DocsId": "P:System.Configuration.ConfigurationSectionGroup.IsDeclared", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroup.cs#L17C34-L17C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroup.cs#L17C34-L17C38" }, { "DocsId": "P:System.Configuration.ConfigurationSectionGroup.IsDeclarationRequired", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroup.cs#L21C45-L21C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroup.cs#L21C45-L21C49" }, { "DocsId": "P:System.Configuration.ConfigurationSectionGroup.SectionGroupName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroup.cs#L23C42-L23C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroup.cs#L23C42-L23C46" }, { "DocsId": "P:System.Configuration.ConfigurationSectionGroup.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroup.cs#L25C30-L25C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroup.cs#L25C30-L25C34" }, { "DocsId": "P:System.Configuration.ConfigurationSectionGroup.Type", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroup.cs#L29C19-L29C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroup.cs#L29C19-L29C36" }, { "DocsId": "P:System.Configuration.ConfigurationSectionGroup.Sections", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroup.cs#L69C17-L75C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroup.cs#L69C17-L75C40" }, { "DocsId": "P:System.Configuration.ConfigurationSectionGroup.SectionGroups", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroup.cs#L83C17-L89C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroup.cs#L83C17-L89C45" } ], "DocsId": "T:System.Configuration.ConfigurationSectionGroup", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroup.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroup.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ConfigurationSectionGroupCollection.Add(System.String,System.Configuration.ConfigurationSectionGroup)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroupCollection.cs#L51C13-L54C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroupCollection.cs#L51C13-L54C10" }, { "DocsId": "M:System.Configuration.ConfigurationSectionGroupCollection.Clear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroupCollection.cs#L58C13-L66C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroupCollection.cs#L58C13-L66C10" }, { "DocsId": "M:System.Configuration.ConfigurationSectionGroupCollection.CopyTo(System.Configuration.ConfigurationSectionGroup[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroupCollection.cs#L70C13-L79C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroupCollection.cs#L70C13-L79C10" }, { "DocsId": "M:System.Configuration.ConfigurationSectionGroupCollection.Get(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroupCollection.cs#L83C13-L83C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroupCollection.cs#L83C13-L83C39" }, { "DocsId": "M:System.Configuration.ConfigurationSectionGroupCollection.Get(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroupCollection.cs#L88C13-L104C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroupCollection.cs#L88C13-L104C61" }, { "DocsId": "M:System.Configuration.ConfigurationSectionGroupCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroupCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroupCollection.cs" }, { "DocsId": "M:System.Configuration.ConfigurationSectionGroupCollection.GetKey(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroupCollection.cs#L115C13-L115C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroupCollection.cs#L115C13-L115C38" }, { "DocsId": "M:System.Configuration.ConfigurationSectionGroupCollection.Remove(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroupCollection.cs#L128C13-L135C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroupCollection.cs#L128C13-L135C10" }, { "DocsId": "M:System.Configuration.ConfigurationSectionGroupCollection.RemoveAt(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroupCollection.cs#L139C13-L142C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroupCollection.cs#L139C13-L142C10" }, { "DocsId": "P:System.Configuration.ConfigurationSectionGroupCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroupCollection.cs#L30C63-L30C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroupCollection.cs#L30C63-L30C72" }, { "DocsId": "P:System.Configuration.ConfigurationSectionGroupCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroupCollection.cs#L33C61-L33C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroupCollection.cs#L33C61-L33C71" } ], "DocsId": "T:System.Configuration.ConfigurationSectionGroupCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroupCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSectionGroupCollection.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ConfigurationSettings.GetConfig(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSettings.cs#L24C13-L24C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSettings.cs#L24C13-L24C65" }, { "DocsId": "P:System.Configuration.ConfigurationSettings.AppSettings", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSettings.cs#L17C17-L17C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSettings.cs#L17C17-L17C57" } ], "DocsId": "T:System.Configuration.ConfigurationSettings", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSettings.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationSettings.cs" }, { "Members": [ { "DocsId": "F:System.Configuration.ConfigurationUserLevel.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationUserLevel.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationUserLevel.cs" }, { "DocsId": "F:System.Configuration.ConfigurationUserLevel.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationUserLevel.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationUserLevel.cs" }, { "DocsId": "F:System.Configuration.ConfigurationUserLevel.PerUserRoaming", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationUserLevel.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationUserLevel.cs" }, { "DocsId": "F:System.Configuration.ConfigurationUserLevel.PerUserRoamingAndLocal", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationUserLevel.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationUserLevel.cs" } ], "DocsId": "T:System.Configuration.ConfigurationUserLevel", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationUserLevel.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationUserLevel.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ConfigurationValidatorAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationValidatorAttribute.cs#L13C9-L13C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationValidatorAttribute.cs#L13C9-L13C56" }, { "DocsId": "M:System.Configuration.ConfigurationValidatorAttribute.#ctor(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationValidatorAttribute.cs#L15C9-L26C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationValidatorAttribute.cs#L15C9-L26C10" }, { "DocsId": "P:System.Configuration.ConfigurationValidatorAttribute.ValidatorInstance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationValidatorAttribute.cs#L29C16-L29C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationValidatorAttribute.cs#L29C16-L29C82" }, { "DocsId": "P:System.Configuration.ConfigurationValidatorAttribute.ValidatorType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationValidatorAttribute.cs#L31C37-L31C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationValidatorAttribute.cs#L31C37-L31C41" } ], "DocsId": "T:System.Configuration.ConfigurationValidatorAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationValidatorAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationValidatorAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ConfigurationValidatorBase.CanValidate(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationValidatorBase.cs#L10C13-L10C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationValidatorBase.cs#L10C13-L10C26" }, { "DocsId": "M:System.Configuration.ConfigurationValidatorBase.Validate(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationValidatorBase.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationValidatorBase.cs" }, { "DocsId": "M:System.Configuration.ConfigurationValidatorBase.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationValidatorBase.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationValidatorBase.cs" } ], "DocsId": "T:System.Configuration.ConfigurationValidatorBase", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationValidatorBase.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigurationValidatorBase.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ConfigXmlDocument.System#Configuration#Internal#IConfigErrorInfo#get_LineNumber", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs#L27C17-L37C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs#L27C17-L37C43" }, { "DocsId": "M:System.Configuration.ConfigXmlDocument.System#Configuration#Internal#IConfigErrorInfo#get_Filename", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs#L50C19-L50C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs#L50C19-L50C36" }, { "DocsId": "M:System.Configuration.ConfigXmlDocument.Load(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs#L55C13-L70C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs#L55C13-L70C10" }, { "DocsId": "M:System.Configuration.ConfigXmlDocument.LoadSingleElement(System.String,System.Xml.XmlTextReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs#L74C13-L91C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs#L74C13-L91C10" }, { "DocsId": "M:System.Configuration.ConfigXmlDocument.CreateAttribute(System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs#L95C13-L95C105" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs#L95C13-L95C105" }, { "DocsId": "M:System.Configuration.ConfigXmlDocument.CreateElement(System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs#L100C13-L100C103" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs#L100C13-L100C103" }, { "DocsId": "M:System.Configuration.ConfigXmlDocument.CreateTextNode(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs#L105C13-L105C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs#L105C13-L105C73" }, { "DocsId": "M:System.Configuration.ConfigXmlDocument.CreateCDataSection(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs#L110C13-L110C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs#L110C13-L110C81" }, { "DocsId": "M:System.Configuration.ConfigXmlDocument.CreateComment(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs#L115C13-L115C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs#L115C13-L115C76" }, { "DocsId": "M:System.Configuration.ConfigXmlDocument.CreateSignificantWhitespace(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs#L120C13-L120C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs#L120C13-L120C90" }, { "DocsId": "M:System.Configuration.ConfigXmlDocument.CreateWhitespace(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs#L125C13-L125C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs#L125C13-L125C79" }, { "DocsId": "M:System.Configuration.ConfigXmlDocument.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs" }, { "DocsId": "P:System.Configuration.ConfigXmlDocument.System#Configuration#Internal#IConfigErrorInfo#LineNumber", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs#L27C17-L37C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs#L27C17-L37C43" }, { "DocsId": "P:System.Configuration.ConfigXmlDocument.LineNumber", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs#L41C39-L41C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs#L41C39-L41C82" }, { "DocsId": "P:System.Configuration.ConfigXmlDocument.Filename", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs#L45C19-L45C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs#L45C19-L45C36" }, { "DocsId": "P:System.Configuration.ConfigXmlDocument.System#Configuration#Internal#IConfigErrorInfo#Filename", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs#L50C19-L50C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs#L50C19-L50C36" } ], "DocsId": "T:System.Configuration.ConfigXmlDocument", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConfigXmlDocument.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ConnectionStringSettings.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettings.cs#L21C9-L21C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettings.cs#L21C9-L21C46" }, { "DocsId": "M:System.Configuration.ConnectionStringSettings.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettings.cs#L24C15-L28C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettings.cs#L24C15-L28C10" }, { "DocsId": "M:System.Configuration.ConnectionStringSettings.#ctor(System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettings.cs#L31C15-L36C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettings.cs#L31C15-L36C10" }, { "DocsId": "M:System.Configuration.ConnectionStringSettings.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettings.cs#L66C13-L66C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettings.cs#L66C13-L66C37" }, { "DocsId": "P:System.Configuration.ConnectionStringSettings.Properties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettings.cs#L40C83-L40C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettings.cs#L40C83-L40C95" }, { "DocsId": "P:System.Configuration.ConnectionStringSettings.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettings.cs#L46C19-L46C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettings.cs#L46C19-L46C51" }, { "DocsId": "P:System.Configuration.ConnectionStringSettings.ConnectionString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettings.cs#L53C19-L53C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettings.cs#L53C19-L53C63" }, { "DocsId": "P:System.Configuration.ConnectionStringSettings.ProviderName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettings.cs#L60C19-L60C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettings.cs#L60C19-L60C59" } ], "DocsId": "T:System.Configuration.ConnectionStringSettings", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettings.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettings.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ConnectionStringSettingsCollection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettingsCollection.cs#L12C15-L13C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettingsCollection.cs#L12C15-L13C12" }, { "DocsId": "M:System.Configuration.ConnectionStringSettingsCollection.IndexOf(System.Configuration.ConnectionStringSettings)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettingsCollection.cs#L31C13-L31C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettingsCollection.cs#L31C13-L31C42" }, { "DocsId": "M:System.Configuration.ConnectionStringSettingsCollection.BaseAdd(System.Int32,System.Configuration.ConfigurationElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettingsCollection.cs#L40C13-L42C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettingsCollection.cs#L40C13-L42C10" }, { "DocsId": "M:System.Configuration.ConnectionStringSettingsCollection.Add(System.Configuration.ConnectionStringSettings)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettingsCollection.cs#L46C13-L47C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettingsCollection.cs#L46C13-L47C10" }, { "DocsId": "M:System.Configuration.ConnectionStringSettingsCollection.Remove(System.Configuration.ConnectionStringSettings)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettingsCollection.cs#L51C13-L52C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettingsCollection.cs#L51C13-L52C10" }, { "DocsId": "M:System.Configuration.ConnectionStringSettingsCollection.RemoveAt(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettingsCollection.cs#L56C13-L57C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettingsCollection.cs#L56C13-L57C10" }, { "DocsId": "M:System.Configuration.ConnectionStringSettingsCollection.Remove(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettingsCollection.cs#L61C13-L62C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettingsCollection.cs#L61C13-L62C10" }, { "DocsId": "M:System.Configuration.ConnectionStringSettingsCollection.CreateNewElement", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettingsCollection.cs#L66C13-L66C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettingsCollection.cs#L66C13-L66C51" }, { "DocsId": "M:System.Configuration.ConnectionStringSettingsCollection.GetElementKey(System.Configuration.ConfigurationElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettingsCollection.cs#L71C13-L71C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettingsCollection.cs#L71C13-L71C60" }, { "DocsId": "M:System.Configuration.ConnectionStringSettingsCollection.Clear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettingsCollection.cs#L76C13-L77C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettingsCollection.cs#L76C13-L77C10" }, { "DocsId": "P:System.Configuration.ConnectionStringSettingsCollection.Properties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettingsCollection.cs#L15C83-L15C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettingsCollection.cs#L15C83-L15C95" }, { "DocsId": "P:System.Configuration.ConnectionStringSettingsCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettingsCollection.cs#L19C19-L19C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettingsCollection.cs#L19C19-L19C67" }, { "DocsId": "P:System.Configuration.ConnectionStringSettingsCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettingsCollection.cs#L27C66-L27C105" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettingsCollection.cs#L27C66-L27C105" } ], "DocsId": "T:System.Configuration.ConnectionStringSettingsCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettingsCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringSettingsCollection.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ConnectionStringsSection.GetRuntimeObject", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringsSection.cs#L22C13-L23C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringsSection.cs#L22C13-L23C25" }, { "DocsId": "M:System.Configuration.ConnectionStringsSection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringsSection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringsSection.cs" }, { "DocsId": "P:System.Configuration.ConnectionStringsSection.Properties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringsSection.cs#L14C83-L14C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringsSection.cs#L14C83-L14C95" }, { "DocsId": "P:System.Configuration.ConnectionStringsSection.ConnectionStrings", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringsSection.cs#L18C16-L18C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringsSection.cs#L18C16-L18C81" } ], "DocsId": "T:System.Configuration.ConnectionStringsSection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringsSection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ConnectionStringsSection.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ContextInformation.GetSection(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ContextInformation.cs#L52C13-L52C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ContextInformation.cs#L52C13-L52C58" }, { "DocsId": "P:System.Configuration.ContextInformation.HostingContext", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ContextInformation.cs#L27C17-L35C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ContextInformation.cs#L27C17-L35C40" }, { "DocsId": "P:System.Configuration.ContextInformation.IsMachineLevel", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ContextInformation.cs#L42C39-L42C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ContextInformation.cs#L42C39-L42C68" } ], "DocsId": "T:System.Configuration.ContextInformation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ContextInformation.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ContextInformation.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.DefaultSection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DefaultSection.cs#L13C9-L18C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DefaultSection.cs#L13C9-L18C10" }, { "DocsId": "M:System.Configuration.DefaultSection.IsModified", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DefaultSection.cs#L35C13-L35C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DefaultSection.cs#L35C13-L35C32" }, { "DocsId": "M:System.Configuration.DefaultSection.ResetModified", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DefaultSection.cs#L40C13-L41C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DefaultSection.cs#L40C13-L41C10" }, { "DocsId": "M:System.Configuration.DefaultSection.Reset(System.Configuration.ConfigurationElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DefaultSection.cs#L45C13-L47C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DefaultSection.cs#L45C13-L47C10" }, { "DocsId": "M:System.Configuration.DefaultSection.DeserializeSection(System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DefaultSection.cs#L51C13-L55C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DefaultSection.cs#L51C13-L55C10" }, { "DocsId": "M:System.Configuration.DefaultSection.SerializeSection(System.Configuration.ConfigurationElement,System.String,System.Configuration.ConfigurationSaveMode)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DefaultSection.cs#L60C13-L60C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DefaultSection.cs#L60C13-L60C28" }, { "DocsId": "P:System.Configuration.DefaultSection.Properties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DefaultSection.cs#L20C83-L20C108" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DefaultSection.cs#L20C83-L20C108" } ], "DocsId": "T:System.Configuration.DefaultSection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DefaultSection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DefaultSection.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.DefaultSettingValueAttribute.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DefaultSettingValueAttribute.cs#L20C9-L23C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DefaultSettingValueAttribute.cs#L20C9-L23C10" }, { "DocsId": "P:System.Configuration.DefaultSettingValueAttribute.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DefaultSettingValueAttribute.cs#L32C17-L32C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DefaultSettingValueAttribute.cs#L32C17-L32C31" } ], "DocsId": "T:System.Configuration.DefaultSettingValueAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DefaultSettingValueAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DefaultSettingValueAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.DefaultValidator.CanValidate(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DefaultValidator.cs#L12C13-L12C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DefaultValidator.cs#L12C13-L12C25" }, { "DocsId": "M:System.Configuration.DefaultValidator.Validate(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DefaultValidator.cs#L18C9-L18C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DefaultValidator.cs#L18C9-L18C10" }, { "DocsId": "M:System.Configuration.DefaultValidator.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DefaultValidator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DefaultValidator.cs" } ], "DocsId": "T:System.Configuration.DefaultValidator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DefaultValidator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/DefaultValidator.cs" }, { "Members": [ { "DocsId": "P:System.Configuration.ElementInformation.Properties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ElementInformation.cs#L20C16-L20C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ElementInformation.cs#L20C16-L20C87" }, { "DocsId": "P:System.Configuration.ElementInformation.IsPresent", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ElementInformation.cs#L22C34-L22C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ElementInformation.cs#L22C34-L22C61" }, { "DocsId": "P:System.Configuration.ElementInformation.IsLocked", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ElementInformation.cs#L24C33-L25C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ElementInformation.cs#L24C33-L25C81" }, { "DocsId": "P:System.Configuration.ElementInformation.IsCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ElementInformation.cs#L31C17-L40C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ElementInformation.cs#L31C17-L40C43" }, { "DocsId": "P:System.Configuration.ElementInformation.Source", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ElementInformation.cs#L44C33-L44C105" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ElementInformation.cs#L44C33-L44C105" }, { "DocsId": "P:System.Configuration.ElementInformation.LineNumber", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ElementInformation.cs#L49C34-L49C113" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ElementInformation.cs#L49C34-L49C113" }, { "DocsId": "P:System.Configuration.ElementInformation.Type", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ElementInformation.cs#L51C29-L51C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ElementInformation.cs#L51C29-L51C51" }, { "DocsId": "P:System.Configuration.ElementInformation.Validator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ElementInformation.cs#L53C56-L53C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ElementInformation.cs#L53C56-L53C94" }, { "DocsId": "P:System.Configuration.ElementInformation.Errors", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ElementInformation.cs#L55C38-L55C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ElementInformation.cs#L55C38-L55C73" } ], "DocsId": "T:System.Configuration.ElementInformation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ElementInformation.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ElementInformation.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ExeConfigurationFileMap.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ExeConfigurationFileMap.cs#L8C9-L13C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ExeConfigurationFileMap.cs#L8C9-L13C10" }, { "DocsId": "M:System.Configuration.ExeConfigurationFileMap.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ExeConfigurationFileMap.cs#L16C15-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ExeConfigurationFileMap.cs#L16C15-L21C10" }, { "DocsId": "M:System.Configuration.ExeConfigurationFileMap.Clone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ExeConfigurationFileMap.cs#L40C13-L41C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ExeConfigurationFileMap.cs#L40C13-L41C42" }, { "DocsId": "P:System.Configuration.ExeConfigurationFileMap.ExeConfigFilename", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ExeConfigurationFileMap.cs#L32C43-L32C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ExeConfigurationFileMap.cs#L32C43-L32C47" }, { "DocsId": "P:System.Configuration.ExeConfigurationFileMap.RoamingUserConfigFilename", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ExeConfigurationFileMap.cs#L34C51-L34C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ExeConfigurationFileMap.cs#L34C51-L34C55" }, { "DocsId": "P:System.Configuration.ExeConfigurationFileMap.LocalUserConfigFilename", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ExeConfigurationFileMap.cs#L36C49-L36C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ExeConfigurationFileMap.cs#L36C49-L36C53" } ], "DocsId": "T:System.Configuration.ExeConfigurationFileMap", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ExeConfigurationFileMap.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ExeConfigurationFileMap.cs" }, { "Members": [ { "DocsId": "P:System.Configuration.ExeContext.UserLevel", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ExeContext.cs#L20C51-L20C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ExeContext.cs#L20C51-L20C55" }, { "DocsId": "P:System.Configuration.ExeContext.ExePath", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ExeContext.cs#L22C33-L22C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ExeContext.cs#L22C33-L22C37" } ], "DocsId": "T:System.Configuration.ExeContext", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ExeContext.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ExeContext.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.GenericEnumConverter.#ctor(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/GenericEnumConverter.cs#L14C9-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/GenericEnumConverter.cs#L14C9-L20C10" }, { "DocsId": "M:System.Configuration.GenericEnumConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/GenericEnumConverter.cs#L24C13-L24C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/GenericEnumConverter.cs#L24C13-L24C37" }, { "DocsId": "M:System.Configuration.GenericEnumConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/GenericEnumConverter.cs#L30C13-L47C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/GenericEnumConverter.cs#L30C13-L47C10" } ], "DocsId": "T:System.Configuration.GenericEnumConverter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/GenericEnumConverter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/GenericEnumConverter.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.IApplicationSettingsProvider.GetPreviousVersion(System.Configuration.SettingsContext,System.Configuration.SettingsProperty)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IApplicationSettingsProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IApplicationSettingsProvider.cs" }, { "DocsId": "M:System.Configuration.IApplicationSettingsProvider.Reset(System.Configuration.SettingsContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IApplicationSettingsProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IApplicationSettingsProvider.cs" }, { "DocsId": "M:System.Configuration.IApplicationSettingsProvider.Upgrade(System.Configuration.SettingsContext,System.Configuration.SettingsPropertyCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IApplicationSettingsProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IApplicationSettingsProvider.cs" } ], "DocsId": "T:System.Configuration.IApplicationSettingsProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IApplicationSettingsProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IApplicationSettingsProvider.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.IConfigurationSectionHandler.Create(System.Object,System.Object,System.Xml.XmlNode)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IConfigurationSectionHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IConfigurationSectionHandler.cs" } ], "DocsId": "T:System.Configuration.IConfigurationSectionHandler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IConfigurationSectionHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IConfigurationSectionHandler.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.IgnoreSection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IgnoreSection.cs#L13C9-L18C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IgnoreSection.cs#L13C9-L18C10" }, { "DocsId": "M:System.Configuration.IgnoreSection.IsModified", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IgnoreSection.cs#L35C13-L35C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IgnoreSection.cs#L35C13-L35C32" }, { "DocsId": "M:System.Configuration.IgnoreSection.ResetModified", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IgnoreSection.cs#L40C13-L41C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IgnoreSection.cs#L40C13-L41C10" }, { "DocsId": "M:System.Configuration.IgnoreSection.Reset(System.Configuration.ConfigurationElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IgnoreSection.cs#L45C13-L47C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IgnoreSection.cs#L45C13-L47C10" }, { "DocsId": "M:System.Configuration.IgnoreSection.DeserializeSection(System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IgnoreSection.cs#L51C13-L55C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IgnoreSection.cs#L51C13-L55C10" }, { "DocsId": "M:System.Configuration.IgnoreSection.SerializeSection(System.Configuration.ConfigurationElement,System.String,System.Configuration.ConfigurationSaveMode)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IgnoreSection.cs#L60C13-L60C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IgnoreSection.cs#L60C13-L60C28" }, { "DocsId": "P:System.Configuration.IgnoreSection.Properties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IgnoreSection.cs#L20C83-L20C108" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IgnoreSection.cs#L20C83-L20C108" } ], "DocsId": "T:System.Configuration.IgnoreSection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IgnoreSection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IgnoreSection.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.IgnoreSectionHandler.Create(System.Object,System.Object,System.Xml.XmlNode)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IgnoreSectionHandler.cs#L16C13-L16C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IgnoreSectionHandler.cs#L16C13-L16C25" }, { "DocsId": "M:System.Configuration.IgnoreSectionHandler.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IgnoreSectionHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IgnoreSectionHandler.cs" } ], "DocsId": "T:System.Configuration.IgnoreSectionHandler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IgnoreSectionHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IgnoreSectionHandler.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.InfiniteIntConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/InfiniteIntConverter.cs#L14C13-L16C114" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/InfiniteIntConverter.cs#L14C13-L16C114" }, { "DocsId": "M:System.Configuration.InfiniteIntConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/InfiniteIntConverter.cs#L23C13-L23C98" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/InfiniteIntConverter.cs#L23C13-L23C98" }, { "DocsId": "M:System.Configuration.InfiniteIntConverter.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/InfiniteIntConverter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/InfiniteIntConverter.cs" } ], "DocsId": "T:System.Configuration.InfiniteIntConverter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/InfiniteIntConverter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/InfiniteIntConverter.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.InfiniteTimeSpanConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/InfiniteTimeSpanConverter.cs#L15C13-L19C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/InfiniteTimeSpanConverter.cs#L15C13-L19C71" }, { "DocsId": "M:System.Configuration.InfiniteTimeSpanConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/InfiniteTimeSpanConverter.cs#L24C13-L26C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/InfiniteTimeSpanConverter.cs#L24C13-L26C80" }, { "DocsId": "M:System.Configuration.InfiniteTimeSpanConverter.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/InfiniteTimeSpanConverter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/InfiniteTimeSpanConverter.cs" } ], "DocsId": "T:System.Configuration.InfiniteTimeSpanConverter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/InfiniteTimeSpanConverter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/InfiniteTimeSpanConverter.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.IntegerValidator.#ctor(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IntegerValidator.cs#L14C13-L15C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IntegerValidator.cs#L14C13-L15C12" }, { "DocsId": "M:System.Configuration.IntegerValidator.#ctor(System.Int32,System.Int32,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IntegerValidator.cs#L18C13-L19C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IntegerValidator.cs#L18C13-L19C12" }, { "DocsId": "M:System.Configuration.IntegerValidator.#ctor(System.Int32,System.Int32,System.Boolean,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IntegerValidator.cs#L21C9-L33C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IntegerValidator.cs#L21C9-L33C10" }, { "DocsId": "M:System.Configuration.IntegerValidator.CanValidate(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IntegerValidator.cs#L37C13-L37C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IntegerValidator.cs#L37C13-L37C40" }, { "DocsId": "M:System.Configuration.IntegerValidator.Validate(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IntegerValidator.cs#L42C13-L49C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IntegerValidator.cs#L42C13-L49C10" } ], "DocsId": "T:System.Configuration.IntegerValidator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IntegerValidator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IntegerValidator.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.IntegerValidatorAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IntegerValidatorAttribute.cs#L9C9-L10C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IntegerValidatorAttribute.cs#L9C9-L10C41" }, { "DocsId": "P:System.Configuration.IntegerValidatorAttribute.ValidatorInstance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IntegerValidatorAttribute.cs#L12C73-L12C119" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IntegerValidatorAttribute.cs#L12C73-L12C119" }, { "DocsId": "P:System.Configuration.IntegerValidatorAttribute.MinValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IntegerValidatorAttribute.cs#L16C19-L16C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IntegerValidatorAttribute.cs#L16C19-L16C31" }, { "DocsId": "P:System.Configuration.IntegerValidatorAttribute.MaxValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IntegerValidatorAttribute.cs#L28C19-L28C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IntegerValidatorAttribute.cs#L28C19-L28C31" }, { "DocsId": "P:System.Configuration.IntegerValidatorAttribute.ExcludeRange", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IntegerValidatorAttribute.cs#L38C36-L38C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IntegerValidatorAttribute.cs#L38C36-L38C40" } ], "DocsId": "T:System.Configuration.IntegerValidatorAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IntegerValidatorAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IntegerValidatorAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.IriParsingElement.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IriParsingElement.cs#L10C9-L19C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IriParsingElement.cs#L10C9-L19C10" }, { "DocsId": "P:System.Configuration.IriParsingElement.Properties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IriParsingElement.cs#L25C17-L25C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IriParsingElement.cs#L25C17-L25C36" }, { "DocsId": "P:System.Configuration.IriParsingElement.Enabled", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IriParsingElement.cs#L32C19-L32C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IriParsingElement.cs#L32C19-L32C47" } ], "DocsId": "T:System.Configuration.IriParsingElement", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IriParsingElement.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/IriParsingElement.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ISettingsProviderService.GetSettingsProvider(System.Configuration.SettingsProperty)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ISettingsProviderService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ISettingsProviderService.cs" } ], "DocsId": "T:System.Configuration.ISettingsProviderService", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ISettingsProviderService.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ISettingsProviderService.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.KeyValueConfigurationCollection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationCollection.cs#L12C13-L15C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationCollection.cs#L12C13-L15C10" }, { "DocsId": "M:System.Configuration.KeyValueConfigurationCollection.Add(System.Configuration.KeyValueConfigurationElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationCollection.cs#L28C13-L44C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationCollection.cs#L28C13-L44C10" }, { "DocsId": "M:System.Configuration.KeyValueConfigurationCollection.Add(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationCollection.cs#L48C13-L50C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationCollection.cs#L48C13-L50C10" }, { "DocsId": "M:System.Configuration.KeyValueConfigurationCollection.Remove(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationCollection.cs#L54C13-L55C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationCollection.cs#L54C13-L55C10" }, { "DocsId": "M:System.Configuration.KeyValueConfigurationCollection.Clear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationCollection.cs#L59C13-L60C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationCollection.cs#L59C13-L60C10" }, { "DocsId": "M:System.Configuration.KeyValueConfigurationCollection.CreateNewElement", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationCollection.cs#L64C13-L64C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationCollection.cs#L64C13-L64C55" }, { "DocsId": "M:System.Configuration.KeyValueConfigurationCollection.GetElementKey(System.Configuration.ConfigurationElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationCollection.cs#L69C13-L69C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationCollection.cs#L69C13-L69C64" }, { "DocsId": "P:System.Configuration.KeyValueConfigurationCollection.Properties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationCollection.cs#L17C83-L17C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationCollection.cs#L17C83-L17C95" }, { "DocsId": "P:System.Configuration.KeyValueConfigurationCollection.ThrowOnDuplicate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationCollection.cs#L19C53-L19C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationCollection.cs#L19C53-L19C58" }, { "DocsId": "P:System.Configuration.KeyValueConfigurationCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationCollection.cs#L21C69-L21C111" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationCollection.cs#L21C69-L21C111" }, { "DocsId": "P:System.Configuration.KeyValueConfigurationCollection.AllKeys", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationCollection.cs#L23C36-L23C89" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationCollection.cs#L23C36-L23C89" } ], "DocsId": "T:System.Configuration.KeyValueConfigurationCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationCollection.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.KeyValueConfigurationElement.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationElement.cs#L24C9-L29C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationElement.cs#L24C9-L29C10" }, { "DocsId": "M:System.Configuration.KeyValueConfigurationElement.Init", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationElement.cs#L45C13-L56C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationElement.cs#L45C13-L56C10" }, { "DocsId": "P:System.Configuration.KeyValueConfigurationElement.Properties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationElement.cs#L31C83-L31C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationElement.cs#L31C83-L31C95" }, { "DocsId": "P:System.Configuration.KeyValueConfigurationElement.Key", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationElement.cs#L34C30-L34C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationElement.cs#L34C30-L34C53" }, { "DocsId": "P:System.Configuration.KeyValueConfigurationElement.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationElement.cs#L39C19-L39C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationElement.cs#L39C19-L39C52" } ], "DocsId": "T:System.Configuration.KeyValueConfigurationElement", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationElement.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/KeyValueConfigurationElement.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.LocalFileSettingsProvider.Initialize(System.String,System.Collections.Specialized.NameValueCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LocalFileSettingsProvider.cs#L51C13-L57C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LocalFileSettingsProvider.cs#L51C13-L57C10" }, { "DocsId": "M:System.Configuration.LocalFileSettingsProvider.GetPropertyValues(System.Configuration.SettingsContext,System.Configuration.SettingsPropertyCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LocalFileSettingsProvider.cs#L64C13-L143C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LocalFileSettingsProvider.cs#L64C13-L143C27" }, { "DocsId": "M:System.Configuration.LocalFileSettingsProvider.SetPropertyValues(System.Configuration.SettingsContext,System.Configuration.SettingsPropertyValueCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LocalFileSettingsProvider.cs#L151C13-L197C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LocalFileSettingsProvider.cs#L151C13-L197C10" }, { "DocsId": "M:System.Configuration.LocalFileSettingsProvider.Reset(System.Configuration.SettingsContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LocalFileSettingsProvider.cs#L205C13-L210C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LocalFileSettingsProvider.cs#L205C13-L210C10" }, { "DocsId": "M:System.Configuration.LocalFileSettingsProvider.Upgrade(System.Configuration.SettingsContext,System.Configuration.SettingsPropertyCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LocalFileSettingsProvider.cs#L221C13-L247C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LocalFileSettingsProvider.cs#L221C13-L247C10" }, { "DocsId": "M:System.Configuration.LocalFileSettingsProvider.GetPreviousVersion(System.Configuration.SettingsContext,System.Configuration.SettingsProperty)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LocalFileSettingsProvider.cs#L254C13-L268C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LocalFileSettingsProvider.cs#L254C13-L268C30" }, { "DocsId": "M:System.Configuration.LocalFileSettingsProvider.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LocalFileSettingsProvider.cs#L18C9-L18C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LocalFileSettingsProvider.cs#L18C9-L18C48" }, { "DocsId": "P:System.Configuration.LocalFileSettingsProvider.ApplicationName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LocalFileSettingsProvider.cs#L31C17-L31C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LocalFileSettingsProvider.cs#L31C17-L31C33" } ], "DocsId": "T:System.Configuration.LocalFileSettingsProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LocalFileSettingsProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LocalFileSettingsProvider.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.LongValidator.#ctor(System.Int64,System.Int64)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LongValidator.cs#L14C15-L15C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LongValidator.cs#L14C15-L15C12" }, { "DocsId": "M:System.Configuration.LongValidator.#ctor(System.Int64,System.Int64,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LongValidator.cs#L18C15-L19C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LongValidator.cs#L18C15-L19C12" }, { "DocsId": "M:System.Configuration.LongValidator.#ctor(System.Int64,System.Int64,System.Boolean,System.Int64)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LongValidator.cs#L21C9-L33C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LongValidator.cs#L21C9-L33C10" }, { "DocsId": "M:System.Configuration.LongValidator.CanValidate(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LongValidator.cs#L37C13-L37C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LongValidator.cs#L37C13-L37C41" }, { "DocsId": "M:System.Configuration.LongValidator.Validate(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LongValidator.cs#L42C13-L49C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LongValidator.cs#L42C13-L49C10" } ], "DocsId": "T:System.Configuration.LongValidator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LongValidator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LongValidator.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.LongValidatorAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LongValidatorAttribute.cs#L9C9-L10C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LongValidatorAttribute.cs#L9C9-L10C43" }, { "DocsId": "P:System.Configuration.LongValidatorAttribute.ValidatorInstance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LongValidatorAttribute.cs#L12C73-L12C116" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LongValidatorAttribute.cs#L12C73-L12C116" }, { "DocsId": "P:System.Configuration.LongValidatorAttribute.MinValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LongValidatorAttribute.cs#L16C19-L16C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LongValidatorAttribute.cs#L16C19-L16C31" }, { "DocsId": "P:System.Configuration.LongValidatorAttribute.MaxValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LongValidatorAttribute.cs#L27C19-L27C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LongValidatorAttribute.cs#L27C19-L27C31" }, { "DocsId": "P:System.Configuration.LongValidatorAttribute.ExcludeRange", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LongValidatorAttribute.cs#L36C36-L36C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LongValidatorAttribute.cs#L36C36-L36C40" } ], "DocsId": "T:System.Configuration.LongValidatorAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LongValidatorAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/LongValidatorAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.NameValueConfigurationCollection.Add(System.Configuration.NameValueConfigurationElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationCollection.cs#L33C13-L34C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationCollection.cs#L33C13-L34C10" }, { "DocsId": "M:System.Configuration.NameValueConfigurationCollection.Remove(System.Configuration.NameValueConfigurationElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationCollection.cs#L38C13-L40C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationCollection.cs#L38C13-L40C10" }, { "DocsId": "M:System.Configuration.NameValueConfigurationCollection.Remove(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationCollection.cs#L44C13-L45C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationCollection.cs#L44C13-L45C10" }, { "DocsId": "M:System.Configuration.NameValueConfigurationCollection.Clear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationCollection.cs#L49C13-L50C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationCollection.cs#L49C13-L50C10" }, { "DocsId": "M:System.Configuration.NameValueConfigurationCollection.CreateNewElement", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationCollection.cs#L54C13-L54C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationCollection.cs#L54C13-L54C56" }, { "DocsId": "M:System.Configuration.NameValueConfigurationCollection.GetElementKey(System.Configuration.ConfigurationElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationCollection.cs#L59C13-L59C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationCollection.cs#L59C13-L59C66" }, { "DocsId": "M:System.Configuration.NameValueConfigurationCollection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationCollection.cs" }, { "DocsId": "P:System.Configuration.NameValueConfigurationCollection.Properties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationCollection.cs#L11C83-L11C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationCollection.cs#L11C83-L11C95" }, { "DocsId": "P:System.Configuration.NameValueConfigurationCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationCollection.cs#L15C19-L15C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationCollection.cs#L15C19-L15C71" }, { "DocsId": "P:System.Configuration.NameValueConfigurationCollection.AllKeys", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationCollection.cs#L29C36-L29C89" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationCollection.cs#L29C36-L29C89" } ], "DocsId": "T:System.Configuration.NameValueConfigurationCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationCollection.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.NameValueConfigurationElement.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationElement.cs#L18C9-L22C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationElement.cs#L18C9-L22C10" }, { "DocsId": "P:System.Configuration.NameValueConfigurationElement.Properties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationElement.cs#L24C83-L24C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationElement.cs#L24C83-L24C95" }, { "DocsId": "P:System.Configuration.NameValueConfigurationElement.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationElement.cs#L27C31-L27C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationElement.cs#L27C31-L27C55" }, { "DocsId": "P:System.Configuration.NameValueConfigurationElement.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationElement.cs#L32C19-L32C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationElement.cs#L32C19-L32C52" } ], "DocsId": "T:System.Configuration.NameValueConfigurationElement", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationElement.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueConfigurationElement.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.NameValueFileSectionHandler.Create(System.Object,System.Object,System.Xml.XmlNode)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueFileSectionHandler.cs#L22C13-L67C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueFileSectionHandler.cs#L22C13-L67C27" }, { "DocsId": "M:System.Configuration.NameValueFileSectionHandler.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueFileSectionHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueFileSectionHandler.cs" } ], "DocsId": "T:System.Configuration.NameValueFileSectionHandler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueFileSectionHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueFileSectionHandler.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.NameValueSectionHandler.Create(System.Object,System.Object,System.Xml.XmlNode)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueSectionHandler.cs#L18C13-L18C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueSectionHandler.cs#L18C13-L18C88" }, { "DocsId": "M:System.Configuration.NameValueSectionHandler.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueSectionHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueSectionHandler.cs" }, { "DocsId": "P:System.Configuration.NameValueSectionHandler.KeyAttributeName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueSectionHandler.cs#L88C19-L88C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueSectionHandler.cs#L88C19-L88C46" }, { "DocsId": "P:System.Configuration.NameValueSectionHandler.ValueAttributeName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueSectionHandler.cs#L96C19-L96C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueSectionHandler.cs#L96C19-L96C48" } ], "DocsId": "T:System.Configuration.NameValueSectionHandler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueSectionHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NameValueSectionHandler.cs" }, { "Members": [ { "DocsId": "F:System.Configuration.OverrideMode.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/OverrideMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/OverrideMode.cs" }, { "DocsId": "F:System.Configuration.OverrideMode.Inherit", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/OverrideMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/OverrideMode.cs" }, { "DocsId": "F:System.Configuration.OverrideMode.Allow", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/OverrideMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/OverrideMode.cs" }, { "DocsId": "F:System.Configuration.OverrideMode.Deny", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/OverrideMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/OverrideMode.cs" } ], "DocsId": "T:System.Configuration.OverrideMode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/OverrideMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/OverrideMode.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.PositiveTimeSpanValidator.CanValidate(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PositiveTimeSpanValidator.cs#L10C13-L10C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PositiveTimeSpanValidator.cs#L10C13-L10C45" }, { "DocsId": "M:System.Configuration.PositiveTimeSpanValidator.Validate(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PositiveTimeSpanValidator.cs#L15C13-L22C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PositiveTimeSpanValidator.cs#L15C13-L22C10" }, { "DocsId": "M:System.Configuration.PositiveTimeSpanValidator.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PositiveTimeSpanValidator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PositiveTimeSpanValidator.cs" } ], "DocsId": "T:System.Configuration.PositiveTimeSpanValidator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PositiveTimeSpanValidator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PositiveTimeSpanValidator.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.PositiveTimeSpanValidatorAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PositiveTimeSpanValidatorAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PositiveTimeSpanValidatorAttribute.cs" }, { "DocsId": "P:System.Configuration.PositiveTimeSpanValidatorAttribute.ValidatorInstance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PositiveTimeSpanValidatorAttribute.cs#L9C73-L9C104" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PositiveTimeSpanValidatorAttribute.cs#L9C73-L9C104" } ], "DocsId": "T:System.Configuration.PositiveTimeSpanValidatorAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PositiveTimeSpanValidatorAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PositiveTimeSpanValidatorAttribute.cs" }, { "Members": [ { "DocsId": "P:System.Configuration.PropertyInformation.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformation.cs#L24C30-L24C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformation.cs#L24C30-L24C34" }, { "DocsId": "P:System.Configuration.PropertyInformation.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformation.cs#L32C19-L32C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformation.cs#L32C19-L32C45" }, { "DocsId": "P:System.Configuration.PropertyInformation.DefaultValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformation.cs#L36C39-L36C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformation.cs#L36C39-L36C56" }, { "DocsId": "P:System.Configuration.PropertyInformation.ValueOrigin", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformation.cs#L42C17-L43C124" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformation.cs#L42C17-L43C124" }, { "DocsId": "P:System.Configuration.PropertyInformation.IsModified", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformation.cs#L47C35-L47C108" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformation.cs#L47C35-L47C108" }, { "DocsId": "P:System.Configuration.PropertyInformation.IsKey", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformation.cs#L49C30-L49C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformation.cs#L49C30-L49C40" }, { "DocsId": "P:System.Configuration.PropertyInformation.IsRequired", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformation.cs#L51C35-L51C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformation.cs#L51C35-L51C50" }, { "DocsId": "P:System.Configuration.PropertyInformation.IsLocked", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformation.cs#L54C13-L60C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformation.cs#L54C13-L60C82" }, { "DocsId": "P:System.Configuration.PropertyInformation.Source", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformation.cs#L67C17-L69C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformation.cs#L67C17-L69C66" }, { "DocsId": "P:System.Configuration.PropertyInformation.LineNumber", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformation.cs#L80C17-L82C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformation.cs#L80C17-L82C45" }, { "DocsId": "P:System.Configuration.PropertyInformation.Type", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformation.cs#L86C29-L86C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformation.cs#L86C29-L86C38" }, { "DocsId": "P:System.Configuration.PropertyInformation.Validator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformation.cs#L88C56-L88C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformation.cs#L88C56-L88C70" }, { "DocsId": "P:System.Configuration.PropertyInformation.Converter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformation.cs#L90C43-L90C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformation.cs#L90C43-L90C57" }, { "DocsId": "P:System.Configuration.PropertyInformation.Description", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformation.cs#L92C38-L92C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformation.cs#L92C38-L92C54" } ], "DocsId": "T:System.Configuration.PropertyInformation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformation.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformation.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.PropertyInformationCollection.CopyTo(System.Configuration.PropertyInformation[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformationCollection.cs#L44C13-L52C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformationCollection.cs#L44C13-L52C10" }, { "DocsId": "M:System.Configuration.PropertyInformationCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformationCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformationCollection.cs" }, { "DocsId": "P:System.Configuration.PropertyInformationCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformationCollection.cs#L25C17-L35C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformationCollection.cs#L25C17-L35C31" } ], "DocsId": "T:System.Configuration.PropertyInformationCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformationCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyInformationCollection.cs" }, { "Members": [ { "DocsId": "F:System.Configuration.PropertyValueOrigin.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyValueOrigin.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyValueOrigin.cs" }, { "DocsId": "F:System.Configuration.PropertyValueOrigin.Default", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyValueOrigin.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyValueOrigin.cs" }, { "DocsId": "F:System.Configuration.PropertyValueOrigin.Inherited", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyValueOrigin.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyValueOrigin.cs" }, { "DocsId": "F:System.Configuration.PropertyValueOrigin.SetHere", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyValueOrigin.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyValueOrigin.cs" } ], "DocsId": "T:System.Configuration.PropertyValueOrigin", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyValueOrigin.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/PropertyValueOrigin.cs" }, { "Members": [ { "DocsId": "F:System.Configuration.ProtectedConfiguration.RsaProviderName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfiguration.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfiguration.cs" }, { "DocsId": "F:System.Configuration.ProtectedConfiguration.DataProtectionProviderName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfiguration.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfiguration.cs" }, { "DocsId": "F:System.Configuration.ProtectedConfiguration.ProtectedDataSectionName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfiguration.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfiguration.cs" }, { "DocsId": "P:System.Configuration.ProtectedConfiguration.Providers", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfiguration.cs#L12C17-L16C115" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfiguration.cs#L12C17-L16C115" }, { "DocsId": "P:System.Configuration.ProtectedConfiguration.DefaultProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfiguration.cs#L28C17-L32C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfiguration.cs#L28C17-L32C69" } ], "DocsId": "T:System.Configuration.ProtectedConfiguration", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfiguration.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfiguration.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ProtectedConfigurationProvider.Encrypt(System.Xml.XmlNode)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfigurationProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfigurationProvider.cs" }, { "DocsId": "M:System.Configuration.ProtectedConfigurationProvider.Decrypt(System.Xml.XmlNode)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfigurationProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfigurationProvider.cs" }, { "DocsId": "M:System.Configuration.ProtectedConfigurationProvider.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfigurationProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfigurationProvider.cs" } ], "DocsId": "T:System.Configuration.ProtectedConfigurationProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfigurationProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfigurationProvider.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ProtectedConfigurationProviderCollection.Add(System.Configuration.Provider.ProviderBase)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfigurationProviderCollection.cs#L14C13-L27C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfigurationProviderCollection.cs#L14C13-L27C10" }, { "DocsId": "M:System.Configuration.ProtectedConfigurationProviderCollection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfigurationProviderCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfigurationProviderCollection.cs" }, { "DocsId": "P:System.Configuration.ProtectedConfigurationProviderCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfigurationProviderCollection.cs#L10C72-L10C114" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfigurationProviderCollection.cs#L10C72-L10C114" } ], "DocsId": "T:System.Configuration.ProtectedConfigurationProviderCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfigurationProviderCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfigurationProviderCollection.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ProtectedConfigurationSection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfigurationSection.cs#L30C9-L30C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfigurationSection.cs#L30C9-L30C51" }, { "DocsId": "P:System.Configuration.ProtectedConfigurationSection.Properties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfigurationSection.cs#L32C83-L32C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfigurationSection.cs#L32C83-L32C95" }, { "DocsId": "P:System.Configuration.ProtectedConfigurationSection.Providers", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfigurationSection.cs#L37C56-L37C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfigurationSection.cs#L37C56-L37C84" }, { "DocsId": "P:System.Configuration.ProtectedConfigurationSection.DefaultProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfigurationSection.cs#L42C19-L42C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfigurationSection.cs#L42C19-L42C62" } ], "DocsId": "T:System.Configuration.ProtectedConfigurationSection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfigurationSection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedConfigurationSection.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ProtectedProviderSettings.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedProviderSettings.cs#L8C9-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedProviderSettings.cs#L8C9-L21C10" }, { "DocsId": "P:System.Configuration.ProtectedProviderSettings.Properties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedProviderSettings.cs#L23C83-L23C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedProviderSettings.cs#L23C83-L23C94" }, { "DocsId": "P:System.Configuration.ProtectedProviderSettings.Providers", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedProviderSettings.cs#L26C56-L26C104" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedProviderSettings.cs#L26C56-L26C104" } ], "DocsId": "T:System.Configuration.ProtectedProviderSettings", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedProviderSettings.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProtectedProviderSettings.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ProviderSettings.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettings.cs#L13C9-L30C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettings.cs#L13C9-L30C10" }, { "DocsId": "M:System.Configuration.ProviderSettings.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettings.cs#L32C61-L36C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettings.cs#L32C61-L36C10" }, { "DocsId": "M:System.Configuration.ProviderSettings.Unmerge(System.Configuration.ConfigurationElement,System.Configuration.ConfigurationElement,System.Configuration.ConfigurationSaveMode)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettings.cs#L86C13-L94C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettings.cs#L86C13-L94C10" }, { "DocsId": "M:System.Configuration.ProviderSettings.Reset(System.Configuration.ConfigurationElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettings.cs#L98C13-L102C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettings.cs#L98C13-L102C10" }, { "DocsId": "M:System.Configuration.ProviderSettings.IsModified", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettings.cs#L149C13-L149C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettings.cs#L149C13-L149C68" }, { "DocsId": "M:System.Configuration.ProviderSettings.OnDeserializeUnrecognizedAttribute(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettings.cs#L181C13-L185C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettings.cs#L181C13-L185C25" }, { "DocsId": "P:System.Configuration.ProviderSettings.Properties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettings.cs#L42C17-L43C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettings.cs#L42C17-L43C36" }, { "DocsId": "P:System.Configuration.ProviderSettings.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettings.cs#L50C19-L50C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettings.cs#L50C19-L50C50" }, { "DocsId": "P:System.Configuration.ProviderSettings.Type", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettings.cs#L57C19-L57C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettings.cs#L57C19-L57C50" }, { "DocsId": "P:System.Configuration.ProviderSettings.Parameters", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettings.cs#L65C17-L78C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettings.cs#L65C17-L78C48" } ], "DocsId": "T:System.Configuration.ProviderSettings", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettings.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettings.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ProviderSettingsCollection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettingsCollection.cs#L12C13-L13C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettingsCollection.cs#L12C13-L13C12" }, { "DocsId": "M:System.Configuration.ProviderSettingsCollection.Add(System.Configuration.ProviderSettings)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettingsCollection.cs#L33C13-L38C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettingsCollection.cs#L33C13-L38C10" }, { "DocsId": "M:System.Configuration.ProviderSettingsCollection.Remove(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettingsCollection.cs#L42C13-L43C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettingsCollection.cs#L42C13-L43C10" }, { "DocsId": "M:System.Configuration.ProviderSettingsCollection.Clear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettingsCollection.cs#L47C13-L48C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettingsCollection.cs#L47C13-L48C10" }, { "DocsId": "M:System.Configuration.ProviderSettingsCollection.CreateNewElement", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettingsCollection.cs#L52C13-L52C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettingsCollection.cs#L52C13-L52C43" }, { "DocsId": "M:System.Configuration.ProviderSettingsCollection.GetElementKey(System.Configuration.ConfigurationElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettingsCollection.cs#L57C13-L57C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettingsCollection.cs#L57C13-L57C53" }, { "DocsId": "P:System.Configuration.ProviderSettingsCollection.Properties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettingsCollection.cs#L15C83-L15C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettingsCollection.cs#L15C83-L15C95" }, { "DocsId": "P:System.Configuration.ProviderSettingsCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettingsCollection.cs#L17C57-L17C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettingsCollection.cs#L17C57-L17C87" }, { "DocsId": "P:System.Configuration.ProviderSettingsCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettingsCollection.cs#L21C19-L21C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettingsCollection.cs#L21C19-L21C59" } ], "DocsId": "T:System.Configuration.ProviderSettingsCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettingsCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ProviderSettingsCollection.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.RegexStringValidator.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RegexStringValidator.cs#L13C9-L19C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RegexStringValidator.cs#L13C9-L19C10" }, { "DocsId": "M:System.Configuration.RegexStringValidator.CanValidate(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RegexStringValidator.cs#L23C13-L23C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RegexStringValidator.cs#L23C13-L23C43" }, { "DocsId": "M:System.Configuration.RegexStringValidator.Validate(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RegexStringValidator.cs#L28C13-L34C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RegexStringValidator.cs#L28C13-L34C10" } ], "DocsId": "T:System.Configuration.RegexStringValidator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RegexStringValidator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RegexStringValidator.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.RegexStringValidatorAttribute.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RegexStringValidatorAttribute.cs#L9C9-L12C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RegexStringValidatorAttribute.cs#L9C9-L12C10" }, { "DocsId": "P:System.Configuration.RegexStringValidatorAttribute.ValidatorInstance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RegexStringValidatorAttribute.cs#L14C73-L14C104" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RegexStringValidatorAttribute.cs#L14C73-L14C104" }, { "DocsId": "P:System.Configuration.RegexStringValidatorAttribute.Regex", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RegexStringValidatorAttribute.cs#L16C31-L16C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RegexStringValidatorAttribute.cs#L16C31-L16C35" } ], "DocsId": "T:System.Configuration.RegexStringValidatorAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RegexStringValidatorAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RegexStringValidatorAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.RsaProtectedConfigurationProvider.Decrypt(System.Xml.XmlNode)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RsaProtectedConfigurationProvider.cs#L20C13-L20C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RsaProtectedConfigurationProvider.cs#L20C13-L20C55" }, { "DocsId": "M:System.Configuration.RsaProtectedConfigurationProvider.Encrypt(System.Xml.XmlNode)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RsaProtectedConfigurationProvider.cs#L25C13-L25C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RsaProtectedConfigurationProvider.cs#L25C13-L25C55" }, { "DocsId": "M:System.Configuration.RsaProtectedConfigurationProvider.AddKey(System.Int32,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RsaProtectedConfigurationProvider.cs#L30C13-L30C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RsaProtectedConfigurationProvider.cs#L30C13-L30C55" }, { "DocsId": "M:System.Configuration.RsaProtectedConfigurationProvider.DeleteKey", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RsaProtectedConfigurationProvider.cs#L35C13-L35C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RsaProtectedConfigurationProvider.cs#L35C13-L35C55" }, { "DocsId": "M:System.Configuration.RsaProtectedConfigurationProvider.ImportKey(System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RsaProtectedConfigurationProvider.cs#L40C13-L40C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RsaProtectedConfigurationProvider.cs#L40C13-L40C55" }, { "DocsId": "M:System.Configuration.RsaProtectedConfigurationProvider.ExportKey(System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RsaProtectedConfigurationProvider.cs#L45C13-L45C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RsaProtectedConfigurationProvider.cs#L45C13-L45C55" }, { "DocsId": "M:System.Configuration.RsaProtectedConfigurationProvider.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RsaProtectedConfigurationProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RsaProtectedConfigurationProvider.cs" }, { "DocsId": "P:System.Configuration.RsaProtectedConfigurationProvider.KeyContainerName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RsaProtectedConfigurationProvider.cs#L48C48-L48C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RsaProtectedConfigurationProvider.cs#L48C48-L48C90" }, { "DocsId": "P:System.Configuration.RsaProtectedConfigurationProvider.CspProviderName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RsaProtectedConfigurationProvider.cs#L49C47-L49C89" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RsaProtectedConfigurationProvider.cs#L49C47-L49C89" }, { "DocsId": "P:System.Configuration.RsaProtectedConfigurationProvider.UseMachineContainer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RsaProtectedConfigurationProvider.cs#L50C49-L50C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RsaProtectedConfigurationProvider.cs#L50C49-L50C91" }, { "DocsId": "P:System.Configuration.RsaProtectedConfigurationProvider.UseOAEP", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RsaProtectedConfigurationProvider.cs#L51C37-L51C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RsaProtectedConfigurationProvider.cs#L51C37-L51C79" }, { "DocsId": "P:System.Configuration.RsaProtectedConfigurationProvider.UseFIPS", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RsaProtectedConfigurationProvider.cs#L52C37-L52C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RsaProtectedConfigurationProvider.cs#L52C37-L52C79" }, { "DocsId": "P:System.Configuration.RsaProtectedConfigurationProvider.RsaPublicKey", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RsaProtectedConfigurationProvider.cs#L53C51-L53C93" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RsaProtectedConfigurationProvider.cs#L53C51-L53C93" } ], "DocsId": "T:System.Configuration.RsaProtectedConfigurationProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RsaProtectedConfigurationProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/RsaProtectedConfigurationProvider.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SchemeSettingElement.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SchemeSettingElement.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SchemeSettingElement.cs" }, { "DocsId": "P:System.Configuration.SchemeSettingElement.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SchemeSettingElement.cs#L19C19-L19C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SchemeSettingElement.cs#L19C19-L19C47" }, { "DocsId": "P:System.Configuration.SchemeSettingElement.GenericUriParserOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SchemeSettingElement.cs#L26C19-L26C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SchemeSettingElement.cs#L26C19-L26C83" }, { "DocsId": "P:System.Configuration.SchemeSettingElement.Properties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SchemeSettingElement.cs#L31C19-L31C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SchemeSettingElement.cs#L31C19-L31C39" } ], "DocsId": "T:System.Configuration.SchemeSettingElement", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SchemeSettingElement.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SchemeSettingElement.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SchemeSettingElementCollection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SchemeSettingElementCollection.cs#L17C9-L22C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SchemeSettingElementCollection.cs#L17C9-L22C10" }, { "DocsId": "M:System.Configuration.SchemeSettingElementCollection.IndexOf(System.Configuration.SchemeSettingElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SchemeSettingElementCollection.cs#L41C13-L41C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SchemeSettingElementCollection.cs#L41C13-L41C41" }, { "DocsId": "M:System.Configuration.SchemeSettingElementCollection.CreateNewElement", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SchemeSettingElementCollection.cs#L46C13-L46C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SchemeSettingElementCollection.cs#L46C13-L46C47" }, { "DocsId": "M:System.Configuration.SchemeSettingElementCollection.GetElementKey(System.Configuration.ConfigurationElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SchemeSettingElementCollection.cs#L51C13-L51C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SchemeSettingElementCollection.cs#L51C13-L51C57" }, { "DocsId": "P:System.Configuration.SchemeSettingElementCollection.CollectionType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SchemeSettingElementCollection.cs#L26C19-L26C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SchemeSettingElementCollection.cs#L26C19-L26C79" }, { "DocsId": "P:System.Configuration.SchemeSettingElementCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SchemeSettingElementCollection.cs#L31C19-L31C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SchemeSettingElementCollection.cs#L31C19-L31C63" }, { "DocsId": "P:System.Configuration.SchemeSettingElementCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SchemeSettingElementCollection.cs#L36C19-L36C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SchemeSettingElementCollection.cs#L36C19-L36C62" } ], "DocsId": "T:System.Configuration.SchemeSettingElementCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SchemeSettingElementCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SchemeSettingElementCollection.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SectionInformation.ForceDeclaration", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L565C13-L566C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L565C13-L566C10" }, { "DocsId": "M:System.Configuration.SectionInformation.ForceDeclaration(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L572C13-L596C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L572C13-L596C10" }, { "DocsId": "M:System.Configuration.SectionInformation.ProtectSection(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L603C13-L624C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L603C13-L624C10" }, { "DocsId": "M:System.Configuration.SectionInformation.UnprotectSection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L628C13-L634C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L628C13-L634C10" }, { "DocsId": "M:System.Configuration.SectionInformation.GetParentSection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L638C13-L656C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L638C13-L656C29" }, { "DocsId": "M:System.Configuration.SectionInformation.GetRawXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L661C13-L664C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L661C13-L664C66" }, { "DocsId": "M:System.Configuration.SectionInformation.SetRawXml(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L669C13-L673C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L669C13-L673C10" }, { "DocsId": "M:System.Configuration.SectionInformation.RevertToParent", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L677C13-L681C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L677C13-L681C10" }, { "DocsId": "P:System.Configuration.SectionInformation.SectionName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L80C38-L80C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L80C38-L80C47" }, { "DocsId": "P:System.Configuration.SectionInformation.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L82C30-L82C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L82C30-L82C34" }, { "DocsId": "P:System.Configuration.SectionInformation.AllowDefinition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L86C19-L86C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L86C19-L86C43" }, { "DocsId": "P:System.Configuration.SectionInformation.AllowExeDefinition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L107C19-L107C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L107C19-L107C46" }, { "DocsId": "P:System.Configuration.SectionInformation.OverrideModeDefault", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L128C19-L128C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L128C19-L128C60" }, { "DocsId": "P:System.Configuration.SectionInformation.AllowLocation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L154C19-L154C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L154C19-L154C52" }, { "DocsId": "P:System.Configuration.SectionInformation.AllowOverride", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L175C19-L175C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L175C19-L175C54" }, { "DocsId": "P:System.Configuration.SectionInformation.OverrideMode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L187C19-L187C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L187C19-L187C53" }, { "DocsId": "P:System.Configuration.SectionInformation.OverrideModeEffective", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L216C54-L216C121" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L216C54-L216C121" }, { "DocsId": "P:System.Configuration.SectionInformation.ConfigSource", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L231C19-L231C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L231C19-L231C56" }, { "DocsId": "P:System.Configuration.SectionInformation.InheritInChildApplications", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L257C19-L257C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L257C19-L257C57" }, { "DocsId": "P:System.Configuration.SectionInformation.IsDeclared", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L271C17-L273C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L271C17-L273C45" }, { "DocsId": "P:System.Configuration.SectionInformation.IsDeclarationRequired", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L283C17-L285C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L283C17-L285C56" }, { "DocsId": "P:System.Configuration.SectionInformation.IsLocked", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L295C33-L296C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L295C33-L296C62" }, { "DocsId": "P:System.Configuration.SectionInformation.IsProtected", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L298C36-L298C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L298C36-L298C62" }, { "DocsId": "P:System.Configuration.SectionInformation.ProtectionProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L304C17-L310C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L304C17-L310C44" }, { "DocsId": "P:System.Configuration.SectionInformation.RestartOnExternalChanges", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L318C19-L318C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L318C19-L318C63" }, { "DocsId": "P:System.Configuration.SectionInformation.RequirePermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L339C19-L339C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L339C19-L339C56" }, { "DocsId": "P:System.Configuration.SectionInformation.Type", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L361C19-L361C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L361C19-L361C36" }, { "DocsId": "P:System.Configuration.SectionInformation.ForceSave", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L394C19-L394C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs#L394C19-L394C48" } ], "DocsId": "T:System.Configuration.SectionInformation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SectionInformation.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SettingAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingAttribute.cs" } ], "DocsId": "T:System.Configuration.SettingAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SettingChangingEventArgs.#ctor(System.String,System.String,System.String,System.Object,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingChangingEventArgs.cs#L18C133-L24C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingChangingEventArgs.cs#L18C133-L24C10" }, { "DocsId": "P:System.Configuration.SettingChangingEventArgs.NewValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingChangingEventArgs.cs#L30C17-L30C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingChangingEventArgs.cs#L30C17-L30C34" }, { "DocsId": "P:System.Configuration.SettingChangingEventArgs.SettingClass", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingChangingEventArgs.cs#L38C17-L38C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingChangingEventArgs.cs#L38C17-L38C38" }, { "DocsId": "P:System.Configuration.SettingChangingEventArgs.SettingName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingChangingEventArgs.cs#L46C17-L46C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingChangingEventArgs.cs#L46C17-L46C37" }, { "DocsId": "P:System.Configuration.SettingChangingEventArgs.SettingKey", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingChangingEventArgs.cs#L54C17-L54C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingChangingEventArgs.cs#L54C17-L54C36" } ], "DocsId": "T:System.Configuration.SettingChangingEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingChangingEventArgs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingChangingEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SettingChangingEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingChangingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingChangingEventHandler.cs" }, { "DocsId": "M:System.Configuration.SettingChangingEventHandler.Invoke(System.Object,System.Configuration.SettingChangingEventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingChangingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingChangingEventHandler.cs" }, { "DocsId": "M:System.Configuration.SettingChangingEventHandler.BeginInvoke(System.Object,System.Configuration.SettingChangingEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingChangingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingChangingEventHandler.cs" }, { "DocsId": "M:System.Configuration.SettingChangingEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingChangingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingChangingEventHandler.cs" } ], "DocsId": "T:System.Configuration.SettingChangingEventHandler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingChangingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingChangingEventHandler.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SettingElement.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElement.cs#L27C9-L29C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElement.cs#L27C9-L29C10" }, { "DocsId": "M:System.Configuration.SettingElement.#ctor(System.String,System.Configuration.SettingsSerializeAs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElement.cs#L31C79-L35C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElement.cs#L31C79-L35C10" }, { "DocsId": "M:System.Configuration.SettingElement.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElement.cs#L47C13-L48C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElement.cs#L47C13-L48C95" }, { "DocsId": "M:System.Configuration.SettingElement.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElement.cs#L53C13-L53C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElement.cs#L53C13-L53C61" }, { "DocsId": "P:System.Configuration.SettingElement.Properties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElement.cs#L60C17-L60C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElement.cs#L60C17-L60C37" }, { "DocsId": "P:System.Configuration.SettingElement.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElement.cs#L69C17-L69C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElement.cs#L69C17-L69C49" }, { "DocsId": "P:System.Configuration.SettingElement.SerializeAs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElement.cs#L82C17-L82C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElement.cs#L82C17-L82C69" }, { "DocsId": "P:System.Configuration.SettingElement.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElement.cs#L95C17-L95C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElement.cs#L95C17-L95C63" } ], "DocsId": "T:System.Configuration.SettingElement", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElement.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElement.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SettingElementCollection.CreateNewElement", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElementCollection.cs#L26C13-L26C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElementCollection.cs#L26C13-L26C41" }, { "DocsId": "M:System.Configuration.SettingElementCollection.GetElementKey(System.Configuration.ConfigurationElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElementCollection.cs#L31C13-L31C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElementCollection.cs#L31C13-L31C50" }, { "DocsId": "M:System.Configuration.SettingElementCollection.Get(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElementCollection.cs#L36C13-L36C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElementCollection.cs#L36C13-L36C56" }, { "DocsId": "M:System.Configuration.SettingElementCollection.Add(System.Configuration.SettingElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElementCollection.cs#L41C13-L42C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElementCollection.cs#L41C13-L42C10" }, { "DocsId": "M:System.Configuration.SettingElementCollection.Remove(System.Configuration.SettingElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElementCollection.cs#L46C13-L47C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElementCollection.cs#L46C13-L47C10" }, { "DocsId": "M:System.Configuration.SettingElementCollection.Clear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElementCollection.cs#L51C13-L52C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElementCollection.cs#L51C13-L52C10" }, { "DocsId": "M:System.Configuration.SettingElementCollection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElementCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElementCollection.cs" }, { "DocsId": "P:System.Configuration.SettingElementCollection.CollectionType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElementCollection.cs#L12C17-L12C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElementCollection.cs#L12C17-L12C68" }, { "DocsId": "P:System.Configuration.SettingElementCollection.ElementName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElementCollection.cs#L20C17-L20C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElementCollection.cs#L20C17-L20C34" } ], "DocsId": "T:System.Configuration.SettingElementCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElementCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingElementCollection.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SettingsAttributeDictionary.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsAttributeDictionary.cs#L11C48-L11C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsAttributeDictionary.cs#L11C48-L11C58" }, { "DocsId": "M:System.Configuration.SettingsAttributeDictionary.#ctor(System.Configuration.SettingsAttributeDictionary)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsAttributeDictionary.cs#L13C86-L13C106" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsAttributeDictionary.cs#L13C86-L13C106" }, { "DocsId": "M:System.Configuration.SettingsAttributeDictionary.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsAttributeDictionary.cs#L15C9-L17C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsAttributeDictionary.cs#L15C9-L17C55" } ], "DocsId": "T:System.Configuration.SettingsAttributeDictionary", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsAttributeDictionary.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsAttributeDictionary.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SettingsBase.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsBase.cs#L16C9-L19C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsBase.cs#L16C9-L19C10" }, { "DocsId": "M:System.Configuration.SettingsBase.Initialize(System.Configuration.SettingsContext,System.Configuration.SettingsPropertyCollection,System.Configuration.SettingsProviderCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsBase.cs#L103C13-L106C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsBase.cs#L103C13-L106C10" }, { "DocsId": "M:System.Configuration.SettingsBase.Save", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsBase.cs#L110C13-L121C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsBase.cs#L110C13-L121C10" }, { "DocsId": "M:System.Configuration.SettingsBase.Synchronized(System.Configuration.SettingsBase)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsBase.cs#L176C13-L177C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsBase.cs#L176C13-L177C33" }, { "DocsId": "P:System.Configuration.SettingsBase.Item(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsBase.cs#L25C17-L36C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsBase.cs#L25C17-L36C14" }, { "DocsId": "P:System.Configuration.SettingsBase.Properties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsBase.cs#L147C70-L147C89" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsBase.cs#L147C70-L147C89" }, { "DocsId": "P:System.Configuration.SettingsBase.Providers", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsBase.cs#L148C69-L148C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsBase.cs#L148C69-L148C87" }, { "DocsId": "P:System.Configuration.SettingsBase.PropertyValues", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsBase.cs#L149C79-L149C102" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsBase.cs#L149C79-L149C102" }, { "DocsId": "P:System.Configuration.SettingsBase.Context", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsBase.cs#L150C56-L150C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsBase.cs#L150C56-L150C72" }, { "DocsId": "P:System.Configuration.SettingsBase.IsSynchronized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsBase.cs#L181C44-L181C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsBase.cs#L181C44-L181C67" } ], "DocsId": "T:System.Configuration.SettingsBase", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsBase.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsBase.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SettingsContext.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsContext.cs#L11C36-L11C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsContext.cs#L11C36-L11C46" }, { "DocsId": "M:System.Configuration.SettingsContext.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsContext.cs#L13C9-L15C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsContext.cs#L13C9-L15C55" } ], "DocsId": "T:System.Configuration.SettingsContext", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsContext.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsContext.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SettingsDescriptionAttribute.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsDescriptionAttribute.cs#L17C9-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsDescriptionAttribute.cs#L17C9-L20C10" }, { "DocsId": "P:System.Configuration.SettingsDescriptionAttribute.Description", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsDescriptionAttribute.cs#L29C17-L29C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsDescriptionAttribute.cs#L29C17-L29C37" } ], "DocsId": "T:System.Configuration.SettingsDescriptionAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsDescriptionAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsDescriptionAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SettingsGroupDescriptionAttribute.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsGroupDescriptionAttribute.cs#L17C9-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsGroupDescriptionAttribute.cs#L17C9-L20C10" }, { "DocsId": "P:System.Configuration.SettingsGroupDescriptionAttribute.Description", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsGroupDescriptionAttribute.cs#L29C17-L29C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsGroupDescriptionAttribute.cs#L29C17-L29C37" } ], "DocsId": "T:System.Configuration.SettingsGroupDescriptionAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsGroupDescriptionAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsGroupDescriptionAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SettingsGroupNameAttribute.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsGroupNameAttribute.cs#L17C9-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsGroupNameAttribute.cs#L17C9-L20C10" }, { "DocsId": "P:System.Configuration.SettingsGroupNameAttribute.GroupName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsGroupNameAttribute.cs#L29C17-L29C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsGroupNameAttribute.cs#L29C17-L29C35" } ], "DocsId": "T:System.Configuration.SettingsGroupNameAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsGroupNameAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsGroupNameAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SettingsLoadedEventArgs.#ctor(System.Configuration.SettingsProvider)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsLoadedEventArgs.cs#L13C9-L16C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsLoadedEventArgs.cs#L13C9-L16C10" }, { "DocsId": "P:System.Configuration.SettingsLoadedEventArgs.Provider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsLoadedEventArgs.cs#L22C17-L22C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsLoadedEventArgs.cs#L22C17-L22C34" } ], "DocsId": "T:System.Configuration.SettingsLoadedEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsLoadedEventArgs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsLoadedEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SettingsLoadedEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsLoadedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsLoadedEventHandler.cs" }, { "DocsId": "M:System.Configuration.SettingsLoadedEventHandler.Invoke(System.Object,System.Configuration.SettingsLoadedEventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsLoadedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsLoadedEventHandler.cs" }, { "DocsId": "M:System.Configuration.SettingsLoadedEventHandler.BeginInvoke(System.Object,System.Configuration.SettingsLoadedEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsLoadedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsLoadedEventHandler.cs" }, { "DocsId": "M:System.Configuration.SettingsLoadedEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsLoadedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsLoadedEventHandler.cs" } ], "DocsId": "T:System.Configuration.SettingsLoadedEventHandler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsLoadedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsLoadedEventHandler.cs" }, { "Members": [ { "DocsId": "F:System.Configuration.SettingsManageability.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsManageability.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsManageability.cs" }, { "DocsId": "F:System.Configuration.SettingsManageability.Roaming", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsManageability.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsManageability.cs" } ], "DocsId": "T:System.Configuration.SettingsManageability", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsManageability.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsManageability.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SettingsManageabilityAttribute.#ctor(System.Configuration.SettingsManageability)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsManageabilityAttribute.cs#L17C9-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsManageabilityAttribute.cs#L17C9-L20C10" }, { "DocsId": "P:System.Configuration.SettingsManageabilityAttribute.Manageability", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsManageabilityAttribute.cs#L29C17-L29C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsManageabilityAttribute.cs#L29C17-L29C39" } ], "DocsId": "T:System.Configuration.SettingsManageabilityAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsManageabilityAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsManageabilityAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SettingsPropertyCollection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L13C9-L16C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L13C9-L16C10" }, { "DocsId": "M:System.Configuration.SettingsPropertyCollection.Add(System.Configuration.SettingsProperty)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L20C13-L34C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L20C13-L34C10" }, { "DocsId": "M:System.Configuration.SettingsPropertyCollection.Remove(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L38C13-L55C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L38C13-L55C10" }, { "DocsId": "M:System.Configuration.SettingsPropertyCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L67C13-L67C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L67C13-L67C54" }, { "DocsId": "M:System.Configuration.SettingsPropertyCollection.Clone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L72C13-L72C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L72C13-L72C63" }, { "DocsId": "M:System.Configuration.SettingsPropertyCollection.SetReadOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L77C13-L80C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L77C13-L80C10" }, { "DocsId": "M:System.Configuration.SettingsPropertyCollection.Clear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L84C13-L89C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L84C13-L89C10" }, { "DocsId": "M:System.Configuration.SettingsPropertyCollection.OnAdd(System.Configuration.SettingsProperty)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L96C67-L96C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L96C67-L96C68" }, { "DocsId": "M:System.Configuration.SettingsPropertyCollection.OnAddComplete(System.Configuration.SettingsProperty)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L98C75-L98C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L98C75-L98C76" }, { "DocsId": "M:System.Configuration.SettingsPropertyCollection.OnClear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L100C44-L100C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L100C44-L100C45" }, { "DocsId": "M:System.Configuration.SettingsPropertyCollection.OnClearComplete", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L102C52-L102C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L102C52-L102C53" }, { "DocsId": "M:System.Configuration.SettingsPropertyCollection.OnRemove(System.Configuration.SettingsProperty)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L104C70-L104C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L104C70-L104C71" }, { "DocsId": "M:System.Configuration.SettingsPropertyCollection.OnRemoveComplete(System.Configuration.SettingsProperty)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L106C78-L106C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L106C78-L106C79" }, { "DocsId": "M:System.Configuration.SettingsPropertyCollection.CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L115C13-L116C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L115C13-L116C10" }, { "DocsId": "P:System.Configuration.SettingsPropertyCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L61C17-L61C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L61C17-L61C61" }, { "DocsId": "P:System.Configuration.SettingsPropertyCollection.Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L109C34-L109C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L109C34-L109C58" }, { "DocsId": "P:System.Configuration.SettingsPropertyCollection.IsSynchronized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L110C44-L110C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L110C44-L110C57" }, { "DocsId": "P:System.Configuration.SettingsPropertyCollection.SyncRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L111C40-L111C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs#L111C40-L111C52" } ], "DocsId": "T:System.Configuration.SettingsPropertyCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyCollection.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SettingsPropertyIsReadOnlyException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyIsReadOnlyException.cs#L14C16-L16C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyIsReadOnlyException.cs#L14C16-L16C10" }, { "DocsId": "M:System.Configuration.SettingsPropertyIsReadOnlyException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyIsReadOnlyException.cs#L19C16-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyIsReadOnlyException.cs#L19C16-L21C10" }, { "DocsId": "M:System.Configuration.SettingsPropertyIsReadOnlyException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyIsReadOnlyException.cs#L28C16-L30C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyIsReadOnlyException.cs#L28C16-L30C10" }, { "DocsId": "M:System.Configuration.SettingsPropertyIsReadOnlyException.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyIsReadOnlyException.cs#L32C9-L34C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyIsReadOnlyException.cs#L32C9-L34C10" } ], "DocsId": "T:System.Configuration.SettingsPropertyIsReadOnlyException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyIsReadOnlyException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyIsReadOnlyException.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SettingsPropertyNotFoundException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyNotFoundException.cs#L14C15-L16C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyNotFoundException.cs#L14C15-L16C10" }, { "DocsId": "M:System.Configuration.SettingsPropertyNotFoundException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyNotFoundException.cs#L19C15-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyNotFoundException.cs#L19C15-L21C10" }, { "DocsId": "M:System.Configuration.SettingsPropertyNotFoundException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyNotFoundException.cs#L28C15-L30C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyNotFoundException.cs#L28C15-L30C10" }, { "DocsId": "M:System.Configuration.SettingsPropertyNotFoundException.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyNotFoundException.cs#L32C9-L34C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyNotFoundException.cs#L32C9-L34C10" } ], "DocsId": "T:System.Configuration.SettingsPropertyNotFoundException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyNotFoundException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyNotFoundException.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SettingsPropertyValueCollection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValueCollection.cs#L14C9-L18C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValueCollection.cs#L14C9-L18C10" }, { "DocsId": "M:System.Configuration.SettingsPropertyValueCollection.Add(System.Configuration.SettingsPropertyValue)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValueCollection.cs#L22C13-L36C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValueCollection.cs#L22C13-L36C10" }, { "DocsId": "M:System.Configuration.SettingsPropertyValueCollection.Remove(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValueCollection.cs#L40C13-L64C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValueCollection.cs#L40C13-L64C10" }, { "DocsId": "M:System.Configuration.SettingsPropertyValueCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValueCollection.cs#L86C13-L86C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValueCollection.cs#L86C13-L86C44" }, { "DocsId": "M:System.Configuration.SettingsPropertyValueCollection.Clone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValueCollection.cs#L91C13-L91C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValueCollection.cs#L91C13-L91C75" }, { "DocsId": "M:System.Configuration.SettingsPropertyValueCollection.SetReadOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValueCollection.cs#L96C13-L101C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValueCollection.cs#L96C13-L101C10" }, { "DocsId": "M:System.Configuration.SettingsPropertyValueCollection.Clear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValueCollection.cs#L105C13-L107C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValueCollection.cs#L105C13-L107C10" }, { "DocsId": "M:System.Configuration.SettingsPropertyValueCollection.CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValueCollection.cs#L117C13-L118C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValueCollection.cs#L117C13-L118C10" }, { "DocsId": "P:System.Configuration.SettingsPropertyValueCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValueCollection.cs#L70C17-L80C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValueCollection.cs#L70C17-L80C61" }, { "DocsId": "P:System.Configuration.SettingsPropertyValueCollection.Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValueCollection.cs#L109C34-L109C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValueCollection.cs#L109C34-L109C55" }, { "DocsId": "P:System.Configuration.SettingsPropertyValueCollection.IsSynchronized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValueCollection.cs#L111C44-L111C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValueCollection.cs#L111C44-L111C57" }, { "DocsId": "P:System.Configuration.SettingsPropertyValueCollection.SyncRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValueCollection.cs#L113C40-L113C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValueCollection.cs#L113C40-L113C52" } ], "DocsId": "T:System.Configuration.SettingsPropertyValueCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValueCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValueCollection.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SettingsPropertyWrongTypeException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyWrongTypeException.cs#L14C15-L16C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyWrongTypeException.cs#L14C15-L16C10" }, { "DocsId": "M:System.Configuration.SettingsPropertyWrongTypeException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyWrongTypeException.cs#L19C16-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyWrongTypeException.cs#L19C16-L21C10" }, { "DocsId": "M:System.Configuration.SettingsPropertyWrongTypeException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyWrongTypeException.cs#L28C16-L30C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyWrongTypeException.cs#L28C16-L30C10" }, { "DocsId": "M:System.Configuration.SettingsPropertyWrongTypeException.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyWrongTypeException.cs#L32C9-L34C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyWrongTypeException.cs#L32C9-L34C10" } ], "DocsId": "T:System.Configuration.SettingsPropertyWrongTypeException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyWrongTypeException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyWrongTypeException.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SettingsProvider.GetPropertyValues(System.Configuration.SettingsContext,System.Configuration.SettingsPropertyCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProvider.cs" }, { "DocsId": "M:System.Configuration.SettingsProvider.SetPropertyValues(System.Configuration.SettingsContext,System.Configuration.SettingsPropertyValueCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProvider.cs" }, { "DocsId": "M:System.Configuration.SettingsProvider.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProvider.cs" }, { "DocsId": "P:System.Configuration.SettingsProvider.ApplicationName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProvider.cs" } ], "DocsId": "T:System.Configuration.SettingsProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProvider.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SettingsProviderAttribute.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProviderAttribute.cs#L17C9-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProviderAttribute.cs#L17C9-L20C10" }, { "DocsId": "M:System.Configuration.SettingsProviderAttribute.#ctor(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProviderAttribute.cs#L25C9-L31C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProviderAttribute.cs#L25C9-L31C10" }, { "DocsId": "P:System.Configuration.SettingsProviderAttribute.ProviderTypeName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProviderAttribute.cs#L40C17-L40C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProviderAttribute.cs#L40C17-L40C42" } ], "DocsId": "T:System.Configuration.SettingsProviderAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProviderAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProviderAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SettingsProviderCollection.Add(System.Configuration.Provider.ProviderBase)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProviderCollection.cs#L12C13-L23C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProviderCollection.cs#L12C13-L23C10" }, { "DocsId": "M:System.Configuration.SettingsProviderCollection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProviderCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProviderCollection.cs" }, { "DocsId": "P:System.Configuration.SettingsProviderCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProviderCollection.cs#L29C17-L29C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProviderCollection.cs#L29C17-L29C53" } ], "DocsId": "T:System.Configuration.SettingsProviderCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProviderCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProviderCollection.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SettingsSavingEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsSavingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsSavingEventHandler.cs" }, { "DocsId": "M:System.Configuration.SettingsSavingEventHandler.Invoke(System.Object,System.ComponentModel.CancelEventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsSavingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsSavingEventHandler.cs" }, { "DocsId": "M:System.Configuration.SettingsSavingEventHandler.BeginInvoke(System.Object,System.ComponentModel.CancelEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsSavingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsSavingEventHandler.cs" }, { "DocsId": "M:System.Configuration.SettingsSavingEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsSavingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsSavingEventHandler.cs" } ], "DocsId": "T:System.Configuration.SettingsSavingEventHandler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsSavingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsSavingEventHandler.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SettingsSerializeAsAttribute.#ctor(System.Configuration.SettingsSerializeAs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsSerializeAsAttribute.cs#L17C9-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsSerializeAsAttribute.cs#L17C9-L20C10" }, { "DocsId": "P:System.Configuration.SettingsSerializeAsAttribute.SerializeAs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsSerializeAsAttribute.cs#L29C17-L29C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsSerializeAsAttribute.cs#L29C17-L29C37" } ], "DocsId": "T:System.Configuration.SettingsSerializeAsAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsSerializeAsAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsSerializeAsAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SettingValueElement.DeserializeElement(System.Xml.XmlReader,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingValueElement.cs#L34C13-L35C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingValueElement.cs#L34C13-L35C10" }, { "DocsId": "M:System.Configuration.SettingValueElement.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingValueElement.cs#L39C13-L40C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingValueElement.cs#L39C13-L40C64" }, { "DocsId": "M:System.Configuration.SettingValueElement.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingValueElement.cs#L45C13-L45C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingValueElement.cs#L45C13-L45C49" }, { "DocsId": "M:System.Configuration.SettingValueElement.IsModified", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingValueElement.cs#L50C13-L50C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingValueElement.cs#L50C13-L50C32" }, { "DocsId": "M:System.Configuration.SettingValueElement.ResetModified", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingValueElement.cs#L55C13-L56C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingValueElement.cs#L55C13-L56C10" }, { "DocsId": "M:System.Configuration.SettingValueElement.SerializeToXmlElement(System.Xml.XmlWriter,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingValueElement.cs#L60C13-L69C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingValueElement.cs#L60C13-L69C26" }, { "DocsId": "M:System.Configuration.SettingValueElement.Reset(System.Configuration.ConfigurationElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingValueElement.cs#L74C13-L76C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingValueElement.cs#L74C13-L76C10" }, { "DocsId": "M:System.Configuration.SettingValueElement.Unmerge(System.Configuration.ConfigurationElement,System.Configuration.ConfigurationElement,System.Configuration.ConfigurationSaveMode)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingValueElement.cs#L81C13-L83C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingValueElement.cs#L81C13-L83C10" }, { "DocsId": "M:System.Configuration.SettingValueElement.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingValueElement.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingValueElement.cs" }, { "DocsId": "P:System.Configuration.SettingValueElement.Properties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingValueElement.cs#L17C13-L17C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingValueElement.cs#L17C13-L17C66" }, { "DocsId": "P:System.Configuration.SettingValueElement.ValueXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingValueElement.cs#L23C17-L23C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingValueElement.cs#L23C17-L23C34" } ], "DocsId": "T:System.Configuration.SettingValueElement", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingValueElement.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingValueElement.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SingleTagSectionHandler.Create(System.Object,System.Object,System.Xml.XmlNode)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SingleTagSectionHandler.cs#L29C13-L46C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SingleTagSectionHandler.cs#L29C13-L46C27" }, { "DocsId": "M:System.Configuration.SingleTagSectionHandler.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SingleTagSectionHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SingleTagSectionHandler.cs" } ], "DocsId": "T:System.Configuration.SingleTagSectionHandler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SingleTagSectionHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SingleTagSectionHandler.cs" }, { "Members": [ { "DocsId": "F:System.Configuration.SpecialSetting.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SpecialSetting.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SpecialSetting.cs" }, { "DocsId": "F:System.Configuration.SpecialSetting.ConnectionString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SpecialSetting.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SpecialSetting.cs" }, { "DocsId": "F:System.Configuration.SpecialSetting.WebServiceUrl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SpecialSetting.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SpecialSetting.cs" } ], "DocsId": "T:System.Configuration.SpecialSetting", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SpecialSetting.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SpecialSetting.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SpecialSettingAttribute.#ctor(System.Configuration.SpecialSetting)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SpecialSettingAttribute.cs#L16C9-L19C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SpecialSettingAttribute.cs#L16C9-L19C10" }, { "DocsId": "P:System.Configuration.SpecialSettingAttribute.SpecialSetting", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SpecialSettingAttribute.cs#L28C17-L28C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SpecialSettingAttribute.cs#L28C17-L28C40" } ], "DocsId": "T:System.Configuration.SpecialSettingAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SpecialSettingAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SpecialSettingAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.CommaDelimitedStringCollection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringAttributeCollection.cs#L14C9-L19C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringAttributeCollection.cs#L14C9-L19C10" }, { "DocsId": "M:System.Configuration.CommaDelimitedStringCollection.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringAttributeCollection.cs#L56C13-L70C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringAttributeCollection.cs#L56C13-L70C58" }, { "DocsId": "M:System.Configuration.CommaDelimitedStringCollection.SetReadOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringAttributeCollection.cs#L86C13-L87C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringAttributeCollection.cs#L86C13-L87C10" }, { "DocsId": "M:System.Configuration.CommaDelimitedStringCollection.Add(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringAttributeCollection.cs#L91C13-L95C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringAttributeCollection.cs#L91C13-L95C10" }, { "DocsId": "M:System.Configuration.CommaDelimitedStringCollection.AddRange(System.String[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringAttributeCollection.cs#L99C13-L106C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringAttributeCollection.cs#L99C13-L106C10" }, { "DocsId": "M:System.Configuration.CommaDelimitedStringCollection.Clear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringAttributeCollection.cs#L110C13-L113C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringAttributeCollection.cs#L110C13-L113C10" }, { "DocsId": "M:System.Configuration.CommaDelimitedStringCollection.Insert(System.Int32,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringAttributeCollection.cs#L117C13-L121C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringAttributeCollection.cs#L117C13-L121C10" }, { "DocsId": "M:System.Configuration.CommaDelimitedStringCollection.Remove(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringAttributeCollection.cs#L125C13-L129C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringAttributeCollection.cs#L125C13-L129C10" }, { "DocsId": "M:System.Configuration.CommaDelimitedStringCollection.Clone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringAttributeCollection.cs#L133C13-L143C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringAttributeCollection.cs#L133C13-L143C25" }, { "DocsId": "P:System.Configuration.CommaDelimitedStringCollection.IsModified", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringAttributeCollection.cs#L21C35-L21C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringAttributeCollection.cs#L21C35-L21C79" }, { "DocsId": "P:System.Configuration.CommaDelimitedStringCollection.IsReadOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringAttributeCollection.cs#L23C38-L23C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringAttributeCollection.cs#L23C38-L23C42" }, { "DocsId": "P:System.Configuration.CommaDelimitedStringCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringAttributeCollection.cs#L27C19-L27C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringAttributeCollection.cs#L27C19-L27C38" } ], "DocsId": "T:System.Configuration.CommaDelimitedStringCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringAttributeCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringAttributeCollection.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.StringValidator.#ctor(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringValidator.cs#L13C15-L14C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringValidator.cs#L13C15-L14C12" }, { "DocsId": "M:System.Configuration.StringValidator.#ctor(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringValidator.cs#L17C15-L18C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringValidator.cs#L17C15-L18C12" }, { "DocsId": "M:System.Configuration.StringValidator.#ctor(System.Int32,System.Int32,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringValidator.cs#L20C9-L25C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringValidator.cs#L20C9-L25C10" }, { "DocsId": "M:System.Configuration.StringValidator.CanValidate(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringValidator.cs#L29C13-L29C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringValidator.cs#L29C13-L29C43" }, { "DocsId": "M:System.Configuration.StringValidator.Validate(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringValidator.cs#L34C13-L54C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringValidator.cs#L34C13-L54C10" } ], "DocsId": "T:System.Configuration.StringValidator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringValidator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringValidator.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.StringValidatorAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringValidatorAttribute.cs#L9C9-L9C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringValidatorAttribute.cs#L9C9-L9C47" }, { "DocsId": "P:System.Configuration.StringValidatorAttribute.ValidatorInstance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringValidatorAttribute.cs#L13C16-L13C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringValidatorAttribute.cs#L13C16-L13C78" }, { "DocsId": "P:System.Configuration.StringValidatorAttribute.MinLength", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringValidatorAttribute.cs#L17C19-L17C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringValidatorAttribute.cs#L17C19-L17C37" }, { "DocsId": "P:System.Configuration.StringValidatorAttribute.MaxLength", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringValidatorAttribute.cs#L29C19-L29C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringValidatorAttribute.cs#L29C19-L29C37" }, { "DocsId": "P:System.Configuration.StringValidatorAttribute.InvalidCharacters", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringValidatorAttribute.cs#L39C43-L39C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringValidatorAttribute.cs#L39C43-L39C47" } ], "DocsId": "T:System.Configuration.StringValidatorAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringValidatorAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/StringValidatorAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SubclassTypeValidator.#ctor(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SubclassTypeValidator.cs#L11C9-L17C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SubclassTypeValidator.cs#L11C9-L17C10" }, { "DocsId": "M:System.Configuration.SubclassTypeValidator.CanValidate(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SubclassTypeValidator.cs#L21C13-L21C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SubclassTypeValidator.cs#L21C13-L21C41" }, { "DocsId": "M:System.Configuration.SubclassTypeValidator.Validate(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SubclassTypeValidator.cs#L26C13-L36C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SubclassTypeValidator.cs#L26C13-L36C10" } ], "DocsId": "T:System.Configuration.SubclassTypeValidator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SubclassTypeValidator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SubclassTypeValidator.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SubclassTypeValidatorAttribute.#ctor(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SubclassTypeValidatorAttribute.cs#L9C9-L12C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SubclassTypeValidatorAttribute.cs#L9C9-L12C10" }, { "DocsId": "P:System.Configuration.SubclassTypeValidatorAttribute.ValidatorInstance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SubclassTypeValidatorAttribute.cs#L14C73-L14C109" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SubclassTypeValidatorAttribute.cs#L14C73-L14C109" }, { "DocsId": "P:System.Configuration.SubclassTypeValidatorAttribute.BaseClass", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SubclassTypeValidatorAttribute.cs#L16C33-L16C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SubclassTypeValidatorAttribute.cs#L16C33-L16C37" } ], "DocsId": "T:System.Configuration.SubclassTypeValidatorAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SubclassTypeValidatorAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SubclassTypeValidatorAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.TimeSpanMinutesConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanMinutesConverter.cs#L13C13-L16C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanMinutesConverter.cs#L13C13-L16C64" }, { "DocsId": "M:System.Configuration.TimeSpanMinutesConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanMinutesConverter.cs#L21C13-L22C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanMinutesConverter.cs#L21C13-L22C46" }, { "DocsId": "M:System.Configuration.TimeSpanMinutesConverter.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanMinutesConverter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanMinutesConverter.cs" } ], "DocsId": "T:System.Configuration.TimeSpanMinutesConverter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanMinutesConverter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanMinutesConverter.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.TimeSpanMinutesOrInfiniteConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanMinutesOrInfiniteConverter.cs#L13C13-L15C109" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanMinutesOrInfiniteConverter.cs#L13C13-L15C109" }, { "DocsId": "M:System.Configuration.TimeSpanMinutesOrInfiniteConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanMinutesOrInfiniteConverter.cs#L20C13-L20C101" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanMinutesOrInfiniteConverter.cs#L20C13-L20C101" }, { "DocsId": "M:System.Configuration.TimeSpanMinutesOrInfiniteConverter.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanMinutesOrInfiniteConverter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanMinutesOrInfiniteConverter.cs" } ], "DocsId": "T:System.Configuration.TimeSpanMinutesOrInfiniteConverter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanMinutesOrInfiniteConverter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanMinutesOrInfiniteConverter.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.TimeSpanSecondsConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanSecondsConverter.cs#L13C13-L17C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanSecondsConverter.cs#L13C13-L17C64" }, { "DocsId": "M:System.Configuration.TimeSpanSecondsConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanSecondsConverter.cs#L25C17-L31C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanSecondsConverter.cs#L25C17-L31C46" }, { "DocsId": "M:System.Configuration.TimeSpanSecondsConverter.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanSecondsConverter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanSecondsConverter.cs" } ], "DocsId": "T:System.Configuration.TimeSpanSecondsConverter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanSecondsConverter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanSecondsConverter.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.TimeSpanSecondsOrInfiniteConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanSecondsOrInfiniteConverter.cs#L13C13-L15C109" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanSecondsOrInfiniteConverter.cs#L13C13-L15C109" }, { "DocsId": "M:System.Configuration.TimeSpanSecondsOrInfiniteConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanSecondsOrInfiniteConverter.cs#L20C13-L20C101" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanSecondsOrInfiniteConverter.cs#L20C13-L20C101" }, { "DocsId": "M:System.Configuration.TimeSpanSecondsOrInfiniteConverter.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanSecondsOrInfiniteConverter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanSecondsOrInfiniteConverter.cs" } ], "DocsId": "T:System.Configuration.TimeSpanSecondsOrInfiniteConverter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanSecondsOrInfiniteConverter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanSecondsOrInfiniteConverter.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.TimeSpanValidator.#ctor(System.TimeSpan,System.TimeSpan)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidator.cs#L14C15-L15C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidator.cs#L14C15-L15C12" }, { "DocsId": "M:System.Configuration.TimeSpanValidator.#ctor(System.TimeSpan,System.TimeSpan,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidator.cs#L18C15-L19C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidator.cs#L18C15-L19C12" }, { "DocsId": "M:System.Configuration.TimeSpanValidator.#ctor(System.TimeSpan,System.TimeSpan,System.Boolean,System.Int64)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidator.cs#L21C9-L33C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidator.cs#L21C9-L33C10" }, { "DocsId": "M:System.Configuration.TimeSpanValidator.CanValidate(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidator.cs#L37C13-L37C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidator.cs#L37C13-L37C45" }, { "DocsId": "M:System.Configuration.TimeSpanValidator.Validate(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidator.cs#L42C13-L49C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidator.cs#L42C13-L49C10" } ], "DocsId": "T:System.Configuration.TimeSpanValidator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidator.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.TimeSpanValidatorAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidatorAttribute.cs#L17C58-L19C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidatorAttribute.cs#L17C58-L19C75" }, { "DocsId": "F:System.Configuration.TimeSpanValidatorAttribute.TimeSpanMinValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidatorAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidatorAttribute.cs" }, { "DocsId": "F:System.Configuration.TimeSpanValidatorAttribute.TimeSpanMaxValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidatorAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidatorAttribute.cs" }, { "DocsId": "P:System.Configuration.TimeSpanValidatorAttribute.ValidatorInstance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidatorAttribute.cs#L15C16-L15C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidatorAttribute.cs#L15C16-L15C71" }, { "DocsId": "P:System.Configuration.TimeSpanValidatorAttribute.MinValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidatorAttribute.cs#L17C36-L17C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidatorAttribute.cs#L17C36-L17C40" }, { "DocsId": "P:System.Configuration.TimeSpanValidatorAttribute.MaxValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidatorAttribute.cs#L19C36-L19C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidatorAttribute.cs#L19C36-L19C40" }, { "DocsId": "P:System.Configuration.TimeSpanValidatorAttribute.MinValueString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidatorAttribute.cs#L23C19-L23C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidatorAttribute.cs#L23C19-L23C46" }, { "DocsId": "P:System.Configuration.TimeSpanValidatorAttribute.MaxValueString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidatorAttribute.cs#L37C19-L37C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidatorAttribute.cs#L37C19-L37C46" }, { "DocsId": "P:System.Configuration.TimeSpanValidatorAttribute.ExcludeRange", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidatorAttribute.cs#L49C36-L49C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidatorAttribute.cs#L49C36-L49C40" } ], "DocsId": "T:System.Configuration.TimeSpanValidatorAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidatorAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TimeSpanValidatorAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.TypeNameConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TypeNameConverter.cs#L14C13-L20C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TypeNameConverter.cs#L14C13-L20C27" }, { "DocsId": "M:System.Configuration.TypeNameConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TypeNameConverter.cs#L25C13-L29C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TypeNameConverter.cs#L25C13-L29C27" }, { "DocsId": "M:System.Configuration.TypeNameConverter.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TypeNameConverter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TypeNameConverter.cs" } ], "DocsId": "T:System.Configuration.TypeNameConverter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TypeNameConverter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/TypeNameConverter.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.UriSection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/UriSection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/UriSection.cs" }, { "DocsId": "P:System.Configuration.UriSection.Idn", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/UriSection.cs#L28C34-L28C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/UriSection.cs#L28C34-L28C56" }, { "DocsId": "P:System.Configuration.UriSection.IriParsing", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/UriSection.cs#L31C48-L31C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/UriSection.cs#L31C48-L31C84" }, { "DocsId": "P:System.Configuration.UriSection.SchemeSettings", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/UriSection.cs#L34C65-L34C118" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/UriSection.cs#L34C65-L34C118" }, { "DocsId": "P:System.Configuration.UriSection.Properties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/UriSection.cs#L36C83-L36C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/UriSection.cs#L36C83-L36C94" } ], "DocsId": "T:System.Configuration.UriSection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/UriSection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/UriSection.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.UserScopedSettingAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/UserScopedSettingAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/UserScopedSettingAttribute.cs" } ], "DocsId": "T:System.Configuration.UserScopedSettingAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/UserScopedSettingAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/UserScopedSettingAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.UserSettingsGroup.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/UserSettingsGroup.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/UserSettingsGroup.cs" } ], "DocsId": "T:System.Configuration.UserSettingsGroup", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/UserSettingsGroup.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/UserSettingsGroup.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ValidatorCallback.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ValidatorCallback.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ValidatorCallback.cs" }, { "DocsId": "M:System.Configuration.ValidatorCallback.Invoke(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ValidatorCallback.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ValidatorCallback.cs" }, { "DocsId": "M:System.Configuration.ValidatorCallback.BeginInvoke(System.Object,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ValidatorCallback.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ValidatorCallback.cs" }, { "DocsId": "M:System.Configuration.ValidatorCallback.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ValidatorCallback.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ValidatorCallback.cs" } ], "DocsId": "T:System.Configuration.ValidatorCallback", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ValidatorCallback.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/ValidatorCallback.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.WhiteSpaceTrimStringConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/WhiteSpaceTrimStringConverter.cs#L13C13-L15C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/WhiteSpaceTrimStringConverter.cs#L13C13-L15C74" }, { "DocsId": "M:System.Configuration.WhiteSpaceTrimStringConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/WhiteSpaceTrimStringConverter.cs#L20C13-L20C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/WhiteSpaceTrimStringConverter.cs#L20C13-L20C42" }, { "DocsId": "M:System.Configuration.WhiteSpaceTrimStringConverter.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/WhiteSpaceTrimStringConverter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/WhiteSpaceTrimStringConverter.cs" } ], "DocsId": "T:System.Configuration.WhiteSpaceTrimStringConverter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/WhiteSpaceTrimStringConverter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/WhiteSpaceTrimStringConverter.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SettingsProperty.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProperty.cs#L20C9-L24C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProperty.cs#L20C9-L24C10" }, { "DocsId": "M:System.Configuration.SettingsProperty.#ctor(System.String,System.Type,System.Configuration.SettingsProvider,System.Boolean,System.Object,System.Configuration.SettingsSerializeAs,System.Configuration.SettingsAttributeDictionary,System.Boolean,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProperty.cs#L26C9-L58C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProperty.cs#L26C9-L58C10" }, { "DocsId": "M:System.Configuration.SettingsProperty.#ctor(System.Configuration.SettingsProperty)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProperty.cs#L60C9-L71C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProperty.cs#L60C9-L71C10" }, { "DocsId": "P:System.Configuration.SettingsProperty.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProperty.cs#L10C38-L10C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProperty.cs#L10C38-L10C42" }, { "DocsId": "P:System.Configuration.SettingsProperty.IsReadOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProperty.cs#L11C42-L11C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProperty.cs#L11C42-L11C46" }, { "DocsId": "P:System.Configuration.SettingsProperty.DefaultValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProperty.cs#L12C46-L12C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProperty.cs#L12C46-L12C50" }, { "DocsId": "P:System.Configuration.SettingsProperty.PropertyType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProperty.cs#L13C44-L13C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProperty.cs#L13C44-L13C48" }, { "DocsId": "P:System.Configuration.SettingsProperty.SerializeAs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProperty.cs#L14C58-L14C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProperty.cs#L14C58-L14C62" }, { "DocsId": "P:System.Configuration.SettingsProperty.Provider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProperty.cs#L15C52-L15C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProperty.cs#L15C52-L15C56" }, { "DocsId": "P:System.Configuration.SettingsProperty.Attributes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProperty.cs#L16C65-L16C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProperty.cs#L16C65-L16C69" }, { "DocsId": "P:System.Configuration.SettingsProperty.ThrowOnErrorDeserializing", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProperty.cs#L17C49-L17C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProperty.cs#L17C49-L17C53" }, { "DocsId": "P:System.Configuration.SettingsProperty.ThrowOnErrorSerializing", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProperty.cs#L18C47-L18C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProperty.cs#L18C47-L18C51" } ], "DocsId": "T:System.Configuration.SettingsProperty", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProperty.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsProperty.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.SettingsPropertyValue.#ctor(System.Configuration.SettingsProperty)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValue.cs#L26C9-L29C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValue.cs#L26C9-L29C10" }, { "DocsId": "P:System.Configuration.SettingsPropertyValue.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValue.cs#L20C31-L20C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValue.cs#L20C31-L20C44" }, { "DocsId": "P:System.Configuration.SettingsPropertyValue.IsDirty", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValue.cs#L21C31-L21C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValue.cs#L21C31-L21C35" }, { "DocsId": "P:System.Configuration.SettingsPropertyValue.Property", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValue.cs#L22C44-L22C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValue.cs#L22C44-L22C48" }, { "DocsId": "P:System.Configuration.SettingsPropertyValue.UsingDefaultValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValue.cs#L23C41-L23C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValue.cs#L23C41-L23C45" }, { "DocsId": "P:System.Configuration.SettingsPropertyValue.Deserialized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValue.cs#L24C36-L24C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValue.cs#L24C36-L24C40" }, { "DocsId": "P:System.Configuration.SettingsPropertyValue.PropertyValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValue.cs#L35C17-L48C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValue.cs#L35C17-L48C31" }, { "DocsId": "P:System.Configuration.SettingsPropertyValue.SerializedValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValue.cs#L64C17-L69C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValue.cs#L64C17-L69C41" } ], "DocsId": "T:System.Configuration.SettingsPropertyValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValue.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsPropertyValue.cs" }, { "Members": [ { "DocsId": "F:System.Configuration.SettingsSerializeAs.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsSerializeAs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsSerializeAs.cs" }, { "DocsId": "F:System.Configuration.SettingsSerializeAs.String", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsSerializeAs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsSerializeAs.cs" }, { "DocsId": "F:System.Configuration.SettingsSerializeAs.Xml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsSerializeAs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsSerializeAs.cs" }, { "DocsId": "F:System.Configuration.SettingsSerializeAs.Binary", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsSerializeAs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsSerializeAs.cs" }, { "DocsId": "F:System.Configuration.SettingsSerializeAs.ProviderSpecific", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsSerializeAs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsSerializeAs.cs" } ], "DocsId": "T:System.Configuration.SettingsSerializeAs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsSerializeAs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/SettingsSerializeAs.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.NoSettingsVersionUpgradeAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NoSettingsVersionUpgradeAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NoSettingsVersionUpgradeAttribute.cs" } ], "DocsId": "T:System.Configuration.NoSettingsVersionUpgradeAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NoSettingsVersionUpgradeAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/NoSettingsVersionUpgradeAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.Provider.ProviderBase.Initialize(System.String,System.Collections.Specialized.NameValueCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderBase.cs#L21C13-L39C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderBase.cs#L21C13-L39C10" }, { "DocsId": "M:System.Configuration.Provider.ProviderBase.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderBase.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderBase.cs" }, { "DocsId": "P:System.Configuration.Provider.ProviderBase.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderBase.cs#L15C39-L15C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderBase.cs#L15C39-L15C44" }, { "DocsId": "P:System.Configuration.Provider.ProviderBase.Description", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderBase.cs#L17C46-L17C102" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderBase.cs#L17C46-L17C102" } ], "DocsId": "T:System.Configuration.Provider.ProviderBase", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderBase.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderBase.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.Provider.ProviderCollection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderCollection.cs#L13C9-L16C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderCollection.cs#L13C9-L16C10" }, { "DocsId": "M:System.Configuration.Provider.ProviderCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderCollection.cs#L22C13-L22C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderCollection.cs#L22C13-L22C54" }, { "DocsId": "M:System.Configuration.Provider.ProviderCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderCollection.cs#L33C13-L34C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderCollection.cs#L33C13-L34C10" }, { "DocsId": "M:System.Configuration.Provider.ProviderCollection.Add(System.Configuration.Provider.ProviderBase)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderCollection.cs#L38C13-L48C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderCollection.cs#L38C13-L48C10" }, { "DocsId": "M:System.Configuration.Provider.ProviderCollection.Remove(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderCollection.cs#L52C13-L55C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderCollection.cs#L52C13-L55C10" }, { "DocsId": "M:System.Configuration.Provider.ProviderCollection.SetReadOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderCollection.cs#L59C13-L62C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderCollection.cs#L59C13-L62C10" }, { "DocsId": "M:System.Configuration.Provider.ProviderCollection.Clear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderCollection.cs#L66C13-L69C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderCollection.cs#L66C13-L69C10" }, { "DocsId": "M:System.Configuration.Provider.ProviderCollection.CopyTo(System.Configuration.Provider.ProviderBase[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderCollection.cs#L73C13-L74C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderCollection.cs#L73C13-L74C10" }, { "DocsId": "P:System.Configuration.Provider.ProviderCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderCollection.cs#L18C50-L18C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderCollection.cs#L18C50-L18C82" }, { "DocsId": "P:System.Configuration.Provider.ProviderCollection.Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderCollection.cs#L25C29-L25C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderCollection.cs#L25C29-L25C45" }, { "DocsId": "P:System.Configuration.Provider.ProviderCollection.IsSynchronized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderCollection.cs#L27C39-L27C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderCollection.cs#L27C39-L27C44" }, { "DocsId": "P:System.Configuration.Provider.ProviderCollection.SyncRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderCollection.cs#L29C35-L29C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderCollection.cs#L29C35-L29C39" } ], "DocsId": "T:System.Configuration.Provider.ProviderCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderCollection.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.Provider.ProviderException.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderException.cs#L13C9-L13C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderException.cs#L13C9-L13C39" }, { "DocsId": "M:System.Configuration.Provider.ProviderException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderException.cs#L16C15-L17C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderException.cs#L16C15-L17C12" }, { "DocsId": "M:System.Configuration.Provider.ProviderException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderException.cs#L20C15-L21C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderException.cs#L20C15-L21C12" }, { "DocsId": "M:System.Configuration.Provider.ProviderException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderException.cs#L28C15-L30C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderException.cs#L28C15-L30C10" } ], "DocsId": "T:System.Configuration.Provider.ProviderException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Provider/ProviderException.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L26C9-L26C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L26C9-L26C45" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.Init(System.Configuration.Internal.IInternalConfigRoot,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L33C13-L34C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L33C13-L34C10" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.InitForConfiguration(System.String@,System.String@,System.String@,System.Configuration.Internal.IInternalConfigRoot,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L40C13-L42C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L40C13-L42C10" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.IsConfigRecordRequired(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L46C13-L46C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L46C13-L46C60" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.IsInitDelayed(System.Configuration.Internal.IInternalConfigRecord)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L51C13-L51C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L51C13-L51C53" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.RequireCompleteInit(System.Configuration.Internal.IInternalConfigRecord)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L56C13-L57C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L56C13-L57C10" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.IsSecondaryRoot(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L65C13-L65C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L65C13-L65C53" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.GetStreamName(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L70C13-L70C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L70C13-L70C51" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.GetStreamNameForConfigSource(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L75C13-L75C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L75C13-L75C80" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.GetStreamVersion(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L80C13-L80C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L80C13-L80C54" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.OpenStreamForRead(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L85C13-L85C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L85C13-L85C55" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.OpenStreamForRead(System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L90C13-L90C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L90C13-L90C74" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.OpenStreamForWrite(System.String,System.String,System.Object@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L95C13-L95C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L95C13-L95C94" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.OpenStreamForWrite(System.String,System.String,System.Object@,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L101C13-L101C113" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L101C13-L101C113" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.WriteCompleted(System.String,System.Boolean,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L106C13-L107C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L106C13-L107C10" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.WriteCompleted(System.String,System.Boolean,System.Object,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L111C13-L112C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L111C13-L112C10" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.DeleteStream(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L116C13-L117C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L116C13-L117C10" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.IsFile(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L121C13-L121C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L121C13-L121C44" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.StartMonitoringStreamForChanges(System.String,System.Configuration.Internal.StreamChangeCallback)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L128C13-L128C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L128C13-L128C79" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.StopMonitoringStreamForChanges(System.String,System.Configuration.Internal.StreamChangeCallback)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L133C13-L134C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L133C13-L134C10" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.IsAboveApplication(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L144C13-L144C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L144C13-L144C56" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.IsDefinitionAllowed(System.String,System.Configuration.ConfigurationAllowDefinition,System.Configuration.ConfigurationAllowExeDefinition)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L150C13-L150C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L150C13-L150C94" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.VerifyDefinitionAllowed(System.String,System.Configuration.ConfigurationAllowDefinition,System.Configuration.ConfigurationAllowExeDefinition,System.Configuration.Internal.IConfigErrorInfo)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L156C13-L157C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L156C13-L157C10" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.GetConfigPathFromLocationSubPath(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L161C13-L161C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L161C13-L161C87" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.IsLocationApplicable(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L166C13-L166C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L166C13-L166C58" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.PrefetchAll(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L171C13-L171C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L171C13-L171C61" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.PrefetchSection(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L176C13-L176C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L176C13-L176C72" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.CreateDeprecatedConfigContext(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L181C13-L181C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L181C13-L181C67" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.CreateConfigurationContext(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L187C13-L187C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L187C13-L187C81" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.DecryptSection(System.String,System.Configuration.ProtectedConfigurationProvider,System.Configuration.ProtectedConfigurationSection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L193C13-L193C98" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L193C13-L193C98" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.EncryptSection(System.String,System.Configuration.ProtectedConfigurationProvider,System.Configuration.ProtectedConfigurationSection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L199C13-L199C98" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L199C13-L199C98" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.GetConfigType(System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L204C13-L204C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L204C13-L204C63" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.GetConfigTypeName(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L209C13-L209C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L209C13-L209C46" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.RefreshConfigPaths", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L219C13-L220C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L219C13-L220C10" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.IsTrustedConfigPath(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L228C71-L228C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L228C71-L228C75" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.IsFullTrustSectionWithoutAptcaAllowed(System.Configuration.Internal.IInternalConfigRecord)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L230C106-L230C110" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L230C106-L230C110" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.Impersonate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L232C53-L232C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L232C53-L232C74" }, { "DocsId": "M:System.Configuration.Internal.DelegatingConfigHost.GetRestrictedPermissions(System.Configuration.Internal.IInternalConfigRecord,System.Security.PermissionSet@,System.Boolean@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L237C13-L239C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L237C13-L239C10" }, { "DocsId": "P:System.Configuration.Internal.DelegatingConfigHost.Host", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L29C46-L29C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L29C46-L29C50" }, { "DocsId": "P:System.Configuration.Internal.DelegatingConfigHost.SupportsChangeNotifications", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L124C60-L124C92" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L124C60-L124C92" }, { "DocsId": "P:System.Configuration.Internal.DelegatingConfigHost.SupportsRefresh", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L136C48-L136C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L136C48-L136C68" }, { "DocsId": "P:System.Configuration.Internal.DelegatingConfigHost.SupportsPath", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L138C45-L138C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L138C45-L138C62" }, { "DocsId": "P:System.Configuration.Internal.DelegatingConfigHost.SupportsLocation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L140C49-L140C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L140C49-L140C70" }, { "DocsId": "P:System.Configuration.Internal.DelegatingConfigHost.IsRemote", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L212C41-L212C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L212C41-L212C54" }, { "DocsId": "P:System.Configuration.Internal.DelegatingConfigHost.HasLocalConfig", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L222C47-L222C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L222C47-L222C71" }, { "DocsId": "P:System.Configuration.Internal.DelegatingConfigHost.HasRoamingConfig", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L224C49-L224C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L224C49-L224C75" }, { "DocsId": "P:System.Configuration.Internal.DelegatingConfigHost.IsAppConfigHttp", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L226C48-L226C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs#L226C48-L226C73" } ], "DocsId": "T:System.Configuration.Internal.DelegatingConfigHost", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/DelegatingConfigHost.cs" }, { "Members": [ { "DocsId": "P:System.Configuration.Internal.IConfigErrorInfo.Filename", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigErrorInfo.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigErrorInfo.cs" }, { "DocsId": "P:System.Configuration.Internal.IConfigErrorInfo.LineNumber", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigErrorInfo.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigErrorInfo.cs" } ], "DocsId": "T:System.Configuration.Internal.IConfigErrorInfo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigErrorInfo.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigErrorInfo.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.Internal.IConfigSystem.Init(System.Type,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigSystem.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigSystem.cs" }, { "DocsId": "P:System.Configuration.Internal.IConfigSystem.Host", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigSystem.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigSystem.cs" }, { "DocsId": "P:System.Configuration.Internal.IConfigSystem.Root", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigSystem.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigSystem.cs" } ], "DocsId": "T:System.Configuration.Internal.IConfigSystem", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigSystem.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigSystem.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.Internal.IConfigurationManagerHelper.EnsureNetConfigLoaded", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigurationManagerHelper.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigurationManagerHelper.cs" } ], "DocsId": "T:System.Configuration.Internal.IConfigurationManagerHelper", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigurationManagerHelper.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigurationManagerHelper.cs" }, { "Members": [ { "DocsId": "P:System.Configuration.Internal.IConfigurationManagerInternal.SupportsUserConfig", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigurationManagerInternal.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigurationManagerInternal.cs" }, { "DocsId": "P:System.Configuration.Internal.IConfigurationManagerInternal.SetConfigurationSystemInProgress", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigurationManagerInternal.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigurationManagerInternal.cs" }, { "DocsId": "P:System.Configuration.Internal.IConfigurationManagerInternal.MachineConfigPath", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigurationManagerInternal.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigurationManagerInternal.cs" }, { "DocsId": "P:System.Configuration.Internal.IConfigurationManagerInternal.ApplicationConfigUri", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigurationManagerInternal.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigurationManagerInternal.cs" }, { "DocsId": "P:System.Configuration.Internal.IConfigurationManagerInternal.ExeProductName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigurationManagerInternal.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigurationManagerInternal.cs" }, { "DocsId": "P:System.Configuration.Internal.IConfigurationManagerInternal.ExeProductVersion", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigurationManagerInternal.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigurationManagerInternal.cs" }, { "DocsId": "P:System.Configuration.Internal.IConfigurationManagerInternal.ExeRoamingConfigDirectory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigurationManagerInternal.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigurationManagerInternal.cs" }, { "DocsId": "P:System.Configuration.Internal.IConfigurationManagerInternal.ExeRoamingConfigPath", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigurationManagerInternal.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigurationManagerInternal.cs" }, { "DocsId": "P:System.Configuration.Internal.IConfigurationManagerInternal.ExeLocalConfigDirectory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigurationManagerInternal.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigurationManagerInternal.cs" }, { "DocsId": "P:System.Configuration.Internal.IConfigurationManagerInternal.ExeLocalConfigPath", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigurationManagerInternal.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigurationManagerInternal.cs" }, { "DocsId": "P:System.Configuration.Internal.IConfigurationManagerInternal.UserConfigFilename", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigurationManagerInternal.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigurationManagerInternal.cs" } ], "DocsId": "T:System.Configuration.Internal.IConfigurationManagerInternal", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigurationManagerInternal.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IConfigurationManagerInternal.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.Internal.IInternalConfigClientHost.IsExeConfig(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigClientHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigClientHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigClientHost.IsRoamingUserConfig(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigClientHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigClientHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigClientHost.IsLocalUserConfig(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigClientHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigClientHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigClientHost.GetExeConfigPath", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigClientHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigClientHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigClientHost.GetRoamingUserConfigPath", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigClientHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigClientHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigClientHost.GetLocalUserConfigPath", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigClientHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigClientHost.cs" } ], "DocsId": "T:System.Configuration.Internal.IInternalConfigClientHost", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigClientHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigClientHost.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.Internal.IInternalConfigConfigurationFactory.Create(System.Type,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigConfigurationFactory.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigConfigurationFactory.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigConfigurationFactory.NormalizeLocationSubPath(System.String,System.Configuration.Internal.IConfigErrorInfo)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigConfigurationFactory.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigConfigurationFactory.cs" } ], "DocsId": "T:System.Configuration.Internal.IInternalConfigConfigurationFactory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigConfigurationFactory.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigConfigurationFactory.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.Init(System.Configuration.Internal.IInternalConfigRoot,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.InitForConfiguration(System.String@,System.String@,System.String@,System.Configuration.Internal.IInternalConfigRoot,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.IsConfigRecordRequired(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.IsInitDelayed(System.Configuration.Internal.IInternalConfigRecord)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.RequireCompleteInit(System.Configuration.Internal.IInternalConfigRecord)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.IsSecondaryRoot(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.GetStreamName(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.GetStreamNameForConfigSource(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.GetStreamVersion(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.OpenStreamForRead(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.OpenStreamForRead(System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.OpenStreamForWrite(System.String,System.String,System.Object@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.OpenStreamForWrite(System.String,System.String,System.Object@,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.WriteCompleted(System.String,System.Boolean,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.WriteCompleted(System.String,System.Boolean,System.Object,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.DeleteStream(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.IsFile(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.StartMonitoringStreamForChanges(System.String,System.Configuration.Internal.StreamChangeCallback)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.StopMonitoringStreamForChanges(System.String,System.Configuration.Internal.StreamChangeCallback)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.IsAboveApplication(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.GetConfigPathFromLocationSubPath(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.IsLocationApplicable(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.IsDefinitionAllowed(System.String,System.Configuration.ConfigurationAllowDefinition,System.Configuration.ConfigurationAllowExeDefinition)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.VerifyDefinitionAllowed(System.String,System.Configuration.ConfigurationAllowDefinition,System.Configuration.ConfigurationAllowExeDefinition,System.Configuration.Internal.IConfigErrorInfo)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.PrefetchAll(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.PrefetchSection(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.CreateDeprecatedConfigContext(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.CreateConfigurationContext(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.DecryptSection(System.String,System.Configuration.ProtectedConfigurationProvider,System.Configuration.ProtectedConfigurationSection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.EncryptSection(System.String,System.Configuration.ProtectedConfigurationProvider,System.Configuration.ProtectedConfigurationSection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.GetConfigType(System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.GetConfigTypeName(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.IsTrustedConfigPath(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.IsFullTrustSectionWithoutAptcaAllowed(System.Configuration.Internal.IInternalConfigRecord)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.Impersonate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigHost.GetRestrictedPermissions(System.Configuration.Internal.IInternalConfigRecord,System.Security.PermissionSet@,System.Boolean@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "P:System.Configuration.Internal.IInternalConfigHost.SupportsChangeNotifications", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "P:System.Configuration.Internal.IInternalConfigHost.SupportsRefresh", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "P:System.Configuration.Internal.IInternalConfigHost.SupportsPath", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "P:System.Configuration.Internal.IInternalConfigHost.SupportsLocation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "DocsId": "P:System.Configuration.Internal.IInternalConfigHost.IsRemote", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" } ], "DocsId": "T:System.Configuration.Internal.IInternalConfigHost", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigHost.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.Internal.IInternalConfigRecord.ThrowIfInitErrors", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRecord.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRecord.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigRecord.GetSection(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRecord.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRecord.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigRecord.GetLkgSection(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRecord.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRecord.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigRecord.RefreshSection(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRecord.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRecord.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigRecord.Remove", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRecord.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRecord.cs" }, { "DocsId": "P:System.Configuration.Internal.IInternalConfigRecord.ConfigPath", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRecord.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRecord.cs" }, { "DocsId": "P:System.Configuration.Internal.IInternalConfigRecord.StreamName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRecord.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRecord.cs" }, { "DocsId": "P:System.Configuration.Internal.IInternalConfigRecord.HasInitErrors", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRecord.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRecord.cs" } ], "DocsId": "T:System.Configuration.Internal.IInternalConfigRecord", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRecord.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRecord.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.Internal.IInternalConfigRoot.Init(System.Configuration.Internal.IInternalConfigHost,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRoot.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRoot.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigRoot.GetSection(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRoot.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRoot.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigRoot.GetUniqueConfigPath(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRoot.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRoot.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigRoot.GetUniqueConfigRecord(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRoot.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRoot.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigRoot.GetConfigRecord(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRoot.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRoot.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigRoot.RemoveConfig(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRoot.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRoot.cs" }, { "DocsId": "E:System.Configuration.Internal.IInternalConfigRoot.ConfigChanged", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRoot.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRoot.cs" }, { "DocsId": "E:System.Configuration.Internal.IInternalConfigRoot.ConfigRemoved", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRoot.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRoot.cs" }, { "DocsId": "P:System.Configuration.Internal.IInternalConfigRoot.IsDesignTime", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRoot.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRoot.cs" } ], "DocsId": "T:System.Configuration.Internal.IInternalConfigRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRoot.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigRoot.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.Internal.IInternalConfigSettingsFactory.SetConfigurationSystem(System.Configuration.Internal.IInternalConfigSystem,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigSettingsFactory.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigSettingsFactory.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigSettingsFactory.CompleteInit", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigSettingsFactory.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigSettingsFactory.cs" } ], "DocsId": "T:System.Configuration.Internal.IInternalConfigSettingsFactory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigSettingsFactory.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigSettingsFactory.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.Internal.IInternalConfigSystem.GetSection(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigSystem.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigSystem.cs" }, { "DocsId": "M:System.Configuration.Internal.IInternalConfigSystem.RefreshConfig(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigSystem.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigSystem.cs" }, { "DocsId": "P:System.Configuration.Internal.IInternalConfigSystem.SupportsUserConfig", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigSystem.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigSystem.cs" } ], "DocsId": "T:System.Configuration.Internal.IInternalConfigSystem", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigSystem.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/IInternalConfigSystem.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.Internal.InternalConfigEventArgs.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/InternalConfigEventArgs.cs#L8C9-L11C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/InternalConfigEventArgs.cs#L8C9-L11C10" }, { "DocsId": "P:System.Configuration.Internal.InternalConfigEventArgs.ConfigPath", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/InternalConfigEventArgs.cs#L13C36-L13C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/InternalConfigEventArgs.cs#L13C36-L13C40" } ], "DocsId": "T:System.Configuration.Internal.InternalConfigEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/InternalConfigEventArgs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/InternalConfigEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.Internal.InternalConfigEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/InternalConfigEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/InternalConfigEventHandler.cs" }, { "DocsId": "M:System.Configuration.Internal.InternalConfigEventHandler.Invoke(System.Object,System.Configuration.Internal.InternalConfigEventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/InternalConfigEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/InternalConfigEventHandler.cs" }, { "DocsId": "M:System.Configuration.Internal.InternalConfigEventHandler.BeginInvoke(System.Object,System.Configuration.Internal.InternalConfigEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/InternalConfigEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/InternalConfigEventHandler.cs" }, { "DocsId": "M:System.Configuration.Internal.InternalConfigEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/InternalConfigEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/InternalConfigEventHandler.cs" } ], "DocsId": "T:System.Configuration.Internal.InternalConfigEventHandler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/InternalConfigEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/InternalConfigEventHandler.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.Internal.StreamChangeCallback.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/StreamChangeCallback.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/StreamChangeCallback.cs" }, { "DocsId": "M:System.Configuration.Internal.StreamChangeCallback.Invoke(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/StreamChangeCallback.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/StreamChangeCallback.cs" }, { "DocsId": "M:System.Configuration.Internal.StreamChangeCallback.BeginInvoke(System.String,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/StreamChangeCallback.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/StreamChangeCallback.cs" }, { "DocsId": "M:System.Configuration.Internal.StreamChangeCallback.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/StreamChangeCallback.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/StreamChangeCallback.cs" } ], "DocsId": "T:System.Configuration.Internal.StreamChangeCallback", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/StreamChangeCallback.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/StreamChangeCallback.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/System.Data.Odbc.json b/xml/SourceLinkInformation/net-9.0/System.Data.Odbc.json index 2ff3c2f770f..d4d54aa7a07 100644 --- a/xml/SourceLinkInformation/net-9.0/System.Data.Odbc.json +++ b/xml/SourceLinkInformation/net-9.0/System.Data.Odbc.json @@ -1,1335 +1,1334 @@ { "Assembly": "System.Data.Odbc", - "GUID": "AC200B529C494A25A7605B19176C88ADFFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "3ECFDC46F50B4146B976AF03EAE53DCBFFFFFFFF", "Types": [ { "Members": [ { "DocsId": "T:System.Data.Odbc.ODBC32.RETCODE", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/ODBC32.Common.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/ODBC32.Common.cs" } ], "DocsId": "T:System.Data.Odbc.ODBC32", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/Odbc32.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/Odbc32.cs" }, { "Members": [ { "DocsId": "M:System.Data.Odbc.OdbcCommand.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L24C9-L47C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L24C9-L47C10" }, { "DocsId": "M:System.Data.Odbc.OdbcCommand.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L49C47-L54C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L49C47-L54C10" }, { "DocsId": "M:System.Data.Odbc.OdbcCommand.#ctor(System.String,System.Data.Odbc.OdbcConnection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L56C75-L60C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L56C75-L60C10" }, { "DocsId": "M:System.Data.Odbc.OdbcCommand.#ctor(System.String,System.Data.Odbc.OdbcConnection,System.Data.Odbc.OdbcTransaction)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L62C105-L67C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L62C105-L67C10" }, { "DocsId": "M:System.Data.Odbc.OdbcCommand.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L137C13-L149C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L137C13-L149C10" }, { "DocsId": "M:System.Data.Odbc.OdbcCommand.ResetCommandTimeout", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L200C13-L205C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L200C13-L205C10" }, { "DocsId": "M:System.Data.Odbc.OdbcCommand.Cancel", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L438C13-L463C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L438C13-L463C10" }, { "DocsId": "M:System.Data.Odbc.OdbcCommand.System#ICloneable#Clone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L468C13-L484C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L468C13-L484C26" }, { "DocsId": "M:System.Data.Odbc.OdbcCommand.CreateParameter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L531C13-L531C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L531C13-L531C40" }, { "DocsId": "M:System.Data.Odbc.OdbcCommand.CreateDbParameter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L536C13-L536C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L536C13-L536C38" }, { "DocsId": "M:System.Data.Odbc.OdbcCommand.ExecuteDbDataReader(System.Data.CommandBehavior)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L541C13-L541C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L541C13-L541C44" }, { "DocsId": "M:System.Data.Odbc.OdbcCommand.ExecuteNonQuery", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L546C20-L551C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L546C20-L551C10" }, { "DocsId": "M:System.Data.Odbc.OdbcCommand.ExecuteReader", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L555C13-L555C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L555C13-L555C56" }, { "DocsId": "M:System.Data.Odbc.OdbcCommand.ExecuteReader(System.Data.CommandBehavior)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L561C13-L561C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L561C13-L561C75" }, { "DocsId": "M:System.Data.Odbc.OdbcCommand.ExecuteScalar", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L846C13-L855C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L846C13-L855C26" }, { "DocsId": "M:System.Data.Odbc.OdbcCommand.Prepare", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L882C13-L907C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L882C13-L907C10" }, { "DocsId": "P:System.Data.Odbc.OdbcCommand.CommandText", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L166C17-L166C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L166C17-L166C53" }, { "DocsId": "P:System.Data.Odbc.OdbcCommand.CommandTimeout", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L182C17-L182C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L182C17-L182C40" }, { "DocsId": "P:System.Data.Odbc.OdbcCommand.CommandType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L219C17-L220C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L219C17-L220C70" }, { "DocsId": "P:System.Data.Odbc.OdbcCommand.Connection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L245C17-L245C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L245C17-L245C36" }, { "DocsId": "P:System.Data.Odbc.OdbcCommand.DbConnection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L264C17-L264C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L264C17-L264C35" }, { "DocsId": "P:System.Data.Odbc.OdbcCommand.DbParameterCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L276C17-L276C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L276C17-L276C35" }, { "DocsId": "P:System.Data.Odbc.OdbcCommand.DbTransaction", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L284C17-L284C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L284C17-L284C36" }, { "DocsId": "P:System.Data.Odbc.OdbcCommand.DesignTimeVisible", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L306C17-L306C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L306C17-L306C46" }, { "DocsId": "P:System.Data.Odbc.OdbcCommand.Parameters", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L330C17-L334C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L330C17-L334C45" }, { "DocsId": "P:System.Data.Odbc.OdbcCommand.Transaction", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L346C17-L350C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L346C17-L350C37" }, { "DocsId": "P:System.Data.Odbc.OdbcCommand.UpdatedRowSource", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L369C17-L369C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs#L369C17-L369C42" } ], "DocsId": "T:System.Data.Odbc.OdbcCommand", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommand.cs" }, { "Members": [ { "DocsId": "M:System.Data.Odbc.OdbcCommandBuilder.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommandBuilder.cs#L12C39-L15C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommandBuilder.cs#L12C39-L15C10" }, { "DocsId": "M:System.Data.Odbc.OdbcCommandBuilder.#ctor(System.Data.Odbc.OdbcDataAdapter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommandBuilder.cs#L17C63-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommandBuilder.cs#L17C63-L20C10" }, { "DocsId": "M:System.Data.Odbc.OdbcCommandBuilder.GetInsertCommand", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommandBuilder.cs#L41C13-L41C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommandBuilder.cs#L41C13-L41C57" }, { "DocsId": "M:System.Data.Odbc.OdbcCommandBuilder.GetInsertCommand(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommandBuilder.cs#L45C13-L45C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommandBuilder.cs#L45C13-L45C84" }, { "DocsId": "M:System.Data.Odbc.OdbcCommandBuilder.GetUpdateCommand", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommandBuilder.cs#L50C13-L50C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommandBuilder.cs#L50C13-L50C57" }, { "DocsId": "M:System.Data.Odbc.OdbcCommandBuilder.GetUpdateCommand(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommandBuilder.cs#L54C13-L54C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommandBuilder.cs#L54C13-L54C84" }, { "DocsId": "M:System.Data.Odbc.OdbcCommandBuilder.GetDeleteCommand", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommandBuilder.cs#L59C13-L59C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommandBuilder.cs#L59C13-L59C57" }, { "DocsId": "M:System.Data.Odbc.OdbcCommandBuilder.GetDeleteCommand(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommandBuilder.cs#L63C13-L63C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommandBuilder.cs#L63C13-L63C84" }, { "DocsId": "M:System.Data.Odbc.OdbcCommandBuilder.GetParameterName(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommandBuilder.cs#L68C13-L68C103" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommandBuilder.cs#L68C13-L68C103" }, { "DocsId": "M:System.Data.Odbc.OdbcCommandBuilder.GetParameterName(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommandBuilder.cs#L72C13-L72C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommandBuilder.cs#L72C13-L72C34" }, { "DocsId": "M:System.Data.Odbc.OdbcCommandBuilder.GetParameterPlaceholder(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommandBuilder.cs#L77C13-L77C24" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommandBuilder.cs#L77C13-L77C24" }, { "DocsId": "M:System.Data.Odbc.OdbcCommandBuilder.ApplyParameterInfo(System.Data.Common.DbParameter,System.Data.DataRow,System.Data.StatementType,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommandBuilder.cs#L82C13-L99C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommandBuilder.cs#L82C13-L99C10" }, { "DocsId": "M:System.Data.Odbc.OdbcCommandBuilder.DeriveParameters(System.Data.Odbc.OdbcCommand)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommandBuilder.cs#L105C13-L153C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommandBuilder.cs#L105C13-L153C10" }, { "DocsId": "M:System.Data.Odbc.OdbcCommandBuilder.QuoteIdentifier(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommandBuilder.cs#L251C13-L251C122" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommandBuilder.cs#L251C13-L251C122" }, { "DocsId": "M:System.Data.Odbc.OdbcCommandBuilder.QuoteIdentifier(System.String,System.Data.Odbc.OdbcConnection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommandBuilder.cs#L256C13-L287C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommandBuilder.cs#L256C13-L287C43" }, { "DocsId": "M:System.Data.Odbc.OdbcCommandBuilder.SetRowUpdatingHandler(System.Data.Common.DbDataAdapter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommandBuilder.cs#L294C13-L302C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommandBuilder.cs#L294C13-L302C10" }, { "DocsId": "M:System.Data.Odbc.OdbcCommandBuilder.UnquoteIdentifier(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommandBuilder.cs#L306C13-L306C122" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommandBuilder.cs#L306C13-L306C122" }, { "DocsId": "M:System.Data.Odbc.OdbcCommandBuilder.UnquoteIdentifier(System.String,System.Data.Odbc.OdbcConnection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommandBuilder.cs#L311C13-L336C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommandBuilder.cs#L311C13-L336C40" }, { "DocsId": "P:System.Data.Odbc.OdbcCommandBuilder.DataAdapter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommandBuilder.cs#L26C17-L26C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommandBuilder.cs#L26C17-L26C62" } ], "DocsId": "T:System.Data.Odbc.OdbcCommandBuilder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommandBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcCommandBuilder.cs" }, { "Members": [ { "DocsId": "M:System.Data.Odbc.OdbcConnection.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnection.cs#L24C59-L27C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnection.cs#L24C59-L27C10" }, { "DocsId": "M:System.Data.Odbc.OdbcConnection.BeginTransaction", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnection.cs#L288C13-L288C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnection.cs#L288C13-L288C65" }, { "DocsId": "M:System.Data.Odbc.OdbcConnection.BeginTransaction(System.Data.IsolationLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnection.cs#L293C13-L293C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnection.cs#L293C13-L293C80" }, { "DocsId": "M:System.Data.Odbc.OdbcConnection.ChangeDatabase(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnection.cs#L308C13-L309C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnection.cs#L308C13-L309C10" }, { "DocsId": "M:System.Data.Odbc.OdbcConnection.System#ICloneable#Clone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnection.cs#L322C13-L323C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnection.cs#L322C13-L323C26" }, { "DocsId": "M:System.Data.Odbc.OdbcConnection.CreateCommand", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnection.cs#L347C13-L347C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnection.cs#L347C13-L347C56" }, { "DocsId": "M:System.Data.Odbc.OdbcConnection.Close", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnection.cs#L357C13-L379C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnection.cs#L357C13-L379C10" }, { "DocsId": "M:System.Data.Odbc.OdbcConnection.Open", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnection.cs#L564C17-L577C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnection.cs#L564C17-L577C10" }, { "DocsId": "M:System.Data.Odbc.OdbcConnection.ReleaseObjectPool", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnection.cs#L601C13-L602C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnection.cs#L601C13-L602C10" }, { "DocsId": "M:System.Data.Odbc.OdbcConnection.BeginDbTransaction(System.Data.IsolationLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnection.cs#L885C13-L893C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnection.cs#L885C13-L893C32" }, { "DocsId": "M:System.Data.Odbc.OdbcConnection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnection.cs#L17C9-L25C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnection.cs#L17C9-L25C10" }, { "DocsId": "M:System.Data.Odbc.OdbcConnection.CreateDbCommand", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnectionHelper.cs#L155C13-L158C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnectionHelper.cs#L155C13-L158C28" }, { "DocsId": "M:System.Data.Odbc.OdbcConnection.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnectionHelper.cs#L164C13-L171C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnectionHelper.cs#L164C13-L171C10" }, { "DocsId": "M:System.Data.Odbc.OdbcConnection.GetSchema", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnectionHelper.cs#L177C13-L177C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnectionHelper.cs#L177C13-L177C88" }, { "DocsId": "M:System.Data.Odbc.OdbcConnection.GetSchema(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnectionHelper.cs#L182C13-L182C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnectionHelper.cs#L182C13-L182C57" }, { "DocsId": "M:System.Data.Odbc.OdbcConnection.GetSchema(System.String,System.String[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnectionHelper.cs#L189C13-L189C118" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnectionHelper.cs#L189C13-L189C118" }, { "DocsId": "E:System.Data.Odbc.OdbcConnection.InfoMessage", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnection.cs#L252C17-L253C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnection.cs#L252C17-L253C14" }, { "DocsId": "P:System.Data.Odbc.OdbcConnection.ConnectionString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnection.cs#L55C17-L55C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnection.cs#L55C17-L55C47" }, { "DocsId": "P:System.Data.Odbc.OdbcConnection.ConnectionTimeout", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnection.cs#L71C17-L71C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnection.cs#L71C17-L71C43" }, { "DocsId": "P:System.Data.Odbc.OdbcConnection.Database", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnection.cs#L90C17-L99C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnection.cs#L90C17-L99C37" }, { "DocsId": "P:System.Data.Odbc.OdbcConnection.DataSource", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnection.cs#L111C17-L118C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnection.cs#L111C17-L118C37" }, { "DocsId": "P:System.Data.Odbc.OdbcConnection.ServerVersion", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnection.cs#L130C17-L130C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnection.cs#L130C17-L130C54" }, { "DocsId": "P:System.Data.Odbc.OdbcConnection.State", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnection.cs#L142C17-L142C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnection.cs#L142C17-L142C46" }, { "DocsId": "P:System.Data.Odbc.OdbcConnection.DbProviderFactory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnection.cs#L150C17-L150C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnection.cs#L150C17-L150C45" }, { "DocsId": "P:System.Data.Odbc.OdbcConnection.Driver", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnection.cs#L210C17-L215C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnection.cs#L210C17-L215C37" } ], "DocsId": "T:System.Data.Odbc.OdbcConnection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnection.cs" }, { "Members": [ { "DocsId": "M:System.Data.Odbc.OdbcConnectionStringBuilder.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnectionStringbuilder.cs#L39C48-L41C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnectionStringbuilder.cs#L39C48-L41C10" }, { "DocsId": "M:System.Data.Odbc.OdbcConnectionStringBuilder.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnectionStringbuilder.cs#L36C9-L49C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnectionStringbuilder.cs#L36C9-L49C10" }, { "DocsId": "M:System.Data.Odbc.OdbcConnectionStringBuilder.Clear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnectionStringbuilder.cs#L178C13-L184C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnectionStringbuilder.cs#L178C13-L184C10" }, { "DocsId": "M:System.Data.Odbc.OdbcConnectionStringBuilder.ContainsKey(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnectionStringbuilder.cs#L188C13-L189C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnectionStringbuilder.cs#L188C13-L189C81" }, { "DocsId": "M:System.Data.Odbc.OdbcConnectionStringBuilder.Remove(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnectionStringbuilder.cs#L211C13-L226C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnectionStringbuilder.cs#L211C13-L226C26" }, { "DocsId": "M:System.Data.Odbc.OdbcConnectionStringBuilder.TryGetValue(System.String,System.Object@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnectionStringbuilder.cs#L252C13-L259C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnectionStringbuilder.cs#L252C13-L259C57" }, { "DocsId": "P:System.Data.Odbc.OdbcConnectionStringBuilder.Item(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnectionStringbuilder.cs#L56C17-L64C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnectionStringbuilder.cs#L56C17-L64C42" }, { "DocsId": "P:System.Data.Odbc.OdbcConnectionStringBuilder.Driver", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnectionStringbuilder.cs#L101C19-L101C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnectionStringbuilder.cs#L101C19-L101C34" }, { "DocsId": "P:System.Data.Odbc.OdbcConnectionStringBuilder.Dsn", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnectionStringbuilder.cs#L112C19-L112C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnectionStringbuilder.cs#L112C19-L112C31" }, { "DocsId": "P:System.Data.Odbc.OdbcConnectionStringBuilder.Keys", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnectionStringbuilder.cs#L124C17-L172C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnectionStringbuilder.cs#L124C17-L172C70" } ], "DocsId": "T:System.Data.Odbc.OdbcConnectionStringBuilder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnectionStringbuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcConnectionStringbuilder.cs" }, { "Members": [ { "DocsId": "M:System.Data.Odbc.OdbcDataAdapter.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L18C36-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L18C36-L21C10" }, { "DocsId": "M:System.Data.Odbc.OdbcDataAdapter.#ctor(System.Data.Odbc.OdbcCommand)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L23C62-L26C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L23C62-L26C10" }, { "DocsId": "M:System.Data.Odbc.OdbcDataAdapter.#ctor(System.String,System.Data.Odbc.OdbcConnection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L28C95-L31C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L28C95-L31C10" }, { "DocsId": "M:System.Data.Odbc.OdbcDataAdapter.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L33C93-L37C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L33C93-L37C10" }, { "DocsId": "M:System.Data.Odbc.OdbcDataAdapter.System#Data#IDbDataAdapter#get_DeleteCommand", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L54C19-L54C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L54C19-L54C41" }, { "DocsId": "M:System.Data.Odbc.OdbcDataAdapter.System#Data#IDbDataAdapter#set_DeleteCommand(System.Data.IDbCommand)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L55C19-L55C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L55C19-L55C58" }, { "DocsId": "M:System.Data.Odbc.OdbcDataAdapter.System#Data#IDbDataAdapter#get_InsertCommand", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L68C19-L68C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L68C19-L68C41" }, { "DocsId": "M:System.Data.Odbc.OdbcDataAdapter.System#Data#IDbDataAdapter#set_InsertCommand(System.Data.IDbCommand)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L69C19-L69C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L69C19-L69C58" }, { "DocsId": "M:System.Data.Odbc.OdbcDataAdapter.System#Data#IDbDataAdapter#get_SelectCommand", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L82C19-L82C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L82C19-L82C41" }, { "DocsId": "M:System.Data.Odbc.OdbcDataAdapter.System#Data#IDbDataAdapter#set_SelectCommand(System.Data.IDbCommand)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L83C19-L83C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L83C19-L83C58" }, { "DocsId": "M:System.Data.Odbc.OdbcDataAdapter.System#Data#IDbDataAdapter#get_UpdateCommand", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L96C19-L96C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L96C19-L96C41" }, { "DocsId": "M:System.Data.Odbc.OdbcDataAdapter.System#Data#IDbDataAdapter#set_UpdateCommand(System.Data.IDbCommand)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L97C19-L97C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L97C19-L97C58" }, { "DocsId": "M:System.Data.Odbc.OdbcDataAdapter.System#ICloneable#Clone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L140C13-L140C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L140C13-L140C46" }, { "DocsId": "M:System.Data.Odbc.OdbcDataAdapter.CreateRowUpdatedEvent(System.Data.DataRow,System.Data.IDbCommand,System.Data.StatementType,System.Data.Common.DataTableMapping)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L145C13-L145C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L145C13-L145C95" }, { "DocsId": "M:System.Data.Odbc.OdbcDataAdapter.CreateRowUpdatingEvent(System.Data.DataRow,System.Data.IDbCommand,System.Data.StatementType,System.Data.Common.DataTableMapping)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L150C13-L150C96" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L150C13-L150C96" }, { "DocsId": "M:System.Data.Odbc.OdbcDataAdapter.OnRowUpdated(System.Data.Common.RowUpdatedEventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L155C13-L161C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L155C13-L161C10" }, { "DocsId": "M:System.Data.Odbc.OdbcDataAdapter.OnRowUpdating(System.Data.Common.RowUpdatingEventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L165C13-L171C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L165C13-L171C10" }, { "DocsId": "E:System.Data.Odbc.OdbcDataAdapter.RowUpdated", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L104C17-L105C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L104C17-L105C14" }, { "DocsId": "E:System.Data.Odbc.OdbcDataAdapter.RowUpdating", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L116C17-L130C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L116C17-L130C14" }, { "DocsId": "P:System.Data.Odbc.OdbcDataAdapter.DeleteCommand", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L48C19-L48C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L48C19-L48C41" }, { "DocsId": "P:System.Data.Odbc.OdbcDataAdapter.System#Data#IDbDataAdapter#DeleteCommand", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L54C19-L54C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L54C19-L54C41" }, { "DocsId": "P:System.Data.Odbc.OdbcDataAdapter.InsertCommand", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L62C19-L62C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L62C19-L62C41" }, { "DocsId": "P:System.Data.Odbc.OdbcDataAdapter.System#Data#IDbDataAdapter#InsertCommand", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L68C19-L68C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L68C19-L68C41" }, { "DocsId": "P:System.Data.Odbc.OdbcDataAdapter.SelectCommand", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L76C19-L76C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L76C19-L76C41" }, { "DocsId": "P:System.Data.Odbc.OdbcDataAdapter.System#Data#IDbDataAdapter#SelectCommand", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L82C19-L82C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L82C19-L82C41" }, { "DocsId": "P:System.Data.Odbc.OdbcDataAdapter.UpdateCommand", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L90C19-L90C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L90C19-L90C41" }, { "DocsId": "P:System.Data.Odbc.OdbcDataAdapter.System#Data#IDbDataAdapter#UpdateCommand", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L96C19-L96C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs#L96C19-L96C41" } ], "DocsId": "T:System.Data.Odbc.OdbcDataAdapter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataAdapter.cs" }, { "Members": [ { "DocsId": "M:System.Data.Odbc.OdbcDataReader.Close", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L314C13-L315C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L314C13-L315C10" }, { "DocsId": "M:System.Data.Odbc.OdbcDataReader.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L392C13-L398C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L392C13-L398C10" }, { "DocsId": "M:System.Data.Odbc.OdbcDataReader.GetDataTypeName(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L402C13-L407C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L402C13-L407C42" }, { "DocsId": "M:System.Data.Odbc.OdbcDataReader.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L412C13-L412C108" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L412C13-L412C108" }, { "DocsId": "M:System.Data.Odbc.OdbcDataReader.GetFieldType(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L417C13-L422C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L417C13-L422C42" }, { "DocsId": "M:System.Data.Odbc.OdbcDataReader.GetName(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L427C13-L432C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L427C13-L432C42" }, { "DocsId": "M:System.Data.Odbc.OdbcDataReader.GetOrdinal(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L437C13-L445C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L437C13-L445C55" }, { "DocsId": "M:System.Data.Odbc.OdbcDataReader.GetValue(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L556C13-L564C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L556C13-L564C42" }, { "DocsId": "M:System.Data.Odbc.OdbcDataReader.GetValues(System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L569C13-L578C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L569C13-L578C42" }, { "DocsId": "M:System.Data.Odbc.OdbcDataReader.IsDBNull(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L628C13-L657C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L628C13-L657C66" }, { "DocsId": "M:System.Data.Odbc.OdbcDataReader.GetByte(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L663C13-L663C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L663C13-L663C45" }, { "DocsId": "M:System.Data.Odbc.OdbcDataReader.GetChar(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L684C13-L684C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L684C13-L684C45" }, { "DocsId": "M:System.Data.Odbc.OdbcDataReader.GetInt16(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L704C13-L704C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L704C13-L704C47" }, { "DocsId": "M:System.Data.Odbc.OdbcDataReader.GetInt32(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L724C13-L724C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L724C13-L724C45" }, { "DocsId": "M:System.Data.Odbc.OdbcDataReader.GetInt64(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L744C13-L744C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L744C13-L744C46" }, { "DocsId": "M:System.Data.Odbc.OdbcDataReader.GetBoolean(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L772C13-L772C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L772C13-L772C48" }, { "DocsId": "M:System.Data.Odbc.OdbcDataReader.GetFloat(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L792C13-L792C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L792C13-L792C47" }, { "DocsId": "M:System.Data.Odbc.OdbcDataReader.GetDate(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L812C13-L812C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L812C13-L812C49" }, { "DocsId": "M:System.Data.Odbc.OdbcDataReader.GetDateTime(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L833C13-L833C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L833C13-L833C53" }, { "DocsId": "M:System.Data.Odbc.OdbcDataReader.GetDecimal(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L854C13-L854C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L854C13-L854C51" }, { "DocsId": "M:System.Data.Odbc.OdbcDataReader.GetDouble(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L892C13-L892C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L892C13-L892C49" }, { "DocsId": "M:System.Data.Odbc.OdbcDataReader.GetGuid(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L912C13-L912C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L912C13-L912C45" }, { "DocsId": "M:System.Data.Odbc.OdbcDataReader.GetString(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L933C13-L933C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L933C13-L933C49" }, { "DocsId": "M:System.Data.Odbc.OdbcDataReader.GetTime(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L1040C13-L1040C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L1040C13-L1040C49" }, { "DocsId": "M:System.Data.Odbc.OdbcDataReader.GetBytes(System.Int32,System.Int64,System.Byte[],System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L1073C13-L1073C105" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L1073C13-L1073C105" }, { "DocsId": "M:System.Data.Odbc.OdbcDataReader.GetChars(System.Int32,System.Int64,System.Char[],System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L1077C13-L1077C104" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L1077C13-L1077C104" }, { "DocsId": "M:System.Data.Odbc.OdbcDataReader.Read", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L1806C13-L1878C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L1806C13-L1878C28" }, { "DocsId": "M:System.Data.Odbc.OdbcDataReader.NextResult", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L1903C13-L1903C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L1903C13-L1903C45" }, { "DocsId": "M:System.Data.Odbc.OdbcDataReader.GetSchemaTable", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L2224C13-L2303C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L2224C13-L2303C32" }, { "DocsId": "P:System.Data.Odbc.OdbcDataReader.Depth", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L155C17-L159C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L155C17-L159C26" }, { "DocsId": "P:System.Data.Odbc.OdbcDataReader.FieldCount", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L167C17-L183C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L167C17-L183C71" }, { "DocsId": "P:System.Data.Odbc.OdbcDataReader.HasRows", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L197C17-L206C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L197C17-L206C60" }, { "DocsId": "P:System.Data.Odbc.OdbcDataReader.IsClosed", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L253C17-L253C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L253C17-L253C34" }, { "DocsId": "P:System.Data.Odbc.OdbcDataReader.RecordsAffected", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L292C17-L292C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L292C17-L292C40" }, { "DocsId": "P:System.Data.Odbc.OdbcDataReader.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L300C17-L300C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L300C17-L300C36" }, { "DocsId": "P:System.Data.Odbc.OdbcDataReader.Item(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L308C17-L308C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs#L308C17-L308C52" } ], "DocsId": "T:System.Data.Odbc.OdbcDataReader", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcDataReader.cs" }, { "Members": [ { "DocsId": "M:System.Data.Odbc.OdbcError.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcError.cs#L63C13-L63C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcError.cs#L63C13-L63C28" }, { "DocsId": "P:System.Data.Odbc.OdbcError.Message", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcError.cs#L28C17-L28C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcError.cs#L28C17-L28C49" }, { "DocsId": "P:System.Data.Odbc.OdbcError.SQLState", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcError.cs#L36C17-L36C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcError.cs#L36C17-L36C31" }, { "DocsId": "P:System.Data.Odbc.OdbcError.NativeError", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcError.cs#L44C17-L44C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcError.cs#L44C17-L44C37" }, { "DocsId": "P:System.Data.Odbc.OdbcError.Source", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcError.cs#L52C17-L52C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcError.cs#L52C17-L52C48" } ], "DocsId": "T:System.Data.Odbc.OdbcError", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcError.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcError.cs" }, { "Members": [ { "DocsId": "M:System.Data.Odbc.OdbcErrorCollection.System#Collections#ICollection#get_SyncRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcErrorCollection.cs#L20C19-L20C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcErrorCollection.cs#L20C19-L20C31" }, { "DocsId": "M:System.Data.Odbc.OdbcErrorCollection.System#Collections#ICollection#get_IsSynchronized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcErrorCollection.cs#L25C19-L25C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcErrorCollection.cs#L25C19-L25C32" }, { "DocsId": "M:System.Data.Odbc.OdbcErrorCollection.CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcErrorCollection.cs#L51C13-L52C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcErrorCollection.cs#L51C13-L52C10" }, { "DocsId": "M:System.Data.Odbc.OdbcErrorCollection.CopyTo(System.Data.Odbc.OdbcError[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcErrorCollection.cs#L56C13-L57C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcErrorCollection.cs#L56C13-L57C10" }, { "DocsId": "M:System.Data.Odbc.OdbcErrorCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcErrorCollection.cs#L61C13-L61C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcErrorCollection.cs#L61C13-L61C43" }, { "DocsId": "P:System.Data.Odbc.OdbcErrorCollection.System#Collections#ICollection#SyncRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcErrorCollection.cs#L20C19-L20C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcErrorCollection.cs#L20C19-L20C31" }, { "DocsId": "P:System.Data.Odbc.OdbcErrorCollection.System#Collections#ICollection#IsSynchronized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcErrorCollection.cs#L25C19-L25C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcErrorCollection.cs#L25C19-L25C32" }, { "DocsId": "P:System.Data.Odbc.OdbcErrorCollection.Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcErrorCollection.cs#L32C17-L32C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcErrorCollection.cs#L32C17-L32C37" }, { "DocsId": "P:System.Data.Odbc.OdbcErrorCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcErrorCollection.cs#L40C17-L40C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcErrorCollection.cs#L40C17-L40C46" } ], "DocsId": "T:System.Data.Odbc.OdbcErrorCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcErrorCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcErrorCollection.cs" }, { "Members": [ { "DocsId": "M:System.Data.Odbc.OdbcException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcException.cs#L62C13-L65C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcException.cs#L62C13-L65C10" }, { "DocsId": "P:System.Data.Odbc.OdbcException.Errors", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcException.cs#L52C17-L52C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcException.cs#L52C17-L52C36" }, { "DocsId": "P:System.Data.Odbc.OdbcException.Source", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcException.cs#L72C17-L77C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcException.cs#L72C17-L77C27" } ], "DocsId": "T:System.Data.Odbc.OdbcException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcException.cs" }, { "Members": [ { "DocsId": "M:System.Data.Odbc.OdbcFactory.CreateCommand", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcFactory.cs#L18C13-L18C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcFactory.cs#L18C13-L18C38" }, { "DocsId": "M:System.Data.Odbc.OdbcFactory.CreateCommandBuilder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcFactory.cs#L23C13-L23C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcFactory.cs#L23C13-L23C45" }, { "DocsId": "M:System.Data.Odbc.OdbcFactory.CreateConnection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcFactory.cs#L28C13-L28C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcFactory.cs#L28C13-L28C41" }, { "DocsId": "M:System.Data.Odbc.OdbcFactory.CreateConnectionStringBuilder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcFactory.cs#L33C13-L33C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcFactory.cs#L33C13-L33C54" }, { "DocsId": "M:System.Data.Odbc.OdbcFactory.CreateDataAdapter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcFactory.cs#L38C13-L38C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcFactory.cs#L38C13-L38C42" }, { "DocsId": "M:System.Data.Odbc.OdbcFactory.CreateParameter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcFactory.cs#L43C13-L43C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcFactory.cs#L43C13-L43C40" }, { "DocsId": "F:System.Data.Odbc.OdbcFactory.Instance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcFactory.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcFactory.cs" } ], "DocsId": "T:System.Data.Odbc.OdbcFactory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcFactory.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcFactory.cs" }, { "Members": [ { "DocsId": "M:System.Data.Odbc.OdbcInfoMessageEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcInfoMessageEvent.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcInfoMessageEvent.cs" }, { "DocsId": "M:System.Data.Odbc.OdbcInfoMessageEventHandler.Invoke(System.Object,System.Data.Odbc.OdbcInfoMessageEventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcInfoMessageEvent.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcInfoMessageEvent.cs" }, { "DocsId": "M:System.Data.Odbc.OdbcInfoMessageEventHandler.BeginInvoke(System.Object,System.Data.Odbc.OdbcInfoMessageEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcInfoMessageEvent.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcInfoMessageEvent.cs" }, { "DocsId": "M:System.Data.Odbc.OdbcInfoMessageEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcInfoMessageEvent.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcInfoMessageEvent.cs" } ], "DocsId": "T:System.Data.Odbc.OdbcInfoMessageEventHandler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcInfoMessageEvent.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcInfoMessageEvent.cs" }, { "Members": [ { "DocsId": "M:System.Data.Odbc.OdbcInfoMessageEventArgs.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcInfoMessageEvent.cs#L41C13-L41C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcInfoMessageEvent.cs#L41C13-L41C28" }, { "DocsId": "P:System.Data.Odbc.OdbcInfoMessageEventArgs.Errors", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcInfoMessageEvent.cs#L21C19-L21C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcInfoMessageEvent.cs#L21C19-L21C34" }, { "DocsId": "P:System.Data.Odbc.OdbcInfoMessageEventArgs.Message", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcInfoMessageEvent.cs#L28C17-L34C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcInfoMessageEvent.cs#L28C17-L34C43" } ], "DocsId": "T:System.Data.Odbc.OdbcInfoMessageEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcInfoMessageEvent.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcInfoMessageEvent.cs" }, { "Members": [ { "DocsId": "F:System.Data.Odbc.OdbcMetaDataCollectionNames.Columns", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcMetaDataCollectionNames.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcMetaDataCollectionNames.cs" }, { "DocsId": "F:System.Data.Odbc.OdbcMetaDataCollectionNames.Indexes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcMetaDataCollectionNames.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcMetaDataCollectionNames.cs" }, { "DocsId": "F:System.Data.Odbc.OdbcMetaDataCollectionNames.Procedures", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcMetaDataCollectionNames.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcMetaDataCollectionNames.cs" }, { "DocsId": "F:System.Data.Odbc.OdbcMetaDataCollectionNames.ProcedureColumns", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcMetaDataCollectionNames.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcMetaDataCollectionNames.cs" }, { "DocsId": "F:System.Data.Odbc.OdbcMetaDataCollectionNames.ProcedureParameters", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcMetaDataCollectionNames.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcMetaDataCollectionNames.cs" }, { "DocsId": "F:System.Data.Odbc.OdbcMetaDataCollectionNames.Tables", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcMetaDataCollectionNames.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcMetaDataCollectionNames.cs" }, { "DocsId": "F:System.Data.Odbc.OdbcMetaDataCollectionNames.Views", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcMetaDataCollectionNames.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcMetaDataCollectionNames.cs" } ], "DocsId": "T:System.Data.Odbc.OdbcMetaDataCollectionNames", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcMetaDataCollectionNames.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcMetaDataCollectionNames.cs" }, { "Members": [ { "DocsId": "F:System.Data.Odbc.OdbcMetaDataColumnNames.BooleanFalseLiteral", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcMetaDataColumnNames.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcMetaDataColumnNames.cs" }, { "DocsId": "F:System.Data.Odbc.OdbcMetaDataColumnNames.BooleanTrueLiteral", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcMetaDataColumnNames.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcMetaDataColumnNames.cs" }, { "DocsId": "F:System.Data.Odbc.OdbcMetaDataColumnNames.SQLType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcMetaDataColumnNames.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcMetaDataColumnNames.cs" } ], "DocsId": "T:System.Data.Odbc.OdbcMetaDataColumnNames", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcMetaDataColumnNames.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcMetaDataColumnNames.cs" }, { "Members": [ { "DocsId": "M:System.Data.Odbc.OdbcParameter.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameter.cs#L71C34-L74C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameter.cs#L71C34-L74C10" }, { "DocsId": "M:System.Data.Odbc.OdbcParameter.#ctor(System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameter.cs#L76C61-L80C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameter.cs#L76C61-L80C10" }, { "DocsId": "M:System.Data.Odbc.OdbcParameter.#ctor(System.String,System.Data.Odbc.OdbcType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameter.cs#L82C61-L86C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameter.cs#L82C61-L86C10" }, { "DocsId": "M:System.Data.Odbc.OdbcParameter.#ctor(System.String,System.Data.Odbc.OdbcType,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameter.cs#L88C71-L93C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameter.cs#L88C71-L93C10" }, { "DocsId": "M:System.Data.Odbc.OdbcParameter.#ctor(System.String,System.Data.Odbc.OdbcType,System.Int32,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameter.cs#L95C93-L101C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameter.cs#L95C93-L101C10" }, { "DocsId": "M:System.Data.Odbc.OdbcParameter.#ctor(System.String,System.Data.Odbc.OdbcType,System.Int32,System.Data.ParameterDirection,System.Boolean,System.Byte,System.Byte,System.String,System.Data.DataRowVersion,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameter.cs#L115C34-L127C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameter.cs#L115C34-L127C10" }, { "DocsId": "M:System.Data.Odbc.OdbcParameter.#ctor(System.String,System.Data.Odbc.OdbcType,System.Int32,System.Data.ParameterDirection,System.Byte,System.Byte,System.String,System.Data.DataRowVersion,System.Boolean,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameter.cs#L135C51-L147C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameter.cs#L135C51-L147C10" }, { "DocsId": "M:System.Data.Odbc.OdbcParameter.ResetDbType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameter.cs#L172C13-L173C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameter.cs#L172C13-L173C10" }, { "DocsId": "M:System.Data.Odbc.OdbcParameter.ResetOdbcType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameter.cs#L202C13-L205C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameter.cs#L202C13-L205C10" }, { "DocsId": "M:System.Data.Odbc.OdbcParameter.System#ICloneable#Clone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameter.cs#L584C13-L584C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameter.cs#L584C13-L584C44" }, { "DocsId": "M:System.Data.Odbc.OdbcParameter.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterHelper.cs#L215C13-L215C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterHelper.cs#L215C13-L215C34" }, { "DocsId": "P:System.Data.Odbc.OdbcParameter.DbType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameter.cs#L153C17-L157C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameter.cs#L153C17-L157C50" }, { "DocsId": "P:System.Data.Odbc.OdbcParameter.OdbcType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameter.cs#L183C17-L187C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameter.cs#L183C17-L187C52" }, { "DocsId": "P:System.Data.Odbc.OdbcParameter.ParameterName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameter.cs#L228C17-L228C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameter.cs#L228C17-L228C55" }, { "DocsId": "P:System.Data.Odbc.OdbcParameter.Precision", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameter.cs#L244C17-L244C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameter.cs#L244C17-L244C42" }, { "DocsId": "P:System.Data.Odbc.OdbcParameter.Scale", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameter.cs#L280C17-L280C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameter.cs#L280C17-L280C38" }, { "DocsId": "P:System.Data.Odbc.OdbcParameter.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameter.cs#L1117C17-L1117C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameter.cs#L1117C17-L1117C31" }, { "DocsId": "P:System.Data.Odbc.OdbcParameter.Direction", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterHelper.cs#L54C17-L55C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterHelper.cs#L54C17-L55C82" }, { "DocsId": "P:System.Data.Odbc.OdbcParameter.IsNullable", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterHelper.cs#L81C17-L81C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterHelper.cs#L81C17-L81C36" }, { "DocsId": "P:System.Data.Odbc.OdbcParameter.Offset", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterHelper.cs#L94C17-L94C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterHelper.cs#L94C17-L94C32" }, { "DocsId": "P:System.Data.Odbc.OdbcParameter.Size", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterHelper.cs#L110C17-L115C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterHelper.cs#L110C17-L115C29" }, { "DocsId": "P:System.Data.Odbc.OdbcParameter.SourceColumn", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterHelper.cs#L142C17-L142C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterHelper.cs#L142C17-L142C54" }, { "DocsId": "P:System.Data.Odbc.OdbcParameter.SourceColumnNullMapping", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterHelper.cs#L154C17-L154C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterHelper.cs#L154C17-L154C49" }, { "DocsId": "P:System.Data.Odbc.OdbcParameter.SourceVersion", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterHelper.cs#L166C17-L167C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterHelper.cs#L166C17-L167C88" } ], "DocsId": "T:System.Data.Odbc.OdbcParameter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameter.cs" }, { "Members": [ { "DocsId": "M:System.Data.Odbc.OdbcParameterCollection.Add(System.Data.Odbc.OdbcParameter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollection.cs#L62C13-L63C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollection.cs#L62C13-L63C26" }, { "DocsId": "M:System.Data.Odbc.OdbcParameterCollection.Add(System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollection.cs#L71C13-L71C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollection.cs#L71C13-L71C65" }, { "DocsId": "M:System.Data.Odbc.OdbcParameterCollection.AddWithValue(System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollection.cs#L77C13-L77C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollection.cs#L77C13-L77C65" }, { "DocsId": "M:System.Data.Odbc.OdbcParameterCollection.Add(System.String,System.Data.Odbc.OdbcType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollection.cs#L82C13-L82C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollection.cs#L82C13-L82C68" }, { "DocsId": "M:System.Data.Odbc.OdbcParameterCollection.Add(System.String,System.Data.Odbc.OdbcType,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollection.cs#L87C13-L87C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollection.cs#L87C13-L87C74" }, { "DocsId": "M:System.Data.Odbc.OdbcParameterCollection.Add(System.String,System.Data.Odbc.OdbcType,System.Int32,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollection.cs#L92C13-L92C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollection.cs#L92C13-L92C88" }, { "DocsId": "M:System.Data.Odbc.OdbcParameterCollection.AddRange(System.Data.Odbc.OdbcParameter[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollection.cs#L98C13-L99C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollection.cs#L98C13-L99C10" }, { "DocsId": "M:System.Data.Odbc.OdbcParameterCollection.Contains(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollection.cs#L142C13-L142C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollection.cs#L142C13-L142C43" }, { "DocsId": "M:System.Data.Odbc.OdbcParameterCollection.Contains(System.Data.Odbc.OdbcParameter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollection.cs#L147C13-L147C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollection.cs#L147C13-L147C43" }, { "DocsId": "M:System.Data.Odbc.OdbcParameterCollection.CopyTo(System.Data.Odbc.OdbcParameter[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollection.cs#L152C13-L153C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollection.cs#L152C13-L153C10" }, { "DocsId": "M:System.Data.Odbc.OdbcParameterCollection.IndexOf(System.Data.Odbc.OdbcParameter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollection.cs#L175C13-L175C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollection.cs#L175C13-L175C43" }, { "DocsId": "M:System.Data.Odbc.OdbcParameterCollection.Insert(System.Int32,System.Data.Odbc.OdbcParameter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollection.cs#L180C13-L181C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollection.cs#L180C13-L181C10" }, { "DocsId": "M:System.Data.Odbc.OdbcParameterCollection.Remove(System.Data.Odbc.OdbcParameter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollection.cs#L185C13-L186C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollection.cs#L185C13-L186C10" }, { "DocsId": "M:System.Data.Odbc.OdbcParameterCollection.Add(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollectionHelper.cs#L72C13-L76C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollectionHelper.cs#L72C13-L76C30" }, { "DocsId": "M:System.Data.Odbc.OdbcParameterCollection.AddRange(System.Array)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollectionHelper.cs#L81C13-L95C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollectionHelper.cs#L81C13-L95C10" }, { "DocsId": "M:System.Data.Odbc.OdbcParameterCollection.Clear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollectionHelper.cs#L109C13-L120C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollectionHelper.cs#L109C13-L120C10" }, { "DocsId": "M:System.Data.Odbc.OdbcParameterCollection.Contains(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollectionHelper.cs#L124C13-L124C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollectionHelper.cs#L124C13-L124C43" }, { "DocsId": "M:System.Data.Odbc.OdbcParameterCollection.CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollectionHelper.cs#L129C13-L130C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollectionHelper.cs#L129C13-L130C10" }, { "DocsId": "M:System.Data.Odbc.OdbcParameterCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollectionHelper.cs#L134C13-L134C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollectionHelper.cs#L134C13-L134C80" }, { "DocsId": "M:System.Data.Odbc.OdbcParameterCollection.GetParameter(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollectionHelper.cs#L139C13-L140C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollectionHelper.cs#L139C13-L140C37" }, { "DocsId": "M:System.Data.Odbc.OdbcParameterCollection.GetParameter(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollectionHelper.cs#L145C13-L150C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollectionHelper.cs#L145C13-L150C37" }, { "DocsId": "M:System.Data.Odbc.OdbcParameterCollection.IndexOf(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollectionHelper.cs#L183C13-L183C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollectionHelper.cs#L183C13-L183C54" }, { "DocsId": "M:System.Data.Odbc.OdbcParameterCollection.IndexOf(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollectionHelper.cs#L188C13-L207C23" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollectionHelper.cs#L188C13-L207C23" }, { "DocsId": "M:System.Data.Odbc.OdbcParameterCollection.Insert(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollectionHelper.cs#L212C13-L216C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollectionHelper.cs#L212C13-L216C10" }, { "DocsId": "M:System.Data.Odbc.OdbcParameterCollection.Remove(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollectionHelper.cs#L228C13-L239C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollectionHelper.cs#L228C13-L239C10" }, { "DocsId": "M:System.Data.Odbc.OdbcParameterCollection.RemoveAt(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollectionHelper.cs#L243C13-L246C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollectionHelper.cs#L243C13-L246C10" }, { "DocsId": "M:System.Data.Odbc.OdbcParameterCollection.RemoveAt(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollectionHelper.cs#L250C13-L253C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollectionHelper.cs#L250C13-L253C10" }, { "DocsId": "M:System.Data.Odbc.OdbcParameterCollection.SetParameter(System.Int32,System.Data.Common.DbParameter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollectionHelper.cs#L277C13-L280C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollectionHelper.cs#L277C13-L280C10" }, { "DocsId": "M:System.Data.Odbc.OdbcParameterCollection.SetParameter(System.String,System.Data.Common.DbParameter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollectionHelper.cs#L284C13-L291C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollectionHelper.cs#L284C13-L291C10" }, { "DocsId": "P:System.Data.Odbc.OdbcParameterCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollection.cs#L35C17-L35C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollection.cs#L35C17-L35C59" }, { "DocsId": "P:System.Data.Odbc.OdbcParameterCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollection.cs#L51C17-L51C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollection.cs#L51C17-L51C67" }, { "DocsId": "P:System.Data.Odbc.OdbcParameterCollection.Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollectionHelper.cs#L19C17-L19C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollectionHelper.cs#L19C17-L19C62" }, { "DocsId": "P:System.Data.Odbc.OdbcParameterCollection.IsFixedSize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollectionHelper.cs#L42C17-L42C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollectionHelper.cs#L42C17-L42C74" }, { "DocsId": "P:System.Data.Odbc.OdbcParameterCollection.IsReadOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollectionHelper.cs#L50C17-L50C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollectionHelper.cs#L50C17-L50C73" }, { "DocsId": "P:System.Data.Odbc.OdbcParameterCollection.IsSynchronized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollectionHelper.cs#L58C17-L58C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollectionHelper.cs#L58C17-L58C83" }, { "DocsId": "P:System.Data.Odbc.OdbcParameterCollection.SyncRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollectionHelper.cs#L66C17-L66C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollectionHelper.cs#L66C17-L66C77" } ], "DocsId": "T:System.Data.Odbc.OdbcParameterCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcParameterCollection.cs" }, { "Members": [ { "DocsId": "M:System.Data.Odbc.OdbcRowUpdatingEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcRowUpdatingEvent.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcRowUpdatingEvent.cs" }, { "DocsId": "M:System.Data.Odbc.OdbcRowUpdatingEventHandler.Invoke(System.Object,System.Data.Odbc.OdbcRowUpdatingEventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcRowUpdatingEvent.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcRowUpdatingEvent.cs" }, { "DocsId": "M:System.Data.Odbc.OdbcRowUpdatingEventHandler.BeginInvoke(System.Object,System.Data.Odbc.OdbcRowUpdatingEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcRowUpdatingEvent.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcRowUpdatingEvent.cs" }, { "DocsId": "M:System.Data.Odbc.OdbcRowUpdatingEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcRowUpdatingEvent.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcRowUpdatingEvent.cs" } ], "DocsId": "T:System.Data.Odbc.OdbcRowUpdatingEventHandler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcRowUpdatingEvent.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcRowUpdatingEvent.cs" }, { "Members": [ { "DocsId": "M:System.Data.Odbc.OdbcRowUpdatedEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcRowUpdatingEvent.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcRowUpdatingEvent.cs" }, { "DocsId": "M:System.Data.Odbc.OdbcRowUpdatedEventHandler.Invoke(System.Object,System.Data.Odbc.OdbcRowUpdatedEventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcRowUpdatingEvent.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcRowUpdatingEvent.cs" }, { "DocsId": "M:System.Data.Odbc.OdbcRowUpdatedEventHandler.BeginInvoke(System.Object,System.Data.Odbc.OdbcRowUpdatedEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcRowUpdatingEvent.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcRowUpdatingEvent.cs" }, { "DocsId": "M:System.Data.Odbc.OdbcRowUpdatedEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcRowUpdatingEvent.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcRowUpdatingEvent.cs" } ], "DocsId": "T:System.Data.Odbc.OdbcRowUpdatedEventHandler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcRowUpdatingEvent.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcRowUpdatingEvent.cs" }, { "Members": [ { "DocsId": "M:System.Data.Odbc.OdbcRowUpdatingEventArgs.#ctor(System.Data.DataRow,System.Data.IDbCommand,System.Data.StatementType,System.Data.Common.DataTableMapping)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcRowUpdatingEvent.cs#L23C11-L25C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcRowUpdatingEvent.cs#L23C11-L25C10" }, { "DocsId": "P:System.Data.Odbc.OdbcRowUpdatingEventArgs.Command", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcRowUpdatingEvent.cs#L29C19-L29C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcRowUpdatingEvent.cs#L29C19-L29C56" }, { "DocsId": "P:System.Data.Odbc.OdbcRowUpdatingEventArgs.BaseCommand", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcRowUpdatingEvent.cs#L38C19-L38C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcRowUpdatingEvent.cs#L38C19-L38C43" } ], "DocsId": "T:System.Data.Odbc.OdbcRowUpdatingEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcRowUpdatingEvent.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcRowUpdatingEvent.cs" }, { "Members": [ { "DocsId": "M:System.Data.Odbc.OdbcRowUpdatedEventArgs.#ctor(System.Data.DataRow,System.Data.IDbCommand,System.Data.StatementType,System.Data.Common.DataTableMapping)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcRowUpdatingEvent.cs#L50C11-L52C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcRowUpdatingEvent.cs#L50C11-L52C10" }, { "DocsId": "P:System.Data.Odbc.OdbcRowUpdatedEventArgs.Command", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcRowUpdatingEvent.cs#L56C19-L56C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcRowUpdatingEvent.cs#L56C19-L56C53" } ], "DocsId": "T:System.Data.Odbc.OdbcRowUpdatedEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcRowUpdatingEvent.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcRowUpdatingEvent.cs" }, { "Members": [ { "DocsId": "M:System.Data.Odbc.OdbcTransaction.Commit", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcTransaction.cs#L70C13-L97C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcTransaction.cs#L70C13-L97C10" }, { "DocsId": "M:System.Data.Odbc.OdbcTransaction.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcTransaction.cs#L101C13-L140C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcTransaction.cs#L101C13-L140C10" }, { "DocsId": "M:System.Data.Odbc.OdbcTransaction.Rollback", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcTransaction.cs#L144C13-L168C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcTransaction.cs#L144C13-L168C10" }, { "DocsId": "P:System.Data.Odbc.OdbcTransaction.Connection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcTransaction.cs#L25C17-L25C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcTransaction.cs#L25C17-L25C36" }, { "DocsId": "P:System.Data.Odbc.OdbcTransaction.DbConnection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcTransaction.cs#L33C17-L33C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcTransaction.cs#L33C17-L33C35" }, { "DocsId": "P:System.Data.Odbc.OdbcTransaction.IsolationLevel", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcTransaction.cs#L41C17-L64C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcTransaction.cs#L41C17-L64C34" } ], "DocsId": "T:System.Data.Odbc.OdbcTransaction", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcTransaction.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcTransaction.cs" }, { "Members": [ { "DocsId": "F:System.Data.Odbc.OdbcType.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" }, { "DocsId": "F:System.Data.Odbc.OdbcType.BigInt", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" }, { "DocsId": "F:System.Data.Odbc.OdbcType.Binary", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" }, { "DocsId": "F:System.Data.Odbc.OdbcType.Bit", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" }, { "DocsId": "F:System.Data.Odbc.OdbcType.Char", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" }, { "DocsId": "F:System.Data.Odbc.OdbcType.DateTime", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" }, { "DocsId": "F:System.Data.Odbc.OdbcType.Decimal", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" }, { "DocsId": "F:System.Data.Odbc.OdbcType.Numeric", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" }, { "DocsId": "F:System.Data.Odbc.OdbcType.Double", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" }, { "DocsId": "F:System.Data.Odbc.OdbcType.Image", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" }, { "DocsId": "F:System.Data.Odbc.OdbcType.Int", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" }, { "DocsId": "F:System.Data.Odbc.OdbcType.NChar", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" }, { "DocsId": "F:System.Data.Odbc.OdbcType.NText", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" }, { "DocsId": "F:System.Data.Odbc.OdbcType.NVarChar", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" }, { "DocsId": "F:System.Data.Odbc.OdbcType.Real", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" }, { "DocsId": "F:System.Data.Odbc.OdbcType.UniqueIdentifier", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" }, { "DocsId": "F:System.Data.Odbc.OdbcType.SmallDateTime", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" }, { "DocsId": "F:System.Data.Odbc.OdbcType.SmallInt", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" }, { "DocsId": "F:System.Data.Odbc.OdbcType.Text", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" }, { "DocsId": "F:System.Data.Odbc.OdbcType.Timestamp", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" }, { "DocsId": "F:System.Data.Odbc.OdbcType.TinyInt", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" }, { "DocsId": "F:System.Data.Odbc.OdbcType.VarBinary", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" }, { "DocsId": "F:System.Data.Odbc.OdbcType.VarChar", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" }, { "DocsId": "F:System.Data.Odbc.OdbcType.Date", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" }, { "DocsId": "F:System.Data.Odbc.OdbcType.Time", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" } ], "DocsId": "T:System.Data.Odbc.OdbcType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcType.cs" }, { "Members": [ { "DocsId": "F:System.Data.Odbc.ODBC32.RETCODE.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/ODBC32.Common.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/ODBC32.Common.cs" }, { "DocsId": "F:System.Data.Odbc.ODBC32.RETCODE.SUCCESS", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/ODBC32.Common.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/ODBC32.Common.cs" }, { "DocsId": "F:System.Data.Odbc.ODBC32.RETCODE.SUCCESS_WITH_INFO", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/ODBC32.Common.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/ODBC32.Common.cs" }, { "DocsId": "F:System.Data.Odbc.ODBC32.RETCODE.ERROR", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/ODBC32.Common.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/ODBC32.Common.cs" }, { "DocsId": "F:System.Data.Odbc.ODBC32.RETCODE.INVALID_HANDLE", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/ODBC32.Common.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/ODBC32.Common.cs" }, { "DocsId": "F:System.Data.Odbc.ODBC32.RETCODE.NO_DATA", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/ODBC32.Common.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/ODBC32.Common.cs" } ], "DocsId": "T:System.Data.Odbc.ODBC32.RETCODE", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.Odbc/src/System/Data/Odbc/ODBC32.Common.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.Odbc/src/System/Data/Odbc/ODBC32.Common.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/System.Data.OleDb.json b/xml/SourceLinkInformation/net-9.0/System.Data.OleDb.json index 8c9504308ce..f3fec808101 100644 --- a/xml/SourceLinkInformation/net-9.0/System.Data.OleDb.json +++ b/xml/SourceLinkInformation/net-9.0/System.Data.OleDb.json @@ -1,1733 +1,1732 @@ { "Assembly": "System.Data.OleDb", - "GUID": "88DD615E18924BBDA00FC3A45029E9DDFFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "0530EAF48A364001A11EAD2A59551776FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:System.Data.OleDb.OleDbParameter.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/DbParameterHelper.cs#L219C13-L219C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/DbParameterHelper.cs#L219C13-L219C34" }, { "DocsId": "M:System.Data.OleDb.OleDbParameter.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameter.cs#L25C35-L27C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameter.cs#L25C35-L27C10" }, { "DocsId": "M:System.Data.OleDb.OleDbParameter.#ctor(System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameter.cs#L29C62-L36C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameter.cs#L29C62-L36C10" }, { "DocsId": "M:System.Data.OleDb.OleDbParameter.#ctor(System.String,System.Data.OleDb.OleDbType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameter.cs#L38C67-L42C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameter.cs#L38C67-L42C10" }, { "DocsId": "M:System.Data.OleDb.OleDbParameter.#ctor(System.String,System.Data.OleDb.OleDbType,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameter.cs#L44C77-L49C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameter.cs#L44C77-L49C10" }, { "DocsId": "M:System.Data.OleDb.OleDbParameter.#ctor(System.String,System.Data.OleDb.OleDbType,System.Int32,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameter.cs#L51C96-L57C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameter.cs#L51C96-L57C10" }, { "DocsId": "M:System.Data.OleDb.OleDbParameter.#ctor(System.String,System.Data.OleDb.OleDbType,System.Int32,System.Data.ParameterDirection,System.Boolean,System.Byte,System.Byte,System.String,System.Data.DataRowVersion,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameter.cs#L65C48-L77C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameter.cs#L65C48-L77C10" }, { "DocsId": "M:System.Data.OleDb.OleDbParameter.#ctor(System.String,System.Data.OleDb.OleDbType,System.Int32,System.Data.ParameterDirection,System.Byte,System.Byte,System.String,System.Data.DataRowVersion,System.Boolean,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameter.cs#L85C48-L97C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameter.cs#L85C48-L97C10" }, { "DocsId": "M:System.Data.OleDb.OleDbParameter.ResetDbType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameter.cs#L126C13-L127C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameter.cs#L126C13-L127C10" }, { "DocsId": "M:System.Data.OleDb.OleDbParameter.ResetOleDbType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameter.cs#L157C13-L162C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameter.cs#L157C13-L162C10" }, { "DocsId": "M:System.Data.OleDb.OleDbParameter.System#ICloneable#Clone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameter.cs#L263C13-L263C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameter.cs#L263C13-L263C45" }, { "DocsId": "P:System.Data.OleDb.OleDbParameter.Direction", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/DbParameterHelper.cs#L56C17-L57C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/DbParameterHelper.cs#L56C17-L57C82" }, { "DocsId": "P:System.Data.OleDb.OleDbParameter.IsNullable", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/DbParameterHelper.cs#L83C17-L83C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/DbParameterHelper.cs#L83C17-L83C36" }, { "DocsId": "P:System.Data.OleDb.OleDbParameter.Size", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/DbParameterHelper.cs#L97C17-L102C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/DbParameterHelper.cs#L97C17-L102C29" }, { "DocsId": "P:System.Data.OleDb.OleDbParameter.SourceColumn", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/DbParameterHelper.cs#L137C17-L137C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/DbParameterHelper.cs#L137C17-L137C54" }, { "DocsId": "P:System.Data.OleDb.OleDbParameter.SourceColumnNullMapping", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/DbParameterHelper.cs#L149C17-L149C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/DbParameterHelper.cs#L149C17-L149C49" }, { "DocsId": "P:System.Data.OleDb.OleDbParameter.SourceVersion", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/DbParameterHelper.cs#L161C17-L162C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/DbParameterHelper.cs#L161C17-L162C88" }, { "DocsId": "P:System.Data.OleDb.OleDbParameter.DbType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameter.cs#L111C17-L111C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameter.cs#L111C17-L111C54" }, { "DocsId": "P:System.Data.OleDb.OleDbParameter.OleDbType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameter.cs#L137C17-L137C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameter.cs#L137C17-L137C57" }, { "DocsId": "P:System.Data.OleDb.OleDbParameter.ParameterName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameter.cs#L169C17-L169C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameter.cs#L169C17-L169C55" }, { "DocsId": "P:System.Data.OleDb.OleDbParameter.Precision", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameter.cs#L186C17-L186C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameter.cs#L186C17-L186C42" }, { "DocsId": "P:System.Data.OleDb.OleDbParameter.Scale", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameter.cs#L223C17-L223C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameter.cs#L223C17-L223C38" }, { "DocsId": "P:System.Data.OleDb.OleDbParameter.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameter.cs#L568C17-L568C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameter.cs#L568C17-L568C31" } ], "DocsId": "T:System.Data.OleDb.OleDbParameter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameter.cs" }, { "Members": [ { "DocsId": "M:System.Data.OleDb.OleDbCommand.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L22C9-L52C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L22C9-L52C10" }, { "DocsId": "M:System.Data.OleDb.OleDbCommand.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L54C48-L57C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L54C48-L57C10" }, { "DocsId": "M:System.Data.OleDb.OleDbCommand.#ctor(System.String,System.Data.OleDb.OleDbConnection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L59C77-L63C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L59C77-L63C10" }, { "DocsId": "M:System.Data.OleDb.OleDbCommand.#ctor(System.String,System.Data.OleDb.OleDbConnection,System.Data.OleDb.OleDbTransaction)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L65C108-L70C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L65C108-L70C10" }, { "DocsId": "M:System.Data.OleDb.OleDbCommand.ResetCommandTimeout", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L149C13-L154C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L149C13-L154C10" }, { "DocsId": "M:System.Data.OleDb.OleDbCommand.Cancel", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L462C15-L493C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L462C15-L493C10" }, { "DocsId": "M:System.Data.OleDb.OleDbCommand.Clone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L497C13-L498C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L497C13-L498C26" }, { "DocsId": "M:System.Data.OleDb.OleDbCommand.System#ICloneable#Clone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L503C13-L503C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L503C13-L503C28" }, { "DocsId": "M:System.Data.OleDb.OleDbCommand.CreateParameter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L571C13-L571C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L571C13-L571C41" }, { "DocsId": "M:System.Data.OleDb.OleDbCommand.CreateDbParameter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L576C13-L576C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L576C13-L576C38" }, { "DocsId": "M:System.Data.OleDb.OleDbCommand.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L581C13-L598C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L581C13-L598C10" }, { "DocsId": "M:System.Data.OleDb.OleDbCommand.ExecuteReader", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L602C13-L602C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L602C13-L602C59" }, { "DocsId": "M:System.Data.OleDb.OleDbCommand.System#Data#IDbCommand#ExecuteReader", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L607C13-L607C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L607C13-L607C59" }, { "DocsId": "M:System.Data.OleDb.OleDbCommand.ExecuteReader(System.Data.CommandBehavior)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L612C13-L613C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L612C13-L613C72" }, { "DocsId": "M:System.Data.OleDb.OleDbCommand.System#Data#IDbCommand#ExecuteReader(System.Data.CommandBehavior)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L618C13-L618C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L618C13-L618C44" }, { "DocsId": "M:System.Data.OleDb.OleDbCommand.ExecuteDbDataReader(System.Data.CommandBehavior)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L623C13-L623C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L623C13-L623C44" }, { "DocsId": "M:System.Data.OleDb.OleDbCommand.ExecuteNonQuery", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L942C13-L944C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L942C13-L944C56" }, { "DocsId": "M:System.Data.OleDb.OleDbCommand.ExecuteScalar", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L949C13-L958C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L949C13-L958C26" }, { "DocsId": "M:System.Data.OleDb.OleDbCommand.Prepare", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L1187C13-L1198C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L1187C13-L1198C10" }, { "DocsId": "P:System.Data.OleDb.OleDbCommand.CommandText", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L115C17-L115C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L115C17-L115C53" }, { "DocsId": "P:System.Data.OleDb.OleDbCommand.CommandTimeout", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L131C17-L131C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L131C17-L131C40" }, { "DocsId": "P:System.Data.OleDb.OleDbCommand.CommandType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L162C17-L163C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L162C17-L163C70" }, { "DocsId": "P:System.Data.OleDb.OleDbCommand.Connection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L188C17-L188C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L188C17-L188C36" }, { "DocsId": "P:System.Data.OleDb.OleDbCommand.DbConnection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L228C17-L228C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L228C17-L228C35" }, { "DocsId": "P:System.Data.OleDb.OleDbCommand.DbParameterCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L240C17-L240C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L240C17-L240C35" }, { "DocsId": "P:System.Data.OleDb.OleDbCommand.DbTransaction", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L248C17-L248C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L248C17-L248C36" }, { "DocsId": "P:System.Data.OleDb.OleDbCommand.DesignTimeVisible", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L270C17-L270C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L270C17-L270C46" }, { "DocsId": "P:System.Data.OleDb.OleDbCommand.Parameters", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L286C17-L294C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L286C17-L294C30" }, { "DocsId": "P:System.Data.OleDb.OleDbCommand.Transaction", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L314C17-L320C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L314C17-L320C36" }, { "DocsId": "P:System.Data.OleDb.OleDbCommand.UpdatedRowSource", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L335C17-L335C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommand.cs#L335C17-L335C42" } ], "DocsId": "T:System.Data.OleDb.OleDbCommand", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommand.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommand.cs" }, { "Members": [ { "DocsId": "M:System.Data.OleDb.OleDbCommandBuilder.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommandBuilder.cs#L13C40-L16C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommandBuilder.cs#L13C40-L16C10" }, { "DocsId": "M:System.Data.OleDb.OleDbCommandBuilder.#ctor(System.Data.OleDb.OleDbDataAdapter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommandBuilder.cs#L18C65-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommandBuilder.cs#L18C65-L21C10" }, { "DocsId": "M:System.Data.OleDb.OleDbCommandBuilder.GetInsertCommand", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommandBuilder.cs#L45C13-L45C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommandBuilder.cs#L45C13-L45C58" }, { "DocsId": "M:System.Data.OleDb.OleDbCommandBuilder.GetInsertCommand(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommandBuilder.cs#L49C13-L49C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommandBuilder.cs#L49C13-L49C85" }, { "DocsId": "M:System.Data.OleDb.OleDbCommandBuilder.GetUpdateCommand", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommandBuilder.cs#L54C13-L54C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommandBuilder.cs#L54C13-L54C58" }, { "DocsId": "M:System.Data.OleDb.OleDbCommandBuilder.GetUpdateCommand(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommandBuilder.cs#L58C13-L58C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommandBuilder.cs#L58C13-L58C85" }, { "DocsId": "M:System.Data.OleDb.OleDbCommandBuilder.GetDeleteCommand", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommandBuilder.cs#L63C13-L63C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommandBuilder.cs#L63C13-L63C58" }, { "DocsId": "M:System.Data.OleDb.OleDbCommandBuilder.GetDeleteCommand(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommandBuilder.cs#L67C13-L67C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommandBuilder.cs#L67C13-L67C85" }, { "DocsId": "M:System.Data.OleDb.OleDbCommandBuilder.GetParameterName(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommandBuilder.cs#L72C13-L72C103" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommandBuilder.cs#L72C13-L72C103" }, { "DocsId": "M:System.Data.OleDb.OleDbCommandBuilder.GetParameterName(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommandBuilder.cs#L76C13-L76C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommandBuilder.cs#L76C13-L76C34" }, { "DocsId": "M:System.Data.OleDb.OleDbCommandBuilder.GetParameterPlaceholder(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommandBuilder.cs#L81C13-L81C24" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommandBuilder.cs#L81C13-L81C24" }, { "DocsId": "M:System.Data.OleDb.OleDbCommandBuilder.ApplyParameterInfo(System.Data.Common.DbParameter,System.Data.DataRow,System.Data.StatementType,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommandBuilder.cs#L86C13-L103C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommandBuilder.cs#L86C13-L103C10" }, { "DocsId": "M:System.Data.OleDb.OleDbCommandBuilder.DeriveParameters(System.Data.OleDb.OleDbCommand)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommandBuilder.cs#L107C13-L146C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommandBuilder.cs#L107C13-L146C10" }, { "DocsId": "M:System.Data.OleDb.OleDbCommandBuilder.QuoteIdentifier(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommandBuilder.cs#L359C13-L359C122" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommandBuilder.cs#L359C13-L359C122" }, { "DocsId": "M:System.Data.OleDb.OleDbCommandBuilder.QuoteIdentifier(System.String,System.Data.OleDb.OleDbConnection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommandBuilder.cs#L363C13-L387C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommandBuilder.cs#L363C13-L387C88" }, { "DocsId": "M:System.Data.OleDb.OleDbCommandBuilder.SetRowUpdatingHandler(System.Data.Common.DbDataAdapter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommandBuilder.cs#L393C13-L401C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommandBuilder.cs#L393C13-L401C10" }, { "DocsId": "M:System.Data.OleDb.OleDbCommandBuilder.UnquoteIdentifier(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommandBuilder.cs#L405C13-L405C122" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommandBuilder.cs#L405C13-L405C122" }, { "DocsId": "M:System.Data.OleDb.OleDbCommandBuilder.UnquoteIdentifier(System.String,System.Data.OleDb.OleDbConnection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommandBuilder.cs#L410C13-L438C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommandBuilder.cs#L410C13-L438C40" }, { "DocsId": "P:System.Data.OleDb.OleDbCommandBuilder.DataAdapter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommandBuilder.cs#L28C17-L28C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommandBuilder.cs#L28C17-L28C63" } ], "DocsId": "T:System.Data.OleDb.OleDbCommandBuilder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbCommandBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbCommandBuilder.cs" }, { "Members": [ { "DocsId": "M:System.Data.OleDb.OleDbConnection.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbConnection.cs#L26C60-L29C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbConnection.cs#L26C60-L29C10" }, { "DocsId": "M:System.Data.OleDb.OleDbConnection.ResetState", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbConnection.cs#L224C13-L247C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbConnection.cs#L224C13-L247C10" }, { "DocsId": "M:System.Data.OleDb.OleDbConnection.BeginTransaction", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbConnection.cs#L316C13-L316C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbConnection.cs#L316C13-L316C65" }, { "DocsId": "M:System.Data.OleDb.OleDbConnection.BeginTransaction(System.Data.IsolationLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbConnection.cs#L321C13-L321C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbConnection.cs#L321C13-L321C87" }, { "DocsId": "M:System.Data.OleDb.OleDbConnection.ChangeDatabase(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbConnection.cs#L326C13-L332C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbConnection.cs#L326C13-L332C10" }, { "DocsId": "M:System.Data.OleDb.OleDbConnection.System#ICloneable#Clone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbConnection.cs#L345C13-L346C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbConnection.cs#L345C13-L346C26" }, { "DocsId": "M:System.Data.OleDb.OleDbConnection.Close", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbConnection.cs#L351C13-L353C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbConnection.cs#L351C13-L353C10" }, { "DocsId": "M:System.Data.OleDb.OleDbConnection.CreateCommand", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbConnection.cs#L357C13-L357C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbConnection.cs#L357C13-L357C47" }, { "DocsId": "M:System.Data.OleDb.OleDbConnection.BeginDbTransaction(System.Data.IsolationLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbConnection.cs#L377C13-L385C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbConnection.cs#L377C13-L385C32" }, { "DocsId": "M:System.Data.OleDb.OleDbConnection.GetOleDbSchemaTable(System.Guid,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbConnection.cs#L430C13-L471C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbConnection.cs#L430C13-L471C65" }, { "DocsId": "M:System.Data.OleDb.OleDbConnection.Open", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbConnection.cs#L519C13-L528C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbConnection.cs#L519C13-L528C10" }, { "DocsId": "M:System.Data.OleDb.OleDbConnection.ReleaseObjectPool", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbConnection.cs#L641C13-L644C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbConnection.cs#L641C13-L644C10" }, { "DocsId": "M:System.Data.OleDb.OleDbConnection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/System/Data/ProviderBase/DbConnectionHelper.cs#L21C36-L25C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/System/Data/ProviderBase/DbConnectionHelper.cs#L21C36-L25C10" }, { "DocsId": "M:System.Data.OleDb.OleDbConnection.CreateDbCommand", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/System/Data/ProviderBase/DbConnectionHelper.cs#L146C13-L149C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/System/Data/ProviderBase/DbConnectionHelper.cs#L146C13-L149C28" }, { "DocsId": "M:System.Data.OleDb.OleDbConnection.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/System/Data/ProviderBase/DbConnectionHelper.cs#L154C13-L162C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/System/Data/ProviderBase/DbConnectionHelper.cs#L154C13-L162C10" }, { "DocsId": "M:System.Data.OleDb.OleDbConnection.EnlistTransaction(System.Transactions.Transaction)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/System/Data/ProviderBase/DbConnectionHelper.cs#L195C13-L223C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/System/Data/ProviderBase/DbConnectionHelper.cs#L195C13-L223C10" }, { "DocsId": "M:System.Data.OleDb.OleDbConnection.GetSchema", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/System/Data/ProviderBase/DbConnectionHelper.cs#L227C13-L227C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/System/Data/ProviderBase/DbConnectionHelper.cs#L227C13-L227C88" }, { "DocsId": "M:System.Data.OleDb.OleDbConnection.GetSchema(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/System/Data/ProviderBase/DbConnectionHelper.cs#L232C13-L232C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/System/Data/ProviderBase/DbConnectionHelper.cs#L232C13-L232C57" }, { "DocsId": "M:System.Data.OleDb.OleDbConnection.GetSchema(System.String,System.String[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/System/Data/ProviderBase/DbConnectionHelper.cs#L239C13-L239C118" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/System/Data/ProviderBase/DbConnectionHelper.cs#L239C13-L239C118" }, { "DocsId": "E:System.Data.OleDb.OleDbConnection.InfoMessage", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbConnection.cs#L253C17-L254C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbConnection.cs#L253C17-L254C14" }, { "DocsId": "P:System.Data.OleDb.OleDbConnection.ConnectionString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbConnection.cs#L51C17-L51C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbConnection.cs#L51C17-L51C47" }, { "DocsId": "P:System.Data.OleDb.OleDbConnection.ConnectionTimeout", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbConnection.cs#L72C17-L87C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbConnection.cs#L72C17-L87C57" }, { "DocsId": "P:System.Data.OleDb.OleDbConnection.Database", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbConnection.cs#L97C17-L119C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbConnection.cs#L97C17-L119C79" }, { "DocsId": "P:System.Data.OleDb.OleDbConnection.DataSource", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbConnection.cs#L130C17-L148C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbConnection.cs#L130C17-L148C79" }, { "DocsId": "P:System.Data.OleDb.OleDbConnection.Provider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbConnection.cs#L178C17-L179C89" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbConnection.cs#L178C17-L179C89" }, { "DocsId": "P:System.Data.OleDb.OleDbConnection.ServerVersion", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbConnection.cs#L196C17-L196C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbConnection.cs#L196C17-L196C54" }, { "DocsId": "P:System.Data.OleDb.OleDbConnection.State", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbConnection.cs#L209C17-L209C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbConnection.cs#L209C17-L209C46" }, { "DocsId": "P:System.Data.OleDb.OleDbConnection.DbProviderFactory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbConnection.cs#L217C17-L217C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbConnection.cs#L217C17-L217C46" } ], "DocsId": "T:System.Data.OleDb.OleDbConnection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbConnection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbConnection.cs" }, { "Members": [ { "DocsId": "M:System.Data.OleDb.OleDbConnectionStringBuilder.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbConnectionStringBuilder.cs#L57C49-L60C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbConnectionStringBuilder.cs#L57C49-L60C10" }, { "DocsId": "M:System.Data.OleDb.OleDbConnectionStringBuilder.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbConnectionStringBuilder.cs#L48C9-L68C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbConnectionStringBuilder.cs#L48C9-L68C10" }, { "DocsId": "M:System.Data.OleDb.OleDbConnectionStringBuilder.ContainsKey(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbConnectionStringBuilder.cs#L270C13-L271C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbConnectionStringBuilder.cs#L270C13-L271C81" }, { "DocsId": "M:System.Data.OleDb.OleDbConnectionStringBuilder.Clear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbConnectionStringBuilder.cs#L289C13-L296C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbConnectionStringBuilder.cs#L289C13-L296C10" }, { "DocsId": "M:System.Data.OleDb.OleDbConnectionStringBuilder.Remove(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbConnectionStringBuilder.cs#L320C13-L332C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbConnectionStringBuilder.cs#L320C13-L332C26" }, { "DocsId": "M:System.Data.OleDb.OleDbConnectionStringBuilder.TryGetValue(System.String,System.Object@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbConnectionStringBuilder.cs#L390C13-L408C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbConnectionStringBuilder.cs#L390C13-L408C25" }, { "DocsId": "P:System.Data.OleDb.OleDbConnectionStringBuilder.Item(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbConnectionStringBuilder.cs#L75C17-L88C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbConnectionStringBuilder.cs#L75C17-L88C30" }, { "DocsId": "P:System.Data.OleDb.OleDbConnectionStringBuilder.DataSource", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbConnectionStringBuilder.cs#L140C19-L140C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbConnectionStringBuilder.cs#L140C19-L140C38" }, { "DocsId": "P:System.Data.OleDb.OleDbConnectionStringBuilder.FileName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbConnectionStringBuilder.cs#L155C19-L155C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbConnectionStringBuilder.cs#L155C19-L155C36" }, { "DocsId": "P:System.Data.OleDb.OleDbConnectionStringBuilder.OleDbServices", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbConnectionStringBuilder.cs#L168C19-L168C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbConnectionStringBuilder.cs#L168C19-L168C41" }, { "DocsId": "P:System.Data.OleDb.OleDbConnectionStringBuilder.PersistSecurityInfo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbConnectionStringBuilder.cs#L180C19-L180C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbConnectionStringBuilder.cs#L180C19-L180C47" }, { "DocsId": "P:System.Data.OleDb.OleDbConnectionStringBuilder.Provider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbConnectionStringBuilder.cs#L193C19-L193C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbConnectionStringBuilder.cs#L193C19-L193C36" }, { "DocsId": "P:System.Data.OleDb.OleDbConnectionStringBuilder.Keys", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbConnectionStringBuilder.cs#L206C17-L264C89" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbConnectionStringBuilder.cs#L206C17-L264C89" } ], "DocsId": "T:System.Data.OleDb.OleDbConnectionStringBuilder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbConnectionStringBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbConnectionStringBuilder.cs" }, { "Members": [ { "DocsId": "M:System.Data.OleDb.OleDbDataAdapter.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L20C37-L23C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L20C37-L23C10" }, { "DocsId": "M:System.Data.OleDb.OleDbDataAdapter.#ctor(System.Data.OleDb.OleDbCommand)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L25C64-L28C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L25C64-L28C10" }, { "DocsId": "M:System.Data.OleDb.OleDbDataAdapter.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L30C94-L34C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L30C94-L34C10" }, { "DocsId": "M:System.Data.OleDb.OleDbDataAdapter.#ctor(System.String,System.Data.OleDb.OleDbConnection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L36C97-L39C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L36C97-L39C10" }, { "DocsId": "M:System.Data.OleDb.OleDbDataAdapter.System#Data#IDbDataAdapter#get_DeleteCommand", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L57C19-L57C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L57C19-L57C41" }, { "DocsId": "M:System.Data.OleDb.OleDbDataAdapter.System#Data#IDbDataAdapter#set_DeleteCommand(System.Data.IDbCommand)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L58C19-L58C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L58C19-L58C59" }, { "DocsId": "M:System.Data.OleDb.OleDbDataAdapter.System#Data#IDbDataAdapter#get_InsertCommand", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L72C19-L72C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L72C19-L72C41" }, { "DocsId": "M:System.Data.OleDb.OleDbDataAdapter.System#Data#IDbDataAdapter#set_InsertCommand(System.Data.IDbCommand)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L73C19-L73C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L73C19-L73C59" }, { "DocsId": "M:System.Data.OleDb.OleDbDataAdapter.System#Data#IDbDataAdapter#get_SelectCommand", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L87C19-L87C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L87C19-L87C41" }, { "DocsId": "M:System.Data.OleDb.OleDbDataAdapter.System#Data#IDbDataAdapter#set_SelectCommand(System.Data.IDbCommand)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L88C19-L88C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L88C19-L88C59" }, { "DocsId": "M:System.Data.OleDb.OleDbDataAdapter.System#Data#IDbDataAdapter#get_UpdateCommand", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L102C19-L102C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L102C19-L102C41" }, { "DocsId": "M:System.Data.OleDb.OleDbDataAdapter.System#Data#IDbDataAdapter#set_UpdateCommand(System.Data.IDbCommand)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L103C19-L103C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L103C19-L103C59" }, { "DocsId": "M:System.Data.OleDb.OleDbDataAdapter.System#ICloneable#Clone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L135C13-L135C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L135C13-L135C47" }, { "DocsId": "M:System.Data.OleDb.OleDbDataAdapter.CreateRowUpdatedEvent(System.Data.DataRow,System.Data.IDbCommand,System.Data.StatementType,System.Data.Common.DataTableMapping)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L140C13-L140C96" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L140C13-L140C96" }, { "DocsId": "M:System.Data.OleDb.OleDbDataAdapter.CreateRowUpdatingEvent(System.Data.DataRow,System.Data.IDbCommand,System.Data.StatementType,System.Data.Common.DataTableMapping)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L145C13-L145C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L145C13-L145C97" }, { "DocsId": "M:System.Data.OleDb.OleDbDataAdapter.Fill(System.Data.DataTable,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L156C13-L164C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L156C13-L164C82" }, { "DocsId": "M:System.Data.OleDb.OleDbDataAdapter.Fill(System.Data.DataSet,System.Object,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L169C13-L181C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L169C13-L181C83" }, { "DocsId": "M:System.Data.OleDb.OleDbDataAdapter.OnRowUpdated(System.Data.Common.RowUpdatedEventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L433C13-L439C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L433C13-L439C10" }, { "DocsId": "M:System.Data.OleDb.OleDbDataAdapter.OnRowUpdating(System.Data.Common.RowUpdatingEventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L443C13-L449C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L443C13-L449C10" }, { "DocsId": "E:System.Data.OleDb.OleDbDataAdapter.RowUpdated", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L108C19-L108C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L108C19-L108C63" }, { "DocsId": "E:System.Data.OleDb.OleDbDataAdapter.RowUpdating", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L116C17-L129C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L116C17-L129C14" }, { "DocsId": "P:System.Data.OleDb.OleDbDataAdapter.DeleteCommand", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L51C19-L51C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L51C19-L51C41" }, { "DocsId": "P:System.Data.OleDb.OleDbDataAdapter.System#Data#IDbDataAdapter#DeleteCommand", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L57C19-L57C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L57C19-L57C41" }, { "DocsId": "P:System.Data.OleDb.OleDbDataAdapter.InsertCommand", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L66C19-L66C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L66C19-L66C41" }, { "DocsId": "P:System.Data.OleDb.OleDbDataAdapter.System#Data#IDbDataAdapter#InsertCommand", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L72C19-L72C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L72C19-L72C41" }, { "DocsId": "P:System.Data.OleDb.OleDbDataAdapter.SelectCommand", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L81C19-L81C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L81C19-L81C41" }, { "DocsId": "P:System.Data.OleDb.OleDbDataAdapter.System#Data#IDbDataAdapter#SelectCommand", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L87C19-L87C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L87C19-L87C41" }, { "DocsId": "P:System.Data.OleDb.OleDbDataAdapter.UpdateCommand", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L96C19-L96C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L96C19-L96C41" }, { "DocsId": "P:System.Data.OleDb.OleDbDataAdapter.System#Data#IDbDataAdapter#UpdateCommand", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L102C19-L102C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs#L102C19-L102C41" } ], "DocsId": "T:System.Data.OleDb.OleDbDataAdapter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataAdapter.cs" }, { "Members": [ { "DocsId": "M:System.Data.OleDb.OleDbDataReader.GetSchemaTable", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L258C13-L277C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L258C13-L277C32" }, { "DocsId": "M:System.Data.OleDb.OleDbDataReader.Close", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L640C13-L718C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L640C13-L718C10" }, { "DocsId": "M:System.Data.OleDb.OleDbDataReader.GetBoolean(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L822C13-L823C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L822C13-L823C43" }, { "DocsId": "M:System.Data.OleDb.OleDbDataReader.GetByte(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L828C13-L829C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L828C13-L829C40" }, { "DocsId": "M:System.Data.OleDb.OleDbDataReader.GetBytes(System.Int32,System.Int64,System.Byte[],System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L856C13-L887C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L856C13-L887C30" }, { "DocsId": "M:System.Data.OleDb.OleDbDataReader.GetChars(System.Int32,System.Int64,System.Char[],System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L892C13-L924C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L892C13-L924C30" }, { "DocsId": "M:System.Data.OleDb.OleDbDataReader.GetChar(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L930C13-L930C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L930C13-L930C38" }, { "DocsId": "M:System.Data.OleDb.OleDbDataReader.GetData(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L936C13-L937C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L936C13-L937C43" }, { "DocsId": "M:System.Data.OleDb.OleDbDataReader.GetDbDataReader(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L942C13-L942C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L942C13-L942C37" }, { "DocsId": "M:System.Data.OleDb.OleDbDataReader.GetDataTypeName(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L981C13-L985C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L981C13-L985C42" }, { "DocsId": "M:System.Data.OleDb.OleDbDataReader.GetDateTime(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L990C13-L991C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L990C13-L991C44" }, { "DocsId": "M:System.Data.OleDb.OleDbDataReader.GetDecimal(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L996C13-L997C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L996C13-L997C43" }, { "DocsId": "M:System.Data.OleDb.OleDbDataReader.GetDouble(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L1002C13-L1003C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L1002C13-L1003C42" }, { "DocsId": "M:System.Data.OleDb.OleDbDataReader.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L1008C13-L1008C108" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L1008C13-L1008C108" }, { "DocsId": "M:System.Data.OleDb.OleDbDataReader.GetFieldType(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L1013C13-L1019C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L1013C13-L1019C42" }, { "DocsId": "M:System.Data.OleDb.OleDbDataReader.GetFloat(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L1024C13-L1025C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L1024C13-L1025C42" }, { "DocsId": "M:System.Data.OleDb.OleDbDataReader.GetGuid(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L1030C13-L1031C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L1030C13-L1031C40" }, { "DocsId": "M:System.Data.OleDb.OleDbDataReader.GetInt16(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L1036C13-L1037C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L1036C13-L1037C41" }, { "DocsId": "M:System.Data.OleDb.OleDbDataReader.GetInt32(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L1042C13-L1043C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L1042C13-L1043C41" }, { "DocsId": "M:System.Data.OleDb.OleDbDataReader.GetInt64(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L1048C13-L1049C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L1048C13-L1049C41" }, { "DocsId": "M:System.Data.OleDb.OleDbDataReader.GetName(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L1054C13-L1059C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L1054C13-L1059C42" }, { "DocsId": "M:System.Data.OleDb.OleDbDataReader.GetOrdinal(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L1064C13-L1072C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L1064C13-L1072C54" }, { "DocsId": "M:System.Data.OleDb.OleDbDataReader.GetString(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L1077C13-L1078C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L1077C13-L1078C42" }, { "DocsId": "M:System.Data.OleDb.OleDbDataReader.GetTimeSpan(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L1083C13-L1083C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L1083C13-L1083C48" }, { "DocsId": "M:System.Data.OleDb.OleDbDataReader.GetValue(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L1149C13-L1151C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L1149C13-L1151C26" }, { "DocsId": "M:System.Data.OleDb.OleDbDataReader.GetValues(System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L1156C13-L1167C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L1156C13-L1167C26" }, { "DocsId": "M:System.Data.OleDb.OleDbDataReader.IsDBNull(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L1177C13-L1178C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L1177C13-L1178C42" }, { "DocsId": "M:System.Data.OleDb.OleDbDataReader.NextResult", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L1302C13-L1360C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L1302C13-L1360C28" }, { "DocsId": "M:System.Data.OleDb.OleDbDataReader.Read", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L1365C13-L1395C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L1365C13-L1395C28" }, { "DocsId": "P:System.Data.OleDb.OleDbDataReader.Depth", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L137C17-L141C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L137C17-L141C31" }, { "DocsId": "P:System.Data.OleDb.OleDbDataReader.FieldCount", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L149C17-L154C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L149C17-L154C67" }, { "DocsId": "P:System.Data.OleDb.OleDbDataReader.HasRows", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L162C17-L166C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L162C17-L166C33" }, { "DocsId": "P:System.Data.OleDb.OleDbDataReader.IsClosed", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L178C17-L178C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L178C17-L178C34" }, { "DocsId": "P:System.Data.OleDb.OleDbDataReader.RecordsAffected", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L191C17-L191C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L191C17-L191C60" }, { "DocsId": "P:System.Data.OleDb.OleDbDataReader.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L206C17-L206C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L206C17-L206C40" }, { "DocsId": "P:System.Data.OleDb.OleDbDataReader.Item(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L214C17-L215C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L214C17-L215C42" }, { "DocsId": "P:System.Data.OleDb.OleDbDataReader.VisibleFieldCount", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L1205C17-L1209C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs#L1205C17-L1209C43" } ], "DocsId": "T:System.Data.OleDb.OleDbDataReader", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbDataReader.cs" }, { "Members": [ { "DocsId": "M:System.Data.OleDb.OleDbEnumerator.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbEnumerator.cs#L11C9-L13C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbEnumerator.cs#L11C9-L13C10" }, { "DocsId": "M:System.Data.OleDb.OleDbEnumerator.GetElements", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbEnumerator.cs#L17C13-L21C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbEnumerator.cs#L17C13-L21C30" }, { "DocsId": "M:System.Data.OleDb.OleDbEnumerator.GetEnumerator(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbEnumerator.cs#L26C13-L26C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbEnumerator.cs#L26C13-L26C48" }, { "DocsId": "M:System.Data.OleDb.OleDbEnumerator.GetRootEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbEnumerator.cs#L74C13-L75C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbEnumerator.cs#L74C13-L75C52" } ], "DocsId": "T:System.Data.OleDb.OleDbEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbEnumerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbEnumerator.cs" }, { "Members": [ { "DocsId": "M:System.Data.OleDb.OleDbError.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbError.cs#L107C13-L107C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbError.cs#L107C13-L107C28" }, { "DocsId": "P:System.Data.OleDb.OleDbError.Message", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbError.cs#L77C17-L77C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbError.cs#L77C17-L77C53" }, { "DocsId": "P:System.Data.OleDb.OleDbError.NativeError", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbError.cs#L85C17-L85C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbError.cs#L85C17-L85C41" }, { "DocsId": "P:System.Data.OleDb.OleDbError.Source", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbError.cs#L93C17-L93C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbError.cs#L93C17-L93C52" }, { "DocsId": "P:System.Data.OleDb.OleDbError.SQLState", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbError.cs#L101C17-L101C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbError.cs#L101C17-L101C54" } ], "DocsId": "T:System.Data.OleDb.OleDbError", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbError.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbError.cs" }, { "Members": [ { "DocsId": "M:System.Data.OleDb.OleDbErrorCollection.System#Collections#ICollection#get_IsSynchronized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbErrorCollection.cs#L34C19-L34C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbErrorCollection.cs#L34C19-L34C32" }, { "DocsId": "M:System.Data.OleDb.OleDbErrorCollection.System#Collections#ICollection#get_SyncRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbErrorCollection.cs#L39C19-L39C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbErrorCollection.cs#L39C19-L39C31" }, { "DocsId": "M:System.Data.OleDb.OleDbErrorCollection.CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbErrorCollection.cs#L66C13-L67C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbErrorCollection.cs#L66C13-L67C10" }, { "DocsId": "M:System.Data.OleDb.OleDbErrorCollection.CopyTo(System.Data.OleDb.OleDbError[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbErrorCollection.cs#L71C13-L72C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbErrorCollection.cs#L71C13-L72C10" }, { "DocsId": "M:System.Data.OleDb.OleDbErrorCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbErrorCollection.cs#L76C13-L76C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbErrorCollection.cs#L76C13-L76C47" }, { "DocsId": "P:System.Data.OleDb.OleDbErrorCollection.System#Collections#ICollection#IsSynchronized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbErrorCollection.cs#L34C19-L34C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbErrorCollection.cs#L34C19-L34C32" }, { "DocsId": "P:System.Data.OleDb.OleDbErrorCollection.System#Collections#ICollection#SyncRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbErrorCollection.cs#L39C19-L39C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbErrorCollection.cs#L39C19-L39C31" }, { "DocsId": "P:System.Data.OleDb.OleDbErrorCollection.Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbErrorCollection.cs#L46C17-L47C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbErrorCollection.cs#L46C17-L47C60" }, { "DocsId": "P:System.Data.OleDb.OleDbErrorCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbErrorCollection.cs#L55C17-L55C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbErrorCollection.cs#L55C17-L55C59" } ], "DocsId": "T:System.Data.OleDb.OleDbErrorCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbErrorCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbErrorCollection.cs" }, { "Members": [ { "DocsId": "M:System.Data.OleDb.OleDbException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbException.cs#L44C13-L48C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbException.cs#L44C13-L48C10" }, { "DocsId": "P:System.Data.OleDb.OleDbException.ErrorCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbException.cs#L55C17-L55C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbException.cs#L55C17-L55C39" }, { "DocsId": "P:System.Data.OleDb.OleDbException.Errors", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbException.cs#L64C17-L64C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbException.cs#L64C17-L64C75" } ], "DocsId": "T:System.Data.OleDb.OleDbException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbException.cs" }, { "Members": [ { "DocsId": "M:System.Data.OleDb.OleDbFactory.CreateCommand", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbFactory.cs#L18C13-L18C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbFactory.cs#L18C13-L18C39" }, { "DocsId": "M:System.Data.OleDb.OleDbFactory.CreateCommandBuilder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbFactory.cs#L23C13-L23C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbFactory.cs#L23C13-L23C46" }, { "DocsId": "M:System.Data.OleDb.OleDbFactory.CreateConnection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbFactory.cs#L28C13-L28C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbFactory.cs#L28C13-L28C42" }, { "DocsId": "M:System.Data.OleDb.OleDbFactory.CreateConnectionStringBuilder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbFactory.cs#L33C13-L33C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbFactory.cs#L33C13-L33C55" }, { "DocsId": "M:System.Data.OleDb.OleDbFactory.CreateDataAdapter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbFactory.cs#L38C13-L38C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbFactory.cs#L38C13-L38C43" }, { "DocsId": "M:System.Data.OleDb.OleDbFactory.CreateParameter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbFactory.cs#L43C13-L43C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbFactory.cs#L43C13-L43C41" }, { "DocsId": "F:System.Data.OleDb.OleDbFactory.Instance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbFactory.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbFactory.cs" } ], "DocsId": "T:System.Data.OleDb.OleDbFactory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbFactory.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbFactory.cs" }, { "Members": [ { "DocsId": "M:System.Data.OleDb.OleDbInfoMessageEventArgs.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbInfoMessageEvent.cs#L52C13-L52C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbInfoMessageEvent.cs#L52C13-L52C28" }, { "DocsId": "P:System.Data.OleDb.OleDbInfoMessageEventArgs.ErrorCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbInfoMessageEvent.cs#L22C17-L22C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbInfoMessageEvent.cs#L22C17-L22C49" }, { "DocsId": "P:System.Data.OleDb.OleDbInfoMessageEventArgs.Errors", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbInfoMessageEvent.cs#L30C17-L30C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbInfoMessageEvent.cs#L30C17-L30C46" }, { "DocsId": "P:System.Data.OleDb.OleDbInfoMessageEventArgs.Message", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbInfoMessageEvent.cs#L38C17-L38C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbInfoMessageEvent.cs#L38C17-L38C47" }, { "DocsId": "P:System.Data.OleDb.OleDbInfoMessageEventArgs.Source", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbInfoMessageEvent.cs#L46C17-L46C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbInfoMessageEvent.cs#L46C17-L46C46" } ], "DocsId": "T:System.Data.OleDb.OleDbInfoMessageEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbInfoMessageEvent.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbInfoMessageEvent.cs" }, { "Members": [ { "DocsId": "M:System.Data.OleDb.OleDbInfoMessageEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbInfoMessageEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbInfoMessageEventHandler.cs" }, { "DocsId": "M:System.Data.OleDb.OleDbInfoMessageEventHandler.Invoke(System.Object,System.Data.OleDb.OleDbInfoMessageEventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbInfoMessageEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbInfoMessageEventHandler.cs" }, { "DocsId": "M:System.Data.OleDb.OleDbInfoMessageEventHandler.BeginInvoke(System.Object,System.Data.OleDb.OleDbInfoMessageEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbInfoMessageEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbInfoMessageEventHandler.cs" }, { "DocsId": "M:System.Data.OleDb.OleDbInfoMessageEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbInfoMessageEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbInfoMessageEventHandler.cs" } ], "DocsId": "T:System.Data.OleDb.OleDbInfoMessageEventHandler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbInfoMessageEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbInfoMessageEventHandler.cs" }, { "Members": [ { "DocsId": "F:System.Data.OleDb.OleDbLiteral.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbLiteral.Invalid", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbLiteral.Binary_Literal", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbLiteral.Catalog_Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbLiteral.Catalog_Separator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbLiteral.Char_Literal", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbLiteral.Column_Alias", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbLiteral.Column_Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbLiteral.Correlation_Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbLiteral.Cursor_Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbLiteral.Escape_Percent_Prefix", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbLiteral.Escape_Underscore_Prefix", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbLiteral.Index_Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbLiteral.Like_Percent", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbLiteral.Like_Underscore", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbLiteral.Procedure_Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbLiteral.Quote_Prefix", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbLiteral.Schema_Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbLiteral.Table_Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbLiteral.Text_Command", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbLiteral.User_Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbLiteral.View_Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbLiteral.Cube_Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbLiteral.Dimension_Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbLiteral.Hierarchy_Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbLiteral.Level_Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbLiteral.Member_Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbLiteral.Property_Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbLiteral.Schema_Separator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbLiteral.Quote_Suffix", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbLiteral.Escape_Percent_Suffix", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbLiteral.Escape_Underscore_Suffix", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" } ], "DocsId": "T:System.Data.OleDb.OleDbLiteral", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbLiteral.cs" }, { "Members": [ { "DocsId": "F:System.Data.OleDb.OleDbMetaDataCollectionNames.Catalogs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbMetadataCollectionNames.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbMetadataCollectionNames.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbMetaDataCollectionNames.Collations", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbMetadataCollectionNames.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbMetadataCollectionNames.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbMetaDataCollectionNames.Columns", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbMetadataCollectionNames.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbMetadataCollectionNames.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbMetaDataCollectionNames.Indexes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbMetadataCollectionNames.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbMetadataCollectionNames.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbMetaDataCollectionNames.Procedures", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbMetadataCollectionNames.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbMetadataCollectionNames.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbMetaDataCollectionNames.ProcedureColumns", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbMetadataCollectionNames.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbMetadataCollectionNames.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbMetaDataCollectionNames.ProcedureParameters", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbMetadataCollectionNames.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbMetadataCollectionNames.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbMetaDataCollectionNames.Tables", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbMetadataCollectionNames.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbMetadataCollectionNames.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbMetaDataCollectionNames.Views", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbMetadataCollectionNames.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbMetadataCollectionNames.cs" } ], "DocsId": "T:System.Data.OleDb.OleDbMetaDataCollectionNames", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbMetadataCollectionNames.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbMetadataCollectionNames.cs" }, { "Members": [ { "DocsId": "F:System.Data.OleDb.OleDbMetaDataColumnNames.BooleanFalseLiteral", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbMetadataColumnNames.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbMetadataColumnNames.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbMetaDataColumnNames.BooleanTrueLiteral", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbMetadataColumnNames.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbMetadataColumnNames.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbMetaDataColumnNames.NativeDataType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbMetadataColumnNames.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbMetadataColumnNames.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbMetaDataColumnNames.DateTimeDigits", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbMetadataColumnNames.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbMetadataColumnNames.cs" } ], "DocsId": "T:System.Data.OleDb.OleDbMetaDataColumnNames", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbMetadataColumnNames.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbMetadataColumnNames.cs" }, { "Members": [ { "DocsId": "M:System.Data.OleDb.OleDbParameterCollection.Add(System.Data.OleDb.OleDbParameter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameterCollection.cs#L63C13-L64C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameterCollection.cs#L63C13-L64C26" }, { "DocsId": "M:System.Data.OleDb.OleDbParameterCollection.Add(System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameterCollection.cs#L71C13-L71C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameterCollection.cs#L71C13-L71C66" }, { "DocsId": "M:System.Data.OleDb.OleDbParameterCollection.AddWithValue(System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameterCollection.cs#L76C13-L76C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameterCollection.cs#L76C13-L76C66" }, { "DocsId": "M:System.Data.OleDb.OleDbParameterCollection.Add(System.String,System.Data.OleDb.OleDbType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameterCollection.cs#L81C13-L81C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameterCollection.cs#L81C13-L81C70" }, { "DocsId": "M:System.Data.OleDb.OleDbParameterCollection.Add(System.String,System.Data.OleDb.OleDbType,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameterCollection.cs#L86C13-L86C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameterCollection.cs#L86C13-L86C76" }, { "DocsId": "M:System.Data.OleDb.OleDbParameterCollection.Add(System.String,System.Data.OleDb.OleDbType,System.Int32,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameterCollection.cs#L91C13-L91C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameterCollection.cs#L91C13-L91C90" }, { "DocsId": "M:System.Data.OleDb.OleDbParameterCollection.AddRange(System.Data.OleDb.OleDbParameter[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameterCollection.cs#L96C13-L97C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameterCollection.cs#L96C13-L97C10" }, { "DocsId": "M:System.Data.OleDb.OleDbParameterCollection.Contains(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameterCollection.cs#L101C13-L101C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameterCollection.cs#L101C13-L101C43" }, { "DocsId": "M:System.Data.OleDb.OleDbParameterCollection.Contains(System.Data.OleDb.OleDbParameter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameterCollection.cs#L106C13-L106C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameterCollection.cs#L106C13-L106C43" }, { "DocsId": "M:System.Data.OleDb.OleDbParameterCollection.CopyTo(System.Data.OleDb.OleDbParameter[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameterCollection.cs#L111C13-L112C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameterCollection.cs#L111C13-L112C10" }, { "DocsId": "M:System.Data.OleDb.OleDbParameterCollection.IndexOf(System.Data.OleDb.OleDbParameter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameterCollection.cs#L116C13-L116C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameterCollection.cs#L116C13-L116C43" }, { "DocsId": "M:System.Data.OleDb.OleDbParameterCollection.Insert(System.Int32,System.Data.OleDb.OleDbParameter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameterCollection.cs#L121C13-L122C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameterCollection.cs#L121C13-L122C10" }, { "DocsId": "M:System.Data.OleDb.OleDbParameterCollection.Remove(System.Data.OleDb.OleDbParameter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameterCollection.cs#L132C13-L133C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameterCollection.cs#L132C13-L133C10" }, { "DocsId": "M:System.Data.OleDb.OleDbParameterCollection.Add(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameterCollectionHelper.cs#L73C13-L77C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameterCollectionHelper.cs#L73C13-L77C30" }, { "DocsId": "M:System.Data.OleDb.OleDbParameterCollection.AddRange(System.Array)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameterCollectionHelper.cs#L82C13-L96C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameterCollectionHelper.cs#L82C13-L96C10" }, { "DocsId": "M:System.Data.OleDb.OleDbParameterCollection.Clear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameterCollectionHelper.cs#L110C13-L121C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameterCollectionHelper.cs#L110C13-L121C10" }, { "DocsId": "M:System.Data.OleDb.OleDbParameterCollection.Contains(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameterCollectionHelper.cs#L125C13-L125C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameterCollectionHelper.cs#L125C13-L125C43" }, { "DocsId": "M:System.Data.OleDb.OleDbParameterCollection.CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameterCollectionHelper.cs#L130C13-L131C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameterCollectionHelper.cs#L130C13-L131C10" }, { "DocsId": "M:System.Data.OleDb.OleDbParameterCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameterCollectionHelper.cs#L135C13-L135C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameterCollectionHelper.cs#L135C13-L135C80" }, { "DocsId": "M:System.Data.OleDb.OleDbParameterCollection.GetParameter(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameterCollectionHelper.cs#L140C13-L141C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameterCollectionHelper.cs#L140C13-L141C37" }, { "DocsId": "M:System.Data.OleDb.OleDbParameterCollection.GetParameter(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameterCollectionHelper.cs#L146C13-L151C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameterCollectionHelper.cs#L146C13-L151C37" }, { "DocsId": "M:System.Data.OleDb.OleDbParameterCollection.IndexOf(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameterCollectionHelper.cs#L184C13-L184C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameterCollectionHelper.cs#L184C13-L184C54" }, { "DocsId": "M:System.Data.OleDb.OleDbParameterCollection.IndexOf(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameterCollectionHelper.cs#L189C13-L208C23" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameterCollectionHelper.cs#L189C13-L208C23" }, { "DocsId": "M:System.Data.OleDb.OleDbParameterCollection.Insert(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameterCollectionHelper.cs#L213C13-L217C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameterCollectionHelper.cs#L213C13-L217C10" }, { "DocsId": "M:System.Data.OleDb.OleDbParameterCollection.Remove(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameterCollectionHelper.cs#L229C13-L240C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameterCollectionHelper.cs#L229C13-L240C10" }, { "DocsId": "M:System.Data.OleDb.OleDbParameterCollection.RemoveAt(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameterCollectionHelper.cs#L244C13-L247C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameterCollectionHelper.cs#L244C13-L247C10" }, { "DocsId": "M:System.Data.OleDb.OleDbParameterCollection.RemoveAt(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameterCollectionHelper.cs#L251C13-L254C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameterCollectionHelper.cs#L251C13-L254C10" }, { "DocsId": "M:System.Data.OleDb.OleDbParameterCollection.SetParameter(System.Int32,System.Data.Common.DbParameter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameterCollectionHelper.cs#L278C13-L281C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameterCollectionHelper.cs#L278C13-L281C10" }, { "DocsId": "M:System.Data.OleDb.OleDbParameterCollection.SetParameter(System.String,System.Data.Common.DbParameter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameterCollectionHelper.cs#L285C13-L292C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameterCollectionHelper.cs#L285C13-L292C10" }, { "DocsId": "P:System.Data.OleDb.OleDbParameterCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameterCollection.cs#L37C17-L37C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameterCollection.cs#L37C17-L37C60" }, { "DocsId": "P:System.Data.OleDb.OleDbParameterCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameterCollection.cs#L53C17-L53C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameterCollection.cs#L53C17-L53C68" }, { "DocsId": "P:System.Data.OleDb.OleDbParameterCollection.Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameterCollectionHelper.cs#L20C17-L20C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameterCollectionHelper.cs#L20C17-L20C62" }, { "DocsId": "P:System.Data.OleDb.OleDbParameterCollection.IsFixedSize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameterCollectionHelper.cs#L43C17-L43C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameterCollectionHelper.cs#L43C17-L43C74" }, { "DocsId": "P:System.Data.OleDb.OleDbParameterCollection.IsReadOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameterCollectionHelper.cs#L51C17-L51C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameterCollectionHelper.cs#L51C17-L51C73" }, { "DocsId": "P:System.Data.OleDb.OleDbParameterCollection.IsSynchronized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameterCollectionHelper.cs#L59C17-L59C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameterCollectionHelper.cs#L59C17-L59C83" }, { "DocsId": "P:System.Data.OleDb.OleDbParameterCollection.SyncRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameterCollectionHelper.cs#L67C17-L67C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameterCollectionHelper.cs#L67C17-L67C77" } ], "DocsId": "T:System.Data.OleDb.OleDbParameterCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbParameterCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbParameterCollection.cs" }, { "Members": [ { "DocsId": "M:System.Data.OleDb.OleDbRowUpdatedEventArgs.#ctor(System.Data.DataRow,System.Data.IDbCommand,System.Data.StatementType,System.Data.Common.DataTableMapping)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbRowUpdatedEvent.cs#L11C11-L13C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbRowUpdatedEvent.cs#L11C11-L13C10" }, { "DocsId": "P:System.Data.OleDb.OleDbRowUpdatedEventArgs.Command", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbRowUpdatedEvent.cs#L19C17-L19C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbRowUpdatedEvent.cs#L19C17-L19C52" } ], "DocsId": "T:System.Data.OleDb.OleDbRowUpdatedEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbRowUpdatedEvent.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbRowUpdatedEvent.cs" }, { "Members": [ { "DocsId": "M:System.Data.OleDb.OleDbRowUpdatedEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbRowUpdatedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbRowUpdatedEventHandler.cs" }, { "DocsId": "M:System.Data.OleDb.OleDbRowUpdatedEventHandler.Invoke(System.Object,System.Data.OleDb.OleDbRowUpdatedEventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbRowUpdatedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbRowUpdatedEventHandler.cs" }, { "DocsId": "M:System.Data.OleDb.OleDbRowUpdatedEventHandler.BeginInvoke(System.Object,System.Data.OleDb.OleDbRowUpdatedEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbRowUpdatedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbRowUpdatedEventHandler.cs" }, { "DocsId": "M:System.Data.OleDb.OleDbRowUpdatedEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbRowUpdatedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbRowUpdatedEventHandler.cs" } ], "DocsId": "T:System.Data.OleDb.OleDbRowUpdatedEventHandler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbRowUpdatedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbRowUpdatedEventHandler.cs" }, { "Members": [ { "DocsId": "M:System.Data.OleDb.OleDbRowUpdatingEventArgs.#ctor(System.Data.DataRow,System.Data.IDbCommand,System.Data.StatementType,System.Data.Common.DataTableMapping)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbRowUpdatingEvent.cs#L11C11-L13C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbRowUpdatingEvent.cs#L11C11-L13C10" }, { "DocsId": "P:System.Data.OleDb.OleDbRowUpdatingEventArgs.Command", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbRowUpdatingEvent.cs#L17C19-L17C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbRowUpdatingEvent.cs#L17C19-L17C57" }, { "DocsId": "P:System.Data.OleDb.OleDbRowUpdatingEventArgs.BaseCommand", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbRowUpdatingEvent.cs#L23C19-L23C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbRowUpdatingEvent.cs#L23C19-L23C43" } ], "DocsId": "T:System.Data.OleDb.OleDbRowUpdatingEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbRowUpdatingEvent.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbRowUpdatingEvent.cs" }, { "Members": [ { "DocsId": "M:System.Data.OleDb.OleDbRowUpdatingEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbRowUpdatingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbRowUpdatingEventHandler.cs" }, { "DocsId": "M:System.Data.OleDb.OleDbRowUpdatingEventHandler.Invoke(System.Object,System.Data.OleDb.OleDbRowUpdatingEventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbRowUpdatingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbRowUpdatingEventHandler.cs" }, { "DocsId": "M:System.Data.OleDb.OleDbRowUpdatingEventHandler.BeginInvoke(System.Object,System.Data.OleDb.OleDbRowUpdatingEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbRowUpdatingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbRowUpdatingEventHandler.cs" }, { "DocsId": "M:System.Data.OleDb.OleDbRowUpdatingEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbRowUpdatingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbRowUpdatingEventHandler.cs" } ], "DocsId": "T:System.Data.OleDb.OleDbRowUpdatingEventHandler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbRowUpdatingEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbRowUpdatingEventHandler.cs" }, { "Members": [ { "DocsId": "M:System.Data.OleDb.OleDbSchemaGuid.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs#L12C9-L12C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs#L12C9-L12C37" }, { "DocsId": "F:System.Data.OleDb.OleDbSchemaGuid.Tables_Info", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbSchemaGuid.Trustee", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbSchemaGuid.Assertions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbSchemaGuid.Catalogs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbSchemaGuid.Character_Sets", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbSchemaGuid.Collations", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbSchemaGuid.Columns", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbSchemaGuid.Check_Constraints", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbSchemaGuid.Constraint_Column_Usage", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbSchemaGuid.Constraint_Table_Usage", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbSchemaGuid.Key_Column_Usage", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbSchemaGuid.Referential_Constraints", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbSchemaGuid.Table_Constraints", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbSchemaGuid.Column_Domain_Usage", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbSchemaGuid.Indexes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbSchemaGuid.Column_Privileges", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbSchemaGuid.Table_Privileges", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbSchemaGuid.Usage_Privileges", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbSchemaGuid.Procedures", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbSchemaGuid.Schemata", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbSchemaGuid.Sql_Languages", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbSchemaGuid.Statistics", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbSchemaGuid.Tables", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbSchemaGuid.Translations", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbSchemaGuid.Provider_Types", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbSchemaGuid.Views", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbSchemaGuid.View_Column_Usage", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbSchemaGuid.View_Table_Usage", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbSchemaGuid.Procedure_Parameters", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbSchemaGuid.Foreign_Keys", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbSchemaGuid.Primary_Keys", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbSchemaGuid.Procedure_Columns", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbSchemaGuid.Table_Statistics", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbSchemaGuid.Check_Constraints_By_Table", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbSchemaGuid.SchemaGuids", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbSchemaGuid.DbInfoKeywords", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbSchemaGuid.DbInfoLiterals", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" } ], "DocsId": "T:System.Data.OleDb.OleDbSchemaGuid", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbSchemaGuid.cs" }, { "Members": [ { "DocsId": "M:System.Data.OleDb.OleDbTransaction.Begin(System.Data.IsolationLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbTransaction.cs#L177C13-L203C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbTransaction.cs#L177C13-L203C32" }, { "DocsId": "M:System.Data.OleDb.OleDbTransaction.Begin", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbTransaction.cs#L208C13-L208C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbTransaction.cs#L208C13-L208C56" }, { "DocsId": "M:System.Data.OleDb.OleDbTransaction.Commit", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbTransaction.cs#L225C13-L230C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbTransaction.cs#L225C13-L230C10" }, { "DocsId": "M:System.Data.OleDb.OleDbTransaction.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbTransaction.cs#L274C13-L280C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbTransaction.cs#L274C13-L280C10" }, { "DocsId": "M:System.Data.OleDb.OleDbTransaction.Rollback", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbTransaction.cs#L305C13-L311C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbTransaction.cs#L305C13-L311C10" }, { "DocsId": "P:System.Data.OleDb.OleDbTransaction.Connection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbTransaction.cs#L143C17-L143C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbTransaction.cs#L143C17-L143C42" }, { "DocsId": "P:System.Data.OleDb.OleDbTransaction.DbConnection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbTransaction.cs#L151C17-L151C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbTransaction.cs#L151C17-L151C35" }, { "DocsId": "P:System.Data.OleDb.OleDbTransaction.IsolationLevel", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbTransaction.cs#L159C17-L163C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbTransaction.cs#L159C17-L163C40" } ], "DocsId": "T:System.Data.OleDb.OleDbTransaction", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbTransaction.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbTransaction.cs" }, { "Members": [ { "DocsId": "F:System.Data.OleDb.OleDbType.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbType.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbType.BigInt", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbType.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbType.Binary", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbType.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbType.Boolean", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbType.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbType.BSTR", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbType.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbType.Char", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbType.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbType.Currency", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbType.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbType.Date", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbType.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbType.DBDate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbType.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbType.DBTime", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbType.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbType.DBTimeStamp", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbType.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbType.Decimal", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbType.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbType.Double", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbType.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbType.Empty", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbType.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbType.Error", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbType.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbType.Filetime", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbType.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbType.Guid", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbType.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbType.IDispatch", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbType.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbType.Integer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbType.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbType.IUnknown", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbType.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbType.LongVarBinary", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbType.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbType.LongVarChar", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbType.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbType.LongVarWChar", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbType.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbType.Numeric", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbType.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbType.PropVariant", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbType.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbType.Single", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbType.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbType.SmallInt", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbType.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbType.TinyInt", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbType.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbType.UnsignedBigInt", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbType.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbType.UnsignedInt", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbType.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbType.UnsignedSmallInt", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbType.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbType.UnsignedTinyInt", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbType.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbType.VarBinary", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbType.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbType.VarChar", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbType.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbType.Variant", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbType.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbType.VarNumeric", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbType.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbType.VarWChar", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbType.cs" }, { "DocsId": "F:System.Data.OleDb.OleDbType.WChar", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbType.cs" } ], "DocsId": "T:System.Data.OleDb.OleDbType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Data.OleDb/src/OleDbType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Data.OleDb/src/OleDbType.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/System.Diagnostics.EventLog.json b/xml/SourceLinkInformation/net-9.0/System.Diagnostics.EventLog.json index 6bf6f047a2b..749e4e531d1 100644 --- a/xml/SourceLinkInformation/net-9.0/System.Diagnostics.EventLog.json +++ b/xml/SourceLinkInformation/net-9.0/System.Diagnostics.EventLog.json @@ -1,1795 +1,1794 @@ { "Assembly": "System.Diagnostics.EventLog", - "GUID": "8D5D6808048C411484D79D5C8D6BF52CFFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "03668C11833346B18785982817085A48FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:System.Diagnostics.EntryWrittenEventArgs.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EntryWrittenEventArgs.cs#L8C9-L10C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EntryWrittenEventArgs.cs#L8C9-L10C10" }, { "DocsId": "M:System.Diagnostics.EntryWrittenEventArgs.#ctor(System.Diagnostics.EventLogEntry)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EntryWrittenEventArgs.cs#L12C9-L15C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EntryWrittenEventArgs.cs#L12C9-L15C10" }, { "DocsId": "P:System.Diagnostics.EntryWrittenEventArgs.Entry", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EntryWrittenEventArgs.cs#L17C38-L17C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EntryWrittenEventArgs.cs#L17C38-L17C42" } ], "DocsId": "T:System.Diagnostics.EntryWrittenEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EntryWrittenEventArgs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EntryWrittenEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.EntryWrittenEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EntryWrittenEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EntryWrittenEventHandler.cs" }, { "DocsId": "M:System.Diagnostics.EntryWrittenEventHandler.Invoke(System.Object,System.Diagnostics.EntryWrittenEventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EntryWrittenEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EntryWrittenEventHandler.cs" }, { "DocsId": "M:System.Diagnostics.EntryWrittenEventHandler.BeginInvoke(System.Object,System.Diagnostics.EntryWrittenEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EntryWrittenEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EntryWrittenEventHandler.cs" }, { "DocsId": "M:System.Diagnostics.EntryWrittenEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EntryWrittenEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EntryWrittenEventHandler.cs" } ], "DocsId": "T:System.Diagnostics.EntryWrittenEventHandler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EntryWrittenEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EntryWrittenEventHandler.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.EventInstance.#ctor(System.Int64,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventData.cs#L11C9-L18C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventData.cs#L11C9-L18C10" }, { "DocsId": "M:System.Diagnostics.EventInstance.#ctor(System.Int64,System.Int32,System.Diagnostics.EventLogEntryType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventData.cs#L20C94-L23C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventData.cs#L20C94-L23C10" }, { "DocsId": "P:System.Diagnostics.EventInstance.CategoryId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventData.cs#L27C20-L27C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventData.cs#L27C20-L27C35" }, { "DocsId": "P:System.Diagnostics.EventInstance.EntryType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventData.cs#L39C20-L39C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventData.cs#L39C20-L39C30" }, { "DocsId": "P:System.Diagnostics.EventInstance.InstanceId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventData.cs#L51C20-L51C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventData.cs#L51C20-L51C31" } ], "DocsId": "T:System.Diagnostics.EventInstance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventData.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventData.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.EventLog.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L33C29-L35C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L33C29-L35C10" }, { "DocsId": "M:System.Diagnostics.EventLog.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L37C43-L39C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L37C43-L39C10" }, { "DocsId": "M:System.Diagnostics.EventLog.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L41C63-L43C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L41C63-L43C10" }, { "DocsId": "M:System.Diagnostics.EventLog.#ctor(System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L45C9-L48C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L45C9-L48C10" }, { "DocsId": "M:System.Diagnostics.EventLog.BeginInit", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L222C13-L223C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L222C13-L223C10" }, { "DocsId": "M:System.Diagnostics.EventLog.Clear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L227C13-L228C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L227C13-L228C10" }, { "DocsId": "M:System.Diagnostics.EventLog.Close", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L232C13-L233C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L232C13-L233C10" }, { "DocsId": "M:System.Diagnostics.EventLog.CreateEventSource(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L237C13-L238C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L237C13-L238C10" }, { "DocsId": "M:System.Diagnostics.EventLog.CreateEventSource(System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L243C13-L244C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L243C13-L244C10" }, { "DocsId": "M:System.Diagnostics.EventLog.CreateEventSource(System.Diagnostics.EventSourceCreationData)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L248C13-L355C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L248C13-L355C10" }, { "DocsId": "M:System.Diagnostics.EventLog.Delete(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L359C13-L360C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L359C13-L360C10" }, { "DocsId": "M:System.Diagnostics.EventLog.Delete(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L364C13-L429C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L364C13-L429C10" }, { "DocsId": "M:System.Diagnostics.EventLog.DeleteEventSource(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L433C13-L434C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L433C13-L434C10" }, { "DocsId": "M:System.Diagnostics.EventLog.DeleteEventSource(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L438C13-L481C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L438C13-L481C10" }, { "DocsId": "M:System.Diagnostics.EventLog.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L485C13-L487C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L485C13-L487C10" }, { "DocsId": "M:System.Diagnostics.EventLog.EndInit", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L491C13-L492C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L491C13-L492C10" }, { "DocsId": "M:System.Diagnostics.EventLog.Exists(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L496C13-L496C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L496C13-L496C41" }, { "DocsId": "M:System.Diagnostics.EventLog.Exists(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L501C13-L524C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L501C13-L524C10" }, { "DocsId": "M:System.Diagnostics.EventLog.GetEventLogs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L618C13-L618C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L618C13-L618C38" }, { "DocsId": "M:System.Diagnostics.EventLog.GetEventLogs(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L623C13-L667C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L623C13-L667C35" }, { "DocsId": "M:System.Diagnostics.EventLog.SourceExists(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L719C13-L719C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L719C13-L719C46" }, { "DocsId": "M:System.Diagnostics.EventLog.SourceExists(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L724C13-L724C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L724C13-L724C61" }, { "DocsId": "M:System.Diagnostics.EventLog.LogNameFromSourceName(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L742C13-L742C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L742C13-L742C72" }, { "DocsId": "M:System.Diagnostics.EventLog.ModifyOverflowPolicy(System.Diagnostics.OverflowAction,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L763C13-L764C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L763C13-L764C10" }, { "DocsId": "M:System.Diagnostics.EventLog.RegisterDisplayName(System.String,System.Int64)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L768C13-L769C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L768C13-L769C10" }, { "DocsId": "M:System.Diagnostics.EventLog.WriteEntry(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L976C13-L977C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L976C13-L977C10" }, { "DocsId": "M:System.Diagnostics.EventLog.WriteEntry(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L981C13-L982C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L981C13-L982C10" }, { "DocsId": "M:System.Diagnostics.EventLog.WriteEntry(System.String,System.Diagnostics.EventLogEntryType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L986C13-L987C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L986C13-L987C10" }, { "DocsId": "M:System.Diagnostics.EventLog.WriteEntry(System.String,System.String,System.Diagnostics.EventLogEntryType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L991C13-L992C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L991C13-L992C10" }, { "DocsId": "M:System.Diagnostics.EventLog.WriteEntry(System.String,System.Diagnostics.EventLogEntryType,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L996C13-L997C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L996C13-L997C10" }, { "DocsId": "M:System.Diagnostics.EventLog.WriteEntry(System.String,System.String,System.Diagnostics.EventLogEntryType,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L1001C13-L1002C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L1001C13-L1002C10" }, { "DocsId": "M:System.Diagnostics.EventLog.WriteEntry(System.String,System.Diagnostics.EventLogEntryType,System.Int32,System.Int16)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L1006C13-L1007C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L1006C13-L1007C10" }, { "DocsId": "M:System.Diagnostics.EventLog.WriteEntry(System.String,System.String,System.Diagnostics.EventLogEntryType,System.Int32,System.Int16)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L1011C13-L1012C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L1011C13-L1012C10" }, { "DocsId": "M:System.Diagnostics.EventLog.WriteEntry(System.String,System.String,System.Diagnostics.EventLogEntryType,System.Int32,System.Int16,System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L1016C20-L1020C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L1016C20-L1020C10" }, { "DocsId": "M:System.Diagnostics.EventLog.WriteEntry(System.String,System.Diagnostics.EventLogEntryType,System.Int32,System.Int16,System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L1024C13-L1025C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L1024C13-L1025C10" }, { "DocsId": "M:System.Diagnostics.EventLog.WriteEvent(System.Diagnostics.EventInstance,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L1029C13-L1030C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L1029C13-L1030C10" }, { "DocsId": "M:System.Diagnostics.EventLog.WriteEvent(System.Diagnostics.EventInstance,System.Byte[],System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L1034C13-L1035C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L1034C13-L1035C10" }, { "DocsId": "M:System.Diagnostics.EventLog.WriteEvent(System.String,System.Diagnostics.EventInstance,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L1039C20-L1043C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L1039C20-L1043C10" }, { "DocsId": "M:System.Diagnostics.EventLog.WriteEvent(System.String,System.Diagnostics.EventInstance,System.Byte[],System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L1047C20-L1051C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L1047C20-L1051C10" }, { "DocsId": "E:System.Diagnostics.EventLog.EntryWritten", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L212C17-L213C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L212C17-L213C14" }, { "DocsId": "P:System.Diagnostics.EventLog.Entries", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L59C17-L59C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L59C17-L59C52" }, { "DocsId": "P:System.Diagnostics.EventLog.LogDisplayName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L68C17-L68C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L68C17-L68C59" }, { "DocsId": "P:System.Diagnostics.EventLog.Log", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L82C17-L82C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L82C17-L82C48" }, { "DocsId": "P:System.Diagnostics.EventLog.MachineName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L110C17-L110C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L110C17-L110C56" }, { "DocsId": "P:System.Diagnostics.EventLog.MaximumKilobytes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L132C20-L132C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L132C20-L132C56" }, { "DocsId": "P:System.Diagnostics.EventLog.OverflowAction", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L139C20-L139C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L139C20-L139C54" }, { "DocsId": "P:System.Diagnostics.EventLog.MinimumRetentionDays", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L145C20-L145C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L145C20-L145C60" }, { "DocsId": "P:System.Diagnostics.EventLog.EnableRaisingEvents", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L165C20-L165C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L165C20-L165C59" }, { "DocsId": "P:System.Diagnostics.EventLog.SynchronizingObject", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L176C20-L176C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L176C20-L176C59" }, { "DocsId": "P:System.Diagnostics.EventLog.Source", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L188C20-L188C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs#L188C20-L188C46" } ], "DocsId": "T:System.Diagnostics.EventLog", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLog.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.EventLogEntry.Equals(System.Diagnostics.EventLogEntry)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L303C13-L320C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L303C13-L320C25" }, { "DocsId": "M:System.Diagnostics.EventLogEntry.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L453C13-L453C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L453C13-L453C55" }, { "DocsId": "P:System.Diagnostics.EventLogEntry.MachineName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L42C17-L55C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L42C17-L55C39" }, { "DocsId": "P:System.Diagnostics.EventLogEntry.Data", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L66C17-L70C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L66C17-L70C29" }, { "DocsId": "P:System.Diagnostics.EventLogEntry.Index", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L81C17-L81C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L81C17-L81C80" }, { "DocsId": "P:System.Diagnostics.EventLogEntry.Category", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L92C17-L102C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L92C17-L102C33" }, { "DocsId": "P:System.Diagnostics.EventLogEntry.CategoryNumber", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L113C17-L113C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L113C17-L113C83" }, { "DocsId": "P:System.Diagnostics.EventLogEntry.EventID", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L125C17-L125C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L125C17-L125C88" }, { "DocsId": "P:System.Diagnostics.EventLogEntry.EntryType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L136C17-L136C98" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L136C17-L136C98" }, { "DocsId": "P:System.Diagnostics.EventLogEntry.Message", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L149C17-L175C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L149C17-L175C32" }, { "DocsId": "P:System.Diagnostics.EventLogEntry.Source", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L186C17-L197C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L186C17-L197C39" }, { "DocsId": "P:System.Diagnostics.EventLogEntry.ReplacementStrings", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L208C17-L227C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L208C17-L227C32" }, { "DocsId": "P:System.Diagnostics.EventLogEntry.InstanceId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L238C17-L238C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L238C17-L238C81" }, { "DocsId": "P:System.Diagnostics.EventLogEntry.TimeGenerated", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L249C17-L249C123" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L249C17-L249C123" }, { "DocsId": "P:System.Diagnostics.EventLogEntry.TimeWritten", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L260C17-L260C121" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L260C17-L260C121" }, { "DocsId": "P:System.Diagnostics.EventLogEntry.UserName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L271C17-L292C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs#L271C17-L292C37" } ], "DocsId": "T:System.Diagnostics.EventLogEntry", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntry.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.EventLogEntryCollection.CopyTo(System.Diagnostics.EventLogEntry[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryCollection.cs#L35C13-L36C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryCollection.cs#L35C13-L36C10" }, { "DocsId": "M:System.Diagnostics.EventLogEntryCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryCollection.cs#L40C13-L40C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryCollection.cs#L40C13-L40C48" }, { "DocsId": "M:System.Diagnostics.EventLogEntryCollection.System#Collections#ICollection#get_IsSynchronized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryCollection.cs#L52C17-L52C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryCollection.cs#L52C17-L52C30" }, { "DocsId": "M:System.Diagnostics.EventLogEntryCollection.System#Collections#ICollection#get_SyncRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryCollection.cs#L60C17-L60C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryCollection.cs#L60C17-L60C29" }, { "DocsId": "M:System.Diagnostics.EventLogEntryCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryCollection.cs#L66C13-L68C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryCollection.cs#L66C13-L68C10" }, { "DocsId": "P:System.Diagnostics.EventLogEntryCollection.Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryCollection.cs#L21C17-L21C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryCollection.cs#L21C17-L21C40" }, { "DocsId": "P:System.Diagnostics.EventLogEntryCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryCollection.cs#L29C17-L29C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryCollection.cs#L29C17-L29C47" }, { "DocsId": "P:System.Diagnostics.EventLogEntryCollection.System#Collections#ICollection#IsSynchronized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryCollection.cs#L52C17-L52C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryCollection.cs#L52C17-L52C30" }, { "DocsId": "P:System.Diagnostics.EventLogEntryCollection.System#Collections#ICollection#SyncRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryCollection.cs#L60C17-L60C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryCollection.cs#L60C17-L60C29" } ], "DocsId": "T:System.Diagnostics.EventLogEntryCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryCollection.cs" }, { "Members": [ { "DocsId": "F:System.Diagnostics.EventLogEntryType.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryType.cs" }, { "DocsId": "F:System.Diagnostics.EventLogEntryType.Error", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryType.cs" }, { "DocsId": "F:System.Diagnostics.EventLogEntryType.Warning", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryType.cs" }, { "DocsId": "F:System.Diagnostics.EventLogEntryType.Information", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryType.cs" }, { "DocsId": "F:System.Diagnostics.EventLogEntryType.SuccessAudit", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryType.cs" }, { "DocsId": "F:System.Diagnostics.EventLogEntryType.FailureAudit", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryType.cs" } ], "DocsId": "T:System.Diagnostics.EventLogEntryType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogEntryType.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.EventSourceCreationData.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventSourceCreationData.cs#L23C47-L16C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventSourceCreationData.cs#L23C47-L16C10" }, { "DocsId": "P:System.Diagnostics.EventSourceCreationData.LogName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventSourceCreationData.cs#L23C33-L23C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventSourceCreationData.cs#L23C33-L23C37" }, { "DocsId": "P:System.Diagnostics.EventSourceCreationData.MachineName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventSourceCreationData.cs#L25C37-L25C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventSourceCreationData.cs#L25C37-L25C41" }, { "DocsId": "P:System.Diagnostics.EventSourceCreationData.Source", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventSourceCreationData.cs#L27C32-L27C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventSourceCreationData.cs#L27C32-L27C36" }, { "DocsId": "P:System.Diagnostics.EventSourceCreationData.MessageResourceFile", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventSourceCreationData.cs#L29C45-L29C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventSourceCreationData.cs#L29C45-L29C49" }, { "DocsId": "P:System.Diagnostics.EventSourceCreationData.ParameterResourceFile", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventSourceCreationData.cs#L31C47-L31C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventSourceCreationData.cs#L31C47-L31C51" }, { "DocsId": "P:System.Diagnostics.EventSourceCreationData.CategoryResourceFile", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventSourceCreationData.cs#L33C46-L33C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventSourceCreationData.cs#L33C46-L33C50" }, { "DocsId": "P:System.Diagnostics.EventSourceCreationData.CategoryCount", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventSourceCreationData.cs#L37C19-L37C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventSourceCreationData.cs#L37C19-L37C41" } ], "DocsId": "T:System.Diagnostics.EventSourceCreationData", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventSourceCreationData.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventSourceCreationData.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.EventLogTraceListener.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogTraceListener.cs#L14C9-L16C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogTraceListener.cs#L14C9-L16C10" }, { "DocsId": "M:System.Diagnostics.EventLogTraceListener.#ctor(System.Diagnostics.EventLog)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogTraceListener.cs#L19C15-L22C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogTraceListener.cs#L19C15-L22C10" }, { "DocsId": "M:System.Diagnostics.EventLogTraceListener.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogTraceListener.cs#L24C9-L30C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogTraceListener.cs#L24C9-L30C10" }, { "DocsId": "M:System.Diagnostics.EventLogTraceListener.Close", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogTraceListener.cs#L58C41-L58C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogTraceListener.cs#L58C41-L58C58" }, { "DocsId": "M:System.Diagnostics.EventLogTraceListener.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogTraceListener.cs#L64C17-L74C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogTraceListener.cs#L64C17-L74C10" }, { "DocsId": "M:System.Diagnostics.EventLogTraceListener.Write(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogTraceListener.cs#L76C55-L76C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogTraceListener.cs#L76C55-L76C84" }, { "DocsId": "M:System.Diagnostics.EventLogTraceListener.WriteLine(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogTraceListener.cs#L78C59-L78C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogTraceListener.cs#L78C59-L78C73" }, { "DocsId": "M:System.Diagnostics.EventLogTraceListener.TraceEvent(System.Diagnostics.TraceEventCache,System.String,System.Diagnostics.TraceEventType,System.Int32,System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogTraceListener.cs#L83C13-L107C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogTraceListener.cs#L83C13-L107C10" }, { "DocsId": "M:System.Diagnostics.EventLogTraceListener.TraceEvent(System.Diagnostics.TraceEventCache,System.String,System.Diagnostics.TraceEventType,System.Int32,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogTraceListener.cs#L112C13-L116C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogTraceListener.cs#L112C13-L116C10" }, { "DocsId": "M:System.Diagnostics.EventLogTraceListener.TraceData(System.Diagnostics.TraceEventCache,System.String,System.Diagnostics.TraceEventType,System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogTraceListener.cs#L121C13-L125C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogTraceListener.cs#L121C13-L125C10" }, { "DocsId": "M:System.Diagnostics.EventLogTraceListener.TraceData(System.Diagnostics.TraceEventCache,System.String,System.Diagnostics.TraceEventType,System.Int32,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogTraceListener.cs#L130C13-L149C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogTraceListener.cs#L130C13-L149C10" }, { "DocsId": "P:System.Diagnostics.EventLogTraceListener.EventLog", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogTraceListener.cs#L34C13-L34C17" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogTraceListener.cs#L34C13-L34C17" }, { "DocsId": "P:System.Diagnostics.EventLogTraceListener.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogTraceListener.cs#L42C17-L48C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogTraceListener.cs#L42C17-L48C34" } ], "DocsId": "T:System.Diagnostics.EventLogTraceListener", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogTraceListener.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/EventLogTraceListener.cs" }, { "Members": [ { "DocsId": "F:System.Diagnostics.OverflowAction.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/OverflowAction.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/OverflowAction.cs" }, { "DocsId": "F:System.Diagnostics.OverflowAction.DoNotOverwrite", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/OverflowAction.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/OverflowAction.cs" }, { "DocsId": "F:System.Diagnostics.OverflowAction.OverwriteAsNeeded", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/OverflowAction.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/OverflowAction.cs" }, { "DocsId": "F:System.Diagnostics.OverflowAction.OverwriteOlder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/OverflowAction.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/OverflowAction.cs" } ], "DocsId": "T:System.Diagnostics.OverflowAction", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/OverflowAction.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/OverflowAction.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventBookmark.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventBookmark.cs#L24C9-L29C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventBookmark.cs#L24C9-L29C10" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventBookmark.BookmarkXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventBookmark.cs#L34C37-L34C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventBookmark.cs#L34C37-L34C41" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.EventBookmark", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventBookmark.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventBookmark.cs" }, { "Members": [ { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventKeyword.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventKeyword.cs#L68C17-L69C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventKeyword.cs#L68C17-L69C30" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventKeyword.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventKeyword.cs#L73C29-L73C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventKeyword.cs#L73C29-L73C33" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventKeyword.DisplayName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventKeyword.cs#L79C17-L80C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventKeyword.cs#L79C17-L80C37" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.EventKeyword", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventKeyword.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventKeyword.cs" }, { "Members": [ { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLevel.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLevel.cs#L66C17-L67C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLevel.cs#L66C17-L67C30" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLevel.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLevel.cs#L71C28-L71C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLevel.cs#L71C28-L71C32" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLevel.DisplayName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLevel.cs#L77C17-L78C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLevel.cs#L77C17-L78C37" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.EventLevel", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLevel.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLevel.cs" }, { "Members": [ { "DocsId": "F:System.Diagnostics.Eventing.Reader.EventLogType.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.EventLogType.Administrative", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.EventLogType.Operational", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.EventLogType.Analytical", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.EventLogType.Debug", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.EventLogType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" }, { "Members": [ { "DocsId": "F:System.Diagnostics.Eventing.Reader.EventLogIsolation.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.EventLogIsolation.Application", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.EventLogIsolation.System", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.EventLogIsolation.Custom", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.EventLogIsolation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" }, { "Members": [ { "DocsId": "F:System.Diagnostics.Eventing.Reader.EventLogMode.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.EventLogMode.Circular", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.EventLogMode.AutoBackup", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.EventLogMode.Retain", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.EventLogMode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogConfiguration.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L50C56-L50C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L50C56-L50C79" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogConfiguration.#ctor(System.String,System.Diagnostics.Eventing.Reader.EventLogSession)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L46C9-L60C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L46C9-L60C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogConfiguration.SaveChanges", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L256C13-L257C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L256C13-L257C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogConfiguration.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L261C13-L263C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L261C13-L263C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogConfiguration.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L267C13-L269C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L267C13-L269C10" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogConfiguration.LogName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L62C33-L62C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L62C33-L62C37" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogConfiguration.LogType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L68C17-L68C166" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L68C17-L68C166" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogConfiguration.LogIsolation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L76C17-L76C176" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L76C17-L76C176" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogConfiguration.IsEnabled", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L84C17-L84C153" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L84C17-L84C153" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogConfiguration.IsClassicLog", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L96C17-L96C161" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L96C17-L96C161" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogConfiguration.SecurityDescriptor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L104C17-L104C154" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L104C17-L104C154" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogConfiguration.LogFilePath", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L116C17-L116C166" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L116C17-L116C166" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogConfiguration.MaximumSizeInBytes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L128C17-L128C169" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L128C17-L128C169" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogConfiguration.LogMode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L140C17-L152C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L140C17-L152C46" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogConfiguration.OwningProviderName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L178C17-L178C163" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L178C17-L178C163" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogConfiguration.ProviderNames", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L186C17-L186C157" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L186C17-L186C157" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogConfiguration.ProviderLevel", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L194C17-L194C170" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L194C17-L194C170" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogConfiguration.ProviderKeywords", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L206C17-L206C175" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L206C17-L206C175" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogConfiguration.ProviderBufferSize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L218C17-L218C175" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L218C17-L218C175" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogConfiguration.ProviderMinimumNumberOfBuffers", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L226C17-L226C175" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L226C17-L226C175" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogConfiguration.ProviderMaximumNumberOfBuffers", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L234C17-L234C175" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L234C17-L234C175" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogConfiguration.ProviderLatency", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L242C17-L242C172" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L242C17-L242C172" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogConfiguration.ProviderControlGuid", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L250C17-L250C170" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs#L250C17-L250C170" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.EventLogConfiguration", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogConfiguration.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogException.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L51C9-L51C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L51C9-L51C39" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L52C52-L52C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L52C52-L52C69" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L53C78-L53C111" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L53C78-L53C111" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogException.#ctor(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L54C9-L58C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L54C9-L58C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L76C15-L79C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L76C15-L79C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L87C13-L89C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L87C13-L89C10" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogException.Message", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L64C17-L65C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L64C17-L65C47" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.EventLogException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogNotFoundException.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L98C9-L98C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L98C9-L98C47" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogNotFoundException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L99C60-L99C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L99C60-L99C77" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogNotFoundException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L100C86-L100C119" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L100C86-L100C119" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogNotFoundException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L106C119-L106C164" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L106C119-L106C164" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.EventLogNotFoundException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogReadingException.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L117C9-L117C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L117C9-L117C46" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogReadingException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L118C59-L118C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L118C59-L118C76" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogReadingException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L119C85-L119C118" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L119C85-L119C118" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogReadingException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L125C118-L125C163" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L125C118-L125C163" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.EventLogReadingException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogProviderDisabledException.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L136C9-L136C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L136C9-L136C55" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogProviderDisabledException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L137C68-L137C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L137C68-L137C85" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogProviderDisabledException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L138C94-L138C127" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L138C94-L138C127" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogProviderDisabledException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L144C127-L144C172" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L144C127-L144C172" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.EventLogProviderDisabledException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogInvalidDataException.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L153C9-L153C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L153C9-L153C50" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogInvalidDataException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L154C63-L154C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L154C63-L154C80" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogInvalidDataException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L155C89-L155C122" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L155C89-L155C122" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogInvalidDataException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L161C122-L161C167" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs#L161C122-L161C167" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.EventLogInvalidDataException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogException.cs" }, { "Members": [ { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogInformation.CreationTime", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogInformation.cs#L31C41-L31C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogInformation.cs#L31C41-L31C45" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogInformation.LastAccessTime", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogInformation.cs#L32C43-L32C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogInformation.cs#L32C43-L32C47" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogInformation.LastWriteTime", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogInformation.cs#L33C42-L33C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogInformation.cs#L33C42-L33C46" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogInformation.FileSize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogInformation.cs#L34C33-L34C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogInformation.cs#L34C33-L34C37" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogInformation.Attributes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogInformation.cs#L35C34-L35C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogInformation.cs#L35C34-L35C38" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogInformation.RecordCount", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogInformation.cs#L36C36-L36C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogInformation.cs#L36C36-L36C40" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogInformation.OldestRecordNumber", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogInformation.cs#L37C43-L37C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogInformation.cs#L37C43-L37C47" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogInformation.IsLogFull", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogInformation.cs#L38C34-L38C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogInformation.cs#L38C34-L38C38" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.EventLogInformation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogInformation.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogInformation.cs" }, { "Members": [ { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogLink.LogName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogLink.cs#L77C17-L78C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogLink.cs#L77C17-L78C37" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogLink.IsImported", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogLink.cs#L86C17-L87C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogLink.cs#L86C17-L87C36" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogLink.DisplayName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogLink.cs#L95C17-L96C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogLink.cs#L95C17-L96C37" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.EventLogLink", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogLink.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogLink.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogPropertySelector.#ctor(System.Collections.Generic.IEnumerable{System.String})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogPropertySelector.cs#L16C9-L36C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogPropertySelector.cs#L16C9-L36C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogPropertySelector.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogPropertySelector.cs#L42C13-L44C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogPropertySelector.cs#L42C13-L44C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogPropertySelector.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogPropertySelector.cs#L48C13-L50C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogPropertySelector.cs#L48C13-L50C10" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.EventLogPropertySelector", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogPropertySelector.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogPropertySelector.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogQuery.#ctor(System.String,System.Diagnostics.Eventing.Reader.PathType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogQuery.cs#L16C15-L18C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogQuery.cs#L16C15-L18C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogQuery.#ctor(System.String,System.Diagnostics.Eventing.Reader.PathType,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogQuery.cs#L20C9-L35C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogQuery.cs#L20C9-L35C10" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogQuery.Session", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogQuery.cs#L37C42-L37C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogQuery.cs#L37C42-L37C46" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogQuery.TolerateQueryErrors", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogQuery.cs#L39C43-L39C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogQuery.cs#L39C43-L39C47" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogQuery.ReverseDirection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogQuery.cs#L41C40-L41C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogQuery.cs#L41C40-L41C44" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.EventLogQuery", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogQuery.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogQuery.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogReader.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogReader.cs#L51C15-L53C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogReader.cs#L51C15-L53C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogReader.#ctor(System.String,System.Diagnostics.Eventing.Reader.PathType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogReader.cs#L56C15-L58C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogReader.cs#L56C15-L58C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogReader.#ctor(System.Diagnostics.Eventing.Reader.EventLogQuery)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogReader.cs#L61C15-L63C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogReader.cs#L61C15-L63C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogReader.#ctor(System.Diagnostics.Eventing.Reader.EventLogQuery,System.Diagnostics.Eventing.Reader.EventBookmark)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogReader.cs#L65C9-L111C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogReader.cs#L65C9-L111C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogReader.ReadEvent", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogReader.cs#L154C13-L154C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogReader.cs#L154C13-L154C49" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogReader.ReadEvent(System.TimeSpan)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogReader.cs#L159C13-L176C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogReader.cs#L159C13-L176C34" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogReader.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogReader.cs#L181C13-L183C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogReader.cs#L181C13-L183C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogReader.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogReader.cs#L189C17-L195C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogReader.cs#L16707566C0-L195C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogReader.Seek(System.Diagnostics.Eventing.Reader.EventBookmark)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogReader.cs#L230C13-L231C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogReader.cs#L230C13-L231C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogReader.Seek(System.Diagnostics.Eventing.Reader.EventBookmark,System.Int64)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogReader.cs#L235C13-L242C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogReader.cs#L235C13-L242C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogReader.Seek(System.IO.SeekOrigin,System.Int64)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogReader.cs#L250C21-L291C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogReader.cs#L16707566C0-L291C28" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogReader.CancelReading", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogReader.cs#L297C13-L298C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogReader.cs#L297C13-L298C10" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogReader.BatchSize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogReader.cs#L117C17-L117C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogReader.cs#L117C17-L117C35" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogReader.LogStatus", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogReader.cs#L304C17-L321C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogReader.cs#L304C17-L321C42" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.EventLogReader", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogReader.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogReader.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogRecord.FormatDescription", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L270C13-L270C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L270C13-L270C95" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogRecord.FormatDescription(System.Collections.Generic.IEnumerable{System.Object})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L275C13-L296C106" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L275C13-L296C106" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogRecord.GetPropertyValues(System.Diagnostics.Eventing.Reader.EventLogPropertySelector)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L381C13-L383C106" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L381C13-L383C106" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogRecord.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L388C13-L389C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L388C13-L389C90" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogRecord.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L396C17-L403C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L396C17-L403C10" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogRecord.Id", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L70C17-L73C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L70C17-L73C50" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogRecord.Version", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L81C17-L82C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L81C17-L82C50" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogRecord.Qualifiers", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L90C17-L91C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L90C17-L91C66" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogRecord.Level", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L99C17-L100C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L99C17-L100C48" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogRecord.Task", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L108C17-L109C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L108C17-L109C60" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogRecord.Opcode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L117C17-L118C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L117C17-L118C66" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogRecord.Keywords", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L126C17-L127C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L126C17-L127C58" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogRecord.RecordId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L135C17-L136C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L135C17-L136C58" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogRecord.ProviderName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L144C17-L145C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L144C17-L145C55" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogRecord.ProviderId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L153C17-L154C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L153C17-L154C53" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogRecord.LogName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L162C17-L163C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L162C17-L163C54" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogRecord.ProcessId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L171C17-L172C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L171C17-L172C58" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogRecord.ThreadId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L180C17-L181C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L180C17-L181C57" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogRecord.MachineName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L189C17-L190C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L189C17-L190C55" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogRecord.UserId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L198C17-L199C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L198C17-L199C49" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogRecord.TimeCreated", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L207C17-L208C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L207C17-L208C54" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogRecord.ActivityId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L216C17-L217C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L216C17-L217C53" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogRecord.RelatedActivityId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L225C17-L226C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L225C17-L226C60" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogRecord.ContainerLog", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L234C17-L240C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L234C17-L240C14" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogRecord.MatchedQueryIds", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L247C17-L253C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L247C17-L253C14" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogRecord.Bookmark", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L260C17-L264C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L260C17-L264C56" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogRecord.LevelDisplayName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L303C17-L314C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L303C17-L314C14" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogRecord.OpcodeDisplayName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L321C17-L330C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L321C17-L330C14" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogRecord.TaskDisplayName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L337C17-L348C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L337C17-L348C14" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogRecord.KeywordsDisplayNames", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L355C17-L361C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L355C17-L361C14" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogRecord.Properties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L368C17-L375C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs#L368C17-L375C29" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.EventLogRecord", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogRecord.cs" }, { "Members": [ { "DocsId": "F:System.Diagnostics.Eventing.Reader.SessionAuthentication.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.SessionAuthentication.Default", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.SessionAuthentication.Negotiate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.SessionAuthentication.Kerberos", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.SessionAuthentication.Ntlm", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.SessionAuthentication", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs" }, { "Members": [ { "DocsId": "F:System.Diagnostics.Eventing.Reader.PathType.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.PathType.LogName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.PathType.FilePath", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.PathType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogSession.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L44C9-L87C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L44C9-L87C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogSession.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L91C13-L93C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L91C13-L93C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogSession.#ctor(System.String,System.String,System.String,System.Security.SecureString,System.Diagnostics.Eventing.Reader.SessionAuthentication)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L44C9-L124C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L44C9-L124C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogSession.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L130C13-L132C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L130C13-L132C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogSession.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L136C13-L152C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L136C13-L152C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogSession.CancelCurrentOperations", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L156C13-L157C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L156C13-L157C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogSession.GetProviderNames", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L167C13-L183C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L167C13-L183C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogSession.GetLogNames", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L187C13-L203C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L187C13-L203C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogSession.GetLogInformation(System.String,System.Diagnostics.Eventing.Reader.PathType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L207C13-L209C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L207C13-L209C69" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogSession.ExportLog(System.String,System.Diagnostics.Eventing.Reader.PathType,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L214C13-L215C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L214C13-L215C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogSession.ExportLog(System.String,System.Diagnostics.Eventing.Reader.PathType,System.String,System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L219C13-L232C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L219C13-L232C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogSession.ExportLogAndMessages(System.String,System.Diagnostics.Eventing.Reader.PathType,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L236C13-L237C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L236C13-L237C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogSession.ExportLogAndMessages(System.String,System.Diagnostics.Eventing.Reader.PathType,System.String,System.String,System.Boolean,System.Globalization.CultureInfo)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L241C13-L244C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L241C13-L244C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogSession.ClearLog(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L248C13-L249C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L248C13-L249C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogSession.ClearLog(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L253C13-L256C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L253C13-L256C10" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogSession.GlobalSession", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L162C19-L162C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs#L162C19-L162C42" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.EventLogSession", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogSession.cs" }, { "Members": [ { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogStatus.LogName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogStatus.cs#L22C33-L22C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogStatus.cs#L22C33-L22C37" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogStatus.StatusCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogStatus.cs#L24C33-L24C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogStatus.cs#L24C33-L24C37" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.EventLogStatus", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogStatus.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogStatus.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogWatcher.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogWatcher.cs#L38C15-L40C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogWatcher.cs#L38C15-L40C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogWatcher.#ctor(System.Diagnostics.Eventing.Reader.EventLogQuery)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogWatcher.cs#L43C15-L45C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogWatcher.cs#L43C15-L45C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogWatcher.#ctor(System.Diagnostics.Eventing.Reader.EventLogQuery,System.Diagnostics.Eventing.Reader.EventBookmark)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogWatcher.cs#L48C15-L50C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogWatcher.cs#L48C15-L50C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogWatcher.#ctor(System.Diagnostics.Eventing.Reader.EventLogQuery,System.Diagnostics.Eventing.Reader.EventBookmark,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogWatcher.cs#L52C9-L73C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogWatcher.cs#L52C9-L73C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogWatcher.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogWatcher.cs#L283C13-L285C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogWatcher.cs#L283C13-L285C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventLogWatcher.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogWatcher.cs#L289C13-L306C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogWatcher.cs#L289C13-L306C10" }, { "DocsId": "E:System.Diagnostics.Eventing.Reader.EventLogWatcher.EventRecordWritten", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogWatcher.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogWatcher.cs" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventLogWatcher.Enabled", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogWatcher.cs#L79C17-L79C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogWatcher.cs#L79C17-L79C39" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.EventLogWatcher", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogWatcher.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogWatcher.cs" }, { "Members": [ { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventMetadata.Id", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventMetadata.cs#L46C26-L46C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventMetadata.cs#L46C26-L46C30" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventMetadata.Version", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventMetadata.cs#L48C31-L48C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventMetadata.cs#L48C31-L48C35" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventMetadata.LogLink", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventMetadata.cs#L54C17-L54C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventMetadata.cs#L54C17-L54C73" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventMetadata.Level", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventMetadata.cs#L62C17-L62C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventMetadata.cs#L62C17-L62C61" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventMetadata.Opcode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventMetadata.cs#L70C17-L70C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventMetadata.cs#L70C17-L70C63" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventMetadata.Task", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventMetadata.cs#L78C17-L78C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventMetadata.cs#L78C17-L78C59" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventMetadata.Keywords", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventMetadata.cs#L86C17-L106C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventMetadata.cs#L86C17-L106C29" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventMetadata.Template", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventMetadata.cs#L110C34-L110C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventMetadata.cs#L110C34-L110C38" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventMetadata.Description", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventMetadata.cs#L112C37-L112C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventMetadata.cs#L112C37-L112C41" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.EventMetadata", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventMetadata.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventMetadata.cs" }, { "Members": [ { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventOpcode.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventOpcode.cs#L68C17-L69C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventOpcode.cs#L68C17-L69C30" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventOpcode.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventOpcode.cs#L77C17-L77C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventOpcode.cs#L77C17-L77C31" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventOpcode.DisplayName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventOpcode.cs#L85C17-L86C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventOpcode.cs#L85C17-L86C37" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.EventOpcode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventOpcode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventOpcode.cs" }, { "Members": [ { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventProperty.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventProperty.cs#L13C31-L13C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventProperty.cs#L13C31-L13C35" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.EventProperty", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventProperty.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventProperty.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventRecord.FormatDescription", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventRecord.FormatDescription(System.Collections.Generic.IEnumerable{System.Object})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventRecord.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventRecord.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs#L56C13-L58C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs#L56C13-L58C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventRecord.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs#L59C58-L59C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs#L59C58-L59C59" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.EventRecord.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventRecord.Id", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventRecord.Version", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventRecord.Level", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventRecord.Task", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventRecord.Opcode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventRecord.Keywords", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventRecord.RecordId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventRecord.ProviderName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventRecord.ProviderId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventRecord.LogName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventRecord.ProcessId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventRecord.ThreadId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventRecord.MachineName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventRecord.UserId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventRecord.TimeCreated", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventRecord.ActivityId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventRecord.RelatedActivityId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventRecord.Qualifiers", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventRecord.LevelDisplayName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventRecord.OpcodeDisplayName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventRecord.TaskDisplayName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventRecord.KeywordsDisplayNames", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventRecord.Bookmark", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventRecord.Properties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.EventRecord", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecord.cs" }, { "Members": [ { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventRecordWrittenEventArgs.EventRecord", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecordWrittenEventArgs.cs#L18C42-L18C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecordWrittenEventArgs.cs#L18C42-L18C46" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventRecordWrittenEventArgs.EventException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecordWrittenEventArgs.cs#L25C43-L25C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecordWrittenEventArgs.cs#L25C43-L25C47" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.EventRecordWrittenEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecordWrittenEventArgs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventRecordWrittenEventArgs.cs" }, { "Members": [ { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventTask.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventTask.cs#L70C17-L71C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventTask.cs#L70C17-L71C30" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventTask.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventTask.cs#L75C28-L75C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventTask.cs#L75C28-L75C32" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventTask.DisplayName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventTask.cs#L81C17-L82C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventTask.cs#L81C17-L82C37" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.EventTask.EventGuid", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventTask.cs#L90C17-L91C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventTask.cs#L90C17-L91C30" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.EventTask", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventTask.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventTask.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.Eventing.Reader.ProviderMetadata.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L47C15-L49C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L47C15-L49C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.ProviderMetadata.#ctor(System.String,System.Diagnostics.Eventing.Reader.EventLogSession,System.Globalization.CultureInfo)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L52C15-L54C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L52C15-L54C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.ProviderMetadata.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L537C13-L539C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L537C13-L539C10" }, { "DocsId": "M:System.Diagnostics.Eventing.Reader.ProviderMetadata.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L543C13-L545C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L543C13-L545C10" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.ProviderMetadata.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L81C19-L81C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L81C19-L81C40" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.ProviderMetadata.Id", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L88C17-L88C171" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L88C17-L88C171" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.ProviderMetadata.MessageFilePath", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L96C17-L96C175" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L96C17-L96C175" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.ProviderMetadata.ResourceFilePath", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L104C17-L104C176" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L104C17-L104C176" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.ProviderMetadata.ParameterFilePath", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L112C17-L112C177" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L112C17-L112C177" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.ProviderMetadata.HelpLink", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L120C17-L123C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L120C17-L123C45" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.ProviderMetadata.DisplayName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L139C17-L144C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L139C17-L144C71" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.ProviderMetadata.LogLinks", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L152C17-L227C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L152C17-L227C14" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.ProviderMetadata.Levels", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L419C17-L428C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L419C17-L428C14" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.ProviderMetadata.Opcodes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L436C17-L445C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L436C17-L445C14" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.ProviderMetadata.Keywords", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L453C17-L462C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L453C17-L462C14" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.ProviderMetadata.Tasks", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L470C17-L479C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L470C17-L479C14" }, { "DocsId": "P:System.Diagnostics.Eventing.Reader.ProviderMetadata.Events", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L486C17-L523C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs#L486C17-L523C14" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.ProviderMetadata", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/ProviderMetadata.cs" }, { "Members": [ { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventLevel.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventLevel.LogAlways", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventLevel.Critical", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventLevel.Error", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventLevel.Warning", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventLevel.Informational", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventLevel.Verbose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.StandardEventLevel", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" }, { "Members": [ { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventTask.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventTask.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.StandardEventTask", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" }, { "Members": [ { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventOpcode.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventOpcode.Info", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventOpcode.Start", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventOpcode.Stop", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventOpcode.DataCollectionStart", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventOpcode.DataCollectionStop", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventOpcode.Extension", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventOpcode.Reply", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventOpcode.Resume", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventOpcode.Suspend", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventOpcode.Send", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventOpcode.Receive", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.StandardEventOpcode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" }, { "Members": [ { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventKeywords.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventKeywords.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventKeywords.ResponseTime", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventKeywords.WdiContext", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventKeywords.WdiDiagnostic", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventKeywords.Sqm", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventKeywords.AuditFailure", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventKeywords.AuditSuccess", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventKeywords.CorrelationHint", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventKeywords.CorrelationHint2", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" }, { "DocsId": "F:System.Diagnostics.Eventing.Reader.StandardEventKeywords.EventLogClassic", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" } ], "DocsId": "T:System.Diagnostics.Eventing.Reader.StandardEventKeywords", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/Winmeta.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/System.Diagnostics.PerformanceCounter.json b/xml/SourceLinkInformation/net-9.0/System.Diagnostics.PerformanceCounter.json index a926363cd86..4fa5de4d700 100644 --- a/xml/SourceLinkInformation/net-9.0/System.Diagnostics.PerformanceCounter.json +++ b/xml/SourceLinkInformation/net-9.0/System.Diagnostics.PerformanceCounter.json @@ -1,975 +1,974 @@ { "Assembly": "System.Diagnostics.PerformanceCounter", - "GUID": "C17646C8F211465BBDFFBAB32AB73489FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "9AC911B238144F7DBD69B27A3F90C529FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:System.Diagnostics.CounterCreationData.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationData.cs#L13C9-L19C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationData.cs#L13C9-L19C10" }, { "DocsId": "M:System.Diagnostics.CounterCreationData.#ctor(System.String,System.String,System.Diagnostics.PerformanceCounterType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationData.cs#L13C9-L26C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationData.cs#L13C9-L26C10" }, { "DocsId": "P:System.Diagnostics.CounterCreationData.CounterType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationData.cs#L32C17-L32C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationData.cs#L32C17-L32C37" }, { "DocsId": "P:System.Diagnostics.CounterCreationData.CounterName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationData.cs#L47C17-L47C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationData.cs#L47C17-L47C37" }, { "DocsId": "P:System.Diagnostics.CounterCreationData.CounterHelp", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationData.cs#L60C17-L60C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationData.cs#L60C17-L60C37" } ], "DocsId": "T:System.Diagnostics.CounterCreationData", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationData.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationData.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.CounterCreationDataCollection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationDataCollection.cs#L11C9-L13C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationDataCollection.cs#L11C9-L13C10" }, { "DocsId": "M:System.Diagnostics.CounterCreationDataCollection.#ctor(System.Diagnostics.CounterCreationDataCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationDataCollection.cs#L15C9-L18C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationDataCollection.cs#L15C9-L18C10" }, { "DocsId": "M:System.Diagnostics.CounterCreationDataCollection.#ctor(System.Diagnostics.CounterCreationData[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationDataCollection.cs#L20C9-L23C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationDataCollection.cs#L20C9-L23C10" }, { "DocsId": "M:System.Diagnostics.CounterCreationDataCollection.Add(System.Diagnostics.CounterCreationData)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationDataCollection.cs#L39C13-L39C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationDataCollection.cs#L39C13-L39C36" }, { "DocsId": "M:System.Diagnostics.CounterCreationDataCollection.AddRange(System.Diagnostics.CounterCreationData[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationDataCollection.cs#L44C13-L50C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationDataCollection.cs#L44C13-L50C10" }, { "DocsId": "M:System.Diagnostics.CounterCreationDataCollection.AddRange(System.Diagnostics.CounterCreationDataCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationDataCollection.cs#L54C13-L61C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationDataCollection.cs#L54C13-L61C10" }, { "DocsId": "M:System.Diagnostics.CounterCreationDataCollection.Contains(System.Diagnostics.CounterCreationData)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationDataCollection.cs#L65C13-L65C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationDataCollection.cs#L65C13-L65C41" }, { "DocsId": "M:System.Diagnostics.CounterCreationDataCollection.CopyTo(System.Diagnostics.CounterCreationData[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationDataCollection.cs#L70C13-L71C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationDataCollection.cs#L70C13-L71C10" }, { "DocsId": "M:System.Diagnostics.CounterCreationDataCollection.IndexOf(System.Diagnostics.CounterCreationData)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationDataCollection.cs#L75C13-L75C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationDataCollection.cs#L75C13-L75C40" }, { "DocsId": "M:System.Diagnostics.CounterCreationDataCollection.Insert(System.Int32,System.Diagnostics.CounterCreationData)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationDataCollection.cs#L80C13-L81C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationDataCollection.cs#L80C13-L81C10" }, { "DocsId": "M:System.Diagnostics.CounterCreationDataCollection.Remove(System.Diagnostics.CounterCreationData)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationDataCollection.cs#L85C13-L86C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationDataCollection.cs#L85C13-L86C10" }, { "DocsId": "M:System.Diagnostics.CounterCreationDataCollection.OnValidate(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationDataCollection.cs#L90C13-L94C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationDataCollection.cs#L90C13-L94C10" }, { "DocsId": "P:System.Diagnostics.CounterCreationDataCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationDataCollection.cs#L29C17-L29C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationDataCollection.cs#L29C17-L29C61" } ], "DocsId": "T:System.Diagnostics.CounterCreationDataCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationDataCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterCreationDataCollection.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.CounterSample.#ctor(System.Int64,System.Int64,System.Int64,System.Int64,System.Int64,System.Int64,System.Diagnostics.PerformanceCounterType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L24C13-L32C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L24C13-L32C10" }, { "DocsId": "M:System.Diagnostics.CounterSample.#ctor(System.Int64,System.Int64,System.Int64,System.Int64,System.Int64,System.Int64,System.Diagnostics.PerformanceCounterType,System.Int64)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L36C13-L44C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L36C13-L44C10" }, { "DocsId": "M:System.Diagnostics.CounterSample.Calculate(System.Diagnostics.CounterSample)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L147C13-L147C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L147C13-L147C79" }, { "DocsId": "M:System.Diagnostics.CounterSample.Calculate(System.Diagnostics.CounterSample,System.Diagnostics.CounterSample)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L155C13-L155C98" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L155C13-L155C98" }, { "DocsId": "M:System.Diagnostics.CounterSample.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L160C13-L160C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L160C13-L160C69" }, { "DocsId": "M:System.Diagnostics.CounterSample.Equals(System.Diagnostics.CounterSample)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L165C13-L172C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L165C13-L172C72" }, { "DocsId": "M:System.Diagnostics.CounterSample.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L177C13-L177C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L177C13-L177C44" }, { "DocsId": "M:System.Diagnostics.CounterSample.op_Equality(System.Diagnostics.CounterSample,System.Diagnostics.CounterSample)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L182C13-L182C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L182C13-L182C32" }, { "DocsId": "M:System.Diagnostics.CounterSample.op_Inequality(System.Diagnostics.CounterSample,System.Diagnostics.CounterSample)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L187C13-L187C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L187C13-L187C35" }, { "DocsId": "F:System.Diagnostics.CounterSample.Empty", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs" }, { "DocsId": "P:System.Diagnostics.CounterSample.RawValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L53C17-L53C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L53C17-L53C34" }, { "DocsId": "P:System.Diagnostics.CounterSample.BaseValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L72C17-L72C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L72C17-L72C35" }, { "DocsId": "P:System.Diagnostics.CounterSample.SystemFrequency", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L83C17-L83C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L83C17-L83C41" }, { "DocsId": "P:System.Diagnostics.CounterSample.CounterFrequency", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L94C17-L94C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L94C17-L94C42" }, { "DocsId": "P:System.Diagnostics.CounterSample.CounterTimeStamp", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L105C17-L105C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L105C17-L105C42" }, { "DocsId": "P:System.Diagnostics.CounterSample.TimeStamp", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L116C17-L116C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L116C17-L116C35" }, { "DocsId": "P:System.Diagnostics.CounterSample.TimeStamp100nSec", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L127C17-L127C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L127C17-L127C42" }, { "DocsId": "P:System.Diagnostics.CounterSample.CounterType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L138C17-L138C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs#L138C17-L138C37" } ], "DocsId": "T:System.Diagnostics.CounterSample", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSample.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.CounterSampleCalculator.ComputeCounterValue(System.Diagnostics.CounterSample)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSampleCalculator.cs#L53C13-L53C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSampleCalculator.cs#L53C13-L53C72" }, { "DocsId": "M:System.Diagnostics.CounterSampleCalculator.ComputeCounterValue(System.Diagnostics.CounterSample,System.Diagnostics.CounterSample)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSampleCalculator.cs#L61C13-L104C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSampleCalculator.cs#L61C13-L104C50" } ], "DocsId": "T:System.Diagnostics.CounterSampleCalculator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSampleCalculator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/CounterSampleCalculator.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.ICollectData.CollectData(System.Int32,System.IntPtr,System.IntPtr,System.Int32,System.IntPtr@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/ICollectData.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/ICollectData.cs" }, { "DocsId": "M:System.Diagnostics.ICollectData.CloseData", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/ICollectData.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/ICollectData.cs" } ], "DocsId": "T:System.Diagnostics.ICollectData", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/ICollectData.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/ICollectData.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.InstanceData.#ctor(System.String,System.Diagnostics.CounterSample)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceData.cs#L11C9-L15C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceData.cs#L11C9-L15C10" }, { "DocsId": "P:System.Diagnostics.InstanceData.InstanceName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceData.cs#L17C38-L17C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceData.cs#L17C38-L17C42" }, { "DocsId": "P:System.Diagnostics.InstanceData.Sample", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceData.cs#L19C39-L19C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceData.cs#L19C39-L19C43" }, { "DocsId": "P:System.Diagnostics.InstanceData.RawValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceData.cs#L25C17-L25C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceData.cs#L25C17-L25C40" } ], "DocsId": "T:System.Diagnostics.InstanceData", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceData.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceData.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.InstanceDataCollection.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceDataCollection.cs#L18C9-L23C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceDataCollection.cs#L18C9-L23C10" }, { "DocsId": "M:System.Diagnostics.InstanceDataCollection.Contains(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceDataCollection.cs#L63C13-L66C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceDataCollection.cs#L63C13-L66C52" }, { "DocsId": "M:System.Diagnostics.InstanceDataCollection.CopyTo(System.Diagnostics.InstanceData[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceDataCollection.cs#L71C13-L72C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceDataCollection.cs#L71C13-L72C10" }, { "DocsId": "P:System.Diagnostics.InstanceDataCollection.CounterName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceDataCollection.cs#L25C37-L25C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceDataCollection.cs#L25C37-L25C41" }, { "DocsId": "P:System.Diagnostics.InstanceDataCollection.Keys", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceDataCollection.cs#L29C19-L29C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceDataCollection.cs#L29C19-L29C42" }, { "DocsId": "P:System.Diagnostics.InstanceDataCollection.Values", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceDataCollection.cs#L36C17-L36C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceDataCollection.cs#L36C17-L36C42" }, { "DocsId": "P:System.Diagnostics.InstanceDataCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceDataCollection.cs#L44C17-L51C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceDataCollection.cs#L44C17-L51C61" } ], "DocsId": "T:System.Diagnostics.InstanceDataCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceDataCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceDataCollection.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.InstanceDataCollectionCollection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceDataCollectionCollection.cs#L19C53-L19C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceDataCollectionCollection.cs#L19C53-L19C63" }, { "DocsId": "M:System.Diagnostics.InstanceDataCollectionCollection.Contains(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceDataCollectionCollection.cs#L54C13-L57C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceDataCollectionCollection.cs#L54C13-L57C52" }, { "DocsId": "M:System.Diagnostics.InstanceDataCollectionCollection.CopyTo(System.Diagnostics.InstanceDataCollection[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceDataCollectionCollection.cs#L62C13-L63C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceDataCollectionCollection.cs#L62C13-L63C10" }, { "DocsId": "P:System.Diagnostics.InstanceDataCollectionCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceDataCollectionCollection.cs#L25C17-L29C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceDataCollectionCollection.cs#L25C17-L29C71" }, { "DocsId": "P:System.Diagnostics.InstanceDataCollectionCollection.Keys", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceDataCollectionCollection.cs#L35C19-L35C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceDataCollectionCollection.cs#L35C19-L35C42" }, { "DocsId": "P:System.Diagnostics.InstanceDataCollectionCollection.Values", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceDataCollectionCollection.cs#L42C17-L42C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceDataCollectionCollection.cs#L42C17-L42C42" } ], "DocsId": "T:System.Diagnostics.InstanceDataCollectionCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceDataCollectionCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/InstanceDataCollectionCollection.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.PerformanceCounter.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L30C9-L66C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L30C9-L66C10" }, { "DocsId": "M:System.Diagnostics.PerformanceCounter.#ctor(System.String,System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L72C15-L74C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L72C15-L74C10" }, { "DocsId": "M:System.Diagnostics.PerformanceCounter.#ctor(System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L95C9-L97C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L95C9-L97C10" }, { "DocsId": "M:System.Diagnostics.PerformanceCounter.#ctor(System.String,System.String,System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L30C9-L115C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L30C9-L115C10" }, { "DocsId": "M:System.Diagnostics.PerformanceCounter.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L121C9-L123C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L121C9-L123C10" }, { "DocsId": "M:System.Diagnostics.PerformanceCounter.#ctor(System.String,System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L129C9-L131C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L129C9-L131C10" }, { "DocsId": "M:System.Diagnostics.PerformanceCounter.BeginInit", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L343C13-L344C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L343C13-L344C10" }, { "DocsId": "M:System.Diagnostics.PerformanceCounter.Close", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L351C13-L356C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L351C13-L356C10" }, { "DocsId": "M:System.Diagnostics.PerformanceCounter.CloseSharedResources", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L365C13-L366C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L365C13-L366C10" }, { "DocsId": "M:System.Diagnostics.PerformanceCounter.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L374C13-L381C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L374C13-L381C10" }, { "DocsId": "M:System.Diagnostics.PerformanceCounter.Decrement", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L388C13-L393C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L388C13-L393C47" }, { "DocsId": "M:System.Diagnostics.PerformanceCounter.EndInit", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L400C13-L401C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L400C13-L401C10" }, { "DocsId": "M:System.Diagnostics.PerformanceCounter.IncrementBy(System.Int64)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L411C13-L416C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L411C13-L416C54" }, { "DocsId": "M:System.Diagnostics.PerformanceCounter.Increment", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L424C13-L429C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L424C13-L429C47" }, { "DocsId": "M:System.Diagnostics.PerformanceCounter.NextSample", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L539C13-L564C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L539C13-L564C10" }, { "DocsId": "M:System.Diagnostics.PerformanceCounter.NextValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L574C13-L579C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L574C13-L579C27" }, { "DocsId": "M:System.Diagnostics.PerformanceCounter.RemoveInstance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L587C13-L592C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L587C13-L592C10" }, { "DocsId": "F:System.Diagnostics.PerformanceCounter.DefaultFileMappingSize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs" }, { "DocsId": "P:System.Diagnostics.PerformanceCounter.CategoryName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L140C17-L140C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L140C17-L140C38" }, { "DocsId": "P:System.Diagnostics.PerformanceCounter.CounterHelp", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L162C17-L169C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L162C17-L169C33" }, { "DocsId": "P:System.Diagnostics.PerformanceCounter.CounterName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L180C17-L180C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L180C17-L180C37" }, { "DocsId": "P:System.Diagnostics.PerformanceCounter.CounterType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L202C17-L217C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L202C17-L217C61" }, { "DocsId": "P:System.Diagnostics.PerformanceCounter.InstanceLifetime", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L223C19-L223C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L223C19-L223C44" }, { "DocsId": "P:System.Diagnostics.PerformanceCounter.InstanceName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L243C17-L243C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L243C17-L243C38" }, { "DocsId": "P:System.Diagnostics.PerformanceCounter.ReadOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L267C17-L267C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L267C17-L267C36" }, { "DocsId": "P:System.Diagnostics.PerformanceCounter.MachineName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L291C17-L291C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L291C17-L291C37" }, { "DocsId": "P:System.Diagnostics.PerformanceCounter.RawValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L316C17-L325C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs#L316C17-L325C49" } ], "DocsId": "T:System.Diagnostics.PerformanceCounter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounter.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.PerformanceCounterCategory.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L26C9-L29C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L26C9-L29C10" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterCategory.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L36C15-L38C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L36C15-L38C10" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterCategory.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L44C9-L56C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L44C9-L56C10" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterCategory.CounterExists(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L153C13-L158C98" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L153C13-L158C98" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterCategory.CounterExists(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L166C13-L166C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L166C13-L166C66" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterCategory.CounterExists(System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L174C13-L183C96" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L174C13-L183C96" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterCategory.Create(System.String,System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L192C13-L193C172" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L192C13-L193C172" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterCategory.Create(System.String,System.String,System.Diagnostics.PerformanceCounterCategoryType,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L201C13-L202C146" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L201C13-L202C146" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterCategory.Create(System.String,System.String,System.Diagnostics.CounterCreationDataCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L211C13-L211C108" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L211C13-L211C108" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterCategory.Create(System.String,System.String,System.Diagnostics.PerformanceCounterCategoryType,System.Diagnostics.CounterCreationDataCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L216C13-L248C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L216C13-L248C10" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterCategory.Delete(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L378C13-L403C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L378C13-L403C10" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterCategory.Exists(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L410C13-L410C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L410C13-L410C46" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterCategory.Exists(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L418C13-L429C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L418C13-L429C84" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterCategory.GetCounters", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L457C13-L459C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L457C13-L459C36" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterCategory.GetCounters(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L467C13-L480C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L467C13-L480C29" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterCategory.GetCategories", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L489C13-L489C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L489C13-L489C39" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterCategory.GetCategories(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L497C13-L505C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L497C13-L505C31" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterCategory.GetInstanceNames", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L513C13-L516C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L513C13-L516C69" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterCategory.InstanceExists(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L524C13-L533C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L524C13-L533C10" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterCategory.InstanceExists(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L540C13-L540C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L540C13-L540C68" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterCategory.InstanceExists(System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L548C13-L558C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L548C13-L558C58" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterCategory.ReadCategory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L567C13-L574C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L567C13-L574C10" }, { "DocsId": "P:System.Diagnostics.PerformanceCounterCategory.CategoryName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L65C17-L65C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L65C17-L65C38" }, { "DocsId": "P:System.Diagnostics.PerformanceCounterCategory.CategoryHelp", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L92C17-L97C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L92C17-L97C38" }, { "DocsId": "P:System.Diagnostics.PerformanceCounterCategory.CategoryType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L105C24-L121C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L105C24-L121C14" }, { "DocsId": "P:System.Diagnostics.PerformanceCounterCategory.MachineName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L132C17-L132C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs#L132C17-L132C37" } ], "DocsId": "T:System.Diagnostics.PerformanceCounterCategory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategory.cs" }, { "Members": [ { "DocsId": "F:System.Diagnostics.PerformanceCounterCategoryType.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategoryType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategoryType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterCategoryType.Unknown", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategoryType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategoryType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterCategoryType.SingleInstance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategoryType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategoryType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterCategoryType.MultiInstance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategoryType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategoryType.cs" } ], "DocsId": "T:System.Diagnostics.PerformanceCounterCategoryType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategoryType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterCategoryType.cs" }, { "Members": [ { "DocsId": "F:System.Diagnostics.PerformanceCounterInstanceLifetime.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterInstanceLifetime.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterInstanceLifetime.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterInstanceLifetime.Global", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterInstanceLifetime.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterInstanceLifetime.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterInstanceLifetime.Process", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterInstanceLifetime.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterInstanceLifetime.cs" } ], "DocsId": "T:System.Diagnostics.PerformanceCounterInstanceLifetime", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterInstanceLifetime.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterInstanceLifetime.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.PerformanceCounterManager.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterManager.cs#L11C9-L13C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterManager.cs#L11C9-L13C10" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterManager.System#Diagnostics#ICollectData#CollectData(System.Int32,System.IntPtr,System.IntPtr,System.Int32,System.IntPtr@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterManager.cs#L18C13-L19C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterManager.cs#L18C13-L19C10" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterManager.System#Diagnostics#ICollectData#CloseData", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterManager.cs#L24C9-L24C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterManager.cs#L24C9-L24C10" } ], "DocsId": "T:System.Diagnostics.PerformanceCounterManager", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterManager.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterManager.cs" }, { "Members": [ { "DocsId": "F:System.Diagnostics.PerformanceCounterType.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterType.NumberOfItems32", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterType.NumberOfItems64", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterType.NumberOfItemsHEX32", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterType.NumberOfItemsHEX64", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterType.RateOfCountsPerSecond32", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterType.RateOfCountsPerSecond64", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterType.CountPerTimeInterval32", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterType.CountPerTimeInterval64", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterType.RawFraction", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterType.RawBase", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterType.AverageTimer32", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterType.AverageBase", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterType.AverageCount64", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterType.SampleFraction", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterType.SampleCounter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterType.SampleBase", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterType.CounterTimer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterType.CounterTimerInverse", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterType.Timer100Ns", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterType.Timer100NsInverse", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterType.ElapsedTime", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterType.CounterMultiTimer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterType.CounterMultiTimerInverse", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterType.CounterMultiTimer100Ns", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterType.CounterMultiTimer100NsInverse", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterType.CounterMultiBase", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterType.CounterDelta32", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterType.CounterDelta64", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" } ], "DocsId": "T:System.Diagnostics.PerformanceCounterType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceCounterType.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.PerformanceData.CounterSet.#ctor(System.Guid,System.Guid,System.Diagnostics.PerformanceData.CounterSetInstanceType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSet.cs#L34C9-L49C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSet.cs#L34C9-L49C10" }, { "DocsId": "M:System.Diagnostics.PerformanceData.CounterSet.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSet.cs#L53C13-L55C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSet.cs#L53C13-L55C10" }, { "DocsId": "M:System.Diagnostics.PerformanceData.CounterSet.Finalize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSet.cs#L59C13-L60C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSet.cs#L59C13-L60C10" }, { "DocsId": "M:System.Diagnostics.PerformanceData.CounterSet.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSet.cs#L64C13-L84C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSet.cs#L64C13-L84C10" }, { "DocsId": "M:System.Diagnostics.PerformanceData.CounterSet.AddCounter(System.Int32,System.Diagnostics.PerformanceData.CounterType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSet.cs#L93C13-L119C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSet.cs#L93C13-L119C10" }, { "DocsId": "M:System.Diagnostics.PerformanceData.CounterSet.AddCounter(System.Int32,System.Diagnostics.PerformanceData.CounterType,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSet.cs#L129C13-L166C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSet.cs#L129C13-L166C10" }, { "DocsId": "M:System.Diagnostics.PerformanceData.CounterSet.CreateCounterSetInstance(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSet.cs#L175C13-L269C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSet.cs#L175C13-L269C29" } ], "DocsId": "T:System.Diagnostics.PerformanceData.CounterSet", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSet.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSet.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.PerformanceData.CounterSetInstance.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstance.cs#L77C13-L79C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstance.cs#L77C13-L79C10" }, { "DocsId": "M:System.Diagnostics.PerformanceData.CounterSetInstance.Finalize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstance.cs#L83C13-L84C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstance.cs#L83C13-L84C10" }, { "DocsId": "P:System.Diagnostics.PerformanceData.CounterSetInstance.Counters", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstance.cs#L116C60-L116C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstance.cs#L116C60-L116C64" } ], "DocsId": "T:System.Diagnostics.PerformanceData.CounterSetInstance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstance.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstance.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.PerformanceData.CounterData.Increment", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceCounterDataSet.cs#L54C17-L56C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceCounterDataSet.cs#L54C17-L56C10" }, { "DocsId": "M:System.Diagnostics.PerformanceData.CounterData.Decrement", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceCounterDataSet.cs#L62C17-L64C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceCounterDataSet.cs#L62C17-L64C10" }, { "DocsId": "M:System.Diagnostics.PerformanceData.CounterData.IncrementBy(System.Int64)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceCounterDataSet.cs#L70C17-L72C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceCounterDataSet.cs#L70C17-L72C10" }, { "DocsId": "P:System.Diagnostics.PerformanceData.CounterData.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceCounterDataSet.cs#L38C21-L38C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceCounterDataSet.cs#L38C21-L38C61" }, { "DocsId": "P:System.Diagnostics.PerformanceData.CounterData.RawValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceCounterDataSet.cs#L85C21-L85C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceCounterDataSet.cs#L85C21-L85C39" } ], "DocsId": "T:System.Diagnostics.PerformanceData.CounterData", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceCounterDataSet.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceCounterDataSet.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.PerformanceData.CounterSetInstanceCounterDataSet.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceCounterDataSet.cs#L165C13-L167C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceCounterDataSet.cs#L165C13-L167C10" }, { "DocsId": "M:System.Diagnostics.PerformanceData.CounterSetInstanceCounterDataSet.Finalize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceCounterDataSet.cs#L171C13-L172C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceCounterDataSet.cs#L171C13-L172C10" }, { "DocsId": "P:System.Diagnostics.PerformanceData.CounterSetInstanceCounterDataSet.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceCounterDataSet.cs#L199C17-L216C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceCounterDataSet.cs#L199C17-L216C14" }, { "DocsId": "P:System.Diagnostics.PerformanceData.CounterSetInstanceCounterDataSet.Item(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceCounterDataSet.cs#L228C17-L267C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceCounterDataSet.cs#L228C17-L267C14" } ], "DocsId": "T:System.Diagnostics.PerformanceData.CounterSetInstanceCounterDataSet", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceCounterDataSet.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceCounterDataSet.cs" }, { "Members": [ { "DocsId": "F:System.Diagnostics.PerformanceData.CounterSetInstanceType.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterSetInstanceType.Single", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterSetInstanceType.Multiple", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterSetInstanceType.GlobalAggregate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterSetInstanceType.GlobalAggregateWithHistory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterSetInstanceType.MultipleAggregate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterSetInstanceType.InstanceAggregate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceType.cs" } ], "DocsId": "T:System.Diagnostics.PerformanceData.CounterSetInstanceType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterSetInstanceType.cs" }, { "Members": [ { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.QueueLength", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.LargeQueueLength", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.QueueLength100Ns", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.QueueLengthObjectTime", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.RawData32", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.RawData64", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.RawDataHex32", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.RawDataHex64", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.RateOfCountPerSecond32", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.RateOfCountPerSecond64", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.RawFraction32", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.RawFraction64", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.RawBase32", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.RawBase64", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.SampleFraction", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.SampleCounter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.SampleBase", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.AverageTimer32", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.AverageBase", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.AverageCount64", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.PercentageActive", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.PercentageNotActive", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.PercentageActive100Ns", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.PercentageNotActive100Ns", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.ElapsedTime", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.MultiTimerPercentageActive", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.MultiTimerPercentageNotActive", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.MultiTimerPercentageActive100Ns", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.MultiTimerPercentageNotActive100Ns", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.MultiTimerBase", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.Delta32", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.Delta64", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.ObjectSpecificTimer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.PrecisionSystemTimer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.PrecisionTimer100Ns", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceData.CounterType.PrecisionObjectSpecificTimer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" } ], "DocsId": "T:System.Diagnostics.PerformanceData.CounterType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/PerformanceData/CounterType.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/System.DirectoryServices.AccountManagement.json b/xml/SourceLinkInformation/net-9.0/System.DirectoryServices.AccountManagement.json index 6861e7879d5..975913d469f 100644 --- a/xml/SourceLinkInformation/net-9.0/System.DirectoryServices.AccountManagement.json +++ b/xml/SourceLinkInformation/net-9.0/System.DirectoryServices.AccountManagement.json @@ -1,1295 +1,1294 @@ { "Assembly": "System.DirectoryServices.AccountManagement", - "GUID": "2D9099EF8D1F495BBCCBB66DA6B132D7FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "D04AD7743DF6490FA0B820B4152A8F2AFFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalSearcher.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalSearcher.cs#L17C9-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalSearcher.cs#L17C9-L20C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalSearcher.#ctor(System.DirectoryServices.AccountManagement.Principal)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalSearcher.cs#L22C9-L31C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalSearcher.cs#L22C9-L31C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalSearcher.FindAll", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalSearcher.cs#L81C13-L83C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalSearcher.cs#L81C13-L83C35" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalSearcher.FindOne", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalSearcher.cs#L92C13-L110C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalSearcher.cs#L92C13-L110C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalSearcher.GetUnderlyingSearcher", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalSearcher.cs#L126C13-L153C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalSearcher.cs#L126C13-L153C40" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalSearcher.GetUnderlyingSearcherType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalSearcher.cs#L160C13-L173C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalSearcher.cs#L160C13-L173C50" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalSearcher.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalSearcher.cs#L178C13-L195C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalSearcher.cs#L178C13-L195C10" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.PrincipalSearcher.Context", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalSearcher.cs#L40C17-L42C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalSearcher.cs#L40C17-L42C29" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.PrincipalSearcher.QueryFilter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalSearcher.cs#L50C17-L52C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalSearcher.cs#L50C17-L52C35" } ], "DocsId": "T:System.DirectoryServices.AccountManagement.PrincipalSearcher", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalSearcher.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalSearcher.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalContext.#ctor(System.DirectoryServices.AccountManagement.ContextType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Context.cs#L358C13-L359C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Context.cs#L358C13-L359C12" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalContext.#ctor(System.DirectoryServices.AccountManagement.ContextType,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Context.cs#L362C13-L363C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Context.cs#L362C13-L363C12" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalContext.#ctor(System.DirectoryServices.AccountManagement.ContextType,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Context.cs#L366C13-L367C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Context.cs#L366C13-L367C12" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalContext.#ctor(System.DirectoryServices.AccountManagement.ContextType,System.String,System.String,System.DirectoryServices.AccountManagement.ContextOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Context.cs#L370C13-L371C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Context.cs#L370C13-L371C12" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalContext.#ctor(System.DirectoryServices.AccountManagement.ContextType,System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Context.cs#L374C13-L375C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Context.cs#L374C13-L375C12" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalContext.#ctor(System.DirectoryServices.AccountManagement.ContextType,System.String,System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Context.cs#L378C13-L379C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Context.cs#L378C13-L379C12" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalContext.#ctor(System.DirectoryServices.AccountManagement.ContextType,System.String,System.String,System.DirectoryServices.AccountManagement.ContextOptions,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Context.cs#L1011C9-L433C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Context.cs#L1011C9-L433C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalContext.ValidateCredentials(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Context.cs#L514C13-L527C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Context.cs#L514C13-L527C65" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalContext.ValidateCredentials(System.String,System.String,System.DirectoryServices.AccountManagement.ContextOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Context.cs#L537C13-L553C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Context.cs#L537C13-L553C74" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalContext.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Context.cs#L984C13-L1003C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Context.cs#L984C13-L1003C10" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.PrincipalContext.ContextType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Context.cs#L443C17-L445C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Context.cs#L443C17-L445C37" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.PrincipalContext.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Context.cs#L453C17-L455C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Context.cs#L453C17-L455C30" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.PrincipalContext.Container", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Context.cs#L463C17-L465C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Context.cs#L463C17-L465C35" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.PrincipalContext.UserName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Context.cs#L473C17-L475C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Context.cs#L473C17-L475C34" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.PrincipalContext.Options", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Context.cs#L483C17-L485C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Context.cs#L483C17-L485C33" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.PrincipalContext.ConnectedServer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Context.cs#L493C17-L503C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Context.cs#L493C17-L503C41" } ], "DocsId": "T:System.DirectoryServices.AccountManagement.PrincipalContext", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Context.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Context.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.AccountManagement.Principal.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L23C13-L23C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L23C13-L23C25" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.Principal.FindByIdentity(System.DirectoryServices.AccountManagement.PrincipalContext,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L284C13-L284C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L284C13-L284C86" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.Principal.FindByIdentity(System.DirectoryServices.AccountManagement.PrincipalContext,System.DirectoryServices.AccountManagement.IdentityType,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L289C13-L289C100" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L289C13-L289C100" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.Principal.Save", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L297C13-L327C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L297C13-L327C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.Principal.Save(System.DirectoryServices.AccountManagement.PrincipalContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L334C13-L442C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L334C13-L442C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.Principal.Delete", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L449C13-L464C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L449C13-L464C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.Principal.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L468C13-L479C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L468C13-L479C26" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.Principal.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L484C13-L484C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L484C13-L484C39" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.Principal.GetUnderlyingObject", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L490C13-L500C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L490C13-L500C42" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.Principal.GetUnderlyingObjectType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L506C13-L526C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L506C13-L526C55" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.Principal.GetGroups", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L532C13-L532C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L532C13-L532C76" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.Principal.GetGroups(System.DirectoryServices.AccountManagement.PrincipalContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L537C13-L540C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L537C13-L540C90" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.Principal.IsMemberOf(System.DirectoryServices.AccountManagement.GroupPrincipal)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L546C13-L551C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L546C13-L551C49" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.Principal.IsMemberOf(System.DirectoryServices.AccountManagement.PrincipalContext,System.DirectoryServices.AccountManagement.IdentityType,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L557C13-L574C89" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L557C13-L574C89" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.Principal.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L583C13-L602C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L583C13-L602C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.Principal.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L617C9-L610C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L617C9-L610C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.Principal.ExtensionGet(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L622C13-L652C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L622C13-L652C40" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.Principal.ExtensionSet(System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L695C13-L706C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L695C13-L706C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.Principal.CheckDisposedOrDeleted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L886C13-L897C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L886C13-L897C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.Principal.FindByIdentityWithType(System.DirectoryServices.AccountManagement.PrincipalContext,System.Type,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L902C13-L908C111" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L902C13-L908C111" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.Principal.FindByIdentityWithType(System.DirectoryServices.AccountManagement.PrincipalContext,System.Type,System.DirectoryServices.AccountManagement.IdentityType,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L914C13-L923C119" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L914C13-L923C119" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.Principal.Context", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L32C17-L37C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L32C17-L37C29" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.Principal.ContextType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L47C17-L55C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L47C17-L55C41" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.Principal.Description", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L70C17-L70C121" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L70C17-L70C121" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.Principal.DisplayName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L94C17-L94C121" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L94C17-L94C121" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.Principal.SamAccountName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L120C17-L120C116" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L120C17-L120C116" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.Principal.UserPrincipalName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L145C17-L145C139" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L145C17-L145C139" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.Principal.Sid", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L168C17-L168C109" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L168C17-L168C109" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.Principal.Guid", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L182C17-L182C108" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L182C17-L182C108" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.Principal.DistinguishedName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L196C17-L196C139" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L196C17-L196C139" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.Principal.StructuralObjectClass", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L211C17-L211C151" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L211C17-L211C151" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.Principal.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L232C17-L240C104" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L232C17-L240C104" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.Principal.ContextRaw", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L764C15-L764C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs#L764C15-L764C27" } ], "DocsId": "T:System.DirectoryServices.AccountManagement.Principal", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Principal.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.AccountManagement.AuthenticablePrincipal.IsAccountLockedOut", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L152C13-L152C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L152C13-L152C58" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.AuthenticablePrincipal.UnlockAccount", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L157C13-L158C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L157C13-L158C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.AuthenticablePrincipal.SetPassword(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L229C13-L230C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L229C13-L230C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.AuthenticablePrincipal.ChangePassword(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L234C13-L235C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L234C13-L235C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.AuthenticablePrincipal.ExpirePasswordNow", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L239C13-L240C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L239C13-L240C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.AuthenticablePrincipal.RefreshExpiredPassword", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L244C13-L245C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L244C13-L245C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.AuthenticablePrincipal.FindByLockoutTime(System.DirectoryServices.AccountManagement.PrincipalContext,System.DateTime,System.DirectoryServices.AccountManagement.MatchType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L266C13-L266C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L266C13-L266C83" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.AuthenticablePrincipal.FindByLogonTime(System.DirectoryServices.AccountManagement.PrincipalContext,System.DateTime,System.DirectoryServices.AccountManagement.MatchType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L271C13-L271C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L271C13-L271C81" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.AuthenticablePrincipal.FindByExpirationTime(System.DirectoryServices.AccountManagement.PrincipalContext,System.DateTime,System.DirectoryServices.AccountManagement.MatchType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L276C13-L276C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L276C13-L276C86" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.AuthenticablePrincipal.FindByBadPasswordAttempt(System.DirectoryServices.AccountManagement.PrincipalContext,System.DateTime,System.DirectoryServices.AccountManagement.MatchType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L281C13-L281C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L281C13-L281C90" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.AuthenticablePrincipal.FindByPasswordSetTime(System.DirectoryServices.AccountManagement.PrincipalContext,System.DateTime,System.DirectoryServices.AccountManagement.MatchType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L286C13-L286C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L286C13-L286C87" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.AuthenticablePrincipal.FindByLockoutTime``1(System.DirectoryServices.AccountManagement.PrincipalContext,System.DateTime,System.DirectoryServices.AccountManagement.MatchType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L295C13-L297C108" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L295C13-L297C108" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.AuthenticablePrincipal.FindByLogonTime``1(System.DirectoryServices.AccountManagement.PrincipalContext,System.DateTime,System.DirectoryServices.AccountManagement.MatchType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L301C13-L303C106" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L301C13-L303C106" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.AuthenticablePrincipal.FindByExpirationTime``1(System.DirectoryServices.AccountManagement.PrincipalContext,System.DateTime,System.DirectoryServices.AccountManagement.MatchType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L307C13-L309C111" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L307C13-L309C111" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.AuthenticablePrincipal.FindByBadPasswordAttempt``1(System.DirectoryServices.AccountManagement.PrincipalContext,System.DateTime,System.DirectoryServices.AccountManagement.MatchType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L313C13-L315C115" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L313C13-L315C115" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.AuthenticablePrincipal.FindByPasswordSetTime``1(System.DirectoryServices.AccountManagement.PrincipalContext,System.DateTime,System.DirectoryServices.AccountManagement.MatchType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L319C13-L321C112" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L319C13-L321C112" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.AuthenticablePrincipal.#ctor(System.DirectoryServices.AccountManagement.PrincipalContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L248C9-L335C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L248C9-L335C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.AuthenticablePrincipal.#ctor(System.DirectoryServices.AccountManagement.PrincipalContext,System.String,System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L337C133-L350C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L337C133-L350C10" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.AuthenticablePrincipal.Enabled", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L28C17-L47C120" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L28C17-L47C120" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.AuthenticablePrincipal.AccountLockoutTime", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L90C19-L90C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L90C19-L90C62" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.AuthenticablePrincipal.LastLogon", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L95C19-L95C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L95C19-L95C53" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.AuthenticablePrincipal.PermittedWorkstations", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L100C19-L100C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L100C19-L100C65" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.AuthenticablePrincipal.PermittedLogonTimes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L105C19-L105C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L105C19-L105C63" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.AuthenticablePrincipal.AccountExpirationDate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L111C19-L111C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L111C19-L111C65" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.AuthenticablePrincipal.SmartcardLogonRequired", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L117C19-L117C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L117C19-L117C66" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.AuthenticablePrincipal.DelegationPermitted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L123C19-L123C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L123C19-L123C63" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.AuthenticablePrincipal.BadLogonCount", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L129C19-L129C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L129C19-L129C57" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.AuthenticablePrincipal.HomeDirectory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L134C19-L134C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L134C19-L134C57" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.AuthenticablePrincipal.HomeDrive", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L140C19-L140C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L140C19-L140C53" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.AuthenticablePrincipal.ScriptPath", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L146C19-L146C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L146C19-L146C54" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.AuthenticablePrincipal.LastPasswordSet", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L185C19-L185C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L185C19-L185C60" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.AuthenticablePrincipal.LastBadPasswordAttempt", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L190C19-L190C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L190C19-L190C67" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.AuthenticablePrincipal.PasswordNotRequired", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L195C19-L195C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L195C19-L195C64" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.AuthenticablePrincipal.PasswordNeverExpires", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L201C19-L201C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L201C19-L201C65" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.AuthenticablePrincipal.UserCannotChangePassword", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L207C19-L207C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L207C19-L207C69" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.AuthenticablePrincipal.AllowReversiblePasswordEncryption", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L213C19-L213C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L213C19-L213C78" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.AuthenticablePrincipal.AdvancedSearchFilter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L223C17-L223C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L223C17-L223C29" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.AuthenticablePrincipal.Certificates", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L256C17-L257C126" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs#L256C17-L257C126" } ], "DocsId": "T:System.DirectoryServices.AccountManagement.AuthenticablePrincipal", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AuthenticablePrincipal.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.AccountManagement.UserPrincipal.#ctor(System.DirectoryServices.AccountManagement.PrincipalContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/User.cs#L17C58-L24C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/User.cs#L17C58-L24C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.UserPrincipal.#ctor(System.DirectoryServices.AccountManagement.PrincipalContext,System.String,System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/User.cs#L26C112-L37C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/User.cs#L26C112-L37C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.UserPrincipal.FindByLockoutTime(System.DirectoryServices.AccountManagement.PrincipalContext,System.DateTime,System.DirectoryServices.AccountManagement.MatchType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/User.cs#L231C13-L231C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/User.cs#L231C13-L231C74" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.UserPrincipal.FindByLogonTime(System.DirectoryServices.AccountManagement.PrincipalContext,System.DateTime,System.DirectoryServices.AccountManagement.MatchType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/User.cs#L236C13-L236C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/User.cs#L236C13-L236C72" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.UserPrincipal.FindByExpirationTime(System.DirectoryServices.AccountManagement.PrincipalContext,System.DateTime,System.DirectoryServices.AccountManagement.MatchType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/User.cs#L241C13-L241C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/User.cs#L241C13-L241C77" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.UserPrincipal.FindByBadPasswordAttempt(System.DirectoryServices.AccountManagement.PrincipalContext,System.DateTime,System.DirectoryServices.AccountManagement.MatchType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/User.cs#L246C13-L246C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/User.cs#L246C13-L246C81" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.UserPrincipal.FindByPasswordSetTime(System.DirectoryServices.AccountManagement.PrincipalContext,System.DateTime,System.DirectoryServices.AccountManagement.MatchType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/User.cs#L251C13-L251C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/User.cs#L251C13-L251C78" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.UserPrincipal.FindByIdentity(System.DirectoryServices.AccountManagement.PrincipalContext,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/User.cs#L256C13-L256C105" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/User.cs#L256C13-L256C105" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.UserPrincipal.FindByIdentity(System.DirectoryServices.AccountManagement.PrincipalContext,System.DirectoryServices.AccountManagement.IdentityType,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/User.cs#L261C13-L261C119" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/User.cs#L261C13-L261C119" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.UserPrincipal.GetAuthorizationGroups", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/User.cs#L266C13-L266C89" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/User.cs#L266C13-L266C89" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.UserPrincipal.GivenName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/User.cs#L51C17-L51C110" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/User.cs#L51C17-L51C110" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.UserPrincipal.MiddleName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/User.cs#L72C17-L72C113" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/User.cs#L72C17-L72C113" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.UserPrincipal.Surname", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/User.cs#L93C17-L93C104" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/User.cs#L93C17-L93C104" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.UserPrincipal.EmailAddress", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/User.cs#L114C17-L114C119" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/User.cs#L114C17-L114C119" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.UserPrincipal.VoiceTelephoneNumber", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/User.cs#L135C17-L135C143" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/User.cs#L135C17-L135C143" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.UserPrincipal.EmployeeId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/User.cs#L156C17-L156C113" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/User.cs#L156C17-L156C113" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.UserPrincipal.AdvancedSearchFilter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/User.cs#L169C70-L169C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/User.cs#L169C70-L169C82" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.UserPrincipal.Current", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/User.cs#L179C17-L221C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/User.cs#L179C17-L221C29" } ], "DocsId": "T:System.DirectoryServices.AccountManagement.UserPrincipal", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/User.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/User.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.AccountManagement.ComputerPrincipal.#ctor(System.DirectoryServices.AccountManagement.PrincipalContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Computer.cs#L46C9-L23C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Computer.cs#L46C9-L23C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.ComputerPrincipal.#ctor(System.DirectoryServices.AccountManagement.PrincipalContext,System.String,System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Computer.cs#L25C116-L39C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Computer.cs#L25C116-L39C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.ComputerPrincipal.FindByLockoutTime(System.DirectoryServices.AccountManagement.PrincipalContext,System.DateTime,System.DirectoryServices.AccountManagement.MatchType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Computer.cs#L62C13-L62C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Computer.cs#L62C13-L62C78" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.ComputerPrincipal.FindByLogonTime(System.DirectoryServices.AccountManagement.PrincipalContext,System.DateTime,System.DirectoryServices.AccountManagement.MatchType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Computer.cs#L67C13-L67C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Computer.cs#L67C13-L67C76" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.ComputerPrincipal.FindByExpirationTime(System.DirectoryServices.AccountManagement.PrincipalContext,System.DateTime,System.DirectoryServices.AccountManagement.MatchType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Computer.cs#L72C13-L72C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Computer.cs#L72C13-L72C81" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.ComputerPrincipal.FindByBadPasswordAttempt(System.DirectoryServices.AccountManagement.PrincipalContext,System.DateTime,System.DirectoryServices.AccountManagement.MatchType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Computer.cs#L77C13-L77C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Computer.cs#L77C13-L77C85" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.ComputerPrincipal.FindByPasswordSetTime(System.DirectoryServices.AccountManagement.PrincipalContext,System.DateTime,System.DirectoryServices.AccountManagement.MatchType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Computer.cs#L82C13-L82C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Computer.cs#L82C13-L82C82" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.ComputerPrincipal.FindByIdentity(System.DirectoryServices.AccountManagement.PrincipalContext,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Computer.cs#L87C13-L87C113" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Computer.cs#L87C13-L87C113" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.ComputerPrincipal.FindByIdentity(System.DirectoryServices.AccountManagement.PrincipalContext,System.DirectoryServices.AccountManagement.IdentityType,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Computer.cs#L92C13-L92C127" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Computer.cs#L92C13-L92C127" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.ComputerPrincipal.ServicePrincipalNames", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Computer.cs#L53C17-L53C175" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Computer.cs#L53C17-L53C175" } ], "DocsId": "T:System.DirectoryServices.AccountManagement.ComputerPrincipal", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Computer.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Computer.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.AccountManagement.GroupPrincipal.#ctor(System.DirectoryServices.AccountManagement.PrincipalContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Group.cs#L16C9-L23C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Group.cs#L16C9-L23C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.GroupPrincipal.#ctor(System.DirectoryServices.AccountManagement.PrincipalContext,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Group.cs#L25C82-L34C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Group.cs#L25C82-L34C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.GroupPrincipal.FindByIdentity(System.DirectoryServices.AccountManagement.PrincipalContext,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Group.cs#L178C13-L178C107" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Group.cs#L178C13-L178C107" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.GroupPrincipal.FindByIdentity(System.DirectoryServices.AccountManagement.PrincipalContext,System.DirectoryServices.AccountManagement.IdentityType,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Group.cs#L183C13-L183C121" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Group.cs#L183C13-L183C121" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.GroupPrincipal.GetMembers", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Group.cs#L188C13-L188C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Group.cs#L188C13-L188C38" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.GroupPrincipal.GetMembers(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Group.cs#L194C13-L210C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Group.cs#L194C13-L210C67" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.GroupPrincipal.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Group.cs#L220C17-L234C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Group.cs#L220C17-L234C10" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.GroupPrincipal.IsSecurityGroup", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Group.cs#L50C17-L68C127" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Group.cs#L50C17-L68C127" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.GroupPrincipal.GroupScope", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Group.cs#L95C17-L114C118" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Group.cs#L95C17-L114C118" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.GroupPrincipal.Members", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Group.cs#L142C17-L169C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Group.cs#L142C17-L169C33" } ], "DocsId": "T:System.DirectoryServices.AccountManagement.GroupPrincipal", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Group.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/Group.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.AccountManagement.MatchType.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/MatchType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/MatchType.cs" }, { "DocsId": "F:System.DirectoryServices.AccountManagement.MatchType.Equals", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/MatchType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/MatchType.cs" }, { "DocsId": "F:System.DirectoryServices.AccountManagement.MatchType.NotEquals", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/MatchType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/MatchType.cs" }, { "DocsId": "F:System.DirectoryServices.AccountManagement.MatchType.GreaterThan", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/MatchType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/MatchType.cs" }, { "DocsId": "F:System.DirectoryServices.AccountManagement.MatchType.GreaterThanOrEquals", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/MatchType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/MatchType.cs" }, { "DocsId": "F:System.DirectoryServices.AccountManagement.MatchType.LessThan", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/MatchType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/MatchType.cs" }, { "DocsId": "F:System.DirectoryServices.AccountManagement.MatchType.LessThanOrEquals", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/MatchType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/MatchType.cs" } ], "DocsId": "T:System.DirectoryServices.AccountManagement.MatchType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/MatchType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/MatchType.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.AccountManagement.ContextType.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ContextType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ContextType.cs" }, { "DocsId": "F:System.DirectoryServices.AccountManagement.ContextType.Machine", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ContextType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ContextType.cs" }, { "DocsId": "F:System.DirectoryServices.AccountManagement.ContextType.Domain", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ContextType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ContextType.cs" }, { "DocsId": "F:System.DirectoryServices.AccountManagement.ContextType.ApplicationDirectory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ContextType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ContextType.cs" } ], "DocsId": "T:System.DirectoryServices.AccountManagement.ContextType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ContextType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ContextType.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.AccountManagement.ContextOptions.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ContextOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ContextOptions.cs" }, { "DocsId": "F:System.DirectoryServices.AccountManagement.ContextOptions.Negotiate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ContextOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ContextOptions.cs" }, { "DocsId": "F:System.DirectoryServices.AccountManagement.ContextOptions.SimpleBind", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ContextOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ContextOptions.cs" }, { "DocsId": "F:System.DirectoryServices.AccountManagement.ContextOptions.SecureSocketLayer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ContextOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ContextOptions.cs" }, { "DocsId": "F:System.DirectoryServices.AccountManagement.ContextOptions.Signing", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ContextOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ContextOptions.cs" }, { "DocsId": "F:System.DirectoryServices.AccountManagement.ContextOptions.Sealing", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ContextOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ContextOptions.cs" }, { "DocsId": "F:System.DirectoryServices.AccountManagement.ContextOptions.ServerBind", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ContextOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ContextOptions.cs" } ], "DocsId": "T:System.DirectoryServices.AccountManagement.ContextOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ContextOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ContextOptions.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L18C13-L92C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L18C13-L92C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalCollection.System#Collections#ICollection#get_Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L98C17-L98C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L98C17-L98C30" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalCollection.System#Collections#ICollection#get_IsSynchronized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L106C17-L106C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L106C17-L106C39" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalCollection.System#Collections#ICollection#get_SyncRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L114C17-L114C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L114C17-L114C33" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalCollection.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L139C13-L139C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L139C13-L139C49" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalCollection.CopyTo(System.DirectoryServices.AccountManagement.Principal[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L147C13-L148C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L147C13-L148C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L213C13-L221C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L213C13-L221C69" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalCollection.Add(System.DirectoryServices.AccountManagement.UserPrincipal)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L230C13-L231C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L230C13-L231C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalCollection.Add(System.DirectoryServices.AccountManagement.GroupPrincipal)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L235C13-L236C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L235C13-L236C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalCollection.Add(System.DirectoryServices.AccountManagement.ComputerPrincipal)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L240C13-L241C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L240C13-L241C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalCollection.Add(System.DirectoryServices.AccountManagement.Principal)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L245C13-L285C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L245C13-L285C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalCollection.Add(System.DirectoryServices.AccountManagement.PrincipalContext,System.DirectoryServices.AccountManagement.IdentityType,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L289C13-L307C93" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L289C13-L307C93" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalCollection.Clear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L318C13-L345C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L318C13-L345C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalCollection.Remove(System.DirectoryServices.AccountManagement.UserPrincipal)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L353C13-L353C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L353C13-L353C44" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalCollection.Remove(System.DirectoryServices.AccountManagement.GroupPrincipal)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L358C13-L358C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L358C13-L358C45" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalCollection.Remove(System.DirectoryServices.AccountManagement.ComputerPrincipal)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L363C13-L363C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L363C13-L363C48" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalCollection.Remove(System.DirectoryServices.AccountManagement.Principal)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L368C13-L431C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L368C13-L431C28" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalCollection.Remove(System.DirectoryServices.AccountManagement.PrincipalContext,System.DirectoryServices.AccountManagement.IdentityType,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L436C13-L452C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L436C13-L452C38" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalCollection.Contains(System.DirectoryServices.AccountManagement.UserPrincipal)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L548C13-L548C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L548C13-L548C46" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalCollection.Contains(System.DirectoryServices.AccountManagement.GroupPrincipal)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L553C13-L553C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L553C13-L553C47" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalCollection.Contains(System.DirectoryServices.AccountManagement.ComputerPrincipal)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L558C13-L558C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L558C13-L558C50" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalCollection.Contains(System.DirectoryServices.AccountManagement.Principal)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L563C13-L579C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L563C13-L579C52" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalCollection.Contains(System.DirectoryServices.AccountManagement.PrincipalContext,System.DirectoryServices.AccountManagement.IdentityType,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L585C13-L600C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L585C13-L600C26" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.PrincipalCollection.System#Collections#ICollection#Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L98C17-L98C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L98C17-L98C30" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.PrincipalCollection.System#Collections#ICollection#IsSynchronized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L106C17-L106C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L106C17-L106C39" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.PrincipalCollection.System#Collections#ICollection#SyncRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L114C17-L114C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L114C17-L114C33" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.PrincipalCollection.IsSynchronized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L122C17-L122C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L122C17-L122C30" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.PrincipalCollection.SyncRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L130C17-L130C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L130C17-L130C29" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.PrincipalCollection.IsReadOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L154C17-L154C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L154C17-L154C30" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.PrincipalCollection.Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L162C17-L205C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs#L162C17-L205C14" } ], "DocsId": "T:System.DirectoryServices.AccountManagement.PrincipalCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/PrincipalCollection.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalValueCollection`1.System#Collections#IList#get_IsFixedSize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L21C17-L21C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L21C17-L21C36" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalValueCollection`1.System#Collections#IList#get_IsReadOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L29C17-L29C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L29C17-L29C35" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalValueCollection`1.System#Collections#IList#Add(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L35C13-L39C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L35C13-L39C26" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalValueCollection`1.System#Collections#IList#Clear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L44C13-L45C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L44C13-L45C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalValueCollection`1.System#Collections#IList#Contains(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L49C13-L52C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L49C13-L52C46" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalValueCollection`1.System#Collections#IList#IndexOf(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L57C13-L60C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L57C13-L60C38" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalValueCollection`1.System#Collections#IList#Insert(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L65C13-L69C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L65C13-L69C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalValueCollection`1.System#Collections#IList#Remove(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L73C13-L77C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L73C13-L77C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalValueCollection`1.System#Collections#IList#RemoveAt(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L81C13-L82C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L81C13-L82C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalValueCollection`1.System#Collections#IList#get_Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L88C17-L88C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L88C17-L88C36" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalValueCollection`1.System#Collections#IList#set_Item(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L93C17-L97C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L93C17-L97C14" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalValueCollection`1.System#Collections#ICollection#CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L105C13-L106C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L105C13-L106C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalValueCollection`1.System#Collections#ICollection#get_Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L112C17-L112C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L112C17-L112C37" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalValueCollection`1.System#Collections#ICollection#get_IsSynchronized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L120C17-L120C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L120C17-L120C39" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalValueCollection`1.System#Collections#ICollection#get_SyncRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L128C17-L128C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L128C17-L128C33" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalValueCollection`1.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L153C13-L153C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L153C13-L153C49" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalValueCollection`1.Add(`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L178C13-L182C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L178C13-L182C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalValueCollection`1.Clear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L186C13-L187C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L186C13-L187C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalValueCollection`1.Contains(`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L191C13-L194C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L191C13-L194C43" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalValueCollection`1.IndexOf(`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L199C13-L222C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L199C13-L222C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalValueCollection`1.Insert(System.Int32,`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L226C13-L242C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L226C13-L242C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalValueCollection`1.Remove(`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L246C13-L249C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L246C13-L249C41" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalValueCollection`1.RemoveAt(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L254C13-L278C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L254C13-L278C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalValueCollection`1.CopyTo(`0[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L337C13-L338C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L337C13-L338C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalValueCollection`1.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L353C13-L353C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L353C13-L353C84" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.PrincipalValueCollection`1.System#Collections#IList#IsFixedSize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L21C17-L21C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L21C17-L21C36" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.PrincipalValueCollection`1.System#Collections#IList#IsReadOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L29C17-L29C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L29C17-L29C35" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.PrincipalValueCollection`1.System#Collections#IList#Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L88C17-L88C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L88C17-L88C36" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.PrincipalValueCollection`1.System#Collections#ICollection#Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L112C17-L112C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L112C17-L112C37" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.PrincipalValueCollection`1.System#Collections#ICollection#IsSynchronized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L120C17-L120C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L120C17-L120C39" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.PrincipalValueCollection`1.System#Collections#ICollection#SyncRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L128C17-L128C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L128C17-L128C33" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.PrincipalValueCollection`1.IsSynchronized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L136C17-L136C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L136C17-L136C61" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.PrincipalValueCollection`1.SyncRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L144C17-L144C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L144C17-L144C29" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.PrincipalValueCollection`1.IsFixedSize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L163C17-L163C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L163C17-L163C30" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.PrincipalValueCollection`1.IsReadOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L171C17-L171C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L171C17-L171C30" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.PrincipalValueCollection`1.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L284C17-L300C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L284C17-L300C51" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.PrincipalValueCollection`1.Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L344C17-L344C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs#L344C17-L344C37" } ], "DocsId": "T:System.DirectoryServices.AccountManagement.PrincipalValueCollection`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ValueCollection.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalSearchResult`1.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/FindResult.cs#L21C13-L23C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/FindResult.cs#L21C13-L23C60" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalSearchResult`1.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/FindResult.cs#L28C13-L28C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/FindResult.cs#L28C13-L28C49" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalSearchResult`1.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/FindResult.cs#L33C13-L50C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/FindResult.cs#L33C13-L50C10" } ], "DocsId": "T:System.DirectoryServices.AccountManagement.PrincipalSearchResult`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/FindResult.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/FindResult.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L31C21-L33C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L31C21-L33C10" } ], "DocsId": "T:System.DirectoryServices.AccountManagement.PrincipalException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.AccountManagement.MultipleMatchesException.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L40C45-L40C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L40C45-L40C55" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.MultipleMatchesException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L42C59-L42C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L42C59-L42C76" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.MultipleMatchesException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L45C17-L46C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L45C17-L46C12" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.MultipleMatchesException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L53C21-L55C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L53C21-L55C10" } ], "DocsId": "T:System.DirectoryServices.AccountManagement.MultipleMatchesException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.AccountManagement.NoMatchingPrincipalException.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L62C49-L62C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L62C49-L62C59" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.NoMatchingPrincipalException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L64C63-L64C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L64C63-L64C80" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.NoMatchingPrincipalException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L67C17-L68C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L67C17-L68C12" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.NoMatchingPrincipalException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L74C9-L76C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L74C9-L76C55" } ], "DocsId": "T:System.DirectoryServices.AccountManagement.NoMatchingPrincipalException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.AccountManagement.PasswordException.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L84C38-L84C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L84C38-L84C48" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PasswordException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L86C52-L86C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L86C52-L86C69" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PasswordException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L89C13-L90C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L89C13-L90C12" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PasswordException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L97C21-L99C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L97C21-L99C10" } ], "DocsId": "T:System.DirectoryServices.AccountManagement.PasswordException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalExistsException.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L106C45-L106C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L106C45-L106C55" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalExistsException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L108C59-L108C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L108C59-L108C76" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalExistsException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L111C13-L112C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L111C13-L112C12" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalExistsException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L119C21-L121C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L119C21-L121C10" } ], "DocsId": "T:System.DirectoryServices.AccountManagement.PrincipalExistsException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalServerDownException.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L131C49-L131C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L131C49-L131C59" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalServerDownException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L133C63-L133C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L133C63-L133C80" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalServerDownException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L136C13-L137C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L136C13-L137C12" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalServerDownException.#ctor(System.String,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L139C78-L142C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L139C78-L142C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalServerDownException.#ctor(System.String,System.Exception,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L143C104-L146C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L143C104-L146C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalServerDownException.#ctor(System.String,System.Exception,System.Int32,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L147C123-L151C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L147C123-L151C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalServerDownException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L158C21-L162C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L158C21-L162C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalServerDownException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L170C13-L173C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L170C13-L173C10" } ], "DocsId": "T:System.DirectoryServices.AccountManagement.PrincipalServerDownException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalOperationException.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L182C48-L182C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L182C48-L182C58" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalOperationException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L184C62-L184C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L184C62-L184C79" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalOperationException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L187C13-L188C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L187C13-L188C12" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalOperationException.#ctor(System.String,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L190C77-L193C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L190C77-L193C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalOperationException.#ctor(System.String,System.Exception,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L194C103-L197C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L194C103-L197C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalOperationException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L204C21-L207C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L204C21-L207C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.PrincipalOperationException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L215C13-L217C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L215C13-L217C10" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.PrincipalOperationException.ErrorCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L223C17-L223C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs#L223C17-L223C35" } ], "DocsId": "T:System.DirectoryServices.AccountManagement.PrincipalOperationException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/exceptions.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.AccountManagement.IdentityType.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/IdentityType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/IdentityType.cs" }, { "DocsId": "F:System.DirectoryServices.AccountManagement.IdentityType.SamAccountName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/IdentityType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/IdentityType.cs" }, { "DocsId": "F:System.DirectoryServices.AccountManagement.IdentityType.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/IdentityType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/IdentityType.cs" }, { "DocsId": "F:System.DirectoryServices.AccountManagement.IdentityType.UserPrincipalName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/IdentityType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/IdentityType.cs" }, { "DocsId": "F:System.DirectoryServices.AccountManagement.IdentityType.DistinguishedName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/IdentityType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/IdentityType.cs" }, { "DocsId": "F:System.DirectoryServices.AccountManagement.IdentityType.Sid", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/IdentityType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/IdentityType.cs" }, { "DocsId": "F:System.DirectoryServices.AccountManagement.IdentityType.Guid", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/IdentityType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/IdentityType.cs" } ], "DocsId": "T:System.DirectoryServices.AccountManagement.IdentityType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/IdentityType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/IdentityType.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.AccountManagement.GroupScope.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/GroupType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/GroupType.cs" }, { "DocsId": "F:System.DirectoryServices.AccountManagement.GroupScope.Local", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/GroupType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/GroupType.cs" }, { "DocsId": "F:System.DirectoryServices.AccountManagement.GroupScope.Global", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/GroupType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/GroupType.cs" }, { "DocsId": "F:System.DirectoryServices.AccountManagement.GroupScope.Universal", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/GroupType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/GroupType.cs" } ], "DocsId": "T:System.DirectoryServices.AccountManagement.GroupScope", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/GroupType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/GroupType.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.AccountManagement.DirectoryPropertyAttribute.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ExtensionAttributes.cs#L15C9-L19C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ExtensionAttributes.cs#L15C9-L19C10" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.DirectoryPropertyAttribute.SchemaAttributeName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ExtensionAttributes.cs#L24C17-L24C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ExtensionAttributes.cs#L24C17-L24C45" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.DirectoryPropertyAttribute.Context", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ExtensionAttributes.cs#L31C17-L31C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ExtensionAttributes.cs#L31C17-L31C33" } ], "DocsId": "T:System.DirectoryServices.AccountManagement.DirectoryPropertyAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ExtensionAttributes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ExtensionAttributes.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.AccountManagement.DirectoryRdnPrefixAttribute.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ExtensionAttributes.cs#L46C9-L50C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ExtensionAttributes.cs#L46C9-L50C10" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.DirectoryRdnPrefixAttribute.RdnPrefix", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ExtensionAttributes.cs#L55C17-L55C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ExtensionAttributes.cs#L55C17-L55C35" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.DirectoryRdnPrefixAttribute.Context", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ExtensionAttributes.cs#L62C17-L62C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ExtensionAttributes.cs#L62C17-L62C33" } ], "DocsId": "T:System.DirectoryServices.AccountManagement.DirectoryRdnPrefixAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ExtensionAttributes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ExtensionAttributes.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.AccountManagement.DirectoryObjectClassAttribute.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ExtensionAttributes.cs#L73C9-L77C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ExtensionAttributes.cs#L73C9-L77C10" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.DirectoryObjectClassAttribute.ObjectClass", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ExtensionAttributes.cs#L82C17-L82C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ExtensionAttributes.cs#L82C17-L82C37" }, { "DocsId": "P:System.DirectoryServices.AccountManagement.DirectoryObjectClassAttribute.Context", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ExtensionAttributes.cs#L89C17-L89C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ExtensionAttributes.cs#L89C17-L89C33" } ], "DocsId": "T:System.DirectoryServices.AccountManagement.DirectoryObjectClassAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ExtensionAttributes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/ExtensionAttributes.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.AccountManagement.AdvancedFilters.#ctor(System.DirectoryServices.AccountManagement.Principal)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AdvancedFilters.cs#L16C9-L19C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AdvancedFilters.cs#L16C9-L19C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.AdvancedFilters.LastBadPasswordAttempt(System.DateTime,System.DirectoryServices.AccountManagement.MatchType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AdvancedFilters.cs#L27C13-L37C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AdvancedFilters.cs#L27C13-L37C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.AdvancedFilters.AccountExpirationDate(System.DateTime,System.DirectoryServices.AccountManagement.MatchType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AdvancedFilters.cs#L44C13-L54C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AdvancedFilters.cs#L44C13-L54C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.AdvancedFilters.AccountLockoutTime(System.DateTime,System.DirectoryServices.AccountManagement.MatchType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AdvancedFilters.cs#L61C13-L71C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AdvancedFilters.cs#L61C13-L71C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.AdvancedFilters.BadLogonCount(System.Int32,System.DirectoryServices.AccountManagement.MatchType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AdvancedFilters.cs#L78C13-L88C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AdvancedFilters.cs#L78C13-L88C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.AdvancedFilters.LastLogonTime(System.DateTime,System.DirectoryServices.AccountManagement.MatchType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AdvancedFilters.cs#L95C13-L105C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AdvancedFilters.cs#L95C13-L105C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.AdvancedFilters.LastPasswordSetTime(System.DateTime,System.DirectoryServices.AccountManagement.MatchType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AdvancedFilters.cs#L112C13-L122C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AdvancedFilters.cs#L112C13-L122C10" }, { "DocsId": "M:System.DirectoryServices.AccountManagement.AdvancedFilters.AdvancedFilterSet(System.String,System.Object,System.Type,System.DirectoryServices.AccountManagement.MatchType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AdvancedFilters.cs#L126C13-L127C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AdvancedFilters.cs#L126C13-L127C10" } ], "DocsId": "T:System.DirectoryServices.AccountManagement.AdvancedFilters", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AdvancedFilters.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AdvancedFilters.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/System.DirectoryServices.Protocols.json b/xml/SourceLinkInformation/net-9.0/System.DirectoryServices.Protocols.json index 45ad2818025..fd638856a31 100644 --- a/xml/SourceLinkInformation/net-9.0/System.DirectoryServices.Protocols.json +++ b/xml/SourceLinkInformation/net-9.0/System.DirectoryServices.Protocols.json @@ -1,2410 +1,2409 @@ { "Assembly": "System.DirectoryServices.Protocols", - "GUID": "C229D692C978495A903CA8DD605C2639FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "B23B91CBA29E420CA77505EF3AB90DB0FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "F:System.DirectoryServices.Protocols.AuthType.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/AuthTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/AuthTypes.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.AuthType.Anonymous", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/AuthTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/AuthTypes.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.AuthType.Basic", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/AuthTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/AuthTypes.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.AuthType.Negotiate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/AuthTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/AuthTypes.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.AuthType.Ntlm", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/AuthTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/AuthTypes.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.AuthType.Digest", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/AuthTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/AuthTypes.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.AuthType.Sicily", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/AuthTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/AuthTypes.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.AuthType.Dpa", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/AuthTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/AuthTypes.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.AuthType.Msn", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/AuthTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/AuthTypes.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.AuthType.External", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/AuthTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/AuthTypes.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.AuthType.Kerberos", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/AuthTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/AuthTypes.cs" } ], "DocsId": "T:System.DirectoryServices.Protocols.AuthType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/AuthTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/AuthTypes.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.Protocols.PartialResultProcessing.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/AuthTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/AuthTypes.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.PartialResultProcessing.NoPartialResultSupport", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/AuthTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/AuthTypes.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.PartialResultProcessing.ReturnPartialResults", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/AuthTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/AuthTypes.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.PartialResultProcessing.ReturnPartialResultsAndNotifyCallback", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/AuthTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/AuthTypes.cs" } ], "DocsId": "T:System.DirectoryServices.Protocols.PartialResultProcessing", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/AuthTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/AuthTypes.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.BerConverter.Encode(System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/BerConverter.cs#L15C13-L289C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/BerConverter.cs#L15C13-L289C35" }, { "DocsId": "M:System.DirectoryServices.Protocols.BerConverter.Decode(System.String,System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/BerConverter.cs#L295C13-L299C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/BerConverter.cs#L295C13-L299C52" } ], "DocsId": "T:System.DirectoryServices.Protocols.BerConverter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/BerConverter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/BerConverter.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.Protocols.DereferenceAlias.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DereferenceAlias.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DereferenceAlias.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.DereferenceAlias.Never", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DereferenceAlias.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DereferenceAlias.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.DereferenceAlias.InSearching", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DereferenceAlias.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DereferenceAlias.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.DereferenceAlias.FindingBaseObject", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DereferenceAlias.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DereferenceAlias.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.DereferenceAlias.Always", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DereferenceAlias.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DereferenceAlias.cs" } ], "DocsId": "T:System.DirectoryServices.Protocols.DereferenceAlias", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DereferenceAlias.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DereferenceAlias.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L13C9-L22C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L13C9-L22C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryAttribute.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L24C64-L26C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L24C64-L26C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryAttribute.#ctor(System.String,System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L28C64-L30C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L28C64-L30C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryAttribute.#ctor(System.String,System.Uri)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L32C61-L34C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L32C61-L34C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryAttribute.#ctor(System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L45C74-L56C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L45C74-L56C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryAttribute.GetValues(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L67C13-L115C93" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L67C13-L115C93" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryAttribute.Add(System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L157C41-L157C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L157C41-L157C59" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryAttribute.Add(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L159C41-L159C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L159C41-L159C59" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryAttribute.Add(System.Uri)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L161C38-L161C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L161C38-L161C56" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryAttribute.AddRange(System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L177C13-L193C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L177C13-L193C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryAttribute.Contains(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L195C47-L195C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L195C47-L195C67" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryAttribute.CopyTo(System.Object[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L197C58-L197C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L197C58-L197C83" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryAttribute.IndexOf(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L199C45-L199C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L199C45-L199C64" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryAttribute.Insert(System.Int32,System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L201C56-L201C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L201C56-L201C84" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryAttribute.Insert(System.Int32,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L203C56-L203C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L203C56-L203C84" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryAttribute.Insert(System.Int32,System.Uri)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L205C53-L205C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L205C53-L205C81" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryAttribute.Remove(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L214C45-L214C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L214C45-L214C63" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryAttribute.OnValidate(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L218C13-L224C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L218C13-L224C10" }, { "DocsId": "P:System.DirectoryServices.Protocols.DirectoryAttribute.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L60C20-L60C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L60C20-L60C34" }, { "DocsId": "P:System.DirectoryServices.Protocols.DirectoryAttribute.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L122C17-L141C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L122C17-L141C14" } ], "DocsId": "T:System.DirectoryServices.Protocols.DirectoryAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryAttributeModification.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L229C9-L233C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L229C9-L233C10" }, { "DocsId": "P:System.DirectoryServices.Protocols.DirectoryAttributeModification.Operation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L237C20-L237C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L237C20-L237C39" } ], "DocsId": "T:System.DirectoryServices.Protocols.DirectoryAttributeModification", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.SearchResultAttributeCollection.Contains(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L279C13-L282C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L279C13-L282C52" }, { "DocsId": "M:System.DirectoryServices.Protocols.SearchResultAttributeCollection.CopyTo(System.DirectoryServices.Protocols.DirectoryAttribute[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L285C70-L285C108" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L285C70-L285C108" }, { "DocsId": "P:System.DirectoryServices.Protocols.SearchResultAttributeCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L258C17-L264C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L258C17-L264C71" }, { "DocsId": "P:System.DirectoryServices.Protocols.SearchResultAttributeCollection.AttributeNames", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L268C46-L268C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L268C46-L268C61" }, { "DocsId": "P:System.DirectoryServices.Protocols.SearchResultAttributeCollection.Values", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L270C38-L270C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L270C38-L270C55" } ], "DocsId": "T:System.DirectoryServices.Protocols.SearchResultAttributeCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryAttributeCollection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L290C9-L292C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L290C9-L292C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryAttributeCollection.Add(System.DirectoryServices.Protocols.DirectoryAttribute)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L302C13-L307C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L302C13-L307C40" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryAttributeCollection.AddRange(System.DirectoryServices.Protocols.DirectoryAttribute[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L312C13-L323C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L312C13-L323C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryAttributeCollection.AddRange(System.DirectoryServices.Protocols.DirectoryAttributeCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L327C13-L334C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L327C13-L334C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryAttributeCollection.Contains(System.DirectoryServices.Protocols.DirectoryAttribute)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L336C59-L336C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L336C59-L336C79" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryAttributeCollection.CopyTo(System.DirectoryServices.Protocols.DirectoryAttribute[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L338C70-L338C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L338C70-L338C95" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryAttributeCollection.IndexOf(System.DirectoryServices.Protocols.DirectoryAttribute)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L340C57-L340C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L340C57-L340C76" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryAttributeCollection.Insert(System.Int32,System.DirectoryServices.Protocols.DirectoryAttribute)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L344C13-L350C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L344C13-L350C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryAttributeCollection.Remove(System.DirectoryServices.Protocols.DirectoryAttribute)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L352C57-L352C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L352C57-L352C75" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryAttributeCollection.OnValidate(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L356C13-L364C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L356C13-L364C10" }, { "DocsId": "P:System.DirectoryServices.Protocols.DirectoryAttributeCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L296C20-L296C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L296C20-L296C51" } ], "DocsId": "T:System.DirectoryServices.Protocols.DirectoryAttributeCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryAttributeModificationCollection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L369C9-L371C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L369C9-L371C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryAttributeModificationCollection.Add(System.DirectoryServices.Protocols.DirectoryAttributeModification)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L381C13-L386C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L381C13-L386C40" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryAttributeModificationCollection.AddRange(System.DirectoryServices.Protocols.DirectoryAttributeModification[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L391C13-L402C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L391C13-L402C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryAttributeModificationCollection.AddRange(System.DirectoryServices.Protocols.DirectoryAttributeModificationCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L406C13-L413C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L406C13-L413C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryAttributeModificationCollection.Contains(System.DirectoryServices.Protocols.DirectoryAttributeModification)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L415C71-L415C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L415C71-L415C91" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryAttributeModificationCollection.CopyTo(System.DirectoryServices.Protocols.DirectoryAttributeModification[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L417C82-L417C107" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L417C82-L417C107" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryAttributeModificationCollection.IndexOf(System.DirectoryServices.Protocols.DirectoryAttributeModification)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L419C69-L419C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L419C69-L419C88" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryAttributeModificationCollection.Insert(System.Int32,System.DirectoryServices.Protocols.DirectoryAttributeModification)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L423C13-L429C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L423C13-L429C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryAttributeModificationCollection.Remove(System.DirectoryServices.Protocols.DirectoryAttributeModification)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L431C69-L431C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L431C69-L431C87" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryAttributeModificationCollection.OnValidate(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L435C13-L443C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L435C13-L443C10" }, { "DocsId": "P:System.DirectoryServices.Protocols.DirectoryAttributeModificationCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L375C20-L375C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs#L375C20-L375C63" } ], "DocsId": "T:System.DirectoryServices.Protocols.DirectoryAttributeModificationCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttribute.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.Protocols.DirectoryAttributeOperation.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttributeOperation.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttributeOperation.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.DirectoryAttributeOperation.Add", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttributeOperation.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttributeOperation.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.DirectoryAttributeOperation.Delete", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttributeOperation.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttributeOperation.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.DirectoryAttributeOperation.Replace", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttributeOperation.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttributeOperation.cs" } ], "DocsId": "T:System.DirectoryServices.Protocols.DirectoryAttributeOperation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttributeOperation.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryAttributeOperation.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryConnection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryConnection.cs#L14C9-L17C101" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryConnection.cs#L14C9-L17C101" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryConnection.SendRequest(System.DirectoryServices.Protocols.DirectoryRequest)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryConnection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryConnection.cs" }, { "DocsId": "P:System.DirectoryServices.Protocols.DirectoryConnection.Directory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryConnection.cs#L19C57-L19C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryConnection.cs#L19C57-L19C77" }, { "DocsId": "P:System.DirectoryServices.Protocols.DirectoryConnection.ClientCertificates", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryConnection.cs#L21C64-L21C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryConnection.cs#L21C64-L21C87" }, { "DocsId": "P:System.DirectoryServices.Protocols.DirectoryConnection.Timeout", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryConnection.cs#L25C20-L25C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryConnection.cs#L25C20-L25C38" }, { "DocsId": "P:System.DirectoryServices.Protocols.DirectoryConnection.Credential", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryConnection.cs#L41C17-L42C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryConnection.cs#L41C17-L42C14" } ], "DocsId": "T:System.DirectoryServices.Protocols.DirectoryConnection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryConnection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryConnection.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.Protocols.ExtendedDNFlag.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ExtendedDNFlag.HexString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ExtendedDNFlag.StandardString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" } ], "DocsId": "T:System.DirectoryServices.Protocols.ExtendedDNFlag", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.Protocols.SecurityMasks.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.SecurityMasks.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.SecurityMasks.Owner", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.SecurityMasks.Group", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.SecurityMasks.Dacl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.SecurityMasks.Sacl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" } ], "DocsId": "T:System.DirectoryServices.Protocols.SecurityMasks", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.Protocols.DirectorySynchronizationOptions.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.DirectorySynchronizationOptions.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.DirectorySynchronizationOptions.ObjectSecurity", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.DirectorySynchronizationOptions.ParentsFirst", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.DirectorySynchronizationOptions.PublicDataOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.DirectorySynchronizationOptions.IncrementalValues", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" } ], "DocsId": "T:System.DirectoryServices.Protocols.DirectorySynchronizationOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.Protocols.SearchOption.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.SearchOption.DomainScope", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.SearchOption.PhantomRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" } ], "DocsId": "T:System.DirectoryServices.Protocols.SearchOption", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.SortKey.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L60C9-L62C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L60C9-L62C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.SortKey.#ctor(System.String,System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L64C9-L69C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L64C9-L69C10" }, { "DocsId": "P:System.DirectoryServices.Protocols.SortKey.AttributeName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L73C20-L73C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L73C20-L73C25" }, { "DocsId": "P:System.DirectoryServices.Protocols.SortKey.MatchingRule", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L79C20-L79C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L79C20-L79C25" }, { "DocsId": "P:System.DirectoryServices.Protocols.SortKey.ReverseOrder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L85C20-L85C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L85C20-L85C26" } ], "DocsId": "T:System.DirectoryServices.Protocols.SortKey", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryControl.#ctor(System.String,System.Byte[],System.Boolean,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L94C9-L110C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L94C9-L110C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryControl.GetValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L114C13-L124C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L114C13-L124C30" }, { "DocsId": "P:System.DirectoryServices.Protocols.DirectoryControl.Type", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L127C30-L127C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L127C30-L127C34" }, { "DocsId": "P:System.DirectoryServices.Protocols.DirectoryControl.IsCritical", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L129C34-L129C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L129C34-L129C38" }, { "DocsId": "P:System.DirectoryServices.Protocols.DirectoryControl.ServerSide", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L131C34-L131C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L131C34-L131C38" } ], "DocsId": "T:System.DirectoryServices.Protocols.DirectoryControl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.AsqRequestControl.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L236C38-L238C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L236C38-L238C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.AsqRequestControl.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L240C58-L243C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L240C58-L243C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.AsqRequestControl.GetValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L249C13-L250C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L249C13-L250C36" }, { "DocsId": "P:System.DirectoryServices.Protocols.AsqRequestControl.AttributeName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L245C39-L245C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L245C39-L245C43" } ], "DocsId": "T:System.DirectoryServices.Protocols.AsqRequestControl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" }, { "Members": [ { "DocsId": "P:System.DirectoryServices.Protocols.AsqResponseControl.Result", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L261C36-L261C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L261C36-L261C40" } ], "DocsId": "T:System.DirectoryServices.Protocols.AsqResponseControl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.CrossDomainMoveControl.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L266C43-L268C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L266C43-L268C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.CrossDomainMoveControl.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L270C72-L273C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L270C72-L273C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.CrossDomainMoveControl.GetValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L279C13-L291C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L279C13-L291C36" }, { "DocsId": "P:System.DirectoryServices.Protocols.CrossDomainMoveControl.TargetDomainController", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L275C48-L275C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L275C48-L275C52" } ], "DocsId": "T:System.DirectoryServices.Protocols.CrossDomainMoveControl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.DomainScopeControl.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L297C39-L299C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L297C39-L299C10" } ], "DocsId": "T:System.DirectoryServices.Protocols.DomainScopeControl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.ExtendedDNControl.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L306C38-L308C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L306C38-L308C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.ExtendedDNControl.#ctor(System.DirectoryServices.Protocols.ExtendedDNFlag)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L310C57-L313C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L310C57-L313C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.ExtendedDNControl.GetValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L328C13-L329C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L328C13-L329C36" }, { "DocsId": "P:System.DirectoryServices.Protocols.ExtendedDNControl.Flag", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L317C20-L317C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L317C20-L317C25" } ], "DocsId": "T:System.DirectoryServices.Protocols.ExtendedDNControl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.LazyCommitControl.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L335C38-L335C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L335C38-L335C90" } ], "DocsId": "T:System.DirectoryServices.Protocols.LazyCommitControl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryNotificationControl.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L340C49-L340C101" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L340C49-L340C101" } ], "DocsId": "T:System.DirectoryServices.Protocols.DirectoryNotificationControl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.PermissiveModifyControl.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L345C44-L345C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L345C44-L345C97" } ], "DocsId": "T:System.DirectoryServices.Protocols.PermissiveModifyControl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.SecurityDescriptorFlagControl.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L350C50-L350C102" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L350C50-L350C102" }, { "DocsId": "M:System.DirectoryServices.Protocols.SecurityDescriptorFlagControl.#ctor(System.DirectoryServices.Protocols.SecurityMasks)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L352C69-L355C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L352C69-L355C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.SecurityDescriptorFlagControl.GetValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L363C13-L364C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L363C13-L364C36" }, { "DocsId": "P:System.DirectoryServices.Protocols.SecurityDescriptorFlagControl.SecurityMasks", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L359C46-L359C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L359C46-L359C50" } ], "DocsId": "T:System.DirectoryServices.Protocols.SecurityDescriptorFlagControl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.SearchOptionsControl.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L370C9-L371C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L370C9-L371C94" }, { "DocsId": "M:System.DirectoryServices.Protocols.SearchOptionsControl.#ctor(System.DirectoryServices.Protocols.SearchOption)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L373C59-L376C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L373C59-L376C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.SearchOptionsControl.GetValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L392C13-L393C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L392C13-L393C36" }, { "DocsId": "P:System.DirectoryServices.Protocols.SearchOptionsControl.SearchOption", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L380C20-L380C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L380C20-L380C33" } ], "DocsId": "T:System.DirectoryServices.Protocols.SearchOptionsControl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.ShowDeletedControl.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L399C39-L399C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L399C39-L399C91" } ], "DocsId": "T:System.DirectoryServices.Protocols.ShowDeletedControl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.TreeDeleteControl.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L404C38-L404C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L404C38-L404C90" } ], "DocsId": "T:System.DirectoryServices.Protocols.TreeDeleteControl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.VerifyNameControl.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L411C38-L411C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L411C38-L411C91" }, { "DocsId": "M:System.DirectoryServices.Protocols.VerifyNameControl.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L413C55-L418C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L413C55-L418C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.VerifyNameControl.#ctor(System.String,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L420C65-L423C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L420C65-L423C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.VerifyNameControl.GetValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L435C13-L443C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L435C13-L443C36" }, { "DocsId": "P:System.DirectoryServices.Protocols.VerifyNameControl.ServerName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L427C20-L427C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L427C20-L427C31" }, { "DocsId": "P:System.DirectoryServices.Protocols.VerifyNameControl.Flag", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L431C27-L431C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L431C27-L431C31" } ], "DocsId": "T:System.DirectoryServices.Protocols.VerifyNameControl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.DirSyncRequestControl.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L450C9-L452C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L450C9-L452C94" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirSyncRequestControl.#ctor(System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L453C55-L456C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L453C55-L456C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirSyncRequestControl.#ctor(System.Byte[],System.DirectoryServices.Protocols.DirectorySynchronizationOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L458C95-L461C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L458C95-L461C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirSyncRequestControl.#ctor(System.Byte[],System.DirectoryServices.Protocols.DirectorySynchronizationOptions,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L463C115-L466C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L463C115-L466C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirSyncRequestControl.GetValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L508C13-L510C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L508C13-L510C36" }, { "DocsId": "P:System.DirectoryServices.Protocols.DirSyncRequestControl.Cookie", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L472C17-L483C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L472C17-L483C35" }, { "DocsId": "P:System.DirectoryServices.Protocols.DirSyncRequestControl.Option", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L490C57-L490C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L490C57-L490C61" }, { "DocsId": "P:System.DirectoryServices.Protocols.DirSyncRequestControl.AttributeCount", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L494C20-L494C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L494C20-L494C26" } ], "DocsId": "T:System.DirectoryServices.Protocols.DirSyncRequestControl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" }, { "Members": [ { "DocsId": "P:System.DirectoryServices.Protocols.DirSyncResponseControl.Cookie", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L529C17-L540C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L529C17-L540C35" }, { "DocsId": "P:System.DirectoryServices.Protocols.DirSyncResponseControl.MoreData", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L544C32-L544C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L544C32-L544C36" }, { "DocsId": "P:System.DirectoryServices.Protocols.DirSyncResponseControl.ResultSize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L546C33-L546C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L546C33-L546C37" } ], "DocsId": "T:System.DirectoryServices.Protocols.DirSyncResponseControl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.PageResultRequestControl.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L551C9-L554C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L551C9-L554C97" }, { "DocsId": "M:System.DirectoryServices.Protocols.PageResultRequestControl.#ctor(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L556C57-L559C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L556C57-L559C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.PageResultRequestControl.#ctor(System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L561C58-L564C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L561C58-L564C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.PageResultRequestControl.GetValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L602C13-L604C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L602C13-L604C36" }, { "DocsId": "P:System.DirectoryServices.Protocols.PageResultRequestControl.PageSize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L568C20-L568C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L568C20-L568C25" }, { "DocsId": "P:System.DirectoryServices.Protocols.PageResultRequestControl.Cookie", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L584C17-L595C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L584C17-L595C35" } ], "DocsId": "T:System.DirectoryServices.Protocols.PageResultRequestControl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" }, { "Members": [ { "DocsId": "P:System.DirectoryServices.Protocols.PageResultResponseControl.Cookie", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L622C17-L632C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L622C17-L632C35" }, { "DocsId": "P:System.DirectoryServices.Protocols.PageResultResponseControl.TotalCount", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L636C33-L636C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L636C33-L636C37" } ], "DocsId": "T:System.DirectoryServices.Protocols.PageResultResponseControl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.SortRequestControl.#ctor(System.DirectoryServices.Protocols.SortKey[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L641C9-L659C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L641C9-L659C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.SortRequestControl.#ctor(System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L661C78-L663C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L661C78-L663C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.SortRequestControl.#ctor(System.String,System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L641C9-L669C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L641C9-L669C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.SortRequestControl.GetValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L712C13-L798C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L712C13-L798C36" }, { "DocsId": "P:System.DirectoryServices.Protocols.SortRequestControl.SortKeys", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L675C17-L685C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L675C17-L685C33" } ], "DocsId": "T:System.DirectoryServices.Protocols.SortRequestControl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" }, { "Members": [ { "DocsId": "P:System.DirectoryServices.Protocols.SortResponseControl.Result", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L810C36-L810C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L810C36-L810C40" }, { "DocsId": "P:System.DirectoryServices.Protocols.SortResponseControl.AttributeName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L812C39-L812C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L812C39-L812C43" } ], "DocsId": "T:System.DirectoryServices.Protocols.SortResponseControl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.VlvRequestControl.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L824C38-L824C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L824C38-L824C91" }, { "DocsId": "M:System.DirectoryServices.Protocols.VlvRequestControl.#ctor(System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L826C81-L831C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L826C81-L831C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.VlvRequestControl.#ctor(System.Int32,System.Int32,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L833C84-L842C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L833C84-L842C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.VlvRequestControl.#ctor(System.Int32,System.Int32,System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L844C84-L849C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L844C84-L849C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.VlvRequestControl.GetValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L947C13-L988C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L947C13-L988C36" }, { "DocsId": "P:System.DirectoryServices.Protocols.VlvRequestControl.BeforeCount", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L853C20-L853C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L853C20-L853C27" }, { "DocsId": "P:System.DirectoryServices.Protocols.VlvRequestControl.AfterCount", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L867C20-L867C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L867C20-L867C26" }, { "DocsId": "P:System.DirectoryServices.Protocols.VlvRequestControl.Offset", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L881C20-L881C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L881C20-L881C27" }, { "DocsId": "P:System.DirectoryServices.Protocols.VlvRequestControl.EstimateCount", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L895C20-L895C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L895C20-L895C34" }, { "DocsId": "P:System.DirectoryServices.Protocols.VlvRequestControl.Target", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L911C17-L921C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L911C17-L921C36" }, { "DocsId": "P:System.DirectoryServices.Protocols.VlvRequestControl.ContextId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L930C17-L940C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L930C17-L940C36" } ], "DocsId": "T:System.DirectoryServices.Protocols.VlvRequestControl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" }, { "Members": [ { "DocsId": "P:System.DirectoryServices.Protocols.VlvResponseControl.TargetPosition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L1004C37-L1004C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L1004C37-L1004C41" }, { "DocsId": "P:System.DirectoryServices.Protocols.VlvResponseControl.ContentCount", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L1006C35-L1006C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L1006C35-L1006C39" }, { "DocsId": "P:System.DirectoryServices.Protocols.VlvResponseControl.ContextId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L1012C17-L1022C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L1012C17-L1022C36" }, { "DocsId": "P:System.DirectoryServices.Protocols.VlvResponseControl.Result", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L1026C36-L1026C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L1026C36-L1026C40" } ], "DocsId": "T:System.DirectoryServices.Protocols.VlvResponseControl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.QuotaControl.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L1034C33-L1034C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L1034C33-L1034C86" }, { "DocsId": "M:System.DirectoryServices.Protocols.QuotaControl.#ctor(System.Security.Principal.SecurityIdentifier)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L1036C60-L1039C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L1036C60-L1039C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.QuotaControl.GetValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L1043C13-L1044C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L1043C13-L1044C36" }, { "DocsId": "P:System.DirectoryServices.Protocols.QuotaControl.QuerySid", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/QuotaControl.Linux.cs#L12C20-L12C117" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/QuotaControl.Linux.cs#L12C20-L12C117" } ], "DocsId": "T:System.DirectoryServices.Protocols.QuotaControl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryControlCollection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L1050C9-L1052C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L1050C9-L1052C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryControlCollection.Add(System.DirectoryServices.Protocols.DirectoryControl)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L1062C13-L1064C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L1062C13-L1064C38" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryControlCollection.AddRange(System.DirectoryServices.Protocols.DirectoryControl[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L1069C13-L1080C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L1069C13-L1080C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryControlCollection.AddRange(System.DirectoryServices.Protocols.DirectoryControlCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L1084C13-L1091C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L1084C13-L1091C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryControlCollection.Contains(System.DirectoryServices.Protocols.DirectoryControl)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L1093C57-L1093C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L1093C57-L1093C77" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryControlCollection.CopyTo(System.DirectoryServices.Protocols.DirectoryControl[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L1095C68-L1095C93" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L1095C68-L1095C93" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryControlCollection.IndexOf(System.DirectoryServices.Protocols.DirectoryControl)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L1097C55-L1097C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L1097C55-L1097C74" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryControlCollection.Insert(System.Int32,System.DirectoryServices.Protocols.DirectoryControl)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L1101C13-L1104C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L1101C13-L1104C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryControlCollection.Remove(System.DirectoryServices.Protocols.DirectoryControl)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L1106C55-L1106C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L1106C55-L1106C73" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryControlCollection.OnValidate(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L1110C13-L1116C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L1110C13-L1116C10" }, { "DocsId": "P:System.DirectoryServices.Protocols.DirectoryControlCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L1056C20-L1056C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs#L1056C20-L1056C49" } ], "DocsId": "T:System.DirectoryServices.Protocols.DirectoryControlCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryControl.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryException.cs#L18C90-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryException.cs#L18C90-L20C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryException.cs#L22C70-L24C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryException.cs#L22C70-L24C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryException.cs#L26C53-L28C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryException.cs#L26C53-L28C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryException.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryException.cs#L30C39-L32C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryException.cs#L30C39-L32C10" } ], "DocsId": "T:System.DirectoryServices.Protocols.DirectoryException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryException.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryOperationException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryException.cs#L43C99-L43C122" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryException.cs#L43C99-L43C122" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryOperationException.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryException.cs#L45C48-L45C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryException.cs#L45C48-L45C83" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryOperationException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryException.cs#L47C62-L47C108" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryException.cs#L47C62-L47C108" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryOperationException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryException.cs#L49C79-L49C132" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryException.cs#L49C79-L49C132" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryOperationException.#ctor(System.DirectoryServices.Protocols.DirectoryResponse)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryException.cs#L52C13-L55C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryException.cs#L52C13-L55C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryOperationException.#ctor(System.DirectoryServices.Protocols.DirectoryResponse,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryException.cs#L58C15-L61C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryException.cs#L58C15-L61C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryOperationException.#ctor(System.DirectoryServices.Protocols.DirectoryResponse,System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryException.cs#L64C15-L67C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryException.cs#L64C15-L67C10" }, { "DocsId": "P:System.DirectoryServices.Protocols.DirectoryOperationException.Response", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryException.cs#L69C45-L69C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryException.cs#L69C45-L69C49" } ], "DocsId": "T:System.DirectoryServices.Protocols.DirectoryOperationException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryException.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.BerConversionException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryException.cs#L90C94-L90C117" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryException.cs#L90C94-L90C117" }, { "DocsId": "M:System.DirectoryServices.Protocols.BerConversionException.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryException.cs#L92C43-L94C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryException.cs#L92C43-L94C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.BerConversionException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryException.cs#L96C57-L98C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryException.cs#L96C57-L98C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.BerConversionException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryException.cs#L100C74-L102C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryException.cs#L100C74-L102C10" } ], "DocsId": "T:System.DirectoryServices.Protocols.BerConversionException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryException.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryIdentifier.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryIdentifier.cs#L10C9-L12C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryIdentifier.cs#L10C9-L12C10" } ], "DocsId": "T:System.DirectoryServices.Protocols.DirectoryIdentifier", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryIdentifier.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryIdentifier.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.DirectoryOperation.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryOperation.cs#L10C9-L10C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryOperation.cs#L10C9-L10C43" } ], "DocsId": "T:System.DirectoryServices.Protocols.DirectoryOperation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryOperation.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryOperation.cs" }, { "Members": [ { "DocsId": "P:System.DirectoryServices.Protocols.DirectoryRequest.RequestId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L17C20-L17C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L17C20-L17C39" }, { "DocsId": "P:System.DirectoryServices.Protocols.DirectoryRequest.Controls", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L21C54-L21C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L21C54-L21C58" } ], "DocsId": "T:System.DirectoryServices.Protocols.DirectoryRequest", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.DeleteRequest.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L26C9-L26C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L26C9-L26C35" }, { "DocsId": "M:System.DirectoryServices.Protocols.DeleteRequest.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L28C9-L31C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L28C9-L31C10" }, { "DocsId": "P:System.DirectoryServices.Protocols.DeleteRequest.DistinguishedName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L33C43-L33C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L33C43-L33C47" } ], "DocsId": "T:System.DirectoryServices.Protocols.DeleteRequest", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.AddRequest.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L69C67-L38C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L69C67-L38C32" }, { "DocsId": "M:System.DirectoryServices.Protocols.AddRequest.#ctor(System.String,System.DirectoryServices.Protocols.DirectoryAttribute[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L40C95-L51C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L40C95-L51C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.AddRequest.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L53C75-L65C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L53C75-L65C10" }, { "DocsId": "P:System.DirectoryServices.Protocols.AddRequest.DistinguishedName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L67C43-L67C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L67C43-L67C47" }, { "DocsId": "P:System.DirectoryServices.Protocols.AddRequest.Attributes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L69C58-L69C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L69C58-L69C62" } ], "DocsId": "T:System.DirectoryServices.Protocols.AddRequest", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.ModifyRequest.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L105C82-L74C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L105C82-L74C35" }, { "DocsId": "M:System.DirectoryServices.Protocols.ModifyRequest.#ctor(System.String,System.DirectoryServices.Protocols.DirectoryAttributeModification[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L76C113-L80C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L76C113-L80C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.ModifyRequest.#ctor(System.String,System.DirectoryServices.Protocols.DirectoryAttributeOperation,System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L82C143-L101C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L82C143-L101C10" }, { "DocsId": "P:System.DirectoryServices.Protocols.ModifyRequest.DistinguishedName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L103C43-L103C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L103C43-L103C47" }, { "DocsId": "P:System.DirectoryServices.Protocols.ModifyRequest.Modifications", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L105C73-L105C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L105C73-L105C77" } ], "DocsId": "T:System.DirectoryServices.Protocols.ModifyRequest", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.CompareRequest.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L151C56-L110C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L151C56-L110C36" }, { "DocsId": "M:System.DirectoryServices.Protocols.CompareRequest.#ctor(System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L151C56-L115C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L151C56-L115C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.CompareRequest.#ctor(System.String,System.String,System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L151C56-L120C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L151C56-L120C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.CompareRequest.#ctor(System.String,System.String,System.Uri)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L151C56-L125C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L151C56-L125C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.CompareRequest.#ctor(System.String,System.DirectoryServices.Protocols.DirectoryAttribute)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L151C56-L137C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L151C56-L137C10" }, { "DocsId": "P:System.DirectoryServices.Protocols.CompareRequest.DistinguishedName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L149C43-L149C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L149C43-L149C47" }, { "DocsId": "P:System.DirectoryServices.Protocols.CompareRequest.Assertion", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L151C47-L151C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L151C47-L151C51" } ], "DocsId": "T:System.DirectoryServices.Protocols.CompareRequest", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.ModifyDNRequest.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L171C50-L156C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L171C50-L156C37" }, { "DocsId": "M:System.DirectoryServices.Protocols.ModifyDNRequest.#ctor(System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L171C50-L163C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L171C50-L163C10" }, { "DocsId": "P:System.DirectoryServices.Protocols.ModifyDNRequest.DistinguishedName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L165C43-L165C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L165C43-L165C47" }, { "DocsId": "P:System.DirectoryServices.Protocols.ModifyDNRequest.NewParentDistinguishedName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L167C52-L167C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L167C52-L167C56" }, { "DocsId": "P:System.DirectoryServices.Protocols.ModifyDNRequest.NewName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L169C33-L169C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L169C33-L169C37" }, { "DocsId": "P:System.DirectoryServices.Protocols.ModifyDNRequest.DeleteOldRdn", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L171C36-L171C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L171C36-L171C40" } ], "DocsId": "T:System.DirectoryServices.Protocols.ModifyDNRequest", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.ExtendedRequest.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L178C9-L178C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L178C9-L178C37" }, { "DocsId": "M:System.DirectoryServices.Protocols.ExtendedRequest.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L180C9-L183C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L180C9-L183C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.ExtendedRequest.#ctor(System.String,System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L185C75-L188C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L185C75-L188C10" }, { "DocsId": "P:System.DirectoryServices.Protocols.ExtendedRequest.RequestName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L190C37-L190C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L190C37-L190C41" }, { "DocsId": "P:System.DirectoryServices.Protocols.ExtendedRequest.RequestValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L196C17-L206C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L196C17-L206C34" } ], "DocsId": "T:System.DirectoryServices.Protocols.ExtendedRequest", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.SearchRequest.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L234C55-L214C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L234C55-L214C35" }, { "DocsId": "M:System.DirectoryServices.Protocols.SearchRequest.#ctor(System.String,System.String,System.DirectoryServices.Protocols.SearchScope,System.String[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L216C133-L230C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L216C133-L230C10" }, { "DocsId": "P:System.DirectoryServices.Protocols.SearchRequest.DistinguishedName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L232C43-L232C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L232C43-L232C47" }, { "DocsId": "P:System.DirectoryServices.Protocols.SearchRequest.Attributes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L234C46-L234C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L234C46-L234C50" }, { "DocsId": "P:System.DirectoryServices.Protocols.SearchRequest.Filter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L238C20-L238C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L238C20-L238C36" }, { "DocsId": "P:System.DirectoryServices.Protocols.SearchRequest.Scope", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L252C20-L252C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L252C20-L252C35" }, { "DocsId": "P:System.DirectoryServices.Protocols.SearchRequest.Aliases", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L266C20-L266C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L266C20-L266C38" }, { "DocsId": "P:System.DirectoryServices.Protocols.SearchRequest.SizeLimit", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L280C20-L280C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L280C20-L280C39" }, { "DocsId": "P:System.DirectoryServices.Protocols.SearchRequest.TimeLimit", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L294C20-L294C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L294C20-L294C39" }, { "DocsId": "P:System.DirectoryServices.Protocols.SearchRequest.TypesOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L312C33-L312C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L312C33-L312C37" } ], "DocsId": "T:System.DirectoryServices.Protocols.SearchRequest", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.DsmlAuthRequest.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L326C9-L326C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L326C9-L326C61" }, { "DocsId": "M:System.DirectoryServices.Protocols.DsmlAuthRequest.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L328C9-L328C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L328C9-L328C74" }, { "DocsId": "P:System.DirectoryServices.Protocols.DsmlAuthRequest.Principal", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L330C35-L330C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs#L330C35-L330C39" } ], "DocsId": "T:System.DirectoryServices.Protocols.DsmlAuthRequest", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryRequest.cs" }, { "Members": [ { "DocsId": "P:System.DirectoryServices.Protocols.DirectoryResponse.RequestId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryResponse.cs#L20C35-L20C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryResponse.cs#L20C35-L20C39" }, { "DocsId": "P:System.DirectoryServices.Protocols.DirectoryResponse.MatchedDN", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryResponse.cs#L22C43-L22C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryResponse.cs#L22C43-L22C47" }, { "DocsId": "P:System.DirectoryServices.Protocols.DirectoryResponse.Controls", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryResponse.cs#L28C17-L39C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryResponse.cs#L28C17-L39C37" }, { "DocsId": "P:System.DirectoryServices.Protocols.DirectoryResponse.ResultCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryResponse.cs#L43C48-L43C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryResponse.cs#L43C48-L43C52" }, { "DocsId": "P:System.DirectoryServices.Protocols.DirectoryResponse.ErrorMessage", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryResponse.cs#L45C46-L45C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryResponse.cs#L45C46-L45C50" }, { "DocsId": "P:System.DirectoryServices.Protocols.DirectoryResponse.Referral", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryResponse.cs#L51C17-L61C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryResponse.cs#L51C17-L61C37" } ], "DocsId": "T:System.DirectoryServices.Protocols.DirectoryResponse", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryResponse.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryResponse.cs" }, { "Members": [], "DocsId": "T:System.DirectoryServices.Protocols.DeleteResponse", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryResponse.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryResponse.cs" }, { "Members": [], "DocsId": "T:System.DirectoryServices.Protocols.AddResponse", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryResponse.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryResponse.cs" }, { "Members": [], "DocsId": "T:System.DirectoryServices.Protocols.ModifyResponse", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryResponse.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryResponse.cs" }, { "Members": [], "DocsId": "T:System.DirectoryServices.Protocols.ModifyDNResponse", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryResponse.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryResponse.cs" }, { "Members": [], "DocsId": "T:System.DirectoryServices.Protocols.CompareResponse", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryResponse.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryResponse.cs" }, { "Members": [ { "DocsId": "P:System.DirectoryServices.Protocols.ExtendedResponse.ResponseName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryResponse.cs#L97C38-L97C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryResponse.cs#L97C38-L97C42" }, { "DocsId": "P:System.DirectoryServices.Protocols.ExtendedResponse.ResponseValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryResponse.cs#L103C17-L113C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryResponse.cs#L103C17-L113C33" } ], "DocsId": "T:System.DirectoryServices.Protocols.ExtendedResponse", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryResponse.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryResponse.cs" }, { "Members": [ { "DocsId": "P:System.DirectoryServices.Protocols.SearchResponse.References", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryResponse.cs#L128C20-L128C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryResponse.cs#L128C20-L128C40" }, { "DocsId": "P:System.DirectoryServices.Protocols.SearchResponse.Entries", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryResponse.cs#L134C20-L134C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryResponse.cs#L134C20-L134C36" } ], "DocsId": "T:System.DirectoryServices.Protocols.SearchResponse", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryResponse.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryResponse.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.PartialResultsCollection.Contains(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/PartialResultsCollection.cs#L16C47-L16C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/PartialResultsCollection.cs#L16C47-L16C72" }, { "DocsId": "M:System.DirectoryServices.Protocols.PartialResultsCollection.IndexOf(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/PartialResultsCollection.cs#L18C45-L18C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/PartialResultsCollection.cs#L18C45-L18C69" }, { "DocsId": "M:System.DirectoryServices.Protocols.PartialResultsCollection.CopyTo(System.Object[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/PartialResultsCollection.cs#L20C59-L20C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/PartialResultsCollection.cs#L20C59-L20C90" }, { "DocsId": "P:System.DirectoryServices.Protocols.PartialResultsCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/PartialResultsCollection.cs#L12C42-L12C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/PartialResultsCollection.cs#L12C42-L12C58" } ], "DocsId": "T:System.DirectoryServices.Protocols.PartialResultsCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/PartialResultsCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/PartialResultsCollection.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.Protocols.ReferralChasingOptions.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ReferralChasingOption.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ReferralChasingOption.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ReferralChasingOptions.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ReferralChasingOption.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ReferralChasingOption.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ReferralChasingOptions.Subordinate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ReferralChasingOption.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ReferralChasingOption.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ReferralChasingOptions.External", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ReferralChasingOption.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ReferralChasingOption.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ReferralChasingOptions.All", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ReferralChasingOption.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ReferralChasingOption.cs" } ], "DocsId": "T:System.DirectoryServices.Protocols.ReferralChasingOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ReferralChasingOption.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ReferralChasingOption.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.Protocols.ResultCode.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ResultCode.Success", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ResultCode.OperationsError", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ResultCode.ProtocolError", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ResultCode.TimeLimitExceeded", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ResultCode.SizeLimitExceeded", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ResultCode.CompareFalse", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ResultCode.CompareTrue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ResultCode.AuthMethodNotSupported", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ResultCode.StrongAuthRequired", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ResultCode.ReferralV2", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ResultCode.Referral", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ResultCode.AdminLimitExceeded", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ResultCode.UnavailableCriticalExtension", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ResultCode.ConfidentialityRequired", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ResultCode.SaslBindInProgress", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ResultCode.NoSuchAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ResultCode.UndefinedAttributeType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ResultCode.InappropriateMatching", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ResultCode.ConstraintViolation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ResultCode.AttributeOrValueExists", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ResultCode.InvalidAttributeSyntax", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ResultCode.NoSuchObject", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ResultCode.AliasProblem", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ResultCode.InvalidDNSyntax", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ResultCode.AliasDereferencingProblem", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ResultCode.InappropriateAuthentication", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ResultCode.InsufficientAccessRights", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ResultCode.Busy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ResultCode.Unavailable", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ResultCode.UnwillingToPerform", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ResultCode.LoopDetect", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ResultCode.SortControlMissing", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ResultCode.OffsetRangeError", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ResultCode.NamingViolation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ResultCode.ObjectClassViolation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ResultCode.NotAllowedOnNonLeaf", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ResultCode.NotAllowedOnRdn", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ResultCode.EntryAlreadyExists", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ResultCode.ObjectClassModificationsProhibited", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ResultCode.ResultsTooLarge", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ResultCode.AffectsMultipleDsas", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ResultCode.VirtualListViewError", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.ResultCode.Other", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" } ], "DocsId": "T:System.DirectoryServices.Protocols.ResultCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/ResultCode.cs" }, { "Members": [ { "DocsId": "P:System.DirectoryServices.Protocols.SearchResultReference.Reference", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/SearchResults.cs#L18C17-L28C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/SearchResults.cs#L18C17-L28C32" }, { "DocsId": "P:System.DirectoryServices.Protocols.SearchResultReference.Controls", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/SearchResults.cs#L32C47-L32C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/SearchResults.cs#L32C47-L32C78" } ], "DocsId": "T:System.DirectoryServices.Protocols.SearchResultReference", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/SearchResults.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/SearchResults.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.SearchResultReferenceCollection.Contains(System.DirectoryServices.Protocols.SearchResultReference)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/SearchResults.cs#L43C62-L43C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/SearchResults.cs#L43C62-L43C87" }, { "DocsId": "M:System.DirectoryServices.Protocols.SearchResultReferenceCollection.IndexOf(System.DirectoryServices.Protocols.SearchResultReference)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/SearchResults.cs#L45C60-L45C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/SearchResults.cs#L45C60-L45C84" }, { "DocsId": "M:System.DirectoryServices.Protocols.SearchResultReferenceCollection.CopyTo(System.DirectoryServices.Protocols.SearchResultReference[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/SearchResults.cs#L47C74-L47C105" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/SearchResults.cs#L47C74-L47C105" }, { "DocsId": "P:System.DirectoryServices.Protocols.SearchResultReferenceCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/SearchResults.cs#L39C57-L39C96" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/SearchResults.cs#L39C57-L39C96" } ], "DocsId": "T:System.DirectoryServices.Protocols.SearchResultReferenceCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/SearchResults.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/SearchResults.cs" }, { "Members": [ { "DocsId": "P:System.DirectoryServices.Protocols.SearchResultEntry.DistinguishedName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/SearchResults.cs#L62C43-L62C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/SearchResults.cs#L62C43-L62C47" }, { "DocsId": "P:System.DirectoryServices.Protocols.SearchResultEntry.Attributes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/SearchResults.cs#L64C61-L64C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/SearchResults.cs#L64C61-L64C65" }, { "DocsId": "P:System.DirectoryServices.Protocols.SearchResultEntry.Controls", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/SearchResults.cs#L66C47-L66C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/SearchResults.cs#L66C47-L66C78" } ], "DocsId": "T:System.DirectoryServices.Protocols.SearchResultEntry", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/SearchResults.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/SearchResults.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.SearchResultEntryCollection.Contains(System.DirectoryServices.Protocols.SearchResultEntry)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/SearchResults.cs#L77C58-L77C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/SearchResults.cs#L77C58-L77C83" }, { "DocsId": "M:System.DirectoryServices.Protocols.SearchResultEntryCollection.IndexOf(System.DirectoryServices.Protocols.SearchResultEntry)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/SearchResults.cs#L79C56-L79C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/SearchResults.cs#L79C56-L79C80" }, { "DocsId": "M:System.DirectoryServices.Protocols.SearchResultEntryCollection.CopyTo(System.DirectoryServices.Protocols.SearchResultEntry[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/SearchResults.cs#L81C70-L81C101" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/SearchResults.cs#L81C70-L81C101" }, { "DocsId": "P:System.DirectoryServices.Protocols.SearchResultEntryCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/SearchResults.cs#L73C53-L73C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/SearchResults.cs#L73C53-L73C88" } ], "DocsId": "T:System.DirectoryServices.Protocols.SearchResultEntryCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/SearchResults.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/SearchResults.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.Protocols.SearchScope.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/SearchScope.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/SearchScope.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.SearchScope.Base", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/SearchScope.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/SearchScope.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.SearchScope.OneLevel", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/SearchScope.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/SearchScope.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.SearchScope.Subtree", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/SearchScope.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/SearchScope.cs" } ], "DocsId": "T:System.DirectoryServices.Protocols.SearchScope", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/SearchScope.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/SearchScope.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.LdapConnection.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapConnection.cs#L54C48-L56C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapConnection.cs#L54C48-L56C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.LdapConnection.#ctor(System.DirectoryServices.Protocols.LdapDirectoryIdentifier)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapConnection.cs#L58C69-L60C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapConnection.cs#L58C69-L60C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.LdapConnection.#ctor(System.DirectoryServices.Protocols.LdapDirectoryIdentifier,System.Net.NetworkCredential)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapConnection.cs#L62C99-L64C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapConnection.cs#L62C99-L64C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.LdapConnection.#ctor(System.DirectoryServices.Protocols.LdapDirectoryIdentifier,System.Net.NetworkCredential,System.DirectoryServices.Protocols.AuthType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapConnection.cs#L45C9-L87C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapConnection.cs#L45C9-L87C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.LdapConnection.Finalize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapConnection.cs#L100C30-L100C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapConnection.cs#L100C30-L16707566C0" }, { "DocsId": "M:System.DirectoryServices.Protocols.LdapConnection.SendRequest(System.DirectoryServices.Protocols.DirectoryRequest)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapConnection.cs#L193C13-L193C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapConnection.cs#L193C13-L193C61" }, { "DocsId": "M:System.DirectoryServices.Protocols.LdapConnection.SendRequest(System.DirectoryServices.Protocols.DirectoryRequest,System.TimeSpan)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapConnection.cs#L198C13-L260C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapConnection.cs#L198C13-L260C60" }, { "DocsId": "M:System.DirectoryServices.Protocols.LdapConnection.BeginSendRequest(System.DirectoryServices.Protocols.DirectoryRequest,System.DirectoryServices.Protocols.PartialResultProcessing,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapConnection.cs#L266C13-L266C96" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapConnection.cs#L266C13-L266C96" }, { "DocsId": "M:System.DirectoryServices.Protocols.LdapConnection.BeginSendRequest(System.DirectoryServices.Protocols.DirectoryRequest,System.TimeSpan,System.DirectoryServices.Protocols.PartialResultProcessing,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapConnection.cs#L271C13-L386C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapConnection.cs#L271C13-L386C56" }, { "DocsId": "M:System.DirectoryServices.Protocols.LdapConnection.Abort(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapConnection.cs#L391C13-L435C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapConnection.cs#L391C13-L435C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.LdapConnection.GetPartialResults(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapConnection.cs#L439C13-L459C101" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapConnection.cs#L439C13-L459C101" }, { "DocsId": "M:System.DirectoryServices.Protocols.LdapConnection.EndSendRequest(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapConnection.cs#L464C13-L506C101" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapConnection.cs#L464C13-L506C101" }, { "DocsId": "M:System.DirectoryServices.Protocols.LdapConnection.Bind", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapConnection.cs#L1005C31-L1005C89" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapConnection.cs#L1005C31-L1005C89" }, { "DocsId": "M:System.DirectoryServices.Protocols.LdapConnection.Bind(System.Net.NetworkCredential)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapConnection.cs#L1007C62-L1007C112" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapConnection.cs#L1007C62-L1007C112" }, { "DocsId": "M:System.DirectoryServices.Protocols.LdapConnection.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapConnection.cs#L1163C13-L1165C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapConnection.cs#L1163C13-L1165C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.LdapConnection.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapConnection.cs#L1169C13-L1189C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapConnection.cs#L1169C13-L1189C10" }, { "DocsId": "P:System.DirectoryServices.Protocols.LdapConnection.Timeout", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapConnection.cs#L104C20-L104C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapConnection.cs#L104C20-L104C38" }, { "DocsId": "P:System.DirectoryServices.Protocols.LdapConnection.AuthType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapConnection.cs#L124C20-L124C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapConnection.cs#L124C20-L124C39" }, { "DocsId": "P:System.DirectoryServices.Protocols.LdapConnection.SessionOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapConnection.cs#L143C52-L143C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapConnection.cs#L143C52-L143C56" }, { "DocsId": "P:System.DirectoryServices.Protocols.LdapConnection.Credential", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapConnection.cs#L149C17-L155C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapConnection.cs#L149C17-L155C14" }, { "DocsId": "P:System.DirectoryServices.Protocols.LdapConnection.AutoBind", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapConnection.cs#L158C32-L158C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapConnection.cs#L158C32-L158C36" } ], "DocsId": "T:System.DirectoryServices.Protocols.LdapConnection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapConnection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapConnection.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.LdapDirectoryIdentifier.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapDirectoryIdentifier.cs#L10C57-L12C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapDirectoryIdentifier.cs#L10C57-L12C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.LdapDirectoryIdentifier.#ctor(System.String,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapDirectoryIdentifier.cs#L14C73-L16C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapDirectoryIdentifier.cs#L14C73-L16C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.LdapDirectoryIdentifier.#ctor(System.String,System.Boolean,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapDirectoryIdentifier.cs#L18C110-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapDirectoryIdentifier.cs#L18C110-L20C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.LdapDirectoryIdentifier.#ctor(System.String,System.Int32,System.Boolean,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapDirectoryIdentifier.cs#L22C126-L24C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapDirectoryIdentifier.cs#L22C126-L24C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.LdapDirectoryIdentifier.#ctor(System.String[],System.Boolean,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapDirectoryIdentifier.cs#L63C42-L50C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapDirectoryIdentifier.cs#L63C42-L50C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.LdapDirectoryIdentifier.#ctor(System.String[],System.Int32,System.Boolean,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapDirectoryIdentifier.cs#L52C129-L55C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapDirectoryIdentifier.cs#L52C129-L55C10" }, { "DocsId": "P:System.DirectoryServices.Protocols.LdapDirectoryIdentifier.Servers", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapDirectoryIdentifier.cs#L57C36-L57C107" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapDirectoryIdentifier.cs#L57C36-L57C107" }, { "DocsId": "P:System.DirectoryServices.Protocols.LdapDirectoryIdentifier.Connectionless", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapDirectoryIdentifier.cs#L59C38-L59C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapDirectoryIdentifier.cs#L59C38-L59C42" }, { "DocsId": "P:System.DirectoryServices.Protocols.LdapDirectoryIdentifier.FullyQualifiedDnsHostName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapDirectoryIdentifier.cs#L61C49-L61C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapDirectoryIdentifier.cs#L61C49-L61C53" }, { "DocsId": "P:System.DirectoryServices.Protocols.LdapDirectoryIdentifier.PortNumber", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapDirectoryIdentifier.cs#L63C33-L63C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapDirectoryIdentifier.cs#L63C33-L63C37" } ], "DocsId": "T:System.DirectoryServices.Protocols.LdapDirectoryIdentifier", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapDirectoryIdentifier.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapDirectoryIdentifier.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.LdapException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapException.cs#L141C67-L100C108" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapException.cs#L141C67-L100C108" }, { "DocsId": "M:System.DirectoryServices.Protocols.LdapException.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapException.cs#L141C67-L102C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapException.cs#L141C67-L102C44" }, { "DocsId": "M:System.DirectoryServices.Protocols.LdapException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapException.cs#L141C67-L104C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapException.cs#L141C67-L104C65" }, { "DocsId": "M:System.DirectoryServices.Protocols.LdapException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapException.cs#L141C67-L106C89" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapException.cs#L141C67-L106C89" }, { "DocsId": "M:System.DirectoryServices.Protocols.LdapException.#ctor(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapException.cs#L141C67-L112C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapException.cs#L141C67-L112C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.LdapException.#ctor(System.Int32,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapException.cs#L141C67-L117C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapException.cs#L141C67-L117C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.LdapException.#ctor(System.Int32,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapException.cs#L141C67-L123C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapException.cs#L141C67-L123C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.LdapException.#ctor(System.Int32,System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapException.cs#L141C67-L128C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapException.cs#L141C67-L128C10" }, { "DocsId": "P:System.DirectoryServices.Protocols.LdapException.ErrorCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapException.cs#L132C20-L132C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapException.cs#L132C20-L132C30" }, { "DocsId": "P:System.DirectoryServices.Protocols.LdapException.ServerErrorMessage", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapException.cs#L139C44-L139C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapException.cs#L139C44-L139C48" }, { "DocsId": "P:System.DirectoryServices.Protocols.LdapException.PartialResults", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapException.cs#L141C58-L141C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapException.cs#L141C58-L141C62" } ], "DocsId": "T:System.DirectoryServices.Protocols.LdapException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapException.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.TlsOperationException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapException.cs#L152C93-L152C116" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapException.cs#L152C93-L152C116" }, { "DocsId": "M:System.DirectoryServices.Protocols.TlsOperationException.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapException.cs#L154C42-L154C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapException.cs#L154C42-L154C52" }, { "DocsId": "M:System.DirectoryServices.Protocols.TlsOperationException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapException.cs#L156C56-L156C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapException.cs#L156C56-L156C73" }, { "DocsId": "M:System.DirectoryServices.Protocols.TlsOperationException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapException.cs#L158C73-L158C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapException.cs#L158C73-L158C97" }, { "DocsId": "M:System.DirectoryServices.Protocols.TlsOperationException.#ctor(System.DirectoryServices.Protocols.DirectoryResponse)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapException.cs#L160C68-L162C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapException.cs#L160C68-L162C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.TlsOperationException.#ctor(System.DirectoryServices.Protocols.DirectoryResponse,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapException.cs#L164C84-L166C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapException.cs#L164C84-L166C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.TlsOperationException.#ctor(System.DirectoryServices.Protocols.DirectoryResponse,System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapException.cs#L168C101-L170C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapException.cs#L168C101-L170C10" } ], "DocsId": "T:System.DirectoryServices.Protocols.TlsOperationException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapException.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.QueryForConnectionCallback.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "DocsId": "M:System.DirectoryServices.Protocols.QueryForConnectionCallback.Invoke(System.DirectoryServices.Protocols.LdapConnection,System.DirectoryServices.Protocols.LdapConnection,System.String,System.DirectoryServices.Protocols.LdapDirectoryIdentifier,System.Net.NetworkCredential,System.Int64)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "DocsId": "M:System.DirectoryServices.Protocols.QueryForConnectionCallback.BeginInvoke(System.DirectoryServices.Protocols.LdapConnection,System.DirectoryServices.Protocols.LdapConnection,System.String,System.DirectoryServices.Protocols.LdapDirectoryIdentifier,System.Net.NetworkCredential,System.Int64,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "DocsId": "M:System.DirectoryServices.Protocols.QueryForConnectionCallback.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" } ], "DocsId": "T:System.DirectoryServices.Protocols.QueryForConnectionCallback", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.NotifyOfNewConnectionCallback.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "DocsId": "M:System.DirectoryServices.Protocols.NotifyOfNewConnectionCallback.Invoke(System.DirectoryServices.Protocols.LdapConnection,System.DirectoryServices.Protocols.LdapConnection,System.String,System.DirectoryServices.Protocols.LdapDirectoryIdentifier,System.DirectoryServices.Protocols.LdapConnection,System.Net.NetworkCredential,System.Int64,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "DocsId": "M:System.DirectoryServices.Protocols.NotifyOfNewConnectionCallback.BeginInvoke(System.DirectoryServices.Protocols.LdapConnection,System.DirectoryServices.Protocols.LdapConnection,System.String,System.DirectoryServices.Protocols.LdapDirectoryIdentifier,System.DirectoryServices.Protocols.LdapConnection,System.Net.NetworkCredential,System.Int64,System.Int32,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "DocsId": "M:System.DirectoryServices.Protocols.NotifyOfNewConnectionCallback.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" } ], "DocsId": "T:System.DirectoryServices.Protocols.NotifyOfNewConnectionCallback", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.DereferenceConnectionCallback.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "DocsId": "M:System.DirectoryServices.Protocols.DereferenceConnectionCallback.Invoke(System.DirectoryServices.Protocols.LdapConnection,System.DirectoryServices.Protocols.LdapConnection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "DocsId": "M:System.DirectoryServices.Protocols.DereferenceConnectionCallback.BeginInvoke(System.DirectoryServices.Protocols.LdapConnection,System.DirectoryServices.Protocols.LdapConnection,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "DocsId": "M:System.DirectoryServices.Protocols.DereferenceConnectionCallback.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" } ], "DocsId": "T:System.DirectoryServices.Protocols.DereferenceConnectionCallback", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.QueryClientCertificateCallback.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "DocsId": "M:System.DirectoryServices.Protocols.QueryClientCertificateCallback.Invoke(System.DirectoryServices.Protocols.LdapConnection,System.Byte[][])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "DocsId": "M:System.DirectoryServices.Protocols.QueryClientCertificateCallback.BeginInvoke(System.DirectoryServices.Protocols.LdapConnection,System.Byte[][],System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "DocsId": "M:System.DirectoryServices.Protocols.QueryClientCertificateCallback.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" } ], "DocsId": "T:System.DirectoryServices.Protocols.QueryClientCertificateCallback", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.VerifyServerCertificateCallback.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "DocsId": "M:System.DirectoryServices.Protocols.VerifyServerCertificateCallback.Invoke(System.DirectoryServices.Protocols.LdapConnection,System.Security.Cryptography.X509Certificates.X509Certificate)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "DocsId": "M:System.DirectoryServices.Protocols.VerifyServerCertificateCallback.BeginInvoke(System.DirectoryServices.Protocols.LdapConnection,System.Security.Cryptography.X509Certificates.X509Certificate,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "DocsId": "M:System.DirectoryServices.Protocols.VerifyServerCertificateCallback.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" } ], "DocsId": "T:System.DirectoryServices.Protocols.VerifyServerCertificateCallback", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.Protocols.LocatorFlags.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.LocatorFlags.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.LocatorFlags.ForceRediscovery", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.LocatorFlags.DirectoryServicesRequired", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.LocatorFlags.DirectoryServicesPreferred", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.LocatorFlags.GCRequired", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.LocatorFlags.PdcRequired", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.LocatorFlags.IPRequired", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.LocatorFlags.KdcRequired", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.LocatorFlags.TimeServerRequired", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.LocatorFlags.WriteableRequired", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.LocatorFlags.GoodTimeServerPreferred", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.LocatorFlags.AvoidSelf", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.LocatorFlags.OnlyLdapNeeded", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.LocatorFlags.IsFlatName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.LocatorFlags.IsDnsName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.LocatorFlags.ReturnDnsName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.LocatorFlags.ReturnFlatName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" } ], "DocsId": "T:System.DirectoryServices.Protocols.LocatorFlags", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.Protocols.SecurityProtocol.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.SecurityProtocol.Pct1Server", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.SecurityProtocol.Pct1Client", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.SecurityProtocol.Ssl2Server", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.SecurityProtocol.Ssl2Client", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.SecurityProtocol.Ssl3Server", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.SecurityProtocol.Ssl3Client", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.SecurityProtocol.Tls1Server", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "DocsId": "F:System.DirectoryServices.Protocols.SecurityProtocol.Tls1Client", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" } ], "DocsId": "T:System.DirectoryServices.Protocols.SecurityProtocol", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "Members": [ { "DocsId": "P:System.DirectoryServices.Protocols.SecurityPackageContextConnectionInformation.Protocol", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L85C45-L85C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L85C45-L85C62" }, { "DocsId": "P:System.DirectoryServices.Protocols.SecurityPackageContextConnectionInformation.AlgorithmIdentifier", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L87C59-L87C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L87C59-L87C70" }, { "DocsId": "P:System.DirectoryServices.Protocols.SecurityPackageContextConnectionInformation.CipherStrength", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L89C38-L89C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L89C38-L89C47" }, { "DocsId": "P:System.DirectoryServices.Protocols.SecurityPackageContextConnectionInformation.Hash", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L91C42-L91C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L91C42-L91C56" }, { "DocsId": "P:System.DirectoryServices.Protocols.SecurityPackageContextConnectionInformation.HashStrength", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L93C36-L93C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L93C36-L93C49" }, { "DocsId": "P:System.DirectoryServices.Protocols.SecurityPackageContextConnectionInformation.KeyExchangeAlgorithm", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L95C44-L95C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L95C44-L95C65" }, { "DocsId": "P:System.DirectoryServices.Protocols.SecurityPackageContextConnectionInformation.ExchangeStrength", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L97C40-L97C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L97C40-L97C57" } ], "DocsId": "T:System.DirectoryServices.Protocols.SecurityPackageContextConnectionInformation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.ReferralCallback.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L104C9-L106C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L104C9-L106C10" }, { "DocsId": "P:System.DirectoryServices.Protocols.ReferralCallback.QueryForConnection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L108C64-L108C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L108C64-L108C68" }, { "DocsId": "P:System.DirectoryServices.Protocols.ReferralCallback.NotifyNewConnection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L110C68-L110C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L110C68-L110C72" }, { "DocsId": "P:System.DirectoryServices.Protocols.ReferralCallback.DereferenceConnection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L112C70-L112C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L112C70-L112C74" } ], "DocsId": "T:System.DirectoryServices.Protocols.ReferralCallback", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.Protocols.LdapSessionOptions.FastConcurrentBind", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L522C13-L535C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L522C13-L535C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.LdapSessionOptions.StartTransportLayerSecurity(System.DirectoryServices.Protocols.DirectoryControlCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L539C13-L725C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L539C13-L725C10" }, { "DocsId": "M:System.DirectoryServices.Protocols.LdapSessionOptions.StopTransportLayerSecurity", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L729C13-L739C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L729C13-L739C10" }, { "DocsId": "P:System.DirectoryServices.Protocols.LdapSessionOptions.ReferralHopLimit", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L144C20-L144C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L144C20-L144C77" }, { "DocsId": "P:System.DirectoryServices.Protocols.LdapSessionOptions.HostName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L158C20-L158C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L158C20-L158C78" }, { "DocsId": "P:System.DirectoryServices.Protocols.LdapSessionOptions.DomainName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L164C20-L164C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L164C20-L164C82" }, { "DocsId": "P:System.DirectoryServices.Protocols.LdapSessionOptions.LocatorFlag", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L172C17-L173C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L172C17-L173C45" }, { "DocsId": "P:System.DirectoryServices.Protocols.LdapSessionOptions.HostReachable", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L187C17-L188C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L187C17-L188C38" }, { "DocsId": "P:System.DirectoryServices.Protocols.LdapSessionOptions.PingKeepAliveTimeout", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L196C17-L197C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L196C17-L197C71" }, { "DocsId": "P:System.DirectoryServices.Protocols.LdapSessionOptions.PingLimit", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L219C20-L219C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L219C20-L219C69" }, { "DocsId": "P:System.DirectoryServices.Protocols.LdapSessionOptions.PingWaitTimeout", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L235C17-L236C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L235C17-L236C76" }, { "DocsId": "P:System.DirectoryServices.Protocols.LdapSessionOptions.AutoReconnect", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L260C17-L261C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L260C17-L261C38" }, { "DocsId": "P:System.DirectoryServices.Protocols.LdapSessionOptions.SspiFlag", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L272C20-L272C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L272C20-L272C69" }, { "DocsId": "P:System.DirectoryServices.Protocols.LdapSessionOptions.SslInformation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L280C17-L289C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L280C17-L289C32" }, { "DocsId": "P:System.DirectoryServices.Protocols.LdapSessionOptions.SecurityContext", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L297C17-L307C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L297C17-L307C35" }, { "DocsId": "P:System.DirectoryServices.Protocols.LdapSessionOptions.Signing", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L315C17-L316C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L315C17-L316C38" }, { "DocsId": "P:System.DirectoryServices.Protocols.LdapSessionOptions.Sealing", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L329C17-L330C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L329C17-L330C38" }, { "DocsId": "P:System.DirectoryServices.Protocols.LdapSessionOptions.SaslMethod", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L341C20-L341C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L341C20-L341C79" }, { "DocsId": "P:System.DirectoryServices.Protocols.LdapSessionOptions.RootDseCache", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L349C17-L350C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L349C17-L350C38" }, { "DocsId": "P:System.DirectoryServices.Protocols.LdapSessionOptions.TcpKeepAlive", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L363C17-L364C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L363C17-L364C38" }, { "DocsId": "P:System.DirectoryServices.Protocols.LdapSessionOptions.SendTimeout", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L377C17-L378C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L377C17-L378C71" }, { "DocsId": "P:System.DirectoryServices.Protocols.LdapSessionOptions.ReferralCallback", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L402C17-L407C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L402C17-L407C41" }, { "DocsId": "P:System.DirectoryServices.Protocols.LdapSessionOptions.QueryClientCertificate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L440C17-L445C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L440C17-L445C51" }, { "DocsId": "P:System.DirectoryServices.Protocols.LdapSessionOptions.VerifyServerCertificate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L482C17-L487C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs#L482C17-L487C51" }, { "DocsId": "P:System.DirectoryServices.Protocols.LdapSessionOptions.SecureSocketLayer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.Linux.cs#L18C17-L19C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.Linux.cs#L18C17-L19C43" }, { "DocsId": "P:System.DirectoryServices.Protocols.LdapSessionOptions.ProtocolVersion", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.Linux.cs#L30C20-L30C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.Linux.cs#L30C20-L30C76" }, { "DocsId": "P:System.DirectoryServices.Protocols.LdapSessionOptions.ReferralChasing", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.Linux.cs#L38C17-L38C133" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.Linux.cs#L38C17-L38C133" } ], "DocsId": "T:System.DirectoryServices.Protocols.LdapSessionOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/ldap/LdapSessionOptions.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/System.DirectoryServices.json b/xml/SourceLinkInformation/net-9.0/System.DirectoryServices.json index c17bec85ee9..f738a0189a1 100644 --- a/xml/SourceLinkInformation/net-9.0/System.DirectoryServices.json +++ b/xml/SourceLinkInformation/net-9.0/System.DirectoryServices.json @@ -1,5931 +1,5930 @@ { "Assembly": "System.DirectoryServices", - "GUID": "0BFEA12631914660859988DCB38C5D0AFFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "82945E2350864656AF984ECBB13EBA72FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "F:System.DirectoryServices.ActiveDirectoryRights.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectoryRights.Delete", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectoryRights.ReadControl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectoryRights.WriteDacl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectoryRights.WriteOwner", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectoryRights.Synchronize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectoryRights.AccessSystemSecurity", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectoryRights.GenericRead", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectoryRights.GenericWrite", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectoryRights.GenericExecute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectoryRights.GenericAll", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectoryRights.CreateChild", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectoryRights.DeleteChild", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectoryRights.ListChildren", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectoryRights.Self", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectoryRights.ReadProperty", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectoryRights.WriteProperty", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectoryRights.DeleteTree", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectoryRights.ListObject", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectoryRights.ExtendedRight", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectoryRights", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.ActiveDirectorySecurityInheritance.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectorySecurityInheritance.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectorySecurityInheritance.All", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectorySecurityInheritance.Descendents", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectorySecurityInheritance.SelfAndChildren", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectorySecurityInheritance.Children", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectorySecurityInheritance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.PropertyAccess.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "DocsId": "F:System.DirectoryServices.PropertyAccess.Read", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "DocsId": "F:System.DirectoryServices.PropertyAccess.Write", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" } ], "DocsId": "T:System.DirectoryServices.PropertyAccess", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectorySecurity.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L52C9-L58C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L52C9-L58C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectorySecurity.AddAccessRule(System.DirectoryServices.ActiveDirectoryAccessRule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L76C13-L82C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L76C13-L82C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectorySecurity.SetAccessRule(System.DirectoryServices.ActiveDirectoryAccessRule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L86C13-L92C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L86C13-L92C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectorySecurity.ResetAccessRule(System.DirectoryServices.ActiveDirectoryAccessRule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L96C13-L102C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L96C13-L102C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectorySecurity.RemoveAccess(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L106C13-L121C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L106C13-L121C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectorySecurity.RemoveAccessRule(System.DirectoryServices.ActiveDirectoryAccessRule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L125C13-L130C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L125C13-L130C48" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectorySecurity.RemoveAccessRuleSpecific(System.DirectoryServices.ActiveDirectoryAccessRule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L135C13-L141C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L135C13-L141C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectorySecurity.ModifyAccessRule(System.Security.AccessControl.AccessControlModification,System.Security.AccessControl.AccessRule,System.Boolean@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L145C13-L150C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L145C13-L150C76" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectorySecurity.PurgeAccessRules(System.Security.Principal.IdentityReference)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L155C13-L161C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L155C13-L161C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectorySecurity.AddAuditRule(System.DirectoryServices.ActiveDirectoryAuditRule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L168C13-L174C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L168C13-L174C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectorySecurity.SetAuditRule(System.DirectoryServices.ActiveDirectoryAuditRule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L178C13-L184C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L178C13-L184C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectorySecurity.RemoveAudit(System.Security.Principal.IdentityReference)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L188C13-L203C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L188C13-L203C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectorySecurity.RemoveAuditRule(System.DirectoryServices.ActiveDirectoryAuditRule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L207C13-L212C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L207C13-L212C47" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectorySecurity.RemoveAuditRuleSpecific(System.DirectoryServices.ActiveDirectoryAuditRule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L217C13-L223C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L217C13-L223C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectorySecurity.ModifyAuditRule(System.Security.AccessControl.AccessControlModification,System.Security.AccessControl.AuditRule,System.Boolean@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L227C13-L232C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L227C13-L232C75" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectorySecurity.PurgeAuditRules(System.Security.Principal.IdentityReference)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L237C13-L243C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L237C13-L243C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectorySecurity.AccessRuleFactory(System.Security.Principal.IdentityReference,System.Int32,System.Boolean,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Security.AccessControl.AccessControlType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L257C13-L265C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L257C13-L265C29" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectorySecurity.AccessRuleFactory(System.Security.Principal.IdentityReference,System.Int32,System.Boolean,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Security.AccessControl.AccessControlType,System.Guid,System.Guid)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L278C13-L286C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L278C13-L286C38" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectorySecurity.AuditRuleFactory(System.Security.Principal.IdentityReference,System.Int32,System.Boolean,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Security.AccessControl.AuditFlags)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L297C13-L305C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L297C13-L305C29" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectorySecurity.AuditRuleFactory(System.Security.Principal.IdentityReference,System.Int32,System.Boolean,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Security.AccessControl.AuditFlags,System.Guid,System.Guid)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L318C13-L326C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L318C13-L326C38" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectorySecurity.AccessRightType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L357C49-L357C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L357C49-L357C78" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectorySecurity.AccessRuleType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L359C48-L359C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L359C48-L359C81" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectorySecurity.AuditRuleType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L361C47-L361C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L361C47-L361C79" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectorySecurity", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectoryAccessRule.#ctor(System.Security.Principal.IdentityReference,System.DirectoryServices.ActiveDirectoryRights,System.Security.AccessControl.AccessControlType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L529C15-L540C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L529C15-L540C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectoryAccessRule.#ctor(System.Security.Principal.IdentityReference,System.DirectoryServices.ActiveDirectoryRights,System.Security.AccessControl.AccessControlType,System.Guid)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L547C15-L557C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L547C15-L557C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectoryAccessRule.#ctor(System.Security.Principal.IdentityReference,System.DirectoryServices.ActiveDirectoryRights,System.Security.AccessControl.AccessControlType,System.DirectoryServices.ActiveDirectorySecurityInheritance)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L564C15-L574C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L564C15-L574C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectoryAccessRule.#ctor(System.Security.Principal.IdentityReference,System.DirectoryServices.ActiveDirectoryRights,System.Security.AccessControl.AccessControlType,System.Guid,System.DirectoryServices.ActiveDirectorySecurityInheritance)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L582C15-L592C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L582C15-L592C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectoryAccessRule.#ctor(System.Security.Principal.IdentityReference,System.DirectoryServices.ActiveDirectoryRights,System.Security.AccessControl.AccessControlType,System.DirectoryServices.ActiveDirectorySecurityInheritance,System.Guid)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L600C15-L610C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L600C15-L610C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectoryAccessRule.#ctor(System.Security.Principal.IdentityReference,System.DirectoryServices.ActiveDirectoryRights,System.Security.AccessControl.AccessControlType,System.Guid,System.DirectoryServices.ActiveDirectorySecurityInheritance,System.Guid)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L619C15-L629C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L619C15-L629C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectoryAccessRule.ActiveDirectoryRights", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L658C20-L658C89" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L658C20-L658C89" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectoryAccessRule.InheritanceType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L663C20-L663C121" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L663C20-L663C121" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectoryAccessRule", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ListChildrenAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L676C15-L687C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L676C15-L687C10" }, { "DocsId": "M:System.DirectoryServices.ListChildrenAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType,System.DirectoryServices.ActiveDirectorySecurityInheritance)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L693C15-L703C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L693C15-L703C10" }, { "DocsId": "M:System.DirectoryServices.ListChildrenAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType,System.DirectoryServices.ActiveDirectorySecurityInheritance,System.Guid)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L710C15-L720C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L710C15-L720C10" } ], "DocsId": "T:System.DirectoryServices.ListChildrenAccessRule", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.CreateChildAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L732C16-L742C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L732C16-L742C10" }, { "DocsId": "M:System.DirectoryServices.CreateChildAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType,System.Guid)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L748C15-L758C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L748C15-L758C10" }, { "DocsId": "M:System.DirectoryServices.CreateChildAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType,System.DirectoryServices.ActiveDirectorySecurityInheritance)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L764C15-L774C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L764C15-L774C10" }, { "DocsId": "M:System.DirectoryServices.CreateChildAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType,System.Guid,System.DirectoryServices.ActiveDirectorySecurityInheritance)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L781C15-L791C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L781C15-L791C10" }, { "DocsId": "M:System.DirectoryServices.CreateChildAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType,System.DirectoryServices.ActiveDirectorySecurityInheritance,System.Guid)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L798C15-L808C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L798C15-L808C10" }, { "DocsId": "M:System.DirectoryServices.CreateChildAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType,System.Guid,System.DirectoryServices.ActiveDirectorySecurityInheritance,System.Guid)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L815C15-L825C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L815C15-L825C10" } ], "DocsId": "T:System.DirectoryServices.CreateChildAccessRule", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.DeleteChildAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L837C15-L847C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L837C15-L847C10" }, { "DocsId": "M:System.DirectoryServices.DeleteChildAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType,System.Guid)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L853C15-L863C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L853C15-L863C10" }, { "DocsId": "M:System.DirectoryServices.DeleteChildAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType,System.DirectoryServices.ActiveDirectorySecurityInheritance)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L869C15-L879C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L869C15-L879C10" }, { "DocsId": "M:System.DirectoryServices.DeleteChildAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType,System.Guid,System.DirectoryServices.ActiveDirectorySecurityInheritance)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L886C15-L896C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L886C15-L896C10" }, { "DocsId": "M:System.DirectoryServices.DeleteChildAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType,System.DirectoryServices.ActiveDirectorySecurityInheritance,System.Guid)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L903C15-L913C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L903C15-L913C10" }, { "DocsId": "M:System.DirectoryServices.DeleteChildAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType,System.Guid,System.DirectoryServices.ActiveDirectorySecurityInheritance,System.Guid)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L920C15-L930C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L920C15-L930C10" } ], "DocsId": "T:System.DirectoryServices.DeleteChildAccessRule", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.PropertyAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType,System.DirectoryServices.PropertyAccess)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L942C15-L952C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L942C15-L952C10" }, { "DocsId": "M:System.DirectoryServices.PropertyAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType,System.DirectoryServices.PropertyAccess,System.Guid)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L959C15-L969C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L959C15-L969C10" }, { "DocsId": "M:System.DirectoryServices.PropertyAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType,System.DirectoryServices.PropertyAccess,System.DirectoryServices.ActiveDirectorySecurityInheritance)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L976C15-L986C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L976C15-L986C10" }, { "DocsId": "M:System.DirectoryServices.PropertyAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType,System.DirectoryServices.PropertyAccess,System.Guid,System.DirectoryServices.ActiveDirectorySecurityInheritance)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L994C15-L1004C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L994C15-L1004C10" }, { "DocsId": "M:System.DirectoryServices.PropertyAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType,System.DirectoryServices.PropertyAccess,System.DirectoryServices.ActiveDirectorySecurityInheritance,System.Guid)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1012C15-L1022C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1012C15-L1022C10" }, { "DocsId": "M:System.DirectoryServices.PropertyAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType,System.DirectoryServices.PropertyAccess,System.Guid,System.DirectoryServices.ActiveDirectorySecurityInheritance,System.Guid)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1031C15-L1041C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1031C15-L1041C10" } ], "DocsId": "T:System.DirectoryServices.PropertyAccessRule", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.PropertySetAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType,System.DirectoryServices.PropertyAccess,System.Guid)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1055C15-L1065C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1055C15-L1065C10" }, { "DocsId": "M:System.DirectoryServices.PropertySetAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType,System.DirectoryServices.PropertyAccess,System.Guid,System.DirectoryServices.ActiveDirectorySecurityInheritance)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1073C15-L1083C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1073C15-L1083C10" }, { "DocsId": "M:System.DirectoryServices.PropertySetAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType,System.DirectoryServices.PropertyAccess,System.Guid,System.DirectoryServices.ActiveDirectorySecurityInheritance,System.Guid)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1091C15-L1101C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1091C15-L1101C10" } ], "DocsId": "T:System.DirectoryServices.PropertySetAccessRule", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ExtendedRightAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1113C15-L1123C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1113C15-L1123C10" }, { "DocsId": "M:System.DirectoryServices.ExtendedRightAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType,System.Guid)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1129C15-L1139C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1129C15-L1139C10" }, { "DocsId": "M:System.DirectoryServices.ExtendedRightAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType,System.DirectoryServices.ActiveDirectorySecurityInheritance)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1145C15-L1155C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1145C15-L1155C10" }, { "DocsId": "M:System.DirectoryServices.ExtendedRightAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType,System.Guid,System.DirectoryServices.ActiveDirectorySecurityInheritance)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1162C15-L1172C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1162C15-L1172C10" }, { "DocsId": "M:System.DirectoryServices.ExtendedRightAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType,System.DirectoryServices.ActiveDirectorySecurityInheritance,System.Guid)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1179C15-L1189C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1179C15-L1189C10" }, { "DocsId": "M:System.DirectoryServices.ExtendedRightAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType,System.Guid,System.DirectoryServices.ActiveDirectorySecurityInheritance,System.Guid)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1196C15-L1206C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1196C15-L1206C10" } ], "DocsId": "T:System.DirectoryServices.ExtendedRightAccessRule", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.DeleteTreeAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1218C15-L1228C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1218C15-L1228C10" }, { "DocsId": "M:System.DirectoryServices.DeleteTreeAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType,System.DirectoryServices.ActiveDirectorySecurityInheritance)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1234C15-L1244C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1234C15-L1244C10" }, { "DocsId": "M:System.DirectoryServices.DeleteTreeAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.AccessControlType,System.DirectoryServices.ActiveDirectorySecurityInheritance,System.Guid)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1251C15-L1261C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1251C15-L1261C10" } ], "DocsId": "T:System.DirectoryServices.DeleteTreeAccessRule", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectoryAuditRule.#ctor(System.Security.Principal.IdentityReference,System.DirectoryServices.ActiveDirectoryRights,System.Security.AccessControl.AuditFlags)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1274C15-L1285C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1274C15-L1285C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectoryAuditRule.#ctor(System.Security.Principal.IdentityReference,System.DirectoryServices.ActiveDirectoryRights,System.Security.AccessControl.AuditFlags,System.Guid)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1292C15-L1302C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1292C15-L1302C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectoryAuditRule.#ctor(System.Security.Principal.IdentityReference,System.DirectoryServices.ActiveDirectoryRights,System.Security.AccessControl.AuditFlags,System.DirectoryServices.ActiveDirectorySecurityInheritance)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1309C15-L1319C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1309C15-L1319C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectoryAuditRule.#ctor(System.Security.Principal.IdentityReference,System.DirectoryServices.ActiveDirectoryRights,System.Security.AccessControl.AuditFlags,System.Guid,System.DirectoryServices.ActiveDirectorySecurityInheritance)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1327C15-L1337C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1327C15-L1337C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectoryAuditRule.#ctor(System.Security.Principal.IdentityReference,System.DirectoryServices.ActiveDirectoryRights,System.Security.AccessControl.AuditFlags,System.DirectoryServices.ActiveDirectorySecurityInheritance,System.Guid)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1345C15-L1355C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1345C15-L1355C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectoryAuditRule.#ctor(System.Security.Principal.IdentityReference,System.DirectoryServices.ActiveDirectoryRights,System.Security.AccessControl.AuditFlags,System.Guid,System.DirectoryServices.ActiveDirectorySecurityInheritance,System.Guid)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1364C15-L1374C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1364C15-L1374C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectoryAuditRule.ActiveDirectoryRights", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1403C20-L1403C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1403C20-L1403C84" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectoryAuditRule.InheritanceType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1408C20-L1408C121" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs#L1408C20-L1408C121" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectoryAuditRule", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectorySecurity.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.AuthenticationTypes.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/AuthenticationTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/AuthenticationTypes.cs" }, { "DocsId": "F:System.DirectoryServices.AuthenticationTypes.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/AuthenticationTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/AuthenticationTypes.cs" }, { "DocsId": "F:System.DirectoryServices.AuthenticationTypes.Secure", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/AuthenticationTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/AuthenticationTypes.cs" }, { "DocsId": "F:System.DirectoryServices.AuthenticationTypes.Encryption", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/AuthenticationTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/AuthenticationTypes.cs" }, { "DocsId": "F:System.DirectoryServices.AuthenticationTypes.SecureSocketsLayer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/AuthenticationTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/AuthenticationTypes.cs" }, { "DocsId": "F:System.DirectoryServices.AuthenticationTypes.ReadonlyServer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/AuthenticationTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/AuthenticationTypes.cs" }, { "DocsId": "F:System.DirectoryServices.AuthenticationTypes.Anonymous", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/AuthenticationTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/AuthenticationTypes.cs" }, { "DocsId": "F:System.DirectoryServices.AuthenticationTypes.FastBind", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/AuthenticationTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/AuthenticationTypes.cs" }, { "DocsId": "F:System.DirectoryServices.AuthenticationTypes.Signing", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/AuthenticationTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/AuthenticationTypes.cs" }, { "DocsId": "F:System.DirectoryServices.AuthenticationTypes.Sealing", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/AuthenticationTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/AuthenticationTypes.cs" }, { "DocsId": "F:System.DirectoryServices.AuthenticationTypes.Delegation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/AuthenticationTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/AuthenticationTypes.cs" }, { "DocsId": "F:System.DirectoryServices.AuthenticationTypes.ServerBind", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/AuthenticationTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/AuthenticationTypes.cs" } ], "DocsId": "T:System.DirectoryServices.AuthenticationTypes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/AuthenticationTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/AuthenticationTypes.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.DereferenceAlias.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DerefAlias.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DerefAlias.cs" }, { "DocsId": "F:System.DirectoryServices.DereferenceAlias.Never", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DerefAlias.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DerefAlias.cs" }, { "DocsId": "F:System.DirectoryServices.DereferenceAlias.InSearching", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DerefAlias.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DerefAlias.cs" }, { "DocsId": "F:System.DirectoryServices.DereferenceAlias.FindingBaseObject", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DerefAlias.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DerefAlias.cs" }, { "DocsId": "F:System.DirectoryServices.DereferenceAlias.Always", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DerefAlias.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DerefAlias.cs" } ], "DocsId": "T:System.DirectoryServices.DereferenceAlias", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DerefAlias.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DerefAlias.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.DirectoryEntries.Add(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntries.cs#L46C13-L50C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntries.cs#L46C13-L50C26" }, { "DocsId": "M:System.DirectoryServices.DirectoryEntries.Find(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntries.cs#L59C13-L59C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntries.cs#L59C13-L59C37" }, { "DocsId": "M:System.DirectoryServices.DirectoryEntries.Find(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntries.cs#L67C13-L78C154" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntries.cs#L67C13-L78C154" }, { "DocsId": "M:System.DirectoryServices.DirectoryEntries.Remove(System.DirectoryServices.DirectoryEntry)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntries.cs#L86C13-L95C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntries.cs#L86C13-L95C10" }, { "DocsId": "M:System.DirectoryServices.DirectoryEntries.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntries.cs#L97C47-L97C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntries.cs#L97C47-L97C78" }, { "DocsId": "P:System.DirectoryServices.DirectoryEntries.SchemaFilter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntries.cs#L29C17-L31C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntries.cs#L29C17-L31C79" } ], "DocsId": "T:System.DirectoryServices.DirectoryEntries", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntries.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntries.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.DirectoryEntry.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L24C9-L52C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L24C9-L52C10" }, { "DocsId": "M:System.DirectoryServices.DirectoryEntry.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L58C47-L61C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L58C47-L61C10" }, { "DocsId": "M:System.DirectoryServices.DirectoryEntry.#ctor(System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L66C83-L68C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L66C83-L68C10" }, { "DocsId": "M:System.DirectoryServices.DirectoryEntry.#ctor(System.String,System.String,System.String,System.DirectoryServices.AuthenticationTypes)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L73C123-L83C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L73C123-L83C10" }, { "DocsId": "M:System.DirectoryServices.DirectoryEntry.#ctor(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L106C15-L108C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L106C15-L108C10" }, { "DocsId": "M:System.DirectoryServices.DirectoryEntry.Close", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L561C13-L562C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L561C13-L562C10" }, { "DocsId": "M:System.DirectoryServices.DirectoryEntry.CommitChanges", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L569C13-L623C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L569C13-L623C10" }, { "DocsId": "M:System.DirectoryServices.DirectoryEntry.CopyTo(System.DirectoryServices.DirectoryEntry)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L658C67-L658C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L658C67-L658C90" }, { "DocsId": "M:System.DirectoryServices.DirectoryEntry.CopyTo(System.DirectoryServices.DirectoryEntry,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L665C13-L677C123" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L665C13-L677C123" }, { "DocsId": "M:System.DirectoryServices.DirectoryEntry.DeleteTree", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L685C13-L699C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L685C13-L699C10" }, { "DocsId": "M:System.DirectoryServices.DirectoryEntry.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L706C13-L713C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L706C13-L713C10" }, { "DocsId": "M:System.DirectoryServices.DirectoryEntry.Exists(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L720C13-L738C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L720C13-L738C10" }, { "DocsId": "M:System.DirectoryServices.DirectoryEntry.Invoke(System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L780C13-L805C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L780C13-L805C31" }, { "DocsId": "M:System.DirectoryServices.DirectoryEntry.InvokeGet(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L813C13-L835C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L813C13-L835C27" }, { "DocsId": "M:System.DirectoryServices.DirectoryEntry.InvokeSet(System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L843C13-L863C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L843C13-L863C10" }, { "DocsId": "M:System.DirectoryServices.DirectoryEntry.MoveTo(System.DirectoryServices.DirectoryEntry)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L868C57-L868C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L868C57-L868C80" }, { "DocsId": "M:System.DirectoryServices.DirectoryEntry.MoveTo(System.DirectoryServices.DirectoryEntry,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L875C13-L926C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L875C13-L926C10" }, { "DocsId": "M:System.DirectoryServices.DirectoryEntry.RefreshCache", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L934C13-L951C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L934C13-L951C10" }, { "DocsId": "M:System.DirectoryServices.DirectoryEntry.RefreshCache(System.String[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L958C13-L1015C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L958C13-L1015C10" }, { "DocsId": "M:System.DirectoryServices.DirectoryEntry.Rename(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L1020C48-L1020C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L1020C48-L1020C71" }, { "DocsId": "P:System.DirectoryServices.DirectoryEntry.AuthenticationType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L162C20-L162C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L162C20-L162C39" }, { "DocsId": "P:System.DirectoryServices.DirectoryEntry.Children", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L181C45-L181C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L181C45-L181C71" }, { "DocsId": "P:System.DirectoryServices.DirectoryEntry.Guid", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L199C17-L212C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L199C17-L212C43" }, { "DocsId": "P:System.DirectoryServices.DirectoryEntry.ObjectSecurity", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L220C17-L226C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L220C17-L226C41" }, { "DocsId": "P:System.DirectoryServices.DirectoryEntry.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L261C17-L264C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L261C17-L264C32" }, { "DocsId": "P:System.DirectoryServices.DirectoryEntry.NativeGuid", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L272C17-L275C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L272C17-L275C32" }, { "DocsId": "P:System.DirectoryServices.DirectoryEntry.NativeObject", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L286C17-L287C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L286C17-L287C35" }, { "DocsId": "P:System.DirectoryServices.DirectoryEntry.Parent", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L298C17-L299C130" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L298C17-L299C130" }, { "DocsId": "P:System.DirectoryServices.DirectoryEntry.Password", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L311C17-L329C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L311C17-L329C14" }, { "DocsId": "P:System.DirectoryServices.DirectoryEntry.Path", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L339C20-L339C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L339C20-L339C25" }, { "DocsId": "P:System.DirectoryServices.DirectoryEntry.Properties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L356C13-L356C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L356C13-L356C65" }, { "DocsId": "P:System.DirectoryServices.DirectoryEntry.SchemaClassName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L365C17-L368C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L365C17-L368C33" }, { "DocsId": "P:System.DirectoryServices.DirectoryEntry.SchemaEntry", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L381C17-L382C130" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L381C17-L382C130" }, { "DocsId": "P:System.DirectoryServices.DirectoryEntry.UsePropertyCache", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L398C20-L398C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L398C20-L398C29" }, { "DocsId": "P:System.DirectoryServices.DirectoryEntry.Username", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L421C17-L424C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L421C17-L424C46" }, { "DocsId": "P:System.DirectoryServices.DirectoryEntry.Options", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L450C17-L453C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs#L450C17-L453C33" } ], "DocsId": "T:System.DirectoryServices.DirectoryEntry", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntry.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.DirectoryEntryConfiguration.GetCurrentServerName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntryConfiguration.cs#L96C13-L96C135" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntryConfiguration.cs#L96C13-L96C135" }, { "DocsId": "M:System.DirectoryServices.DirectoryEntryConfiguration.IsMutuallyAuthenticated", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntryConfiguration.cs#L103C17-L116C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntryConfiguration.cs#L103C17-L116C10" }, { "DocsId": "M:System.DirectoryServices.DirectoryEntryConfiguration.SetUserNameQueryQuota(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntryConfiguration.cs#L120C13-L121C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntryConfiguration.cs#L120C13-L121C10" }, { "DocsId": "P:System.DirectoryServices.DirectoryEntryConfiguration.Referral", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntryConfiguration.cs#L22C17-L22C153" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntryConfiguration.cs#L22C17-L22C153" }, { "DocsId": "P:System.DirectoryServices.DirectoryEntryConfiguration.SecurityMasks", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntryConfiguration.cs#L40C17-L40C149" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntryConfiguration.cs#L40C17-L40C149" }, { "DocsId": "P:System.DirectoryServices.DirectoryEntryConfiguration.PageSize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntryConfiguration.cs#L55C17-L55C135" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntryConfiguration.cs#L55C17-L55C135" }, { "DocsId": "P:System.DirectoryServices.DirectoryEntryConfiguration.PasswordPort", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntryConfiguration.cs#L70C17-L70C145" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntryConfiguration.cs#L70C17-L70C145" }, { "DocsId": "P:System.DirectoryServices.DirectoryEntryConfiguration.PasswordEncoding", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntryConfiguration.cs#L82C17-L82C160" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntryConfiguration.cs#L82C17-L82C160" } ], "DocsId": "T:System.DirectoryServices.DirectoryEntryConfiguration", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntryConfiguration.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryEntryConfiguration.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.DirectorySearcher.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L56C38-L59C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L56C38-L59C10" }, { "DocsId": "M:System.DirectoryServices.DirectorySearcher.#ctor(System.DirectoryServices.DirectoryEntry)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L66C64-L69C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L66C64-L69C10" }, { "DocsId": "M:System.DirectoryServices.DirectorySearcher.#ctor(System.DirectoryServices.DirectoryEntry,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L76C80-L79C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L76C80-L79C10" }, { "DocsId": "M:System.DirectoryServices.DirectorySearcher.#ctor(System.DirectoryServices.DirectoryEntry,System.String,System.String[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L86C108-L89C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L86C108-L89C10" }, { "DocsId": "M:System.DirectoryServices.DirectorySearcher.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L96C52-L99C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L96C52-L99C10" }, { "DocsId": "M:System.DirectoryServices.DirectorySearcher.#ctor(System.String,System.String[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L106C80-L109C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L106C80-L109C10" }, { "DocsId": "M:System.DirectoryServices.DirectorySearcher.#ctor(System.String,System.String[],System.DirectoryServices.SearchScope)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L115C99-L117C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L115C99-L117C10" }, { "DocsId": "M:System.DirectoryServices.DirectorySearcher.#ctor(System.DirectoryServices.DirectoryEntry,System.String,System.String[],System.DirectoryServices.SearchScope)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L19C9-L130C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L19C9-L130C10" }, { "DocsId": "M:System.DirectoryServices.DirectorySearcher.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L136C13-L144C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L136C13-L144C10" }, { "DocsId": "M:System.DirectoryServices.DirectorySearcher.FindOne", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L569C13-L599C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L569C13-L599C32" }, { "DocsId": "M:System.DirectoryServices.DirectorySearcher.FindAll", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L605C52-L605C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L605C52-L605C65" }, { "DocsId": "P:System.DirectoryServices.DirectorySearcher.CacheResults", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L153C20-L153C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L153C20-L153C33" }, { "DocsId": "P:System.DirectoryServices.DirectorySearcher.ClientTimeout", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L173C20-L173C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L173C20-L173C34" }, { "DocsId": "P:System.DirectoryServices.DirectorySearcher.PropertyNamesOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L191C41-L191C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L191C41-L191C45" }, { "DocsId": "P:System.DirectoryServices.DirectorySearcher.Filter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L199C20-L199C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L199C20-L199C27" }, { "DocsId": "P:System.DirectoryServices.DirectorySearcher.PageSize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L214C20-L214C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L214C20-L214C29" }, { "DocsId": "P:System.DirectoryServices.DirectorySearcher.PropertiesToLoad", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L235C13-L235C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L235C13-L235C57" }, { "DocsId": "P:System.DirectoryServices.DirectorySearcher.ReferralChasing", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L243C20-L243C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L243C20-L243C36" }, { "DocsId": "P:System.DirectoryServices.DirectorySearcher.SearchScope", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L262C20-L262C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L262C20-L262C26" }, { "DocsId": "P:System.DirectoryServices.DirectorySearcher.ServerPageTimeLimit", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L286C20-L286C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L286C20-L286C40" }, { "DocsId": "P:System.DirectoryServices.DirectorySearcher.ServerTimeLimit", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L305C20-L305C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L305C20-L305C36" }, { "DocsId": "P:System.DirectoryServices.DirectorySearcher.SizeLimit", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L325C20-L325C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L325C20-L325C30" }, { "DocsId": "P:System.DirectoryServices.DirectorySearcher.SearchRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L343C17-L357C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L343C17-L357C36" }, { "DocsId": "P:System.DirectoryServices.DirectorySearcher.Sort", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L376C20-L376C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L376C20-L376C25" }, { "DocsId": "P:System.DirectoryServices.DirectorySearcher.Asynchronous", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L385C36-L385C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L385C36-L385C40" }, { "DocsId": "P:System.DirectoryServices.DirectorySearcher.Tombstone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L392C33-L392C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L392C33-L392C37" }, { "DocsId": "P:System.DirectoryServices.DirectorySearcher.AttributeScopeQuery", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L402C20-L402C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L402C20-L402C40" }, { "DocsId": "P:System.DirectoryServices.DirectorySearcher.DerefAlias", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L437C20-L437C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L437C20-L437C31" }, { "DocsId": "P:System.DirectoryServices.DirectorySearcher.SecurityMasks", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L454C20-L454C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L454C20-L454C33" }, { "DocsId": "P:System.DirectoryServices.DirectorySearcher.ExtendedDN", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L472C20-L472C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L472C20-L472C31" }, { "DocsId": "P:System.DirectoryServices.DirectorySearcher.DirectorySynchronization", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L492C17-L496C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L492C17-L496C30" }, { "DocsId": "P:System.DirectoryServices.DirectorySearcher.VirtualListView", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L529C17-L540C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs#L529C17-L540C29" } ], "DocsId": "T:System.DirectoryServices.DirectorySearcher", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySearcher.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.DirectorySynchronization.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronization.cs#L11C9-L15C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronization.cs#L11C9-L15C10" }, { "DocsId": "M:System.DirectoryServices.DirectorySynchronization.#ctor(System.DirectoryServices.DirectorySynchronizationOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronization.cs#L11C9-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronization.cs#L11C9-L20C10" }, { "DocsId": "M:System.DirectoryServices.DirectorySynchronization.#ctor(System.DirectoryServices.DirectorySynchronization)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronization.cs#L11C9-L29C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronization.cs#L11C9-L29C10" }, { "DocsId": "M:System.DirectoryServices.DirectorySynchronization.#ctor(System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronization.cs#L11C9-L31C103" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronization.cs#L11C9-L31C103" }, { "DocsId": "M:System.DirectoryServices.DirectorySynchronization.#ctor(System.DirectoryServices.DirectorySynchronizationOptions,System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronization.cs#L11C9-L37C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronization.cs#L11C9-L37C10" }, { "DocsId": "M:System.DirectoryServices.DirectorySynchronization.GetDirectorySynchronizationCookie", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronization.cs#L59C13-L65C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronization.cs#L59C13-L65C31" }, { "DocsId": "M:System.DirectoryServices.DirectorySynchronization.ResetDirectorySynchronizationCookie", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronization.cs#L68C62-L68C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronization.cs#L68C62-L68C91" }, { "DocsId": "M:System.DirectoryServices.DirectorySynchronization.ResetDirectorySynchronizationCookie(System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronization.cs#L72C13-L84C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronization.cs#L72C13-L84C10" }, { "DocsId": "M:System.DirectoryServices.DirectorySynchronization.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronization.cs#L86C51-L86C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronization.cs#L86C51-L86C97" }, { "DocsId": "P:System.DirectoryServices.DirectorySynchronization.Option", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronization.cs#L42C20-L42C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronization.cs#L42C20-L42C27" } ], "DocsId": "T:System.DirectoryServices.DirectorySynchronization", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronization.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronization.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.DirectorySynchronizationOptions.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronizationFlags.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronizationFlags.cs" }, { "DocsId": "F:System.DirectoryServices.DirectorySynchronizationOptions.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronizationFlags.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronizationFlags.cs" }, { "DocsId": "F:System.DirectoryServices.DirectorySynchronizationOptions.ObjectSecurity", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronizationFlags.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronizationFlags.cs" }, { "DocsId": "F:System.DirectoryServices.DirectorySynchronizationOptions.ParentsFirst", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronizationFlags.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronizationFlags.cs" }, { "DocsId": "F:System.DirectoryServices.DirectorySynchronizationOptions.PublicDataOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronizationFlags.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronizationFlags.cs" }, { "DocsId": "F:System.DirectoryServices.DirectorySynchronizationOptions.IncrementalValues", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronizationFlags.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronizationFlags.cs" } ], "DocsId": "T:System.DirectoryServices.DirectorySynchronizationOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronizationFlags.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectorySynchronizationFlags.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.DirectoryVirtualListView.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListView.cs#L14C9-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListView.cs#L14C9-L20C10" }, { "DocsId": "M:System.DirectoryServices.DirectoryVirtualListView.#ctor(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListView.cs#L14C9-L25C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListView.cs#L14C9-L25C10" }, { "DocsId": "M:System.DirectoryServices.DirectoryVirtualListView.#ctor(System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListView.cs#L14C9-L32C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListView.cs#L14C9-L32C10" }, { "DocsId": "M:System.DirectoryServices.DirectoryVirtualListView.#ctor(System.Int32,System.Int32,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListView.cs#L14C9-L39C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListView.cs#L14C9-L39C10" }, { "DocsId": "M:System.DirectoryServices.DirectoryVirtualListView.#ctor(System.Int32,System.Int32,System.Int32,System.DirectoryServices.DirectoryVirtualListViewContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListView.cs#L14C9-L47C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListView.cs#L14C9-L47C10" }, { "DocsId": "M:System.DirectoryServices.DirectoryVirtualListView.#ctor(System.Int32,System.Int32,System.String,System.DirectoryServices.DirectoryVirtualListViewContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListView.cs#L14C9-L55C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListView.cs#L14C9-L55C10" }, { "DocsId": "P:System.DirectoryServices.DirectoryVirtualListView.BeforeCount", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListView.cs#L60C20-L60C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListView.cs#L60C20-L60C32" }, { "DocsId": "P:System.DirectoryServices.DirectoryVirtualListView.AfterCount", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListView.cs#L75C20-L75C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListView.cs#L75C20-L75C31" }, { "DocsId": "P:System.DirectoryServices.DirectoryVirtualListView.Offset", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListView.cs#L90C20-L90C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListView.cs#L90C20-L90C27" }, { "DocsId": "P:System.DirectoryServices.DirectoryVirtualListView.TargetPercentage", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListView.cs#L113C20-L113C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListView.cs#L113C20-L113C37" }, { "DocsId": "P:System.DirectoryServices.DirectoryVirtualListView.Target", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListView.cs#L130C20-L130C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListView.cs#L130C20-L130C27" }, { "DocsId": "P:System.DirectoryServices.DirectoryVirtualListView.ApproximateTotal", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListView.cs#L137C20-L137C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListView.cs#L137C20-L137C37" }, { "DocsId": "P:System.DirectoryServices.DirectoryVirtualListView.DirectoryVirtualListViewContext", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListView.cs#L150C83-L150C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListView.cs#L150C83-L150C87" } ], "DocsId": "T:System.DirectoryServices.DirectoryVirtualListView", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListView.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListView.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.DirectoryVirtualListViewContext.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListViewContext.cs#L10C52-L12C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListViewContext.cs#L10C52-L12C10" }, { "DocsId": "M:System.DirectoryServices.DirectoryVirtualListViewContext.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListViewContext.cs#L32C13-L32C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListViewContext.cs#L32C13-L32C66" } ], "DocsId": "T:System.DirectoryServices.DirectoryVirtualListViewContext", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListViewContext.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryVirtualListViewContext.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.ExtendedDN.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ExtendedDn.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ExtendedDn.cs" }, { "DocsId": "F:System.DirectoryServices.ExtendedDN.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ExtendedDn.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ExtendedDn.cs" }, { "DocsId": "F:System.DirectoryServices.ExtendedDN.HexString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ExtendedDn.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ExtendedDn.cs" }, { "DocsId": "F:System.DirectoryServices.ExtendedDN.Standard", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ExtendedDn.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ExtendedDn.cs" } ], "DocsId": "T:System.DirectoryServices.ExtendedDN", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ExtendedDn.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ExtendedDn.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.PasswordEncodingMethod.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PasswordEncodingMethod.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PasswordEncodingMethod.cs" }, { "DocsId": "F:System.DirectoryServices.PasswordEncodingMethod.PasswordEncodingSsl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PasswordEncodingMethod.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PasswordEncodingMethod.cs" }, { "DocsId": "F:System.DirectoryServices.PasswordEncodingMethod.PasswordEncodingClear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PasswordEncodingMethod.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PasswordEncodingMethod.cs" } ], "DocsId": "T:System.DirectoryServices.PasswordEncodingMethod", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PasswordEncodingMethod.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PasswordEncodingMethod.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.PropertyCollection.Contains(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L72C13-L86C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L72C13-L86C25" }, { "DocsId": "M:System.DirectoryServices.PropertyCollection.CopyTo(System.DirectoryServices.PropertyValueCollection[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L94C13-L95C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L94C13-L95C10" }, { "DocsId": "M:System.DirectoryServices.PropertyCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L102C13-L114C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L102C13-L114C63" }, { "DocsId": "M:System.DirectoryServices.PropertyCollection.System#Collections#IDictionary#get_Item(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L119C20-L119C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L119C20-L119C37" }, { "DocsId": "M:System.DirectoryServices.PropertyCollection.System#Collections#IDictionary#set_Item(System.Object,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L120C20-L120C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L120C20-L120C78" }, { "DocsId": "M:System.DirectoryServices.PropertyCollection.System#Collections#IDictionary#get_IsFixedSize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L123C41-L123C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L123C41-L123C45" }, { "DocsId": "M:System.DirectoryServices.PropertyCollection.System#Collections#IDictionary#get_IsReadOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L125C40-L125C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L125C40-L125C44" }, { "DocsId": "M:System.DirectoryServices.PropertyCollection.System#Collections#IDictionary#get_Keys", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L127C41-L127C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L127C41-L127C65" }, { "DocsId": "M:System.DirectoryServices.PropertyCollection.System#Collections#IDictionary#Add(System.Object,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L131C13-L131C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L131C13-L131C67" }, { "DocsId": "M:System.DirectoryServices.PropertyCollection.System#Collections#IDictionary#Clear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L136C13-L136C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L136C13-L136C69" }, { "DocsId": "M:System.DirectoryServices.PropertyCollection.System#Collections#IDictionary#Contains(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L139C52-L139C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L139C52-L139C75" }, { "DocsId": "M:System.DirectoryServices.PropertyCollection.System#Collections#IDictionary#Remove(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L143C13-L143C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L143C13-L143C70" }, { "DocsId": "M:System.DirectoryServices.PropertyCollection.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L146C52-L146C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L146C52-L146C67" }, { "DocsId": "M:System.DirectoryServices.PropertyCollection.System#Collections#ICollection#get_IsSynchronized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L148C44-L148C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L148C44-L148C49" }, { "DocsId": "M:System.DirectoryServices.PropertyCollection.System#Collections#ICollection#get_SyncRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L150C40-L150C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L150C40-L150C44" }, { "DocsId": "M:System.DirectoryServices.PropertyCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L154C13-L171C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L154C13-L171C10" }, { "DocsId": "P:System.DirectoryServices.PropertyCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L32C17-L42C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L32C17-L42C34" }, { "DocsId": "P:System.DirectoryServices.PropertyCollection.Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L54C17-L61C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L54C17-L61C47" }, { "DocsId": "P:System.DirectoryServices.PropertyCollection.PropertyNames", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L65C45-L65C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L65C45-L65C69" }, { "DocsId": "P:System.DirectoryServices.PropertyCollection.Values", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L67C38-L67C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L67C38-L67C64" }, { "DocsId": "P:System.DirectoryServices.PropertyCollection.System#Collections#IDictionary#Item(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L119C20-L119C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L119C20-L119C37" }, { "DocsId": "P:System.DirectoryServices.PropertyCollection.System#Collections#IDictionary#IsFixedSize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L123C41-L123C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L123C41-L123C45" }, { "DocsId": "P:System.DirectoryServices.PropertyCollection.System#Collections#IDictionary#IsReadOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L125C40-L125C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L125C40-L125C44" }, { "DocsId": "P:System.DirectoryServices.PropertyCollection.System#Collections#IDictionary#Keys", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L127C41-L127C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L127C41-L127C65" }, { "DocsId": "P:System.DirectoryServices.PropertyCollection.System#Collections#ICollection#IsSynchronized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L148C44-L148C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L148C44-L148C49" }, { "DocsId": "P:System.DirectoryServices.PropertyCollection.System#Collections#ICollection#SyncRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L150C40-L150C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs#L150C40-L150C44" } ], "DocsId": "T:System.DirectoryServices.PropertyCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyCollection.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.PropertyValueCollection.Add(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs#L132C42-L132C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs#L132C42-L132C57" }, { "DocsId": "M:System.DirectoryServices.PropertyValueCollection.AddRange(System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs#L139C13-L147C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs#L139C13-L147C10" }, { "DocsId": "M:System.DirectoryServices.PropertyValueCollection.AddRange(System.DirectoryServices.PropertyValueCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs#L154C13-L163C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs#L154C13-L163C10" }, { "DocsId": "M:System.DirectoryServices.PropertyValueCollection.Contains(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs#L165C48-L165C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs#L165C48-L165C68" }, { "DocsId": "M:System.DirectoryServices.PropertyValueCollection.CopyTo(System.Object[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs#L173C13-L174C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs#L173C13-L174C10" }, { "DocsId": "M:System.DirectoryServices.PropertyValueCollection.IndexOf(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs#L176C46-L176C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs#L176C46-L176C65" }, { "DocsId": "M:System.DirectoryServices.PropertyValueCollection.Insert(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs#L178C57-L178C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs#L178C57-L178C82" }, { "DocsId": "M:System.DirectoryServices.PropertyValueCollection.Remove(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs#L211C13-L226C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs#L211C13-L226C10" }, { "DocsId": "M:System.DirectoryServices.PropertyValueCollection.OnClearComplete", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs#L230C13-L247C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs#L230C13-L247C10" }, { "DocsId": "M:System.DirectoryServices.PropertyValueCollection.OnInsertComplete(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs#L251C13-L280C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs#L251C13-L280C10" }, { "DocsId": "M:System.DirectoryServices.PropertyValueCollection.OnRemoveComplete(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs#L284C13-L313C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs#L284C13-L313C10" }, { "DocsId": "M:System.DirectoryServices.PropertyValueCollection.OnSetComplete(System.Int32,System.Object,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs#L318C13-L338C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs#L318C13-L338C10" }, { "DocsId": "P:System.DirectoryServices.PropertyValueCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs#L50C20-L50C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs#L50C20-L50C31" }, { "DocsId": "P:System.DirectoryServices.PropertyValueCollection.PropertyName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs#L62C38-L62C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs#L62C38-L62C42" }, { "DocsId": "P:System.DirectoryServices.PropertyValueCollection.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs#L68C17-L76C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs#L68C17-L76C40" } ], "DocsId": "T:System.DirectoryServices.PropertyValueCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/PropertyValueCollection.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.ReferralChasingOption.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ReferalChasingOption.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ReferalChasingOption.cs" }, { "DocsId": "F:System.DirectoryServices.ReferralChasingOption.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ReferalChasingOption.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ReferalChasingOption.cs" }, { "DocsId": "F:System.DirectoryServices.ReferralChasingOption.Subordinate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ReferalChasingOption.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ReferalChasingOption.cs" }, { "DocsId": "F:System.DirectoryServices.ReferralChasingOption.External", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ReferalChasingOption.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ReferalChasingOption.cs" }, { "DocsId": "F:System.DirectoryServices.ReferralChasingOption.All", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ReferalChasingOption.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ReferalChasingOption.cs" } ], "DocsId": "T:System.DirectoryServices.ReferralChasingOption", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ReferalChasingOption.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ReferalChasingOption.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ResultPropertyCollection.Contains(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ResultPropertyCollection.cs#L48C13-L49C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ResultPropertyCollection.cs#L48C13-L49C52" }, { "DocsId": "M:System.DirectoryServices.ResultPropertyCollection.CopyTo(System.DirectoryServices.ResultPropertyValueCollection[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ResultPropertyCollection.cs#L54C13-L55C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ResultPropertyCollection.cs#L54C13-L55C10" }, { "DocsId": "P:System.DirectoryServices.ResultPropertyCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ResultPropertyCollection.cs#L25C17-L32C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ResultPropertyCollection.cs#L25C17-L32C85" }, { "DocsId": "P:System.DirectoryServices.ResultPropertyCollection.PropertyNames", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ResultPropertyCollection.cs#L37C45-L37C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ResultPropertyCollection.cs#L37C45-L37C60" }, { "DocsId": "P:System.DirectoryServices.ResultPropertyCollection.Values", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ResultPropertyCollection.cs#L39C38-L39C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ResultPropertyCollection.cs#L39C38-L39C55" } ], "DocsId": "T:System.DirectoryServices.ResultPropertyCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ResultPropertyCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ResultPropertyCollection.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ResultPropertyValueCollection.Contains(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ResultPropertyValueCollection.cs#L30C48-L30C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ResultPropertyValueCollection.cs#L30C48-L30C73" }, { "DocsId": "M:System.DirectoryServices.ResultPropertyValueCollection.IndexOf(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ResultPropertyValueCollection.cs#L32C46-L32C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ResultPropertyValueCollection.cs#L32C46-L32C70" }, { "DocsId": "M:System.DirectoryServices.ResultPropertyValueCollection.CopyTo(System.Object[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ResultPropertyValueCollection.cs#L34C60-L34C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ResultPropertyValueCollection.cs#L34C60-L34C91" }, { "DocsId": "P:System.DirectoryServices.ResultPropertyValueCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ResultPropertyValueCollection.cs#L22C17-L26C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ResultPropertyValueCollection.cs#L22C17-L26C40" } ], "DocsId": "T:System.DirectoryServices.ResultPropertyValueCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ResultPropertyValueCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ResultPropertyValueCollection.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.SchemaNameCollection.Add(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L57C13-L63C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L57C13-L63C41" }, { "DocsId": "M:System.DirectoryServices.SchemaNameCollection.AddRange(System.String[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L71C13-L82C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L71C13-L82C10" }, { "DocsId": "M:System.DirectoryServices.SchemaNameCollection.AddRange(System.DirectoryServices.SchemaNameCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L86C13-L97C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L86C13-L97C10" }, { "DocsId": "M:System.DirectoryServices.SchemaNameCollection.Clear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L104C13-L105C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L104C13-L105C10" }, { "DocsId": "M:System.DirectoryServices.SchemaNameCollection.Contains(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L110C48-L110C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L110C48-L110C68" }, { "DocsId": "M:System.DirectoryServices.SchemaNameCollection.CopyTo(System.String[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L114C13-L116C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L114C13-L116C10" }, { "DocsId": "M:System.DirectoryServices.SchemaNameCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L120C13-L121C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L120C13-L121C43" }, { "DocsId": "M:System.DirectoryServices.SchemaNameCollection.IndexOf(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L138C13-L144C23" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L138C13-L144C23" }, { "DocsId": "M:System.DirectoryServices.SchemaNameCollection.Insert(System.Int32,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L152C13-L155C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L152C13-L155C10" }, { "DocsId": "M:System.DirectoryServices.SchemaNameCollection.Remove(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L163C13-L165C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L163C13-L165C10" }, { "DocsId": "M:System.DirectoryServices.SchemaNameCollection.RemoveAt(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L172C13-L182C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L172C13-L182C10" }, { "DocsId": "M:System.DirectoryServices.SchemaNameCollection.System#Collections#IList#get_IsReadOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L184C34-L184C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L184C34-L184C39" }, { "DocsId": "M:System.DirectoryServices.SchemaNameCollection.System#Collections#IList#get_IsFixedSize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L186C35-L186C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L186C35-L186C40" }, { "DocsId": "M:System.DirectoryServices.SchemaNameCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L190C13-L192C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L190C13-L192C10" }, { "DocsId": "M:System.DirectoryServices.SchemaNameCollection.System#Collections#ICollection#get_IsSynchronized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L194C44-L194C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L194C44-L194C49" }, { "DocsId": "M:System.DirectoryServices.SchemaNameCollection.System#Collections#ICollection#get_SyncRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L196C40-L196C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L196C40-L196C44" }, { "DocsId": "M:System.DirectoryServices.SchemaNameCollection.System#Collections#IList#get_Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L200C20-L200C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L200C20-L200C31" }, { "DocsId": "M:System.DirectoryServices.SchemaNameCollection.System#Collections#IList#set_Item(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L201C20-L201C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L201C20-L201C48" }, { "DocsId": "M:System.DirectoryServices.SchemaNameCollection.System#Collections#IList#Add(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L204C41-L204C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L204C41-L204C60" }, { "DocsId": "M:System.DirectoryServices.SchemaNameCollection.System#Collections#IList#Contains(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L206C47-L206C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L206C47-L206C71" }, { "DocsId": "M:System.DirectoryServices.SchemaNameCollection.System#Collections#IList#IndexOf(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L208C45-L208C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L208C45-L208C68" }, { "DocsId": "M:System.DirectoryServices.SchemaNameCollection.System#Collections#IList#Insert(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L210C56-L210C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L210C56-L210C85" }, { "DocsId": "M:System.DirectoryServices.SchemaNameCollection.System#Collections#IList#Remove(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L212C45-L212C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L212C45-L212C67" }, { "DocsId": "P:System.DirectoryServices.SchemaNameCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L29C17-L30C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L29C17-L30C47" }, { "DocsId": "P:System.DirectoryServices.SchemaNameCollection.Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L47C17-L48C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L47C17-L48C38" }, { "DocsId": "P:System.DirectoryServices.SchemaNameCollection.System#Collections#IList#IsReadOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L184C34-L184C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L184C34-L184C39" }, { "DocsId": "P:System.DirectoryServices.SchemaNameCollection.System#Collections#IList#IsFixedSize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L186C35-L186C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L186C35-L186C40" }, { "DocsId": "P:System.DirectoryServices.SchemaNameCollection.System#Collections#ICollection#IsSynchronized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L194C44-L194C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L194C44-L194C49" }, { "DocsId": "P:System.DirectoryServices.SchemaNameCollection.System#Collections#ICollection#SyncRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L196C40-L196C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L196C40-L196C44" }, { "DocsId": "P:System.DirectoryServices.SchemaNameCollection.System#Collections#IList#Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L200C20-L200C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs#L200C20-L200C31" } ], "DocsId": "T:System.DirectoryServices.SchemaNameCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SchemaNameCollection.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.SearchResult.GetDirectoryEntry", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResult.cs#L29C13-L34C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResult.cs#L29C13-L34C33" }, { "DocsId": "P:System.DirectoryServices.SearchResult.Path", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResult.cs#L41C31-L41C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResult.cs#L41C31-L41C64" }, { "DocsId": "P:System.DirectoryServices.SearchResult.Properties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResult.cs#L47C54-L47C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResult.cs#L47C54-L47C58" } ], "DocsId": "T:System.DirectoryServices.SearchResult", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResult.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResult.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.SearchResultCollection.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L151C13-L153C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L151C13-L153C10" }, { "DocsId": "M:System.DirectoryServices.SearchResultCollection.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L157C13-L185C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L157C13-L185C10" }, { "DocsId": "M:System.DirectoryServices.SearchResultCollection.Finalize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L187C38-L187C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L187C38-L16707566C0" }, { "DocsId": "M:System.DirectoryServices.SearchResultCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L193C13-L196C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L193C13-L196C87" }, { "DocsId": "M:System.DirectoryServices.SearchResultCollection.Contains(System.DirectoryServices.SearchResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L199C54-L199C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L199C54-L199C80" }, { "DocsId": "M:System.DirectoryServices.SearchResultCollection.CopyTo(System.DirectoryServices.SearchResult[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L203C13-L204C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L203C13-L204C10" }, { "DocsId": "M:System.DirectoryServices.SearchResultCollection.IndexOf(System.DirectoryServices.SearchResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L206C52-L206C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L206C52-L206C77" }, { "DocsId": "M:System.DirectoryServices.SearchResultCollection.System#Collections#ICollection#get_IsSynchronized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L208C44-L208C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L208C44-L208C49" }, { "DocsId": "M:System.DirectoryServices.SearchResultCollection.System#Collections#ICollection#get_SyncRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L210C40-L210C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L210C40-L210C44" }, { "DocsId": "M:System.DirectoryServices.SearchResultCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L214C13-L215C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L214C13-L215C10" }, { "DocsId": "P:System.DirectoryServices.SearchResultCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L38C48-L38C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L38C48-L38C79" }, { "DocsId": "P:System.DirectoryServices.SearchResultCollection.Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L40C29-L40C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L40C29-L40C44" }, { "DocsId": "P:System.DirectoryServices.SearchResultCollection.Handle", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L77C17-L80C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L77C17-L80C32" }, { "DocsId": "P:System.DirectoryServices.SearchResultCollection.PropertiesLoaded", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L88C44-L88C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L88C44-L88C48" }, { "DocsId": "P:System.DirectoryServices.SearchResultCollection.System#Collections#ICollection#IsSynchronized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L208C44-L208C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L208C44-L208C49" }, { "DocsId": "P:System.DirectoryServices.SearchResultCollection.System#Collections#ICollection#SyncRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L210C40-L210C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs#L210C40-L210C44" } ], "DocsId": "T:System.DirectoryServices.SearchResultCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchResultCollection.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.SearchScope.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchScope.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchScope.cs" }, { "DocsId": "F:System.DirectoryServices.SearchScope.Base", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchScope.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchScope.cs" }, { "DocsId": "F:System.DirectoryServices.SearchScope.OneLevel", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchScope.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchScope.cs" }, { "DocsId": "F:System.DirectoryServices.SearchScope.Subtree", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchScope.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchScope.cs" } ], "DocsId": "T:System.DirectoryServices.SearchScope", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchScope.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SearchScope.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.SecurityMasks.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SecurityMasks.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SecurityMasks.cs" }, { "DocsId": "F:System.DirectoryServices.SecurityMasks.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SecurityMasks.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SecurityMasks.cs" }, { "DocsId": "F:System.DirectoryServices.SecurityMasks.Owner", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SecurityMasks.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SecurityMasks.cs" }, { "DocsId": "F:System.DirectoryServices.SecurityMasks.Group", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SecurityMasks.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SecurityMasks.cs" }, { "DocsId": "F:System.DirectoryServices.SecurityMasks.Dacl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SecurityMasks.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SecurityMasks.cs" }, { "DocsId": "F:System.DirectoryServices.SecurityMasks.Sacl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SecurityMasks.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SecurityMasks.cs" } ], "DocsId": "T:System.DirectoryServices.SecurityMasks", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SecurityMasks.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SecurityMasks.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.SortDirection.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SortDirection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SortDirection.cs" }, { "DocsId": "F:System.DirectoryServices.SortDirection.Ascending", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SortDirection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SortDirection.cs" }, { "DocsId": "F:System.DirectoryServices.SortDirection.Descending", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SortDirection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SortDirection.cs" } ], "DocsId": "T:System.DirectoryServices.SortDirection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SortDirection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SortDirection.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.SortOption.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SortOption.cs#L15C9-L17C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SortOption.cs#L15C9-L17C10" }, { "DocsId": "M:System.DirectoryServices.SortOption.#ctor(System.String,System.DirectoryServices.SortDirection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SortOption.cs#L19C9-L23C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SortOption.cs#L19C9-L23C10" }, { "DocsId": "P:System.DirectoryServices.SortOption.PropertyName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SortOption.cs#L29C20-L29C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SortOption.cs#L29C20-L29C33" }, { "DocsId": "P:System.DirectoryServices.SortOption.Direction", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SortOption.cs#L36C20-L36C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SortOption.cs#L36C20-L36C34" } ], "DocsId": "T:System.DirectoryServices.SortOption", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SortOption.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/SortOption.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.DirectoryServicesCOMException.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryServicesCOMException.cs#L14C9-L14C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryServicesCOMException.cs#L14C9-L14C51" }, { "DocsId": "M:System.DirectoryServices.DirectoryServicesCOMException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryServicesCOMException.cs#L16C65-L16C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryServicesCOMException.cs#L16C65-L16C82" }, { "DocsId": "M:System.DirectoryServices.DirectoryServicesCOMException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryServicesCOMException.cs#L18C83-L18C107" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryServicesCOMException.cs#L18C83-L18C107" }, { "DocsId": "M:System.DirectoryServices.DirectoryServicesCOMException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryServicesCOMException.cs#L24C101-L26C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryServicesCOMException.cs#L24C101-L26C10" }, { "DocsId": "M:System.DirectoryServices.DirectoryServicesCOMException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryServicesCOMException.cs#L44C13-L45C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryServicesCOMException.cs#L44C13-L45C10" }, { "DocsId": "P:System.DirectoryServices.DirectoryServicesCOMException.ExtendedError", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryServicesCOMException.cs#L34C36-L34C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryServicesCOMException.cs#L34C36-L34C40" }, { "DocsId": "P:System.DirectoryServices.DirectoryServicesCOMException.ExtendedErrorMessage", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryServicesCOMException.cs#L36C47-L36C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryServicesCOMException.cs#L36C47-L36C51" } ], "DocsId": "T:System.DirectoryServices.DirectoryServicesCOMException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryServicesCOMException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/DirectoryServicesCOMException.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryPartition.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryPartition.cs#L14C9-L16C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryPartition.cs#L14C9-L16C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryPartition.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryPartition.cs#L29C13-L30C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryPartition.cs#L29C13-L30C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryPartition.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryPartition.cs#L35C13-L49C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryPartition.cs#L35C13-L49C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryPartition.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryPartition.cs#L53C46-L53C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryPartition.cs#L53C46-L53C50" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryPartition.GetDirectoryEntry", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryPartition.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryPartition.cs" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectoryPartition.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryPartition.cs#L65C17-L66C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryPartition.cs#L65C17-L66C38" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ActiveDirectoryPartition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryPartition.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryPartition.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryReplicationMetadata.Contains(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryReplicationMetaData.cs#L42C13-L43C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryReplicationMetaData.cs#L42C13-L43C50" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryReplicationMetadata.CopyTo(System.DirectoryServices.ActiveDirectory.AttributeMetadata[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryReplicationMetaData.cs#L48C13-L49C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryReplicationMetaData.cs#L48C13-L49C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectoryReplicationMetadata.Item(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryReplicationMetaData.cs#L26C17-L32C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryReplicationMetaData.cs#L26C17-L32C33" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectoryReplicationMetadata.AttributeNames", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryReplicationMetaData.cs#L36C58-L36C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryReplicationMetaData.cs#L36C58-L36C62" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectoryReplicationMetadata.Values", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryReplicationMetaData.cs#L38C53-L38C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryReplicationMetaData.cs#L38C53-L38C57" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ActiveDirectoryReplicationMetadata", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryReplicationMetaData.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryReplicationMetaData.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.ActiveDirectory.HourOfDay.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.HourOfDay.Zero", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.HourOfDay.One", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.HourOfDay.Two", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.HourOfDay.Three", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.HourOfDay.Four", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.HourOfDay.Five", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.HourOfDay.Six", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.HourOfDay.Seven", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.HourOfDay.Eight", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.HourOfDay.Nine", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.HourOfDay.Ten", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.HourOfDay.Eleven", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.HourOfDay.Twelve", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.HourOfDay.Thirteen", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.HourOfDay.Fourteen", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.HourOfDay.Fifteen", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.HourOfDay.Sixteen", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.HourOfDay.Seventeen", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.HourOfDay.Eighteen", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.HourOfDay.Nineteen", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.HourOfDay.Twenty", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.HourOfDay.TwentyOne", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.HourOfDay.TwentyTwo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.HourOfDay.TwentyThree", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.HourOfDay", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.ActiveDirectory.MinuteOfHour.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.MinuteOfHour.Zero", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.MinuteOfHour.Fifteen", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.MinuteOfHour.Thirty", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.MinuteOfHour.FortyFive", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.MinuteOfHour", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchedule.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs#L47C9-L56C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs#L47C9-L56C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchedule.#ctor(System.DirectoryServices.ActiveDirectory.ActiveDirectorySchedule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs#L58C76-L65C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs#L58C76-L65C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchedule.SetSchedule(System.DayOfWeek,System.DirectoryServices.ActiveDirectory.HourOfDay,System.DirectoryServices.ActiveDirectory.MinuteOfHour,System.DirectoryServices.ActiveDirectory.HourOfDay,System.DirectoryServices.ActiveDirectory.MinuteOfHour)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs#L100C13-L124C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs#L100C13-L124C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchedule.SetSchedule(System.DayOfWeek[],System.DirectoryServices.ActiveDirectory.HourOfDay,System.DirectoryServices.ActiveDirectory.MinuteOfHour,System.DirectoryServices.ActiveDirectory.HourOfDay,System.DirectoryServices.ActiveDirectory.MinuteOfHour)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs#L128C13-L138C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs#L128C13-L138C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchedule.SetDailySchedule(System.DirectoryServices.ActiveDirectory.HourOfDay,System.DirectoryServices.ActiveDirectory.MinuteOfHour,System.DirectoryServices.ActiveDirectory.HourOfDay,System.DirectoryServices.ActiveDirectory.MinuteOfHour)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs#L142C18-L146C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs#L142C18-L146C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchedule.ResetSchedule", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs#L150C18-L152C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs#L150C18-L152C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchedule.RawSchedule", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs#L77C17-L82C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs#L77C17-L82C28" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchedule", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchedule.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.ActiveDirectory.SchemaClassType.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.SchemaClassType.Type88", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.SchemaClassType.Structural", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.SchemaClassType.Abstract", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.SchemaClassType.Auxiliary", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.SchemaClassType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.ActiveDirectory.PropertyTypes.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.PropertyTypes.Indexed", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.PropertyTypes.InGlobalCatalog", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.PropertyTypes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchema.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L53C13-L83C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L53C13-L83C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchema.GetSchema(System.DirectoryServices.ActiveDirectory.DirectoryContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L89C13-L175C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L89C13-L175C84" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchema.RefreshSchema", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L180C13-L203C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L180C13-L203C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchema.FindClass(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L210C13-L211C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L210C13-L211C84" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchema.FindDefunctClass(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L219C13-L236C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L219C13-L236C32" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchema.FindAllClasses", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L244C13-L247C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L244C13-L247C65" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchema.FindAllClasses(System.DirectoryServices.ActiveDirectory.SchemaClassType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L255C13-L266C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L255C13-L266C65" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchema.FindAllDefunctClasses", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L274C13-L278C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L274C13-L278C65" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchema.FindProperty(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L286C13-L287C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L286C13-L287C87" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchema.FindDefunctProperty(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L295C13-L312C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L295C13-L312C35" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchema.FindAllProperties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L320C13-L324C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L320C13-L324C68" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchema.FindAllProperties(System.DirectoryServices.ActiveDirectory.PropertyTypes)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L332C13-L366C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L332C13-L366C76" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchema.FindAllDefunctProperties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L374C13-L378C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L374C13-L378C68" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchema.GetDirectoryEntry", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L383C13-L384C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L383C13-L384C75" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchema.GetCurrentSchema", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L389C13-L389C103" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L389C13-L389C103" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchema.SchemaRoleOwner", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L400C17-L401C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs#L400C17-L401C72" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchema", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchema.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass.#ctor(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L42C9-L89C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L42C9-L89C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L182C13-L183C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L182C13-L183C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L188C13-L217C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L188C13-L217C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass.FindByName(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L223C13-L255C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L223C13-L255C32" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass.GetAllProperties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L260C13-L269C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L260C13-L269C84" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass.Save", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L274C13-L420C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L274C13-L420C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L424C13-L424C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L424C13-L424C25" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass.GetDirectoryEntry", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L429C13-L439C96" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L429C13-L439C96" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L448C17-L449C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L448C17-L449C41" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass.CommonName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L457C17-L464C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L457C17-L464C36" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass.Oid", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L483C17-L508C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L483C17-L508C29" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass.Description", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L527C17-L538C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L527C17-L538C37" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass.IsDefunct", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L557C17-L559C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L557C17-L559C35" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass.PossibleSuperiors", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L578C17-L647C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L578C17-L647C43" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass.PossibleInferiors", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L655C17-L669C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L655C17-L669C43" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass.MandatoryProperties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L677C17-L745C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L677C17-L745C45" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass.OptionalProperties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L753C17-L830C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L753C17-L830C44" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass.AuxiliaryClasses", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L838C17-L906C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L838C17-L906C42" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass.SubClassOf", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L914C17-L921C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L914C17-L921C36" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass.Type", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L940C17-L951C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L940C17-L951C30" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass.SchemaGuid", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L976C17-L985C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L976C17-L985C57" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass.DefaultObjectSecurityDescriptor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L1004C17-L1025C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs#L1004C17-L1025C56" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClass.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClassCollection.Add(System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs#L82C13-L95C122" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs#L82C13-L95C122" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClassCollection.AddRange(System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs#L101C13-L115C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs#L101C13-L115C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClassCollection.AddRange(System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClassCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs#L119C13-L134C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs#L119C13-L134C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClassCollection.AddRange(System.DirectoryServices.ActiveDirectory.ReadOnlyActiveDirectorySchemaClassCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs#L138C13-L153C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs#L138C13-L153C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClassCollection.Remove(System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs#L157C13-L173C111" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs#L157C13-L173C111" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClassCollection.Insert(System.Int32,System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs#L178C13-L191C122" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs#L178C13-L191C122" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClassCollection.Contains(System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs#L197C13-L213C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs#L197C13-L213C26" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClassCollection.CopyTo(System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs#L218C13-L219C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs#L218C13-L219C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClassCollection.IndexOf(System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs#L223C13-L239C23" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs#L223C13-L239C23" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClassCollection.OnClearComplete", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs#L244C13-L260C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs#L244C13-L260C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClassCollection.OnInsertComplete(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs#L266C13-L279C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs#L266C13-L279C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClassCollection.OnRemoveComplete(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs#L285C13-L311C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs#L285C13-L311C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClassCollection.OnSetComplete(System.Int32,System.Object,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs#L317C13-L324C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs#L317C13-L324C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClassCollection.OnValidate(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs#L328C13-L337C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs#L328C13-L337C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClassCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs#L56C20-L56C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs#L56C20-L56C60" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClassCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaClassCollection.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty.#ctor(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L40C9-L140C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L40C9-L140C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L232C13-L233C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L232C13-L233C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L238C13-L268C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L238C13-L268C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty.FindByName(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L274C13-L304C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L274C13-L304C35" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty.Save", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L309C13-L454C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L309C13-L454C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L456C46-L456C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L456C46-L456C50" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty.GetDirectoryEntry", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L460C13-L470C99" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L460C13-L470C99" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L480C17-L481C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L480C17-L481C41" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty.CommonName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L489C17-L496C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L489C17-L496C36" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty.Oid", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L518C17-L543C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L518C17-L543C29" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty.Syntax", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L565C17-L580C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L565C17-L580C32" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty.Description", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L604C17-L615C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L604C17-L615C37" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty.IsSingleValued", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L637C17-L663C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L637C17-L663C40" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty.IsIndexed", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L686C17-L688C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L686C17-L688C66" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty.IsIndexedOverContainer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L709C17-L711C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L709C17-L711C79" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty.IsInAnr", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L732C17-L734C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L732C17-L734C64" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty.IsOnTombstonedObject", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L755C17-L757C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L755C17-L757C77" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty.IsTupleIndexed", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L778C17-L780C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L778C17-L780C71" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty.IsInGlobalCatalog", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L801C17-L813C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L801C17-L813C43" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty.RangeLower", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L836C17-L856C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L836C17-L856C36" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty.RangeUpper", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L889C17-L909C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L889C17-L909C36" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty.IsDefunct", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L942C17-L944C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L942C17-L944C35" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty.Link", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L963C17-L998C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L963C17-L998C40" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty.LinkId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L1006C17-L1025C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L1006C17-L1025C32" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty.SchemaGuid", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L1058C17-L1067C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs#L1058C17-L1067C57" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaProperty.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaPropertyCollection.Add(System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs#L80C13-L93C128" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs#L80C13-L93C128" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaPropertyCollection.AddRange(System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs#L99C13-L113C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs#L99C13-L113C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaPropertyCollection.AddRange(System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaPropertyCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs#L117C13-L133C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs#L117C13-L133C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaPropertyCollection.AddRange(System.DirectoryServices.ActiveDirectory.ReadOnlyActiveDirectorySchemaPropertyCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs#L137C13-L153C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs#L137C13-L153C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaPropertyCollection.Remove(System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs#L157C13-L173C117" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs#L157C13-L173C117" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaPropertyCollection.Insert(System.Int32,System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs#L178C13-L191C128" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs#L178C13-L191C128" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaPropertyCollection.Contains(System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs#L197C13-L212C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs#L197C13-L212C26" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaPropertyCollection.CopyTo(System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs#L232C13-L233C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs#L232C13-L233C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaPropertyCollection.IndexOf(System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs#L237C13-L252C23" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs#L237C13-L252C23" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaPropertyCollection.OnClearComplete", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs#L257C13-L273C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs#L257C13-L273C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaPropertyCollection.OnInsertComplete(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs#L279C13-L292C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs#L279C13-L292C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaPropertyCollection.OnRemoveComplete(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs#L298C13-L324C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs#L298C13-L324C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaPropertyCollection.OnSetComplete(System.Int32,System.Object,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs#L330C13-L338C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs#L330C13-L338C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaPropertyCollection.OnValidate(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs#L342C13-L349C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs#L342C13-L349C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaPropertyCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs#L56C20-L56C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs#L56C20-L56C63" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaPropertyCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteOptions.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteOptions.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteOptions.AutoTopologyDisabled", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteOptions.TopologyCleanupDisabled", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteOptions.AutoMinimumHopDisabled", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteOptions.StaleServerDetectDisabled", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteOptions.AutoInterSiteTopologyDisabled", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteOptions.GroupMembershipCachingEnabled", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteOptions.ForceKccWindows2003Behavior", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteOptions.UseWindows2000IstgElection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteOptions.RandomBridgeHeaderServerSelectionDisabled", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteOptions.UseHashingForReplicationSchedule", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteOptions.RedundantServerTopologyEnabled", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySite.FindByName(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L64C13-L123C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L64C13-L123C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySite.#ctor(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L37C9-L168C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L37C9-L168C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySite.GetComputerSite", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L193C13-L227C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L193C13-L227C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySite.Save", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L720C13-L850C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L720C13-L850C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySite.Delete", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L854C13-L872C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L854C13-L872C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySite.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L876C13-L879C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L876C13-L879C26" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySite.GetDirectoryEntry", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L1074C13-L1083C99" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L1074C13-L1083C99" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySite.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L1089C13-L1091C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L1089C13-L1091C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySite.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L1095C13-L1105C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L1095C13-L1105C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySite.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L233C17-L236C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L233C17-L236C30" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySite.Domains", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L244C17-L258C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L244C17-L258C33" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySite.Subnets", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L266C17-L282C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L266C17-L282C33" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySite.Servers", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L290C17-L303C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L290C17-L303C33" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySite.AdjacentSites", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L311C17-L323C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L311C17-L323C39" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySite.SiteLinks", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L331C17-L343C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L331C17-L343C31" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySite.InterSiteTopologyGenerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L352C17-L407C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L352C17-L407C14" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySite.Options", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L431C17-L452C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L431C17-L452C14" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySite.Location", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L478C17-L494C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L478C17-L494C14" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySite.BridgeheadServers", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L523C17-L532C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L523C17-L532C43" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySite.PreferredSmtpBridgeheadServers", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L540C17-L556C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L540C17-L556C47" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySite.PreferredRpcBridgeheadServers", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L564C17-L579C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L564C17-L579C46" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySite.IntraSiteReplicationSchedule", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L587C17-L620C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs#L587C17-L620C33" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ActiveDirectorySite", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySite.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteCollection.Add(System.DirectoryServices.ActiveDirectory.ActiveDirectorySite)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteCollection.cs#L45C13-L53C108" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteCollection.cs#L45C13-L53C108" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteCollection.AddRange(System.DirectoryServices.ActiveDirectory.ActiveDirectorySite[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteCollection.cs#L58C13-L62C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteCollection.cs#L58C13-L62C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteCollection.AddRange(System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteCollection.cs#L66C13-L71C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteCollection.cs#L66C13-L71C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteCollection.Contains(System.DirectoryServices.ActiveDirectory.ActiveDirectorySite)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteCollection.cs#L75C13-L92C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteCollection.cs#L75C13-L92C26" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteCollection.CopyTo(System.DirectoryServices.ActiveDirectory.ActiveDirectorySite[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteCollection.cs#L97C13-L98C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteCollection.cs#L97C13-L98C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteCollection.IndexOf(System.DirectoryServices.ActiveDirectory.ActiveDirectorySite)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteCollection.cs#L102C13-L119C23" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteCollection.cs#L102C13-L119C23" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteCollection.Insert(System.Int32,System.DirectoryServices.ActiveDirectory.ActiveDirectorySite)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteCollection.cs#L124C13-L132C108" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteCollection.cs#L124C13-L132C108" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteCollection.Remove(System.DirectoryServices.ActiveDirectory.ActiveDirectorySite)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteCollection.cs#L137C13-L157C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteCollection.cs#L137C13-L157C97" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteCollection.OnClearComplete", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteCollection.cs#L163C13-L175C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteCollection.cs#L163C13-L175C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteCollection.OnInsertComplete(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteCollection.cs#L181C13-L194C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteCollection.cs#L181C13-L194C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteCollection.OnRemoveComplete(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteCollection.cs#L200C13-L210C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteCollection.cs#L200C13-L210C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteCollection.OnSetComplete(System.Int32,System.Object,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteCollection.cs#L216C13-L226C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteCollection.cs#L216C13-L226C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteCollection.OnValidate(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteCollection.cs#L230C13-L237C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteCollection.cs#L230C13-L237C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteCollection.cs#L25C20-L25C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteCollection.cs#L25C20-L25C58" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteCollection.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLink.#ctor(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L28C89-L30C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L28C89-L30C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLink.#ctor(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String,System.DirectoryServices.ActiveDirectory.ActiveDirectoryTransportType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L32C129-L34C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L32C129-L34C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLink.#ctor(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String,System.DirectoryServices.ActiveDirectory.ActiveDirectoryTransportType,System.DirectoryServices.ActiveDirectory.ActiveDirectorySchedule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L22C9-L101C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L22C9-L101C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLink.FindByName(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L114C13-L114C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L114C13-L114C88" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLink.FindByName(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String,System.DirectoryServices.ActiveDirectory.ActiveDirectoryTransportType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L119C13-L195C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L119C13-L195C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLink.Save", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L579C13-L599C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L579C13-L599C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLink.Delete", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L603C13-L621C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L603C13-L621C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLink.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L625C13-L628C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L625C13-L628C26" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLink.GetDirectoryEntry", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L633C13-L642C99" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L633C13-L642C99" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLink.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L648C13-L650C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L648C13-L650C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLink.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L654C13-L663C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L654C13-L663C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLink.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L201C17-L204C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L201C17-L204C30" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLink.TransportType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L212C17-L215C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L212C17-L215C35" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLink.Sites", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L223C17-L240C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L223C17-L240C31" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLink.Cost", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L248C17-L263C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L248C17-L263C14" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLink.ReplicationInterval", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L287C17-L304C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L287C17-L304C14" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLink.ReciprocalReplicationEnabled", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L336C17-L359C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L336C17-L359C33" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLink.NotificationEnabled", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L400C17-L423C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L400C17-L423C33" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLink.DataCompressionEnabled", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L464C17-L490C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L464C17-L490C34" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLink.InterSiteReplicationSchedule", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L532C17-L551C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs#L532C17-L551C33" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLink", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLink.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkBridge.#ctor(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkBridge.cs#L24C93-L26C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkBridge.cs#L24C93-L26C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkBridge.#ctor(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String,System.DirectoryServices.ActiveDirectory.ActiveDirectoryTransportType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkBridge.cs#L21C9-L88C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkBridge.cs#L21C9-L88C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkBridge.FindByName(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkBridge.cs#L101C13-L101C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkBridge.cs#L101C13-L101C86" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkBridge.FindByName(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String,System.DirectoryServices.ActiveDirectory.ActiveDirectoryTransportType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkBridge.cs#L106C13-L183C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkBridge.cs#L106C13-L183C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkBridge.Save", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkBridge.cs#L234C13-L255C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkBridge.cs#L234C13-L255C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkBridge.Delete", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkBridge.cs#L259C13-L277C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkBridge.cs#L259C13-L277C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkBridge.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkBridge.cs#L281C13-L284C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkBridge.cs#L281C13-L284C26" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkBridge.GetDirectoryEntry", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkBridge.cs#L289C13-L298C100" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkBridge.cs#L289C13-L298C100" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkBridge.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkBridge.cs#L304C13-L306C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkBridge.cs#L304C13-L306C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkBridge.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkBridge.cs#L310C13-L319C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkBridge.cs#L310C13-L319C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkBridge.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkBridge.cs#L189C17-L192C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkBridge.cs#L189C17-L192C30" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkBridge.SiteLinks", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkBridge.cs#L200C17-L217C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkBridge.cs#L200C17-L217C31" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkBridge.TransportType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkBridge.cs#L225C17-L228C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkBridge.cs#L225C17-L228C35" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkBridge", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkBridge.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkBridge.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkCollection.Add(System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLink)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkCollection.cs#L39C13-L48C108" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkCollection.cs#L39C13-L48C108" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkCollection.AddRange(System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLink[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkCollection.cs#L53C13-L58C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkCollection.cs#L53C13-L58C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkCollection.AddRange(System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkCollection.cs#L62C13-L68C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkCollection.cs#L62C13-L68C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkCollection.Contains(System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLink)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkCollection.cs#L72C13-L90C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkCollection.cs#L72C13-L90C26" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkCollection.CopyTo(System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLink[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkCollection.cs#L95C13-L96C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkCollection.cs#L95C13-L96C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkCollection.IndexOf(System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLink)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkCollection.cs#L100C13-L118C23" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkCollection.cs#L100C13-L118C23" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkCollection.Insert(System.Int32,System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLink)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkCollection.cs#L123C13-L132C108" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkCollection.cs#L123C13-L132C108" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkCollection.Remove(System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLink)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkCollection.cs#L137C13-L158C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkCollection.cs#L137C13-L158C97" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkCollection.OnClearComplete", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkCollection.cs#L164C13-L176C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkCollection.cs#L164C13-L176C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkCollection.OnInsertComplete(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkCollection.cs#L182C13-L195C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkCollection.cs#L182C13-L195C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkCollection.OnRemoveComplete(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkCollection.cs#L201C13-L211C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkCollection.cs#L201C13-L211C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkCollection.OnSetComplete(System.Int32,System.Object,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkCollection.cs#L217C13-L227C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkCollection.cs#L217C13-L227C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkCollection.OnValidate(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkCollection.cs#L231C13-L238C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkCollection.cs#L231C13-L238C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkCollection.cs#L19C20-L19C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkCollection.cs#L19C20-L19C62" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySiteLinkCollection.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnet.FindByName(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnet.cs#L21C13-L107C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnet.cs#L21C13-L107C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnet.#ctor(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnet.cs#L109C9-L147C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnet.cs#L109C9-L147C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnet.#ctor(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnet.cs#L149C102-L166C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnet.cs#L149C102-L166C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnet.Save", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnet.cs#L272C13-L308C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnet.cs#L272C13-L308C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnet.Delete", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnet.cs#L312C13-L330C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnet.cs#L312C13-L330C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnet.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnet.cs#L334C13-L337C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnet.cs#L334C13-L337C25" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnet.GetDirectoryEntry", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnet.cs#L342C13-L351C99" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnet.cs#L342C13-L351C99" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnet.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnet.cs#L357C13-L359C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnet.cs#L357C13-L359C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnet.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnet.cs#L363C13-L372C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnet.cs#L363C13-L372C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnet.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnet.cs#L194C17-L197C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnet.cs#L194C17-L197C30" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnet.Site", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnet.cs#L205C17-L208C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnet.cs#L205C17-L208C30" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnet.Location", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnet.cs#L230C17-L244C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnet.cs#L230C17-L244C14" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnet", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnet.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnet.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnetCollection.Add(System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnet)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs#L49C13-L58C112" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs#L49C13-L58C112" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnetCollection.AddRange(System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnet[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs#L63C13-L76C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs#L63C13-L76C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnetCollection.AddRange(System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnetCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs#L80C13-L86C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs#L80C13-L86C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnetCollection.Contains(System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnet)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs#L90C13-L108C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs#L90C13-L108C26" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnetCollection.CopyTo(System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnet[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs#L113C13-L114C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs#L113C13-L114C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnetCollection.IndexOf(System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnet)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs#L118C13-L136C23" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs#L118C13-L136C23" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnetCollection.Insert(System.Int32,System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnet)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs#L141C13-L150C112" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs#L141C13-L150C112" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnetCollection.Remove(System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnet)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs#L155C13-L176C101" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs#L155C13-L176C101" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnetCollection.OnClear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs#L181C13-L189C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs#L181C13-L189C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnetCollection.OnClearComplete", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs#L194C13-L201C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs#L194C13-L201C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnetCollection.OnInsertComplete(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs#L207C13-L230C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs#L207C13-L230C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnetCollection.OnRemoveComplete(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs#L236C13-L256C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs#L236C13-L256C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnetCollection.OnSetComplete(System.Int32,System.Object,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs#L262C13-L264C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs#L262C13-L264C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnetCollection.OnValidate(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs#L268C13-L275C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs#L268C13-L275C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnetCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs#L29C20-L29C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs#L29C20-L29C60" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnetCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySubnetCollection.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySyntax.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySyntax.CaseExactString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySyntax.CaseIgnoreString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySyntax.NumericString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySyntax.DirectoryString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySyntax.OctetString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySyntax.SecurityDescriptor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySyntax.Int", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySyntax.Int64", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySyntax.Bool", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySyntax.Oid", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySyntax.GeneralizedTime", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySyntax.UtcTime", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySyntax.DN", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySyntax.DNWithBinary", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySyntax.DNWithString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySyntax.Enumeration", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySyntax.IA5String", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySyntax.PrintableString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySyntax.Sid", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySyntax.AccessPointDN", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySyntax.ORName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySyntax.PresentationAddress", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectorySyntax.ReplicaLink", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ActiveDirectorySyntax", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectorySyntax.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.AdamInstance.Finalize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L84C13-L85C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L84C13-L85C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.AdamInstance.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L90C13-L106C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L90C13-L106C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.AdamInstance.GetAdamInstance(System.DirectoryServices.ActiveDirectory.DirectoryContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L113C13-L164C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L113C13-L164C78" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.AdamInstance.FindOne(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L170C13-L194C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L170C13-L194C87" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.AdamInstance.FindAll(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L199C13-L236C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L199C13-L236C43" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.AdamInstance.TransferRoleOwnership(System.DirectoryServices.ActiveDirectory.AdamRole)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L241C13-L262C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L241C13-L262C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.AdamInstance.SeizeRoleOwnership(System.DirectoryServices.ActiveDirectory.AdamRole)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L268C13-L308C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L268C13-L308C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.AdamInstance.CheckReplicationConsistency", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L312C13-L320C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L312C13-L320C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.AdamInstance.GetReplicationCursors(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L324C13-L340C123" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L324C13-L340C123" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.AdamInstance.GetReplicationOperationInformation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L345C13-L354C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L345C13-L354C88" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.AdamInstance.GetReplicationNeighbors(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L359C13-L374C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L359C13-L374C80" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.AdamInstance.GetAllReplicationNeighbors", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L379C13-L388C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L379C13-L388C80" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.AdamInstance.GetReplicationConnectionFailures", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L393C13-L393C100" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L393C13-L393C100" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.AdamInstance.GetReplicationMetadata(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L398C13-L413C89" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L398C13-L413C89" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.AdamInstance.SyncReplicaFromServer(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L418C13-L436C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L418C13-L436C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.AdamInstance.TriggerSyncReplicaFromNeighbors(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L440C13-L452C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L440C13-L452C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.AdamInstance.SyncReplicaFromAllServers(System.String,System.DirectoryServices.ActiveDirectory.SyncFromAllServersOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L456C13-L468C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L456C13-L468C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.AdamInstance.Save", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L472C13-L491C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L472C13-L491C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.AdamInstance.ConfigurationSet", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L501C17-L507C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L501C17-L507C42" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.AdamInstance.HostName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L515C17-L521C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L515C17-L521C40" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.AdamInstance.LdapPort", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L529C17-L535C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L529C17-L535C40" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.AdamInstance.SslPort", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L543C17-L549C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L543C17-L549C39" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.AdamInstance.Roles", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L559C17-L595C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L559C17-L595C37" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.AdamInstance.DefaultPartition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L603C17-L626C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L603C17-L626C48" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.AdamInstance.IPAddress", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L666C17-L675C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L666C17-L675C33" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.AdamInstance.SiteName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L684C17-L697C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L684C17-L697C39" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.AdamInstance.SyncFromAllServersCallback", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L796C17-L799C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L796C17-L799C38" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.AdamInstance.InboundConnections", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L811C79-L811C108" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L811C79-L811C108" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.AdamInstance.OutboundConnections", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L813C80-L813C110" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs#L813C80-L813C110" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.AdamInstance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstance.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.AdamInstanceCollection.Contains(System.DirectoryServices.ActiveDirectory.AdamInstance)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstanceCollection.cs#L24C13-L37C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstanceCollection.cs#L24C13-L37C26" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.AdamInstanceCollection.IndexOf(System.DirectoryServices.ActiveDirectory.AdamInstance)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstanceCollection.cs#L42C13-L56C23" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstanceCollection.cs#L42C13-L56C23" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.AdamInstanceCollection.CopyTo(System.DirectoryServices.ActiveDirectory.AdamInstance[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstanceCollection.cs#L61C13-L62C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstanceCollection.cs#L61C13-L62C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.AdamInstanceCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstanceCollection.cs#L20C48-L20C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstanceCollection.cs#L20C48-L20C79" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.AdamInstanceCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstanceCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ADAMInstanceCollection.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ApplicationPartition.#ctor(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L28C9-L46C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L28C9-L46C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ApplicationPartition.#ctor(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L28C9-L55C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L28C9-L55C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ApplicationPartition.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L76C13-L102C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L76C13-L102C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ApplicationPartition.GetApplicationPartition(System.DirectoryServices.ActiveDirectory.DirectoryContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L110C13-L155C155" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L110C13-L155C155" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ApplicationPartition.FindByName(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L160C13-L347C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L160C13-L347C30" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ApplicationPartition.FindDirectoryServer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L352C13-L370C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L352C13-L370C36" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ApplicationPartition.FindDirectoryServer(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L375C13-L399C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L375C13-L399C36" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ApplicationPartition.FindDirectoryServer(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L404C13-L424C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L404C13-L424C36" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ApplicationPartition.FindDirectoryServer(System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L429C13-L454C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L429C13-L454C36" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ApplicationPartition.FindAllDirectoryServers", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L459C13-L476C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L459C13-L476C41" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ApplicationPartition.FindAllDirectoryServers(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L482C13-L504C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L482C13-L504C41" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ApplicationPartition.FindAllDiscoverableDirectoryServers", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L510C13-L522C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L510C13-L522C77" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ApplicationPartition.FindAllDiscoverableDirectoryServers(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L528C13-L545C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L528C13-L545C77" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ApplicationPartition.Delete", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L551C13-L575C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L551C13-L575C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ApplicationPartition.Save", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L579C13-L742C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L579C13-L742C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ApplicationPartition.GetDirectoryEntry", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L746C13-L753C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L746C13-L753C75" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ApplicationPartition.DirectoryServers", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L764C17-L783C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L764C17-L783C48" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ApplicationPartition.SecurityReferenceDomain", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L791C17-L822C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs#L791C17-L822C14" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ApplicationPartition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartition.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ApplicationPartitionCollection.Contains(System.DirectoryServices.ActiveDirectory.ApplicationPartition)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartitionCollection.cs#L24C13-L37C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartitionCollection.cs#L24C13-L37C26" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ApplicationPartitionCollection.IndexOf(System.DirectoryServices.ActiveDirectory.ApplicationPartition)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartitionCollection.cs#L42C13-L55C23" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartitionCollection.cs#L42C13-L55C23" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ApplicationPartitionCollection.CopyTo(System.DirectoryServices.ActiveDirectory.ApplicationPartition[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartitionCollection.cs#L60C13-L61C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartitionCollection.cs#L60C13-L61C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ApplicationPartitionCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartitionCollection.cs#L20C56-L20C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartitionCollection.cs#L20C56-L20C95" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ApplicationPartitionCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartitionCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ApplicationPartitionCollection.cs" }, { "Members": [ { "DocsId": "P:System.DirectoryServices.ActiveDirectory.AttributeMetadata.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/AttributeMetaData.cs#L55C30-L55C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/AttributeMetaData.cs#L55C30-L55C34" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.AttributeMetadata.Version", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/AttributeMetaData.cs#L57C30-L57C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/AttributeMetaData.cs#L57C30-L57C34" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.AttributeMetadata.LastOriginatingChangeTime", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/AttributeMetaData.cs#L59C53-L59C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/AttributeMetaData.cs#L59C53-L59C57" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.AttributeMetadata.LastOriginatingInvocationId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/AttributeMetaData.cs#L61C51-L61C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/AttributeMetaData.cs#L61C51-L61C55" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.AttributeMetadata.OriginatingChangeUsn", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/AttributeMetaData.cs#L63C44-L63C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/AttributeMetaData.cs#L63C44-L63C48" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.AttributeMetadata.LocalChangeUsn", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/AttributeMetaData.cs#L65C38-L65C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/AttributeMetaData.cs#L65C38-L65C42" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.AttributeMetadata.OriginatingServer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/AttributeMetaData.cs#L71C17-L88C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/AttributeMetaData.cs#L71C17-L88C47" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.AttributeMetadata", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/AttributeMetaData.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/AttributeMetaData.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.AttributeMetadataCollection.Contains(System.DirectoryServices.ActiveDirectory.AttributeMetadata)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/AttributeMetadataCollection.cs#L16C13-L29C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/AttributeMetadataCollection.cs#L16C13-L29C26" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.AttributeMetadataCollection.IndexOf(System.DirectoryServices.ActiveDirectory.AttributeMetadata)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/AttributeMetadataCollection.cs#L34C13-L46C23" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/AttributeMetadataCollection.cs#L34C13-L46C23" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.AttributeMetadataCollection.CopyTo(System.DirectoryServices.ActiveDirectory.AttributeMetadata[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/AttributeMetadataCollection.cs#L51C13-L52C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/AttributeMetadataCollection.cs#L51C13-L52C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.AttributeMetadataCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/AttributeMetadataCollection.cs#L12C53-L12C89" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/AttributeMetadataCollection.cs#L12C53-L12C89" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.AttributeMetadataCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/AttributeMetadataCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/AttributeMetadataCollection.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ConfigurationSet.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L48C34-L48C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L48C34-L48C47" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ConfigurationSet.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L53C13-L67C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L53C13-L67C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ConfigurationSet.GetConfigurationSet(System.DirectoryServices.ActiveDirectory.DirectoryContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L75C13-L151C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L75C13-L151C84" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ConfigurationSet.FindAdamInstance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L156C13-L157C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L156C13-L157C68" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ConfigurationSet.FindAdamInstance(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L162C13-L169C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L162C13-L169C77" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ConfigurationSet.FindAdamInstance(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L174C13-L185C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L174C13-L185C81" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ConfigurationSet.FindAllAdamInstances", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L190C13-L192C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L190C13-L192C60" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ConfigurationSet.FindAllAdamInstances(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L197C13-L204C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L197C13-L204C69" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ConfigurationSet.FindAllAdamInstances(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L209C13-L220C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L209C13-L220C73" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ConfigurationSet.GetDirectoryEntry", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L225C13-L226C110" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L225C13-L226C110" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ConfigurationSet.GetSecurityLevel", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L231C13-L237C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L231C13-L237C41" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ConfigurationSet.SetSecurityLevel(System.DirectoryServices.ActiveDirectory.ReplicationSecurityLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L242C13-L261C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L242C13-L261C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ConfigurationSet.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L263C46-L263C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L263C46-L263C50" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ConfigurationSet.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L273C17-L274C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L273C17-L274C39" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ConfigurationSet.Sites", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L282C17-L283C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L282C17-L283C80" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ConfigurationSet.AdamInstances", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L291C17-L292C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L291C17-L292C72" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ConfigurationSet.ApplicationPartitions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L300C17-L301C120" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L300C17-L301C120" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ConfigurationSet.Schema", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L309C17-L321C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L309C17-L321C38" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ConfigurationSet.SchemaRoleOwner", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L329C17-L330C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L329C17-L330C85" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ConfigurationSet.NamingRoleOwner", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L338C17-L339C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs#L338C17-L339C85" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ConfigurationSet", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ConfigSet.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.ActiveDirectory.DirectoryContextType.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryContext.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryContext.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.DirectoryContextType.Domain", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryContext.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryContext.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.DirectoryContextType.Forest", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryContext.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryContext.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.DirectoryContextType.DirectoryServer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryContext.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryContext.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.DirectoryContextType.ConfigurationSet", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryContext.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryContext.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.DirectoryContextType.ApplicationPartition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryContext.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryContext.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.DirectoryContextType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryContext.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryContext.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryContext.#ctor(System.DirectoryServices.ActiveDirectory.DirectoryContextType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryContext.cs#L103C9-L115C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryContext.cs#L103C9-L115C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryContext.#ctor(System.DirectoryServices.ActiveDirectory.DirectoryContextType,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryContext.cs#L117C9-L135C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryContext.cs#L117C9-L135C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryContext.#ctor(System.DirectoryServices.ActiveDirectory.DirectoryContextType,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryContext.cs#L137C9-L149C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryContext.cs#L137C9-L149C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryContext.#ctor(System.DirectoryServices.ActiveDirectory.DirectoryContextType,System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryContext.cs#L151C9-L169C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryContext.cs#L151C9-L169C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.DirectoryContext.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryContext.cs#L175C32-L175C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryContext.cs#L175C32-L175C37" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.DirectoryContext.UserName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryContext.cs#L177C36-L177C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryContext.cs#L177C36-L177C80" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.DirectoryContext.ContextType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryContext.cs#L184C52-L184C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryContext.cs#L184C52-L184C64" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.DirectoryContext", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryContext.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryContext.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryServer.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs#L24C9-L37C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs#L24C9-L37C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryServer.Finalize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs#L41C31-L41C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs#L41C31-L16707566C0" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryServer.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs#L45C13-L51C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs#L45C13-L51C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryServer.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs#L56C13-L70C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs#L56C13-L70C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryServer.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs#L74C46-L74C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs#L74C46-L74C50" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryServer.MoveToAnotherSite(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs#L78C13-L144C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs#L78C13-L144C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryServer.GetDirectoryEntry", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs#L148C13-L150C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs#L148C13-L150C81" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryServer.CheckReplicationConsistency", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryServer.GetReplicationCursors(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryServer.GetReplicationOperationInformation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryServer.GetReplicationNeighbors(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryServer.GetAllReplicationNeighbors", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryServer.GetReplicationConnectionFailures", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryServer.GetReplicationMetadata(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryServer.SyncReplicaFromServer(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryServer.TriggerSyncReplicaFromNeighbors(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryServer.SyncReplicaFromAllServers(System.String,System.DirectoryServices.ActiveDirectory.SyncFromAllServersOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.DirectoryServer.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs#L185C17-L186C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs#L185C17-L186C36" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.DirectoryServer.Partitions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs#L194C17-L195C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs#L194C17-L195C91" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.DirectoryServer.IPAddress", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.DirectoryServer.SiteName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.DirectoryServer.SyncFromAllServersCallback", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.DirectoryServer.InboundConnections", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.DirectoryServer.OutboundConnections", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.DirectoryServer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServer.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryServerCollection.Add(System.DirectoryServices.ActiveDirectory.DirectoryServer)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServerCollection.cs#L65C13-L105C116" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServerCollection.cs#L65C13-L105C116" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryServerCollection.AddRange(System.DirectoryServices.ActiveDirectory.DirectoryServer[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServerCollection.cs#L111C13-L124C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServerCollection.cs#L111C13-L124C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryServerCollection.Contains(System.DirectoryServices.ActiveDirectory.DirectoryServer)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServerCollection.cs#L128C13-L140C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServerCollection.cs#L128C13-L140C26" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryServerCollection.CopyTo(System.DirectoryServices.ActiveDirectory.DirectoryServer[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServerCollection.cs#L145C13-L146C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServerCollection.cs#L145C13-L146C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryServerCollection.IndexOf(System.DirectoryServices.ActiveDirectory.DirectoryServer)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServerCollection.cs#L150C13-L162C23" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServerCollection.cs#L150C13-L162C23" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryServerCollection.Insert(System.Int32,System.DirectoryServices.ActiveDirectory.DirectoryServer)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServerCollection.cs#L167C13-L207C100" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServerCollection.cs#L167C13-L207C100" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryServerCollection.Remove(System.DirectoryServices.ActiveDirectory.DirectoryServer)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServerCollection.cs#L213C13-L228C101" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServerCollection.cs#L213C13-L228C101" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryServerCollection.OnClear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServerCollection.cs#L233C13-L241C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServerCollection.cs#L233C13-L241C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryServerCollection.OnClearComplete", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServerCollection.cs#L246C13-L270C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServerCollection.cs#L246C13-L270C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryServerCollection.OnInsertComplete(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServerCollection.cs#L276C13-L317C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServerCollection.cs#L276C13-L317C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryServerCollection.OnRemoveComplete(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServerCollection.cs#L323C13-L363C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServerCollection.cs#L323C13-L363C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryServerCollection.OnSetComplete(System.Int32,System.Object,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServerCollection.cs#L369C13-L371C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServerCollection.cs#L369C13-L371C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DirectoryServerCollection.OnValidate(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServerCollection.cs#L375C13-L397C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServerCollection.cs#L375C13-L397C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.DirectoryServerCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServerCollection.cs#L48C20-L48C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServerCollection.cs#L48C20-L48C54" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.DirectoryServerCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServerCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DirectoryServerCollection.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.ActiveDirectory.DomainMode.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.DomainMode.Unknown", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.DomainMode.Windows2000MixedDomain", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.DomainMode.Windows2000NativeDomain", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.DomainMode.Windows2003InterimDomain", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.DomainMode.Windows2003Domain", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.DomainMode.Windows2008Domain", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.DomainMode.Windows2008R2Domain", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.DomainMode.Windows8Domain", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.DomainMode.Windows2012R2Domain", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.DomainMode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Domain.GetDomain(System.DirectoryServices.ActiveDirectory.DirectoryContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L64C13-L134C100" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L64C13-L134C100" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Domain.GetComputerDomain", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L139C13-L145C108" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L139C13-L145C108" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Domain.RaiseDomainFunctionalityLevel(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L151C13-L253C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L151C13-L253C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Domain.RaiseDomainFunctionality(System.DirectoryServices.ActiveDirectory.DomainMode)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L258C13-L408C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L258C13-L408C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Domain.FindDomainController", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L412C13-L414C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L412C13-L414C77" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Domain.FindDomainController(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L419C13-L426C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L419C13-L426C81" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Domain.FindDomainController(System.DirectoryServices.ActiveDirectory.LocatorOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L431C13-L433C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L431C13-L433C80" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Domain.FindDomainController(System.String,System.DirectoryServices.ActiveDirectory.LocatorOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L438C13-L445C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L438C13-L445C84" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Domain.FindAllDomainControllers", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L450C13-L452C101" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L450C13-L452C101" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Domain.FindAllDomainControllers(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L457C13-L464C105" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L457C13-L464C105" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Domain.FindAllDiscoverableDomainControllers", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L469C13-L472C120" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L469C13-L472C120" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Domain.FindAllDiscoverableDomainControllers(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L477C13-L491C124" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L477C13-L491C124" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Domain.GetDirectoryEntry", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L496C13-L497C140" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L496C13-L497C140" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Domain.GetAllTrustRelationships", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L502C13-L506C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L502C13-L506C31" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Domain.GetTrustRelationship(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L511C13-L529C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L511C13-L529C38" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Domain.GetSelectiveAuthenticationStatus(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L535C13-L543C168" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L535C13-L543C168" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Domain.SetSelectiveAuthenticationStatus(System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L548C13-L557C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L548C13-L557C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Domain.GetSidFilteringStatus(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L561C13-L569C168" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L561C13-L569C168" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Domain.SetSidFilteringStatus(System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L574C13-L583C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L574C13-L583C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Domain.DeleteLocalSideOfTrustRelationship(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L587C13-L597C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L587C13-L597C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Domain.DeleteTrustRelationship(System.DirectoryServices.ActiveDirectory.Domain)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L601C13-L611C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L601C13-L611C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Domain.VerifyOutboundTrustRelationship(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L615C13-L624C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L615C13-L624C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Domain.VerifyTrustRelationship(System.DirectoryServices.ActiveDirectory.Domain,System.DirectoryServices.ActiveDirectory.TrustDirection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L628C13-L661C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L628C13-L661C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Domain.CreateLocalSideOfTrustRelationship(System.String,System.DirectoryServices.ActiveDirectory.TrustDirection,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L665C13-L688C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L665C13-L688C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Domain.CreateTrustRelationship(System.DirectoryServices.ActiveDirectory.Domain,System.DirectoryServices.ActiveDirectory.TrustDirection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L692C13-L713C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L692C13-L713C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Domain.UpdateLocalSideOfTrustRelationship(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L717C13-L732C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L717C13-L732C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Domain.UpdateLocalSideOfTrustRelationship(System.String,System.DirectoryServices.ActiveDirectory.TrustDirection,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L736C13-L754C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L736C13-L754C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Domain.UpdateTrustRelationship(System.DirectoryServices.ActiveDirectory.Domain,System.DirectoryServices.ActiveDirectory.TrustDirection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L758C13-L779C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L758C13-L779C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Domain.RepairTrustRelationship(System.DirectoryServices.ActiveDirectory.Domain)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L783C13-L821C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L783C13-L821C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Domain.GetCurrentDomain", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L825C13-L825C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L825C13-L825C88" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.Domain.Forest", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L836C17-L846C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L836C17-L846C38" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.Domain.DomainControllers", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L854C17-L855C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L854C17-L855C80" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.Domain.Children", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L863C17-L864C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L863C17-L864C84" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.Domain.DomainMode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L872C17-L877C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L872C17-L877C43" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.Domain.DomainModeLevel", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L885C17-L890C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L885C17-L890C41" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.Domain.Parent", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L898C17-L904C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L898C17-L904C38" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.Domain.PdcRoleOwner", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L912C17-L914C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L912C17-L914C44" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.Domain.RidRoleOwner", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L922C17-L923C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L922C17-L923C90" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.Domain.InfrastructureRoleOwner", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L931C17-L932C112" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs#L931C17-L932C112" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.Domain", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Domain.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DomainCollection.Contains(System.DirectoryServices.ActiveDirectory.Domain)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainCollection.cs#L27C13-L38C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainCollection.cs#L27C13-L38C26" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DomainCollection.IndexOf(System.DirectoryServices.ActiveDirectory.Domain)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainCollection.cs#L43C13-L54C23" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainCollection.cs#L43C13-L54C23" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DomainCollection.CopyTo(System.DirectoryServices.ActiveDirectory.Domain[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainCollection.cs#L59C13-L60C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainCollection.cs#L59C13-L60C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.DomainCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainCollection.cs#L23C42-L23C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainCollection.cs#L23C42-L23C67" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.DomainCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainCollection.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.ActiveDirectory.SyncFromAllServersOptions.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.SyncFromAllServersOptions.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.SyncFromAllServersOptions.AbortIfServerUnavailable", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.SyncFromAllServersOptions.SyncAdjacentServerOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.SyncFromAllServersOptions.CheckServerAlivenessOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.SyncFromAllServersOptions.SkipInitialCheck", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.SyncFromAllServersOptions.PushChangeOutward", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.SyncFromAllServersOptions.CrossSite", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.SyncFromAllServersOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.ActiveDirectory.SyncFromAllServersEvent.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.SyncFromAllServersEvent.Error", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.SyncFromAllServersEvent.SyncStarted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.SyncFromAllServersEvent.SyncCompleted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.SyncFromAllServersEvent.Finished", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.SyncFromAllServersEvent", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.ActiveDirectory.SyncFromAllServersErrorCategory.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.SyncFromAllServersErrorCategory.ErrorContactingServer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.SyncFromAllServersErrorCategory.ErrorReplicating", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.SyncFromAllServersErrorCategory.ServerUnreachable", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.SyncFromAllServersErrorCategory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.SyncUpdateCallback.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.SyncUpdateCallback.Invoke(System.DirectoryServices.ActiveDirectory.SyncFromAllServersEvent,System.String,System.String,System.DirectoryServices.ActiveDirectory.SyncFromAllServersOperationException)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.SyncUpdateCallback.BeginInvoke(System.DirectoryServices.ActiveDirectory.SyncFromAllServersEvent,System.String,System.String,System.DirectoryServices.ActiveDirectory.SyncFromAllServersOperationException,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.SyncUpdateCallback.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.SyncUpdateCallback", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DomainController.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L42C9-L67C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L42C9-L67C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DomainController.Finalize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L95C32-L95C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L95C32-L16707566C0" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DomainController.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L100C13-L116C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L100C13-L116C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DomainController.GetDomainController(System.DirectoryServices.ActiveDirectory.DirectoryContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L123C13-L171C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L123C13-L171C80" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DomainController.FindOne(System.DirectoryServices.ActiveDirectory.DirectoryContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L176C13-L186C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L176C13-L186C70" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DomainController.FindOne(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L191C13-L206C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L191C13-L206C74" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DomainController.FindOne(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.DirectoryServices.ActiveDirectory.LocatorOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L211C13-L221C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L211C13-L221C73" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DomainController.FindOne(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String,System.DirectoryServices.ActiveDirectory.LocatorOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L226C13-L241C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L226C13-L241C77" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DomainController.FindAll(System.DirectoryServices.ActiveDirectory.DirectoryContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L246C13-L259C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L246C13-L259C94" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DomainController.FindAll(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L264C13-L282C98" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L264C13-L282C98" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DomainController.EnableGlobalCatalog", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L287C13-L307C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L287C13-L307C53" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DomainController.IsGlobalCatalog", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L312C13-L338C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L312C13-L338C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DomainController.TransferRoleOwnership(System.DirectoryServices.ActiveDirectory.ActiveDirectoryRole)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L342C13-L363C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L342C13-L363C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DomainController.SeizeRoleOwnership(System.DirectoryServices.ActiveDirectory.ActiveDirectoryRole)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L369C13-L437C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L369C13-L437C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DomainController.GetDirectorySearcher", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L441C13-L443C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L441C13-L443C51" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DomainController.CheckReplicationConsistency", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L448C13-L456C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L448C13-L456C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DomainController.GetReplicationCursors(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L460C13-L476C119" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L460C13-L476C119" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DomainController.GetReplicationOperationInformation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L481C13-L490C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L481C13-L490C86" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DomainController.GetReplicationNeighbors(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L495C13-L510C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L495C13-L510C78" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DomainController.GetAllReplicationNeighbors", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L515C13-L524C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L515C13-L524C78" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DomainController.GetReplicationConnectionFailures", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L529C13-L529C100" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L529C13-L529C100" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DomainController.GetReplicationMetadata(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L534C13-L549C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L534C13-L549C87" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DomainController.SyncReplicaFromServer(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L554C13-L572C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L554C13-L572C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DomainController.TriggerSyncReplicaFromNeighbors(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L576C13-L588C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L576C13-L588C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DomainController.SyncReplicaFromAllServers(System.String,System.DirectoryServices.ActiveDirectory.SyncFromAllServersOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L592C13-L604C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L592C13-L604C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.DomainController.Forest", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L613C17-L619C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L613C17-L619C39" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.DomainController.CurrentTime", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L627C17-L640C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L627C17-L640C53" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.DomainController.HighestCommittedUsn", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L648C17-L661C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L648C17-L661C94" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.DomainController.OSVersion", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L669C17-L677C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L669C17-L677C41" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.DomainController.Roles", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L711C17-L712C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L711C17-L712C87" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.DomainController.Domain", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L720C17-L739C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L720C17-L739C38" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.DomainController.IPAddress", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L747C17-L756C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L747C17-L756C33" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.DomainController.SiteName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L765C17-L775C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L765C17-L775C39" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.DomainController.SyncFromAllServersCallback", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L868C17-L871C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L868C17-L871C37" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.DomainController.InboundConnections", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L883C79-L883C108" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L883C79-L883C108" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.DomainController.OutboundConnections", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L885C80-L885C110" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs#L885C80-L885C110" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.DomainController", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainController.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DomainControllerCollection.Contains(System.DirectoryServices.ActiveDirectory.DomainController)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainControllerCollection.cs#L24C13-L35C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainControllerCollection.cs#L24C13-L35C26" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DomainControllerCollection.IndexOf(System.DirectoryServices.ActiveDirectory.DomainController)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainControllerCollection.cs#L40C13-L51C23" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainControllerCollection.cs#L40C13-L51C23" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.DomainControllerCollection.CopyTo(System.DirectoryServices.ActiveDirectory.DomainController[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainControllerCollection.cs#L56C13-L57C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainControllerCollection.cs#L56C13-L57C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.DomainControllerCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainControllerCollection.cs#L20C52-L20C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainControllerCollection.cs#L20C52-L20C87" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.DomainControllerCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainControllerCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/DomainControllerCollection.cs" }, { "Members": [ { "DocsId": "P:System.DirectoryServices.ActiveDirectory.SyncFromAllServersErrorInformation.ErrorCategory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L23C64-L23C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L23C64-L23C68" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.SyncFromAllServersErrorInformation.ErrorCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L25C32-L25C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L25C32-L25C36" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.SyncFromAllServersErrorInformation.ErrorMessage", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L27C38-L27C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L27C38-L27C42" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.SyncFromAllServersErrorInformation.TargetServer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L29C39-L29C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L29C39-L29C43" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.SyncFromAllServersErrorInformation.SourceServer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L31C39-L31C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L31C39-L31C43" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.SyncFromAllServersErrorInformation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryObjectNotFoundException.#ctor(System.String,System.Type,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L38C100-L42C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L38C100-L42C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryObjectNotFoundException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L44C92-L44C116" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L44C92-L44C116" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryObjectNotFoundException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L46C74-L46C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L46C74-L46C91" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryObjectNotFoundException.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L48C59-L48C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L48C59-L48C69" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryObjectNotFoundException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L54C110-L56C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L54C110-L56C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryObjectNotFoundException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L68C13-L69C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L68C13-L69C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectoryObjectNotFoundException.Type", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L58C29-L58C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L58C29-L58C33" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectoryObjectNotFoundException.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L60C31-L60C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L60C31-L60C35" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectoryObjectNotFoundException.Message", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L75C17-L81C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L75C17-L81C26" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ActiveDirectoryObjectNotFoundException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryOperationException.#ctor(System.String,System.Exception,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L90C102-L93C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L90C102-L93C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryOperationException.#ctor(System.String,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L95C84-L98C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L95C84-L98C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryOperationException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L100C87-L100C134" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L100C87-L100C134" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryOperationException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L102C69-L102C109" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L102C69-L102C109" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryOperationException.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L104C54-L104C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L104C54-L104C83" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryOperationException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L110C105-L112C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L110C105-L112C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryOperationException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L122C13-L123C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L122C13-L123C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectoryOperationException.ErrorCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L114C32-L114C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L114C32-L114C36" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ActiveDirectoryOperationException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryServerDownException.#ctor(System.String,System.Exception,System.Int32,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L130C117-L134C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L130C117-L134C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryServerDownException.#ctor(System.String,System.Int32,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L136C99-L140C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L136C99-L140C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryServerDownException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L142C88-L142C112" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L142C88-L142C112" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryServerDownException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L144C70-L144C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L144C70-L144C87" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryServerDownException.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L146C55-L146C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L146C55-L146C65" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryServerDownException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L152C106-L154C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L152C106-L154C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryServerDownException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L179C13-L180C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L179C13-L180C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectoryServerDownException.ErrorCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L156C32-L156C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L156C32-L156C36" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectoryServerDownException.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L158C31-L158C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L158C31-L158C35" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectoryServerDownException.Message", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L164C17-L169C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L164C17-L169C30" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ActiveDirectoryServerDownException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryObjectExistsException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L187C90-L187C114" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L187C90-L187C114" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryObjectExistsException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L189C72-L189C89" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L189C72-L189C89" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryObjectExistsException.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L191C57-L191C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L191C57-L191C67" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryObjectExistsException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L197C108-L199C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L197C108-L199C10" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ActiveDirectoryObjectExistsException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.SyncFromAllServersOperationException.#ctor(System.String,System.Exception,System.DirectoryServices.ActiveDirectory.SyncFromAllServersErrorInformation[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L208C136-L211C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L208C136-L211C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.SyncFromAllServersOperationException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L213C90-L213C137" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L213C90-L213C137" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.SyncFromAllServersOperationException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L215C72-L215C112" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L215C72-L215C112" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.SyncFromAllServersOperationException.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L217C57-L217C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L217C57-L217C86" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.SyncFromAllServersOperationException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L223C108-L225C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L223C108-L225C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.SyncFromAllServersOperationException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L248C13-L249C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L248C13-L249C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.SyncFromAllServersOperationException.ErrorInformation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L231C17-L238C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L231C17-L238C34" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.SyncFromAllServersOperationException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ForestTrustCollisionException.#ctor(System.String,System.Exception,System.DirectoryServices.ActiveDirectory.ForestTrustRelationshipCollisionCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L275C82-L259C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L275C82-L259C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ForestTrustCollisionException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L275C82-L261C134" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L275C82-L261C134" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ForestTrustCollisionException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L275C82-L263C109" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L275C82-L263C109" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ForestTrustCollisionException.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L275C82-L265C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L275C82-L265C83" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ForestTrustCollisionException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L275C82-L273C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L275C82-L273C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ForestTrustCollisionException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L283C13-L284C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L283C13-L284C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ForestTrustCollisionException.Collisions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L275C73-L275C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs#L275C73-L275C77" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ForestTrustCollisionException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Exception.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ForestMode.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ForestMode.Unknown", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ForestMode.Windows2000Forest", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ForestMode.Windows2003InterimForest", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ForestMode.Windows2003Forest", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ForestMode.Windows2008Forest", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ForestMode.Windows2008R2Forest", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ForestMode.Windows8Forest", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ForestMode.Windows2012R2Forest", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ForestMode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Forest.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L60C34-L60C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L60C34-L60C47" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Forest.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L65C13-L79C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L65C13-L79C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Forest.GetForest(System.DirectoryServices.ActiveDirectory.DirectoryContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L86C13-L161C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L86C13-L161C97" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Forest.RaiseForestFunctionalityLevel(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L166C13-L209C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L166C13-L209C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Forest.RaiseForestFunctionality(System.DirectoryServices.ActiveDirectory.ForestMode)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L213C13-L227C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L213C13-L227C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Forest.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L229C46-L229C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L229C46-L229C50" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Forest.FindGlobalCatalog", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L233C13-L235C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L233C13-L235C75" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Forest.FindGlobalCatalog(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L240C13-L247C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L240C13-L247C79" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Forest.FindGlobalCatalog(System.DirectoryServices.ActiveDirectory.LocatorOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L252C13-L254C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L252C13-L254C78" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Forest.FindGlobalCatalog(System.String,System.DirectoryServices.ActiveDirectory.LocatorOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L259C13-L266C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L259C13-L266C82" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Forest.FindAllGlobalCatalogs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L271C13-L273C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L271C13-L273C66" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Forest.FindAllGlobalCatalogs(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L278C13-L285C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L278C13-L285C70" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Forest.FindAllDiscoverableGlobalCatalogs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L290C13-L293C112" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L290C13-L293C112" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Forest.FindAllDiscoverableGlobalCatalogs(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L298C13-L312C116" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L298C13-L312C116" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Forest.GetAllTrustRelationships", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L317C13-L319C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L317C13-L319C42" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Forest.GetTrustRelationship(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L324C13-L341C173" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L324C13-L341C173" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Forest.GetSelectiveAuthenticationStatus(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L347C13-L355C168" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L347C13-L355C168" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Forest.SetSelectiveAuthenticationStatus(System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L360C13-L369C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L360C13-L369C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Forest.GetSidFilteringStatus(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L373C13-L381C167" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L373C13-L381C167" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Forest.SetSidFilteringStatus(System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L386C13-L395C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L386C13-L395C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Forest.DeleteLocalSideOfTrustRelationship(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L399C13-L409C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L399C13-L409C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Forest.DeleteTrustRelationship(System.DirectoryServices.ActiveDirectory.Forest)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L413C13-L423C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L413C13-L423C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Forest.VerifyOutboundTrustRelationship(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L427C13-L436C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L427C13-L436C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Forest.VerifyTrustRelationship(System.DirectoryServices.ActiveDirectory.Forest,System.DirectoryServices.ActiveDirectory.TrustDirection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L440C13-L473C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L440C13-L473C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Forest.CreateLocalSideOfTrustRelationship(System.String,System.DirectoryServices.ActiveDirectory.TrustDirection,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L477C13-L500C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L477C13-L500C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Forest.CreateTrustRelationship(System.DirectoryServices.ActiveDirectory.Forest,System.DirectoryServices.ActiveDirectory.TrustDirection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L504C13-L525C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L504C13-L525C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Forest.UpdateLocalSideOfTrustRelationship(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L529C13-L544C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L529C13-L544C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Forest.UpdateLocalSideOfTrustRelationship(System.String,System.DirectoryServices.ActiveDirectory.TrustDirection,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L548C13-L566C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L548C13-L566C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Forest.UpdateTrustRelationship(System.DirectoryServices.ActiveDirectory.Forest,System.DirectoryServices.ActiveDirectory.TrustDirection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L570C13-L591C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L570C13-L591C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Forest.RepairTrustRelationship(System.DirectoryServices.ActiveDirectory.Forest)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L595C13-L630C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L595C13-L630C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.Forest.GetCurrentForest", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L632C52-L632C112" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L632C52-L632C112" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.Forest.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L642C17-L643C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L642C17-L643C39" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.Forest.Sites", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L651C17-L652C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L651C17-L652C80" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.Forest.Domains", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L660C17-L661C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L660C17-L661C78" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.Forest.GlobalCatalogs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L669C17-L670C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L669C17-L670C74" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.Forest.ApplicationPartitions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L678C17-L679C120" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L678C17-L679C120" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.Forest.ForestModeLevel", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L687C17-L692C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L687C17-L692C41" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.Forest.ForestMode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L700C17-L707C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L700C17-L707C43" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.Forest.RootDomain", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L715C17-L723C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L715C17-L723C42" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.Forest.Schema", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L731C17-L743C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L731C17-L743C38" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.Forest.SchemaRoleOwner", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L751C17-L752C96" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L751C17-L752C96" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.Forest.NamingRoleOwner", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L760C17-L761C96" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs#L760C17-L761C96" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.Forest", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/Forest.cs" }, { "Members": [ { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ForestTrustRelationshipCollision.CollisionType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustCollision.cs#L18C57-L18C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustCollision.cs#L18C57-L18C61" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ForestTrustRelationshipCollision.TopLevelNameCollisionOption", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustCollision.cs#L20C75-L20C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustCollision.cs#L20C75-L20C79" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ForestTrustRelationshipCollision.DomainCollisionOption", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustCollision.cs#L22C63-L22C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustCollision.cs#L22C63-L22C67" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ForestTrustRelationshipCollision.CollisionRecord", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustCollision.cs#L24C41-L24C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustCollision.cs#L24C41-L24C45" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ForestTrustRelationshipCollision", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustCollision.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustCollision.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ForestTrustRelationshipCollisionCollection.Contains(System.DirectoryServices.ActiveDirectory.ForestTrustRelationshipCollision)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustCollision.cs#L38C13-L41C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustCollision.cs#L38C13-L41C50" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ForestTrustRelationshipCollisionCollection.IndexOf(System.DirectoryServices.ActiveDirectory.ForestTrustRelationshipCollision)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustCollision.cs#L46C13-L49C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustCollision.cs#L46C13-L49C49" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ForestTrustRelationshipCollisionCollection.CopyTo(System.DirectoryServices.ActiveDirectory.ForestTrustRelationshipCollision[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustCollision.cs#L54C13-L55C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustCollision.cs#L54C13-L55C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ForestTrustRelationshipCollisionCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustCollision.cs#L33C20-L33C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustCollision.cs#L33C20-L33C71" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ForestTrustRelationshipCollisionCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustCollision.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustCollision.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ForestTrustDomainInfoCollection.Contains(System.DirectoryServices.ActiveDirectory.ForestTrustDomainInformation)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInfoCollection.cs#L19C13-L22C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInfoCollection.cs#L19C13-L22C52" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ForestTrustDomainInfoCollection.IndexOf(System.DirectoryServices.ActiveDirectory.ForestTrustDomainInformation)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInfoCollection.cs#L27C13-L30C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInfoCollection.cs#L27C13-L30C51" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ForestTrustDomainInfoCollection.CopyTo(System.DirectoryServices.ActiveDirectory.ForestTrustDomainInformation[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInfoCollection.cs#L35C13-L36C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInfoCollection.cs#L35C13-L36C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ForestTrustDomainInfoCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInfoCollection.cs#L14C20-L14C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInfoCollection.cs#L14C20-L14C67" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ForestTrustDomainInfoCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInfoCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInfoCollection.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ForestTrustDomainStatus.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInformation.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInformation.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ForestTrustDomainStatus.Enabled", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInformation.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInformation.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ForestTrustDomainStatus.SidAdminDisabled", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInformation.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInformation.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ForestTrustDomainStatus.SidConflictDisabled", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInformation.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInformation.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ForestTrustDomainStatus.NetBiosNameAdminDisabled", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInformation.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInformation.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ForestTrustDomainStatus.NetBiosNameConflictDisabled", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInformation.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInformation.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ForestTrustDomainStatus", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInformation.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInformation.cs" }, { "Members": [ { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ForestTrustDomainInformation.DnsName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInformation.cs#L40C33-L40C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInformation.cs#L40C33-L40C37" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ForestTrustDomainInformation.NetBiosName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInformation.cs#L42C37-L42C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInformation.cs#L42C37-L42C41" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ForestTrustDomainInformation.DomainSid", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInformation.cs#L44C35-L44C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInformation.cs#L44C35-L44C39" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ForestTrustDomainInformation.Status", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInformation.cs#L48C20-L48C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInformation.cs#L48C20-L48C27" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ForestTrustDomainInformation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInformation.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustDomainInformation.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ForestTrustRelationshipInformation.Save", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustRelationshipInformation.cs#L82C13-L315C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustRelationshipInformation.cs#L82C13-L315C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ForestTrustRelationshipInformation.TopLevelNames", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustRelationshipInformation.cs#L54C17-L56C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustRelationshipInformation.cs#L54C17-L56C39" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ForestTrustRelationshipInformation.ExcludedTopLevelNames", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustRelationshipInformation.cs#L64C17-L66C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustRelationshipInformation.cs#L64C17-L66C39" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ForestTrustRelationshipInformation.TrustedDomainInformation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustRelationshipInformation.cs#L74C17-L76C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustRelationshipInformation.cs#L74C17-L76C36" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ForestTrustRelationshipInformation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustRelationshipInformation.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ForestTrustRelationshipInformation.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.GlobalCatalog.GetGlobalCatalog(System.DirectoryServices.ActiveDirectory.DirectoryContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalog.cs#L30C13-L86C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalog.cs#L30C13-L86C77" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.GlobalCatalog.FindOne(System.DirectoryServices.ActiveDirectory.DirectoryContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalog.cs#L91C13-L101C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalog.cs#L91C13-L101C70" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.GlobalCatalog.FindOne(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalog.cs#L106C13-L121C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalog.cs#L106C13-L121C74" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.GlobalCatalog.FindOne(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.DirectoryServices.ActiveDirectory.LocatorOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalog.cs#L126C13-L136C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalog.cs#L126C13-L136C73" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.GlobalCatalog.FindOne(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String,System.DirectoryServices.ActiveDirectory.LocatorOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalog.cs#L141C13-L156C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalog.cs#L141C13-L156C77" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.GlobalCatalog.FindAll(System.DirectoryServices.ActiveDirectory.DirectoryContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalog.cs#L161C13-L174C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalog.cs#L161C13-L174C51" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.GlobalCatalog.FindAll(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalog.cs#L179C13-L197C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalog.cs#L179C13-L197C55" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.GlobalCatalog.EnableGlobalCatalog", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalog.cs#L202C13-L203C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalog.cs#L202C13-L203C77" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.GlobalCatalog.DisableGlobalCatalog", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalog.cs#L208C13-L236C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalog.cs#L208C13-L236C56" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.GlobalCatalog.IsGlobalCatalog", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalog.cs#L241C13-L245C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalog.cs#L241C13-L245C25" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.GlobalCatalog.FindAllProperties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalog.cs#L250C13-L270C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalog.cs#L250C13-L270C77" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.GlobalCatalog.GetDirectorySearcher", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalog.cs#L275C13-L278C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalog.cs#L275C13-L278C51" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.GlobalCatalog", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalog.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalog.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.GlobalCatalogCollection.Contains(System.DirectoryServices.ActiveDirectory.GlobalCatalog)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalogCollection.cs#L24C13-L35C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalogCollection.cs#L24C13-L35C26" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.GlobalCatalogCollection.IndexOf(System.DirectoryServices.ActiveDirectory.GlobalCatalog)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalogCollection.cs#L40C13-L51C23" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalogCollection.cs#L40C13-L51C23" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.GlobalCatalogCollection.CopyTo(System.DirectoryServices.ActiveDirectory.GlobalCatalog[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalogCollection.cs#L56C13-L57C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalogCollection.cs#L56C13-L57C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.GlobalCatalogCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalogCollection.cs#L20C49-L20C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalogCollection.cs#L20C49-L20C81" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.GlobalCatalogCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalogCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/GlobalCatalogCollection.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.ActiveDirectory.LocatorOptions.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/LocatorFlag.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/LocatorFlag.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.LocatorOptions.ForceRediscovery", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/LocatorFlag.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/LocatorFlag.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.LocatorOptions.KdcRequired", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/LocatorFlag.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/LocatorFlag.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.LocatorOptions.TimeServerRequired", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/LocatorFlag.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/LocatorFlag.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.LocatorOptions.WriteableRequired", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/LocatorFlag.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/LocatorFlag.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.LocatorOptions.AvoidSelf", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/LocatorFlag.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/LocatorFlag.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.LocatorOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/LocatorFlag.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/LocatorFlag.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReadOnlyActiveDirectorySchemaClassCollection.Contains(System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyActiveDirectorySchemaClassCollection.cs#L27C13-L38C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyActiveDirectorySchemaClassCollection.cs#L27C13-L38C26" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReadOnlyActiveDirectorySchemaClassCollection.IndexOf(System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyActiveDirectorySchemaClassCollection.cs#L43C13-L54C23" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyActiveDirectorySchemaClassCollection.cs#L43C13-L54C23" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReadOnlyActiveDirectorySchemaClassCollection.CopyTo(System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyActiveDirectorySchemaClassCollection.cs#L59C13-L60C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyActiveDirectorySchemaClassCollection.cs#L59C13-L60C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReadOnlyActiveDirectorySchemaClassCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyActiveDirectorySchemaClassCollection.cs#L22C20-L22C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyActiveDirectorySchemaClassCollection.cs#L22C20-L22C65" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ReadOnlyActiveDirectorySchemaClassCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyActiveDirectorySchemaClassCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyActiveDirectorySchemaClassCollection.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReadOnlyActiveDirectorySchemaPropertyCollection.Contains(System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyActiveDirectorySchemaPropertyCollection.cs#L27C13-L37C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyActiveDirectorySchemaPropertyCollection.cs#L27C13-L37C26" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReadOnlyActiveDirectorySchemaPropertyCollection.IndexOf(System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyActiveDirectorySchemaPropertyCollection.cs#L42C13-L53C23" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyActiveDirectorySchemaPropertyCollection.cs#L42C13-L53C23" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReadOnlyActiveDirectorySchemaPropertyCollection.CopyTo(System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyActiveDirectorySchemaPropertyCollection.cs#L58C13-L59C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyActiveDirectorySchemaPropertyCollection.cs#L58C13-L59C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReadOnlyActiveDirectorySchemaPropertyCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyActiveDirectorySchemaPropertyCollection.cs#L22C20-L22C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyActiveDirectorySchemaPropertyCollection.cs#L22C20-L22C68" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ReadOnlyActiveDirectorySchemaPropertyCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyActiveDirectorySchemaPropertyCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyActiveDirectorySchemaPropertyCollection.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReadOnlyDirectoryServerCollection.Contains(System.DirectoryServices.ActiveDirectory.DirectoryServer)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyDirectoryServerCollection.cs#L27C13-L38C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyDirectoryServerCollection.cs#L27C13-L38C26" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReadOnlyDirectoryServerCollection.IndexOf(System.DirectoryServices.ActiveDirectory.DirectoryServer)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyDirectoryServerCollection.cs#L43C13-L54C23" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyDirectoryServerCollection.cs#L43C13-L54C23" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReadOnlyDirectoryServerCollection.CopyTo(System.DirectoryServices.ActiveDirectory.DirectoryServer[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyDirectoryServerCollection.cs#L59C13-L60C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyDirectoryServerCollection.cs#L59C13-L60C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReadOnlyDirectoryServerCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyDirectoryServerCollection.cs#L23C51-L23C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyDirectoryServerCollection.cs#L23C51-L23C85" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ReadOnlyDirectoryServerCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyDirectoryServerCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyDirectoryServerCollection.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReadOnlySiteCollection.Contains(System.DirectoryServices.ActiveDirectory.ActiveDirectorySite)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlySiteCollection.cs#L24C13-L40C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlySiteCollection.cs#L24C13-L40C26" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReadOnlySiteCollection.IndexOf(System.DirectoryServices.ActiveDirectory.ActiveDirectorySite)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlySiteCollection.cs#L45C13-L61C23" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlySiteCollection.cs#L45C13-L61C23" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReadOnlySiteCollection.CopyTo(System.DirectoryServices.ActiveDirectory.ActiveDirectorySite[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlySiteCollection.cs#L66C13-L67C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlySiteCollection.cs#L66C13-L67C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReadOnlySiteCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlySiteCollection.cs#L20C55-L20C93" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlySiteCollection.cs#L20C55-L20C93" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ReadOnlySiteCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlySiteCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlySiteCollection.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReadOnlySiteLinkBridgeCollection.Contains(System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkBridge)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlySiteLinkBridgeCollection.cs#L19C13-L34C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlySiteLinkBridgeCollection.cs#L19C13-L34C26" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReadOnlySiteLinkBridgeCollection.IndexOf(System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkBridge)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlySiteLinkBridgeCollection.cs#L39C13-L54C23" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlySiteLinkBridgeCollection.cs#L39C13-L54C23" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReadOnlySiteLinkBridgeCollection.CopyTo(System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkBridge[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlySiteLinkBridgeCollection.cs#L59C13-L60C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlySiteLinkBridgeCollection.cs#L59C13-L60C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReadOnlySiteLinkBridgeCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlySiteLinkBridgeCollection.cs#L14C20-L14C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlySiteLinkBridgeCollection.cs#L14C20-L14C68" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ReadOnlySiteLinkBridgeCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlySiteLinkBridgeCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlySiteLinkBridgeCollection.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReadOnlySiteLinkCollection.Contains(System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLink)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlySiteLinkCollection.cs#L19C13-L34C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlySiteLinkCollection.cs#L19C13-L34C26" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReadOnlySiteLinkCollection.IndexOf(System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLink)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlySiteLinkCollection.cs#L39C13-L54C23" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlySiteLinkCollection.cs#L39C13-L54C23" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReadOnlySiteLinkCollection.CopyTo(System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLink[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlySiteLinkCollection.cs#L59C13-L60C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlySiteLinkCollection.cs#L59C13-L60C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReadOnlySiteLinkCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlySiteLinkCollection.cs#L14C20-L14C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlySiteLinkCollection.cs#L14C20-L14C62" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ReadOnlySiteLinkCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlySiteLinkCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlySiteLinkCollection.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReadOnlyStringCollection.Contains(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyStringCollection.cs#L31C13-L44C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyStringCollection.cs#L31C13-L44C26" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReadOnlyStringCollection.IndexOf(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyStringCollection.cs#L49C13-L62C23" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyStringCollection.cs#L49C13-L62C23" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReadOnlyStringCollection.CopyTo(System.String[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyStringCollection.cs#L67C13-L68C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyStringCollection.cs#L67C13-L68C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReadOnlyStringCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyStringCollection.cs#L20C17-L25C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyStringCollection.cs#L20C17-L25C48" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ReadOnlyStringCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyStringCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReadOnlyStringCollection.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.ActiveDirectory.NotificationStatus.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.NotificationStatus.NoNotification", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.NotificationStatus.IntraSiteOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.NotificationStatus.NotificationAlways", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.NotificationStatus", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ReplicationSpan.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ReplicationSpan.IntraSite", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ReplicationSpan.InterSite", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ReplicationSpan", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReplicationConnection.FindByName(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L41C13-L94C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L41C13-L94C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReplicationConnection.#ctor(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String,System.DirectoryServices.ActiveDirectory.DirectoryServer)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L105C109-L107C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L105C109-L107C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReplicationConnection.#ctor(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String,System.DirectoryServices.ActiveDirectory.DirectoryServer,System.DirectoryServices.ActiveDirectory.ActiveDirectorySchedule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L109C144-L111C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L109C144-L111C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReplicationConnection.#ctor(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String,System.DirectoryServices.ActiveDirectory.DirectoryServer,System.DirectoryServices.ActiveDirectory.ActiveDirectoryTransportType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L113C149-L115C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L113C149-L115C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReplicationConnection.#ctor(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.String,System.DirectoryServices.ActiveDirectory.DirectoryServer,System.DirectoryServices.ActiveDirectory.ActiveDirectorySchedule,System.DirectoryServices.ActiveDirectory.ActiveDirectoryTransportType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L117C9-L201C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L117C9-L201C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReplicationConnection.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L205C13-L207C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L205C13-L207C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReplicationConnection.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L211C13-L218C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L211C13-L218C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReplicationConnection.Finalize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L222C13-L223C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L222C13-L223C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReplicationConnection.Delete", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L845C13-L863C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L845C13-L863C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReplicationConnection.Save", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L867C13-L883C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L867C13-L883C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReplicationConnection.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L887C13-L890C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L887C13-L890C25" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReplicationConnection.GetDirectoryEntry", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L895C13-L904C108" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L895C13-L904C108" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationConnection.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L229C17-L232C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L229C17-L232C40" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationConnection.SourceServer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L240C17-L262C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L240C17-L262C42" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationConnection.DestinationServer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L270C17-L301C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L270C17-L301C47" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationConnection.Enabled", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L309C17-L324C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L309C17-L324C14" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationConnection.TransportType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L345C17-L373C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L345C17-L373C39" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationConnection.GeneratedByKcc", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L381C17-L408C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L381C17-L408C33" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationConnection.ReciprocalReplicationEnabled", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L451C17-L478C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L451C17-L478C33" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationConnection.ChangeNotificationStatus", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L521C17-L551C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L521C17-L551C61" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationConnection.DataCompressionEnabled", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L603C17-L632C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L603C17-L632C34" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationConnection.ReplicationScheduleOwnedByUser", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L677C17-L704C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L677C17-L704C33" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationConnection.ReplicationSpan", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L747C17-L764C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L747C17-L764C54" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationConnection.ReplicationSchedule", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L773C17-L795C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs#L773C17-L795C33" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ReplicationConnection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnection.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReplicationConnectionCollection.Contains(System.DirectoryServices.ActiveDirectory.ReplicationConnection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnectionCollection.cs#L16C13-L34C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnectionCollection.cs#L16C13-L34C26" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReplicationConnectionCollection.IndexOf(System.DirectoryServices.ActiveDirectory.ReplicationConnection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnectionCollection.cs#L39C13-L57C23" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnectionCollection.cs#L39C13-L57C23" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReplicationConnectionCollection.CopyTo(System.DirectoryServices.ActiveDirectory.ReplicationConnection[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnectionCollection.cs#L62C13-L63C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnectionCollection.cs#L62C13-L63C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationConnectionCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnectionCollection.cs#L12C57-L12C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnectionCollection.cs#L12C57-L12C97" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ReplicationConnectionCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnectionCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationConnectionCollection.cs" }, { "Members": [ { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationCursor.PartitionName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationCursor.cs#L45C39-L45C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationCursor.cs#L45C39-L45C43" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationCursor.SourceInvocationId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationCursor.cs#L47C42-L47C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationCursor.cs#L47C42-L47C46" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationCursor.UpToDatenessUsn", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationCursor.cs#L49C39-L49C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationCursor.cs#L49C39-L49C43" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationCursor.SourceServer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationCursor.cs#L56C17-L61C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationCursor.cs#L56C17-L61C38" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationCursor.LastSuccessfulSyncTime", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationCursor.cs#L69C17-L77C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationCursor.cs#L69C17-L77C86" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ReplicationCursor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationCursor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationCursor.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReplicationCursorCollection.Contains(System.DirectoryServices.ActiveDirectory.ReplicationCursor)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationCursorCollection.cs#L22C13-L25C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationCursorCollection.cs#L22C13-L25C47" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReplicationCursorCollection.IndexOf(System.DirectoryServices.ActiveDirectory.ReplicationCursor)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationCursorCollection.cs#L30C13-L33C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationCursorCollection.cs#L30C13-L33C46" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReplicationCursorCollection.CopyTo(System.DirectoryServices.ActiveDirectory.ReplicationCursor[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationCursorCollection.cs#L38C13-L39C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationCursorCollection.cs#L38C13-L39C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationCursorCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationCursorCollection.cs#L18C53-L18C89" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationCursorCollection.cs#L18C53-L18C89" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ReplicationCursorCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationCursorCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationCursorCollection.cs" }, { "Members": [ { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationFailure.SourceServer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationFailure.cs#L37C17-L52C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationFailure.cs#L37C17-L52C38" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationFailure.FirstFailureTime", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationFailure.cs#L58C44-L58C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationFailure.cs#L58C44-L58C48" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationFailure.ConsecutiveFailureCount", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationFailure.cs#L60C46-L60C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationFailure.cs#L60C46-L60C50" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationFailure.LastErrorCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationFailure.cs#L62C37-L62C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationFailure.cs#L62C37-L62C47" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationFailure.LastErrorMessage", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationFailure.cs#L64C43-L64C96" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationFailure.cs#L64C43-L64C96" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ReplicationFailure", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationFailure.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationFailure.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReplicationFailureCollection.Contains(System.DirectoryServices.ActiveDirectory.ReplicationFailure)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationFailureCollection.cs#L25C13-L28C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationFailureCollection.cs#L25C13-L28C48" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReplicationFailureCollection.IndexOf(System.DirectoryServices.ActiveDirectory.ReplicationFailure)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationFailureCollection.cs#L33C13-L36C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationFailureCollection.cs#L33C13-L36C47" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReplicationFailureCollection.CopyTo(System.DirectoryServices.ActiveDirectory.ReplicationFailure[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationFailureCollection.cs#L41C13-L42C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationFailureCollection.cs#L41C13-L42C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationFailureCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationFailureCollection.cs#L21C54-L21C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationFailureCollection.cs#L21C54-L21C91" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ReplicationFailureCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationFailureCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationFailureCollection.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectoryTransportType.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectoryTransportType.Rpc", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectoryTransportType.Smtp", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ActiveDirectoryTransportType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" }, { "Members": [ { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationNeighbor.PartitionName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs#L76C40-L76C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs#L76C40-L76C44" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationNeighbor.SourceServer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs#L82C17-L97C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs#L82C17-L97C38" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationNeighbor.TransportType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs#L101C61-L101C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs#L101C61-L101C65" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationNeighbor.ReplicationNeighborOption", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs#L103C71-L103C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs#L103C71-L103C75" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationNeighbor.SourceInvocationId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs#L105C42-L105C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs#L105C42-L105C46" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationNeighbor.UsnLastObjectChangeSynced", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs#L107C49-L107C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs#L107C49-L107C53" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationNeighbor.UsnAttributeFilter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs#L109C42-L109C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs#L109C42-L109C46" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationNeighbor.LastSuccessfulSync", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs#L111C46-L111C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs#L111C46-L111C50" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationNeighbor.LastAttemptedSync", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs#L113C45-L113C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs#L113C45-L113C49" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationNeighbor.LastSyncResult", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs#L115C37-L115C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs#L115C37-L115C41" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationNeighbor.LastSyncMessage", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs#L117C42-L117C96" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs#L117C42-L117C96" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationNeighbor.ConsecutiveFailureCount", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs#L119C46-L119C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs#L119C46-L119C50" }, { "DocsId": "T:System.DirectoryServices.ActiveDirectory.ReplicationNeighbor.ReplicationNeighborOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ReplicationNeighbor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReplicationNeighborCollection.Contains(System.DirectoryServices.ActiveDirectory.ReplicationNeighbor)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighborCollection.cs#L25C13-L28C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighborCollection.cs#L25C13-L28C49" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReplicationNeighborCollection.IndexOf(System.DirectoryServices.ActiveDirectory.ReplicationNeighbor)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighborCollection.cs#L33C13-L36C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighborCollection.cs#L33C13-L36C48" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReplicationNeighborCollection.CopyTo(System.DirectoryServices.ActiveDirectory.ReplicationNeighbor[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighborCollection.cs#L41C13-L42C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighborCollection.cs#L41C13-L42C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationNeighborCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighborCollection.cs#L21C55-L21C93" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighborCollection.cs#L21C55-L21C93" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ReplicationNeighborCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighborCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighborCollection.cs" }, { "Members": [ { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationOperation.TimeEnqueued", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperation.cs#L47C40-L47C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperation.cs#L47C40-L47C44" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationOperation.OperationNumber", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperation.cs#L49C38-L49C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperation.cs#L49C38-L49C42" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationOperation.Priority", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperation.cs#L51C31-L51C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperation.cs#L51C31-L51C35" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationOperation.OperationType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperation.cs#L53C57-L53C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperation.cs#L53C57-L53C61" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationOperation.PartitionName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperation.cs#L55C40-L55C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperation.cs#L55C40-L55C44" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationOperation.SourceServer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperation.cs#L61C17-L76C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperation.cs#L61C17-L76C38" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ReplicationOperation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperation.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperation.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReplicationOperationCollection.Contains(System.DirectoryServices.ActiveDirectory.ReplicationOperation)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperationCollection.cs#L25C13-L28C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperationCollection.cs#L25C13-L28C50" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReplicationOperationCollection.IndexOf(System.DirectoryServices.ActiveDirectory.ReplicationOperation)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperationCollection.cs#L33C13-L36C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperationCollection.cs#L33C13-L36C49" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReplicationOperationCollection.CopyTo(System.DirectoryServices.ActiveDirectory.ReplicationOperation[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperationCollection.cs#L41C13-L42C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperationCollection.cs#L41C13-L42C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationOperationCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperationCollection.cs#L21C56-L21C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperationCollection.cs#L21C56-L21C95" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ReplicationOperationCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperationCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperationCollection.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ReplicationOperationInformation.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperationInformation.cs#L12C9-L14C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperationInformation.cs#L12C9-L14C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationOperationInformation.OperationStartTime", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperationInformation.cs#L16C47-L16C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperationInformation.cs#L16C47-L16C56" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationOperationInformation.CurrentOperation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperationInformation.cs#L18C58-L18C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperationInformation.cs#L18C58-L18C67" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ReplicationOperationInformation.PendingOperations", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperationInformation.cs#L20C69-L20C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperationInformation.cs#L20C69-L20C79" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ReplicationOperationInformation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperationInformation.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationOperationInformation.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryInterSiteTransport.FindByTransportType(System.DirectoryServices.ActiveDirectory.DirectoryContext,System.DirectoryServices.ActiveDirectory.ActiveDirectoryTransportType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryInterSiteTransport.cs#L30C13-L96C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryInterSiteTransport.cs#L30C13-L96C82" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryInterSiteTransport.Save", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryInterSiteTransport.cs#L315C13-L326C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryInterSiteTransport.cs#L315C13-L326C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryInterSiteTransport.GetDirectoryEntry", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryInterSiteTransport.cs#L330C13-L333C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryInterSiteTransport.cs#L330C13-L333C97" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryInterSiteTransport.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryInterSiteTransport.cs#L338C13-L340C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryInterSiteTransport.cs#L338C13-L340C10" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryInterSiteTransport.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryInterSiteTransport.cs#L344C13-L347C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryInterSiteTransport.cs#L344C13-L347C42" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryInterSiteTransport.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryInterSiteTransport.cs#L352C13-L361C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryInterSiteTransport.cs#L352C13-L361C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectoryInterSiteTransport.TransportType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryInterSiteTransport.cs#L103C17-L106C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryInterSiteTransport.cs#L103C17-L106C35" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectoryInterSiteTransport.IgnoreReplicationSchedule", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryInterSiteTransport.cs#L114C17-L132C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryInterSiteTransport.cs#L114C17-L132C34" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectoryInterSiteTransport.BridgeAllSiteLinks", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryInterSiteTransport.cs#L164C17-L183C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryInterSiteTransport.cs#L164C17-L183C33" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectoryInterSiteTransport.SiteLinks", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryInterSiteTransport.cs#L217C17-L257C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryInterSiteTransport.cs#L217C17-L257C44" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectoryInterSiteTransport.SiteLinkBridges", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryInterSiteTransport.cs#L265C17-L306C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryInterSiteTransport.cs#L265C17-L306C42" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ActiveDirectoryInterSiteTransport", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryInterSiteTransport.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ActiveDirectoryInterSiteTransport.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectoryRole.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwner.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwner.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectoryRole.SchemaRole", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwner.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwner.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectoryRole.NamingRole", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwner.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwner.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectoryRole.PdcRole", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwner.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwner.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectoryRole.RidRole", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwner.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwner.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ActiveDirectoryRole.InfrastructureRole", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwner.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwner.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ActiveDirectoryRole", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwner.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwner.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.ActiveDirectory.AdamRole.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwner.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwner.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.AdamRole.SchemaRole", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwner.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwner.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.AdamRole.NamingRole", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwner.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwner.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.AdamRole", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwner.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwner.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryRoleCollection.Contains(System.DirectoryServices.ActiveDirectory.ActiveDirectoryRole)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwnerCollection.cs#L25C13-L38C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwnerCollection.cs#L25C13-L38C26" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryRoleCollection.IndexOf(System.DirectoryServices.ActiveDirectory.ActiveDirectoryRole)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwnerCollection.cs#L43C13-L58C23" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwnerCollection.cs#L43C13-L58C23" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.ActiveDirectoryRoleCollection.CopyTo(System.DirectoryServices.ActiveDirectory.ActiveDirectoryRole[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwnerCollection.cs#L63C13-L64C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwnerCollection.cs#L63C13-L64C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.ActiveDirectoryRoleCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwnerCollection.cs#L21C55-L21C93" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwnerCollection.cs#L21C55-L21C93" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ActiveDirectoryRoleCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwnerCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwnerCollection.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.AdamRoleCollection.Contains(System.DirectoryServices.ActiveDirectory.AdamRole)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwnerCollection.cs#L83C13-L96C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwnerCollection.cs#L83C13-L96C26" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.AdamRoleCollection.IndexOf(System.DirectoryServices.ActiveDirectory.AdamRole)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwnerCollection.cs#L101C13-L116C23" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwnerCollection.cs#L101C13-L116C23" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.AdamRoleCollection.CopyTo(System.DirectoryServices.ActiveDirectory.AdamRole[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwnerCollection.cs#L121C13-L122C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwnerCollection.cs#L121C13-L122C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.AdamRoleCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwnerCollection.cs#L79C44-L79C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwnerCollection.cs#L79C44-L79C71" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.AdamRoleCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwnerCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/RoleOwnerCollection.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ReplicationSecurityLevel.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/SecurityLevel.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/SecurityLevel.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ReplicationSecurityLevel.MutualAuthentication", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/SecurityLevel.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/SecurityLevel.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ReplicationSecurityLevel.Negotiate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/SecurityLevel.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/SecurityLevel.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ReplicationSecurityLevel.NegotiatePassThrough", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/SecurityLevel.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/SecurityLevel.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ReplicationSecurityLevel", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/SecurityLevel.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/SecurityLevel.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.ActiveDirectory.TopLevelNameStatus.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TopLevelName.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TopLevelName.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.TopLevelNameStatus.Enabled", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TopLevelName.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TopLevelName.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.TopLevelNameStatus.NewlyCreated", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TopLevelName.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TopLevelName.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.TopLevelNameStatus.AdminDisabled", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TopLevelName.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TopLevelName.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.TopLevelNameStatus.ConflictDisabled", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TopLevelName.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TopLevelName.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.TopLevelNameStatus", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TopLevelName.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TopLevelName.cs" }, { "Members": [ { "DocsId": "P:System.DirectoryServices.ActiveDirectory.TopLevelName.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TopLevelName.cs#L29C30-L29C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TopLevelName.cs#L29C30-L29C34" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.TopLevelName.Status", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TopLevelName.cs#L33C20-L33C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TopLevelName.cs#L33C20-L33C27" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.TopLevelName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TopLevelName.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TopLevelName.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.TopLevelNameCollection.Contains(System.DirectoryServices.ActiveDirectory.TopLevelName)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TopLevelNameCollection.cs#L16C13-L19C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TopLevelNameCollection.cs#L16C13-L19C45" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.TopLevelNameCollection.IndexOf(System.DirectoryServices.ActiveDirectory.TopLevelName)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TopLevelNameCollection.cs#L24C13-L27C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TopLevelNameCollection.cs#L24C13-L27C44" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.TopLevelNameCollection.CopyTo(System.DirectoryServices.ActiveDirectory.TopLevelName[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TopLevelNameCollection.cs#L32C13-L33C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TopLevelNameCollection.cs#L32C13-L33C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.TopLevelNameCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TopLevelNameCollection.cs#L12C48-L12C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TopLevelNameCollection.cs#L12C48-L12C79" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.TopLevelNameCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TopLevelNameCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TopLevelNameCollection.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.ActiveDirectory.TrustType.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.TrustType.TreeRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.TrustType.ParentChild", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.TrustType.CrossLink", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.TrustType.External", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.TrustType.Forest", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.TrustType.Kerberos", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.TrustType.Unknown", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.TrustType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.ActiveDirectory.TrustDirection.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.TrustDirection.Inbound", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.TrustDirection.Outbound", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.TrustDirection.Bidirectional", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.TrustDirection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs" }, { "Members": [ { "DocsId": "P:System.DirectoryServices.ActiveDirectory.TrustRelationshipInformation.SourceName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs#L54C38-L54C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs#L54C38-L54C44" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.TrustRelationshipInformation.TargetName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs#L56C38-L56C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs#L56C38-L56C44" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.TrustRelationshipInformation.TrustType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs#L58C39-L58C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs#L58C39-L58C43" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.TrustRelationshipInformation.TrustDirection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs#L60C49-L60C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs#L60C49-L60C58" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.TrustRelationshipInformation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformation.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.ActiveDirectory.TrustRelationshipInformationCollection.Contains(System.DirectoryServices.ActiveDirectory.TrustRelationshipInformation)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformationCollection.cs#L35C13-L38C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformationCollection.cs#L35C13-L38C52" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.TrustRelationshipInformationCollection.IndexOf(System.DirectoryServices.ActiveDirectory.TrustRelationshipInformation)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformationCollection.cs#L43C13-L46C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformationCollection.cs#L43C13-L46C51" }, { "DocsId": "M:System.DirectoryServices.ActiveDirectory.TrustRelationshipInformationCollection.CopyTo(System.DirectoryServices.ActiveDirectory.TrustRelationshipInformation[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformationCollection.cs#L51C13-L52C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformationCollection.cs#L51C13-L52C10" }, { "DocsId": "P:System.DirectoryServices.ActiveDirectory.TrustRelationshipInformationCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformationCollection.cs#L30C20-L30C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformationCollection.cs#L30C20-L30C67" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.TrustRelationshipInformationCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformationCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/TrustRelationshipInformationCollection.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ReplicationOperationType.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ReplicationOperationType.Sync", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ReplicationOperationType.Add", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ReplicationOperationType.Delete", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ReplicationOperationType.Modify", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ReplicationOperationType.UpdateReference", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ReplicationOperationType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ForestTrustCollisionType.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ForestTrustCollisionType.TopLevelName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ForestTrustCollisionType.Domain", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ForestTrustCollisionType.Other", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ForestTrustCollisionType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.ActiveDirectory.TopLevelNameCollisionOptions.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.TopLevelNameCollisionOptions.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.TopLevelNameCollisionOptions.NewlyCreated", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.TopLevelNameCollisionOptions.DisabledByAdmin", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.TopLevelNameCollisionOptions.DisabledByConflict", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.TopLevelNameCollisionOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.ActiveDirectory.DomainCollisionOptions.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.DomainCollisionOptions.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.DomainCollisionOptions.SidDisabledByAdmin", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.DomainCollisionOptions.SidDisabledByConflict", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.DomainCollisionOptions.NetBiosNameDisabledByAdmin", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.DomainCollisionOptions.NetBiosNameDisabledByConflict", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.DomainCollisionOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/UnsafeNativeMethods.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ReplicationNeighbor.ReplicationNeighborOptions.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ReplicationNeighbor.ReplicationNeighborOptions.Writeable", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ReplicationNeighbor.ReplicationNeighborOptions.SyncOnStartup", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ReplicationNeighbor.ReplicationNeighborOptions.ScheduledSync", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ReplicationNeighbor.ReplicationNeighborOptions.UseInterSiteTransport", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ReplicationNeighbor.ReplicationNeighborOptions.TwoWaySync", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ReplicationNeighbor.ReplicationNeighborOptions.ReturnObjectParent", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ReplicationNeighbor.ReplicationNeighborOptions.FullSyncInProgress", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ReplicationNeighbor.ReplicationNeighborOptions.FullSyncNextPacket", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ReplicationNeighbor.ReplicationNeighborOptions.NeverSynced", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ReplicationNeighbor.ReplicationNeighborOptions.Preempted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ReplicationNeighbor.ReplicationNeighborOptions.IgnoreChangeNotifications", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ReplicationNeighbor.ReplicationNeighborOptions.DisableScheduledSync", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ReplicationNeighbor.ReplicationNeighborOptions.CompressChanges", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ReplicationNeighbor.ReplicationNeighborOptions.NoChangeNotifications", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" }, { "DocsId": "F:System.DirectoryServices.ActiveDirectory.ReplicationNeighbor.ReplicationNeighborOptions.PartialAttributeSet", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" } ], "DocsId": "T:System.DirectoryServices.ActiveDirectory.ReplicationNeighbor.ReplicationNeighborOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/ReplicationNeighbor.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/System.Drawing.Common.json b/xml/SourceLinkInformation/net-9.0/System.Drawing.Common.json index 7a4e30a0c49..697344e2836 100644 --- a/xml/SourceLinkInformation/net-9.0/System.Drawing.Common.json +++ b/xml/SourceLinkInformation/net-9.0/System.Drawing.Common.json @@ -1,12671 +1,12678 @@ { "Assembly": "System.Drawing.Common", - "GUID": "5B3CF45F1D8649D3B74D9A1EA439BFE5FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "FEC18D4108914CCABAA3D48F758E6824FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:System.Drawing.Bitmap.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L28C38-L28C71" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L27C38-L27C71" }, { "DocsId": "M:System.Drawing.Bitmap.#ctor(System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L30C5-L49C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L29C5-L48C6" }, { "DocsId": "M:System.Drawing.Bitmap.#ctor(System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L51C36-L53C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L50C36-L52C6" }, { "DocsId": "M:System.Drawing.Bitmap.#ctor(System.IO.Stream,System.Boolean)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L55C5-L69C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L54C5-L68C6" }, { "DocsId": "M:System.Drawing.Bitmap.#ctor(System.Type,System.String)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L71C49-L73C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L70C49-L72C6" }, { "DocsId": "M:System.Drawing.Bitmap.#ctor(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L84C44-L86C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L83C44-L85C6" }, { "DocsId": "M:System.Drawing.Bitmap.#ctor(System.Int32,System.Int32,System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L88C5-L96C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L87C5-L95C6" }, { "DocsId": "M:System.Drawing.Bitmap.#ctor(System.Int32,System.Int32,System.Int32,System.Drawing.Imaging.PixelFormat,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L98C5-L103C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L97C5-L102C6" }, { "DocsId": "M:System.Drawing.Bitmap.#ctor(System.Int32,System.Int32,System.Drawing.Imaging.PixelFormat)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L105C5-L110C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L104C5-L109C6" }, { "DocsId": "M:System.Drawing.Bitmap.#ctor(System.Drawing.Image)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L112C37-L114C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L111C37-L113C6" }, { "DocsId": "M:System.Drawing.Bitmap.#ctor(System.Drawing.Image,System.Drawing.Size)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L116C51-L118C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L115C51-L117C6" }, { "DocsId": "M:System.Drawing.Bitmap.#ctor(System.Drawing.Image,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L120C60-L126C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L119C60-L125C6" }, { "DocsId": "M:System.Drawing.Bitmap.IPointer#get_Pointer", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L132C45-L132C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L131C45-L131C79" }, { "DocsId": "M:System.Drawing.Bitmap.FromHicon(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L137C9-L138C35" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L136C9-L137C35" }, { "DocsId": "M:System.Drawing.Bitmap.FromResource(System.IntPtr,System.String)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L143C9-L150C35" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L142C9-L149C35" }, { "DocsId": "M:System.Drawing.Bitmap.GetHbitmap", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L154C35-L154C62" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L153C35-L153C62" }, { "DocsId": "M:System.Drawing.Bitmap.GetHbitmap(System.Drawing.Color)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L160C9-L172C24" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L160C13-L173C6" }, { "DocsId": "M:System.Drawing.Bitmap.GetHicon", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L179C9-L181C22" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L179C9-L181C22" }, { "DocsId": "M:System.Drawing.Bitmap.Clone(System.Drawing.RectangleF,System.Drawing.Imaging.PixelFormat)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L186C9-L205C34" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L186C9-L205C34" }, { "DocsId": "M:System.Drawing.Bitmap.MakeTransparent", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L210C9-L224C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L210C9-L224C6" }, { "DocsId": "M:System.Drawing.Bitmap.MakeTransparent(System.Drawing.Color)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L228C9-L260C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L228C9-L260C6" }, { "DocsId": "M:System.Drawing.Bitmap.LockBits(System.Drawing.Rectangle,System.Drawing.Imaging.ImageLockMode,System.Drawing.Imaging.PixelFormat)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L263C9-L263C45" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L263C9-L263C45" }, { "DocsId": "M:System.Drawing.Bitmap.LockBits(System.Drawing.Rectangle,System.Drawing.Imaging.ImageLockMode,System.Drawing.Imaging.PixelFormat,System.Drawing.Imaging.BitmapData)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L267C9-L279C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L267C9-L279C27" }, { "DocsId": "M:System.Drawing.Bitmap.UnlockBits(System.Drawing.Imaging.BitmapData)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L284C9-L292C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L284C9-L292C6" }, { "DocsId": "M:System.Drawing.Bitmap.GetPixel(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L296C9-L309C43" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L296C9-L309C43" }, { "DocsId": "M:System.Drawing.Bitmap.SetPixel(System.Int32,System.Int32,System.Drawing.Color)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L314C9-L331C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L314C9-L331C6" }, { "DocsId": "M:System.Drawing.Bitmap.SetResolution(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L335C9-L337C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L335C9-L337C6" }, { "DocsId": "M:System.Drawing.Bitmap.Clone(System.Drawing.Rectangle,System.Drawing.Imaging.PixelFormat)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L341C9-L359C34" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L341C9-L359C34" }, { "DocsId": "M:System.Drawing.Bitmap.ApplyEffect(System.Drawing.Imaging.Effects.Effect,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L370C9-L381C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L370C9-L381C6" }, { "DocsId": "M:System.Drawing.Bitmap.ConvertFormat(System.Drawing.Imaging.PixelFormat,System.Drawing.Imaging.DitherType,System.Drawing.Imaging.PaletteType,System.Drawing.Imaging.ColorPalette,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L451C9-L477C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L450C9-L476C6" }, { "DocsId": "M:System.Drawing.Bitmap.ConvertFormat(System.Drawing.Imaging.PixelFormat)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L491C9-L510C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L489C9-L508C6" }, { "DocsId": "P:System.Drawing.Bitmap.IPointer#Pointer", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L132C45-L132C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs#L131C45-L131C79" } ], "DocsId": "T:System.Drawing.Bitmap", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Bitmap.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.BitmapSuffixInSameAssemblyAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/BitmapSuffixInSameAssemblyAttribute.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/BitmapSuffixInSameAssemblyAttribute.cs" } ], "DocsId": "T:System.Drawing.BitmapSuffixInSameAssemblyAttribute", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/BitmapSuffixInSameAssemblyAttribute.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/BitmapSuffixInSameAssemblyAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.BitmapSuffixInSatelliteAssemblyAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/BitmapSuffixInSatelliteAssemblyAttribute.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/BitmapSuffixInSatelliteAssemblyAttribute.cs" } ], "DocsId": "T:System.Drawing.BitmapSuffixInSatelliteAssemblyAttribute", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/BitmapSuffixInSatelliteAssemblyAttribute.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/BitmapSuffixInSatelliteAssemblyAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Brush.Clone", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brush.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brush.cs" }, { "DocsId": "M:System.Drawing.Brush.SetNativeBrush(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brush.cs#L15C61-L15C100" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brush.cs#L15C61-L15C100" }, { "DocsId": "M:System.Drawing.Brush.Dispose", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brush.cs#L23C9-L25C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brush.cs#L23C9-L25C6" }, { "DocsId": "M:System.Drawing.Brush.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brush.cs#L29C9-L35C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brush.cs#L29C9-L35C6" }, { "DocsId": "M:System.Drawing.Brush.Finalize", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brush.cs#L37C17-L37C42" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brush.cs#L37C17-L16707566C0" }, { "DocsId": "M:System.Drawing.Brush.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brush.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brush.cs" } ], "DocsId": "T:System.Drawing.Brush", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brush.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brush.cs" }, { "Members": [ { "DocsId": "P:System.Drawing.Brushes.Transparent", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L149C40-L149C85" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L149C40-L149C85" }, { "DocsId": "P:System.Drawing.Brushes.AliceBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L151C38-L151C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L151C38-L151C79" }, { "DocsId": "P:System.Drawing.Brushes.AntiqueWhite", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L152C41-L152C88" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L152C41-L152C88" }, { "DocsId": "P:System.Drawing.Brushes.Aqua", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L153C33-L153C64" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L153C33-L153C64" }, { "DocsId": "P:System.Drawing.Brushes.Aquamarine", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L154C39-L154C82" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L154C39-L154C82" }, { "DocsId": "P:System.Drawing.Brushes.Azure", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L155C34-L155C67" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L155C34-L155C67" }, { "DocsId": "P:System.Drawing.Brushes.Beige", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L157C34-L157C67" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L157C34-L157C67" }, { "DocsId": "P:System.Drawing.Brushes.Bisque", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L158C35-L158C70" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L158C35-L158C70" }, { "DocsId": "P:System.Drawing.Brushes.Black", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L159C34-L159C67" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L159C34-L159C67" }, { "DocsId": "P:System.Drawing.Brushes.BlanchedAlmond", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L160C43-L160C94" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L160C43-L160C94" }, { "DocsId": "P:System.Drawing.Brushes.Blue", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L161C33-L161C64" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L161C33-L161C64" }, { "DocsId": "P:System.Drawing.Brushes.BlueViolet", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L162C39-L162C82" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L162C39-L162C82" }, { "DocsId": "P:System.Drawing.Brushes.Brown", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L163C34-L163C67" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L163C34-L163C67" }, { "DocsId": "P:System.Drawing.Brushes.BurlyWood", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L164C38-L164C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L164C38-L164C79" }, { "DocsId": "P:System.Drawing.Brushes.CadetBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L166C38-L166C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L166C38-L166C79" }, { "DocsId": "P:System.Drawing.Brushes.Chartreuse", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L167C39-L167C82" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L167C39-L167C82" }, { "DocsId": "P:System.Drawing.Brushes.Chocolate", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L168C38-L168C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L168C38-L168C79" }, { "DocsId": "P:System.Drawing.Brushes.Coral", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L169C34-L169C67" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L169C34-L169C67" }, { "DocsId": "P:System.Drawing.Brushes.CornflowerBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L170C43-L170C94" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L170C43-L170C94" }, { "DocsId": "P:System.Drawing.Brushes.Cornsilk", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L171C37-L171C76" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L171C37-L171C76" }, { "DocsId": "P:System.Drawing.Brushes.Crimson", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L172C36-L172C73" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L172C36-L172C73" }, { "DocsId": "P:System.Drawing.Brushes.Cyan", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L173C33-L173C64" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L173C33-L173C64" }, { "DocsId": "P:System.Drawing.Brushes.DarkBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L175C37-L175C76" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L175C37-L175C76" }, { "DocsId": "P:System.Drawing.Brushes.DarkCyan", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L176C37-L176C76" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L176C37-L176C76" }, { "DocsId": "P:System.Drawing.Brushes.DarkGoldenrod", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L177C42-L177C91" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L177C42-L177C91" }, { "DocsId": "P:System.Drawing.Brushes.DarkGray", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L178C37-L178C76" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L178C37-L178C76" }, { "DocsId": "P:System.Drawing.Brushes.DarkGreen", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L179C38-L179C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L179C38-L179C79" }, { "DocsId": "P:System.Drawing.Brushes.DarkKhaki", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L180C38-L180C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L180C38-L180C79" }, { "DocsId": "P:System.Drawing.Brushes.DarkMagenta", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L181C40-L181C85" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L181C40-L181C85" }, { "DocsId": "P:System.Drawing.Brushes.DarkOliveGreen", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L182C43-L182C94" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L182C43-L182C94" }, { "DocsId": "P:System.Drawing.Brushes.DarkOrange", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L183C39-L183C82" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L183C39-L183C82" }, { "DocsId": "P:System.Drawing.Brushes.DarkOrchid", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L184C39-L184C82" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L184C39-L184C82" }, { "DocsId": "P:System.Drawing.Brushes.DarkRed", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L185C36-L185C73" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L185C36-L185C73" }, { "DocsId": "P:System.Drawing.Brushes.DarkSalmon", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L186C39-L186C82" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L186C39-L186C82" }, { "DocsId": "P:System.Drawing.Brushes.DarkSeaGreen", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L187C41-L187C88" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L187C41-L187C88" }, { "DocsId": "P:System.Drawing.Brushes.DarkSlateBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L188C42-L188C91" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L188C42-L188C91" }, { "DocsId": "P:System.Drawing.Brushes.DarkSlateGray", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L189C42-L189C91" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L189C42-L189C91" }, { "DocsId": "P:System.Drawing.Brushes.DarkTurquoise", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L190C42-L190C91" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L190C42-L190C91" }, { "DocsId": "P:System.Drawing.Brushes.DarkViolet", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L191C39-L191C82" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L191C39-L191C82" }, { "DocsId": "P:System.Drawing.Brushes.DeepPink", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L192C37-L192C76" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L192C37-L192C76" }, { "DocsId": "P:System.Drawing.Brushes.DeepSkyBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L193C40-L193C85" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L193C40-L193C85" }, { "DocsId": "P:System.Drawing.Brushes.DimGray", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L194C36-L194C73" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L194C36-L194C73" }, { "DocsId": "P:System.Drawing.Brushes.DodgerBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L195C39-L195C82" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L195C39-L195C82" }, { "DocsId": "P:System.Drawing.Brushes.Firebrick", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L197C38-L197C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L197C38-L197C79" }, { "DocsId": "P:System.Drawing.Brushes.FloralWhite", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L198C40-L198C85" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L198C40-L198C85" }, { "DocsId": "P:System.Drawing.Brushes.ForestGreen", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L199C40-L199C85" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L199C40-L199C85" }, { "DocsId": "P:System.Drawing.Brushes.Fuchsia", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L200C36-L200C73" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L200C36-L200C73" }, { "DocsId": "P:System.Drawing.Brushes.Gainsboro", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L202C38-L202C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L202C38-L202C79" }, { "DocsId": "P:System.Drawing.Brushes.GhostWhite", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L203C39-L203C82" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L203C39-L203C82" }, { "DocsId": "P:System.Drawing.Brushes.Gold", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L204C33-L204C64" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L204C33-L204C64" }, { "DocsId": "P:System.Drawing.Brushes.Goldenrod", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L205C38-L205C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L205C38-L205C79" }, { "DocsId": "P:System.Drawing.Brushes.Gray", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L206C33-L206C64" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L206C33-L206C64" }, { "DocsId": "P:System.Drawing.Brushes.Green", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L207C34-L207C67" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L207C34-L207C67" }, { "DocsId": "P:System.Drawing.Brushes.GreenYellow", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L208C40-L208C85" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L208C40-L208C85" }, { "DocsId": "P:System.Drawing.Brushes.Honeydew", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L210C37-L210C76" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L210C37-L210C76" }, { "DocsId": "P:System.Drawing.Brushes.HotPink", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L211C36-L211C73" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L211C36-L211C73" }, { "DocsId": "P:System.Drawing.Brushes.IndianRed", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L213C38-L213C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L213C38-L213C79" }, { "DocsId": "P:System.Drawing.Brushes.Indigo", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L214C35-L214C70" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L214C35-L214C70" }, { "DocsId": "P:System.Drawing.Brushes.Ivory", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L215C34-L215C67" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L215C34-L215C67" }, { "DocsId": "P:System.Drawing.Brushes.Khaki", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L217C34-L217C67" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L217C34-L217C67" }, { "DocsId": "P:System.Drawing.Brushes.Lavender", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L219C37-L219C76" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L219C37-L219C76" }, { "DocsId": "P:System.Drawing.Brushes.LavenderBlush", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L220C42-L220C91" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L220C42-L220C91" }, { "DocsId": "P:System.Drawing.Brushes.LawnGreen", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L221C38-L221C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L221C38-L221C79" }, { "DocsId": "P:System.Drawing.Brushes.LemonChiffon", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L222C41-L222C88" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L222C41-L222C88" }, { "DocsId": "P:System.Drawing.Brushes.LightBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L223C38-L223C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L223C38-L223C79" }, { "DocsId": "P:System.Drawing.Brushes.LightCoral", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L224C39-L224C82" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L224C39-L224C82" }, { "DocsId": "P:System.Drawing.Brushes.LightCyan", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L225C38-L225C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L225C38-L225C79" }, { "DocsId": "P:System.Drawing.Brushes.LightGoldenrodYellow", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L226C49-L226C112" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L226C49-L226C112" }, { "DocsId": "P:System.Drawing.Brushes.LightGreen", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L227C39-L227C82" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L227C39-L227C82" }, { "DocsId": "P:System.Drawing.Brushes.LightGray", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L228C38-L228C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L228C38-L228C79" }, { "DocsId": "P:System.Drawing.Brushes.LightPink", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L229C38-L229C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L229C38-L229C79" }, { "DocsId": "P:System.Drawing.Brushes.LightSalmon", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L230C40-L230C85" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L230C40-L230C85" }, { "DocsId": "P:System.Drawing.Brushes.LightSeaGreen", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L231C42-L231C91" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L231C42-L231C91" }, { "DocsId": "P:System.Drawing.Brushes.LightSkyBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L232C41-L232C88" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L232C41-L232C88" }, { "DocsId": "P:System.Drawing.Brushes.LightSlateGray", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L233C43-L233C94" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L233C43-L233C94" }, { "DocsId": "P:System.Drawing.Brushes.LightSteelBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L234C43-L234C94" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L234C43-L234C94" }, { "DocsId": "P:System.Drawing.Brushes.LightYellow", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L235C40-L235C85" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L235C40-L235C85" }, { "DocsId": "P:System.Drawing.Brushes.Lime", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L236C33-L236C64" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L236C33-L236C64" }, { "DocsId": "P:System.Drawing.Brushes.LimeGreen", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L237C38-L237C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L237C38-L237C79" }, { "DocsId": "P:System.Drawing.Brushes.Linen", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L238C34-L238C67" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L238C34-L238C67" }, { "DocsId": "P:System.Drawing.Brushes.Magenta", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L240C36-L240C73" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L240C36-L240C73" }, { "DocsId": "P:System.Drawing.Brushes.Maroon", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L241C35-L241C70" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L241C35-L241C70" }, { "DocsId": "P:System.Drawing.Brushes.MediumAquamarine", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L242C45-L242C100" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L242C45-L242C100" }, { "DocsId": "P:System.Drawing.Brushes.MediumBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L243C39-L243C82" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L243C39-L243C82" }, { "DocsId": "P:System.Drawing.Brushes.MediumOrchid", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L244C41-L244C88" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L244C41-L244C88" }, { "DocsId": "P:System.Drawing.Brushes.MediumPurple", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L245C41-L245C88" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L245C41-L245C88" }, { "DocsId": "P:System.Drawing.Brushes.MediumSeaGreen", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L246C43-L246C94" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L246C43-L246C94" }, { "DocsId": "P:System.Drawing.Brushes.MediumSlateBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L247C44-L247C97" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L247C44-L247C97" }, { "DocsId": "P:System.Drawing.Brushes.MediumSpringGreen", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L248C46-L248C103" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L248C46-L248C103" }, { "DocsId": "P:System.Drawing.Brushes.MediumTurquoise", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L249C44-L249C97" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L249C44-L249C97" }, { "DocsId": "P:System.Drawing.Brushes.MediumVioletRed", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L250C44-L250C97" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L250C44-L250C97" }, { "DocsId": "P:System.Drawing.Brushes.MidnightBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L251C41-L251C88" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L251C41-L251C88" }, { "DocsId": "P:System.Drawing.Brushes.MintCream", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L252C38-L252C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L252C38-L252C79" }, { "DocsId": "P:System.Drawing.Brushes.MistyRose", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L253C38-L253C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L253C38-L253C79" }, { "DocsId": "P:System.Drawing.Brushes.Moccasin", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L254C37-L254C76" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L254C37-L254C76" }, { "DocsId": "P:System.Drawing.Brushes.NavajoWhite", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L256C40-L256C85" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L256C40-L256C85" }, { "DocsId": "P:System.Drawing.Brushes.Navy", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L257C33-L257C64" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L257C33-L257C64" }, { "DocsId": "P:System.Drawing.Brushes.OldLace", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L259C36-L259C73" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L259C36-L259C73" }, { "DocsId": "P:System.Drawing.Brushes.Olive", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L260C34-L260C67" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L260C34-L260C67" }, { "DocsId": "P:System.Drawing.Brushes.OliveDrab", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L261C38-L261C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L261C38-L261C79" }, { "DocsId": "P:System.Drawing.Brushes.Orange", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L262C35-L262C70" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L262C35-L262C70" }, { "DocsId": "P:System.Drawing.Brushes.OrangeRed", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L263C38-L263C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L263C38-L263C79" }, { "DocsId": "P:System.Drawing.Brushes.Orchid", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L264C35-L264C70" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L264C35-L264C70" }, { "DocsId": "P:System.Drawing.Brushes.PaleGoldenrod", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L266C42-L266C91" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L266C42-L266C91" }, { "DocsId": "P:System.Drawing.Brushes.PaleGreen", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L267C38-L267C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L267C38-L267C79" }, { "DocsId": "P:System.Drawing.Brushes.PaleTurquoise", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L268C42-L268C91" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L268C42-L268C91" }, { "DocsId": "P:System.Drawing.Brushes.PaleVioletRed", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L269C42-L269C91" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L269C42-L269C91" }, { "DocsId": "P:System.Drawing.Brushes.PapayaWhip", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L270C39-L270C82" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L270C39-L270C82" }, { "DocsId": "P:System.Drawing.Brushes.PeachPuff", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L271C38-L271C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L271C38-L271C79" }, { "DocsId": "P:System.Drawing.Brushes.Peru", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L272C33-L272C64" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L272C33-L272C64" }, { "DocsId": "P:System.Drawing.Brushes.Pink", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L273C33-L273C64" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L273C33-L273C64" }, { "DocsId": "P:System.Drawing.Brushes.Plum", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L274C33-L274C64" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L274C33-L274C64" }, { "DocsId": "P:System.Drawing.Brushes.PowderBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L275C39-L275C82" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L275C39-L275C82" }, { "DocsId": "P:System.Drawing.Brushes.Purple", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L276C35-L276C70" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L276C35-L276C70" }, { "DocsId": "P:System.Drawing.Brushes.Red", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L278C32-L278C61" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L278C32-L278C61" }, { "DocsId": "P:System.Drawing.Brushes.RosyBrown", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L279C38-L279C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L279C38-L279C79" }, { "DocsId": "P:System.Drawing.Brushes.RoyalBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L280C38-L280C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L280C38-L280C79" }, { "DocsId": "P:System.Drawing.Brushes.SaddleBrown", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L282C40-L282C85" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L282C40-L282C85" }, { "DocsId": "P:System.Drawing.Brushes.Salmon", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L283C35-L283C70" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L283C35-L283C70" }, { "DocsId": "P:System.Drawing.Brushes.SandyBrown", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L284C39-L284C82" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L284C39-L284C82" }, { "DocsId": "P:System.Drawing.Brushes.SeaGreen", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L285C37-L285C76" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L285C37-L285C76" }, { "DocsId": "P:System.Drawing.Brushes.SeaShell", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L286C37-L286C76" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L286C37-L286C76" }, { "DocsId": "P:System.Drawing.Brushes.Sienna", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L287C35-L287C70" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L287C35-L287C70" }, { "DocsId": "P:System.Drawing.Brushes.Silver", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L288C35-L288C70" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L288C35-L288C70" }, { "DocsId": "P:System.Drawing.Brushes.SkyBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L289C36-L289C73" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L289C36-L289C73" }, { "DocsId": "P:System.Drawing.Brushes.SlateBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L290C38-L290C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L290C38-L290C79" }, { "DocsId": "P:System.Drawing.Brushes.SlateGray", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L291C38-L291C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L291C38-L291C79" }, { "DocsId": "P:System.Drawing.Brushes.Snow", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L292C33-L292C64" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L292C33-L292C64" }, { "DocsId": "P:System.Drawing.Brushes.SpringGreen", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L293C40-L293C85" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L293C40-L293C85" }, { "DocsId": "P:System.Drawing.Brushes.SteelBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L294C38-L294C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L294C38-L294C79" }, { "DocsId": "P:System.Drawing.Brushes.Tan", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L296C32-L296C61" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L296C32-L296C61" }, { "DocsId": "P:System.Drawing.Brushes.Teal", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L297C33-L297C64" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L297C33-L297C64" }, { "DocsId": "P:System.Drawing.Brushes.Thistle", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L298C36-L298C73" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L298C36-L298C73" }, { "DocsId": "P:System.Drawing.Brushes.Tomato", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L299C35-L299C70" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L299C35-L299C70" }, { "DocsId": "P:System.Drawing.Brushes.Turquoise", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L300C38-L300C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L300C38-L300C79" }, { "DocsId": "P:System.Drawing.Brushes.Violet", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L302C35-L302C70" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L302C35-L302C70" }, { "DocsId": "P:System.Drawing.Brushes.Wheat", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L304C34-L304C67" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L304C34-L304C67" }, { "DocsId": "P:System.Drawing.Brushes.White", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L305C34-L305C67" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L305C34-L305C67" }, { "DocsId": "P:System.Drawing.Brushes.WhiteSmoke", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L306C39-L306C82" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L306C39-L306C82" }, { "DocsId": "P:System.Drawing.Brushes.Yellow", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L308C35-L308C70" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L308C35-L308C70" }, { "DocsId": "P:System.Drawing.Brushes.YellowGreen", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L309C40-L309C85" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs#L309C40-L309C85" } ], "DocsId": "T:System.Drawing.Brushes", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Brushes.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Brushes.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.BufferedGraphics.Dispose", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/BufferedGraphics.cs#L39C9-L55C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/BufferedGraphics.cs#L39C9-L55C6" }, { "DocsId": "M:System.Drawing.BufferedGraphics.Render(System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/BufferedGraphics.cs#L67C9-L80C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/BufferedGraphics.cs#L67C9-L80C6" }, { "DocsId": "M:System.Drawing.BufferedGraphics.Render", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/BufferedGraphics.cs#L120C9-L128C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/BufferedGraphics.cs#L120C9-L128C6" }, { "DocsId": "M:System.Drawing.BufferedGraphics.Render(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/BufferedGraphics.cs#L133C44-L133C89" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/BufferedGraphics.cs#L133C44-L133C89" }, { "DocsId": "P:System.Drawing.BufferedGraphics.Graphics", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/BufferedGraphics.cs#L60C33-L60C57" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/BufferedGraphics.cs#L60C33-L60C57" } ], "DocsId": "T:System.Drawing.BufferedGraphics", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/BufferedGraphics.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/BufferedGraphics.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.BufferedGraphicsContext.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/BufferedGraphicsContext.cs#L16C5-L39C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/BufferedGraphicsContext.cs#L16C5-L39C6" }, { "DocsId": "M:System.Drawing.BufferedGraphicsContext.Finalize", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/BufferedGraphicsContext.cs#L68C35-L68C49" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/BufferedGraphicsContext.cs#L68C35-L16707566C0" }, { "DocsId": "M:System.Drawing.BufferedGraphicsContext.Allocate(System.Drawing.Graphics,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/BufferedGraphicsContext.cs#L75C9-L80C71" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/BufferedGraphicsContext.cs#L75C9-L80C71" }, { "DocsId": "M:System.Drawing.BufferedGraphicsContext.Allocate(System.IntPtr,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/BufferedGraphicsContext.cs#L88C9-L93C66" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/BufferedGraphicsContext.cs#L88C9-L93C66" }, { "DocsId": "M:System.Drawing.BufferedGraphicsContext.Dispose", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/BufferedGraphicsContext.cs#L172C9-L174C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/BufferedGraphicsContext.cs#L172C9-L174C6" }, { "DocsId": "M:System.Drawing.BufferedGraphicsContext.Invalidate", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/BufferedGraphicsContext.cs#L494C9-L507C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/BufferedGraphicsContext.cs#L496C9-L509C6" }, { "DocsId": "P:System.Drawing.BufferedGraphicsContext.MaximumBuffer", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/BufferedGraphicsContext.cs#L49C16-L49C30" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/BufferedGraphicsContext.cs#L49C16-L49C30" } ], "DocsId": "T:System.Drawing.BufferedGraphicsContext", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/BufferedGraphicsContext.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/BufferedGraphicsContext.cs" }, { "Members": [ { "DocsId": "P:System.Drawing.BufferedGraphicsManager.Current", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/BufferedGraphicsManager.cs#L24C53-L24C57" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/BufferedGraphicsManager.cs#L24C53-L24C57" } ], "DocsId": "T:System.Drawing.BufferedGraphicsManager", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/BufferedGraphicsManager.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/BufferedGraphicsManager.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.CharacterRange.#ctor(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/CharacterRange.cs#L17C9-L19C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/CharacterRange.cs#L17C9-L19C6" }, { "DocsId": "M:System.Drawing.CharacterRange.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/CharacterRange.cs#L36C9-L36C53" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/CharacterRange.cs#L36C9-L36C53" }, { "DocsId": "M:System.Drawing.CharacterRange.Equals(System.Drawing.CharacterRange)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/CharacterRange.cs#L41C58-L41C104" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/CharacterRange.cs#L41C58-L41C104" }, { "DocsId": "M:System.Drawing.CharacterRange.op_Equality(System.Drawing.CharacterRange,System.Drawing.CharacterRange)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/CharacterRange.cs#L43C79-L43C94" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/CharacterRange.cs#L43C79-L43C94" }, { "DocsId": "M:System.Drawing.CharacterRange.op_Inequality(System.Drawing.CharacterRange,System.Drawing.CharacterRange)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/CharacterRange.cs#L45C79-L45C95" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/CharacterRange.cs#L45C79-L45C95" }, { "DocsId": "M:System.Drawing.CharacterRange.GetHashCode", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/CharacterRange.cs#L47C51-L47C82" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/CharacterRange.cs#L47C51-L47C82" }, { "DocsId": "P:System.Drawing.CharacterRange.First", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/CharacterRange.cs#L24C25-L24C31" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/CharacterRange.cs#L24C25-L24C31" }, { "DocsId": "P:System.Drawing.CharacterRange.Length", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/CharacterRange.cs#L31C25-L31C32" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/CharacterRange.cs#L31C25-L31C32" } ], "DocsId": "T:System.Drawing.CharacterRange", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/CharacterRange.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/CharacterRange.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.ContentAlignment.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/ContentAlignment.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/ContentAlignment.cs" }, { "DocsId": "F:System.Drawing.ContentAlignment.TopLeft", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/ContentAlignment.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/ContentAlignment.cs" }, { "DocsId": "F:System.Drawing.ContentAlignment.TopCenter", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/ContentAlignment.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/ContentAlignment.cs" }, { "DocsId": "F:System.Drawing.ContentAlignment.TopRight", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/ContentAlignment.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/ContentAlignment.cs" }, { "DocsId": "F:System.Drawing.ContentAlignment.MiddleLeft", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/ContentAlignment.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/ContentAlignment.cs" }, { "DocsId": "F:System.Drawing.ContentAlignment.MiddleCenter", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/ContentAlignment.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/ContentAlignment.cs" }, { "DocsId": "F:System.Drawing.ContentAlignment.MiddleRight", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/ContentAlignment.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/ContentAlignment.cs" }, { "DocsId": "F:System.Drawing.ContentAlignment.BottomLeft", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/ContentAlignment.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/ContentAlignment.cs" }, { "DocsId": "F:System.Drawing.ContentAlignment.BottomCenter", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/ContentAlignment.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/ContentAlignment.cs" }, { "DocsId": "F:System.Drawing.ContentAlignment.BottomRight", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/ContentAlignment.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/ContentAlignment.cs" } ], "DocsId": "T:System.Drawing.ContentAlignment", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/ContentAlignment.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/ContentAlignment.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.CopyPixelOperation.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" }, { "DocsId": "F:System.Drawing.CopyPixelOperation.Blackness", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" }, { "DocsId": "F:System.Drawing.CopyPixelOperation.CaptureBlt", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" }, { "DocsId": "F:System.Drawing.CopyPixelOperation.DestinationInvert", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" }, { "DocsId": "F:System.Drawing.CopyPixelOperation.MergeCopy", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" }, { "DocsId": "F:System.Drawing.CopyPixelOperation.MergePaint", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" }, { "DocsId": "F:System.Drawing.CopyPixelOperation.NoMirrorBitmap", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" }, { "DocsId": "F:System.Drawing.CopyPixelOperation.NotSourceCopy", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" }, { "DocsId": "F:System.Drawing.CopyPixelOperation.NotSourceErase", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" }, { "DocsId": "F:System.Drawing.CopyPixelOperation.PatCopy", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" }, { "DocsId": "F:System.Drawing.CopyPixelOperation.PatInvert", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" }, { "DocsId": "F:System.Drawing.CopyPixelOperation.PatPaint", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" }, { "DocsId": "F:System.Drawing.CopyPixelOperation.SourceAnd", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" }, { "DocsId": "F:System.Drawing.CopyPixelOperation.SourceCopy", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" }, { "DocsId": "F:System.Drawing.CopyPixelOperation.SourceErase", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" }, { "DocsId": "F:System.Drawing.CopyPixelOperation.SourceInvert", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" }, { "DocsId": "F:System.Drawing.CopyPixelOperation.SourcePaint", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" }, { "DocsId": "F:System.Drawing.CopyPixelOperation.Whiteness", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" } ], "DocsId": "T:System.Drawing.CopyPixelOperation", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/CopyPixelOperation.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Font.Finalize", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L140C16-L140C30" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L141C16-L16707566C0" }, { "DocsId": "M:System.Drawing.Font.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L154C9-L159C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L155C9-L160C6" }, { "DocsId": "M:System.Drawing.Font.Dispose", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L168C9-L170C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L169C9-L171C6" }, { "DocsId": "M:System.Drawing.Font.GetHeight(System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L201C9-L211C23" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L202C9-L212C23" }, { "DocsId": "M:System.Drawing.Font.GetHeight(System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L217C9-L219C23" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L218C9-L220C23" }, { "DocsId": "M:System.Drawing.Font.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L228C9-L247C34" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L229C9-L248C34" }, { "DocsId": "M:System.Drawing.Font.GetHashCode", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L253C42-L253C83" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L254C42-L254C83" }, { "DocsId": "M:System.Drawing.Font.ToString", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L259C9-L259C158" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L260C9-L260C158" }, { "DocsId": "M:System.Drawing.Font.ToLogFont(System.Object,System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L267C9-L296C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L268C9-L297C6" }, { "DocsId": "M:System.Drawing.Font.ToLogFont(System.Drawing.Interop.LOGFONT@,System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L305C9-L329C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L306C9-L330C6" }, { "DocsId": "M:System.Drawing.Font.#ctor(System.Drawing.Font,System.Drawing.FontStyle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L26C5-L367C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L27C5-L368C6" }, { "DocsId": "M:System.Drawing.Font.#ctor(System.Drawing.FontFamily,System.Single,System.Drawing.FontStyle,System.Drawing.GraphicsUnit)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L26C5-L375C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L27C5-L376C6" }, { "DocsId": "M:System.Drawing.Font.#ctor(System.Drawing.FontFamily,System.Single,System.Drawing.FontStyle,System.Drawing.GraphicsUnit,System.Byte)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L26C5-L383C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L27C5-L384C6" }, { "DocsId": "M:System.Drawing.Font.#ctor(System.Drawing.FontFamily,System.Single,System.Drawing.FontStyle,System.Drawing.GraphicsUnit,System.Byte,System.Boolean)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L26C5-L391C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L27C5-L392C6" }, { "DocsId": "M:System.Drawing.Font.#ctor(System.String,System.Single,System.Drawing.FontStyle,System.Drawing.GraphicsUnit,System.Byte)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L26C5-L399C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L27C5-L400C6" }, { "DocsId": "M:System.Drawing.Font.#ctor(System.String,System.Single,System.Drawing.FontStyle,System.Drawing.GraphicsUnit,System.Byte,System.Boolean)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L26C5-L412C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L27C5-L413C6" }, { "DocsId": "M:System.Drawing.Font.#ctor(System.Drawing.FontFamily,System.Single,System.Drawing.FontStyle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L26C5-L420C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L27C5-L421C6" }, { "DocsId": "M:System.Drawing.Font.#ctor(System.Drawing.FontFamily,System.Single,System.Drawing.GraphicsUnit)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L26C5-L428C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L27C5-L429C6" }, { "DocsId": "M:System.Drawing.Font.#ctor(System.Drawing.FontFamily,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L26C5-L436C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L27C5-L437C6" }, { "DocsId": "M:System.Drawing.Font.#ctor(System.String,System.Single,System.Drawing.FontStyle,System.Drawing.GraphicsUnit)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L26C5-L444C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L27C5-L445C6" }, { "DocsId": "M:System.Drawing.Font.#ctor(System.String,System.Single,System.Drawing.FontStyle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L26C5-L452C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L27C5-L453C6" }, { "DocsId": "M:System.Drawing.Font.#ctor(System.String,System.Single,System.Drawing.GraphicsUnit)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L26C5-L460C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L27C5-L461C6" }, { "DocsId": "M:System.Drawing.Font.#ctor(System.String,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L26C5-L468C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L27C5-L469C6" }, { "DocsId": "M:System.Drawing.Font.FromHfont(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L546C9-L550C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L547C9-L551C6" }, { "DocsId": "M:System.Drawing.Font.FromLogFont(System.Object)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L559C9-L561C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L560C9-L562C6" }, { "DocsId": "M:System.Drawing.Font.FromLogFont(System.Drawing.Interop.LOGFONT@)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L570C9-L572C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L571C9-L573C6" }, { "DocsId": "M:System.Drawing.Font.FromLogFont(System.Drawing.Interop.LOGFONT@,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L580C5-L604C77" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L581C5-L605C77" }, { "DocsId": "M:System.Drawing.Font.FromLogFont(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L616C9-L642C45" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L617C9-L643C45" }, { "DocsId": "M:System.Drawing.Font.FromHdc(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L652C9-L664C58" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L653C9-L665C58" }, { "DocsId": "M:System.Drawing.Font.Clone", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L673C9-L675C62" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L674C9-L676C62" }, { "DocsId": "M:System.Drawing.Font.ToLogFont(System.Object)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L703C9-L706C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L704C9-L707C6" }, { "DocsId": "M:System.Drawing.Font.ToLogFont(System.Drawing.Interop.LOGFONT@)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L711C9-L714C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L712C9-L715C6" }, { "DocsId": "M:System.Drawing.Font.ToHfont", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L722C9-L727C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L723C9-L728C6" }, { "DocsId": "M:System.Drawing.Font.GetHeight", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L731C9-L734C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L732C9-L735C6" }, { "DocsId": "P:System.Drawing.Font.Size", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L35C26-L35C35" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L36C26-L36C35" }, { "DocsId": "P:System.Drawing.Font.Style", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L41C31-L41C41" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L42C31-L42C41" }, { "DocsId": "P:System.Drawing.Font.Bold", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L47C25-L47C54" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L48C25-L48C54" }, { "DocsId": "P:System.Drawing.Font.Italic", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L53C27-L53C58" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L54C27-L54C58" }, { "DocsId": "P:System.Drawing.Font.Strikeout", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L59C30-L59C64" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L60C30-L60C64" }, { "DocsId": "P:System.Drawing.Font.Underline", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L65C30-L65C64" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L66C30-L66C64" }, { "DocsId": "P:System.Drawing.Font.FontFamily", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L71C37-L71C48" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L72C37-L72C48" }, { "DocsId": "P:System.Drawing.Font.Name", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L80C27-L80C42" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L81C27-L81C42" }, { "DocsId": "P:System.Drawing.Font.Unit", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L86C33-L86C42" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L87C33-L87C42" }, { "DocsId": "P:System.Drawing.Font.GdiCharSet", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L97C31-L97C42" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L98C31-L98C42" }, { "DocsId": "P:System.Drawing.Font.GdiVerticalFont", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L106C36-L106C52" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L107C36-L107C52" }, { "DocsId": "P:System.Drawing.Font.OriginalFontName", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L112C40-L112C57" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L113C40-L113C57" }, { "DocsId": "P:System.Drawing.Font.SystemFontName", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L118C37-L118C52" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L119C37-L119C52" }, { "DocsId": "P:System.Drawing.Font.IsSystemFont", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L124C33-L124C71" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L125C33-L125C71" }, { "DocsId": "P:System.Drawing.Font.Height", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L130C26-L130C56" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L131C26-L131C56" }, { "DocsId": "P:System.Drawing.Font.SizeInPoints", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs#L744C13-L757C10" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs#L745C13-L758C10" } ], "DocsId": "T:System.Drawing.Font", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Font.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Font.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.FontConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L19C9-L19C89" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L19C9-L19C89" }, { "DocsId": "M:System.Drawing.FontConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L24C9-L24C103" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L24C9-L24C103" }, { "DocsId": "M:System.Drawing.FontConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L29C9-L146C73" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L29C9-L146C73" }, { "DocsId": "M:System.Drawing.FontConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L151C9-L251C63" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L151C9-L251C63" }, { "DocsId": "M:System.Drawing.FontConverter.CreateInstance(System.ComponentModel.ITypeDescriptorContext,System.Collections.IDictionary)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L314C9-L400C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L314C9-L400C75" }, { "DocsId": "M:System.Drawing.FontConverter.GetCreateInstanceSupported(System.ComponentModel.ITypeDescriptorContext)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L403C89-L403C93" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L403C89-L403C93" }, { "DocsId": "M:System.Drawing.FontConverter.GetProperties(System.ComponentModel.ITypeDescriptorContext,System.Object,System.Attribute[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L411C9-L415C86" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L411C9-L415C86" }, { "DocsId": "M:System.Drawing.FontConverter.GetPropertiesSupported(System.ComponentModel.ITypeDescriptorContext)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L418C85-L418C89" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L418C85-L418C89" }, { "DocsId": "M:System.Drawing.FontConverter.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs" }, { "DocsId": "T:System.Drawing.FontConverter.FontNameConverter", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs" }, { "DocsId": "T:System.Drawing.FontConverter.FontUnitConverter", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs" } ], "DocsId": "T:System.Drawing.FontConverter", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.FontFamily.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L56C5-L56C67" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L56C5-L56C67" }, { "DocsId": "M:System.Drawing.FontFamily.#ctor(System.String,System.Drawing.Text.FontCollection)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L62C5-L62C109" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L62C5-L62C109" }, { "DocsId": "M:System.Drawing.FontFamily.#ctor(System.Drawing.Text.GenericFontFamilies)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L108C5-L127C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L108C5-L127C6" }, { "DocsId": "M:System.Drawing.FontFamily.Finalize", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L129C22-L129C47" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L129C22-L16707566C0" }, { "DocsId": "M:System.Drawing.FontFamily.ToString", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L136C42-L136C76" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L136C42-L136C76" }, { "DocsId": "M:System.Drawing.FontFamily.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L140C9-L153C57" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L140C9-L153C57" }, { "DocsId": "M:System.Drawing.FontFamily.GetHashCode", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L159C42-L159C80" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L159C42-L159C80" }, { "DocsId": "M:System.Drawing.FontFamily.Dispose", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L168C9-L170C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L168C9-L170C6" }, { "DocsId": "M:System.Drawing.FontFamily.GetName(System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L206C9-L208C26" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L206C9-L208C26" }, { "DocsId": "M:System.Drawing.FontFamily.GetFamilies(System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L246C9-L247C55" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L246C9-L247C55" }, { "DocsId": "M:System.Drawing.FontFamily.IsStyleAvailable(System.Drawing.FontStyle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L256C9-L258C33" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L256C9-L258C33" }, { "DocsId": "M:System.Drawing.FontFamily.GetEmHeight(System.Drawing.FontStyle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L267C9-L269C25" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L267C9-L269C25" }, { "DocsId": "M:System.Drawing.FontFamily.GetCellAscent(System.Drawing.FontStyle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L278C9-L280C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L278C9-L280C27" }, { "DocsId": "M:System.Drawing.FontFamily.GetCellDescent(System.Drawing.FontStyle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L289C9-L291C28" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L289C9-L291C28" }, { "DocsId": "M:System.Drawing.FontFamily.GetLineSpacing(System.Drawing.FontStyle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L301C9-L303C28" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L301C9-L303C28" }, { "DocsId": "P:System.Drawing.FontFamily.Name", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L199C27-L199C51" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L199C27-L199C51" }, { "DocsId": "P:System.Drawing.FontFamily.Families", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L215C44-L215C82" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L215C44-L215C82" }, { "DocsId": "P:System.Drawing.FontFamily.GenericSansSerif", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L220C50-L220C80" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L220C50-L220C80" }, { "DocsId": "P:System.Drawing.FontFamily.GenericSerif", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L232C46-L232C76" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L232C46-L232C76" }, { "DocsId": "P:System.Drawing.FontFamily.GenericMonospace", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L237C50-L237C84" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs#L237C50-L237C84" } ], "DocsId": "T:System.Drawing.FontFamily", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontFamily.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.FontStyle.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontStyle.cs" }, { "DocsId": "F:System.Drawing.FontStyle.Regular", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontStyle.cs" }, { "DocsId": "F:System.Drawing.FontStyle.Bold", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontStyle.cs" }, { "DocsId": "F:System.Drawing.FontStyle.Italic", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontStyle.cs" }, { "DocsId": "F:System.Drawing.FontStyle.Underline", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontStyle.cs" }, { "DocsId": "F:System.Drawing.FontStyle.Strikeout", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontStyle.cs" } ], "DocsId": "T:System.Drawing.FontStyle", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontStyle.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Graphics.FromHdc(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L82C9-L85C37" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L82C9-L85C37" }, { "DocsId": "M:System.Drawing.Graphics.FromHdcInternal(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L92C9-L93C45" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L92C9-L93C45" }, { "DocsId": "M:System.Drawing.Graphics.FromHdc(System.IntPtr,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L103C9-L104C45" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L103C9-L104C45" }, { "DocsId": "M:System.Drawing.Graphics.FromHwnd(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L111C53-L111C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L111C53-L111C75" }, { "DocsId": "M:System.Drawing.Graphics.FromHwndInternal(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L117C9-L118C45" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L117C9-L118C45" }, { "DocsId": "M:System.Drawing.Graphics.FromImage(System.Drawing.Image)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L126C9-L135C71" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L126C9-L135C71" }, { "DocsId": "M:System.Drawing.Graphics.ReleaseHdcInternal(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L141C9-L143C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L141C9-L143C6" }, { "DocsId": "M:System.Drawing.Graphics.Dispose", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L150C9-L152C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L150C9-L152C6" }, { "DocsId": "M:System.Drawing.Graphics.Finalize", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L186C20-L186C45" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L186C20-L16707566C0" }, { "DocsId": "M:System.Drawing.Graphics.IPointer#get_Pointer", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L193C49-L193C63" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L193C49-L193C63" }, { "DocsId": "M:System.Drawing.Graphics.Windows#Win32#Graphics#Gdi#IHdcContext#GetHdc", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L484C33-L484C46" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L484C33-L484C46" }, { "DocsId": "M:System.Drawing.Graphics.GetHdc", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L489C9-L493C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L489C9-L493C27" }, { "DocsId": "M:System.Drawing.Graphics.ReleaseHdc(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L497C43-L497C66" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L497C43-L497C66" }, { "DocsId": "M:System.Drawing.Graphics.ReleaseHdc", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L499C33-L499C63" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L499C33-L499C63" }, { "DocsId": "M:System.Drawing.Graphics.Flush", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L504C28-L504C65" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L504C28-L504C65" }, { "DocsId": "M:System.Drawing.Graphics.Flush(System.Drawing.Drawing2D.FlushIntention)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L510C9-L510C90" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L510C9-L510C90" }, { "DocsId": "M:System.Drawing.Graphics.SetClip(System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L512C40-L512C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L512C40-L512C81" }, { "DocsId": "M:System.Drawing.Graphics.SetClip(System.Drawing.Graphics,System.Drawing.Drawing2D.CombineMode)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L516C9-L520C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L516C9-L520C6" }, { "DocsId": "M:System.Drawing.Graphics.SetClip(System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L522C44-L522C88" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L522C44-L522C88" }, { "DocsId": "M:System.Drawing.Graphics.SetClip(System.Drawing.Rectangle,System.Drawing.Drawing2D.CombineMode)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L524C79-L524C117" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L524C79-L524C117" }, { "DocsId": "M:System.Drawing.Graphics.SetClip(System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L526C45-L526C89" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L526C45-L526C89" }, { "DocsId": "M:System.Drawing.Graphics.SetClip(System.Drawing.RectangleF,System.Drawing.Drawing2D.CombineMode)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L529C9-L529C136" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L529C9-L529C136" }, { "DocsId": "M:System.Drawing.Graphics.SetClip(System.Drawing.Drawing2D.GraphicsPath)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L531C47-L531C91" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L531C47-L531C91" }, { "DocsId": "M:System.Drawing.Graphics.SetClip(System.Drawing.Drawing2D.GraphicsPath,System.Drawing.Drawing2D.CombineMode)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L535C9-L538C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L535C9-L538C6" }, { "DocsId": "M:System.Drawing.Graphics.SetClip(System.Drawing.Region,System.Drawing.Drawing2D.CombineMode)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L542C9-L545C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L542C9-L545C6" }, { "DocsId": "M:System.Drawing.Graphics.IntersectClip(System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L547C50-L547C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L547C50-L547C81" }, { "DocsId": "M:System.Drawing.Graphics.IntersectClip(System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L550C9-L553C55" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L550C9-L553C55" }, { "DocsId": "M:System.Drawing.Graphics.IntersectClip(System.Drawing.Region)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L557C9-L560C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L557C9-L560C6" }, { "DocsId": "M:System.Drawing.Graphics.ExcludeClip(System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L563C9-L566C53" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L563C9-L566C53" }, { "DocsId": "M:System.Drawing.Graphics.ExcludeClip(System.Drawing.Region)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L570C9-L573C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L570C9-L573C6" }, { "DocsId": "M:System.Drawing.Graphics.ResetClip", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L575C32-L575C82" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L575C32-L575C82" }, { "DocsId": "M:System.Drawing.Graphics.TranslateClip(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L577C54-L577C116" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L577C54-L577C116" }, { "DocsId": "M:System.Drawing.Graphics.TranslateClip(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L579C50-L579C112" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L579C50-L579C112" }, { "DocsId": "M:System.Drawing.Graphics.IsVisible(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L581C44-L581C70" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L581C44-L581C70" }, { "DocsId": "M:System.Drawing.Graphics.IsVisible(System.Drawing.Point)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L583C43-L583C70" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L583C43-L583C70" }, { "DocsId": "M:System.Drawing.Graphics.IsVisible(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L588C9-L589C26" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L588C9-L589C26" }, { "DocsId": "M:System.Drawing.Graphics.IsVisible(System.Drawing.PointF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L592C44-L592C71" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L592C44-L592C71" }, { "DocsId": "M:System.Drawing.Graphics.IsVisible(System.Int32,System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L594C67-L594C104" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L594C67-L594C104" }, { "DocsId": "M:System.Drawing.Graphics.IsVisible(System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L596C46-L596C103" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L596C46-L596C103" }, { "DocsId": "M:System.Drawing.Graphics.IsVisible(System.Single,System.Single,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L601C9-L602C26" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L601C9-L602C26" }, { "DocsId": "M:System.Drawing.Graphics.IsVisible(System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L605C47-L605C97" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L605C47-L605C97" }, { "DocsId": "M:System.Drawing.Graphics.ResetTransform", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L610C37-L610C97" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L610C37-L610C97" }, { "DocsId": "M:System.Drawing.Graphics.MultiplyTransform(System.Drawing.Drawing2D.Matrix)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L615C53-L615C99" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L615C53-L615C99" }, { "DocsId": "M:System.Drawing.Graphics.MultiplyTransform(System.Drawing.Drawing2D.Matrix,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L622C9-L625C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L622C9-L625C6" }, { "DocsId": "M:System.Drawing.Graphics.TranslateTransform(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L627C59-L627C106" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L627C59-L627C106" }, { "DocsId": "M:System.Drawing.Graphics.TranslateTransform(System.Single,System.Single,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L630C9-L630C109" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L630C9-L630C109" }, { "DocsId": "M:System.Drawing.Graphics.ScaleTransform(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L632C55-L632C98" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L632C55-L632C98" }, { "DocsId": "M:System.Drawing.Graphics.ScaleTransform(System.Single,System.Single,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L635C9-L635C105" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L635C9-L635C105" }, { "DocsId": "M:System.Drawing.Graphics.RotateTransform(System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L637C49-L637C92" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L637C49-L637C92" }, { "DocsId": "M:System.Drawing.Graphics.RotateTransform(System.Single,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L640C9-L640C105" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L640C9-L640C105" }, { "DocsId": "M:System.Drawing.Graphics.DrawArc(System.Drawing.Pen,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L647C9-L657C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L647C9-L657C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawArc(System.Drawing.Pen,System.Drawing.RectangleF,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L663C9-L663C86" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L663C9-L663C86" }, { "DocsId": "M:System.Drawing.Graphics.DrawArc(System.Drawing.Pen,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L669C12-L669C76" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L669C12-L669C76" }, { "DocsId": "M:System.Drawing.Graphics.DrawArc(System.Drawing.Pen,System.Drawing.Rectangle,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L675C9-L675C86" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L675C9-L675C86" }, { "DocsId": "M:System.Drawing.Graphics.DrawBezier(System.Drawing.Pen,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L682C9-L690C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L682C9-L690C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawBezier(System.Drawing.Pen,System.Drawing.PointF,System.Drawing.PointF,System.Drawing.PointF,System.Drawing.PointF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L696C9-L696C80" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L696C9-L696C80" }, { "DocsId": "M:System.Drawing.Graphics.DrawBezier(System.Drawing.Pen,System.Drawing.Point,System.Drawing.Point,System.Drawing.Point,System.Drawing.Point)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L702C9-L702C80" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L702C9-L702C80" }, { "DocsId": "M:System.Drawing.Graphics.DrawRectangle(System.Drawing.Pen,System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L709C60-L709C119" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L709C60-L709C119" }, { "DocsId": "M:System.Drawing.Graphics.DrawRectangle(System.Drawing.Pen,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L714C59-L714C118" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L714C59-L714C118" }, { "DocsId": "M:System.Drawing.Graphics.DrawRoundedRectangle(System.Drawing.Pen,System.Drawing.Rectangle,System.Drawing.Size)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L719C9-L719C60" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L719C9-L719C60" }, { "DocsId": "M:System.Drawing.Graphics.DrawRoundedRectangle(System.Drawing.Pen,System.Drawing.RectangleF,System.Drawing.SizeF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L728C9-L731C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L728C9-L731C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawRectangle(System.Drawing.Pen,System.Single,System.Single,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L739C9-L742C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L739C9-L742C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawRectangle(System.Drawing.Pen,System.Int32,System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L748C12-L748C58" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L748C12-L748C58" }, { "DocsId": "M:System.Drawing.Graphics.DrawRectangles(System.Drawing.Pen,System.Drawing.RectangleF[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L751C71-L751C122" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L751C71-L751C122" }, { "DocsId": "M:System.Drawing.Graphics.DrawRectangles(System.Drawing.Pen,System.ReadOnlySpan{System.Drawing.RectangleF})", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L761C9-L769C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L761C9-L769C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawRectangles(System.Drawing.Pen,System.Drawing.Rectangle[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L776C70-L776C121" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L776C70-L776C121" }, { "DocsId": "M:System.Drawing.Graphics.DrawRectangles(System.Drawing.Pen,System.ReadOnlySpan{System.Drawing.Rectangle})", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L786C9-L794C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L786C9-L794C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawEllipse(System.Drawing.Pen,System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L799C58-L799C115" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L799C58-L799C115" }, { "DocsId": "M:System.Drawing.Graphics.DrawEllipse(System.Drawing.Pen,System.Single,System.Single,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L806C9-L809C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L806C9-L809C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawEllipse(System.Drawing.Pen,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L814C57-L814C121" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L814C57-L814C121" }, { "DocsId": "M:System.Drawing.Graphics.DrawEllipse(System.Drawing.Pen,System.Int32,System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L819C78-L819C122" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L819C78-L819C122" }, { "DocsId": "M:System.Drawing.Graphics.DrawPie(System.Drawing.Pen,System.Drawing.RectangleF,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L825C9-L825C86" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L825C9-L825C86" }, { "DocsId": "M:System.Drawing.Graphics.DrawPie(System.Drawing.Pen,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L832C9-L835C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L832C9-L835C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawPie(System.Drawing.Pen,System.Drawing.Rectangle,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L841C9-L841C86" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L841C9-L841C86" }, { "DocsId": "M:System.Drawing.Graphics.DrawPie(System.Drawing.Pen,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L847C9-L847C73" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L847C9-L847C73" }, { "DocsId": "M:System.Drawing.Graphics.DrawPolygon(System.Drawing.Pen,System.Drawing.PointF[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L850C65-L850C114" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L850C65-L850C114" }, { "DocsId": "M:System.Drawing.Graphics.DrawPolygon(System.Drawing.Pen,System.ReadOnlySpan{System.Drawing.PointF})", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L860C9-L868C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L860C9-L868C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawPolygon(System.Drawing.Pen,System.Drawing.Point[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L875C64-L875C113" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L875C64-L875C113" }, { "DocsId": "M:System.Drawing.Graphics.DrawPolygon(System.Drawing.Pen,System.ReadOnlySpan{System.Drawing.Point})", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L885C9-L893C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L885C9-L893C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawPath(System.Drawing.Pen,System.Drawing.Drawing2D.GraphicsPath)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L900C9-L907C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L900C9-L907C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawCurve(System.Drawing.Pen,System.Drawing.PointF[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L910C63-L910C110" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L910C63-L910C110" }, { "DocsId": "M:System.Drawing.Graphics.DrawCurve(System.Drawing.Pen,System.ReadOnlySpan{System.Drawing.PointF})", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L920C9-L928C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L920C9-L928C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawCurve(System.Drawing.Pen,System.Drawing.PointF[],System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L932C9-L932C65" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L932C9-L932C65" }, { "DocsId": "M:System.Drawing.Graphics.DrawCurve(System.Drawing.Pen,System.ReadOnlySpan{System.Drawing.PointF},System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L942C9-L954C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L942C9-L954C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawCurve(System.Drawing.Pen,System.Drawing.PointF[],System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L958C9-L958C63" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L958C9-L958C63" }, { "DocsId": "M:System.Drawing.Graphics.DrawCurve(System.Drawing.Pen,System.ReadOnlySpan{System.Drawing.PointF},System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L963C9-L963C63" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L963C9-L963C63" }, { "DocsId": "M:System.Drawing.Graphics.DrawCurve(System.Drawing.Pen,System.Drawing.PointF[],System.Int32,System.Int32,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L968C9-L968C91" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L968C9-L968C91" }, { "DocsId": "M:System.Drawing.Graphics.DrawCurve(System.Drawing.Pen,System.ReadOnlySpan{System.Drawing.PointF},System.Int32,System.Int32,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L978C9-L992C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L978C9-L992C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawCurve(System.Drawing.Pen,System.Drawing.Point[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L995C62-L995C109" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L995C62-L995C109" }, { "DocsId": "M:System.Drawing.Graphics.DrawCurve(System.Drawing.Pen,System.ReadOnlySpan{System.Drawing.Point})", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1005C9-L1013C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1005C9-L1013C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawCurve(System.Drawing.Pen,System.Drawing.Point[],System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1017C9-L1017C65" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1017C9-L1017C65" }, { "DocsId": "M:System.Drawing.Graphics.DrawCurve(System.Drawing.Pen,System.ReadOnlySpan{System.Drawing.Point},System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1027C9-L1039C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1027C9-L1039C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawCurve(System.Drawing.Pen,System.Drawing.Point[],System.Int32,System.Int32,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1050C9-L1050C91" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1050C9-L1050C91" }, { "DocsId": "M:System.Drawing.Graphics.DrawCurve(System.Drawing.Pen,System.ReadOnlySpan{System.Drawing.Point},System.Int32,System.Int32,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1060C9-L1074C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1060C9-L1074C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawClosedCurve(System.Drawing.Pen,System.Drawing.PointF[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1078C9-L1078C62" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1078C9-L1078C62" }, { "DocsId": "M:System.Drawing.Graphics.DrawClosedCurve(System.Drawing.Pen,System.ReadOnlySpan{System.Drawing.PointF})", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1088C9-L1099C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1088C9-L1099C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawClosedCurve(System.Drawing.Pen,System.Drawing.PointF[],System.Single,System.Drawing.Drawing2D.FillMode)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1109C9-L1109C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1109C9-L1109C81" }, { "DocsId": "M:System.Drawing.Graphics.DrawClosedCurve(System.Drawing.Pen,System.ReadOnlySpan{System.Drawing.PointF},System.Single,System.Drawing.Drawing2D.FillMode)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1119C9-L1131C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1119C9-L1131C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawClosedCurve(System.Drawing.Pen,System.Drawing.Point[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1134C61-L1134C114" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1134C61-L1134C114" }, { "DocsId": "M:System.Drawing.Graphics.DrawClosedCurve(System.Drawing.Pen,System.ReadOnlySpan{System.Drawing.Point})", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1144C9-L1155C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1144C9-L1155C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawClosedCurve(System.Drawing.Pen,System.Drawing.Point[],System.Single,System.Drawing.Drawing2D.FillMode)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1160C9-L1160C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1160C9-L1160C81" }, { "DocsId": "M:System.Drawing.Graphics.DrawClosedCurve(System.Drawing.Pen,System.ReadOnlySpan{System.Drawing.Point},System.Single,System.Drawing.Drawing2D.FillMode)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1170C9-L1182C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1170C9-L1182C6" }, { "DocsId": "M:System.Drawing.Graphics.Clear(System.Drawing.Color)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1187C39-L1187C115" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1187C39-L1187C115" }, { "DocsId": "M:System.Drawing.Graphics.FillRoundedRectangle(System.Drawing.Brush,System.Drawing.Rectangle,System.Drawing.Size)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1192C9-L1192C62" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1192C9-L1192C62" }, { "DocsId": "M:System.Drawing.Graphics.FillRoundedRectangle(System.Drawing.Brush,System.Drawing.RectangleF,System.Drawing.SizeF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1202C9-L1205C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1202C9-L1205C6" }, { "DocsId": "M:System.Drawing.Graphics.FillRectangle(System.Drawing.Brush,System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1211C64-L1211C125" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1211C64-L1211C125" }, { "DocsId": "M:System.Drawing.Graphics.FillRectangle(System.Drawing.Brush,System.Single,System.Single,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1218C9-L1226C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1218C9-L1226C6" }, { "DocsId": "M:System.Drawing.Graphics.FillRectangle(System.Drawing.Brush,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1231C63-L1231C131" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1231C63-L1231C131" }, { "DocsId": "M:System.Drawing.Graphics.FillRectangle(System.Drawing.Brush,System.Int32,System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1236C84-L1236C132" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1236C84-L1236C132" }, { "DocsId": "M:System.Drawing.Graphics.FillRectangles(System.Drawing.Brush,System.Drawing.RectangleF[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1245C9-L1247C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1245C9-L1247C6" }, { "DocsId": "M:System.Drawing.Graphics.FillRectangles(System.Drawing.Brush,System.ReadOnlySpan{System.Drawing.RectangleF})", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1257C9-L1265C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1257C9-L1265C6" }, { "DocsId": "M:System.Drawing.Graphics.FillRectangles(System.Drawing.Brush,System.Drawing.Rectangle[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1269C9-L1269C62" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1269C9-L1269C62" }, { "DocsId": "M:System.Drawing.Graphics.FillRectangles(System.Drawing.Brush,System.ReadOnlySpan{System.Drawing.Rectangle})", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1279C9-L1287C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1279C9-L1287C6" }, { "DocsId": "M:System.Drawing.Graphics.FillPolygon(System.Drawing.Brush,System.Drawing.PointF[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1290C69-L1290C115" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1290C69-L1290C115" }, { "DocsId": "M:System.Drawing.Graphics.FillPolygon(System.Drawing.Brush,System.ReadOnlySpan{System.Drawing.PointF})", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1294C74-L1294C120" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1294C74-L1294C120" }, { "DocsId": "M:System.Drawing.Graphics.FillPolygon(System.Drawing.Brush,System.Drawing.PointF[],System.Drawing.Drawing2D.FillMode)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1299C9-L1299C70" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1299C9-L1299C70" }, { "DocsId": "M:System.Drawing.Graphics.FillPolygon(System.Drawing.Brush,System.ReadOnlySpan{System.Drawing.PointF},System.Drawing.Drawing2D.FillMode)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1309C9-L1321C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1309C9-L1321C6" }, { "DocsId": "M:System.Drawing.Graphics.FillPolygon(System.Drawing.Brush,System.Drawing.Point[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1324C61-L1324C107" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1324C61-L1324C107" }, { "DocsId": "M:System.Drawing.Graphics.FillPolygon(System.Drawing.Brush,System.ReadOnlySpan{System.Drawing.Point})", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1328C73-L1328C119" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1328C73-L1328C119" }, { "DocsId": "M:System.Drawing.Graphics.FillPolygon(System.Drawing.Brush,System.Drawing.Point[],System.Drawing.Drawing2D.FillMode)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1338C9-L1338C70" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1338C9-L1338C70" }, { "DocsId": "M:System.Drawing.Graphics.FillPolygon(System.Drawing.Brush,System.ReadOnlySpan{System.Drawing.Point},System.Drawing.Drawing2D.FillMode)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1348C9-L1360C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1348C9-L1360C6" }, { "DocsId": "M:System.Drawing.Graphics.FillEllipse(System.Drawing.Brush,System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1365C62-L1365C121" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1365C62-L1365C121" }, { "DocsId": "M:System.Drawing.Graphics.FillEllipse(System.Drawing.Brush,System.Single,System.Single,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1372C9-L1380C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1372C9-L1380C6" }, { "DocsId": "M:System.Drawing.Graphics.FillEllipse(System.Drawing.Brush,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1385C61-L1385C127" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1385C61-L1385C127" }, { "DocsId": "M:System.Drawing.Graphics.FillEllipse(System.Drawing.Brush,System.Int32,System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1390C82-L1390C128" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1390C82-L1390C128" }, { "DocsId": "M:System.Drawing.Graphics.FillPie(System.Drawing.Brush,System.Drawing.Rectangle,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1396C9-L1396C88" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1396C9-L1396C88" }, { "DocsId": "M:System.Drawing.Graphics.FillPie(System.Drawing.Brush,System.Drawing.RectangleF,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1406C9-L1406C88" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1406C9-L1406C88" }, { "DocsId": "M:System.Drawing.Graphics.FillPie(System.Drawing.Brush,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1413C9-L1423C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1413C9-L1423C6" }, { "DocsId": "M:System.Drawing.Graphics.FillPie(System.Drawing.Brush,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1429C12-L1429C78" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1429C12-L1429C78" }, { "DocsId": "M:System.Drawing.Graphics.FillClosedCurve(System.Drawing.Brush,System.Drawing.PointF[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1433C9-L1433C64" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1433C9-L1433C64" }, { "DocsId": "M:System.Drawing.Graphics.FillClosedCurve(System.Drawing.Brush,System.ReadOnlySpan{System.Drawing.PointF})", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1443C9-L1454C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1443C9-L1454C6" }, { "DocsId": "M:System.Drawing.Graphics.FillClosedCurve(System.Drawing.Brush,System.Drawing.PointF[],System.Drawing.Drawing2D.FillMode)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1458C9-L1458C55" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1458C9-L1458C55" }, { "DocsId": "M:System.Drawing.Graphics.FillClosedCurve(System.Drawing.Brush,System.ReadOnlySpan{System.Drawing.PointF},System.Drawing.Drawing2D.FillMode)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1463C9-L1463C55" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1463C9-L1463C55" }, { "DocsId": "M:System.Drawing.Graphics.FillClosedCurve(System.Drawing.Brush,System.Drawing.PointF[],System.Drawing.Drawing2D.FillMode,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1474C9-L1474C83" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1474C9-L1474C83" }, { "DocsId": "M:System.Drawing.Graphics.FillClosedCurve(System.Drawing.Brush,System.ReadOnlySpan{System.Drawing.PointF},System.Drawing.Drawing2D.FillMode,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1484C9-L1497C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1484C9-L1497C6" }, { "DocsId": "M:System.Drawing.Graphics.FillClosedCurve(System.Drawing.Brush,System.Drawing.Point[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1501C9-L1501C64" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1501C9-L1501C64" }, { "DocsId": "M:System.Drawing.Graphics.FillClosedCurve(System.Drawing.Brush,System.ReadOnlySpan{System.Drawing.Point})", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1511C9-L1522C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1511C9-L1522C6" }, { "DocsId": "M:System.Drawing.Graphics.FillClosedCurve(System.Drawing.Brush,System.Drawing.Point[],System.Drawing.Drawing2D.FillMode)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1526C9-L1526C55" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1526C9-L1526C55" }, { "DocsId": "M:System.Drawing.Graphics.FillClosedCurve(System.Drawing.Brush,System.ReadOnlySpan{System.Drawing.Point},System.Drawing.Drawing2D.FillMode)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1531C9-L1531C55" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1531C9-L1531C55" }, { "DocsId": "M:System.Drawing.Graphics.FillClosedCurve(System.Drawing.Brush,System.Drawing.Point[],System.Drawing.Drawing2D.FillMode,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1537C9-L1537C83" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1537C9-L1537C83" }, { "DocsId": "M:System.Drawing.Graphics.FillClosedCurve(System.Drawing.Brush,System.ReadOnlySpan{System.Drawing.Point},System.Drawing.Drawing2D.FillMode,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1547C9-L1560C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1547C9-L1560C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawString(System.String,System.Drawing.Font,System.Drawing.Brush,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1575C9-L1575C69" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1575C9-L1575C69" }, { "DocsId": "M:System.Drawing.Graphics.DrawString(System.ReadOnlySpan{System.Char},System.Drawing.Font,System.Drawing.Brush,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1580C9-L1580C69" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1580C9-L1580C69" }, { "DocsId": "M:System.Drawing.Graphics.DrawString(System.String,System.Drawing.Font,System.Drawing.Brush,System.Drawing.PointF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1595C9-L1595C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1595C9-L1595C81" }, { "DocsId": "M:System.Drawing.Graphics.DrawString(System.ReadOnlySpan{System.Char},System.Drawing.Font,System.Drawing.Brush,System.Drawing.PointF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1600C9-L1600C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1600C9-L1600C81" }, { "DocsId": "M:System.Drawing.Graphics.DrawString(System.String,System.Drawing.Font,System.Drawing.Brush,System.Single,System.Single,System.Drawing.StringFormat)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1620C9-L1620C71" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1620C9-L1620C71" }, { "DocsId": "M:System.Drawing.Graphics.DrawString(System.ReadOnlySpan{System.Char},System.Drawing.Font,System.Drawing.Brush,System.Single,System.Single,System.Drawing.StringFormat)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1625C9-L1625C71" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1625C9-L1625C71" }, { "DocsId": "M:System.Drawing.Graphics.DrawString(System.String,System.Drawing.Font,System.Drawing.Brush,System.Drawing.PointF,System.Drawing.StringFormat)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1644C9-L1644C83" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1644C9-L1644C83" }, { "DocsId": "M:System.Drawing.Graphics.DrawString(System.ReadOnlySpan{System.Char},System.Drawing.Font,System.Drawing.Brush,System.Drawing.PointF,System.Drawing.StringFormat)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1649C9-L1649C83" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1649C9-L1649C83" }, { "DocsId": "M:System.Drawing.Graphics.DrawString(System.String,System.Drawing.Font,System.Drawing.Brush,System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1673C9-L1673C58" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1673C9-L1673C58" }, { "DocsId": "M:System.Drawing.Graphics.DrawString(System.ReadOnlySpan{System.Char},System.Drawing.Font,System.Drawing.Brush,System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1687C9-L1687C58" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1687C9-L1687C58" }, { "DocsId": "M:System.Drawing.Graphics.DrawString(System.String,System.Drawing.Font,System.Drawing.Brush,System.Drawing.RectangleF,System.Drawing.StringFormat)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1713C9-L1713C68" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1713C9-L1713C68" }, { "DocsId": "M:System.Drawing.Graphics.DrawString(System.ReadOnlySpan{System.Char},System.Drawing.Font,System.Drawing.Brush,System.Drawing.RectangleF,System.Drawing.StringFormat)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1718C9-L1718C68" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1718C9-L1718C68" }, { "DocsId": "M:System.Drawing.Graphics.MeasureString(System.String,System.Drawing.Font,System.Drawing.SizeF,System.Drawing.StringFormat,System.Int32@,System.Int32@)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1758C9-L1758C121" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1758C9-L1758C121" }, { "DocsId": "M:System.Drawing.Graphics.MeasureString(System.ReadOnlySpan{System.Char},System.Drawing.Font,System.Drawing.SizeF,System.Drawing.StringFormat,System.Int32@,System.Int32@)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1769C9-L1769C121" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1769C9-L1769C121" }, { "DocsId": "M:System.Drawing.Graphics.MeasureStringInternal(System.ReadOnlySpan{System.Char},System.Drawing.Font,System.Drawing.RectangleF,System.Drawing.StringFormat,System.Int32@,System.Int32@)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1780C9-L1810C65" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1780C9-L1810C65" }, { "DocsId": "M:System.Drawing.Graphics.MeasureString(System.String,System.Drawing.Font,System.Drawing.PointF,System.Drawing.StringFormat)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1816C12-L1816C95" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1816C12-L1816C95" }, { "DocsId": "M:System.Drawing.Graphics.MeasureString(System.ReadOnlySpan{System.Char},System.Drawing.Font,System.Drawing.PointF,System.Drawing.StringFormat)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1821C12-L1821C95" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1821C12-L1821C95" }, { "DocsId": "M:System.Drawing.Graphics.MeasureString(System.String,System.Drawing.Font,System.Drawing.SizeF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1825C78-L1825C121" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1825C78-L1825C121" }, { "DocsId": "M:System.Drawing.Graphics.MeasureString(System.ReadOnlySpan{System.Char},System.Drawing.Font,System.Drawing.SizeF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1829C89-L1829C132" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1829C89-L1829C132" }, { "DocsId": "M:System.Drawing.Graphics.MeasureString(System.String,System.Drawing.Font,System.Drawing.SizeF,System.Drawing.StringFormat)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1836C9-L1836C96" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1836C9-L1836C96" }, { "DocsId": "M:System.Drawing.Graphics.MeasureString(System.ReadOnlySpan{System.Char},System.Drawing.Font,System.Drawing.SizeF,System.Drawing.StringFormat)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1841C9-L1841C96" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1841C9-L1841C96" }, { "DocsId": "M:System.Drawing.Graphics.MeasureString(System.String,System.Drawing.Font)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1868C60-L1868C102" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1868C60-L1868C102" }, { "DocsId": "M:System.Drawing.Graphics.MeasureString(System.ReadOnlySpan{System.Char},System.Drawing.Font)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1872C71-L1872C113" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1872C71-L1872C113" }, { "DocsId": "M:System.Drawing.Graphics.MeasureString(System.String,System.Drawing.Font,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1877C71-L1877C122" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1877C71-L1877C122" }, { "DocsId": "M:System.Drawing.Graphics.MeasureString(System.ReadOnlySpan{System.Char},System.Drawing.Font,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1882C9-L1882C60" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1882C9-L1882C60" }, { "DocsId": "M:System.Drawing.Graphics.MeasureString(System.String,System.Drawing.Font,System.Int32,System.Drawing.StringFormat)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1888C9-L1888C68" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1888C9-L1888C68" }, { "DocsId": "M:System.Drawing.Graphics.MeasureString(System.ReadOnlySpan{System.Char},System.Drawing.Font,System.Int32,System.Drawing.StringFormat)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1893C9-L1893C68" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1893C9-L1893C68" }, { "DocsId": "M:System.Drawing.Graphics.MeasureCharacterRanges(System.String,System.Drawing.Font,System.Drawing.RectangleF,System.Drawing.StringFormat)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1916C9-L1916C77" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1916C9-L1916C77" }, { "DocsId": "M:System.Drawing.Graphics.MeasureCharacterRanges(System.ReadOnlySpan{System.Char},System.Drawing.Font,System.Drawing.RectangleF,System.Drawing.StringFormat)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1921C9-L1921C77" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1921C9-L1921C77" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.PointF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1975C57-L1975C91" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1975C57-L1975C91" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1979C9-L1983C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1979C9-L1983C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1985C60-L1985C117" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1985C60-L1985C117" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Single,System.Single,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1989C9-L1993C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1989C9-L1993C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.Point)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1995C56-L1995C97" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1995C56-L1995C97" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1997C57-L1997C86" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1997C57-L1997C86" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1999C59-L1999C123" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L1999C59-L1999C123" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Int32,System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2001C80-L2001C124" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2001C80-L2001C124" }, { "DocsId": "M:System.Drawing.Graphics.DrawImageUnscaled(System.Drawing.Image,System.Drawing.Point)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2003C64-L2003C98" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2003C64-L2003C98" }, { "DocsId": "M:System.Drawing.Graphics.DrawImageUnscaled(System.Drawing.Image,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2005C65-L2005C87" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2005C65-L2005C87" }, { "DocsId": "M:System.Drawing.Graphics.DrawImageUnscaled(System.Drawing.Image,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2007C67-L2007C99" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2007C67-L2007C99" }, { "DocsId": "M:System.Drawing.Graphics.DrawImageUnscaled(System.Drawing.Image,System.Int32,System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2009C88-L2009C110" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2009C88-L2009C110" }, { "DocsId": "M:System.Drawing.Graphics.DrawImageUnscaledAndClipped(System.Drawing.Image,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2013C9-L2021C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2013C9-L2021C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.PointF[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2036C9-L2049C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2036C9-L2049C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.Point[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2053C9-L2066C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2053C9-L2066C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Single,System.Single,System.Drawing.RectangleF,System.Drawing.GraphicsUnit)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2070C9-L2081C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2070C9-L2081C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Int32,System.Int32,System.Drawing.Rectangle,System.Drawing.GraphicsUnit)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2084C12-L2084C64" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2084C12-L2084C64" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.RectangleF,System.Drawing.RectangleF,System.Drawing.GraphicsUnit)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2088C9-L2102C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2088C9-L2102C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Drawing.GraphicsUnit)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2105C12-L2105C100" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2105C12-L2105C100" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.PointF[],System.Drawing.RectangleF,System.Drawing.GraphicsUnit)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2109C9-L2131C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2109C9-L2131C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.PointF[],System.Drawing.RectangleF,System.Drawing.GraphicsUnit,System.Drawing.Imaging.ImageAttributes)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2134C9-L2134C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2134C9-L2134C75" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.PointF[],System.Drawing.RectangleF,System.Drawing.GraphicsUnit,System.Drawing.Imaging.ImageAttributes,System.Drawing.Graphics.DrawImageAbort)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2143C9-L2143C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2143C9-L2143C79" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.PointF[],System.Drawing.RectangleF,System.Drawing.GraphicsUnit,System.Drawing.Imaging.ImageAttributes,System.Drawing.Graphics.DrawImageAbort,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2154C9-L2178C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2154C9-L2178C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.Point[],System.Drawing.Rectangle,System.Drawing.GraphicsUnit)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2181C9-L2181C70" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2181C9-L2181C70" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.Point[],System.Drawing.Rectangle,System.Drawing.GraphicsUnit,System.Drawing.Imaging.ImageAttributes)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2188C40-L2188C106" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2188C40-L2188C106" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.Point[],System.Drawing.Rectangle,System.Drawing.GraphicsUnit,System.Drawing.Imaging.ImageAttributes,System.Drawing.Graphics.DrawImageAbort)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2196C38-L2196C108" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2196C38-L2196C108" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.Point[],System.Drawing.Rectangle,System.Drawing.GraphicsUnit,System.Drawing.Imaging.ImageAttributes,System.Drawing.Graphics.DrawImageAbort,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2207C9-L2232C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2207C9-L2232C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.Rectangle,System.Single,System.Single,System.Single,System.Single,System.Drawing.GraphicsUnit)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2241C34-L2241C108" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2241C34-L2241C108" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.Rectangle,System.Single,System.Single,System.Single,System.Single,System.Drawing.GraphicsUnit,System.Drawing.Imaging.ImageAttributes)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2251C41-L2251C127" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2251C41-L2251C127" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.Rectangle,System.Single,System.Single,System.Single,System.Single,System.Drawing.GraphicsUnit,System.Drawing.Imaging.ImageAttributes,System.Drawing.Graphics.DrawImageAbort)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2262C38-L2262C141" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2262C38-L2262C141" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.Rectangle,System.Single,System.Single,System.Single,System.Single,System.Drawing.GraphicsUnit,System.Drawing.Imaging.ImageAttributes,System.Drawing.Graphics.DrawImageAbort,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2276C9-L2292C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2276C9-L2292C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.Rectangle,System.Int32,System.Int32,System.Int32,System.Int32,System.Drawing.GraphicsUnit)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2301C34-L2301C115" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2301C34-L2301C115" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.Rectangle,System.Int32,System.Int32,System.Int32,System.Int32,System.Drawing.GraphicsUnit,System.Drawing.Imaging.ImageAttributes)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2311C40-L2311C132" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2311C40-L2311C132" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.Rectangle,System.Int32,System.Int32,System.Int32,System.Int32,System.Drawing.GraphicsUnit,System.Drawing.Imaging.ImageAttributes,System.Drawing.Graphics.DrawImageAbort)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2322C38-L2322C147" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2322C38-L2322C147" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.Rectangle,System.Int32,System.Int32,System.Int32,System.Int32,System.Drawing.GraphicsUnit,System.Drawing.Imaging.ImageAttributes,System.Drawing.Graphics.DrawImageAbort,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2334C33-L2334C144" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2334C33-L2334C144" }, { "DocsId": "M:System.Drawing.Graphics.DrawLine(System.Drawing.Pen,System.Drawing.PointF,System.Drawing.PointF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2339C62-L2339C103" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2339C62-L2339C103" }, { "DocsId": "M:System.Drawing.Graphics.DrawLines(System.Drawing.Pen,System.Drawing.PointF[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2342C56-L2342C103" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2342C56-L2342C103" }, { "DocsId": "M:System.Drawing.Graphics.DrawLines(System.Drawing.Pen,System.ReadOnlySpan{System.Drawing.PointF})", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2352C9-L2360C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2352C9-L2360C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawLine(System.Drawing.Pen,System.Int32,System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2366C9-L2366C45" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2366C9-L2366C45" }, { "DocsId": "M:System.Drawing.Graphics.DrawLine(System.Drawing.Pen,System.Drawing.Point,System.Drawing.Point)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2371C60-L2371C108" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2371C60-L2371C108" }, { "DocsId": "M:System.Drawing.Graphics.DrawLines(System.Drawing.Pen,System.Drawing.Point[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2380C9-L2389C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2380C9-L2389C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawLines(System.Drawing.Pen,System.ReadOnlySpan{System.Drawing.Point})", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2399C9-L2407C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2399C9-L2407C6" }, { "DocsId": "M:System.Drawing.Graphics.CopyFromScreen(System.Drawing.Point,System.Drawing.Point,System.Drawing.Size)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2413C9-L2413C126" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2413C9-L2413C126" }, { "DocsId": "M:System.Drawing.Graphics.CopyFromScreen(System.Int32,System.Int32,System.Int32,System.Int32,System.Drawing.Size)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2419C9-L2419C117" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2419C9-L2419C117" }, { "DocsId": "M:System.Drawing.Graphics.CopyFromScreen(System.Drawing.Point,System.Drawing.Point,System.Drawing.Size,System.Drawing.CopyPixelOperation)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2426C9-L2426C146" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2426C9-L2426C146" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.PointF,System.Drawing.Graphics.EnumerateMetafileProc)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2429C9-L2429C70" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2429C9-L2429C70" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.PointF,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2432C9-L2432C77" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2432C9-L2432C77" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.Point,System.Drawing.Graphics.EnumerateMetafileProc)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2435C9-L2435C70" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2435C9-L2435C70" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.Point,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2438C9-L2438C77" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2438C9-L2438C77" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.RectangleF,System.Drawing.Graphics.EnumerateMetafileProc)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2441C9-L2441C69" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2441C9-L2441C69" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.RectangleF,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2444C9-L2444C76" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2444C9-L2444C76" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.Rectangle,System.Drawing.Graphics.EnumerateMetafileProc)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2447C9-L2447C69" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2447C9-L2447C69" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.Rectangle,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2450C9-L2450C76" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2450C9-L2450C76" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.PointF[],System.Drawing.Graphics.EnumerateMetafileProc)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2453C9-L2453C71" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2453C9-L2453C71" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.PointF[],System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2459C33-L2459C101" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2459C33-L2459C101" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.Point[],System.Drawing.Graphics.EnumerateMetafileProc)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2462C9-L2462C71" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2462C9-L2462C71" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.Point[],System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2465C9-L2465C78" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2465C9-L2465C78" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.PointF,System.Drawing.RectangleF,System.Drawing.GraphicsUnit,System.Drawing.Graphics.EnumerateMetafileProc)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2472C44-L2472C123" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2472C44-L2472C123" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.PointF,System.Drawing.RectangleF,System.Drawing.GraphicsUnit,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2480C33-L2480C119" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2480C33-L2480C119" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.Point,System.Drawing.Rectangle,System.Drawing.GraphicsUnit,System.Drawing.Graphics.EnumerateMetafileProc)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2487C44-L2487C123" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2487C44-L2487C123" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.Point,System.Drawing.Rectangle,System.Drawing.GraphicsUnit,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2495C33-L2495C119" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2495C33-L2495C119" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.RectangleF,System.Drawing.RectangleF,System.Drawing.GraphicsUnit,System.Drawing.Graphics.EnumerateMetafileProc)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2502C44-L2502C122" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2502C44-L2502C122" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.RectangleF,System.Drawing.RectangleF,System.Drawing.GraphicsUnit,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2510C33-L2510C118" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2510C33-L2510C118" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Drawing.GraphicsUnit,System.Drawing.Graphics.EnumerateMetafileProc)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2517C44-L2517C122" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2517C44-L2517C122" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Drawing.GraphicsUnit,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2525C33-L2525C118" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2525C33-L2525C118" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.PointF[],System.Drawing.RectangleF,System.Drawing.GraphicsUnit,System.Drawing.Graphics.EnumerateMetafileProc)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2532C44-L2532C124" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2532C44-L2532C124" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.PointF[],System.Drawing.RectangleF,System.Drawing.GraphicsUnit,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2540C33-L2540C120" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2540C33-L2540C120" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.Point[],System.Drawing.Rectangle,System.Drawing.GraphicsUnit,System.Drawing.Graphics.EnumerateMetafileProc)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2547C44-L2547C124" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2547C44-L2547C124" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.Point[],System.Drawing.Rectangle,System.Drawing.GraphicsUnit,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2555C33-L2555C120" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2555C33-L2555C120" }, { "DocsId": "M:System.Drawing.Graphics.TransformPoints(System.Drawing.Drawing2D.CoordinateSpace,System.Drawing.Drawing2D.CoordinateSpace,System.Drawing.PointF[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2559C9-L2570C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2559C9-L2570C6" }, { "DocsId": "M:System.Drawing.Graphics.TransformPoints(System.Drawing.Drawing2D.CoordinateSpace,System.Drawing.Drawing2D.CoordinateSpace,System.Drawing.Point[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2574C9-L2585C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2574C9-L2585C6" }, { "DocsId": "M:System.Drawing.Graphics.CopyFromScreen(System.Int32,System.Int32,System.Int32,System.Int32,System.Drawing.Size,System.Drawing.CopyPixelOperation)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2680C17-L2720C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L16707566C0-L2720C6" }, { "DocsId": "M:System.Drawing.Graphics.GetNearestColor(System.Drawing.Color)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2724C9-L2726C45" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2724C9-L2726C45" }, { "DocsId": "M:System.Drawing.Graphics.DrawLine(System.Drawing.Pen,System.Single,System.Single,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2734C9-L2737C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2734C9-L2737C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawBeziers(System.Drawing.Pen,System.Drawing.PointF[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2741C9-L2741C58" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2741C9-L2741C58" }, { "DocsId": "M:System.Drawing.Graphics.DrawBeziers(System.Drawing.Pen,System.ReadOnlySpan{System.Drawing.PointF})", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2751C9-L2762C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2751C9-L2762C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawBeziers(System.Drawing.Pen,System.Drawing.Point[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2772C64-L2772C113" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2772C64-L2772C113" }, { "DocsId": "M:System.Drawing.Graphics.DrawBeziers(System.Drawing.Pen,System.ReadOnlySpan{System.Drawing.Point})", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2782C9-L2794C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2782C9-L2794C6" }, { "DocsId": "M:System.Drawing.Graphics.FillPath(System.Drawing.Brush,System.Drawing.Drawing2D.GraphicsPath)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2801C9-L2811C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2801C9-L2811C6" }, { "DocsId": "M:System.Drawing.Graphics.FillRegion(System.Drawing.Brush,System.Drawing.Region)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2818C9-L2828C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2818C9-L2828C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawIcon(System.Drawing.Icon,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2832C9-L2845C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2832C9-L2845C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawIcon(System.Drawing.Icon,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2855C9-L2868C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2855C9-L2868C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawIconUnstretched(System.Drawing.Icon,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2878C9-L2888C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2878C9-L2888C6" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.PointF,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr,System.Drawing.Imaging.ImageAttributes)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2897C9-L2909C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2897C9-L2909C6" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.Point,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr,System.Drawing.Imaging.ImageAttributes)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2917C12-L2917C93" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2917C12-L2917C93" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.RectangleF,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr,System.Drawing.Imaging.ImageAttributes)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2926C9-L2938C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2926C9-L2938C6" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.Rectangle,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr,System.Drawing.Imaging.ImageAttributes)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2945C40-L2945C124" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2945C40-L2945C124" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.PointF[],System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr,System.Drawing.Imaging.ImageAttributes)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2954C9-L2974C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2954C9-L2974C6" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.Point[],System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr,System.Drawing.Imaging.ImageAttributes)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2983C9-L3003C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L2983C9-L3003C6" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.PointF,System.Drawing.RectangleF,System.Drawing.GraphicsUnit,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr,System.Drawing.Imaging.ImageAttributes)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3014C9-L3028C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3014C9-L3028C6" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.Point,System.Drawing.Rectangle,System.Drawing.GraphicsUnit,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr,System.Drawing.Imaging.ImageAttributes)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3037C40-L3044C23" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3037C40-L3044C23" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.RectangleF,System.Drawing.RectangleF,System.Drawing.GraphicsUnit,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr,System.Drawing.Imaging.ImageAttributes)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3055C9-L3069C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3055C9-L3069C6" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Drawing.GraphicsUnit,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr,System.Drawing.Imaging.ImageAttributes)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3078C40-L3078C139" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3078C40-L3078C139" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.PointF[],System.Drawing.RectangleF,System.Drawing.GraphicsUnit,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr,System.Drawing.Imaging.ImageAttributes)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3089C9-L3111C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3089C9-L3111C6" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.Point[],System.Drawing.Rectangle,System.Drawing.GraphicsUnit,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr,System.Drawing.Imaging.ImageAttributes)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3122C9-L3144C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3122C9-L3144C6" }, { "DocsId": "M:System.Drawing.Graphics.GetContextInfo", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3162C9-L3163C97" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3162C9-L3163C97" }, { "DocsId": "M:System.Drawing.Graphics.System#Drawing#IGraphicsContextInfo#GetHdc(System.Drawing.ApplyGraphicsProperties,System.Boolean)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3240C9-L3303C33" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3240C9-L3303C33" }, { "DocsId": "M:System.Drawing.Graphics.GetContextInfo(System.Drawing.PointF@)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3314C9-L3317C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3314C9-L3317C6" }, { "DocsId": "M:System.Drawing.Graphics.GetContextInfo(System.Drawing.PointF@,System.Drawing.Region@)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3328C9-L3331C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3328C9-L3331C6" }, { "DocsId": "M:System.Drawing.Graphics.Save", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3391C9-L3406C46" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3391C9-L3406C46" }, { "DocsId": "M:System.Drawing.Graphics.Restore(System.Drawing.Drawing2D.GraphicsState)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3411C9-L3413C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3411C9-L3413C6" }, { "DocsId": "M:System.Drawing.Graphics.BeginContainer(System.Drawing.RectangleF,System.Drawing.RectangleF,System.Drawing.GraphicsUnit)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3417C9-L3432C50" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3417C9-L3432C50" }, { "DocsId": "M:System.Drawing.Graphics.BeginContainer", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3437C9-L3451C50" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3437C9-L3451C50" }, { "DocsId": "M:System.Drawing.Graphics.EndContainer(System.Drawing.Drawing2D.GraphicsContainer)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3456C9-L3459C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3456C9-L3459C6" }, { "DocsId": "M:System.Drawing.Graphics.BeginContainer(System.Drawing.Rectangle,System.Drawing.Rectangle,System.Drawing.GraphicsUnit)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3462C12-L3462C74" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3462C12-L3462C74" }, { "DocsId": "M:System.Drawing.Graphics.AddMetafileComment(System.Byte[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3466C9-L3471C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3466C9-L3471C6" }, { "DocsId": "M:System.Drawing.Graphics.GetHalftonePalette", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3475C9-L3489C34" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3475C9-L3489C34" }, { "DocsId": "M:System.Drawing.Graphics.DrawCachedBitmap(System.Drawing.Imaging.CachedBitmap,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3564C9-L3572C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3564C9-L3572C6" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.Imaging.Effects.Effect)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3579C27-L3579C126" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3579C27-L3579C126" }, { "DocsId": "M:System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.Imaging.Effects.Effect,System.Drawing.RectangleF,System.Drawing.Drawing2D.Matrix,System.Drawing.GraphicsUnit,System.Drawing.Imaging.ImageAttributes)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3598C9-L3611C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3598C9-L3611C6" }, { "DocsId": "P:System.Drawing.Graphics.IPointer#Pointer", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L193C49-L193C63" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L193C49-L193C63" }, { "DocsId": "P:System.Drawing.Graphics.Clip", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L199C13-L201C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L199C13-L201C27" }, { "DocsId": "P:System.Drawing.Graphics.ClipBounds", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L211C13-L212C25" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L211C13-L212C25" }, { "DocsId": "P:System.Drawing.Graphics.CompositingMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L224C13-L225C52" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L224C13-L225C52" }, { "DocsId": "P:System.Drawing.Graphics.CompositingQuality", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L241C13-L242C58" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L241C13-L242C58" }, { "DocsId": "P:System.Drawing.Graphics.DpiX", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L258C13-L259C24" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L258C13-L259C24" }, { "DocsId": "P:System.Drawing.Graphics.DpiY", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L268C13-L269C24" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L268C13-L269C24" }, { "DocsId": "P:System.Drawing.Graphics.InterpolationMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L281C13-L282C54" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L281C13-L282C54" }, { "DocsId": "P:System.Drawing.Graphics.IsClipEmpty", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L298C13-L299C28" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L298C13-L299C28" }, { "DocsId": "P:System.Drawing.Graphics.IsVisibleClipEmpty", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L308C13-L309C28" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L308C13-L309C28" }, { "DocsId": "P:System.Drawing.Graphics.PageScale", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L318C13-L319C26" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L318C13-L319C26" }, { "DocsId": "P:System.Drawing.Graphics.PageUnit", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L329C13-L330C39" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L329C13-L330C39" }, { "DocsId": "P:System.Drawing.Graphics.PixelOffsetMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L346C13-L347C42" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L346C13-L347C42" }, { "DocsId": "P:System.Drawing.Graphics.RenderingOrigin", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L363C13-L364C36" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L363C13-L364C36" }, { "DocsId": "P:System.Drawing.Graphics.SmoothingMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L374C13-L375C50" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L374C13-L375C50" }, { "DocsId": "P:System.Drawing.Graphics.TextContrast", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L391C13-L392C38" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L391C13-L392C38" }, { "DocsId": "P:System.Drawing.Graphics.TextRenderingHint", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L405C13-L406C44" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L405C13-L406C44" }, { "DocsId": "P:System.Drawing.Graphics.Transform", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L424C13-L426C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L424C13-L426C27" }, { "DocsId": "P:System.Drawing.Graphics.TransformElements", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L448C13-L465C10" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L448C13-L465C10" }, { "DocsId": "P:System.Drawing.Graphics.VisibleClipBounds", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3337C13-L3342C25" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs#L3337C13-L3342C25" }, { "DocsId": "T:System.Drawing.Graphics.DrawImageAbort", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" }, { "DocsId": "T:System.Drawing.Graphics.EnumerateMetafileProc", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" } ], "DocsId": "T:System.Drawing.Graphics", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.GraphicsUnit.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/GraphicsUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/GraphicsUnit.cs" }, { "DocsId": "F:System.Drawing.GraphicsUnit.World", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/GraphicsUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/GraphicsUnit.cs" }, { "DocsId": "F:System.Drawing.GraphicsUnit.Display", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/GraphicsUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/GraphicsUnit.cs" }, { "DocsId": "F:System.Drawing.GraphicsUnit.Pixel", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/GraphicsUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/GraphicsUnit.cs" }, { "DocsId": "F:System.Drawing.GraphicsUnit.Point", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/GraphicsUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/GraphicsUnit.cs" }, { "DocsId": "F:System.Drawing.GraphicsUnit.Inch", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/GraphicsUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/GraphicsUnit.cs" }, { "DocsId": "F:System.Drawing.GraphicsUnit.Document", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/GraphicsUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/GraphicsUnit.cs" }, { "DocsId": "F:System.Drawing.GraphicsUnit.Millimeter", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/GraphicsUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/GraphicsUnit.cs" } ], "DocsId": "T:System.Drawing.GraphicsUnit", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/GraphicsUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/GraphicsUnit.cs" }, { "Members": [ - { - "DocsId": "M:System.Drawing.Icon.Save(System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Icon.ComWrappers.cs#L14C9-L57C6" - }, { "DocsId": "M:System.Drawing.Icon.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L53C36-L55C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L56C36-L58C6" }, { "DocsId": "M:System.Drawing.Icon.#ctor(System.String,System.Drawing.Size)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L57C47-L59C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L60C47-L62C6" }, { "DocsId": "M:System.Drawing.Icon.#ctor(System.String,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L61C59-L71C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L64C59-L74C6" }, { "DocsId": "M:System.Drawing.Icon.#ctor(System.Drawing.Icon,System.Drawing.Size)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L73C45-L75C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L76C45-L78C6" }, { "DocsId": "M:System.Drawing.Icon.#ctor(System.Drawing.Icon,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L77C57-L92C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L80C57-L95C6" }, { "DocsId": "M:System.Drawing.Icon.#ctor(System.Type,System.String)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L94C47-L104C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L97C47-L107C6" }, { "DocsId": "M:System.Drawing.Icon.#ctor(System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L106C34-L108C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L109C34-L111C6" }, { "DocsId": "M:System.Drawing.Icon.#ctor(System.IO.Stream,System.Drawing.Size)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L110C45-L112C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L113C45-L115C6" }, { "DocsId": "M:System.Drawing.Icon.#ctor(System.IO.Stream,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L114C57-L121C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L117C57-L124C6" }, { "DocsId": "M:System.Drawing.Icon.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L134C9-L146C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L137C9-L149C6" }, { "DocsId": "M:System.Drawing.Icon.ExtractAssociatedIcon(System.String)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L148C67-L148C101" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L151C67-L151C101" }, { "DocsId": "M:System.Drawing.Icon.IHandle#get_Handle", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L186C36-L186C49" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L189C36-L189C49" }, { "DocsId": "M:System.Drawing.Icon.Clone", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L235C30-L235C69" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L238C30-L238C69" }, { "DocsId": "M:System.Drawing.Icon.Dispose", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L259C9-L265C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L262C9-L268C6" }, { "DocsId": "M:System.Drawing.Icon.Finalize", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L390C16-L390C25" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L393C16-L16707566C0" }, { "DocsId": "M:System.Drawing.Icon.FromHandle(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L394C9-L397C40" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L397C9-L400C40" }, { "DocsId": "M:System.Drawing.Icon.ToBitmap", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L612C9-L617C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L615C9-L620C27" }, { "DocsId": "M:System.Drawing.Icon.ToString", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L789C42-L789C57" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L792C42-L792C57" + }, + { + "DocsId": "M:System.Drawing.Icon.Save(System.IO.Stream)", + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L801C9-L817C6" }, { "DocsId": "M:System.Drawing.Icon.ExtractIcon(System.String,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L836C12-L838C64" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L859C12-L861C64" }, { "DocsId": "M:System.Drawing.Icon.ExtractIcon(System.String,System.Int32,System.Boolean)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L847C12-L847C51" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L870C12-L870C51" }, { "DocsId": "P:System.Drawing.Icon.Handle", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L184C29-L184C111" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L187C29-L187C111" }, { "DocsId": "P:System.Drawing.Icon.IHandle#Handle", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L186C36-L186C49" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L189C36-L189C49" }, { "DocsId": "P:System.Drawing.Icon.Height", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L189C26-L189C37" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L192C26-L192C37" }, { "DocsId": "P:System.Drawing.Icon.Size", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L195C13-L228C30" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L198C13-L231C30" }, { "DocsId": "P:System.Drawing.Icon.Width", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L233C25-L233C35" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Icon.cs#L236C25-L236C35" } ], "DocsId": "T:System.Drawing.Icon", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Icon.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Icon.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.IconConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/IconConverter.cs#L14C9-L14C45" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/IconConverter.cs#L14C9-L14C45" }, { "DocsId": "M:System.Drawing.IconConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/IconConverter.cs#L19C9-L20C86" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/IconConverter.cs#L19C9-L20C86" }, { "DocsId": "M:System.Drawing.IconConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/IconConverter.cs#L25C9-L25C118" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/IconConverter.cs#L25C9-L25C118" }, { "DocsId": "M:System.Drawing.IconConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/IconConverter.cs#L30C9-L59C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/IconConverter.cs#L30C9-L59C6" }, { "DocsId": "M:System.Drawing.IconConverter.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/IconConverter.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/IconConverter.cs" } ], "DocsId": "T:System.Drawing.IconConverter", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/IconConverter.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/IconConverter.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.IDeviceContext.GetHdc", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/IDeviceContext.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/IDeviceContext.cs" }, { "DocsId": "M:System.Drawing.IDeviceContext.ReleaseHdc", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/IDeviceContext.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/IDeviceContext.cs" } ], "DocsId": "T:System.Drawing.IDeviceContext", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/IDeviceContext.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/IDeviceContext.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Image.IPointer#get_Pointer", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L35C43-L35C55" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L35C43-L35C55" }, { "DocsId": "M:System.Drawing.Image.System#IO#IRawData#get_Data", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L42C41-L42C60" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L44C41-L44C60" }, { "DocsId": "M:System.Drawing.Image.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L76C9-L79C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L78C9-L81C6" }, { "DocsId": "M:System.Drawing.Image.FromFile(System.String)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L84C54-L84C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L86C54-L86C79" }, { "DocsId": "M:System.Drawing.Image.FromFile(System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L88C9-L118C20" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L90C9-L120C20" }, { "DocsId": "M:System.Drawing.Image.FromStream(System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L124C54-L124C107" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L126C54-L126C107" }, { "DocsId": "M:System.Drawing.Image.FromStream(System.IO.Stream,System.Boolean)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L127C9-L127C61" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L129C9-L129C61" }, { "DocsId": "M:System.Drawing.Image.FromStream(System.IO.Stream,System.Boolean,System.Boolean)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L131C9-L141C20" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L133C9-L143C20" }, { "DocsId": "M:System.Drawing.Image.Dispose", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L185C9-L187C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L187C9-L189C6" }, { "DocsId": "M:System.Drawing.Image.Finalize", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L192C17-L192C42" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L194C17-L16707566C0" }, { "DocsId": "M:System.Drawing.Image.Clone", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L200C9-L203C46" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L202C9-L205C46" }, { "DocsId": "M:System.Drawing.Image.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L208C9-L216C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L210C9-L218C6" }, { "DocsId": "M:System.Drawing.Image.Save(System.String)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L221C42-L221C67" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L223C42-L223C67" }, { "DocsId": "M:System.Drawing.Image.Save(System.String,System.Drawing.Imaging.ImageFormat)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L228C9-L237C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L230C9-L239C6" }, { "DocsId": "M:System.Drawing.Image.Save(System.String,System.Drawing.Imaging.ImageCodecInfo,System.Drawing.Imaging.EncoderParameters)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L243C12-L243C56" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L245C12-L245C56" }, { "DocsId": "M:System.Drawing.Image.Save(System.IO.Stream,System.Drawing.Imaging.ImageFormat)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L295C9-L297C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L297C9-L299C6" }, { "DocsId": "M:System.Drawing.Image.Save(System.IO.Stream,System.Drawing.Imaging.ImageCodecInfo,System.Drawing.Imaging.EncoderParameters)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L304C9-L329C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L306C9-L331C6" }, { "DocsId": "M:System.Drawing.Image.SaveAdd(System.Drawing.Imaging.EncoderParameters)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L336C9-L358C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L338C9-L360C6" }, { "DocsId": "M:System.Drawing.Image.SaveAdd(System.Drawing.Image,System.Drawing.Imaging.EncoderParameters)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L365C9-L391C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L367C9-L393C6" }, { "DocsId": "M:System.Drawing.Image.GetBounds(System.Drawing.GraphicsUnit@)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L585C9-L587C23" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L587C9-L589C23" }, { "DocsId": "M:System.Drawing.Image.GetThumbnailImage(System.Int32,System.Int32,System.Drawing.Image.GetThumbnailImageAbort,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L634C9-L643C46" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L636C9-L645C46" }, { "DocsId": "M:System.Drawing.Image.GetFrameCount(System.Drawing.Imaging.FrameDimension)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L664C9-L668C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L666C9-L670C27" }, { "DocsId": "M:System.Drawing.Image.GetPropertyItem(System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L677C9-L692C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L679C9-L694C6" }, { "DocsId": "M:System.Drawing.Image.SelectActiveFrame(System.Drawing.Imaging.FrameDimension,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L699C9-L702C18" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L701C9-L704C18" }, { "DocsId": "M:System.Drawing.Image.SetPropertyItem(System.Drawing.Imaging.PropertyItem)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L710C16-L723C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L712C16-L725C6" }, { "DocsId": "M:System.Drawing.Image.RotateFlip(System.Drawing.RotateFlipType)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L727C9-L729C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L729C9-L731C6" }, { "DocsId": "M:System.Drawing.Image.RemovePropertyItem(System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L736C9-L738C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L738C9-L740C6" }, { "DocsId": "M:System.Drawing.Image.GetEncoderParameterList(System.Guid)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L748C9-L769C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L750C9-L771C6" }, { "DocsId": "M:System.Drawing.Image.FromHbitmap(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L774C57-L774C90" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L776C57-L776C90" }, { "DocsId": "M:System.Drawing.Image.FromHbitmap(System.IntPtr,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L782C9-L783C35" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L784C9-L785C35" }, { "DocsId": "M:System.Drawing.Image.IsExtendedPixelFormat(System.Drawing.Imaging.PixelFormat)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L789C69-L789C105" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L791C69-L791C105" }, { "DocsId": "M:System.Drawing.Image.IsCanonicalPixelFormat(System.Drawing.Imaging.PixelFormat)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L803C9-L803C54" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L805C9-L805C54" }, { "DocsId": "M:System.Drawing.Image.GetPixelFormatSize(System.Drawing.Imaging.PixelFormat)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L847C65-L847C90" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L849C65-L849C90" }, { "DocsId": "M:System.Drawing.Image.IsAlphaPixelFormat(System.Drawing.Imaging.PixelFormat)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L852C66-L852C99" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L854C66-L854C99" }, { "DocsId": "P:System.Drawing.Image.IPointer#Pointer", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L35C43-L35C55" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L35C43-L35C55" }, { "DocsId": "P:System.Drawing.Image.System#IO#IRawData#Data", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L42C41-L42C60" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L44C41-L44C60" }, { "DocsId": "P:System.Drawing.Image.Tag", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L48C16-L48C25" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L50C16-L50C25" }, { "DocsId": "P:System.Drawing.Image.PhysicalDimension", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L412C13-L414C45" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L414C13-L416C45" }, { "DocsId": "P:System.Drawing.Image.Size", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L421C25-L421C43" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L423C25-L423C43" }, { "DocsId": "P:System.Drawing.Image.Width", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L434C13-L436C31" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L436C13-L438C31" }, { "DocsId": "P:System.Drawing.Image.Height", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L451C13-L453C32" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L453C13-L455C32" }, { "DocsId": "P:System.Drawing.Image.HorizontalResolution", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L465C13-L467C28" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L467C13-L469C28" }, { "DocsId": "P:System.Drawing.Image.VerticalResolution", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L479C13-L481C28" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L481C13-L483C28" }, { "DocsId": "P:System.Drawing.Image.Flags", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L494C13-L496C31" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L496C13-L498C31" }, { "DocsId": "P:System.Drawing.Image.RawFormat", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L507C13-L510C42" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L509C13-L512C42" }, { "DocsId": "P:System.Drawing.Image.PixelFormat", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L517C39-L517C73" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L519C39-L519C73" }, { "DocsId": "P:System.Drawing.Image.PropertyIdList", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L528C13-L541C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L530C13-L543C27" }, { "DocsId": "P:System.Drawing.Image.PropertyItems", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L554C13-L576C10" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L556C13-L578C10" }, { "DocsId": "P:System.Drawing.Image.Palette", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L602C13-L611C10" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L604C13-L613C10" }, { "DocsId": "P:System.Drawing.Image.FrameDimensionsList", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs#L825C13-L840C26" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs#L827C13-L842C26" }, { "DocsId": "T:System.Drawing.Image.GetThumbnailImageAbort", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs" } ], "DocsId": "T:System.Drawing.Image", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.ImageAnimator.UpdateFrames(System.Drawing.Image)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/ImageAnimator.cs#L99C9-L153C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/ImageAnimator.cs#L99C9-L153C6" }, { "DocsId": "M:System.Drawing.ImageAnimator.UpdateFrames", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/ImageAnimator.cs#L160C9-L190C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/ImageAnimator.cs#L160C9-L190C6" }, { "DocsId": "M:System.Drawing.ImageAnimator.Animate(System.Drawing.Image,System.EventHandler)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/ImageAnimator.cs#L198C9-L279C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/ImageAnimator.cs#L198C9-L279C6" }, { "DocsId": "M:System.Drawing.ImageAnimator.CanAnimate(System.Drawing.Image)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/ImageAnimator.cs#L286C9-L307C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/ImageAnimator.cs#L286C9-L307C6" }, { "DocsId": "M:System.Drawing.ImageAnimator.StopAnimate(System.Drawing.Image,System.EventHandler)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/ImageAnimator.cs#L315C9-L374C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/ImageAnimator.cs#L315C9-L374C6" } ], "DocsId": "T:System.Drawing.ImageAnimator", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/ImageAnimator.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/ImageAnimator.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.ImageConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/ImageConverter.cs#L14C9-L14C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/ImageConverter.cs#L14C9-L14C75" }, { "DocsId": "M:System.Drawing.ImageConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/ImageConverter.cs#L19C9-L19C87" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/ImageConverter.cs#L19C9-L19C87" }, { "DocsId": "M:System.Drawing.ImageConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/ImageConverter.cs#L24C9-L38C62" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/ImageConverter.cs#L24C9-L38C62" }, { "DocsId": "M:System.Drawing.ImageConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/ImageConverter.cs#L44C9-L71C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/ImageConverter.cs#L44C9-L71C6" }, { "DocsId": "M:System.Drawing.ImageConverter.GetProperties(System.ComponentModel.ITypeDescriptorContext,System.Object,System.Attribute[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/ImageConverter.cs#L76C9-L76C72" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/ImageConverter.cs#L76C9-L76C72" }, { "DocsId": "M:System.Drawing.ImageConverter.GetPropertiesSupported(System.ComponentModel.ITypeDescriptorContext)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/ImageConverter.cs#L79C85-L79C89" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/ImageConverter.cs#L79C85-L79C89" }, { "DocsId": "M:System.Drawing.ImageConverter.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/ImageConverter.FMTID.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/ImageConverter.FMTID.cs" } ], "DocsId": "T:System.Drawing.ImageConverter", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/ImageConverter.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/ImageConverter.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.ImageFormatConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/ImageFormatConverter.cs#L18C9-L18C89" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/ImageFormatConverter.cs#L18C9-L18C89" }, { "DocsId": "M:System.Drawing.ImageFormatConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/ImageFormatConverter.cs#L23C9-L28C60" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/ImageFormatConverter.cs#L23C9-L28C60" }, { "DocsId": "M:System.Drawing.ImageFormatConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/ImageFormatConverter.cs#L34C9-L72C106" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/ImageFormatConverter.cs#L34C9-L72C106" }, { "DocsId": "M:System.Drawing.ImageFormatConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/ImageFormatConverter.cs#L77C9-L120C73" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/ImageFormatConverter.cs#L77C9-L120C73" }, { "DocsId": "M:System.Drawing.ImageFormatConverter.GetStandardValues(System.ComponentModel.ITypeDescriptorContext)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/ImageFormatConverter.cs#L125C9-L139C12" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/ImageFormatConverter.cs#L125C9-L139C12" }, { "DocsId": "M:System.Drawing.ImageFormatConverter.GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/ImageFormatConverter.cs#L142C89-L142C93" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/ImageFormatConverter.cs#L142C89-L142C93" }, { "DocsId": "M:System.Drawing.ImageFormatConverter.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/ImageFormatConverter.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/ImageFormatConverter.cs" } ], "DocsId": "T:System.Drawing.ImageFormatConverter", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/ImageFormatConverter.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/ImageFormatConverter.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Pen.#ctor(System.Drawing.Color)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L35C31-L37C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L35C31-L37C6" }, { "DocsId": "M:System.Drawing.Pen.#ctor(System.Drawing.Color,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L43C5-L55C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L43C5-L55C6" }, { "DocsId": "M:System.Drawing.Pen.#ctor(System.Drawing.Brush)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L60C31-L62C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L60C31-L62C6" }, { "DocsId": "M:System.Drawing.Pen.#ctor(System.Drawing.Brush,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L67C5-L74C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L67C5-L74C6" }, { "DocsId": "M:System.Drawing.Pen.Clone", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L91C9-L93C35" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L91C9-L93C35" }, { "DocsId": "M:System.Drawing.Pen.Dispose", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L101C9-L103C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L101C9-L103C6" }, { "DocsId": "M:System.Drawing.Pen.Finalize", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L130C15-L130C40" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L130C15-L16707566C0" }, { "DocsId": "M:System.Drawing.Pen.SetLineCap(System.Drawing.Drawing2D.LineCap,System.Drawing.Drawing2D.LineCap,System.Drawing.Drawing2D.DashCap)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L161C9-L173C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L161C9-L173C6" }, { "DocsId": "M:System.Drawing.Pen.ResetTransform", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L452C9-L454C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L452C9-L454C6" }, { "DocsId": "M:System.Drawing.Pen.MultiplyTransform(System.Drawing.Drawing2D.Matrix)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L459C53-L459C99" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L459C53-L459C99" }, { "DocsId": "M:System.Drawing.Pen.MultiplyTransform(System.Drawing.Drawing2D.Matrix,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L466C9-L477C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L466C9-L477C6" }, { "DocsId": "M:System.Drawing.Pen.TranslateTransform(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L483C59-L483C106" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L483C59-L483C106" }, { "DocsId": "M:System.Drawing.Pen.TranslateTransform(System.Single,System.Single,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L490C9-L492C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L490C9-L492C6" }, { "DocsId": "M:System.Drawing.Pen.ScaleTransform(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L497C55-L497C98" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L497C55-L497C98" }, { "DocsId": "M:System.Drawing.Pen.ScaleTransform(System.Single,System.Single,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L504C9-L506C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L504C9-L506C6" }, { "DocsId": "M:System.Drawing.Pen.RotateTransform(System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L511C49-L511C92" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L511C49-L511C92" }, { "DocsId": "M:System.Drawing.Pen.RotateTransform(System.Single,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L518C9-L520C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L518C9-L520C6" }, { "DocsId": "M:System.Drawing.Pen.System#Drawing#Internal#ISystemColorTracker#OnSystemColorChanged", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L831C9-L835C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L831C9-L835C6" }, { "DocsId": "P:System.Drawing.Pen.Width", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L140C13-L142C26" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L140C13-L142C26" }, { "DocsId": "P:System.Drawing.Pen.StartCap", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L183C13-L185C29" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L183C13-L185C29" }, { "DocsId": "P:System.Drawing.Pen.EndCap", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L225C13-L227C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L225C13-L227C27" }, { "DocsId": "P:System.Drawing.Pen.CustomStartCap", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L267C13-L269C69" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L267C13-L269C69" }, { "DocsId": "P:System.Drawing.Pen.CustomEndCap", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L292C13-L294C69" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L292C13-L294C69" }, { "DocsId": "P:System.Drawing.Pen.DashCap", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L317C13-L319C28" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L317C13-L319C28" }, { "DocsId": "P:System.Drawing.Pen.LineJoin", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L346C13-L348C29" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L346C13-L348C29" }, { "DocsId": "P:System.Drawing.Pen.MiterLimit", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L375C13-L377C31" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L375C13-L377C31" }, { "DocsId": "P:System.Drawing.Pen.Alignment", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L399C13-L401C28" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L399C13-L401C28" }, { "DocsId": "P:System.Drawing.Pen.Transform", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L427C13-L430C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L427C13-L430C27" }, { "DocsId": "P:System.Drawing.Pen.PenType", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L537C13-L539C44" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L537C13-L539C44" }, { "DocsId": "P:System.Drawing.Pen.Color", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L550C13-L564C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L550C13-L564C27" }, { "DocsId": "P:System.Drawing.Pen.Brush", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L596C13-L624C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L596C13-L624C27" }, { "DocsId": "P:System.Drawing.Pen.DashStyle", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L655C13-L657C30" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L655C13-L657C30" }, { "DocsId": "P:System.Drawing.Pen.DashOffset", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L713C13-L715C31" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L713C13-L715C31" }, { "DocsId": "P:System.Drawing.Pen.DashPattern", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L737C13-L768C28" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L737C13-L768C28" }, { "DocsId": "P:System.Drawing.Pen.CompoundArray", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L798C13-L810C30" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pen.cs#L798C13-L810C30" } ], "DocsId": "T:System.Drawing.Pen", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pen.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pen.cs" }, { "Members": [ { "DocsId": "P:System.Drawing.Pens.Transparent", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L149C38-L149C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L149C38-L149C81" }, { "DocsId": "P:System.Drawing.Pens.AliceBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L151C36-L151C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L151C36-L151C75" }, { "DocsId": "P:System.Drawing.Pens.AntiqueWhite", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L152C39-L152C84" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L152C39-L152C84" }, { "DocsId": "P:System.Drawing.Pens.Aqua", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L153C31-L153C60" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L153C31-L153C60" }, { "DocsId": "P:System.Drawing.Pens.Aquamarine", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L154C37-L154C78" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L154C37-L154C78" }, { "DocsId": "P:System.Drawing.Pens.Azure", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L155C32-L155C63" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L155C32-L155C63" }, { "DocsId": "P:System.Drawing.Pens.Beige", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L157C32-L157C63" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L157C32-L157C63" }, { "DocsId": "P:System.Drawing.Pens.Bisque", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L158C33-L158C66" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L158C33-L158C66" }, { "DocsId": "P:System.Drawing.Pens.Black", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L159C32-L159C63" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L159C32-L159C63" }, { "DocsId": "P:System.Drawing.Pens.BlanchedAlmond", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L160C41-L160C90" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L160C41-L160C90" }, { "DocsId": "P:System.Drawing.Pens.Blue", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L161C31-L161C60" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L161C31-L161C60" }, { "DocsId": "P:System.Drawing.Pens.BlueViolet", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L162C37-L162C78" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L162C37-L162C78" }, { "DocsId": "P:System.Drawing.Pens.Brown", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L163C32-L163C63" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L163C32-L163C63" }, { "DocsId": "P:System.Drawing.Pens.BurlyWood", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L164C36-L164C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L164C36-L164C75" }, { "DocsId": "P:System.Drawing.Pens.CadetBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L166C36-L166C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L166C36-L166C75" }, { "DocsId": "P:System.Drawing.Pens.Chartreuse", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L167C37-L167C78" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L167C37-L167C78" }, { "DocsId": "P:System.Drawing.Pens.Chocolate", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L168C36-L168C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L168C36-L168C75" }, { "DocsId": "P:System.Drawing.Pens.Coral", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L169C32-L169C63" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L169C32-L169C63" }, { "DocsId": "P:System.Drawing.Pens.CornflowerBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L170C41-L170C90" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L170C41-L170C90" }, { "DocsId": "P:System.Drawing.Pens.Cornsilk", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L171C35-L171C72" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L171C35-L171C72" }, { "DocsId": "P:System.Drawing.Pens.Crimson", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L172C34-L172C69" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L172C34-L172C69" }, { "DocsId": "P:System.Drawing.Pens.Cyan", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L173C31-L173C60" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L173C31-L173C60" }, { "DocsId": "P:System.Drawing.Pens.DarkBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L175C35-L175C72" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L175C35-L175C72" }, { "DocsId": "P:System.Drawing.Pens.DarkCyan", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L176C35-L176C72" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L176C35-L176C72" }, { "DocsId": "P:System.Drawing.Pens.DarkGoldenrod", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L177C40-L177C87" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L177C40-L177C87" }, { "DocsId": "P:System.Drawing.Pens.DarkGray", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L178C35-L178C72" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L178C35-L178C72" }, { "DocsId": "P:System.Drawing.Pens.DarkGreen", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L179C36-L179C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L179C36-L179C75" }, { "DocsId": "P:System.Drawing.Pens.DarkKhaki", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L180C36-L180C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L180C36-L180C75" }, { "DocsId": "P:System.Drawing.Pens.DarkMagenta", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L181C38-L181C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L181C38-L181C81" }, { "DocsId": "P:System.Drawing.Pens.DarkOliveGreen", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L182C41-L182C90" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L182C41-L182C90" }, { "DocsId": "P:System.Drawing.Pens.DarkOrange", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L183C37-L183C78" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L183C37-L183C78" }, { "DocsId": "P:System.Drawing.Pens.DarkOrchid", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L184C37-L184C78" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L184C37-L184C78" }, { "DocsId": "P:System.Drawing.Pens.DarkRed", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L185C34-L185C69" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L185C34-L185C69" }, { "DocsId": "P:System.Drawing.Pens.DarkSalmon", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L186C37-L186C78" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L186C37-L186C78" }, { "DocsId": "P:System.Drawing.Pens.DarkSeaGreen", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L187C39-L187C84" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L187C39-L187C84" }, { "DocsId": "P:System.Drawing.Pens.DarkSlateBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L188C40-L188C87" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L188C40-L188C87" }, { "DocsId": "P:System.Drawing.Pens.DarkSlateGray", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L189C40-L189C87" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L189C40-L189C87" }, { "DocsId": "P:System.Drawing.Pens.DarkTurquoise", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L190C40-L190C87" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L190C40-L190C87" }, { "DocsId": "P:System.Drawing.Pens.DarkViolet", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L191C37-L191C78" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L191C37-L191C78" }, { "DocsId": "P:System.Drawing.Pens.DeepPink", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L192C35-L192C72" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L192C35-L192C72" }, { "DocsId": "P:System.Drawing.Pens.DeepSkyBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L193C38-L193C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L193C38-L193C81" }, { "DocsId": "P:System.Drawing.Pens.DimGray", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L194C34-L194C69" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L194C34-L194C69" }, { "DocsId": "P:System.Drawing.Pens.DodgerBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L195C37-L195C78" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L195C37-L195C78" }, { "DocsId": "P:System.Drawing.Pens.Firebrick", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L197C36-L197C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L197C36-L197C75" }, { "DocsId": "P:System.Drawing.Pens.FloralWhite", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L198C38-L198C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L198C38-L198C81" }, { "DocsId": "P:System.Drawing.Pens.ForestGreen", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L199C38-L199C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L199C38-L199C81" }, { "DocsId": "P:System.Drawing.Pens.Fuchsia", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L200C34-L200C69" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L200C34-L200C69" }, { "DocsId": "P:System.Drawing.Pens.Gainsboro", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L202C36-L202C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L202C36-L202C75" }, { "DocsId": "P:System.Drawing.Pens.GhostWhite", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L203C37-L203C78" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L203C37-L203C78" }, { "DocsId": "P:System.Drawing.Pens.Gold", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L204C31-L204C60" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L204C31-L204C60" }, { "DocsId": "P:System.Drawing.Pens.Goldenrod", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L205C36-L205C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L205C36-L205C75" }, { "DocsId": "P:System.Drawing.Pens.Gray", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L206C31-L206C60" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L206C31-L206C60" }, { "DocsId": "P:System.Drawing.Pens.Green", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L207C32-L207C63" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L207C32-L207C63" }, { "DocsId": "P:System.Drawing.Pens.GreenYellow", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L208C38-L208C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L208C38-L208C81" }, { "DocsId": "P:System.Drawing.Pens.Honeydew", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L210C35-L210C72" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L210C35-L210C72" }, { "DocsId": "P:System.Drawing.Pens.HotPink", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L211C34-L211C69" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L211C34-L211C69" }, { "DocsId": "P:System.Drawing.Pens.IndianRed", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L213C36-L213C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L213C36-L213C75" }, { "DocsId": "P:System.Drawing.Pens.Indigo", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L214C33-L214C66" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L214C33-L214C66" }, { "DocsId": "P:System.Drawing.Pens.Ivory", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L215C32-L215C63" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L215C32-L215C63" }, { "DocsId": "P:System.Drawing.Pens.Khaki", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L217C32-L217C63" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L217C32-L217C63" }, { "DocsId": "P:System.Drawing.Pens.Lavender", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L219C35-L219C72" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L219C35-L219C72" }, { "DocsId": "P:System.Drawing.Pens.LavenderBlush", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L220C40-L220C87" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L220C40-L220C87" }, { "DocsId": "P:System.Drawing.Pens.LawnGreen", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L221C36-L221C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L221C36-L221C75" }, { "DocsId": "P:System.Drawing.Pens.LemonChiffon", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L222C39-L222C84" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L222C39-L222C84" }, { "DocsId": "P:System.Drawing.Pens.LightBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L223C36-L223C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L223C36-L223C75" }, { "DocsId": "P:System.Drawing.Pens.LightCoral", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L224C37-L224C78" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L224C37-L224C78" }, { "DocsId": "P:System.Drawing.Pens.LightCyan", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L225C36-L225C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L225C36-L225C75" }, { "DocsId": "P:System.Drawing.Pens.LightGoldenrodYellow", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L226C47-L226C108" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L226C47-L226C108" }, { "DocsId": "P:System.Drawing.Pens.LightGreen", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L227C37-L227C78" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L227C37-L227C78" }, { "DocsId": "P:System.Drawing.Pens.LightGray", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L228C36-L228C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L228C36-L228C75" }, { "DocsId": "P:System.Drawing.Pens.LightPink", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L229C36-L229C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L229C36-L229C75" }, { "DocsId": "P:System.Drawing.Pens.LightSalmon", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L230C38-L230C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L230C38-L230C81" }, { "DocsId": "P:System.Drawing.Pens.LightSeaGreen", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L231C40-L231C87" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L231C40-L231C87" }, { "DocsId": "P:System.Drawing.Pens.LightSkyBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L232C39-L232C84" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L232C39-L232C84" }, { "DocsId": "P:System.Drawing.Pens.LightSlateGray", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L233C41-L233C90" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L233C41-L233C90" }, { "DocsId": "P:System.Drawing.Pens.LightSteelBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L234C41-L234C90" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L234C41-L234C90" }, { "DocsId": "P:System.Drawing.Pens.LightYellow", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L235C38-L235C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L235C38-L235C81" }, { "DocsId": "P:System.Drawing.Pens.Lime", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L236C31-L236C60" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L236C31-L236C60" }, { "DocsId": "P:System.Drawing.Pens.LimeGreen", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L237C36-L237C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L237C36-L237C75" }, { "DocsId": "P:System.Drawing.Pens.Linen", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L238C32-L238C63" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L238C32-L238C63" }, { "DocsId": "P:System.Drawing.Pens.Magenta", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L240C34-L240C69" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L240C34-L240C69" }, { "DocsId": "P:System.Drawing.Pens.Maroon", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L241C33-L241C66" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L241C33-L241C66" }, { "DocsId": "P:System.Drawing.Pens.MediumAquamarine", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L242C43-L242C96" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L242C43-L242C96" }, { "DocsId": "P:System.Drawing.Pens.MediumBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L243C37-L243C78" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L243C37-L243C78" }, { "DocsId": "P:System.Drawing.Pens.MediumOrchid", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L244C39-L244C84" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L244C39-L244C84" }, { "DocsId": "P:System.Drawing.Pens.MediumPurple", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L245C39-L245C84" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L245C39-L245C84" }, { "DocsId": "P:System.Drawing.Pens.MediumSeaGreen", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L246C41-L246C90" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L246C41-L246C90" }, { "DocsId": "P:System.Drawing.Pens.MediumSlateBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L247C42-L247C93" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L247C42-L247C93" }, { "DocsId": "P:System.Drawing.Pens.MediumSpringGreen", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L248C44-L248C99" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L248C44-L248C99" }, { "DocsId": "P:System.Drawing.Pens.MediumTurquoise", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L249C42-L249C93" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L249C42-L249C93" }, { "DocsId": "P:System.Drawing.Pens.MediumVioletRed", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L250C42-L250C93" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L250C42-L250C93" }, { "DocsId": "P:System.Drawing.Pens.MidnightBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L251C39-L251C84" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L251C39-L251C84" }, { "DocsId": "P:System.Drawing.Pens.MintCream", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L252C36-L252C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L252C36-L252C75" }, { "DocsId": "P:System.Drawing.Pens.MistyRose", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L253C36-L253C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L253C36-L253C75" }, { "DocsId": "P:System.Drawing.Pens.Moccasin", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L254C35-L254C72" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L254C35-L254C72" }, { "DocsId": "P:System.Drawing.Pens.NavajoWhite", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L256C38-L256C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L256C38-L256C81" }, { "DocsId": "P:System.Drawing.Pens.Navy", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L257C31-L257C60" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L257C31-L257C60" }, { "DocsId": "P:System.Drawing.Pens.OldLace", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L259C34-L259C69" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L259C34-L259C69" }, { "DocsId": "P:System.Drawing.Pens.Olive", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L260C32-L260C63" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L260C32-L260C63" }, { "DocsId": "P:System.Drawing.Pens.OliveDrab", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L261C36-L261C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L261C36-L261C75" }, { "DocsId": "P:System.Drawing.Pens.Orange", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L262C33-L262C66" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L262C33-L262C66" }, { "DocsId": "P:System.Drawing.Pens.OrangeRed", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L263C36-L263C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L263C36-L263C75" }, { "DocsId": "P:System.Drawing.Pens.Orchid", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L264C33-L264C66" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L264C33-L264C66" }, { "DocsId": "P:System.Drawing.Pens.PaleGoldenrod", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L266C40-L266C87" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L266C40-L266C87" }, { "DocsId": "P:System.Drawing.Pens.PaleGreen", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L267C36-L267C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L267C36-L267C75" }, { "DocsId": "P:System.Drawing.Pens.PaleTurquoise", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L268C40-L268C87" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L268C40-L268C87" }, { "DocsId": "P:System.Drawing.Pens.PaleVioletRed", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L269C40-L269C87" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L269C40-L269C87" }, { "DocsId": "P:System.Drawing.Pens.PapayaWhip", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L270C37-L270C78" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L270C37-L270C78" }, { "DocsId": "P:System.Drawing.Pens.PeachPuff", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L271C36-L271C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L271C36-L271C75" }, { "DocsId": "P:System.Drawing.Pens.Peru", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L272C31-L272C60" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L272C31-L272C60" }, { "DocsId": "P:System.Drawing.Pens.Pink", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L273C31-L273C60" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L273C31-L273C60" }, { "DocsId": "P:System.Drawing.Pens.Plum", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L274C31-L274C60" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L274C31-L274C60" }, { "DocsId": "P:System.Drawing.Pens.PowderBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L275C37-L275C78" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L275C37-L275C78" }, { "DocsId": "P:System.Drawing.Pens.Purple", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L276C33-L276C66" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L276C33-L276C66" }, { "DocsId": "P:System.Drawing.Pens.Red", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L278C30-L278C57" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L278C30-L278C57" }, { "DocsId": "P:System.Drawing.Pens.RosyBrown", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L279C36-L279C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L279C36-L279C75" }, { "DocsId": "P:System.Drawing.Pens.RoyalBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L280C36-L280C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L280C36-L280C75" }, { "DocsId": "P:System.Drawing.Pens.SaddleBrown", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L282C38-L282C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L282C38-L282C81" }, { "DocsId": "P:System.Drawing.Pens.Salmon", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L283C33-L283C66" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L283C33-L283C66" }, { "DocsId": "P:System.Drawing.Pens.SandyBrown", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L284C37-L284C78" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L284C37-L284C78" }, { "DocsId": "P:System.Drawing.Pens.SeaGreen", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L285C35-L285C72" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L285C35-L285C72" }, { "DocsId": "P:System.Drawing.Pens.SeaShell", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L286C35-L286C72" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L286C35-L286C72" }, { "DocsId": "P:System.Drawing.Pens.Sienna", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L287C33-L287C66" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L287C33-L287C66" }, { "DocsId": "P:System.Drawing.Pens.Silver", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L288C33-L288C66" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L288C33-L288C66" }, { "DocsId": "P:System.Drawing.Pens.SkyBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L289C34-L289C69" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L289C34-L289C69" }, { "DocsId": "P:System.Drawing.Pens.SlateBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L290C36-L290C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L290C36-L290C75" }, { "DocsId": "P:System.Drawing.Pens.SlateGray", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L291C36-L291C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L291C36-L291C75" }, { "DocsId": "P:System.Drawing.Pens.Snow", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L292C31-L292C60" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L292C31-L292C60" }, { "DocsId": "P:System.Drawing.Pens.SpringGreen", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L293C38-L293C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L293C38-L293C81" }, { "DocsId": "P:System.Drawing.Pens.SteelBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L294C36-L294C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L294C36-L294C75" }, { "DocsId": "P:System.Drawing.Pens.Tan", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L296C30-L296C57" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L296C30-L296C57" }, { "DocsId": "P:System.Drawing.Pens.Teal", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L297C31-L297C60" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L297C31-L297C60" }, { "DocsId": "P:System.Drawing.Pens.Thistle", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L298C34-L298C69" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L298C34-L298C69" }, { "DocsId": "P:System.Drawing.Pens.Tomato", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L299C33-L299C66" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L299C33-L299C66" }, { "DocsId": "P:System.Drawing.Pens.Turquoise", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L300C36-L300C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L300C36-L300C75" }, { "DocsId": "P:System.Drawing.Pens.Violet", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L302C33-L302C66" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L302C33-L302C66" }, { "DocsId": "P:System.Drawing.Pens.Wheat", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L304C32-L304C63" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L304C32-L304C63" }, { "DocsId": "P:System.Drawing.Pens.White", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L305C32-L305C63" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L305C32-L305C63" }, { "DocsId": "P:System.Drawing.Pens.WhiteSmoke", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L306C37-L306C78" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L306C37-L306C78" }, { "DocsId": "P:System.Drawing.Pens.Yellow", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L308C33-L308C66" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L308C33-L308C66" }, { "DocsId": "P:System.Drawing.Pens.YellowGreen", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L309C38-L309C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs#L309C38-L309C81" } ], "DocsId": "T:System.Drawing.Pens", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Pens.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Pens.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Region.IPointer#get_Pointer", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L12C45-L12C57" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L12C45-L12C57" }, { "DocsId": "M:System.Drawing.Region.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L14C5-L19C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L14C5-L19C6" }, { "DocsId": "M:System.Drawing.Region.#ctor(System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L21C5-L27C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L21C5-L27C6" }, { "DocsId": "M:System.Drawing.Region.#ctor(System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L29C37-L31C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L29C37-L31C6" }, { "DocsId": "M:System.Drawing.Region.#ctor(System.Drawing.Drawing2D.GraphicsPath)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L33C5-L41C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L33C5-L41C6" }, { "DocsId": "M:System.Drawing.Region.#ctor(System.Drawing.Drawing2D.RegionData)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L43C5-L54C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L43C5-L54C6" }, { "DocsId": "M:System.Drawing.Region.FromHrgn(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L60C9-L62C35" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L60C9-L62C35" }, { "DocsId": "M:System.Drawing.Region.Clone", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L75C9-L77C35" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L75C9-L77C35" }, { "DocsId": "M:System.Drawing.Region.ReleaseHrgn(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L82C9-L89C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L82C9-L89C6" }, { "DocsId": "M:System.Drawing.Region.Dispose", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L93C9-L101C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L93C9-L101C6" }, { "DocsId": "M:System.Drawing.Region.Finalize", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L103C18-L103C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L103C18-L16707566C0" }, { "DocsId": "M:System.Drawing.Region.MakeInfinite", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L105C35-L105C85" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L105C35-L105C85" }, { "DocsId": "M:System.Drawing.Region.MakeEmpty", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L107C32-L107C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L107C32-L107C79" }, { "DocsId": "M:System.Drawing.Region.Intersect(System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L110C9-L110C122" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L110C9-L110C122" }, { "DocsId": "M:System.Drawing.Region.Intersect(System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L112C46-L112C73" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L112C46-L112C73" }, { "DocsId": "M:System.Drawing.Region.Intersect(System.Drawing.Drawing2D.GraphicsPath)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L116C9-L119C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L116C9-L119C6" }, { "DocsId": "M:System.Drawing.Region.Intersect(System.Drawing.Region)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L123C9-L126C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L123C9-L126C6" }, { "DocsId": "M:System.Drawing.Region.Union(System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L129C9-L129C118" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L129C9-L129C118" }, { "DocsId": "M:System.Drawing.Region.Union(System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L131C42-L131C65" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L131C42-L131C65" }, { "DocsId": "M:System.Drawing.Region.Union(System.Drawing.Drawing2D.GraphicsPath)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L135C9-L138C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L135C9-L138C6" }, { "DocsId": "M:System.Drawing.Region.Union(System.Drawing.Region)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L142C9-L145C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L142C9-L145C6" }, { "DocsId": "M:System.Drawing.Region.Xor(System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L148C9-L148C116" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L148C9-L148C116" }, { "DocsId": "M:System.Drawing.Region.Xor(System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L150C40-L150C61" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L150C40-L150C61" }, { "DocsId": "M:System.Drawing.Region.Xor(System.Drawing.Drawing2D.GraphicsPath)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L154C9-L157C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L154C9-L157C6" }, { "DocsId": "M:System.Drawing.Region.Xor(System.Drawing.Region)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L161C9-L164C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L161C9-L164C6" }, { "DocsId": "M:System.Drawing.Region.Exclude(System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L167C9-L167C120" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L167C9-L167C120" }, { "DocsId": "M:System.Drawing.Region.Exclude(System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L169C44-L169C69" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L169C44-L169C69" }, { "DocsId": "M:System.Drawing.Region.Exclude(System.Drawing.Drawing2D.GraphicsPath)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L173C9-L176C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L173C9-L176C6" }, { "DocsId": "M:System.Drawing.Region.Exclude(System.Drawing.Region)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L180C9-L183C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L180C9-L183C6" }, { "DocsId": "M:System.Drawing.Region.Complement(System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L186C9-L186C123" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L186C9-L186C123" }, { "DocsId": "M:System.Drawing.Region.Complement(System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L188C47-L188C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L188C47-L188C75" }, { "DocsId": "M:System.Drawing.Region.Complement(System.Drawing.Drawing2D.GraphicsPath)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L192C9-L195C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L192C9-L195C6" }, { "DocsId": "M:System.Drawing.Region.Complement(System.Drawing.Region)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L199C9-L202C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L199C9-L202C6" }, { "DocsId": "M:System.Drawing.Region.Translate(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L204C50-L204C112" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L204C50-L204C112" }, { "DocsId": "M:System.Drawing.Region.Translate(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L206C46-L206C70" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L206C46-L206C70" }, { "DocsId": "M:System.Drawing.Region.Transform(System.Drawing.Drawing2D.Matrix)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L210C9-L214C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L210C9-L214C6" }, { "DocsId": "M:System.Drawing.Region.GetBounds(System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L218C9-L222C23" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L218C9-L222C23" }, { "DocsId": "M:System.Drawing.Region.GetHrgn(System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L227C9-L231C21" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L227C9-L231C21" }, { "DocsId": "M:System.Drawing.Region.IsEmpty(System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L236C9-L240C24" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L236C9-L240C24" }, { "DocsId": "M:System.Drawing.Region.IsInfinite(System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L245C9-L248C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L245C9-L248C27" }, { "DocsId": "M:System.Drawing.Region.Equals(System.Drawing.Region,System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L253C9-L259C24" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L253C9-L259C24" }, { "DocsId": "M:System.Drawing.Region.GetRegionData", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L265C9-L276C43" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L265C9-L276C43" }, { "DocsId": "M:System.Drawing.Region.IsVisible(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L279C48-L279C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L279C48-L279C81" }, { "DocsId": "M:System.Drawing.Region.IsVisible(System.Drawing.PointF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L281C44-L281C66" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L281C44-L281C66" }, { "DocsId": "M:System.Drawing.Region.IsVisible(System.Single,System.Single,System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L283C61-L283C91" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L283C61-L283C91" }, { "DocsId": "M:System.Drawing.Region.IsVisible(System.Drawing.PointF,System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L288C9-L296C26" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L288C9-L296C26" }, { "DocsId": "M:System.Drawing.Region.IsVisible(System.Single,System.Single,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L299C75-L299C127" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L299C75-L299C127" }, { "DocsId": "M:System.Drawing.Region.IsVisible(System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L301C47-L301C68" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L301C47-L301C68" }, { "DocsId": "M:System.Drawing.Region.IsVisible(System.Single,System.Single,System.Single,System.Single,System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L303C88-L303C137" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L303C88-L303C137" }, { "DocsId": "M:System.Drawing.Region.IsVisible(System.Drawing.RectangleF,System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L308C9-L315C26" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L308C9-L315C26" }, { "DocsId": "M:System.Drawing.Region.IsVisible(System.Int32,System.Int32,System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L318C57-L318C86" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L318C57-L318C86" }, { "DocsId": "M:System.Drawing.Region.IsVisible(System.Drawing.Point)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L320C43-L320C65" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L320C43-L320C65" }, { "DocsId": "M:System.Drawing.Region.IsVisible(System.Drawing.Point,System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L322C56-L322C83" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L322C56-L322C83" }, { "DocsId": "M:System.Drawing.Region.IsVisible(System.Int32,System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L324C67-L324C118" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L324C67-L324C118" }, { "DocsId": "M:System.Drawing.Region.IsVisible(System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L326C46-L326C67" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L326C46-L326C67" }, { "DocsId": "M:System.Drawing.Region.IsVisible(System.Int32,System.Int32,System.Int32,System.Int32,System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L328C80-L328C128" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L328C80-L328C128" }, { "DocsId": "M:System.Drawing.Region.IsVisible(System.Drawing.Rectangle,System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L330C59-L330C89" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L330C59-L330C89" }, { "DocsId": "M:System.Drawing.Region.GetRegionScans(System.Drawing.Drawing2D.Matrix)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L334C9-L359C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L334C9-L359C27" }, { "DocsId": "P:System.Drawing.Region.IPointer#Pointer", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs#L12C45-L12C57" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs#L12C45-L12C57" } ], "DocsId": "T:System.Drawing.Region", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Region.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Region.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.RotateFlipType.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" }, { "DocsId": "F:System.Drawing.RotateFlipType.RotateNoneFlipNone", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" }, { "DocsId": "F:System.Drawing.RotateFlipType.Rotate90FlipNone", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" }, { "DocsId": "F:System.Drawing.RotateFlipType.Rotate180FlipNone", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" }, { "DocsId": "F:System.Drawing.RotateFlipType.Rotate270FlipNone", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" }, { "DocsId": "F:System.Drawing.RotateFlipType.RotateNoneFlipX", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" }, { "DocsId": "F:System.Drawing.RotateFlipType.Rotate90FlipX", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" }, { "DocsId": "F:System.Drawing.RotateFlipType.Rotate180FlipX", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" }, { "DocsId": "F:System.Drawing.RotateFlipType.Rotate270FlipX", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" }, { "DocsId": "F:System.Drawing.RotateFlipType.RotateNoneFlipY", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" }, { "DocsId": "F:System.Drawing.RotateFlipType.Rotate90FlipY", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" }, { "DocsId": "F:System.Drawing.RotateFlipType.Rotate180FlipY", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" }, { "DocsId": "F:System.Drawing.RotateFlipType.Rotate270FlipY", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" }, { "DocsId": "F:System.Drawing.RotateFlipType.RotateNoneFlipXY", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" }, { "DocsId": "F:System.Drawing.RotateFlipType.Rotate90FlipXY", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" }, { "DocsId": "F:System.Drawing.RotateFlipType.Rotate180FlipXY", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" }, { "DocsId": "F:System.Drawing.RotateFlipType.Rotate270FlipXY", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" } ], "DocsId": "T:System.Drawing.RotateFlipType", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/RotateFlipType.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.SolidBrush.#ctor(System.Drawing.Color)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SolidBrush.cs#L11C5-L26C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SolidBrush.cs#L11C5-L26C6" }, { "DocsId": "M:System.Drawing.SolidBrush.Clone", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SolidBrush.cs#L39C9-L43C58" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SolidBrush.cs#L39C9-L43C58" }, { "DocsId": "M:System.Drawing.SolidBrush.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SolidBrush.cs#L48C9-L58C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SolidBrush.cs#L48C9-L58C6" }, { "DocsId": "M:System.Drawing.SolidBrush.System#Drawing#Internal#ISystemColorTracker#OnSystemColorChanged", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SolidBrush.cs#L107C9-L111C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SolidBrush.cs#L107C9-L111C6" }, { "DocsId": "P:System.Drawing.SolidBrush.Color", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SolidBrush.cs#L64C13-L73C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SolidBrush.cs#L64C13-L73C27" } ], "DocsId": "T:System.Drawing.SolidBrush", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SolidBrush.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SolidBrush.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.StockIconId.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.DocumentNoAssociation", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.DocumentWithAssociation", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.Application", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.Folder", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.FolderOpen", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.Drive525", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.Drive35", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.DriveRemovable", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.DriveFixed", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.DriveNet", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.DriveNetDisabled", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.DriveCD", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.DriveRam", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.World", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.Server", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.Printer", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MyNetwork", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.Find", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.Help", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.Share", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.Link", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.SlowFile", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.Recycler", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.RecyclerFull", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MediaCDAudio", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.Lock", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.AutoList", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.PrinterNet", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.ServerShare", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.PrinterFax", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.PrinterFaxNet", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.PrinterFile", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.Stack", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MediaSVCD", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.StuffedFolder", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.DriveUnknown", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.DriveDVD", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MediaDVD", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MediaDVDRAM", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MediaDVDRW", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MediaDVDR", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MediaDVDROM", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MediaCDAudioPlus", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MediaCDRW", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MediaCDR", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MediaCDBurn", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MediaBlankCD", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MediaCDROM", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.AudioFiles", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.ImageFiles", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.VideoFiles", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MixedFiles", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.FolderBack", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.FolderFront", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.Shield", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.Warning", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.Info", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.Error", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.Key", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.Software", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.Rename", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.Delete", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MediaAudioDVD", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MediaMovieDVD", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MediaEnhancedCD", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MediaEnhancedDVD", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MediaHDDVD", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MediaBluRay", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MediaVCD", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MediaDVDPlusR", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MediaDVDPlusRW", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.DesktopPC", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MobilePC", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.Users", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MediaSmartMedia", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MediaCompactFlash", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.DeviceCellPhone", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.DeviceCamera", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.DeviceVideoCamera", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.DeviceAudioPlayer", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.NetworkConnect", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.Internet", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.ZipFile", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.Settings", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.DriveHDDVD", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.DriveBD", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MediaHDDVDROM", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MediaHDDVDR", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MediaHDDVDRAM", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MediaBDROM", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MediaBDR", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.MediaBDRE", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "DocsId": "F:System.Drawing.StockIconId.ClusteredDrive", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" } ], "DocsId": "T:System.Drawing.StockIconId", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconId.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.StockIconOptions.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconOptions.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconOptions.cs" }, { "DocsId": "F:System.Drawing.StockIconOptions.Default", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconOptions.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconOptions.cs" }, { "DocsId": "F:System.Drawing.StockIconOptions.SmallIcon", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconOptions.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconOptions.cs" }, { "DocsId": "F:System.Drawing.StockIconOptions.ShellIconSize", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconOptions.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconOptions.cs" }, { "DocsId": "F:System.Drawing.StockIconOptions.LinkOverlay", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconOptions.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconOptions.cs" }, { "DocsId": "F:System.Drawing.StockIconOptions.Selected", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconOptions.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconOptions.cs" } ], "DocsId": "T:System.Drawing.StockIconOptions", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StockIconOptions.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StockIconOptions.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.StringAlignment.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringAlignment.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringAlignment.cs" }, { "DocsId": "F:System.Drawing.StringAlignment.Near", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringAlignment.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringAlignment.cs" }, { "DocsId": "F:System.Drawing.StringAlignment.Center", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringAlignment.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringAlignment.cs" }, { "DocsId": "F:System.Drawing.StringAlignment.Far", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringAlignment.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringAlignment.cs" } ], "DocsId": "T:System.Drawing.StringAlignment", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringAlignment.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringAlignment.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.StringDigitSubstitute.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringDigitSubstitute.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringDigitSubstitute.cs" }, { "DocsId": "F:System.Drawing.StringDigitSubstitute.User", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringDigitSubstitute.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringDigitSubstitute.cs" }, { "DocsId": "F:System.Drawing.StringDigitSubstitute.None", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringDigitSubstitute.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringDigitSubstitute.cs" }, { "DocsId": "F:System.Drawing.StringDigitSubstitute.National", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringDigitSubstitute.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringDigitSubstitute.cs" }, { "DocsId": "F:System.Drawing.StringDigitSubstitute.Traditional", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringDigitSubstitute.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringDigitSubstitute.cs" } ], "DocsId": "T:System.Drawing.StringDigitSubstitute", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringDigitSubstitute.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringDigitSubstitute.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.StringFormat.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L22C29-L24C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L22C29-L24C6" }, { "DocsId": "M:System.Drawing.StringFormat.#ctor(System.Drawing.StringFormatFlags)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L29C54-L31C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L29C54-L31C6" }, { "DocsId": "M:System.Drawing.StringFormat.#ctor(System.Drawing.StringFormatFlags,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L37C5-L42C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L37C5-L42C6" }, { "DocsId": "M:System.Drawing.StringFormat.#ctor(System.Drawing.StringFormat)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L48C5-L55C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L48C5-L55C6" }, { "DocsId": "M:System.Drawing.StringFormat.Dispose", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L62C9-L64C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L62C9-L64C6" }, { "DocsId": "M:System.Drawing.StringFormat.Clone", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L99C30-L99C52" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L99C30-L99C52" }, { "DocsId": "M:System.Drawing.StringFormat.SetMeasurableCharacterRanges(System.Drawing.CharacterRange[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L125C9-L139C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L125C9-L139C6" }, { "DocsId": "M:System.Drawing.StringFormat.SetTabStops(System.Single,System.Single[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L218C9-L237C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L218C9-L237C6" }, { "DocsId": "M:System.Drawing.StringFormat.GetTabStops(System.Single@)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L245C9-L260C29" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L245C9-L260C29" }, { "DocsId": "M:System.Drawing.StringFormat.SetDigitSubstitution(System.Int32,System.Drawing.StringDigitSubstitute)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L341C9-L347C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L341C9-L347C6" }, { "DocsId": "M:System.Drawing.StringFormat.Finalize", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L392C24-L392C49" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L392C24-L16707566C0" }, { "DocsId": "M:System.Drawing.StringFormat.ToString", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L397C42-L397C86" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L397C42-L397C86" }, { "DocsId": "P:System.Drawing.StringFormat.FormatFlags", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L109C13-L111C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L109C13-L111C27" }, { "DocsId": "P:System.Drawing.StringFormat.Alignment", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L149C13-L151C30" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L149C13-L151C30" }, { "DocsId": "P:System.Drawing.StringFormat.LineAlignment", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L173C13-L175C30" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L173C13-L175C30" }, { "DocsId": "P:System.Drawing.StringFormat.HotkeyPrefix", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L197C13-L199C33" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L197C13-L199C33" }, { "DocsId": "P:System.Drawing.StringFormat.Trimming", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L275C13-L277C29" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L275C13-L277C29" }, { "DocsId": "P:System.Drawing.StringFormat.GenericDefault", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L310C13-L311C45" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L310C13-L311C45" }, { "DocsId": "P:System.Drawing.StringFormat.GenericTypographic", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L334C13-L335C45" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L334C13-L335C45" }, { "DocsId": "P:System.Drawing.StringFormat.DigitSubstitutionMethod", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L357C13-L363C36" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L357C13-L363C36" }, { "DocsId": "P:System.Drawing.StringFormat.DigitSubstitutionLanguage", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L375C13-L377C29" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs#L375C13-L377C29" } ], "DocsId": "T:System.Drawing.StringFormat", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringFormat.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.StringFormatFlags.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringFormatFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringFormatFlags.cs" }, { "DocsId": "F:System.Drawing.StringFormatFlags.DirectionRightToLeft", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringFormatFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringFormatFlags.cs" }, { "DocsId": "F:System.Drawing.StringFormatFlags.DirectionVertical", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringFormatFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringFormatFlags.cs" }, { "DocsId": "F:System.Drawing.StringFormatFlags.FitBlackBox", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringFormatFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringFormatFlags.cs" }, { "DocsId": "F:System.Drawing.StringFormatFlags.DisplayFormatControl", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringFormatFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringFormatFlags.cs" }, { "DocsId": "F:System.Drawing.StringFormatFlags.NoFontFallback", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringFormatFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringFormatFlags.cs" }, { "DocsId": "F:System.Drawing.StringFormatFlags.MeasureTrailingSpaces", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringFormatFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringFormatFlags.cs" }, { "DocsId": "F:System.Drawing.StringFormatFlags.NoWrap", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringFormatFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringFormatFlags.cs" }, { "DocsId": "F:System.Drawing.StringFormatFlags.LineLimit", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringFormatFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringFormatFlags.cs" }, { "DocsId": "F:System.Drawing.StringFormatFlags.NoClip", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringFormatFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringFormatFlags.cs" } ], "DocsId": "T:System.Drawing.StringFormatFlags", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringFormatFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringFormatFlags.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.StringTrimming.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringTrimming.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringTrimming.cs" }, { "DocsId": "F:System.Drawing.StringTrimming.None", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringTrimming.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringTrimming.cs" }, { "DocsId": "F:System.Drawing.StringTrimming.Character", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringTrimming.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringTrimming.cs" }, { "DocsId": "F:System.Drawing.StringTrimming.Word", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringTrimming.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringTrimming.cs" }, { "DocsId": "F:System.Drawing.StringTrimming.EllipsisCharacter", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringTrimming.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringTrimming.cs" }, { "DocsId": "F:System.Drawing.StringTrimming.EllipsisWord", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringTrimming.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringTrimming.cs" }, { "DocsId": "F:System.Drawing.StringTrimming.EllipsisPath", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringTrimming.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringTrimming.cs" } ], "DocsId": "T:System.Drawing.StringTrimming", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringTrimming.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringTrimming.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.StringUnit.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringUnit.cs" }, { "DocsId": "F:System.Drawing.StringUnit.World", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringUnit.cs" }, { "DocsId": "F:System.Drawing.StringUnit.Display", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringUnit.cs" }, { "DocsId": "F:System.Drawing.StringUnit.Pixel", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringUnit.cs" }, { "DocsId": "F:System.Drawing.StringUnit.Point", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringUnit.cs" }, { "DocsId": "F:System.Drawing.StringUnit.Inch", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringUnit.cs" }, { "DocsId": "F:System.Drawing.StringUnit.Document", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringUnit.cs" }, { "DocsId": "F:System.Drawing.StringUnit.Millimeter", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringUnit.cs" }, { "DocsId": "F:System.Drawing.StringUnit.Em", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringUnit.cs" } ], "DocsId": "T:System.Drawing.StringUnit", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/StringUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/StringUnit.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.SystemBrushes.FromSystemColor(System.Drawing.Color)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L55C9-L76C63" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L55C9-L76C63" }, { "DocsId": "P:System.Drawing.SystemBrushes.ActiveBorder", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L10C41-L10C83" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L10C41-L10C83" }, { "DocsId": "P:System.Drawing.SystemBrushes.ActiveCaption", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L11C42-L11C85" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L11C42-L11C85" }, { "DocsId": "P:System.Drawing.SystemBrushes.ActiveCaptionText", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L12C46-L12C93" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L12C46-L12C93" }, { "DocsId": "P:System.Drawing.SystemBrushes.AppWorkspace", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L13C41-L13C83" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L13C41-L13C83" }, { "DocsId": "P:System.Drawing.SystemBrushes.ButtonFace", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L15C39-L15C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L15C39-L15C79" }, { "DocsId": "P:System.Drawing.SystemBrushes.ButtonHighlight", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L16C44-L16C89" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L16C44-L16C89" }, { "DocsId": "P:System.Drawing.SystemBrushes.ButtonShadow", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L17C41-L17C83" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L17C41-L17C83" }, { "DocsId": "P:System.Drawing.SystemBrushes.Control", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L19C36-L19C73" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L19C36-L19C73" }, { "DocsId": "P:System.Drawing.SystemBrushes.ControlLightLight", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L20C46-L20C93" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L20C46-L20C93" }, { "DocsId": "P:System.Drawing.SystemBrushes.ControlLight", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L21C41-L21C83" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L21C41-L21C83" }, { "DocsId": "P:System.Drawing.SystemBrushes.ControlDark", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L22C40-L22C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L22C40-L22C81" }, { "DocsId": "P:System.Drawing.SystemBrushes.ControlDarkDark", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L23C44-L23C89" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L23C44-L23C89" }, { "DocsId": "P:System.Drawing.SystemBrushes.ControlText", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L24C40-L24C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L24C40-L24C81" }, { "DocsId": "P:System.Drawing.SystemBrushes.Desktop", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L26C36-L26C73" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L26C36-L26C73" }, { "DocsId": "P:System.Drawing.SystemBrushes.GradientActiveCaption", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L28C50-L28C101" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L28C50-L28C101" }, { "DocsId": "P:System.Drawing.SystemBrushes.GradientInactiveCaption", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L29C52-L29C105" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L29C52-L29C105" }, { "DocsId": "P:System.Drawing.SystemBrushes.GrayText", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L30C37-L30C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L30C37-L30C75" }, { "DocsId": "P:System.Drawing.SystemBrushes.Highlight", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L32C38-L32C77" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L32C38-L32C77" }, { "DocsId": "P:System.Drawing.SystemBrushes.HighlightText", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L33C42-L33C85" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L33C42-L33C85" }, { "DocsId": "P:System.Drawing.SystemBrushes.HotTrack", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L34C37-L34C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L34C37-L34C75" }, { "DocsId": "P:System.Drawing.SystemBrushes.InactiveCaption", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L36C44-L36C89" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L36C44-L36C89" }, { "DocsId": "P:System.Drawing.SystemBrushes.InactiveBorder", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L37C43-L37C87" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L37C43-L37C87" }, { "DocsId": "P:System.Drawing.SystemBrushes.InactiveCaptionText", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L38C48-L38C97" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L38C48-L38C97" }, { "DocsId": "P:System.Drawing.SystemBrushes.Info", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L39C33-L39C67" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L39C33-L39C67" }, { "DocsId": "P:System.Drawing.SystemBrushes.InfoText", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L40C37-L40C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L40C37-L40C75" }, { "DocsId": "P:System.Drawing.SystemBrushes.Menu", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L42C33-L42C67" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L42C33-L42C67" }, { "DocsId": "P:System.Drawing.SystemBrushes.MenuBar", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L43C36-L43C73" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L43C36-L43C73" }, { "DocsId": "P:System.Drawing.SystemBrushes.MenuHighlight", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L44C42-L44C85" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L44C42-L44C85" }, { "DocsId": "P:System.Drawing.SystemBrushes.MenuText", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L45C37-L45C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L45C37-L45C75" }, { "DocsId": "P:System.Drawing.SystemBrushes.ScrollBar", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L47C38-L47C77" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L47C38-L47C77" }, { "DocsId": "P:System.Drawing.SystemBrushes.Window", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L49C35-L49C71" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L49C35-L49C71" }, { "DocsId": "P:System.Drawing.SystemBrushes.WindowFrame", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L50C40-L50C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L50C40-L50C81" }, { "DocsId": "P:System.Drawing.SystemBrushes.WindowText", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L51C39-L51C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs#L51C39-L51C79" } ], "DocsId": "T:System.Drawing.SystemBrushes", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.SystemFonts.GetFontByName(System.String)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemFonts.cs#L15C9-L48C21" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemFonts.cs#L15C9-L48C21" }, { "DocsId": "P:System.Drawing.SystemFonts.CaptionFont", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemFonts.cs#L61C13-L69C32" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemFonts.cs#L61C13-L69C32" }, { "DocsId": "P:System.Drawing.SystemFonts.SmallCaptionFont", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemFonts.cs#L77C13-L85C34" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemFonts.cs#L77C13-L85C34" }, { "DocsId": "P:System.Drawing.SystemFonts.MenuFont", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemFonts.cs#L93C13-L101C29" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemFonts.cs#L93C13-L101C29" }, { "DocsId": "P:System.Drawing.SystemFonts.StatusFont", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemFonts.cs#L109C13-L117C31" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemFonts.cs#L109C13-L117C31" }, { "DocsId": "P:System.Drawing.SystemFonts.MessageBoxFont", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemFonts.cs#L125C13-L133C35" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemFonts.cs#L125C13-L133C35" }, { "DocsId": "P:System.Drawing.SystemFonts.IconTitleFont", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemFonts.cs#L151C13-L160C34" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemFonts.cs#L151C13-L160C34" }, { "DocsId": "P:System.Drawing.SystemFonts.DefaultFont", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemFonts.cs#L168C13-L218C32" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemFonts.cs#L168C13-L218C32" }, { "DocsId": "P:System.Drawing.SystemFonts.DialogFont", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemFonts.cs#L226C13-L258C31" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemFonts.cs#L226C13-L258C31" } ], "DocsId": "T:System.Drawing.SystemFonts", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemFonts.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemFonts.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.SystemIcons.GetStockIcon(System.Drawing.StockIconId,System.Drawing.StockIconOptions)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs#L77C9-L90C58" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs#L77C9-L90C58" }, { "DocsId": "M:System.Drawing.SystemIcons.GetStockIcon(System.Drawing.StockIconId,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs#L103C9-L127C53" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs#L103C9-L127C53" }, { "DocsId": "P:System.Drawing.SystemIcons.Application", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs#L22C39-L22C94" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs#L22C39-L22C94" }, { "DocsId": "P:System.Drawing.SystemIcons.Asterisk", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs#L24C36-L24C85" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs#L24C36-L24C85" }, { "DocsId": "P:System.Drawing.SystemIcons.Error", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs#L26C33-L26C76" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs#L26C33-L26C76" }, { "DocsId": "P:System.Drawing.SystemIcons.Exclamation", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs#L28C39-L28C94" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs#L28C39-L28C94" }, { "DocsId": "P:System.Drawing.SystemIcons.Hand", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs#L30C32-L30C73" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs#L30C32-L30C73" }, { "DocsId": "P:System.Drawing.SystemIcons.Information", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs#L32C39-L32C94" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs#L32C39-L32C94" }, { "DocsId": "P:System.Drawing.SystemIcons.Question", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs#L34C36-L34C85" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs#L34C36-L34C85" }, { "DocsId": "P:System.Drawing.SystemIcons.Warning", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs#L36C35-L36C82" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs#L36C35-L36C82" }, { "DocsId": "P:System.Drawing.SystemIcons.WinLogo", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs#L38C35-L38C82" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs#L38C35-L38C82" }, { "DocsId": "P:System.Drawing.SystemIcons.Shield", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs#L44C13-L50C29" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs#L44C13-L50C29" } ], "DocsId": "T:System.Drawing.SystemIcons", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemIcons.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.SystemPens.FromSystemColor(System.Drawing.Color)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L56C9-L76C53" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L56C9-L76C53" }, { "DocsId": "P:System.Drawing.SystemPens.ActiveBorder", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L10C39-L10C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L10C39-L10C81" }, { "DocsId": "P:System.Drawing.SystemPens.ActiveCaption", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L11C40-L11C83" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L11C40-L11C83" }, { "DocsId": "P:System.Drawing.SystemPens.ActiveCaptionText", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L12C44-L12C91" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L12C44-L12C91" }, { "DocsId": "P:System.Drawing.SystemPens.AppWorkspace", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L13C39-L13C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L13C39-L13C81" }, { "DocsId": "P:System.Drawing.SystemPens.ButtonFace", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L15C37-L15C77" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L15C37-L15C77" }, { "DocsId": "P:System.Drawing.SystemPens.ButtonHighlight", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L16C42-L16C87" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L16C42-L16C87" }, { "DocsId": "P:System.Drawing.SystemPens.ButtonShadow", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L18C39-L18C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L18C39-L18C81" }, { "DocsId": "P:System.Drawing.SystemPens.Control", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L20C34-L20C71" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L20C34-L20C71" }, { "DocsId": "P:System.Drawing.SystemPens.ControlText", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L21C38-L21C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L21C38-L21C79" }, { "DocsId": "P:System.Drawing.SystemPens.ControlDark", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L22C38-L22C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L22C38-L22C79" }, { "DocsId": "P:System.Drawing.SystemPens.ControlDarkDark", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L23C42-L23C87" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L23C42-L23C87" }, { "DocsId": "P:System.Drawing.SystemPens.ControlLight", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L24C39-L24C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L24C39-L24C81" }, { "DocsId": "P:System.Drawing.SystemPens.ControlLightLight", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L25C44-L25C91" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L25C44-L25C91" }, { "DocsId": "P:System.Drawing.SystemPens.Desktop", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L27C34-L27C71" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L27C34-L27C71" }, { "DocsId": "P:System.Drawing.SystemPens.GradientActiveCaption", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L29C48-L29C99" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L29C48-L29C99" }, { "DocsId": "P:System.Drawing.SystemPens.GradientInactiveCaption", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L30C50-L30C103" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L30C50-L30C103" }, { "DocsId": "P:System.Drawing.SystemPens.GrayText", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L31C35-L31C73" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L31C35-L31C73" }, { "DocsId": "P:System.Drawing.SystemPens.Highlight", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L33C36-L33C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L33C36-L33C75" }, { "DocsId": "P:System.Drawing.SystemPens.HighlightText", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L34C40-L34C83" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L34C40-L34C83" }, { "DocsId": "P:System.Drawing.SystemPens.HotTrack", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L35C35-L35C73" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L35C35-L35C73" }, { "DocsId": "P:System.Drawing.SystemPens.InactiveBorder", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L37C41-L37C85" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L37C41-L37C85" }, { "DocsId": "P:System.Drawing.SystemPens.InactiveCaption", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L38C42-L38C87" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L38C42-L38C87" }, { "DocsId": "P:System.Drawing.SystemPens.InactiveCaptionText", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L39C46-L39C95" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L39C46-L39C95" }, { "DocsId": "P:System.Drawing.SystemPens.Info", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L40C31-L40C65" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L40C31-L40C65" }, { "DocsId": "P:System.Drawing.SystemPens.InfoText", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L41C35-L41C73" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L41C35-L41C73" }, { "DocsId": "P:System.Drawing.SystemPens.Menu", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L43C31-L43C65" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L43C31-L43C65" }, { "DocsId": "P:System.Drawing.SystemPens.MenuBar", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L44C34-L44C71" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L44C34-L44C71" }, { "DocsId": "P:System.Drawing.SystemPens.MenuHighlight", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L45C40-L45C83" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L45C40-L45C83" }, { "DocsId": "P:System.Drawing.SystemPens.MenuText", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L46C35-L46C73" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L46C35-L46C73" }, { "DocsId": "P:System.Drawing.SystemPens.ScrollBar", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L48C36-L48C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L48C36-L48C75" }, { "DocsId": "P:System.Drawing.SystemPens.Window", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L50C33-L50C69" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L50C33-L50C69" }, { "DocsId": "P:System.Drawing.SystemPens.WindowFrame", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L51C38-L51C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L51C38-L51C79" }, { "DocsId": "P:System.Drawing.SystemPens.WindowText", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L52C37-L52C77" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs#L52C37-L52C77" } ], "DocsId": "T:System.Drawing.SystemPens", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/SystemPens.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.TextureBrush.#ctor(System.Drawing.Image)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L17C41-L19C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L17C41-L19C6" }, { "DocsId": "M:System.Drawing.TextureBrush.#ctor(System.Drawing.Image,System.Drawing.Drawing2D.WrapMode)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L21C5-L34C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L21C5-L34C6" }, { "DocsId": "M:System.Drawing.TextureBrush.#ctor(System.Drawing.Image,System.Drawing.Drawing2D.WrapMode,System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L36C5-L53C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L36C5-L53C6" }, { "DocsId": "M:System.Drawing.TextureBrush.#ctor(System.Drawing.Image,System.Drawing.Drawing2D.WrapMode,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L56C11-L58C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L56C11-L58C6" }, { "DocsId": "M:System.Drawing.TextureBrush.#ctor(System.Drawing.Image,System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L60C60-L60C90" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L60C60-L60C90" }, { "DocsId": "M:System.Drawing.TextureBrush.#ctor(System.Drawing.Image,System.Drawing.RectangleF,System.Drawing.Imaging.ImageAttributes)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L62C5-L79C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L62C5-L79C6" }, { "DocsId": "M:System.Drawing.TextureBrush.#ctor(System.Drawing.Image,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L81C59-L81C89" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L81C59-L81C89" }, { "DocsId": "M:System.Drawing.TextureBrush.#ctor(System.Drawing.Image,System.Drawing.Rectangle,System.Drawing.Imaging.ImageAttributes)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L84C11-L86C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L84C11-L86C6" }, { "DocsId": "M:System.Drawing.TextureBrush.Clone", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L97C9-L100C57" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L97C9-L100C57" }, { "DocsId": "M:System.Drawing.TextureBrush.ResetTransform", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L154C9-L156C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L154C9-L156C6" }, { "DocsId": "M:System.Drawing.TextureBrush.MultiplyTransform(System.Drawing.Drawing2D.Matrix)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L158C53-L158C99" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L158C53-L158C99" }, { "DocsId": "M:System.Drawing.TextureBrush.MultiplyTransform(System.Drawing.Drawing2D.Matrix,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L162C9-L176C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L162C9-L176C6" }, { "DocsId": "M:System.Drawing.TextureBrush.TranslateTransform(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L178C59-L178C106" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L178C59-L178C106" }, { "DocsId": "M:System.Drawing.TextureBrush.TranslateTransform(System.Single,System.Single,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L182C9-L188C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L182C9-L188C6" }, { "DocsId": "M:System.Drawing.TextureBrush.ScaleTransform(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L190C55-L190C98" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L190C55-L190C98" }, { "DocsId": "M:System.Drawing.TextureBrush.ScaleTransform(System.Single,System.Single,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L194C9-L200C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L194C9-L200C6" }, { "DocsId": "M:System.Drawing.TextureBrush.RotateTransform(System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L202C49-L202C92" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L202C49-L202C92" }, { "DocsId": "M:System.Drawing.TextureBrush.RotateTransform(System.Single,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L206C9-L212C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L206C9-L212C6" }, { "DocsId": "P:System.Drawing.TextureBrush.Transform", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L107C13-L110C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L107C13-L110C27" }, { "DocsId": "P:System.Drawing.TextureBrush.WrapMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L125C13-L127C45" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L125C13-L127C45" }, { "DocsId": "P:System.Drawing.TextureBrush.Image", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L146C13-L148C51" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs#L146C13-L148C51" } ], "DocsId": "T:System.Drawing.TextureBrush", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/TextureBrush.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.ToolboxBitmapAttribute.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs#L22C55-L24C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs#L22C55-L24C6" }, { "DocsId": "M:System.Drawing.ToolboxBitmapAttribute.#ctor(System.Type)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs#L26C45-L28C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs#L26C45-L28C6" }, { "DocsId": "M:System.Drawing.ToolboxBitmapAttribute.#ctor(System.Type,System.String)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs#L31C11-L33C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs#L31C11-L33C6" }, { "DocsId": "M:System.Drawing.ToolboxBitmapAttribute.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs#L43C9-L53C22" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs#L43C9-L53C22" }, { "DocsId": "M:System.Drawing.ToolboxBitmapAttribute.GetHashCode", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs#L56C42-L56C60" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs#L56C42-L56C60" }, { "DocsId": "M:System.Drawing.ToolboxBitmapAttribute.GetImage(System.Object)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs#L58C50-L58C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs#L58C50-L58C75" }, { "DocsId": "M:System.Drawing.ToolboxBitmapAttribute.GetImage(System.Object,System.Boolean)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs#L62C9-L67C21" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs#L62C9-L67C21" }, { "DocsId": "M:System.Drawing.ToolboxBitmapAttribute.GetImage(System.Type)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs#L70C42-L70C63" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs#L70C42-L70C63" }, { "DocsId": "M:System.Drawing.ToolboxBitmapAttribute.GetImage(System.Type,System.Boolean)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs#L72C54-L72C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs#L72C54-L72C81" }, { "DocsId": "M:System.Drawing.ToolboxBitmapAttribute.GetImage(System.Type,System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs#L76C9-L122C25" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs#L76C9-L122C25" }, { "DocsId": "M:System.Drawing.ToolboxBitmapAttribute.GetImageFromResource(System.Type,System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs#L222C9-L222C72" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs#L222C9-L222C72" }, { "DocsId": "F:System.Drawing.ToolboxBitmapAttribute.Default", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs" } ], "DocsId": "T:System.Drawing.ToolboxBitmapAttribute", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/ToolboxBitmapAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Text.FontCollection.Dispose", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Text/FontCollection.cs#L20C9-L22C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Text/FontCollection.cs#L20C9-L22C6" }, { "DocsId": "M:System.Drawing.Text.FontCollection.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Text/FontCollection.cs#L24C54-L24C55" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Text/FontCollection.cs#L24C54-L24C55" }, { "DocsId": "M:System.Drawing.Text.FontCollection.Finalize", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Text/FontCollection.cs#L61C26-L61C51" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Text/FontCollection.cs#L61C26-L16707566C0" }, { "DocsId": "P:System.Drawing.Text.FontCollection.Families", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Text/FontCollection.cs#L34C13-L57C29" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Text/FontCollection.cs#L34C13-L57C29" } ], "DocsId": "T:System.Drawing.Text.FontCollection", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Text/FontCollection.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Text/FontCollection.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Text.GenericFontFamilies.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Text/GenericFontFamilies.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Text/GenericFontFamilies.cs" }, { "DocsId": "F:System.Drawing.Text.GenericFontFamilies.Serif", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Text/GenericFontFamilies.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Text/GenericFontFamilies.cs" }, { "DocsId": "F:System.Drawing.Text.GenericFontFamilies.SansSerif", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Text/GenericFontFamilies.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Text/GenericFontFamilies.cs" }, { "DocsId": "F:System.Drawing.Text.GenericFontFamilies.Monospace", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Text/GenericFontFamilies.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Text/GenericFontFamilies.cs" } ], "DocsId": "T:System.Drawing.Text.GenericFontFamilies", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Text/GenericFontFamilies.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Text/GenericFontFamilies.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Text.HotkeyPrefix.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Text/HotkeyPrefix.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Text/HotkeyPrefix.cs" }, { "DocsId": "F:System.Drawing.Text.HotkeyPrefix.None", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Text/HotkeyPrefix.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Text/HotkeyPrefix.cs" }, { "DocsId": "F:System.Drawing.Text.HotkeyPrefix.Show", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Text/HotkeyPrefix.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Text/HotkeyPrefix.cs" }, { "DocsId": "F:System.Drawing.Text.HotkeyPrefix.Hide", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Text/HotkeyPrefix.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Text/HotkeyPrefix.cs" } ], "DocsId": "T:System.Drawing.Text.HotkeyPrefix", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Text/HotkeyPrefix.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Text/HotkeyPrefix.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Text.InstalledFontCollection.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Text/InstalledFontCollection.cs#L13C40-L18C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Text/InstalledFontCollection.cs#L13C40-L18C6" } ], "DocsId": "T:System.Drawing.Text.InstalledFontCollection", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Text/InstalledFontCollection.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Text/InstalledFontCollection.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Text.PrivateFontCollection.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Text/PrivateFontCollection.cs#L16C38-L21C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Text/PrivateFontCollection.cs#L16C38-L21C6" }, { "DocsId": "M:System.Drawing.Text.PrivateFontCollection.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Text/PrivateFontCollection.cs#L28C9-L52C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Text/PrivateFontCollection.cs#L28C9-L52C6" }, { "DocsId": "M:System.Drawing.Text.PrivateFontCollection.AddFontFile(System.String)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Text/PrivateFontCollection.cs#L59C9-L81C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Text/PrivateFontCollection.cs#L59C9-L74C6" }, { "DocsId": "M:System.Drawing.Text.PrivateFontCollection.AddMemoryFont(System.IntPtr,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Text/PrivateFontCollection.cs#L88C9-L90C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Text/PrivateFontCollection.cs#L81C9-L83C6" } ], "DocsId": "T:System.Drawing.Text.PrivateFontCollection", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Text/PrivateFontCollection.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Text/PrivateFontCollection.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Text.TextRenderingHint.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Text/TextRenderingHint.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Text/TextRenderingHint.cs" }, { "DocsId": "F:System.Drawing.Text.TextRenderingHint.SystemDefault", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Text/TextRenderingHint.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Text/TextRenderingHint.cs" }, { "DocsId": "F:System.Drawing.Text.TextRenderingHint.SingleBitPerPixelGridFit", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Text/TextRenderingHint.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Text/TextRenderingHint.cs" }, { "DocsId": "F:System.Drawing.Text.TextRenderingHint.SingleBitPerPixel", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Text/TextRenderingHint.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Text/TextRenderingHint.cs" }, { "DocsId": "F:System.Drawing.Text.TextRenderingHint.AntiAliasGridFit", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Text/TextRenderingHint.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Text/TextRenderingHint.cs" }, { "DocsId": "F:System.Drawing.Text.TextRenderingHint.AntiAlias", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Text/TextRenderingHint.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Text/TextRenderingHint.cs" }, { "DocsId": "F:System.Drawing.Text.TextRenderingHint.ClearTypeGridFit", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Text/TextRenderingHint.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Text/TextRenderingHint.cs" } ], "DocsId": "T:System.Drawing.Text.TextRenderingHint", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Text/TextRenderingHint.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Text/TextRenderingHint.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.StandardPrintController.IHandle#get_Handle", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/DefaultPrintController.cs#L17C32-L17C56" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/DefaultPrintController.cs#L17C32-L17C56" }, { "DocsId": "M:System.Drawing.Printing.StandardPrintController.OnStartPrint(System.Drawing.Printing.PrintDocument,System.Drawing.Printing.PrintEventArgs)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/DefaultPrintController.cs#L26C9-L63C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/DefaultPrintController.cs#L26C9-L63C6" }, { "DocsId": "M:System.Drawing.Printing.StandardPrintController.OnStartPage(System.Drawing.Printing.PrintDocument,System.Drawing.Printing.PrintPageEventArgs)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/DefaultPrintController.cs#L76C9-L106C70" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/DefaultPrintController.cs#L76C9-L106C70" }, { "DocsId": "M:System.Drawing.Printing.StandardPrintController.OnEndPage(System.Drawing.Printing.PrintDocument,System.Drawing.Printing.PrintPageEventArgs)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/DefaultPrintController.cs#L118C13-L131C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/DefaultPrintController.cs#L118C13-L131C6" }, { "DocsId": "M:System.Drawing.Printing.StandardPrintController.OnEndPrint(System.Drawing.Printing.PrintDocument,System.Drawing.Printing.PrintEventArgs)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/DefaultPrintController.cs#L140C9-L156C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/DefaultPrintController.cs#L140C9-L156C6" }, { "DocsId": "M:System.Drawing.Printing.StandardPrintController.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/DefaultPrintController.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/DefaultPrintController.cs" }, { "DocsId": "P:System.Drawing.Printing.StandardPrintController.IHandle#Handle", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/DefaultPrintController.cs#L17C32-L17C56" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/DefaultPrintController.cs#L17C32-L17C56" } ], "DocsId": "T:System.Drawing.Printing.StandardPrintController", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/DefaultPrintController.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/DefaultPrintController.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Printing.Duplex.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/Duplex.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/Duplex.cs" }, { "DocsId": "F:System.Drawing.Printing.Duplex.Default", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/Duplex.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/Duplex.cs" }, { "DocsId": "F:System.Drawing.Printing.Duplex.Simplex", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/Duplex.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/Duplex.cs" }, { "DocsId": "F:System.Drawing.Printing.Duplex.Horizontal", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/Duplex.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/Duplex.cs" }, { "DocsId": "F:System.Drawing.Printing.Duplex.Vertical", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/Duplex.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/Duplex.cs" } ], "DocsId": "T:System.Drawing.Printing.Duplex", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/Duplex.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/Duplex.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.InvalidPrinterException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/InvalidPrinterException.Core.cs#L14C91-L17C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/InvalidPrinterException.Core.cs#L14C91-L17C6" }, { "DocsId": "M:System.Drawing.Printing.InvalidPrinterException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/InvalidPrinterException.Core.cs#L24C9-L26C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/InvalidPrinterException.Core.cs#L24C9-L26C6" }, { "DocsId": "M:System.Drawing.Printing.InvalidPrinterException.#ctor(System.Drawing.Printing.PrinterSettings)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/InvalidPrinterException.cs#L17C64-L19C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/InvalidPrinterException.cs#L17C64-L19C6" } ], "DocsId": "T:System.Drawing.Printing.InvalidPrinterException", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/InvalidPrinterException.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/InvalidPrinterException.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.Margins.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L35C24-L37C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L35C24-L37C6" }, { "DocsId": "M:System.Drawing.Printing.Margins.#ctor(System.Int32,System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L42C5-L58C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L42C5-L58C6" }, { "DocsId": "M:System.Drawing.Printing.Margins.Clone", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L176C30-L176C47" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L176C30-L176C47" }, { "DocsId": "M:System.Drawing.Printing.Margins.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L178C9-L182C40" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L178C9-L182C40" }, { "DocsId": "M:System.Drawing.Printing.Margins.GetHashCode", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L187C42-L187C84" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L187C42-L187C84" }, { "DocsId": "M:System.Drawing.Printing.Margins.op_Equality(System.Drawing.Printing.Margins,System.Drawing.Printing.Margins)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L194C9-L204C30" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L194C9-L204C30" }, { "DocsId": "M:System.Drawing.Printing.Margins.op_Inequality(System.Drawing.Printing.Margins,System.Drawing.Printing.Margins)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L210C65-L210C76" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L210C65-L210C76" }, { "DocsId": "M:System.Drawing.Printing.Margins.ToString", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L215C42-L215C106" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L215C42-L215C106" }, { "DocsId": "P:System.Drawing.Printing.Margins.Left", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L65C16-L65C21" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L65C16-L65C21" }, { "DocsId": "P:System.Drawing.Printing.Margins.Right", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L79C16-L79C22" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L79C16-L79C22" }, { "DocsId": "P:System.Drawing.Printing.Margins.Top", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L93C16-L93C20" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L93C16-L93C20" }, { "DocsId": "P:System.Drawing.Printing.Margins.Bottom", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L107C16-L107C23" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs#L107C16-L107C23" } ], "DocsId": "T:System.Drawing.Printing.Margins", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.MarginsConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/MarginsConverter.cs#L17C12-L17C84" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/MarginsConverter.cs#L17C12-L17C84" }, { "DocsId": "M:System.Drawing.Printing.MarginsConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/MarginsConverter.cs#L20C12-L20C104" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/MarginsConverter.cs#L20C12-L20C104" }, { "DocsId": "M:System.Drawing.Printing.MarginsConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/MarginsConverter.cs#L24C9-L55C76" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/MarginsConverter.cs#L24C9-L55C76" }, { "DocsId": "M:System.Drawing.Printing.MarginsConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/MarginsConverter.cs#L67C9-L99C73" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/MarginsConverter.cs#L67C9-L99C73" }, { "DocsId": "M:System.Drawing.Printing.MarginsConverter.GetCreateInstanceSupported(System.ComponentModel.ITypeDescriptorContext)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/MarginsConverter.cs#L102C89-L102C93" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/MarginsConverter.cs#L102C89-L102C93" }, { "DocsId": "M:System.Drawing.Printing.MarginsConverter.CreateInstance(System.ComponentModel.ITypeDescriptorContext,System.Collections.IDictionary)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/MarginsConverter.cs#L106C9-L115C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/MarginsConverter.cs#L106C9-L115C81" }, { "DocsId": "M:System.Drawing.Printing.MarginsConverter.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/MarginsConverter.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/MarginsConverter.cs" } ], "DocsId": "T:System.Drawing.Printing.MarginsConverter", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/MarginsConverter.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/MarginsConverter.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.PageSettings.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L22C29-L24C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L22C29-L24C6" }, { "DocsId": "M:System.Drawing.Printing.PageSettings.#ctor(System.Drawing.Printing.PrinterSettings)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L12C5-L33C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L12C5-L33C6" }, { "DocsId": "M:System.Drawing.Printing.PageSettings.Clone", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L216C9-L218C23" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L216C9-L218C23" }, { "DocsId": "M:System.Drawing.Printing.PageSettings.CopyToHdevmode(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L226C9-L340C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L226C9-L340C6" }, { "DocsId": "M:System.Drawing.Printing.PageSettings.SetHdevmode(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L473C9-L495C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L473C9-L495C6" }, { "DocsId": "M:System.Drawing.Printing.PageSettings.ToString", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L498C9-L498C182" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L498C9-L498C182" }, { "DocsId": "P:System.Drawing.Printing.PageSettings.Bounds", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L42C13-L46C31" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L42C13-L46C31" }, { "DocsId": "P:System.Drawing.Printing.PageSettings.Color", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L55C16-L57C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L55C16-L57C27" }, { "DocsId": "P:System.Drawing.Printing.PageSettings.HardMarginX", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L68C13-L73C10" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L68C13-L73C10" }, { "DocsId": "P:System.Drawing.Printing.PageSettings.HardMarginY", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L83C13-L88C10" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L83C13-L88C10" }, { "DocsId": "P:System.Drawing.Printing.PageSettings.Landscape", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L96C16-L98C31" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L96C16-L98C31" }, { "DocsId": "P:System.Drawing.Printing.PageSettings.Margins", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L107C16-L107C24" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L107C16-L107C24" }, { "DocsId": "P:System.Drawing.Printing.PageSettings.PaperSize", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L116C16-L116C42" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L116C16-L116C42" }, { "DocsId": "P:System.Drawing.Printing.PageSettings.PaperSource", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L127C13-L140C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L127C13-L140C27" }, { "DocsId": "P:System.Drawing.Printing.PageSettings.PrintableArea", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L152C13-L175C10" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L152C13-L175C10" }, { "DocsId": "P:System.Drawing.Printing.PageSettings.PrinterResolution", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L185C13-L197C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L185C13-L197C27" }, { "DocsId": "P:System.Drawing.Printing.PageSettings.PrinterSettings", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L207C16-L207C32" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs#L207C16-L207C32" } ], "DocsId": "T:System.Drawing.Printing.PageSettings", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PageSettings.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Printing.PaperKind.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Custom", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Letter", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Legal", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.A4", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.CSheet", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.DSheet", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.ESheet", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.LetterSmall", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Tabloid", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Ledger", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Statement", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Executive", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.A3", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.A4Small", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.A5", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.B4", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.B5", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Folio", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Quarto", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Standard10x14", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Standard11x17", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Note", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Number9Envelope", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Number10Envelope", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Number11Envelope", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Number12Envelope", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Number14Envelope", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.DLEnvelope", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.C5Envelope", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.C3Envelope", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.C4Envelope", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.C6Envelope", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.C65Envelope", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.B4Envelope", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.B5Envelope", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.B6Envelope", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.ItalyEnvelope", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.MonarchEnvelope", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.PersonalEnvelope", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.USStandardFanfold", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.GermanStandardFanfold", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.GermanLegalFanfold", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.IsoB4", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.JapanesePostcard", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Standard9x11", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Standard10x11", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Standard15x11", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.InviteEnvelope", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.LetterExtra", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.LegalExtra", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.TabloidExtra", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.A4Extra", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.LetterTransverse", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.A4Transverse", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.LetterExtraTransverse", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.APlus", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.BPlus", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.LetterPlus", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.A4Plus", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.A5Transverse", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.B5Transverse", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.A3Extra", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.A5Extra", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.B5Extra", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.A2", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.A3Transverse", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.A3ExtraTransverse", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.JapaneseDoublePostcard", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.A6", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.JapaneseEnvelopeKakuNumber2", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.JapaneseEnvelopeKakuNumber3", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.JapaneseEnvelopeChouNumber3", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.JapaneseEnvelopeChouNumber4", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.LetterRotated", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.A3Rotated", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.A4Rotated", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.A5Rotated", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.B4JisRotated", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.B5JisRotated", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.JapanesePostcardRotated", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.JapaneseDoublePostcardRotated", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.A6Rotated", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.JapaneseEnvelopeKakuNumber2Rotated", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.JapaneseEnvelopeKakuNumber3Rotated", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.JapaneseEnvelopeChouNumber3Rotated", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.JapaneseEnvelopeChouNumber4Rotated", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.B6Jis", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.B6JisRotated", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Standard12x11", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.JapaneseEnvelopeYouNumber4", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.JapaneseEnvelopeYouNumber4Rotated", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Prc16K", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Prc32K", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Prc32KBig", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.PrcEnvelopeNumber1", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.PrcEnvelopeNumber2", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.PrcEnvelopeNumber3", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.PrcEnvelopeNumber4", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.PrcEnvelopeNumber5", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.PrcEnvelopeNumber6", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.PrcEnvelopeNumber7", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.PrcEnvelopeNumber8", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.PrcEnvelopeNumber9", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.PrcEnvelopeNumber10", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Prc16KRotated", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Prc32KRotated", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.Prc32KBigRotated", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.PrcEnvelopeNumber1Rotated", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.PrcEnvelopeNumber2Rotated", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.PrcEnvelopeNumber3Rotated", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.PrcEnvelopeNumber4Rotated", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.PrcEnvelopeNumber5Rotated", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.PrcEnvelopeNumber6Rotated", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.PrcEnvelopeNumber7Rotated", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.PrcEnvelopeNumber8Rotated", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.PrcEnvelopeNumber9Rotated", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperKind.PrcEnvelopeNumber10Rotated", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" } ], "DocsId": "T:System.Drawing.Printing.PaperKind", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperKinds.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.PaperSize.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSize.cs#L24C5-L29C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSize.cs#L24C5-L29C6" }, { "DocsId": "M:System.Drawing.Printing.PaperSize.#ctor(System.String,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSize.cs#L42C5-L48C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSize.cs#L42C5-L48C6" }, { "DocsId": "M:System.Drawing.Printing.PaperSize.ToString", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSize.cs#L119C42-L119C188" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSize.cs#L119C42-L119C188" }, { "DocsId": "P:System.Drawing.Printing.PaperSize.Height", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSize.cs#L55C16-L55C23" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSize.cs#L55C16-L55C23" }, { "DocsId": "P:System.Drawing.Printing.PaperSize.Kind", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSize.cs#L71C12-L74C31" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSize.cs#L71C12-L74C31" }, { "DocsId": "P:System.Drawing.Printing.PaperSize.PaperName", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSize.cs#L81C16-L81C21" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSize.cs#L81C16-L81C21" }, { "DocsId": "P:System.Drawing.Printing.PaperSize.RawKind", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSize.cs#L98C16-L98C26" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSize.cs#L98C16-L98C26" }, { "DocsId": "P:System.Drawing.Printing.PaperSize.Width", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSize.cs#L107C16-L107C22" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSize.cs#L107C16-L107C22" } ], "DocsId": "T:System.Drawing.Printing.PaperSize", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSize.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSize.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.PaperSource.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSource.cs#L17C5-L21C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSource.cs#L17C5-L21C6" }, { "DocsId": "M:System.Drawing.Printing.PaperSource.ToString", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSource.cs#L52C42-L52C83" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSource.cs#L52C42-L52C83" }, { "DocsId": "P:System.Drawing.Printing.PaperSource.Kind", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSource.cs#L32C36-L32C101" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSource.cs#L32C36-L32C101" }, { "DocsId": "P:System.Drawing.Printing.PaperSource.RawKind", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSource.cs#L39C16-L39C26" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSource.cs#L39C16-L39C26" }, { "DocsId": "P:System.Drawing.Printing.PaperSource.SourceName", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSource.cs#L48C16-L48C21" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSource.cs#L48C16-L48C21" } ], "DocsId": "T:System.Drawing.Printing.PaperSource", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSource.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSource.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Printing.PaperSourceKind.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperSourceKind.Upper", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperSourceKind.Lower", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperSourceKind.Middle", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperSourceKind.Manual", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperSourceKind.Envelope", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperSourceKind.ManualFeed", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperSourceKind.AutomaticFeed", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperSourceKind.TractorFeed", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperSourceKind.SmallFormat", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperSourceKind.LargeFormat", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperSourceKind.LargeCapacity", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperSourceKind.Cassette", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperSourceKind.FormSource", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" }, { "DocsId": "F:System.Drawing.Printing.PaperSourceKind.Custom", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" } ], "DocsId": "T:System.Drawing.Printing.PaperSourceKind", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PaperSourceKind.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.PreviewPageInfo.#ctor(System.Drawing.Image,System.Drawing.Size)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPageInfo.cs#L14C5-L23C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPageInfo.cs#L14C5-L23C6" }, { "DocsId": "P:System.Drawing.Printing.PreviewPageInfo.Image", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPageInfo.cs#L28C27-L28C33" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPageInfo.cs#L28C27-L28C33" }, { "DocsId": "P:System.Drawing.Printing.PreviewPageInfo.PhysicalSize", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPageInfo.cs#L33C33-L33C46" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPageInfo.cs#L33C33-L33C46" } ], "DocsId": "T:System.Drawing.Printing.PreviewPageInfo", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPageInfo.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPageInfo.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.PreviewPrintController.GetPreviewPageInfo", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPrintController.cs#L21C54-L21C64" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPrintController.cs#L21C54-L21C64" }, { "DocsId": "M:System.Drawing.Printing.PreviewPrintController.OnStartPrint(System.Drawing.Printing.PrintDocument,System.Drawing.Printing.PrintEventArgs)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPrintController.cs#L28C9-L38C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPrintController.cs#L28C9-L38C6" }, { "DocsId": "M:System.Drawing.Printing.PreviewPrintController.OnStartPage(System.Drawing.Printing.PrintDocument,System.Drawing.Printing.PrintPageEventArgs)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPrintController.cs#L45C9-L100C26" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPrintController.cs#L45C9-L100C26" }, { "DocsId": "M:System.Drawing.Printing.PreviewPrintController.OnEndPage(System.Drawing.Printing.PrintDocument,System.Drawing.Printing.PrintPageEventArgs)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPrintController.cs#L105C9-L108C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPrintController.cs#L105C9-L108C6" }, { "DocsId": "M:System.Drawing.Printing.PreviewPrintController.OnEndPrint(System.Drawing.Printing.PrintDocument,System.Drawing.Printing.PrintEventArgs)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPrintController.cs#L112C9-L115C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPrintController.cs#L112C9-L115C6" }, { "DocsId": "M:System.Drawing.Printing.PreviewPrintController.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPrintController.cs#L15C5-L15C55" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPrintController.cs#L15C5-L15C55" }, { "DocsId": "P:System.Drawing.Printing.PreviewPrintController.IsPreview", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPrintController.cs#L17C39-L17C43" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPrintController.cs#L17C39-L17C43" }, { "DocsId": "P:System.Drawing.Printing.PreviewPrintController.UseAntiAlias", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPrintController.cs#L19C40-L19C44" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPrintController.cs#L19C40-L19C44" } ], "DocsId": "T:System.Drawing.Printing.PreviewPrintController", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPrintController.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PreviewPrintController.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Printing.PrintAction.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintAction.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintAction.cs" }, { "DocsId": "F:System.Drawing.Printing.PrintAction.PrintToFile", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintAction.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintAction.cs" }, { "DocsId": "F:System.Drawing.Printing.PrintAction.PrintToPreview", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintAction.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintAction.cs" }, { "DocsId": "F:System.Drawing.Printing.PrintAction.PrintToPrinter", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintAction.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintAction.cs" } ], "DocsId": "T:System.Drawing.Printing.PrintAction", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintAction.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintAction.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.PrintController.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintController.cs#L13C5-L15C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintController.cs#L13C5-L15C6" }, { "DocsId": "M:System.Drawing.Printing.PrintController.OnStartPage(System.Drawing.Printing.PrintDocument,System.Drawing.Printing.PrintPageEventArgs)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintController.cs#L25C91-L25C95" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintController.cs#L25C91-L25C95" }, { "DocsId": "M:System.Drawing.Printing.PrintController.OnEndPage(System.Drawing.Printing.PrintDocument,System.Drawing.Printing.PrintPageEventArgs)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintController.cs#L32C5-L32C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintController.cs#L32C5-L32C6" }, { "DocsId": "M:System.Drawing.Printing.PrintController.OnStartPrint(System.Drawing.Printing.PrintDocument,System.Drawing.Printing.PrintEventArgs)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintController.cs#L218C9-L219C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintController.cs#L218C9-L219C6" }, { "DocsId": "M:System.Drawing.Printing.PrintController.OnEndPrint(System.Drawing.Printing.PrintDocument,System.Drawing.Printing.PrintEventArgs)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintController.cs#L224C81-L224C101" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintController.cs#L224C81-L224C101" }, { "DocsId": "P:System.Drawing.Printing.PrintController.IsPreview", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintController.cs#L20C38-L20C43" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintController.cs#L20C38-L20C43" } ], "DocsId": "T:System.Drawing.Printing.PrintController", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintController.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintController.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.PrintDocument.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L14C5-L32C88" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L14C5-L32C88" }, { "DocsId": "M:System.Drawing.Printing.PrintDocument.OnBeginPrint(System.Drawing.Printing.PrintEventArgs)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L149C71-L149C106" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L149C71-L149C106" }, { "DocsId": "M:System.Drawing.Printing.PrintDocument.OnEndPrint(System.Drawing.Printing.PrintEventArgs)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L154C69-L154C102" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L154C69-L154C102" }, { "DocsId": "M:System.Drawing.Printing.PrintDocument.OnPrintPage(System.Drawing.Printing.PrintPageEventArgs)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L159C74-L159C108" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L159C74-L159C108" }, { "DocsId": "M:System.Drawing.Printing.PrintDocument.OnQueryPageSettings(System.Drawing.Printing.QueryPageSettingsEventArgs)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L164C90-L164C120" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L164C90-L164C120" }, { "DocsId": "M:System.Drawing.Printing.PrintDocument.Print", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L171C9-L173C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L171C9-L173C6" }, { "DocsId": "M:System.Drawing.Printing.PrintDocument.ToString", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L178C42-L178C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L178C42-L178C75" }, { "DocsId": "E:System.Drawing.Printing.PrintDocument.BeginPrint", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L115C16-L115C43" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L115C16-L115C43" }, { "DocsId": "E:System.Drawing.Printing.PrintDocument.EndPrint", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L125C16-L125C41" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L125C16-L125C41" }, { "DocsId": "E:System.Drawing.Printing.PrintDocument.PrintPage", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L135C16-L135C42" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L135C16-L135C42" }, { "DocsId": "E:System.Drawing.Printing.PrintDocument.QueryPageSettings", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L142C16-L142C38" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L142C16-L142C38" }, { "DocsId": "P:System.Drawing.Printing.PrintDocument.DefaultPageSettings", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L42C15-L42C43" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L42C15-L42C43" }, { "DocsId": "P:System.Drawing.Printing.PrintDocument.DocumentName", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L58C16-L58C29" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L58C16-L58C29" }, { "DocsId": "P:System.Drawing.Printing.PrintDocument.OriginAtMargins", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L71C16-L71C32" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L71C16-L71C32" }, { "DocsId": "P:System.Drawing.Printing.PrintDocument.PrintController", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L83C16-L83C66" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L83C16-L83C66" }, { "DocsId": "P:System.Drawing.Printing.PrintDocument.PrinterSettings", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L95C16-L95C32" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs#L95C16-L95C32" } ], "DocsId": "T:System.Drawing.Printing.PrintDocument", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintDocument.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.PrinterResolution.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolution.cs#L18C5-L21C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolution.cs#L18C5-L21C6" }, { "DocsId": "M:System.Drawing.Printing.PrinterResolution.ToString", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolution.cs#L57C42-L59C74" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolution.cs#L57C42-L59C74" }, { "DocsId": "P:System.Drawing.Printing.PrinterResolution.Kind", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolution.cs#L35C16-L35C21" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolution.cs#L35C16-L35C21" }, { "DocsId": "P:System.Drawing.Printing.PrinterResolution.X", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolution.cs#L50C20-L50C24" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolution.cs#L50C20-L50C24" }, { "DocsId": "P:System.Drawing.Printing.PrinterResolution.Y", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolution.cs#L55C20-L55C24" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolution.cs#L55C20-L55C24" } ], "DocsId": "T:System.Drawing.Printing.PrinterResolution", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolution.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolution.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Printing.PrinterResolutionKind.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolutionKind.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolutionKind.cs" }, { "DocsId": "F:System.Drawing.Printing.PrinterResolutionKind.High", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolutionKind.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolutionKind.cs" }, { "DocsId": "F:System.Drawing.Printing.PrinterResolutionKind.Medium", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolutionKind.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolutionKind.cs" }, { "DocsId": "F:System.Drawing.Printing.PrinterResolutionKind.Low", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolutionKind.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolutionKind.cs" }, { "DocsId": "F:System.Drawing.Printing.PrinterResolutionKind.Draft", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolutionKind.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolutionKind.cs" }, { "DocsId": "F:System.Drawing.Printing.PrinterResolutionKind.Custom", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolutionKind.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolutionKind.cs" } ], "DocsId": "T:System.Drawing.Printing.PrinterResolutionKind", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolutionKind.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterResolutionKind.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.PrinterSettings.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L19C5-L42C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L19C5-L42C6" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.IsDirectPrintingSupported(System.Drawing.Imaging.ImageFormat)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L332C9-L339C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L332C9-L339C6" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.IsDirectPrintingSupported(System.Drawing.Image)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L372C9-L406C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L372C9-L406C6" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.Clone", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L435C9-L437C22" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L435C9-L437C22" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.CreateMeasurementGraphics", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L490C52-L490C98" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L490C52-L490C98" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.CreateMeasurementGraphics(System.Boolean)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L495C9-L502C18" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L495C9-L502C18" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.CreateMeasurementGraphics(System.Drawing.Printing.PageSettings)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L508C9-L511C18" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L508C9-L511C18" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.CreateMeasurementGraphics(System.Drawing.Printing.PageSettings,System.Boolean)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L517C9-L524C18" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L517C9-L524C18" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.GetHdevmode", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L601C9-L603C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L601C9-L603C27" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.GetHdevmode(System.Drawing.Printing.PageSettings)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L710C9-L713C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L710C9-L713C27" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.GetHdevnames", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L724C9-L757C23" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L724C9-L757C23" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.SetHdevmode(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L986C9-L1023C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L986C9-L1023C6" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.SetHdevnames(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1030C9-L1044C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1030C9-L1044C6" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.ToString", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1047C9-L1047C215" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L1047C9-L1047C215" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.CanDuplex", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L47C30-L47C92" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L47C30-L47C92" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.Copies", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L54C16-L54C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L54C16-L54C75" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.Collate", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L71C16-L73C29" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L71C16-L73C29" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.DefaultPageSettings", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L80C48-L80C68" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L80C48-L80C68" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.Duplex", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L91C16-L91C129" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L91C16-L91C129" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.FromPage", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L108C16-L108C25" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L108C16-L108C25" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.InstalledPrinters", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L133C13-L180C10" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L133C13-L180C10" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.IsDefaultPrinter", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L186C37-L186C100" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L186C37-L186C100" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.IsPlotter", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L191C30-L191C99" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L191C30-L191C99" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.IsValid", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L196C28-L196C91" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L196C28-L196C91" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.LandscapeAngle", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L201C34-L201C113" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L201C34-L201C113" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.MaximumCopies", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L206C33-L206C107" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L206C33-L206C107" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.MaximumPage", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L213C16-L213C24" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L213C16-L213C24" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.MinimumPage", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L230C16-L230C24" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L230C16-L230C24" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.PrintFileName", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L249C16-L249C26" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L249C16-L249C26" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.PaperSizes", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L264C46-L264C67" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L264C46-L264C67" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.PaperSources", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L269C50-L269C73" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L269C50-L269C73" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.PrintRange", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L283C16-L283C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L283C16-L283C27" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.PrintToFile", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L298C31-L298C35" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L298C31-L298C35" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.PrinterName", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L305C16-L305C35" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L305C16-L305C35" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.PrinterResolutions", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L324C62-L324C91" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L324C62-L324C91" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.SupportsColor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L411C34-L411C101" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L411C34-L411C101" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.ToPage", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L418C16-L418C23" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs#L418C16-L418C23" }, { "DocsId": "T:System.Drawing.Printing.PrinterSettings.PaperSizeCollection", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs" }, { "DocsId": "T:System.Drawing.Printing.PrinterSettings.PaperSourceCollection", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs" }, { "DocsId": "T:System.Drawing.Printing.PrinterSettings.PrinterResolutionCollection", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs" }, { "DocsId": "T:System.Drawing.Printing.PrinterSettings.StringCollection", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs" } ], "DocsId": "T:System.Drawing.Printing.PrinterSettings", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Printing.PrinterUnit.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnit.cs" }, { "DocsId": "F:System.Drawing.Printing.PrinterUnit.Display", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnit.cs" }, { "DocsId": "F:System.Drawing.Printing.PrinterUnit.ThousandthsOfAnInch", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnit.cs" }, { "DocsId": "F:System.Drawing.Printing.PrinterUnit.HundredthsOfAMillimeter", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnit.cs" }, { "DocsId": "F:System.Drawing.Printing.PrinterUnit.TenthsOfAMillimeter", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnit.cs" } ], "DocsId": "T:System.Drawing.Printing.PrinterUnit", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnit.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.PrinterUnitConvert.Convert(System.Double,System.Drawing.Printing.PrinterUnit,System.Drawing.Printing.PrinterUnit)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnitConvert.cs#L20C9-L22C64" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnitConvert.cs#L20C9-L22C64" }, { "DocsId": "M:System.Drawing.Printing.PrinterUnitConvert.Convert(System.Int32,System.Drawing.Printing.PrinterUnit,System.Drawing.Printing.PrinterUnit)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnitConvert.cs#L29C9-L29C66" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnitConvert.cs#L29C9-L29C66" }, { "DocsId": "M:System.Drawing.Printing.PrinterUnitConvert.Convert(System.Drawing.Point,System.Drawing.Printing.PrinterUnit,System.Drawing.Printing.PrinterUnit)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnitConvert.cs#L35C9-L35C84" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnitConvert.cs#L35C9-L35C84" }, { "DocsId": "M:System.Drawing.Printing.PrinterUnitConvert.Convert(System.Drawing.Size,System.Drawing.Printing.PrinterUnit,System.Drawing.Printing.PrinterUnit)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnitConvert.cs#L41C9-L41C93" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnitConvert.cs#L41C9-L41C93" }, { "DocsId": "M:System.Drawing.Printing.PrinterUnitConvert.Convert(System.Drawing.Rectangle,System.Drawing.Printing.PrinterUnit,System.Drawing.Printing.PrinterUnit)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnitConvert.cs#L46C99-L50C49" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnitConvert.cs#L46C99-L50C49" }, { "DocsId": "M:System.Drawing.Printing.PrinterUnitConvert.Convert(System.Drawing.Printing.Margins,System.Drawing.Printing.PrinterUnit,System.Drawing.Printing.PrinterUnit)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnitConvert.cs#L55C95-L61C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnitConvert.cs#L55C95-L61C6" } ], "DocsId": "T:System.Drawing.Printing.PrinterUnitConvert", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnitConvert.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterUnitConvert.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.PrintEventArgs.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintEventArgs.cs#L16C5-L18C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintEventArgs.cs#L16C5-L18C6" }, { "DocsId": "P:System.Drawing.Printing.PrintEventArgs.PrintAction", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintEventArgs.cs#L28C38-L28C42" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintEventArgs.cs#L28C38-L28C42" } ], "DocsId": "T:System.Drawing.Printing.PrintEventArgs", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintEventArgs.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.PrintEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintEventHandler.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintEventHandler.cs" }, { "DocsId": "M:System.Drawing.Printing.PrintEventHandler.Invoke(System.Object,System.Drawing.Printing.PrintEventArgs)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintEventHandler.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintEventHandler.cs" }, { "DocsId": "M:System.Drawing.Printing.PrintEventHandler.BeginInvoke(System.Object,System.Drawing.Printing.PrintEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintEventHandler.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintEventHandler.cs" }, { "DocsId": "M:System.Drawing.Printing.PrintEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintEventHandler.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintEventHandler.cs" } ], "DocsId": "T:System.Drawing.Printing.PrintEventHandler", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintEventHandler.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintEventHandler.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.PrintPageEventArgs.#ctor(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Drawing.Printing.PageSettings)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventArgs.cs#L55C57-L20C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventArgs.cs#L55C57-L20C6" }, { "DocsId": "P:System.Drawing.Printing.PrintPageEventArgs.Cancel", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventArgs.cs#L25C26-L25C30" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventArgs.cs#L25C26-L25C30" }, { "DocsId": "P:System.Drawing.Printing.PrintPageEventArgs.Graphics", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventArgs.cs#L30C33-L30C37" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventArgs.cs#L30C33-L30C37" }, { "DocsId": "P:System.Drawing.Printing.PrintPageEventArgs.HasMorePages", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventArgs.cs#L35C32-L35C36" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventArgs.cs#L35C32-L35C36" }, { "DocsId": "P:System.Drawing.Printing.PrintPageEventArgs.MarginBounds", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventArgs.cs#L40C37-L40C41" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventArgs.cs#L40C37-L40C41" }, { "DocsId": "P:System.Drawing.Printing.PrintPageEventArgs.PageBounds", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventArgs.cs#L45C35-L45C39" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventArgs.cs#L45C35-L45C39" }, { "DocsId": "P:System.Drawing.Printing.PrintPageEventArgs.PageSettings", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventArgs.cs#L50C40-L50C44" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventArgs.cs#L50C40-L50C44" } ], "DocsId": "T:System.Drawing.Printing.PrintPageEventArgs", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventArgs.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.PrintPageEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventHandler.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventHandler.cs" }, { "DocsId": "M:System.Drawing.Printing.PrintPageEventHandler.Invoke(System.Object,System.Drawing.Printing.PrintPageEventArgs)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventHandler.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventHandler.cs" }, { "DocsId": "M:System.Drawing.Printing.PrintPageEventHandler.BeginInvoke(System.Object,System.Drawing.Printing.PrintPageEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventHandler.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventHandler.cs" }, { "DocsId": "M:System.Drawing.Printing.PrintPageEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventHandler.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventHandler.cs" } ], "DocsId": "T:System.Drawing.Printing.PrintPageEventHandler", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventHandler.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintPageEventHandler.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Printing.PrintRange.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintRange.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintRange.cs" }, { "DocsId": "F:System.Drawing.Printing.PrintRange.AllPages", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintRange.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintRange.cs" }, { "DocsId": "F:System.Drawing.Printing.PrintRange.SomePages", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintRange.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintRange.cs" }, { "DocsId": "F:System.Drawing.Printing.PrintRange.Selection", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintRange.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintRange.cs" }, { "DocsId": "F:System.Drawing.Printing.PrintRange.CurrentPage", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintRange.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintRange.cs" } ], "DocsId": "T:System.Drawing.Printing.PrintRange", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrintRange.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrintRange.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.QueryPageSettingsEventArgs.#ctor(System.Drawing.Printing.PageSettings)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/QueryPageSettingsEventArgs.cs#L16C68-L16C106" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/QueryPageSettingsEventArgs.cs#L16C68-L16C106" }, { "DocsId": "P:System.Drawing.Printing.QueryPageSettingsEventArgs.PageSettings", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/QueryPageSettingsEventArgs.cs#L25C13-L26C34" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/QueryPageSettingsEventArgs.cs#L25C13-L26C34" } ], "DocsId": "T:System.Drawing.Printing.QueryPageSettingsEventArgs", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/QueryPageSettingsEventArgs.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/QueryPageSettingsEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.QueryPageSettingsEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/QueryPageSettingsEventHandler.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/QueryPageSettingsEventHandler.cs" }, { "DocsId": "M:System.Drawing.Printing.QueryPageSettingsEventHandler.Invoke(System.Object,System.Drawing.Printing.QueryPageSettingsEventArgs)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/QueryPageSettingsEventHandler.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/QueryPageSettingsEventHandler.cs" }, { "DocsId": "M:System.Drawing.Printing.QueryPageSettingsEventHandler.BeginInvoke(System.Object,System.Drawing.Printing.QueryPageSettingsEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/QueryPageSettingsEventHandler.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/QueryPageSettingsEventHandler.cs" }, { "DocsId": "M:System.Drawing.Printing.QueryPageSettingsEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/QueryPageSettingsEventHandler.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/QueryPageSettingsEventHandler.cs" } ], "DocsId": "T:System.Drawing.Printing.QueryPageSettingsEventHandler", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/QueryPageSettingsEventHandler.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/QueryPageSettingsEventHandler.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Interop.LOGFONT.lfHeight", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" }, { "DocsId": "F:System.Drawing.Interop.LOGFONT.lfWidth", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" }, { "DocsId": "F:System.Drawing.Interop.LOGFONT.lfEscapement", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" }, { "DocsId": "F:System.Drawing.Interop.LOGFONT.lfOrientation", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" }, { "DocsId": "F:System.Drawing.Interop.LOGFONT.lfWeight", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" }, { "DocsId": "F:System.Drawing.Interop.LOGFONT.lfItalic", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" }, { "DocsId": "F:System.Drawing.Interop.LOGFONT.lfUnderline", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" }, { "DocsId": "F:System.Drawing.Interop.LOGFONT.lfStrikeOut", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" }, { "DocsId": "F:System.Drawing.Interop.LOGFONT.lfCharSet", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" }, { "DocsId": "F:System.Drawing.Interop.LOGFONT.lfOutPrecision", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" }, { "DocsId": "F:System.Drawing.Interop.LOGFONT.lfClipPrecision", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" }, { "DocsId": "F:System.Drawing.Interop.LOGFONT.lfQuality", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" }, { "DocsId": "F:System.Drawing.Interop.LOGFONT.lfPitchAndFamily", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" }, { "DocsId": "P:System.Drawing.Interop.LOGFONT.lfFaceName", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs#L40C37-L40C94" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs#L40C37-L40C94" }, { "DocsId": "T:System.Drawing.Interop.LOGFONT.<_lfFaceName>e__FixedBuffer", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" } ], "DocsId": "T:System.Drawing.Interop.LOGFONT", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.BitmapData.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/BitmapData.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/BitmapData.cs" }, { "DocsId": "P:System.Drawing.Imaging.BitmapData.Width", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/BitmapData.cs#L26C15-L26C29" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/BitmapData.cs#L26C15-L26C29" }, { "DocsId": "P:System.Drawing.Imaging.BitmapData.Height", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/BitmapData.cs#L35C15-L35C30" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/BitmapData.cs#L35C15-L35C30" }, { "DocsId": "P:System.Drawing.Imaging.BitmapData.Stride", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/BitmapData.cs#L44C15-L44C30" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/BitmapData.cs#L44C15-L44C30" }, { "DocsId": "P:System.Drawing.Imaging.BitmapData.PixelFormat", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/BitmapData.cs#L53C15-L53C35" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/BitmapData.cs#L53C15-L53C35" }, { "DocsId": "P:System.Drawing.Imaging.BitmapData.Scan0", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/BitmapData.cs#L95C15-L95C29" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/BitmapData.cs#L95C15-L95C29" }, { "DocsId": "P:System.Drawing.Imaging.BitmapData.Reserved", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/BitmapData.cs#L104C15-L104C32" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/BitmapData.cs#L104C15-L104C32" } ], "DocsId": "T:System.Drawing.Imaging.BitmapData", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/BitmapData.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/BitmapData.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.CachedBitmap.#ctor(System.Drawing.Bitmap,System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/CachedBitmap.cs#L39C5-L50C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/CachedBitmap.cs#L39C5-L50C6" }, { "DocsId": "M:System.Drawing.Imaging.CachedBitmap.Finalize", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/CachedBitmap.cs#L70C24-L70C49" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/CachedBitmap.cs#L70C24-L16707566C0" }, { "DocsId": "M:System.Drawing.Imaging.CachedBitmap.Dispose", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/CachedBitmap.cs#L74C9-L76C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/CachedBitmap.cs#L74C9-L76C6" } ], "DocsId": "T:System.Drawing.Imaging.CachedBitmap", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/CachedBitmap.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/CachedBitmap.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Imaging.ColorAdjustType.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorAdjustType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorAdjustType.cs" }, { "DocsId": "F:System.Drawing.Imaging.ColorAdjustType.Default", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorAdjustType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorAdjustType.cs" }, { "DocsId": "F:System.Drawing.Imaging.ColorAdjustType.Bitmap", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorAdjustType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorAdjustType.cs" }, { "DocsId": "F:System.Drawing.Imaging.ColorAdjustType.Brush", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorAdjustType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorAdjustType.cs" }, { "DocsId": "F:System.Drawing.Imaging.ColorAdjustType.Pen", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorAdjustType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorAdjustType.cs" }, { "DocsId": "F:System.Drawing.Imaging.ColorAdjustType.Text", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorAdjustType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorAdjustType.cs" }, { "DocsId": "F:System.Drawing.Imaging.ColorAdjustType.Count", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorAdjustType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorAdjustType.cs" }, { "DocsId": "F:System.Drawing.Imaging.ColorAdjustType.Any", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorAdjustType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorAdjustType.cs" } ], "DocsId": "T:System.Drawing.Imaging.ColorAdjustType", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorAdjustType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorAdjustType.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Imaging.ColorChannelFlag.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorChannelFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorChannelFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ColorChannelFlag.ColorChannelC", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorChannelFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorChannelFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ColorChannelFlag.ColorChannelM", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorChannelFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorChannelFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ColorChannelFlag.ColorChannelY", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorChannelFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorChannelFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ColorChannelFlag.ColorChannelK", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorChannelFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorChannelFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ColorChannelFlag.ColorChannelLast", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorChannelFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorChannelFlags.cs" } ], "DocsId": "T:System.Drawing.Imaging.ColorChannelFlag", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorChannelFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorChannelFlags.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.ColorMap.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMap.cs#L14C5-L16C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMap.cs#L14C5-L16C6" }, { "DocsId": "P:System.Drawing.Imaging.ColorMap.OldColor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMap.cs#L21C29-L21C33" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMap.cs#L21C29-L21C33" }, { "DocsId": "P:System.Drawing.Imaging.ColorMap.NewColor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMap.cs#L26C29-L26C33" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMap.cs#L26C29-L26C33" } ], "DocsId": "T:System.Drawing.Imaging.ColorMap", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMap.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMap.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Imaging.ColorMapType.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMapType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMapType.cs" }, { "DocsId": "F:System.Drawing.Imaging.ColorMapType.Default", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMapType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMapType.cs" }, { "DocsId": "F:System.Drawing.Imaging.ColorMapType.Brush", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMapType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMapType.cs" } ], "DocsId": "T:System.Drawing.Imaging.ColorMapType", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMapType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMapType.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.ColorMatrix.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L43C5-L72C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L43C5-L72C6" }, { "DocsId": "M:System.Drawing.Imaging.ColorMatrix.#ctor(System.Single[][])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L303C5-L330C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L303C5-L330C6" }, { "DocsId": "M:System.Drawing.Imaging.ColorMatrix.#ctor(System.ReadOnlySpan{System.Single})", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L337C5-L345C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L337C5-L345C6" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix00", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L79C16-L79C25" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L79C16-L79C25" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix01", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L88C16-L88C25" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L88C16-L88C25" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix02", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L97C16-L97C25" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L97C16-L97C25" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix03", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L106C16-L106C25" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L106C16-L106C25" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix04", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L115C16-L115C25" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L115C16-L115C25" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix10", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L124C16-L124C25" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L124C16-L124C25" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix11", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L133C16-L133C25" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L133C16-L133C25" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix12", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L142C16-L142C25" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L142C16-L142C25" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix13", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L151C16-L151C25" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L151C16-L151C25" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix14", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L160C16-L160C25" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L160C16-L160C25" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix20", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L169C16-L169C25" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L169C16-L169C25" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix21", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L178C16-L178C25" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L178C16-L178C25" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix22", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L187C16-L187C25" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L187C16-L187C25" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix23", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L196C16-L196C25" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L196C16-L196C25" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix24", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L205C16-L205C25" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L205C16-L205C25" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix30", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L214C16-L214C25" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L214C16-L214C25" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix31", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L223C16-L223C25" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L223C16-L223C25" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix32", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L232C16-L232C25" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L232C16-L232C25" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix33", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L241C16-L241C25" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L241C16-L241C25" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix34", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L250C16-L250C25" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L250C16-L250C25" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix40", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L259C16-L259C25" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L259C16-L259C25" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix41", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L268C16-L268C25" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L268C16-L268C25" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix42", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L277C16-L277C25" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L277C16-L277C25" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix43", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L286C16-L286C25" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L286C16-L286C25" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Matrix44", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L295C16-L295C25" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L295C16-L295C25" }, { "DocsId": "P:System.Drawing.Imaging.ColorMatrix.Item(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L355C13-L367C44" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs#L356C13-L368C44" } ], "DocsId": "T:System.Drawing.Imaging.ColorMatrix", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrix.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Imaging.ColorMatrixFlag.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrixFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrixFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ColorMatrixFlag.Default", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrixFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrixFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ColorMatrixFlag.SkipGrays", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrixFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrixFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ColorMatrixFlag.AltGrays", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrixFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrixFlags.cs" } ], "DocsId": "T:System.Drawing.Imaging.ColorMatrixFlag", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrixFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMatrixFlags.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Imaging.ColorMode.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMode.cs" }, { "DocsId": "F:System.Drawing.Imaging.ColorMode.Argb32Mode", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMode.cs" }, { "DocsId": "F:System.Drawing.Imaging.ColorMode.Argb64Mode", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMode.cs" } ], "DocsId": "T:System.Drawing.Imaging.ColorMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorMode.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.ColorPalette.#ctor(System.Drawing.Color[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorPalette.cs#L42C51-L44C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorPalette.cs#L38C56-L40C6" }, { "DocsId": "M:System.Drawing.Imaging.ColorPalette.#ctor(System.Drawing.Imaging.PaletteType)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorPalette.cs#L49C5-L54C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorPalette.cs#L45C5-L50C6" }, { "DocsId": "M:System.Drawing.Imaging.ColorPalette.CreateOptimalPalette(System.Int32,System.Boolean,System.Drawing.Bitmap)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorPalette.cs#L62C9-L62C120" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorPalette.cs#L57C9-L57C116" }, { "DocsId": "P:System.Drawing.Imaging.ColorPalette.Flags", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorPalette.cs#L24C25-L24C31" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorPalette.cs#L20C25-L20C31" }, { "DocsId": "P:System.Drawing.Imaging.ColorPalette.Entries", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorPalette.cs#L29C31-L29C39" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorPalette.cs#L25C31-L25C39" } ], "DocsId": "T:System.Drawing.Imaging.ColorPalette", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorPalette.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ColorPalette.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Imaging.DitherType.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/DitherType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/DitherType.cs" }, { "DocsId": "F:System.Drawing.Imaging.DitherType.None", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/DitherType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/DitherType.cs" }, { "DocsId": "F:System.Drawing.Imaging.DitherType.Solid", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/DitherType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/DitherType.cs" }, { "DocsId": "F:System.Drawing.Imaging.DitherType.Ordered4x4", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/DitherType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/DitherType.cs" }, { "DocsId": "F:System.Drawing.Imaging.DitherType.Ordered8x8", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/DitherType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/DitherType.cs" }, { "DocsId": "F:System.Drawing.Imaging.DitherType.Ordered16x16", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/DitherType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/DitherType.cs" }, { "DocsId": "F:System.Drawing.Imaging.DitherType.Spiral4x4", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/DitherType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/DitherType.cs" }, { "DocsId": "F:System.Drawing.Imaging.DitherType.Spiral8x8", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/DitherType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/DitherType.cs" }, { "DocsId": "F:System.Drawing.Imaging.DitherType.DualSpiral4x4", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/DitherType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/DitherType.cs" }, { "DocsId": "F:System.Drawing.Imaging.DitherType.DualSpiral8x8", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/DitherType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/DitherType.cs" }, { "DocsId": "F:System.Drawing.Imaging.DitherType.ErrorDiffusion", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/DitherType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/DitherType.cs" } ], "DocsId": "T:System.Drawing.Imaging.DitherType", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/DitherType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/DitherType.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfRecordBase", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSetBkColor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSetBkMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSetMapMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSetROP2", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSetRelAbs", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSetPolyFillMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSetStretchBltMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSetTextCharExtra", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSetTextColor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSetTextJustification", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSetWindowOrg", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSetWindowExt", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSetViewportOrg", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSetViewportExt", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfOffsetWindowOrg", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfScaleWindowExt", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfOffsetViewportOrg", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfScaleViewportExt", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfLineTo", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfMoveTo", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfExcludeClipRect", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfIntersectClipRect", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfArc", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfEllipse", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfFloodFill", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfPie", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfRectangle", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfRoundRect", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfPatBlt", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSaveDC", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSetPixel", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfOffsetCilpRgn", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfTextOut", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfBitBlt", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfStretchBlt", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfPolygon", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfPolyline", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfEscape", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfRestoreDC", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfFillRegion", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfFrameRegion", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfInvertRegion", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfPaintRegion", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSelectClipRegion", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSelectObject", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSetTextAlign", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfChord", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSetMapperFlags", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfExtTextOut", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSetDibToDev", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSelectPalette", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfRealizePalette", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfAnimatePalette", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSetPalEntries", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfPolyPolygon", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfResizePalette", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfDibBitBlt", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfDibStretchBlt", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfDibCreatePatternBrush", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfStretchDib", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfExtFloodFill", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfSetLayout", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfDeleteObject", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfCreatePalette", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfCreatePatternBrush", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfCreatePenIndirect", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfCreateFontIndirect", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfCreateBrushIndirect", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.WmfCreateRegion", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfHeader", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfPolyBezier", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfPolygon", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfPolyline", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfPolyBezierTo", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfPolyLineTo", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfPolyPolyline", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfPolyPolygon", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetWindowExtEx", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetWindowOrgEx", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetViewportExtEx", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetViewportOrgEx", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetBrushOrgEx", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfEof", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetPixelV", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetMapperFlags", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetMapMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetBkMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetPolyFillMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetROP2", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetStretchBltMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetTextAlign", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetColorAdjustment", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetTextColor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetBkColor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfOffsetClipRgn", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfMoveToEx", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetMetaRgn", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfExcludeClipRect", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfIntersectClipRect", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfScaleViewportExtEx", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfScaleWindowExtEx", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSaveDC", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfRestoreDC", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetWorldTransform", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfModifyWorldTransform", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSelectObject", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfCreatePen", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfCreateBrushIndirect", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfDeleteObject", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfAngleArc", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfEllipse", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfRectangle", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfRoundRect", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfRoundArc", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfChord", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfPie", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSelectPalette", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfCreatePalette", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetPaletteEntries", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfResizePalette", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfRealizePalette", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfExtFloodFill", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfLineTo", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfArcTo", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfPolyDraw", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetArcDirection", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetMiterLimit", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfBeginPath", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfEndPath", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfCloseFigure", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfFillPath", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfStrokeAndFillPath", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfStrokePath", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfFlattenPath", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfWidenPath", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSelectClipPath", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfAbortPath", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfReserved069", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfGdiComment", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfFillRgn", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfFrameRgn", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfInvertRgn", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfPaintRgn", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfExtSelectClipRgn", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfBitBlt", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfStretchBlt", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfMaskBlt", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfPlgBlt", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetDIBitsToDevice", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfStretchDIBits", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfExtCreateFontIndirect", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfExtTextOutA", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfExtTextOutW", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfPolyBezier16", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfPolygon16", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfPolyline16", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfPolyBezierTo16", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfPolylineTo16", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfPolyPolyline16", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfPolyPolygon16", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfPolyDraw16", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfCreateMonoBrush", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfCreateDibPatternBrushPt", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfExtCreatePen", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfPolyTextOutA", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfPolyTextOutW", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetIcmMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfCreateColorSpace", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetColorSpace", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfDeleteColorSpace", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfGlsRecord", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfGlsBoundedRecord", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfPixelFormat", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfDrawEscape", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfExtEscape", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfStartDoc", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSmallTextOut", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfForceUfiMapping", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfNamedEscpae", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfColorCorrectPalette", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetIcmProfileA", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetIcmProfileW", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfAlphaBlend", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetLayout", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfTransparentBlt", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfReserved117", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfGradientFill", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetLinkedUfis", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfSetTextJustification", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfColorMatchToTargetW", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfCreateColorSpaceW", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfMax", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfMin", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EmfPlusRecordBase", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.Invalid", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.Header", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EndOfFile", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.Comment", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.GetDC", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.MultiFormatStart", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.MultiFormatSection", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.MultiFormatEnd", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.Object", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.Clear", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.FillRects", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.DrawRects", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.FillPolygon", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.DrawLines", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.FillEllipse", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.DrawEllipse", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.FillPie", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.DrawPie", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.DrawArc", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.FillRegion", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.FillPath", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.DrawPath", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.FillClosedCurve", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.DrawClosedCurve", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.DrawCurve", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.DrawBeziers", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.DrawImage", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.DrawImagePoints", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.DrawString", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.SetRenderingOrigin", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.SetAntiAliasMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.SetTextRenderingHint", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.SetTextContrast", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.SetInterpolationMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.SetPixelOffsetMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.SetCompositingMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.SetCompositingQuality", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.Save", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.Restore", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.BeginContainer", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.BeginContainerNoParams", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.EndContainer", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.SetWorldTransform", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.ResetWorldTransform", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.MultiplyWorldTransform", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.TranslateWorldTransform", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.ScaleWorldTransform", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.RotateWorldTransform", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.SetPageTransform", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.ResetClip", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.SetClipRect", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.SetClipPath", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.SetClipRegion", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.OffsetClip", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.DrawDriverString", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.Total", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.Max", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfPlusRecordType.Min", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" } ], "DocsId": "T:System.Drawing.Imaging.EmfPlusRecordType", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfPlusRecordType.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Imaging.EmfType.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfType.EmfOnly", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfType.EmfPlusOnly", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EmfType.EmfPlusDual", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfType.cs" } ], "DocsId": "T:System.Drawing.Imaging.EmfType", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EmfType.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.Encoder.#ctor(System.Guid)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs#L34C5-L34C45" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs#L34C5-L34C45" }, { "DocsId": "F:System.Drawing.Imaging.Encoder.Compression", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" }, { "DocsId": "F:System.Drawing.Imaging.Encoder.ColorDepth", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" }, { "DocsId": "F:System.Drawing.Imaging.Encoder.ScanMethod", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" }, { "DocsId": "F:System.Drawing.Imaging.Encoder.Version", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" }, { "DocsId": "F:System.Drawing.Imaging.Encoder.RenderMethod", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" }, { "DocsId": "F:System.Drawing.Imaging.Encoder.Quality", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" }, { "DocsId": "F:System.Drawing.Imaging.Encoder.Transformation", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" }, { "DocsId": "F:System.Drawing.Imaging.Encoder.LuminanceTable", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" }, { "DocsId": "F:System.Drawing.Imaging.Encoder.ChrominanceTable", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" }, { "DocsId": "F:System.Drawing.Imaging.Encoder.SaveFlag", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" }, { "DocsId": "F:System.Drawing.Imaging.Encoder.ColorSpace", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" }, { "DocsId": "F:System.Drawing.Imaging.Encoder.ImageItems", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" }, { "DocsId": "F:System.Drawing.Imaging.Encoder.SaveAsCmyk", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" }, { "DocsId": "P:System.Drawing.Imaging.Encoder.Guid", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs#L36C24-L36C28" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs#L36C24-L36C28" } ], "DocsId": "T:System.Drawing.Imaging.Encoder", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Encoder.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.EncoderParameter.Dispose", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L50C9-L59C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L50C9-L59C6" }, { "DocsId": "M:System.Drawing.Imaging.EncoderParameter.Finalize", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L61C28-L61C37" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L61C28-L16707566C0" }, { "DocsId": "M:System.Drawing.Imaging.EncoderParameter.#ctor(System.Drawing.Imaging.Encoder,System.Byte)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L63C5-L73C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L63C5-L73C6" }, { "DocsId": "M:System.Drawing.Imaging.EncoderParameter.#ctor(System.Drawing.Imaging.Encoder,System.Byte,System.Boolean)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L75C5-L88C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L75C5-L88C6" }, { "DocsId": "M:System.Drawing.Imaging.EncoderParameter.#ctor(System.Drawing.Imaging.Encoder,System.Int16)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L90C5-L100C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L90C5-L100C6" }, { "DocsId": "M:System.Drawing.Imaging.EncoderParameter.#ctor(System.Drawing.Imaging.Encoder,System.Int64)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L102C5-L112C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L102C5-L112C6" }, { "DocsId": "M:System.Drawing.Imaging.EncoderParameter.#ctor(System.Drawing.Imaging.Encoder,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L114C5-L125C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L114C5-L125C6" }, { "DocsId": "M:System.Drawing.Imaging.EncoderParameter.#ctor(System.Drawing.Imaging.Encoder,System.Int64,System.Int64)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L127C5-L138C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L127C5-L138C6" }, { "DocsId": "M:System.Drawing.Imaging.EncoderParameter.#ctor(System.Drawing.Imaging.Encoder,System.Int32,System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L140C5-L158C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L140C5-L158C6" }, { "DocsId": "M:System.Drawing.Imaging.EncoderParameter.#ctor(System.Drawing.Imaging.Encoder,System.String)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L160C5-L168C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L160C5-L168C6" }, { "DocsId": "M:System.Drawing.Imaging.EncoderParameter.#ctor(System.Drawing.Imaging.Encoder,System.Byte[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L170C5-L181C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L170C5-L181C6" }, { "DocsId": "M:System.Drawing.Imaging.EncoderParameter.#ctor(System.Drawing.Imaging.Encoder,System.Byte[],System.Boolean)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L183C5-L194C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L183C5-L194C6" }, { "DocsId": "M:System.Drawing.Imaging.EncoderParameter.#ctor(System.Drawing.Imaging.Encoder,System.Int16[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L196C5-L206C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L196C5-L206C6" }, { "DocsId": "M:System.Drawing.Imaging.EncoderParameter.#ctor(System.Drawing.Imaging.Encoder,System.Int64[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L208C5-L226C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L208C5-L226C6" }, { "DocsId": "M:System.Drawing.Imaging.EncoderParameter.#ctor(System.Drawing.Imaging.Encoder,System.Int32[],System.Int32[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L228C5-L246C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L228C5-L246C6" }, { "DocsId": "M:System.Drawing.Imaging.EncoderParameter.#ctor(System.Drawing.Imaging.Encoder,System.Int64[],System.Int64[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L248C5-L266C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L248C5-L266C6" }, { "DocsId": "M:System.Drawing.Imaging.EncoderParameter.#ctor(System.Drawing.Imaging.Encoder,System.Int32[],System.Int32[],System.Int32[],System.Int32[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L268C5-L295C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L268C5-L295C6" }, { "DocsId": "M:System.Drawing.Imaging.EncoderParameter.#ctor(System.Drawing.Imaging.Encoder,System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L298C5-L321C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L298C5-L321C6" }, { "DocsId": "M:System.Drawing.Imaging.EncoderParameter.#ctor(System.Drawing.Imaging.Encoder,System.Int32,System.Drawing.Imaging.EncoderParameterValueType,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L323C5-L347C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L323C5-L347C6" }, { "DocsId": "P:System.Drawing.Imaging.EncoderParameter.Encoder", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L29C16-L29C35" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L29C16-L29C35" }, { "DocsId": "P:System.Drawing.Imaging.EncoderParameter.Type", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L36C46-L36C65" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L36C46-L36C65" }, { "DocsId": "P:System.Drawing.Imaging.EncoderParameter.ValueType", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L41C51-L41C70" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L41C51-L41C70" }, { "DocsId": "P:System.Drawing.Imaging.EncoderParameter.NumberOfValues", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L46C34-L46C49" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs#L46C34-L46C49" } ], "DocsId": "T:System.Drawing.Imaging.EncoderParameter", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameter.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.EncoderParameters.#ctor(System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameters.cs#L10C5-L10C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameters.cs#L10C5-L10C79" }, { "DocsId": "M:System.Drawing.Imaging.EncoderParameters.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameters.cs#L12C5-L12C66" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameters.cs#L12C5-L12C66" }, { "DocsId": "M:System.Drawing.Imaging.EncoderParameters.Dispose", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameters.cs#L58C40-L64C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameters.cs#L58C40-L64C6" }, { "DocsId": "P:System.Drawing.Imaging.EncoderParameters.Param", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameters.cs#L14C39-L14C43" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameters.cs#L14C39-L14C43" } ], "DocsId": "T:System.Drawing.Imaging.EncoderParameters", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameters.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameters.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Imaging.EncoderParameterValueType.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameterValueType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameterValueType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderParameterValueType.ValueTypeByte", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameterValueType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameterValueType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderParameterValueType.ValueTypeAscii", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameterValueType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameterValueType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderParameterValueType.ValueTypeShort", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameterValueType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameterValueType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderParameterValueType.ValueTypeLong", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameterValueType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameterValueType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderParameterValueType.ValueTypeRational", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameterValueType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameterValueType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderParameterValueType.ValueTypeLongRange", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameterValueType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameterValueType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderParameterValueType.ValueTypeUndefined", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameterValueType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameterValueType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderParameterValueType.ValueTypeRationalRange", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameterValueType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameterValueType.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderParameterValueType.ValueTypePointer", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameterValueType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameterValueType.cs" } ], "DocsId": "T:System.Drawing.Imaging.EncoderParameterValueType", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameterValueType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderParameterValueType.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Imaging.EncoderValue.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.ColorTypeCMYK", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.ColorTypeYCCK", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.CompressionLZW", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.CompressionCCITT3", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.CompressionCCITT4", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.CompressionRle", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.CompressionNone", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.ScanMethodInterlaced", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.ScanMethodNonInterlaced", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.VersionGif87", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.VersionGif89", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.RenderProgressive", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.RenderNonProgressive", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.TransformRotate90", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.TransformRotate180", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.TransformRotate270", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.TransformFlipHorizontal", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.TransformFlipVertical", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.MultiFrame", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.LastFrame", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.Flush", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.FrameDimensionTime", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.FrameDimensionResolution", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "DocsId": "F:System.Drawing.Imaging.EncoderValue.FrameDimensionPage", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" } ], "DocsId": "T:System.Drawing.Imaging.EncoderValue", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/EncoderValue.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.FrameDimension.#ctor(System.Guid)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/FrameDimension.cs#L18C5-L21C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/FrameDimension.cs#L18C5-L21C6" }, { "DocsId": "M:System.Drawing.Imaging.FrameDimension.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/FrameDimension.cs#L56C67-L56C118" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/FrameDimension.cs#L56C67-L56C118" }, { "DocsId": "M:System.Drawing.Imaging.FrameDimension.GetHashCode", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/FrameDimension.cs#L60C9-L60C36" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/FrameDimension.cs#L60C9-L60C36" }, { "DocsId": "M:System.Drawing.Imaging.FrameDimension.ToString", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/FrameDimension.cs#L68C9-L83C45" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/FrameDimension.cs#L68C9-L83C45" }, { "DocsId": "P:System.Drawing.Imaging.FrameDimension.Guid", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/FrameDimension.cs#L28C15-L28C28" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/FrameDimension.cs#L28C15-L28C28" }, { "DocsId": "P:System.Drawing.Imaging.FrameDimension.Time", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/FrameDimension.cs#L36C15-L36C29" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/FrameDimension.cs#L36C15-L36C29" }, { "DocsId": "P:System.Drawing.Imaging.FrameDimension.Resolution", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/FrameDimension.cs#L44C15-L44C35" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/FrameDimension.cs#L44C15-L44C35" }, { "DocsId": "P:System.Drawing.Imaging.FrameDimension.Page", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/FrameDimension.cs#L50C42-L50C48" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/FrameDimension.cs#L50C42-L50C48" } ], "DocsId": "T:System.Drawing.Imaging.FrameDimension", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/FrameDimension.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/FrameDimension.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L54C5-L60C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L54C5-L60C6" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.Dispose", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L70C9-L79C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L70C9-L79C6" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.Finalize", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L84C27-L84C36" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L84C27-L16707566C0" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.Clone", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L92C9-L95C43" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L92C9-L95C43" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetColorMatrix(System.Drawing.Imaging.ColorMatrix)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L102C9-L102C89" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L102C9-L102C89" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetColorMatrix(System.Drawing.Imaging.ColorMatrix,System.Drawing.Imaging.ColorMatrixFlag)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L108C9-L108C71" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L108C9-L108C71" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetColorMatrix(System.Drawing.Imaging.ColorMatrix,System.Drawing.Imaging.ColorMatrixFlag,System.Drawing.Imaging.ColorAdjustType)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L114C9-L114C59" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L114C9-L114C59" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.ClearColorMatrix", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L119C39-L119C80" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L119C39-L119C80" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.ClearColorMatrix(System.Drawing.Imaging.ColorAdjustType)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L126C9-L135C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L126C9-L135C6" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetColorMatrices(System.Drawing.Imaging.ColorMatrix,System.Drawing.Imaging.ColorMatrix)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L141C9-L141C103" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L141C9-L141C103" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetColorMatrices(System.Drawing.Imaging.ColorMatrix,System.Drawing.Imaging.ColorMatrix,System.Drawing.Imaging.ColorMatrixFlag)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L144C9-L144C85" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L144C9-L144C85" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetColorMatrices(System.Drawing.Imaging.ColorMatrix,System.Drawing.Imaging.ColorMatrix,System.Drawing.Imaging.ColorMatrixFlag,System.Drawing.Imaging.ColorAdjustType)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L152C9-L183C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L152C9-L183C6" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetThreshold(System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L185C50-L185C98" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L185C50-L185C98" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetThreshold(System.Single,System.Drawing.Imaging.ColorAdjustType)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L187C72-L187C119" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L187C72-L187C119" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.ClearThreshold", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L189C37-L189C76" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L189C37-L189C76" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.ClearThreshold(System.Drawing.Imaging.ColorAdjustType)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L191C57-L191C100" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L191C57-L191C100" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetGamma(System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L204C42-L204C82" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L204C42-L204C82" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetGamma(System.Single,System.Drawing.Imaging.ColorAdjustType)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L206C64-L206C103" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L206C64-L206C103" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.ClearGamma", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L208C33-L208C68" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L208C33-L208C68" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.ClearGamma(System.Drawing.Imaging.ColorAdjustType)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L210C53-L210C92" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L210C53-L210C92" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetNoOp", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L223C30-L223C62" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L223C30-L223C62" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetNoOp(System.Drawing.Imaging.ColorAdjustType)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L225C50-L225C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L225C50-L225C81" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.ClearNoOp", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L227C32-L227C66" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L227C32-L227C66" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.ClearNoOp(System.Drawing.Imaging.ColorAdjustType)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L229C52-L229C84" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L229C52-L229C84" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetColorKey(System.Drawing.Color,System.Drawing.Color)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L242C9-L242C66" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L242C9-L242C66" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetColorKey(System.Drawing.Color,System.Drawing.Color,System.Drawing.Imaging.ColorAdjustType)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L245C9-L245C65" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L245C9-L245C65" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.ClearColorKey", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L247C36-L247C74" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L247C36-L247C74" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.ClearColorKey(System.Drawing.Imaging.ColorAdjustType)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L249C56-L249C118" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L249C56-L249C118" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetOutputChannel(System.Drawing.Imaging.ColorChannelFlag)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L263C61-L263C109" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L263C61-L263C109" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetOutputChannel(System.Drawing.Imaging.ColorChannelFlag,System.Drawing.Imaging.ColorAdjustType)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L266C9-L266C56" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L266C9-L266C56" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.ClearOutputChannel", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L268C41-L268C84" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L268C41-L268C84" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.ClearOutputChannel(System.Drawing.Imaging.ColorAdjustType)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L271C9-L271C85" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L271C9-L271C85" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetOutputChannelColorProfile(System.String)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L285C9-L285C84" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L285C9-L285C84" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetOutputChannelColorProfile(System.String,System.Drawing.Imaging.ColorAdjustType)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L290C9-L302C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L290C9-L302C6" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.ClearOutputChannelColorProfile", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L304C53-L304C96" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L304C53-L304C96" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.ClearOutputChannelColorProfile(System.Drawing.Imaging.ColorAdjustType)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L308C9-L315C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L308C9-L315C6" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetRemapTable(System.Drawing.Imaging.ColorMap[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L318C57-L318C100" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L318C57-L318C100" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetRemapTable(System.Drawing.Imaging.ColorMap[],System.Drawing.Imaging.ColorAdjustType)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L329C9-L331C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L329C9-L331C6" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetRemapTable(System.ReadOnlySpan{System.Drawing.Imaging.ColorMap})", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L335C62-L335C105" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L335C62-L335C105" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetRemapTable(System.ReadOnlySpan{System.ValueTuple{System.Drawing.Color,System.Drawing.Color}})", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L338C86-L338C129" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L338C86-L338C129" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetRemapTable(System.Drawing.Imaging.ColorAdjustType,System.ReadOnlySpan{System.Drawing.Imaging.ColorMap})", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L360C9-L379C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L360C9-L379C6" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetRemapTable(System.Drawing.Imaging.ColorAdjustType,System.ReadOnlySpan{System.ValueTuple{System.Drawing.Color,System.Drawing.Color}})", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L385C9-L404C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L385C9-L404C6" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.ClearRemapTable", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L413C38-L413C78" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L413C38-L413C78" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.ClearRemapTable(System.Drawing.Imaging.ColorAdjustType)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L417C9-L425C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L417C9-L425C6" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetBrushRemapTable(System.Drawing.Imaging.ColorMap[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L427C62-L427C103" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L427C62-L427C103" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetBrushRemapTable(System.ReadOnlySpan{System.Drawing.Imaging.ColorMap})", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L430C67-L430C108" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L430C67-L430C108" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetBrushRemapTable(System.ReadOnlySpan{System.ValueTuple{System.Drawing.Color,System.Drawing.Color}})", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L432C91-L432C132" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L432C91-L432C132" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.ClearBrushRemapTable", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L435C43-L435C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L435C43-L435C81" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetWrapMode(System.Drawing.Drawing2D.WrapMode)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L437C57-L437C97" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L437C57-L437C97" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetWrapMode(System.Drawing.Drawing2D.WrapMode,System.Drawing.Color)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L439C70-L439C108" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L439C70-L439C108" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.SetWrapMode(System.Drawing.Drawing2D.WrapMode,System.Drawing.Color,System.Boolean)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L443C9-L450C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L443C9-L450C6" }, { "DocsId": "M:System.Drawing.Imaging.ImageAttributes.GetAdjustedPalette(System.Drawing.Imaging.ColorPalette,System.Drawing.Imaging.ColorAdjustType)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L454C9-L464C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs#L454C9-L464C6" } ], "DocsId": "T:System.Drawing.Imaging.ImageAttributes", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageAttributes.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Imaging.ImageCodecFlags.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageCodecFlags.Encoder", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageCodecFlags.Decoder", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageCodecFlags.SupportBitmap", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageCodecFlags.SupportVector", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageCodecFlags.SeekableEncode", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageCodecFlags.BlockingDecode", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageCodecFlags.Builtin", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageCodecFlags.System", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageCodecFlags.User", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecFlags.cs" } ], "DocsId": "T:System.Drawing.Imaging.ImageCodecFlags", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecFlags.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.ImageCodecInfo.GetImageDecoders", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L45C9-L56C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L45C9-L56C6" }, { "DocsId": "M:System.Drawing.Imaging.ImageCodecInfo.GetImageEncoders", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L64C9-L75C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L64C9-L75C6" }, { "DocsId": "P:System.Drawing.Imaging.ImageCodecInfo.Clsid", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L13C25-L13C29" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L13C25-L13C29" }, { "DocsId": "P:System.Drawing.Imaging.ImageCodecInfo.FormatID", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L15C28-L15C32" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L15C28-L15C32" }, { "DocsId": "P:System.Drawing.Imaging.ImageCodecInfo.CodecName", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L17C32-L17C36" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L17C32-L17C36" }, { "DocsId": "P:System.Drawing.Imaging.ImageCodecInfo.DllName", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L19C30-L19C34" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L19C30-L19C34" }, { "DocsId": "P:System.Drawing.Imaging.ImageCodecInfo.FormatDescription", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L21C40-L21C44" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L21C40-L21C44" }, { "DocsId": "P:System.Drawing.Imaging.ImageCodecInfo.FilenameExtension", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L23C40-L23C44" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L23C40-L23C44" }, { "DocsId": "P:System.Drawing.Imaging.ImageCodecInfo.MimeType", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L25C31-L25C35" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L25C31-L25C35" }, { "DocsId": "P:System.Drawing.Imaging.ImageCodecInfo.Flags", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L27C36-L27C40" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L27C36-L27C40" }, { "DocsId": "P:System.Drawing.Imaging.ImageCodecInfo.Version", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L29C26-L29C30" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L29C26-L29C30" }, { "DocsId": "P:System.Drawing.Imaging.ImageCodecInfo.SignaturePatterns", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L32C42-L32C46" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L32C42-L32C46" }, { "DocsId": "P:System.Drawing.Imaging.ImageCodecInfo.SignatureMasks", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L35C39-L35C43" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs#L35C39-L35C43" } ], "DocsId": "T:System.Drawing.Imaging.ImageCodecInfo", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageCodecInfo.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Imaging.ImageFlags.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageFlags.None", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageFlags.Scalable", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageFlags.HasAlpha", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageFlags.HasTranslucent", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageFlags.PartiallyScalable", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageFlags.ColorSpaceRgb", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageFlags.ColorSpaceCmyk", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageFlags.ColorSpaceGray", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageFlags.ColorSpaceYcbcr", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageFlags.ColorSpaceYcck", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageFlags.HasRealDpi", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageFlags.HasRealPixelSize", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageFlags.ReadOnly", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageFlags.Caching", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" } ], "DocsId": "T:System.Drawing.Imaging.ImageFlags", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFlags.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.ImageFormat.#ctor(System.Guid)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L35C5-L35C50" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L35C5-L35C50" }, { "DocsId": "M:System.Drawing.Imaging.ImageFormat.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L114C67-L114C115" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L114C67-L114C115" }, { "DocsId": "M:System.Drawing.Imaging.ImageFormat.GetHashCode", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L119C42-L119C61" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L119C42-L119C61" }, { "DocsId": "M:System.Drawing.Imaging.ImageFormat.ToString", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L131C9-L191C42" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L131C9-L191C42" }, { "DocsId": "P:System.Drawing.Imaging.ImageFormat.Guid", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L40C25-L40C30" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L40C25-L40C30" }, { "DocsId": "P:System.Drawing.Imaging.ImageFormat.MemoryBmp", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L45C44-L45C55" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L45C44-L45C55" }, { "DocsId": "P:System.Drawing.Imaging.ImageFormat.Bmp", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L50C38-L50C43" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L50C38-L50C43" }, { "DocsId": "P:System.Drawing.Imaging.ImageFormat.Emf", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L55C38-L55C43" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L55C38-L55C43" }, { "DocsId": "P:System.Drawing.Imaging.ImageFormat.Wmf", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L60C38-L60C43" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L60C38-L60C43" }, { "DocsId": "P:System.Drawing.Imaging.ImageFormat.Gif", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L65C38-L65C43" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L65C38-L65C43" }, { "DocsId": "P:System.Drawing.Imaging.ImageFormat.Jpeg", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L70C39-L70C45" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L70C39-L70C45" }, { "DocsId": "P:System.Drawing.Imaging.ImageFormat.Png", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L75C38-L75C43" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L75C38-L75C43" }, { "DocsId": "P:System.Drawing.Imaging.ImageFormat.Tiff", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L80C39-L80C45" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L80C39-L80C45" }, { "DocsId": "P:System.Drawing.Imaging.ImageFormat.Exif", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L85C39-L85C45" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L85C39-L85C45" }, { "DocsId": "P:System.Drawing.Imaging.ImageFormat.Icon", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L90C39-L90C45" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L90C39-L90C45" }, { "DocsId": "P:System.Drawing.Imaging.ImageFormat.Heif", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L99C39-L99C45" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L99C39-L99C45" }, { "DocsId": "P:System.Drawing.Imaging.ImageFormat.Webp", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L108C39-L108C45" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs#L108C39-L108C45" } ], "DocsId": "T:System.Drawing.Imaging.ImageFormat", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageFormat.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Imaging.ImageLockMode.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageLockMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageLockMode.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageLockMode.ReadOnly", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageLockMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageLockMode.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageLockMode.WriteOnly", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageLockMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageLockMode.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageLockMode.ReadWrite", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageLockMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageLockMode.cs" }, { "DocsId": "F:System.Drawing.Imaging.ImageLockMode.UserInputBuffer", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageLockMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageLockMode.cs" } ], "DocsId": "T:System.Drawing.Imaging.ImageLockMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageLockMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/ImageLockMode.cs" }, { "Members": [ + { + "DocsId": "M:System.Drawing.Imaging.Metafile.IPointer#get_Pointer", + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L24C49-L24C63" + }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IntPtr,System.Drawing.Imaging.WmfPlaceableFileHeader,System.Boolean)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L28C5-L41C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L30C5-L43C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IntPtr,System.Boolean)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L47C5-L52C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L49C5-L54C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L57C5-L67C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L59C5-L69C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IntPtr,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L74C9-L76C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L76C9-L78C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IntPtr,System.Drawing.Imaging.EmfType)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L82C9-L84C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L84C9-L86C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IntPtr,System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L91C9-L93C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L93C9-L95C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IntPtr,System.Drawing.RectangleF,System.Drawing.Imaging.MetafileFrameUnit)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L100C9-L102C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L102C9-L104C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IntPtr,System.Drawing.RectangleF,System.Drawing.Imaging.MetafileFrameUnit,System.Drawing.Imaging.EmfType)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L109C9-L111C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L111C9-L113C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IntPtr,System.Drawing.RectangleF,System.Drawing.Imaging.MetafileFrameUnit,System.Drawing.Imaging.EmfType,System.String)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L117C5-L134C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L119C5-L136C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IntPtr,System.Drawing.Rectangle,System.Drawing.Imaging.MetafileFrameUnit)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L141C9-L143C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L143C9-L145C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IntPtr,System.Drawing.Rectangle,System.Drawing.Imaging.MetafileFrameUnit,System.Drawing.Imaging.EmfType)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L150C9-L152C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L152C9-L154C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.String,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L158C9-L160C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L160C9-L162C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.String,System.IntPtr,System.Drawing.Imaging.EmfType)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L166C9-L168C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L168C9-L170C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.String,System.IntPtr,System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L174C9-L176C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L176C9-L178C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.String,System.IntPtr,System.Drawing.RectangleF,System.Drawing.Imaging.MetafileFrameUnit)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L182C9-L184C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L184C9-L186C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.String,System.IntPtr,System.Drawing.RectangleF,System.Drawing.Imaging.MetafileFrameUnit,System.Drawing.Imaging.EmfType)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L190C9-L192C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L192C9-L194C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.String,System.IntPtr,System.Drawing.RectangleF,System.Drawing.Imaging.MetafileFrameUnit,System.String)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L198C9-L200C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L200C9-L202C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.String,System.IntPtr,System.Drawing.RectangleF,System.Drawing.Imaging.MetafileFrameUnit,System.Drawing.Imaging.EmfType,System.String)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L205C5-L230C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L207C5-L232C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.String,System.IntPtr,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L236C9-L238C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L238C9-L240C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.String,System.IntPtr,System.Drawing.Rectangle,System.Drawing.Imaging.MetafileFrameUnit)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L244C9-L246C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L246C9-L248C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.String,System.IntPtr,System.Drawing.Rectangle,System.Drawing.Imaging.MetafileFrameUnit,System.Drawing.Imaging.EmfType)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L252C9-L254C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L254C9-L256C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.String,System.IntPtr,System.Drawing.Rectangle,System.Drawing.Imaging.MetafileFrameUnit,System.String)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L260C9-L262C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L262C9-L264C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IO.Stream,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L268C9-L270C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L270C9-L272C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IO.Stream,System.IntPtr,System.Drawing.Imaging.EmfType)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L276C9-L278C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L278C9-L280C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IO.Stream,System.IntPtr,System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L284C9-L286C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L286C9-L288C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IO.Stream,System.IntPtr,System.Drawing.RectangleF,System.Drawing.Imaging.MetafileFrameUnit)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L292C9-L294C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L294C9-L296C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IO.Stream,System.IntPtr,System.Drawing.RectangleF,System.Drawing.Imaging.MetafileFrameUnit,System.Drawing.Imaging.EmfType)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L300C9-L302C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L302C9-L304C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IO.Stream,System.IntPtr,System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L308C9-L310C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L310C9-L312C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IO.Stream,System.IntPtr,System.Drawing.Rectangle,System.Drawing.Imaging.MetafileFrameUnit)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L316C9-L318C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L318C9-L320C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IO.Stream,System.IntPtr,System.Drawing.Rectangle,System.Drawing.Imaging.MetafileFrameUnit,System.Drawing.Imaging.EmfType)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L324C9-L326C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L326C9-L328C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IntPtr,System.Drawing.Imaging.WmfPlaceableFileHeader)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L333C9-L335C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L335C9-L337C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L340C5-L348C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L342C5-L350C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IntPtr,System.Drawing.Imaging.EmfType,System.String)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L353C5-L368C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L355C5-L370C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IntPtr,System.Drawing.Rectangle,System.Drawing.Imaging.MetafileFrameUnit,System.Drawing.Imaging.EmfType,System.String)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L374C5-L392C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L376C5-L394C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.String,System.IntPtr,System.Drawing.Imaging.EmfType,System.String)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L397C5-L417C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L399C5-L419C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.String,System.IntPtr,System.Drawing.Rectangle,System.Drawing.Imaging.MetafileFrameUnit,System.Drawing.Imaging.EmfType,System.String)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L422C5-L443C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L424C5-L445C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IO.Stream,System.IntPtr,System.Drawing.Imaging.EmfType,System.String)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L448C5-L467C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L450C5-L469C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IO.Stream,System.IntPtr,System.Drawing.RectangleF,System.Drawing.Imaging.MetafileFrameUnit,System.Drawing.Imaging.EmfType,System.String)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L472C5-L492C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L474C5-L494C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.#ctor(System.IO.Stream,System.IntPtr,System.Drawing.Rectangle,System.Drawing.Imaging.MetafileFrameUnit,System.Drawing.Imaging.EmfType,System.String)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L497C5-L517C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L499C5-L519C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.PlayRecord(System.Drawing.Imaging.EmfPlusRecordType,System.Int32,System.Int32,System.Byte[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L537C16-L548C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L539C16-L550C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.GetMetafileHeader(System.IntPtr,System.Drawing.Imaging.WmfPlaceableFileHeader)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L555C9-L561C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L557C9-L563C27" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.GetMetafileHeader(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L570C9-L574C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L572C9-L576C27" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.GetMetafileHeader(System.String)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L584C9-L592C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L586C9-L594C27" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.GetMetafileHeader(System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L601C9-L611C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L603C9-L613C6" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.GetMetafileHeader", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L618C9-L624C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L620C9-L626C27" }, { "DocsId": "M:System.Drawing.Imaging.Metafile.GetHenhmetafile", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L634C9-L636C21" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L633C40-L633C62" + }, + { + "DocsId": "P:System.Drawing.Imaging.Metafile.IPointer#Pointer", + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs#L24C49-L24C63" } ], "DocsId": "T:System.Drawing.Imaging.Metafile", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Metafile.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Imaging.MetafileFrameUnit.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileFrameUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileFrameUnit.cs" }, { "DocsId": "F:System.Drawing.Imaging.MetafileFrameUnit.Pixel", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileFrameUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileFrameUnit.cs" }, { "DocsId": "F:System.Drawing.Imaging.MetafileFrameUnit.Point", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileFrameUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileFrameUnit.cs" }, { "DocsId": "F:System.Drawing.Imaging.MetafileFrameUnit.Inch", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileFrameUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileFrameUnit.cs" }, { "DocsId": "F:System.Drawing.Imaging.MetafileFrameUnit.Document", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileFrameUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileFrameUnit.cs" }, { "DocsId": "F:System.Drawing.Imaging.MetafileFrameUnit.Millimeter", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileFrameUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileFrameUnit.cs" }, { "DocsId": "F:System.Drawing.Imaging.MetafileFrameUnit.GdiCompatible", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileFrameUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileFrameUnit.cs" } ], "DocsId": "T:System.Drawing.Imaging.MetafileFrameUnit", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileFrameUnit.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileFrameUnit.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.MetafileHeader.IsWmf", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L53C28-L53C129" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L53C28-L53C129" }, { "DocsId": "M:System.Drawing.Imaging.MetafileHeader.IsWmfPlaceable", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L58C37-L58C98" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L58C37-L58C98" }, { "DocsId": "M:System.Drawing.Imaging.MetafileHeader.IsEmf", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L63C28-L63C80" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L63C28-L63C80" }, { "DocsId": "M:System.Drawing.Imaging.MetafileHeader.IsEmfOrEmfPlus", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L69C37-L71C56" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L69C37-L71C56" }, { "DocsId": "M:System.Drawing.Imaging.MetafileHeader.IsEmfPlus", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L77C32-L78C56" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L77C32-L78C56" }, { "DocsId": "M:System.Drawing.Imaging.MetafileHeader.IsEmfPlusDual", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L84C36-L84C96" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L84C36-L84C96" }, { "DocsId": "M:System.Drawing.Imaging.MetafileHeader.IsEmfPlusOnly", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L90C36-L90C96" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L90C36-L90C96" }, { "DocsId": "M:System.Drawing.Imaging.MetafileHeader.IsDisplay", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L95C32-L95C113" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L95C32-L95C113" }, { "DocsId": "P:System.Drawing.Imaging.MetafileHeader.Type", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L23C33-L23C59" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L23C33-L23C59" }, { "DocsId": "P:System.Drawing.Imaging.MetafileHeader.MetafileSize", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L28C32-L28C49" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L28C32-L28C49" }, { "DocsId": "P:System.Drawing.Imaging.MetafileHeader.Version", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L33C27-L33C47" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L33C27-L33C47" }, { "DocsId": "P:System.Drawing.Imaging.MetafileHeader.DpiX", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L38C26-L38C38" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L38C26-L38C38" }, { "DocsId": "P:System.Drawing.Imaging.MetafileHeader.DpiY", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L43C26-L43C38" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L43C26-L43C38" }, { "DocsId": "P:System.Drawing.Imaging.MetafileHeader.Bounds", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L48C32-L48C88" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L48C32-L48C88" }, { "DocsId": "P:System.Drawing.Imaging.MetafileHeader.WmfHeader", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L100C36-L102C43" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L100C36-L102C43" }, { "DocsId": "P:System.Drawing.Imaging.MetafileHeader.EmfPlusHeaderSize", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L107C37-L107C62" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L107C37-L107C62" }, { "DocsId": "P:System.Drawing.Imaging.MetafileHeader.LogicalDpiX", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L112C31-L112C50" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L112C31-L112C50" }, { "DocsId": "P:System.Drawing.Imaging.MetafileHeader.LogicalDpiY", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L117C31-L117C50" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs#L117C31-L117C50" } ], "DocsId": "T:System.Drawing.Imaging.MetafileHeader", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileHeader.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Imaging.MetafileType.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileType.cs" }, { "DocsId": "F:System.Drawing.Imaging.MetafileType.Invalid", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileType.cs" }, { "DocsId": "F:System.Drawing.Imaging.MetafileType.Wmf", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileType.cs" }, { "DocsId": "F:System.Drawing.Imaging.MetafileType.WmfPlaceable", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileType.cs" }, { "DocsId": "F:System.Drawing.Imaging.MetafileType.Emf", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileType.cs" }, { "DocsId": "F:System.Drawing.Imaging.MetafileType.EmfPlusOnly", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileType.cs" }, { "DocsId": "F:System.Drawing.Imaging.MetafileType.EmfPlusDual", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileType.cs" } ], "DocsId": "T:System.Drawing.Imaging.MetafileType", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/MetafileType.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.MetaHeader.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/MetaHeader.cs#L17C5-L19C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/MetaHeader.cs#L17C5-L19C6" }, { "DocsId": "P:System.Drawing.Imaging.MetaHeader.Type", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/MetaHeader.cs#L28C16-L28C35" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/MetaHeader.cs#L28C16-L28C35" }, { "DocsId": "P:System.Drawing.Imaging.MetaHeader.HeaderSize", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/MetaHeader.cs#L37C16-L37C41" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/MetaHeader.cs#L37C16-L37C41" }, { "DocsId": "P:System.Drawing.Imaging.MetaHeader.Version", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/MetaHeader.cs#L46C16-L46C38" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/MetaHeader.cs#L46C16-L46C38" }, { "DocsId": "P:System.Drawing.Imaging.MetaHeader.Size", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/MetaHeader.cs#L55C16-L55C33" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/MetaHeader.cs#L55C16-L55C33" }, { "DocsId": "P:System.Drawing.Imaging.MetaHeader.NoObjects", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/MetaHeader.cs#L61C16-L61C40" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/MetaHeader.cs#L61C16-L61C40" }, { "DocsId": "P:System.Drawing.Imaging.MetaHeader.MaxRecord", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/MetaHeader.cs#L67C16-L67C38" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/MetaHeader.cs#L67C16-L67C38" }, { "DocsId": "P:System.Drawing.Imaging.MetaHeader.NoParameters", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/MetaHeader.cs#L73C16-L73C43" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/MetaHeader.cs#L73C16-L73C43" } ], "DocsId": "T:System.Drawing.Imaging.MetaHeader", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/MetaHeader.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/MetaHeader.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Imaging.PaletteFlags.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/PaletteFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/PaletteFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.PaletteFlags.HasAlpha", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/PaletteFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/PaletteFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.PaletteFlags.GrayScale", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/PaletteFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/PaletteFlags.cs" }, { "DocsId": "F:System.Drawing.Imaging.PaletteFlags.Halftone", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/PaletteFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/PaletteFlags.cs" } ], "DocsId": "T:System.Drawing.Imaging.PaletteFlags", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/PaletteFlags.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/PaletteFlags.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Imaging.PaletteType.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/PaletteType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/PaletteType.cs" }, { "DocsId": "F:System.Drawing.Imaging.PaletteType.Custom", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/PaletteType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/PaletteType.cs" }, { - "DocsId": "F:System.Drawing.Imaging.PaletteType.FixedBW", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/PaletteType.cs" + "DocsId": "F:System.Drawing.Imaging.PaletteType.FixedBlackAndWhite", + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/PaletteType.cs" }, { "DocsId": "F:System.Drawing.Imaging.PaletteType.FixedHalftone8", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/PaletteType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/PaletteType.cs" }, { "DocsId": "F:System.Drawing.Imaging.PaletteType.FixedHalftone27", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/PaletteType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/PaletteType.cs" }, { "DocsId": "F:System.Drawing.Imaging.PaletteType.FixedHalftone64", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/PaletteType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/PaletteType.cs" }, { "DocsId": "F:System.Drawing.Imaging.PaletteType.FixedHalftone125", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/PaletteType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/PaletteType.cs" }, { "DocsId": "F:System.Drawing.Imaging.PaletteType.FixedHalftone216", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/PaletteType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/PaletteType.cs" }, { "DocsId": "F:System.Drawing.Imaging.PaletteType.FixedHalftone252", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/PaletteType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/PaletteType.cs" }, { "DocsId": "F:System.Drawing.Imaging.PaletteType.FixedHalftone256", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/PaletteType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/PaletteType.cs" } ], "DocsId": "T:System.Drawing.Imaging.PaletteType", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/PaletteType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/PaletteType.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Imaging.PixelFormat.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "DocsId": "F:System.Drawing.Imaging.PixelFormat.Indexed", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "DocsId": "F:System.Drawing.Imaging.PixelFormat.Gdi", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "DocsId": "F:System.Drawing.Imaging.PixelFormat.Alpha", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "DocsId": "F:System.Drawing.Imaging.PixelFormat.PAlpha", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "DocsId": "F:System.Drawing.Imaging.PixelFormat.Extended", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "DocsId": "F:System.Drawing.Imaging.PixelFormat.Canonical", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "DocsId": "F:System.Drawing.Imaging.PixelFormat.Undefined", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "DocsId": "F:System.Drawing.Imaging.PixelFormat.DontCare", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "DocsId": "F:System.Drawing.Imaging.PixelFormat.Format1bppIndexed", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "DocsId": "F:System.Drawing.Imaging.PixelFormat.Format4bppIndexed", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "DocsId": "F:System.Drawing.Imaging.PixelFormat.Format8bppIndexed", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "DocsId": "F:System.Drawing.Imaging.PixelFormat.Format16bppGrayScale", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "DocsId": "F:System.Drawing.Imaging.PixelFormat.Format16bppRgb555", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "DocsId": "F:System.Drawing.Imaging.PixelFormat.Format16bppRgb565", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "DocsId": "F:System.Drawing.Imaging.PixelFormat.Format16bppArgb1555", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "DocsId": "F:System.Drawing.Imaging.PixelFormat.Format24bppRgb", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "DocsId": "F:System.Drawing.Imaging.PixelFormat.Format32bppRgb", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "DocsId": "F:System.Drawing.Imaging.PixelFormat.Format32bppArgb", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "DocsId": "F:System.Drawing.Imaging.PixelFormat.Format32bppPArgb", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "DocsId": "F:System.Drawing.Imaging.PixelFormat.Format48bppRgb", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "DocsId": "F:System.Drawing.Imaging.PixelFormat.Format64bppArgb", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "DocsId": "F:System.Drawing.Imaging.PixelFormat.Format64bppPArgb", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "DocsId": "F:System.Drawing.Imaging.PixelFormat.Max", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" } ], "DocsId": "T:System.Drawing.Imaging.PixelFormat", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/PixelFormat.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.PlayRecordCallback.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/PlayRecordCallback.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/PlayRecordCallback.cs" }, { "DocsId": "M:System.Drawing.Imaging.PlayRecordCallback.Invoke(System.Drawing.Imaging.EmfPlusRecordType,System.Int32,System.Int32,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/PlayRecordCallback.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/PlayRecordCallback.cs" }, { "DocsId": "M:System.Drawing.Imaging.PlayRecordCallback.BeginInvoke(System.Drawing.Imaging.EmfPlusRecordType,System.Int32,System.Int32,System.IntPtr,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/PlayRecordCallback.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/PlayRecordCallback.cs" }, { "DocsId": "M:System.Drawing.Imaging.PlayRecordCallback.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/PlayRecordCallback.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/PlayRecordCallback.cs" } ], "DocsId": "T:System.Drawing.Imaging.PlayRecordCallback", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/PlayRecordCallback.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/PlayRecordCallback.cs" }, { "Members": [ { "DocsId": "P:System.Drawing.Imaging.PropertyItem.Id", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/PropertyItem.cs#L18C21-L18C25" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/PropertyItem.cs#L18C21-L18C25" }, { "DocsId": "P:System.Drawing.Imaging.PropertyItem.Len", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/PropertyItem.cs#L23C22-L23C26" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/PropertyItem.cs#L23C22-L23C26" }, { "DocsId": "P:System.Drawing.Imaging.PropertyItem.Type", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/PropertyItem.cs#L28C25-L28C29" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/PropertyItem.cs#L28C25-L28C29" }, { "DocsId": "P:System.Drawing.Imaging.PropertyItem.Value", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/PropertyItem.cs#L33C28-L33C32" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/PropertyItem.cs#L33C28-L33C32" } ], "DocsId": "T:System.Drawing.Imaging.PropertyItem", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/PropertyItem.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/PropertyItem.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.WmfPlaceableFileHeader.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/WmfPlaceableFileHeader.cs#L16C5-L16C64" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/WmfPlaceableFileHeader.cs#L16C5-L16C64" }, { "DocsId": "P:System.Drawing.Imaging.WmfPlaceableFileHeader.Key", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/WmfPlaceableFileHeader.cs#L23C16-L23C32" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/WmfPlaceableFileHeader.cs#L23C16-L23C32" }, { "DocsId": "P:System.Drawing.Imaging.WmfPlaceableFileHeader.Hmf", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/WmfPlaceableFileHeader.cs#L32C16-L32C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/WmfPlaceableFileHeader.cs#L32C16-L32C27" }, { "DocsId": "P:System.Drawing.Imaging.WmfPlaceableFileHeader.BboxLeft", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/WmfPlaceableFileHeader.cs#L41C16-L41C40" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/WmfPlaceableFileHeader.cs#L41C16-L41C40" }, { "DocsId": "P:System.Drawing.Imaging.WmfPlaceableFileHeader.BboxTop", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/WmfPlaceableFileHeader.cs#L50C16-L50C39" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/WmfPlaceableFileHeader.cs#L50C16-L50C39" }, { "DocsId": "P:System.Drawing.Imaging.WmfPlaceableFileHeader.BboxRight", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/WmfPlaceableFileHeader.cs#L59C16-L59C41" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/WmfPlaceableFileHeader.cs#L59C16-L59C41" }, { "DocsId": "P:System.Drawing.Imaging.WmfPlaceableFileHeader.BboxBottom", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/WmfPlaceableFileHeader.cs#L68C16-L68C42" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/WmfPlaceableFileHeader.cs#L68C16-L68C42" }, { "DocsId": "P:System.Drawing.Imaging.WmfPlaceableFileHeader.Inch", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/WmfPlaceableFileHeader.cs#L77C16-L77C28" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/WmfPlaceableFileHeader.cs#L77C16-L77C28" }, { "DocsId": "P:System.Drawing.Imaging.WmfPlaceableFileHeader.Reserved", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/WmfPlaceableFileHeader.cs#L86C16-L86C37" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/WmfPlaceableFileHeader.cs#L86C16-L86C37" }, { "DocsId": "P:System.Drawing.Imaging.WmfPlaceableFileHeader.Checksum", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/WmfPlaceableFileHeader.cs#L95C16-L95C32" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/WmfPlaceableFileHeader.cs#L95C16-L95C32" } ], "DocsId": "T:System.Drawing.Imaging.WmfPlaceableFileHeader", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/WmfPlaceableFileHeader.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/WmfPlaceableFileHeader.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.Effects.BlackSaturationCurveEffect.#ctor(System.Drawing.Imaging.Effects.CurveChannel,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/BlackSaturationCurveEffect.cs#L25C11-L27C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/BlackSaturationCurveEffect.cs#L25C11-L27C6" }, { "DocsId": "P:System.Drawing.Imaging.Effects.BlackSaturationCurveEffect.BlackSaturation", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/BlackSaturationCurveEffect.cs#L34C35-L34C46" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/BlackSaturationCurveEffect.cs#L34C35-L34C46" } ], "DocsId": "T:System.Drawing.Imaging.Effects.BlackSaturationCurveEffect", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/BlackSaturationCurveEffect.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/BlackSaturationCurveEffect.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.Effects.BlurEffect.#ctor(System.Single,System.Boolean)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/BlurEffect.cs#L28C56-L32C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/BlurEffect.cs#L28C56-L32C6" }, { "DocsId": "P:System.Drawing.Imaging.Effects.BlurEffect.Radius", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/BlurEffect.cs#L38C28-L38C46" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/BlurEffect.cs#L38C28-L38C46" }, { "DocsId": "P:System.Drawing.Imaging.Effects.BlurEffect.ExpandEdge", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/BlurEffect.cs#L45C31-L45C53" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/BlurEffect.cs#L45C31-L45C53" } ], "DocsId": "T:System.Drawing.Imaging.Effects.BlurEffect", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/BlurEffect.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/BlurEffect.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.Effects.BrightnessContrastEffect.#ctor(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/BrightnessContrastEffect.cs#L32C79-L36C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/BrightnessContrastEffect.cs#L32C79-L36C6" }, { "DocsId": "P:System.Drawing.Imaging.Effects.BrightnessContrastEffect.BrightnessLevel", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/BrightnessContrastEffect.cs#L43C35-L43C76" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/BrightnessContrastEffect.cs#L43C35-L43C76" }, { "DocsId": "P:System.Drawing.Imaging.Effects.BrightnessContrastEffect.ContrastLevel", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/BrightnessContrastEffect.cs#L50C33-L50C72" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/BrightnessContrastEffect.cs#L50C33-L50C72" } ], "DocsId": "T:System.Drawing.Imaging.Effects.BrightnessContrastEffect", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/BrightnessContrastEffect.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/BrightnessContrastEffect.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.Effects.ColorBalanceEffect.#ctor(System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ColorBalanceEffect.cs#L40C80-L44C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ColorBalanceEffect.cs#L40C80-L44C6" }, { "DocsId": "P:System.Drawing.Imaging.Effects.ColorBalanceEffect.CyanRed", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ColorBalanceEffect.cs#L52C27-L52C54" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ColorBalanceEffect.cs#L52C27-L52C54" }, { "DocsId": "P:System.Drawing.Imaging.Effects.ColorBalanceEffect.MagentaGreen", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ColorBalanceEffect.cs#L60C32-L60C64" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ColorBalanceEffect.cs#L60C32-L60C64" }, { "DocsId": "P:System.Drawing.Imaging.Effects.ColorBalanceEffect.YellowBlue", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ColorBalanceEffect.cs#L68C30-L68C60" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ColorBalanceEffect.cs#L68C30-L68C60" } ], "DocsId": "T:System.Drawing.Imaging.Effects.ColorBalanceEffect", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ColorBalanceEffect.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ColorBalanceEffect.cs" }, { "Members": [ { "DocsId": "P:System.Drawing.Imaging.Effects.ColorCurveEffect.Channel", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ColorCurveEffect.cs#L31C36-L31C69" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ColorCurveEffect.cs#L31C36-L31C69" } ], "DocsId": "T:System.Drawing.Imaging.Effects.ColorCurveEffect", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ColorCurveEffect.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ColorCurveEffect.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.Effects.ColorLookupTableEffect.#ctor(System.Byte[],System.Byte[],System.Byte[],System.Byte[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ColorLookupTableEffect.cs#L30C36-L32C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ColorLookupTableEffect.cs#L30C36-L32C6" }, { "DocsId": "M:System.Drawing.Imaging.Effects.ColorLookupTableEffect.#ctor(System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ColorLookupTableEffect.cs#L16C5-L56C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ColorLookupTableEffect.cs#L16C5-L56C6" }, { "DocsId": "P:System.Drawing.Imaging.Effects.ColorLookupTableEffect.BlueLookupTable", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ColorLookupTableEffect.cs#L61C52-L61C71" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ColorLookupTableEffect.cs#L61C52-L61C71" }, { "DocsId": "P:System.Drawing.Imaging.Effects.ColorLookupTableEffect.GreenLookupTable", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ColorLookupTableEffect.cs#L66C53-L66C74" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ColorLookupTableEffect.cs#L66C53-L66C74" }, { "DocsId": "P:System.Drawing.Imaging.Effects.ColorLookupTableEffect.RedLookupTable", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ColorLookupTableEffect.cs#L71C51-L71C72" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ColorLookupTableEffect.cs#L71C51-L71C72" }, { "DocsId": "P:System.Drawing.Imaging.Effects.ColorLookupTableEffect.AlphaLookupTable", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ColorLookupTableEffect.cs#L76C53-L76C74" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ColorLookupTableEffect.cs#L76C53-L76C74" } ], "DocsId": "T:System.Drawing.Imaging.Effects.ColorLookupTableEffect", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ColorLookupTableEffect.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ColorLookupTableEffect.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.Effects.ColorMatrixEffect.#ctor(System.Drawing.Imaging.ColorMatrix)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ColorMatrixEffect.cs#L25C52-L34C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ColorMatrixEffect.cs#L25C52-L34C6" }, { "DocsId": "P:System.Drawing.Imaging.Effects.ColorMatrixEffect.Matrix", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ColorMatrixEffect.cs#L44C34-L44C41" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ColorMatrixEffect.cs#L44C34-L44C41" } ], "DocsId": "T:System.Drawing.Imaging.Effects.ColorMatrixEffect", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ColorMatrixEffect.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ColorMatrixEffect.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.Effects.ContrastCurveEffect.#ctor(System.Drawing.Imaging.Effects.CurveChannel,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ContrastCurveEffect.cs#L23C11-L25C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ContrastCurveEffect.cs#L23C11-L25C6" }, { "DocsId": "P:System.Drawing.Imaging.Effects.ContrastCurveEffect.Contrast", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ContrastCurveEffect.cs#L31C28-L31C39" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ContrastCurveEffect.cs#L31C28-L31C39" } ], "DocsId": "T:System.Drawing.Imaging.Effects.ContrastCurveEffect", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ContrastCurveEffect.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ContrastCurveEffect.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Imaging.Effects.CurveChannel.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/CurveChannel.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/CurveChannel.cs" }, { "DocsId": "F:System.Drawing.Imaging.Effects.CurveChannel.All", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/CurveChannel.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/CurveChannel.cs" }, { "DocsId": "F:System.Drawing.Imaging.Effects.CurveChannel.Red", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/CurveChannel.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/CurveChannel.cs" }, { "DocsId": "F:System.Drawing.Imaging.Effects.CurveChannel.Green", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/CurveChannel.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/CurveChannel.cs" }, { "DocsId": "F:System.Drawing.Imaging.Effects.CurveChannel.Blue", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/CurveChannel.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/CurveChannel.cs" } ], "DocsId": "T:System.Drawing.Imaging.Effects.CurveChannel", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/CurveChannel.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/CurveChannel.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.Effects.DensityCurveEffect.#ctor(System.Drawing.Imaging.Effects.CurveChannel,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/DensityCurveEffect.cs#L23C11-L25C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/DensityCurveEffect.cs#L23C11-L25C6" }, { "DocsId": "P:System.Drawing.Imaging.Effects.DensityCurveEffect.Density", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/DensityCurveEffect.cs#L31C27-L31C38" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/DensityCurveEffect.cs#L31C27-L31C38" } ], "DocsId": "T:System.Drawing.Imaging.Effects.DensityCurveEffect", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/DensityCurveEffect.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/DensityCurveEffect.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.Effects.Effect.Dispose", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/Effect.cs#L26C9-L28C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/Effect.cs#L26C9-L28C6" }, { "DocsId": "M:System.Drawing.Imaging.Effects.Effect.Finalize", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/Effect.cs#L39C18-L39C43" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/Effect.cs#L39C18-L16707566C0" }, { "DocsId": "M:System.Drawing.Imaging.Effects.Effect.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/Effect.cs#L43C9-L48C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/Effect.cs#L43C9-L48C6" } ], "DocsId": "T:System.Drawing.Imaging.Effects.Effect", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/Effect.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/Effect.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.Effects.ExposureCurveEffect.#ctor(System.Drawing.Imaging.Effects.CurveChannel,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ExposureCurveEffect.cs#L23C11-L25C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ExposureCurveEffect.cs#L23C11-L25C6" }, { "DocsId": "P:System.Drawing.Imaging.Effects.ExposureCurveEffect.Exposure", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ExposureCurveEffect.cs#L31C28-L31C39" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ExposureCurveEffect.cs#L31C28-L31C39" } ], "DocsId": "T:System.Drawing.Imaging.Effects.ExposureCurveEffect", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ExposureCurveEffect.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ExposureCurveEffect.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.Effects.GrayScaleEffect.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/GrayScaleEffect.cs#L13C32-L22C8" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/GrayScaleEffect.cs#L13C32-L22C8" } ], "DocsId": "T:System.Drawing.Imaging.Effects.GrayScaleEffect", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/GrayScaleEffect.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/GrayScaleEffect.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.Effects.HighlightCurveEffect.#ctor(System.Drawing.Imaging.Effects.CurveChannel,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/HighlightCurveEffect.cs#L24C11-L26C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/HighlightCurveEffect.cs#L24C11-L26C6" }, { "DocsId": "P:System.Drawing.Imaging.Effects.HighlightCurveEffect.Highlight", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/HighlightCurveEffect.cs#L32C29-L32C40" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/HighlightCurveEffect.cs#L32C29-L32C40" } ], "DocsId": "T:System.Drawing.Imaging.Effects.HighlightCurveEffect", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/HighlightCurveEffect.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/HighlightCurveEffect.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.Effects.InvertEffect.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/InvertEffect.cs#L13C29-L22C8" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/InvertEffect.cs#L13C29-L22C8" } ], "DocsId": "T:System.Drawing.Imaging.Effects.InvertEffect", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/InvertEffect.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/InvertEffect.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.Effects.LevelsEffect.#ctor(System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/LevelsEffect.cs#L44C11-L54C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/LevelsEffect.cs#L44C11-L54C6" }, { "DocsId": "P:System.Drawing.Imaging.Effects.LevelsEffect.Highlight", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/LevelsEffect.cs#L59C29-L59C52" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/LevelsEffect.cs#L59C29-L59C52" }, { "DocsId": "P:System.Drawing.Imaging.Effects.LevelsEffect.Midtone", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/LevelsEffect.cs#L64C27-L64C48" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/LevelsEffect.cs#L64C27-L64C48" }, { "DocsId": "P:System.Drawing.Imaging.Effects.LevelsEffect.Shadow", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/LevelsEffect.cs#L69C26-L69C46" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/LevelsEffect.cs#L69C26-L69C46" } ], "DocsId": "T:System.Drawing.Imaging.Effects.LevelsEffect", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/LevelsEffect.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/LevelsEffect.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.Effects.MidtoneCurveEffect.#ctor(System.Drawing.Imaging.Effects.CurveChannel,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/MidtoneCurveEffect.cs#L25C11-L27C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/MidtoneCurveEffect.cs#L25C11-L27C6" }, { "DocsId": "P:System.Drawing.Imaging.Effects.MidtoneCurveEffect.Midtone", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/MidtoneCurveEffect.cs#L33C27-L33C38" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/MidtoneCurveEffect.cs#L33C27-L33C38" } ], "DocsId": "T:System.Drawing.Imaging.Effects.MidtoneCurveEffect", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/MidtoneCurveEffect.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/MidtoneCurveEffect.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.Effects.SepiaEffect.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/SepiaEffect.cs#L13C28-L22C8" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/SepiaEffect.cs#L13C28-L22C8" } ], "DocsId": "T:System.Drawing.Imaging.Effects.SepiaEffect", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/SepiaEffect.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/SepiaEffect.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.Effects.ShadowCurveEffect.#ctor(System.Drawing.Imaging.Effects.CurveChannel,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ShadowCurveEffect.cs#L25C11-L27C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ShadowCurveEffect.cs#L25C11-L27C6" }, { "DocsId": "P:System.Drawing.Imaging.Effects.ShadowCurveEffect.Shadow", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ShadowCurveEffect.cs#L33C26-L33C37" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ShadowCurveEffect.cs#L33C26-L33C37" } ], "DocsId": "T:System.Drawing.Imaging.Effects.ShadowCurveEffect", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ShadowCurveEffect.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/ShadowCurveEffect.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.Effects.SharpenEffect.#ctor(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/SharpenEffect.cs#L31C56-L35C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/SharpenEffect.cs#L31C56-L35C6" }, { "DocsId": "P:System.Drawing.Imaging.Effects.SharpenEffect.Radius", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/SharpenEffect.cs#L42C28-L42C49" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/SharpenEffect.cs#L42C28-L42C49" }, { "DocsId": "P:System.Drawing.Imaging.Effects.SharpenEffect.Amount", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/SharpenEffect.cs#L48C28-L48C49" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/SharpenEffect.cs#L48C28-L48C49" } ], "DocsId": "T:System.Drawing.Imaging.Effects.SharpenEffect", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/SharpenEffect.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/SharpenEffect.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.Effects.TintEffect.#ctor(System.Drawing.Color,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/TintEffect.cs#L27C50-L32C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/TintEffect.cs#L27C50-L32C6" }, { "DocsId": "M:System.Drawing.Imaging.Effects.TintEffect.#ctor(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/TintEffect.cs#L40C46-L54C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/TintEffect.cs#L40C46-L54C6" }, { "DocsId": "P:System.Drawing.Imaging.Effects.TintEffect.Hue", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/TintEffect.cs#L59C23-L59C84" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/TintEffect.cs#L59C23-L59C84" }, { "DocsId": "P:System.Drawing.Imaging.Effects.TintEffect.Amount", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/TintEffect.cs#L66C26-L66C44" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/TintEffect.cs#L66C26-L66C44" } ], "DocsId": "T:System.Drawing.Imaging.Effects.TintEffect", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/TintEffect.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/TintEffect.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.Effects.VividEffect.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/VividEffect.cs#L13C28-L22C8" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/VividEffect.cs#L13C28-L22C8" } ], "DocsId": "T:System.Drawing.Imaging.Effects.VividEffect", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/VividEffect.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/VividEffect.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Imaging.Effects.WhiteSaturationCurveEffect.#ctor(System.Drawing.Imaging.Effects.CurveChannel,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/WhiteSaturationCurveEffect.cs#L25C11-L27C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/WhiteSaturationCurveEffect.cs#L25C11-L27C6" }, { "DocsId": "P:System.Drawing.Imaging.Effects.WhiteSaturationCurveEffect.WhiteSaturation", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/WhiteSaturationCurveEffect.cs#L34C35-L34C46" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/WhiteSaturationCurveEffect.cs#L34C35-L34C46" } ], "DocsId": "T:System.Drawing.Imaging.Effects.WhiteSaturationCurveEffect", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/WhiteSaturationCurveEffect.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Imaging/Effects/WhiteSaturationCurveEffect.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Design.CategoryNameCollection.#ctor(System.Drawing.Design.CategoryNameCollection)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Design/CategoryNameCollection.cs#L17C5-L17C93" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Design/CategoryNameCollection.cs#L17C5-L17C93" }, { "DocsId": "M:System.Drawing.Design.CategoryNameCollection.#ctor(System.String[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Design/CategoryNameCollection.cs#L23C5-L23C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Design/CategoryNameCollection.cs#L23C5-L23C79" }, { "DocsId": "M:System.Drawing.Design.CategoryNameCollection.Contains(System.String)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Design/CategoryNameCollection.cs#L34C43-L34C68" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Design/CategoryNameCollection.cs#L34C43-L34C68" }, { "DocsId": "M:System.Drawing.Design.CategoryNameCollection.CopyTo(System.String[],System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Design/CategoryNameCollection.cs#L40C54-L40C84" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Design/CategoryNameCollection.cs#L40C54-L40C84" }, { "DocsId": "M:System.Drawing.Design.CategoryNameCollection.IndexOf(System.String)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Design/CategoryNameCollection.cs#L45C41-L45C65" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Design/CategoryNameCollection.cs#L45C41-L45C65" }, { "DocsId": "P:System.Drawing.Design.CategoryNameCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Design/CategoryNameCollection.cs#L28C38-L28C63" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Design/CategoryNameCollection.cs#L28C38-L28C63" } ], "DocsId": "T:System.Drawing.Design.CategoryNameCollection", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Design/CategoryNameCollection.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Design/CategoryNameCollection.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Drawing2D.DashCap.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/DashCap.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/DashCap.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.DashCap.Flat", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/DashCap.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/DashCap.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.DashCap.Round", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/DashCap.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/DashCap.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.DashCap.Triangle", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/DashCap.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/DashCap.cs" } ], "DocsId": "T:System.Drawing.Drawing2D.DashCap", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/DashCap.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/DashCap.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Drawing2D.AdjustableArrowCap.#ctor(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/AdjustableArrowCap.cs#L10C60-L10C89" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/AdjustableArrowCap.cs#L10C60-L10C89" }, { "DocsId": "M:System.Drawing.Drawing2D.AdjustableArrowCap.#ctor(System.Single,System.Single,System.Boolean)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/AdjustableArrowCap.cs#L12C5-L17C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/AdjustableArrowCap.cs#L12C5-L17C6" }, { "DocsId": "P:System.Drawing.Drawing2D.AdjustableArrowCap.Height", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/AdjustableArrowCap.cs#L26C13-L28C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/AdjustableArrowCap.cs#L26C13-L28C27" }, { "DocsId": "P:System.Drawing.Drawing2D.AdjustableArrowCap.Width", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/AdjustableArrowCap.cs#L42C13-L44C26" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/AdjustableArrowCap.cs#L42C13-L44C26" }, { "DocsId": "P:System.Drawing.Drawing2D.AdjustableArrowCap.MiddleInset", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/AdjustableArrowCap.cs#L58C13-L60C32" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/AdjustableArrowCap.cs#L58C13-L60C32" }, { "DocsId": "P:System.Drawing.Drawing2D.AdjustableArrowCap.Filled", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/AdjustableArrowCap.cs#L74C13-L76C29" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/AdjustableArrowCap.cs#L74C13-L76C29" } ], "DocsId": "T:System.Drawing.Drawing2D.AdjustableArrowCap", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/AdjustableArrowCap.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/AdjustableArrowCap.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Drawing2D.Blend.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Blend.cs#L8C5-L12C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Blend.cs#L8C5-L12C6" }, { "DocsId": "M:System.Drawing.Drawing2D.Blend.#ctor(System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Blend.cs#L14C5-L18C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Blend.cs#L14C5-L18C6" }, { "DocsId": "P:System.Drawing.Drawing2D.Blend.Factors", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Blend.cs#L20C30-L20C34" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Blend.cs#L20C30-L20C34" }, { "DocsId": "P:System.Drawing.Drawing2D.Blend.Positions", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Blend.cs#L22C32-L22C36" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Blend.cs#L22C32-L22C36" } ], "DocsId": "T:System.Drawing.Drawing2D.Blend", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Blend.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Blend.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Drawing2D.ColorBlend.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/ColorBlend.cs#L8C5-L12C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/ColorBlend.cs#L8C5-L12C6" }, { "DocsId": "M:System.Drawing.Drawing2D.ColorBlend.#ctor(System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/ColorBlend.cs#L14C5-L18C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/ColorBlend.cs#L14C5-L18C6" }, { "DocsId": "P:System.Drawing.Drawing2D.ColorBlend.Colors", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/ColorBlend.cs#L20C29-L20C33" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/ColorBlend.cs#L20C29-L20C33" }, { "DocsId": "P:System.Drawing.Drawing2D.ColorBlend.Positions", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/ColorBlend.cs#L22C32-L22C36" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/ColorBlend.cs#L22C32-L22C36" } ], "DocsId": "T:System.Drawing.Drawing2D.ColorBlend", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/ColorBlend.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/ColorBlend.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Drawing2D.CombineMode.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CombineMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CombineMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.CombineMode.Replace", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CombineMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CombineMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.CombineMode.Intersect", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CombineMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CombineMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.CombineMode.Union", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CombineMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CombineMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.CombineMode.Xor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CombineMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CombineMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.CombineMode.Exclude", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CombineMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CombineMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.CombineMode.Complement", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CombineMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CombineMode.cs" } ], "DocsId": "T:System.Drawing.Drawing2D.CombineMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CombineMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CombineMode.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Drawing2D.CompositingMode.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.CompositingMode.SourceOver", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.CompositingMode.SourceCopy", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingMode.cs" } ], "DocsId": "T:System.Drawing.Drawing2D.CompositingMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingMode.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Drawing2D.CompositingQuality.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingQuality.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingQuality.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.CompositingQuality.Invalid", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingQuality.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingQuality.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.CompositingQuality.Default", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingQuality.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingQuality.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.CompositingQuality.HighSpeed", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingQuality.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingQuality.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.CompositingQuality.HighQuality", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingQuality.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingQuality.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.CompositingQuality.GammaCorrected", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingQuality.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingQuality.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.CompositingQuality.AssumeLinear", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingQuality.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingQuality.cs" } ], "DocsId": "T:System.Drawing.Drawing2D.CompositingQuality", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingQuality.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CompositingQuality.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Drawing2D.CoordinateSpace.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CoordinateSpace.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CoordinateSpace.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.CoordinateSpace.World", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CoordinateSpace.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CoordinateSpace.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.CoordinateSpace.Page", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CoordinateSpace.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CoordinateSpace.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.CoordinateSpace.Device", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CoordinateSpace.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CoordinateSpace.cs" } ], "DocsId": "T:System.Drawing.Drawing2D.CoordinateSpace", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CoordinateSpace.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CoordinateSpace.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Drawing2D.CustomLineCap.#ctor(System.Drawing.Drawing2D.GraphicsPath,System.Drawing.Drawing2D.GraphicsPath)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L15C78-L15C122" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L15C78-L15C122" }, { "DocsId": "M:System.Drawing.Drawing2D.CustomLineCap.#ctor(System.Drawing.Drawing2D.GraphicsPath,System.Drawing.Drawing2D.GraphicsPath,System.Drawing.Drawing2D.LineCap)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L17C95-L17C137" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L17C95-L17C137" }, { "DocsId": "M:System.Drawing.Drawing2D.CustomLineCap.#ctor(System.Drawing.Drawing2D.GraphicsPath,System.Drawing.Drawing2D.GraphicsPath,System.Drawing.Drawing2D.LineCap,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L19C5-L30C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L19C5-L30C6" }, { "DocsId": "M:System.Drawing.Drawing2D.CustomLineCap.Dispose", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L66C9-L68C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L66C9-L68C6" }, { "DocsId": "M:System.Drawing.Drawing2D.CustomLineCap.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L72C9-L85C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L72C9-L85C6" }, { "DocsId": "M:System.Drawing.Drawing2D.CustomLineCap.Finalize", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L87C25-L87C39" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L87C25-L16707566C0" }, { "DocsId": "M:System.Drawing.Drawing2D.CustomLineCap.Clone", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L89C30-L89C41" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L89C30-L89C41" }, { "DocsId": "M:System.Drawing.Drawing2D.CustomLineCap.SetStrokeCaps(System.Drawing.Drawing2D.LineCap,System.Drawing.Drawing2D.LineCap)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L101C9-L103C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L101C9-L103C6" }, { "DocsId": "M:System.Drawing.Drawing2D.CustomLineCap.GetStrokeCaps(System.Drawing.Drawing2D.LineCap@,System.Drawing.Drawing2D.LineCap@)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L106C5-L113C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L106C5-L113C6" }, { "DocsId": "P:System.Drawing.Drawing2D.CustomLineCap.StrokeJoin", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L120C13-L122C29" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L120C13-L122C29" }, { "DocsId": "P:System.Drawing.Drawing2D.CustomLineCap.BaseCap", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L136C13-L138C28" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L136C13-L138C28" }, { "DocsId": "P:System.Drawing.Drawing2D.CustomLineCap.BaseInset", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L152C13-L154C26" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L152C13-L154C26" }, { "DocsId": "P:System.Drawing.Drawing2D.CustomLineCap.WidthScale", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L168C13-L170C31" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs#L168C13-L170C31" } ], "DocsId": "T:System.Drawing.Drawing2D.CustomLineCap", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/CustomLineCap.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Drawing2D.DashStyle.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/DashStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/DashStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.DashStyle.Solid", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/DashStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/DashStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.DashStyle.Dash", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/DashStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/DashStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.DashStyle.Dot", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/DashStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/DashStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.DashStyle.DashDot", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/DashStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/DashStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.DashStyle.DashDotDot", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/DashStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/DashStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.DashStyle.Custom", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/DashStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/DashStyle.cs" } ], "DocsId": "T:System.Drawing.Drawing2D.DashStyle", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/DashStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/DashStyle.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Drawing2D.FillMode.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/FillMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/FillMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.FillMode.Alternate", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/FillMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/FillMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.FillMode.Winding", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/FillMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/FillMode.cs" } ], "DocsId": "T:System.Drawing.Drawing2D.FillMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/FillMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/FillMode.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Drawing2D.FlushIntention.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/FlushIntention.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/FlushIntention.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.FlushIntention.Flush", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/FlushIntention.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/FlushIntention.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.FlushIntention.Sync", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/FlushIntention.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/FlushIntention.cs" } ], "DocsId": "T:System.Drawing.Drawing2D.FlushIntention", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/FlushIntention.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/FlushIntention.cs" }, { "Members": [], "DocsId": "T:System.Drawing.Drawing2D.GraphicsContainer", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsContainer.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsContainer.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L16C29-L16C57" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L16C29-L16C57" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.#ctor(System.Drawing.Drawing2D.FillMode)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L19C5-L24C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L19C5-L24C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.#ctor(System.Drawing.PointF[],System.Byte[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L27C55-L27C95" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L27C55-L27C95" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.#ctor(System.Drawing.PointF[],System.Byte[],System.Drawing.Drawing2D.FillMode)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L31C11-L33C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L31C11-L33C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.#ctor(System.ReadOnlySpan{System.Drawing.PointF},System.ReadOnlySpan{System.Byte},System.Drawing.Drawing2D.FillMode)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L37C5-L55C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L37C5-L55C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.#ctor(System.Drawing.Point[],System.Byte[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L58C54-L58C94" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L58C54-L58C94" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.#ctor(System.Drawing.Point[],System.Byte[],System.Drawing.Drawing2D.FillMode)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L69C11-L69C91" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L69C11-L69C91" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.#ctor(System.ReadOnlySpan{System.Drawing.Point},System.ReadOnlySpan{System.Byte},System.Drawing.Drawing2D.FillMode)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L73C5-L91C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L73C5-L91C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.Clone", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L96C9-L98C39" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L96C9-L98C39" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.Dispose", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L111C9-L113C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L111C9-L113C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.Finalize", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L140C24-L140C49" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L140C24-L16707566C0" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.Reset", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L144C9-L146C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L144C9-L146C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.StartFigure", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L202C9-L204C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L202C9-L204C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.CloseFigure", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L208C9-L210C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L208C9-L210C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.CloseAllFigures", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L214C9-L216C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L214C9-L216C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.SetMarkers", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L220C9-L222C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L220C9-L222C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.ClearMarkers", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L226C9-L228C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L226C9-L228C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.Reverse", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L232C9-L234C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L232C9-L234C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.GetLastPoint", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L239C9-L241C22" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L239C9-L241C22" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.IsVisible(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L244C48-L244C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L244C48-L244C81" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.IsVisible(System.Drawing.PointF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L246C44-L246C66" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L246C44-L246C66" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.IsVisible(System.Single,System.Single,System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L251C9-L259C26" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L251C9-L259C26" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.IsVisible(System.Drawing.PointF,System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L262C61-L262C92" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L262C61-L262C92" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.IsVisible(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L264C44-L264C72" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L264C44-L264C72" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.IsVisible(System.Drawing.Point)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L266C43-L266C73" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L266C43-L266C73" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.IsVisible(System.Int32,System.Int32,System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L268C64-L268C96" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L268C64-L268C96" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.IsVisible(System.Drawing.Point,System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L270C60-L270C91" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L270C60-L270C91" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.IsOutlineVisible(System.Single,System.Single,System.Drawing.Pen)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L272C64-L272C109" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L272C64-L272C109" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.IsOutlineVisible(System.Drawing.PointF,System.Drawing.Pen)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L274C60-L274C94" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L274C60-L274C94" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.IsOutlineVisible(System.Single,System.Single,System.Drawing.Pen,System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L278C9-L290C26" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L278C9-L290C26" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.IsOutlineVisible(System.Drawing.PointF,System.Drawing.Pen,System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L293C77-L293C120" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L293C77-L293C120" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.IsOutlineVisible(System.Int32,System.Int32,System.Drawing.Pen)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L295C60-L295C104" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L295C60-L295C104" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.IsOutlineVisible(System.Drawing.Point,System.Drawing.Pen)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L297C59-L297C93" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L297C59-L297C93" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.IsOutlineVisible(System.Int32,System.Int32,System.Drawing.Pen,System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L299C80-L299C124" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L299C80-L299C124" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.IsOutlineVisible(System.Drawing.Point,System.Drawing.Pen,System.Drawing.Graphics)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L301C76-L301C119" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L301C76-L301C119" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddLine(System.Drawing.PointF,System.Drawing.PointF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L303C52-L303C87" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L303C52-L303C87" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddLine(System.Single,System.Single,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L307C9-L309C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L307C9-L309C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddLines(System.Drawing.PointF[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L324C53-L324C94" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L324C53-L324C94" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddLines(System.ReadOnlySpan{System.Drawing.PointF})", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L334C9-L344C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L334C9-L344C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddLine(System.Drawing.Point,System.Drawing.Point)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L346C50-L346C92" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L346C50-L346C92" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddLine(System.Int32,System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L348C60-L348C90" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L348C60-L348C90" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddLines(System.Drawing.Point[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L351C52-L351C93" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L351C52-L351C93" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddLines(System.ReadOnlySpan{System.Drawing.Point})", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L361C9-L371C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L361C9-L371C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddArc(System.Drawing.RectangleF,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L374C9-L374C80" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L374C9-L374C80" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddArc(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L378C9-L380C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L378C9-L380C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddArc(System.Drawing.Rectangle,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L383C9-L383C80" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L383C9-L383C80" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddArc(System.Int32,System.Int32,System.Int32,System.Int32,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L386C9-L386C67" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L386C9-L386C67" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddBezier(System.Drawing.PointF,System.Drawing.PointF,System.Drawing.PointF,System.Drawing.PointF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L389C9-L389C74" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L389C9-L389C74" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddBezier(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L393C9-L395C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L393C9-L395C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddBeziers(System.Drawing.PointF[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L401C55-L401C98" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L401C55-L401C98" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddBeziers(System.ReadOnlySpan{System.Drawing.PointF})", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L411C16-L416C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L411C16-L416C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddBezier(System.Drawing.Point,System.Drawing.Point,System.Drawing.Point,System.Drawing.Point)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L419C9-L419C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L419C9-L419C81" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddBezier(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L422C9-L422C57" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L422C9-L422C57" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddBeziers(System.Drawing.Point[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L425C54-L425C97" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L425C54-L425C97" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddBeziers(System.ReadOnlySpan{System.Drawing.Point})", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L435C9-L443C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L435C9-L443C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddCurve(System.Drawing.PointF[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L446C53-L446C84" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L446C53-L446C84" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddCurve(System.Drawing.PointF[],System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L449C61-L449C95" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L449C61-L449C95" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddCurve(System.Drawing.PointF[],System.Int32,System.Int32,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L467C16-L479C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L467C16-L479C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddCurve(System.ReadOnlySpan{System.Drawing.PointF})", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L483C58-L483C80" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L483C58-L483C80" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddCurve(System.ReadOnlySpan{System.Drawing.PointF},System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L494C16-L504C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L494C16-L504C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddCurve(System.Drawing.Point[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L507C52-L507C83" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L507C52-L507C83" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddCurve(System.Drawing.Point[],System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L510C60-L510C94" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L510C60-L510C94" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddCurve(System.Drawing.Point[],System.Int32,System.Int32,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L515C16-L527C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L515C16-L527C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddCurve(System.ReadOnlySpan{System.Drawing.Point})", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L531C57-L531C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L531C57-L531C79" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddCurve(System.ReadOnlySpan{System.Drawing.Point},System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L542C16-L552C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L542C16-L552C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddClosedCurve(System.Drawing.PointF[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L555C59-L555C87" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L555C59-L555C87" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddClosedCurve(System.Drawing.PointF[],System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L558C67-L558C123" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L558C67-L558C123" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddClosedCurve(System.ReadOnlySpan{System.Drawing.PointF})", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L562C64-L562C92" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L562C64-L562C92" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddClosedCurve(System.ReadOnlySpan{System.Drawing.PointF},System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L573C16-L578C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L573C16-L578C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddClosedCurve(System.Drawing.Point[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L581C58-L581C86" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L581C58-L581C86" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddClosedCurve(System.Drawing.Point[],System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L588C66-L588C122" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L588C66-L588C122" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddClosedCurve(System.ReadOnlySpan{System.Drawing.Point})", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L592C63-L592C91" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L592C63-L592C91" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddClosedCurve(System.ReadOnlySpan{System.Drawing.Point},System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L603C16-L608C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L603C16-L608C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddRectangle(System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L612C9-L616C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L612C9-L616C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddRectangles(System.Drawing.RectangleF[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L622C61-L622C106" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L622C61-L622C106" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddRectangles(System.ReadOnlySpan{System.Drawing.RectangleF})", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L632C16-L637C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L632C16-L637C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddRectangle(System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L639C49-L639C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L639C49-L639C79" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddRectangles(System.Drawing.Rectangle[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L642C53-L642C98" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L642C53-L642C98" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddRectangles(System.ReadOnlySpan{System.Drawing.Rectangle})", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L652C16-L657C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L652C16-L657C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddRoundedRectangle(System.Drawing.Rectangle,System.Drawing.Size)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L662C9-L662C54" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L662C9-L662C54" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddRoundedRectangle(System.Drawing.RectangleF,System.Drawing.SizeF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L671C9-L697C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L671C9-L697C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddEllipse(System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L701C9-L701C60" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L701C9-L701C60" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddEllipse(System.Single,System.Single,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L705C9-L707C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L705C9-L707C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddEllipse(System.Drawing.Rectangle)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L709C47-L709C98" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L709C47-L709C98" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddEllipse(System.Int32,System.Int32,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L711C68-L711C106" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L711C68-L711C106" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddPie(System.Drawing.Rectangle,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L714C9-L714C87" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L714C9-L714C87" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddPie(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L718C9-L725C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L718C9-L725C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddPie(System.Int32,System.Int32,System.Int32,System.Int32,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L728C9-L728C67" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L728C9-L728C67" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddPolygon(System.Drawing.PointF[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L731C48-L731C91" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L731C48-L731C91" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddPolygon(System.ReadOnlySpan{System.Drawing.PointF})", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L741C16-L746C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L741C16-L746C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddPolygon(System.Drawing.Point[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L752C47-L752C90" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L752C47-L752C90" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddPolygon(System.ReadOnlySpan{System.Drawing.Point})", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L762C16-L767C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L762C16-L767C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddPath(System.Drawing.Drawing2D.GraphicsPath,System.Boolean)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L771C9-L775C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L771C9-L775C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddString(System.String,System.Drawing.FontFamily,System.Int32,System.Single,System.Drawing.PointF,System.Drawing.StringFormat)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L778C9-L778C94" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L778C9-L778C94" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddString(System.String,System.Drawing.FontFamily,System.Int32,System.Single,System.Drawing.Point,System.Drawing.StringFormat)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L781C9-L781C93" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L781C9-L781C93" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddString(System.String,System.Drawing.FontFamily,System.Int32,System.Single,System.Drawing.RectangleF,System.Drawing.StringFormat)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L785C9-L803C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L785C9-L803C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.AddString(System.String,System.Drawing.FontFamily,System.Int32,System.Single,System.Drawing.Rectangle,System.Drawing.StringFormat)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L806C12-L806C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L806C12-L806C79" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.Transform(System.Drawing.Drawing2D.Matrix)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L810C9-L814C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L810C9-L814C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.GetBounds", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L816C38-L816C53" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L816C38-L816C53" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.GetBounds(System.Drawing.Drawing2D.Matrix)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L818C52-L818C75" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L818C52-L818C75" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.GetBounds(System.Drawing.Drawing2D.Matrix,System.Drawing.Pen)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L823C9-L832C23" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L823C9-L832C23" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.Flatten", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L835C30-L835C43" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L835C30-L835C43" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.Flatten(System.Drawing.Drawing2D.Matrix)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L837C44-L837C66" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L837C44-L837C66" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.Flatten(System.Drawing.Drawing2D.Matrix,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L841C9-L843C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L841C9-L843C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.Widen(System.Drawing.Pen)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L845C35-L845C61" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L845C35-L845C61" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.Widen(System.Drawing.Pen,System.Drawing.Drawing2D.Matrix)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L847C51-L847C79" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L847C51-L847C79" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.Widen(System.Drawing.Pen,System.Drawing.Drawing2D.Matrix,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L851C9-L862C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L851C9-L862C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.Warp(System.Drawing.PointF[],System.Drawing.RectangleF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L865C66-L865C97" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L865C66-L865C97" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.Warp(System.Drawing.PointF[],System.Drawing.RectangleF,System.Drawing.Drawing2D.Matrix)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L869C9-L869C64" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L869C9-L869C64" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.Warp(System.Drawing.PointF[],System.Drawing.RectangleF,System.Drawing.Drawing2D.Matrix,System.Drawing.Drawing2D.WarpMode)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L873C9-L873C59" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L873C9-L873C59" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.Warp(System.Drawing.PointF[],System.Drawing.RectangleF,System.Drawing.Drawing2D.Matrix,System.Drawing.Drawing2D.WarpMode,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L877C9-L877C87" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L877C9-L877C87" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.Warp(System.ReadOnlySpan{System.Drawing.PointF},System.Drawing.RectangleF,System.Drawing.Drawing2D.Matrix,System.Drawing.Drawing2D.WarpMode,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L909C16-L922C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L909C16-L922C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.GetPathTypes(System.Span{System.Byte})", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L967C9-L976C31" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L967C9-L976C31" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPath.GetPathPoints(System.Span{System.Drawing.PointF})", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L1012C9-L1021C31" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L1012C9-L1021C31" }, { "DocsId": "P:System.Drawing.Drawing2D.GraphicsPath.FillMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L153C13-L155C39" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L153C13-L155C39" }, { "DocsId": "P:System.Drawing.Drawing2D.GraphicsPath.PathData", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L171C13-L196C29" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L171C13-L196C29" }, { "DocsId": "P:System.Drawing.Drawing2D.GraphicsPath.PointCount", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L929C13-L931C26" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L929C13-L931C26" }, { "DocsId": "P:System.Drawing.Drawing2D.GraphicsPath.PathTypes", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L939C13-L947C26" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L939C13-L947C26" }, { "DocsId": "P:System.Drawing.Drawing2D.GraphicsPath.PathPoints", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L984C13-L992C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs#L984C13-L992C27" } ], "DocsId": "T:System.Drawing.Drawing2D.GraphicsPath", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPath.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPathIterator.#ctor(System.Drawing.Drawing2D.GraphicsPath)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L11C5-L17C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L11C5-L17C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPathIterator.Dispose", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L21C9-L23C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L21C9-L23C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPathIterator.Finalize", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L55C32-L55C46" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L55C32-L16707566C0" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPathIterator.NextSubpath(System.Int32@,System.Int32@,System.Boolean@)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L58C5-L67C32" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L58C5-L67C32" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPathIterator.NextSubpath(System.Drawing.Drawing2D.GraphicsPath,System.Boolean@)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L75C9-L78C28" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L75C9-L78C28" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPathIterator.NextPathType(System.Byte@,System.Int32@,System.Int32@)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L82C5-L90C32" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L82C5-L90C32" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPathIterator.NextMarker(System.Int32@,System.Int32@)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L95C5-L102C32" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L95C5-L102C32" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPathIterator.NextMarker(System.Drawing.Drawing2D.GraphicsPath)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L109C9-L111C28" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L109C9-L111C28" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPathIterator.HasCurve", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L139C9-L141C25" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L139C9-L141C25" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPathIterator.Rewind", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L146C9-L148C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L146C9-L148C6" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPathIterator.Enumerate(System.Drawing.PointF[]@,System.Byte[]@)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L152C9-L170C32" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L152C9-L170C32" }, { "DocsId": "M:System.Drawing.Drawing2D.GraphicsPathIterator.CopyData(System.Drawing.PointF[]@,System.Byte[]@,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L176C9-L192C32" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L176C9-L192C32" }, { "DocsId": "P:System.Drawing.Drawing2D.GraphicsPathIterator.Count", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L119C13-L121C32" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L119C13-L121C32" }, { "DocsId": "P:System.Drawing.Drawing2D.GraphicsPathIterator.SubpathCount", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L130C13-L132C32" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs#L130C13-L132C32" } ], "DocsId": "T:System.Drawing.Drawing2D.GraphicsPathIterator", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsPathIterator.cs" }, { "Members": [], "DocsId": "T:System.Drawing.Drawing2D.GraphicsState", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsState.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/GraphicsState.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Drawing2D.HatchBrush.#ctor(System.Drawing.Drawing2D.HatchStyle,System.Drawing.Color)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchBrush.cs#L9C11-L11C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchBrush.cs#L9C11-L11C6" }, { "DocsId": "M:System.Drawing.Drawing2D.HatchBrush.#ctor(System.Drawing.Drawing2D.HatchStyle,System.Drawing.Color,System.Drawing.Color)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchBrush.cs#L13C5-L23C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchBrush.cs#L13C5-L23C6" }, { "DocsId": "M:System.Drawing.Drawing2D.HatchBrush.Clone", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchBrush.cs#L34C9-L36C54" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchBrush.cs#L34C9-L36C54" }, { "DocsId": "P:System.Drawing.Drawing2D.HatchBrush.HatchStyle", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchBrush.cs#L44C13-L46C43" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchBrush.cs#L44C13-L46C43" }, { "DocsId": "P:System.Drawing.Drawing2D.HatchBrush.ForegroundColor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchBrush.cs#L55C13-L57C35" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchBrush.cs#L55C13-L57C35" }, { "DocsId": "P:System.Drawing.Drawing2D.HatchBrush.BackgroundColor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchBrush.cs#L66C13-L68C35" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchBrush.cs#L66C13-L68C35" } ], "DocsId": "T:System.Drawing.Drawing2D.HatchBrush", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchBrush.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchBrush.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Horizontal", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Vertical", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.ForwardDiagonal", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.BackwardDiagonal", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Cross", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.DiagonalCross", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Percent05", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Percent10", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Percent20", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Percent25", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Percent30", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Percent40", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Percent50", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Percent60", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Percent70", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Percent75", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Percent80", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Percent90", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.LightDownwardDiagonal", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.LightUpwardDiagonal", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.DarkDownwardDiagonal", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.DarkUpwardDiagonal", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.WideDownwardDiagonal", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.WideUpwardDiagonal", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.LightVertical", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.LightHorizontal", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.NarrowVertical", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.NarrowHorizontal", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.DarkVertical", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.DarkHorizontal", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.DashedDownwardDiagonal", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.DashedUpwardDiagonal", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.DashedHorizontal", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.DashedVertical", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.SmallConfetti", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.LargeConfetti", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.ZigZag", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Wave", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.DiagonalBrick", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.HorizontalBrick", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Weave", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Plaid", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Divot", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.DottedGrid", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.DottedDiamond", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Shingle", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Trellis", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Sphere", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.SmallGrid", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.SmallCheckerBoard", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.LargeCheckerBoard", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.OutlinedDiamond", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.SolidDiamond", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.LargeGrid", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Min", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.HatchStyle.Max", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" } ], "DocsId": "T:System.Drawing.Drawing2D.HatchStyle", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/HatchStyle.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Drawing2D.InterpolationMode.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/InterpolationMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/InterpolationMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.InterpolationMode.Invalid", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/InterpolationMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/InterpolationMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.InterpolationMode.Default", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/InterpolationMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/InterpolationMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.InterpolationMode.Low", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/InterpolationMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/InterpolationMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.InterpolationMode.High", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/InterpolationMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/InterpolationMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.InterpolationMode.Bilinear", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/InterpolationMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/InterpolationMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.InterpolationMode.Bicubic", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/InterpolationMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/InterpolationMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.InterpolationMode.NearestNeighbor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/InterpolationMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/InterpolationMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.InterpolationMode.HighQualityBilinear", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/InterpolationMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/InterpolationMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.InterpolationMode.HighQualityBicubic", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/InterpolationMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/InterpolationMode.cs" } ], "DocsId": "T:System.Drawing.Drawing2D.InterpolationMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/InterpolationMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/InterpolationMode.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Drawing2D.LinearGradientBrush.#ctor(System.Drawing.PointF,System.Drawing.PointF,System.Drawing.Color,System.Drawing.Color)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L12C5-L22C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L12C5-L22C6" }, { "DocsId": "M:System.Drawing.Drawing2D.LinearGradientBrush.#ctor(System.Drawing.Point,System.Drawing.Point,System.Drawing.Color,System.Drawing.Color)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L25C11-L27C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L25C11-L27C6" }, { "DocsId": "M:System.Drawing.Drawing2D.LinearGradientBrush.#ctor(System.Drawing.RectangleF,System.Drawing.Color,System.Drawing.Color,System.Drawing.Drawing2D.LinearGradientMode)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L29C5-L47C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L29C5-L47C6" }, { "DocsId": "M:System.Drawing.Drawing2D.LinearGradientBrush.#ctor(System.Drawing.Rectangle,System.Drawing.Color,System.Drawing.Color,System.Drawing.Drawing2D.LinearGradientMode)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L50C11-L52C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L50C11-L52C6" }, { "DocsId": "M:System.Drawing.Drawing2D.LinearGradientBrush.#ctor(System.Drawing.RectangleF,System.Drawing.Color,System.Drawing.Color,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L55C11-L57C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L55C11-L57C6" }, { "DocsId": "M:System.Drawing.Drawing2D.LinearGradientBrush.#ctor(System.Drawing.RectangleF,System.Drawing.Color,System.Drawing.Color,System.Single,System.Boolean)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L59C5-L75C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L59C5-L75C6" }, { "DocsId": "M:System.Drawing.Drawing2D.LinearGradientBrush.#ctor(System.Drawing.Rectangle,System.Drawing.Color,System.Drawing.Color,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L78C11-L80C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L78C11-L80C6" }, { "DocsId": "M:System.Drawing.Drawing2D.LinearGradientBrush.#ctor(System.Drawing.Rectangle,System.Drawing.Color,System.Drawing.Color,System.Single,System.Boolean)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L83C11-L85C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L83C11-L85C6" }, { "DocsId": "M:System.Drawing.Drawing2D.LinearGradientBrush.Clone", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L98C9-L100C70" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L98C9-L100C70" }, { "DocsId": "M:System.Drawing.Drawing2D.LinearGradientBrush.SetSigmaBellShape(System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L196C51-L196C87" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L196C51-L196C87" }, { "DocsId": "M:System.Drawing.Drawing2D.LinearGradientBrush.SetSigmaBellShape(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L200C9-L202C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L200C9-L202C6" }, { "DocsId": "M:System.Drawing.Drawing2D.LinearGradientBrush.SetBlendTriangularShape(System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L204C57-L204C99" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L204C57-L204C99" }, { "DocsId": "M:System.Drawing.Drawing2D.LinearGradientBrush.SetBlendTriangularShape(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L208C9-L211C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L208C9-L211C6" }, { "DocsId": "M:System.Drawing.Drawing2D.LinearGradientBrush.ResetTransform", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L305C9-L307C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L305C9-L307C6" }, { "DocsId": "M:System.Drawing.Drawing2D.LinearGradientBrush.MultiplyTransform(System.Drawing.Drawing2D.Matrix)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L309C53-L309C99" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L309C53-L309C99" }, { "DocsId": "M:System.Drawing.Drawing2D.LinearGradientBrush.MultiplyTransform(System.Drawing.Drawing2D.Matrix,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L313C9-L317C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L313C9-L317C6" }, { "DocsId": "M:System.Drawing.Drawing2D.LinearGradientBrush.TranslateTransform(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L319C59-L319C106" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L319C59-L319C106" }, { "DocsId": "M:System.Drawing.Drawing2D.LinearGradientBrush.TranslateTransform(System.Single,System.Single,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L323C9-L325C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L323C9-L325C6" }, { "DocsId": "M:System.Drawing.Drawing2D.LinearGradientBrush.ScaleTransform(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L327C55-L327C98" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L327C55-L327C98" }, { "DocsId": "M:System.Drawing.Drawing2D.LinearGradientBrush.ScaleTransform(System.Single,System.Single,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L331C9-L333C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L331C9-L333C6" }, { "DocsId": "M:System.Drawing.Drawing2D.LinearGradientBrush.RotateTransform(System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L335C49-L335C92" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L335C49-L335C92" }, { "DocsId": "M:System.Drawing.Drawing2D.LinearGradientBrush.RotateTransform(System.Single,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L339C9-L341C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L339C9-L341C6" }, { "DocsId": "P:System.Drawing.Drawing2D.LinearGradientBrush.LinearColors", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L107C13-L115C15" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L107C13-L115C15" }, { "DocsId": "P:System.Drawing.Drawing2D.LinearGradientBrush.Rectangle", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L129C13-L131C25" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L129C13-L131C25" }, { "DocsId": "P:System.Drawing.Drawing2D.LinearGradientBrush.GammaCorrection", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L140C13-L142C39" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L140C13-L142C39" }, { "DocsId": "P:System.Drawing.Drawing2D.LinearGradientBrush.Blend", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L158C13-L176C30" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L158C13-L176C30" }, { "DocsId": "P:System.Drawing.Drawing2D.LinearGradientBrush.InterpolationColors", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L218C13-L241C10" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L218C13-L241C10" }, { "DocsId": "P:System.Drawing.Drawing2D.LinearGradientBrush.WrapMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L271C13-L273C25" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L271C13-L273C25" }, { "DocsId": "P:System.Drawing.Drawing2D.LinearGradientBrush.Transform", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L289C13-L292C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs#L289C13-L292C27" } ], "DocsId": "T:System.Drawing.Drawing2D.LinearGradientBrush", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientBrush.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Drawing2D.LinearGradientMode.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.LinearGradientMode.Horizontal", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.LinearGradientMode.Vertical", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.LinearGradientMode.ForwardDiagonal", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.LinearGradientMode.BackwardDiagonal", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientMode.cs" } ], "DocsId": "T:System.Drawing.Drawing2D.LinearGradientMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LinearGradientMode.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Drawing2D.LineCap.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.LineCap.Flat", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.LineCap.Square", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.LineCap.Round", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.LineCap.Triangle", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.LineCap.NoAnchor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.LineCap.SquareAnchor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.LineCap.RoundAnchor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.LineCap.DiamondAnchor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.LineCap.ArrowAnchor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.LineCap.Custom", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.LineCap.AnchorMask", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" } ], "DocsId": "T:System.Drawing.Drawing2D.LineCap", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineCap.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Drawing2D.LineJoin.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineJoin.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineJoin.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.LineJoin.Miter", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineJoin.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineJoin.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.LineJoin.Bevel", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineJoin.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineJoin.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.LineJoin.Round", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineJoin.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineJoin.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.LineJoin.MiterClipped", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineJoin.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineJoin.cs" } ], "DocsId": "T:System.Drawing.Drawing2D.LineJoin", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineJoin.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/LineJoin.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Drawing2D.Matrix.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L12C5-L17C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L12C5-L17C6" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.#ctor(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L19C5-L24C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L19C5-L24C6" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.#ctor(System.Numerics.Matrix3x2)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L30C39-L32C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L30C39-L32C6" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.#ctor(System.Drawing.RectangleF,System.Drawing.PointF[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L51C5-L63C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L51C5-L63C6" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.#ctor(System.Drawing.Rectangle,System.Drawing.Point[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L65C5-L77C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L65C5-L77C6" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.Dispose", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L81C9-L83C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L81C9-L83C6" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.Finalize", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L98C18-L98C35" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L98C18-L16707566C0" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.Clone", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L103C9-L105C35" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L103C9-L105C35" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.Reset", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L172C9-L178C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L172C9-L178C6" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.Multiply(System.Drawing.Drawing2D.Matrix)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L180C44-L180C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L180C44-L180C81" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.Multiply(System.Drawing.Drawing2D.Matrix,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L184C9-L192C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L184C9-L192C6" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.Translate(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L194C60-L194C108" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L194C60-L194C108" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.Translate(System.Single,System.Single,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L198C9-L200C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L198C9-L200C6" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.Scale(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L202C54-L202C96" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L202C54-L202C96" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.Scale(System.Single,System.Single,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L206C9-L208C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L206C9-L208C6" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.Rotate(System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L210C40-L210C74" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L210C40-L210C74" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.Rotate(System.Single,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L214C9-L216C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L214C9-L216C6" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.RotateAt(System.Single,System.Drawing.PointF)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L218C56-L218C99" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L218C56-L218C99" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.RotateAt(System.Single,System.Drawing.PointF,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L222C9-L237C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L222C9-L237C6" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.Shear(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L241C9-L243C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L241C9-L243C6" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.Shear(System.Single,System.Single,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L247C9-L249C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L247C9-L249C6" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.Invert", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L253C9-L255C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L253C9-L255C6" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.TransformPoints(System.Drawing.PointF[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L259C9-L270C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L259C9-L270C6" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.TransformPoints(System.Drawing.Point[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L274C9-L285C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L274C9-L285C6" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.TransformVectors(System.Drawing.PointF[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L289C9-L300C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L289C9-L300C6" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.VectorTransformPoints(System.Drawing.Point[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L302C55-L302C76" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L302C55-L302C76" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.TransformVectors(System.Drawing.Point[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L306C9-L317C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L306C9-L317C6" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L343C9-L354C22" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L343C9-L354C22" }, { "DocsId": "M:System.Drawing.Drawing2D.Matrix.GetHashCode", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L357C42-L357C60" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L357C42-L357C60" }, { "DocsId": "P:System.Drawing.Drawing2D.Matrix.Elements", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L112C13-L114C29" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L112C13-L114C29" }, { "DocsId": "P:System.Drawing.Drawing2D.Matrix.MatrixElements", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L125C13-L128C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L125C13-L128C27" }, { "DocsId": "P:System.Drawing.Drawing2D.Matrix.OffsetX", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L156C29-L156C37" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L156C29-L156C37" }, { "DocsId": "P:System.Drawing.Drawing2D.Matrix.OffsetY", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L158C29-L158C37" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L158C29-L158C37" }, { "DocsId": "P:System.Drawing.Drawing2D.Matrix.IsInvertible", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L324C13-L326C31" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L324C13-L326C31" }, { "DocsId": "P:System.Drawing.Drawing2D.Matrix.IsIdentity", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L335C13-L337C29" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs#L335C13-L337C29" } ], "DocsId": "T:System.Drawing.Drawing2D.Matrix", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/Matrix.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Drawing2D.MatrixOrder.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/MatrixOrder.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/MatrixOrder.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.MatrixOrder.Prepend", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/MatrixOrder.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/MatrixOrder.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.MatrixOrder.Append", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/MatrixOrder.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/MatrixOrder.cs" } ], "DocsId": "T:System.Drawing.Drawing2D.MatrixOrder", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/MatrixOrder.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/MatrixOrder.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Drawing2D.PathData.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathData.cs#L8C5-L8C26" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathData.cs#L8C5-L8C26" }, { "DocsId": "P:System.Drawing.Drawing2D.PathData.Points", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathData.cs#L10C31-L10C35" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathData.cs#L10C31-L10C35" }, { "DocsId": "P:System.Drawing.Drawing2D.PathData.Types", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathData.cs#L12C28-L12C32" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathData.cs#L12C28-L12C32" } ], "DocsId": "T:System.Drawing.Drawing2D.PathData", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathData.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathData.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Drawing2D.PathGradientBrush.#ctor(System.Drawing.PointF[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L10C49-L10C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L10C49-L10C81" }, { "DocsId": "M:System.Drawing.Drawing2D.PathGradientBrush.#ctor(System.Drawing.PointF[],System.Drawing.Drawing2D.WrapMode)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L12C5-L33C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L12C5-L33C6" }, { "DocsId": "M:System.Drawing.Drawing2D.PathGradientBrush.#ctor(System.Drawing.Point[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L35C48-L35C80" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L35C48-L35C80" }, { "DocsId": "M:System.Drawing.Drawing2D.PathGradientBrush.#ctor(System.Drawing.Point[],System.Drawing.Drawing2D.WrapMode)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L37C5-L58C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L37C5-L58C6" }, { "DocsId": "M:System.Drawing.Drawing2D.PathGradientBrush.#ctor(System.Drawing.Drawing2D.GraphicsPath)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L60C5-L66C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L60C5-L66C6" }, { "DocsId": "M:System.Drawing.Drawing2D.PathGradientBrush.Clone", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L79C9-L81C68" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L79C9-L81C68" }, { "DocsId": "M:System.Drawing.Drawing2D.PathGradientBrush.SetSigmaBellShape(System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L208C51-L208C87" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L208C51-L208C87" }, { "DocsId": "M:System.Drawing.Drawing2D.PathGradientBrush.SetSigmaBellShape(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L212C9-L214C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L212C9-L214C6" }, { "DocsId": "M:System.Drawing.Drawing2D.PathGradientBrush.SetBlendTriangularShape(System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L216C57-L216C99" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L216C57-L216C99" }, { "DocsId": "M:System.Drawing.Drawing2D.PathGradientBrush.SetBlendTriangularShape(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L220C9-L222C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L220C9-L222C6" }, { "DocsId": "M:System.Drawing.Drawing2D.PathGradientBrush.ResetTransform", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L295C9-L297C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L295C9-L297C6" }, { "DocsId": "M:System.Drawing.Drawing2D.PathGradientBrush.MultiplyTransform(System.Drawing.Drawing2D.Matrix)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L299C53-L299C99" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L299C53-L299C99" }, { "DocsId": "M:System.Drawing.Drawing2D.PathGradientBrush.MultiplyTransform(System.Drawing.Drawing2D.Matrix,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L303C9-L311C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L303C9-L311C6" }, { "DocsId": "M:System.Drawing.Drawing2D.PathGradientBrush.TranslateTransform(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L313C59-L313C106" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L313C59-L313C106" }, { "DocsId": "M:System.Drawing.Drawing2D.PathGradientBrush.TranslateTransform(System.Single,System.Single,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L317C9-L319C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L317C9-L319C6" }, { "DocsId": "M:System.Drawing.Drawing2D.PathGradientBrush.ScaleTransform(System.Single,System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L321C55-L321C98" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L321C55-L321C98" }, { "DocsId": "M:System.Drawing.Drawing2D.PathGradientBrush.ScaleTransform(System.Single,System.Single,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L325C9-L327C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L325C9-L327C6" }, { "DocsId": "M:System.Drawing.Drawing2D.PathGradientBrush.RotateTransform(System.Single)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L329C49-L329C92" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L329C49-L329C92" }, { "DocsId": "M:System.Drawing.Drawing2D.PathGradientBrush.RotateTransform(System.Single,System.Drawing.Drawing2D.MatrixOrder)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L333C9-L335C6" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L333C9-L335C6" }, { "DocsId": "P:System.Drawing.Drawing2D.PathGradientBrush.CenterColor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L89C13-L91C25" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L89C13-L91C25" }, { "DocsId": "P:System.Drawing.Drawing2D.PathGradientBrush.SurroundColors", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L105C13-L115C10" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L105C13-L115C10" }, { "DocsId": "P:System.Drawing.Drawing2D.PathGradientBrush.CenterPoint", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L139C13-L141C26" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L139C13-L141C26" }, { "DocsId": "P:System.Drawing.Drawing2D.PathGradientBrush.Rectangle", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L155C13-L157C25" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L155C13-L157C25" }, { "DocsId": "P:System.Drawing.Drawing2D.PathGradientBrush.Blend", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L167C13-L187C26" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L167C13-L187C26" }, { "DocsId": "P:System.Drawing.Drawing2D.PathGradientBrush.InterpolationColors", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L230C13-L253C10" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L230C13-L253C10" }, { "DocsId": "P:System.Drawing.Drawing2D.PathGradientBrush.Transform", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L279C13-L282C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L279C13-L282C27" }, { "DocsId": "P:System.Drawing.Drawing2D.PathGradientBrush.FocusScales", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L343C13-L345C47" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L343C13-L345C47" }, { "DocsId": "P:System.Drawing.Drawing2D.PathGradientBrush.WrapMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L359C13-L361C25" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs#L359C13-L361C25" } ], "DocsId": "T:System.Drawing.Drawing2D.PathGradientBrush", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathGradientBrush.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Drawing2D.PathPointType.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathPointType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathPointType.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PathPointType.Start", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathPointType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathPointType.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PathPointType.Line", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathPointType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathPointType.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PathPointType.Bezier", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathPointType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathPointType.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PathPointType.PathTypeMask", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathPointType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathPointType.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PathPointType.DashMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathPointType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathPointType.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PathPointType.PathMarker", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathPointType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathPointType.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PathPointType.CloseSubpath", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathPointType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathPointType.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PathPointType.Bezier3", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathPointType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathPointType.cs" } ], "DocsId": "T:System.Drawing.Drawing2D.PathPointType", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathPointType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PathPointType.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Drawing2D.PenAlignment.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenAlignment.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenAlignment.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PenAlignment.Center", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenAlignment.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenAlignment.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PenAlignment.Inset", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenAlignment.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenAlignment.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PenAlignment.Outset", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenAlignment.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenAlignment.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PenAlignment.Left", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenAlignment.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenAlignment.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PenAlignment.Right", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenAlignment.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenAlignment.cs" } ], "DocsId": "T:System.Drawing.Drawing2D.PenAlignment", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenAlignment.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenAlignment.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Drawing2D.PenType.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenType.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PenType.SolidColor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenType.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PenType.HatchFill", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenType.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PenType.TextureFill", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenType.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PenType.PathGradient", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenType.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PenType.LinearGradient", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenType.cs" } ], "DocsId": "T:System.Drawing.Drawing2D.PenType", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenType.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PenType.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Drawing2D.PixelOffsetMode.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PixelOffsetMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PixelOffsetMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PixelOffsetMode.Invalid", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PixelOffsetMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PixelOffsetMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PixelOffsetMode.Default", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PixelOffsetMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PixelOffsetMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PixelOffsetMode.HighSpeed", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PixelOffsetMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PixelOffsetMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PixelOffsetMode.HighQuality", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PixelOffsetMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PixelOffsetMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PixelOffsetMode.None", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PixelOffsetMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PixelOffsetMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.PixelOffsetMode.Half", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PixelOffsetMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PixelOffsetMode.cs" } ], "DocsId": "T:System.Drawing.Drawing2D.PixelOffsetMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PixelOffsetMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/PixelOffsetMode.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Drawing2D.QualityMode.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/QualityMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/QualityMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.QualityMode.Invalid", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/QualityMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/QualityMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.QualityMode.Default", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/QualityMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/QualityMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.QualityMode.Low", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/QualityMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/QualityMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.QualityMode.High", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/QualityMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/QualityMode.cs" } ], "DocsId": "T:System.Drawing.Drawing2D.QualityMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/QualityMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/QualityMode.cs" }, { "Members": [ { "DocsId": "P:System.Drawing.Drawing2D.RegionData.Data", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/RegionData.cs#L10C26-L10C30" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/RegionData.cs#L10C26-L10C30" } ], "DocsId": "T:System.Drawing.Drawing2D.RegionData", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/RegionData.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/RegionData.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Drawing2D.SmoothingMode.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/SmoothingMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/SmoothingMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.SmoothingMode.Invalid", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/SmoothingMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/SmoothingMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.SmoothingMode.Default", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/SmoothingMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/SmoothingMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.SmoothingMode.HighSpeed", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/SmoothingMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/SmoothingMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.SmoothingMode.HighQuality", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/SmoothingMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/SmoothingMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.SmoothingMode.None", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/SmoothingMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/SmoothingMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.SmoothingMode.AntiAlias", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/SmoothingMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/SmoothingMode.cs" } ], "DocsId": "T:System.Drawing.Drawing2D.SmoothingMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/SmoothingMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/SmoothingMode.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Drawing2D.WarpMode.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/WarpMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/WarpMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.WarpMode.Perspective", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/WarpMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/WarpMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.WarpMode.Bilinear", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/WarpMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/WarpMode.cs" } ], "DocsId": "T:System.Drawing.Drawing2D.WarpMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/WarpMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/WarpMode.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Drawing2D.WrapMode.value__", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/WrapMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/WrapMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.WrapMode.Tile", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/WrapMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/WrapMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.WrapMode.TileFlipX", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/WrapMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/WrapMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.WrapMode.TileFlipY", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/WrapMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/WrapMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.WrapMode.TileFlipXY", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/WrapMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/WrapMode.cs" }, { "DocsId": "F:System.Drawing.Drawing2D.WrapMode.Clamp", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/WrapMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/WrapMode.cs" } ], "DocsId": "T:System.Drawing.Drawing2D.WrapMode", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Drawing2D/WrapMode.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Drawing2D/WrapMode.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.FontConverter.FontNameConverter.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L424C9-L427C10" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L424C9-L427C10" }, { "DocsId": "M:System.Drawing.FontConverter.FontNameConverter.System#IDisposable#Dispose", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L431C9-L431C10" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L431C9-L431C10" }, { "DocsId": "M:System.Drawing.FontConverter.FontNameConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L434C13-L434C85" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L434C13-L434C85" }, { "DocsId": "M:System.Drawing.FontConverter.FontNameConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L437C13-L437C116" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L437C13-L437C116" }, { "DocsId": "M:System.Drawing.FontConverter.FontNameConverter.GetStandardValues(System.ComponentModel.ITypeDescriptorContext)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L441C13-L449C57" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L441C13-L449C57" }, { "DocsId": "M:System.Drawing.FontConverter.FontNameConverter.GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L453C93-L453C98" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L453C93-L453C98" }, { "DocsId": "M:System.Drawing.FontConverter.FontNameConverter.GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L456C93-L456C97" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L456C93-L456C97" } ], "DocsId": "T:System.Drawing.FontConverter.FontNameConverter", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.FontConverter.FontUnitConverter.#ctor", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L489C38-L489C68" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L489C38-L489C68" }, { "DocsId": "M:System.Drawing.FontConverter.FontUnitConverter.GetStandardValues(System.ComponentModel.ITypeDescriptorContext)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L494C13-L503C27" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs#L494C13-L503C27" } ], "DocsId": "T:System.Drawing.FontConverter.FontUnitConverter", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/FontConverter.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Graphics.DrawImageAbort.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" }, { "DocsId": "M:System.Drawing.Graphics.DrawImageAbort.Invoke(System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" }, { "DocsId": "M:System.Drawing.Graphics.DrawImageAbort.BeginInvoke(System.IntPtr,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" }, { "DocsId": "M:System.Drawing.Graphics.DrawImageAbort.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" } ], "DocsId": "T:System.Drawing.Graphics.DrawImageAbort", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafileProc.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafileProc.Invoke(System.Drawing.Imaging.EmfPlusRecordType,System.Int32,System.Int32,System.IntPtr,System.Drawing.Imaging.PlayRecordCallback)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafileProc.BeginInvoke(System.Drawing.Imaging.EmfPlusRecordType,System.Int32,System.Int32,System.IntPtr,System.Drawing.Imaging.PlayRecordCallback,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" }, { "DocsId": "M:System.Drawing.Graphics.EnumerateMetafileProc.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" } ], "DocsId": "T:System.Drawing.Graphics.EnumerateMetafileProc", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Graphics.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Image.GetThumbnailImageAbort.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs" }, { "DocsId": "M:System.Drawing.Image.GetThumbnailImageAbort.Invoke", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs" }, { "DocsId": "M:System.Drawing.Image.GetThumbnailImageAbort.BeginInvoke(System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs" }, { "DocsId": "M:System.Drawing.Image.GetThumbnailImageAbort.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs" } ], "DocsId": "T:System.Drawing.Image.GetThumbnailImageAbort", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Image.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Image.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PaperSizeCollection.#ctor(System.Drawing.Printing.PaperSize[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs#L21C9-L21C72" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs#L21C9-L21C72" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PaperSizeCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs#L33C47-L33C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs#L33C47-L33C81" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PaperSizeCollection.System#Collections#ICollection#get_Count", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs#L35C34-L35C39" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs#L35C34-L35C39" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PaperSizeCollection.System#Collections#ICollection#get_IsSynchronized", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs#L37C44-L37C49" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs#L37C44-L37C49" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PaperSizeCollection.System#Collections#ICollection#get_SyncRoot", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs#L39C40-L39C44" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs#L39C40-L39C44" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PaperSizeCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs#L41C60-L41C110" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs#L41C60-L41C110" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PaperSizeCollection.CopyTo(System.Drawing.Printing.PaperSize[],System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs#L43C66-L43C121" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs#L43C66-L43C121" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PaperSizeCollection.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs#L45C52-L45C67" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs#L45C52-L45C67" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PaperSizeCollection.Add(System.Drawing.Printing.PaperSize)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs#L50C13-L54C26" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs#L50C13-L54C26" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.PaperSizeCollection.Count", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs#L26C29-L26C42" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs#L26C29-L26C42" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.PaperSizeCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs#L31C53-L31C66" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs#L31C53-L31C66" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.PaperSizeCollection.System#Collections#ICollection#Count", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs#L35C34-L35C39" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs#L35C34-L35C39" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.PaperSizeCollection.System#Collections#ICollection#IsSynchronized", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs#L37C44-L37C49" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs#L37C44-L37C49" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.PaperSizeCollection.System#Collections#ICollection#SyncRoot", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs#L39C40-L39C44" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs#L39C40-L39C44" } ], "DocsId": "T:System.Drawing.Printing.PrinterSettings.PaperSizeCollection", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSizeCollection.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PaperSourceCollection.#ctor(System.Drawing.Printing.PaperSource[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs#L18C9-L21C10" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs#L18C9-L21C10" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PaperSourceCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs#L33C47-L33C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs#L33C47-L33C81" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PaperSourceCollection.System#Collections#ICollection#get_Count", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs#L35C34-L35C39" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs#L35C34-L35C39" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PaperSourceCollection.System#Collections#ICollection#get_IsSynchronized", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs#L37C44-L37C49" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs#L37C44-L37C49" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PaperSourceCollection.System#Collections#ICollection#get_SyncRoot", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs#L39C40-L39C44" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs#L39C40-L39C44" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PaperSourceCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs#L41C60-L41C110" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs#L41C60-L41C110" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PaperSourceCollection.CopyTo(System.Drawing.Printing.PaperSource[],System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs#L43C70-L43C127" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs#L43C70-L43C127" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PaperSourceCollection.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs#L45C52-L45C67" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs#L45C52-L45C67" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PaperSourceCollection.Add(System.Drawing.Printing.PaperSource)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs#L50C13-L54C26" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs#L50C13-L54C26" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.PaperSourceCollection.Count", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs#L26C29-L26C42" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs#L26C29-L26C42" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.PaperSourceCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs#L31C55-L31C68" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs#L31C55-L31C68" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.PaperSourceCollection.System#Collections#ICollection#Count", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs#L35C34-L35C39" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs#L35C34-L35C39" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.PaperSourceCollection.System#Collections#ICollection#IsSynchronized", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs#L37C44-L37C49" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs#L37C44-L37C49" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.PaperSourceCollection.System#Collections#ICollection#SyncRoot", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs#L39C40-L39C44" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs#L39C40-L39C44" } ], "DocsId": "T:System.Drawing.Printing.PrinterSettings.PaperSourceCollection", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PaperSourceCollection.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PrinterResolutionCollection.#ctor(System.Drawing.Printing.PrinterResolution[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs#L18C9-L18C88" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs#L18C9-L18C88" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PrinterResolutionCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs#L30C47-L30C81" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs#L30C47-L30C81" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PrinterResolutionCollection.System#Collections#ICollection#get_Count", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs#L32C34-L32C39" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs#L32C34-L32C39" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PrinterResolutionCollection.System#Collections#ICollection#get_IsSynchronized", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs#L34C44-L34C49" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs#L34C44-L34C49" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PrinterResolutionCollection.System#Collections#ICollection#get_SyncRoot", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs#L36C40-L36C44" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs#L36C40-L36C44" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PrinterResolutionCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs#L38C60-L38C110" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs#L38C60-L38C110" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PrinterResolutionCollection.CopyTo(System.Drawing.Printing.PrinterResolution[],System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs#L40C82-L40C145" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs#L40C82-L40C145" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PrinterResolutionCollection.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs#L42C52-L42C67" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs#L42C52-L42C67" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.PrinterResolutionCollection.Add(System.Drawing.Printing.PrinterResolution)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs#L47C13-L51C26" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs#L47C13-L51C26" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.PrinterResolutionCollection.Count", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs#L23C29-L23C42" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs#L23C29-L23C42" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.PrinterResolutionCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs#L28C61-L28C74" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs#L28C61-L28C74" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.PrinterResolutionCollection.System#Collections#ICollection#Count", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs#L32C34-L32C39" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs#L32C34-L32C39" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.PrinterResolutionCollection.System#Collections#ICollection#IsSynchronized", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs#L34C44-L34C49" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs#L34C44-L34C49" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.PrinterResolutionCollection.System#Collections#ICollection#SyncRoot", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs#L36C40-L36C44" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs#L36C40-L36C44" } ], "DocsId": "T:System.Drawing.Printing.PrinterSettings.PrinterResolutionCollection", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.PrinterResolutionCollection.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.PrinterSettings.StringCollection.#ctor(System.String[])", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs#L18C9-L18C70" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs#L18C9-L18C70" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.StringCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs#L30C47-L30C83" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs#L30C47-L30C83" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.StringCollection.System#Collections#ICollection#get_Count", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs#L32C34-L32C39" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs#L32C34-L32C39" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.StringCollection.System#Collections#ICollection#get_IsSynchronized", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs#L34C44-L34C49" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs#L34C44-L34C49" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.StringCollection.System#Collections#ICollection#get_SyncRoot", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs#L36C40-L36C44" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs#L36C40-L36C44" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.StringCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs#L38C60-L38C101" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs#L38C60-L38C101" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.StringCollection.CopyTo(System.String[],System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs#L40C60-L40C103" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs#L40C60-L40C103" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.StringCollection.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs#L42C52-L42C67" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs#L42C52-L42C67" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.StringCollection.Add(System.String)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs#L47C13-L48C32" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs#L47C13-L48C32" }, { "DocsId": "M:System.Drawing.Printing.PrinterSettings.StringCollection.System#Collections#Generic#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs#L51C68-L51C89" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs#L51C68-L51C89" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.StringCollection.Count", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs#L23C29-L23C40" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs#L23C29-L23C40" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.StringCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs#L28C50-L28C62" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs#L28C50-L28C62" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.StringCollection.System#Collections#ICollection#Count", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs#L32C34-L32C39" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs#L32C34-L32C39" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.StringCollection.System#Collections#ICollection#IsSynchronized", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs#L34C44-L34C49" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs#L34C44-L34C49" }, { "DocsId": "P:System.Drawing.Printing.PrinterSettings.StringCollection.System#Collections#ICollection#SyncRoot", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs#L36C40-L36C44" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs#L36C40-L36C44" } ], "DocsId": "T:System.Drawing.Printing.PrinterSettings.StringCollection", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Printing/PrinterSettings.StringCollection.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Interop.LOGFONT.<_lfFaceName>e__FixedBuffer.FixedElementField", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" } ], "DocsId": "T:System.Drawing.Interop.LOGFONT.<_lfFaceName>e__FixedBuffer", - "SourceLink": "https://github.com/dotnet/winforms/blob/4146f2985a05e2ca803c9fa59aca74e969dd7452/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" + "SourceLink": "https://github.com/dotnet/winforms/blob/6629e6b7197c5a364ed4f43eeb315ad6071d531a/src/System.Drawing.Common/src/System/Drawing/Interop/LOGFONT.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/System.Formats.Cbor.json b/xml/SourceLinkInformation/net-9.0/System.Formats.Cbor.json index 72a1402236e..c20e49f952d 100644 --- a/xml/SourceLinkInformation/net-9.0/System.Formats.Cbor.json +++ b/xml/SourceLinkInformation/net-9.0/System.Formats.Cbor.json @@ -1,589 +1,588 @@ { "Assembly": "System.Formats.Cbor", - "GUID": "9988656E9341471D9BC3FBB35AC69696FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "C859B884961347F08D9E61179BA537C6FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "F:System.Formats.Cbor.CborReaderState.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReaderState.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReaderState.cs" }, { "DocsId": "F:System.Formats.Cbor.CborReaderState.Undefined", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReaderState.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReaderState.cs" }, { "DocsId": "F:System.Formats.Cbor.CborReaderState.UnsignedInteger", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReaderState.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReaderState.cs" }, { "DocsId": "F:System.Formats.Cbor.CborReaderState.NegativeInteger", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReaderState.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReaderState.cs" }, { "DocsId": "F:System.Formats.Cbor.CborReaderState.ByteString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReaderState.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReaderState.cs" }, { "DocsId": "F:System.Formats.Cbor.CborReaderState.StartIndefiniteLengthByteString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReaderState.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReaderState.cs" }, { "DocsId": "F:System.Formats.Cbor.CborReaderState.EndIndefiniteLengthByteString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReaderState.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReaderState.cs" }, { "DocsId": "F:System.Formats.Cbor.CborReaderState.TextString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReaderState.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReaderState.cs" }, { "DocsId": "F:System.Formats.Cbor.CborReaderState.StartIndefiniteLengthTextString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReaderState.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReaderState.cs" }, { "DocsId": "F:System.Formats.Cbor.CborReaderState.EndIndefiniteLengthTextString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReaderState.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReaderState.cs" }, { "DocsId": "F:System.Formats.Cbor.CborReaderState.StartArray", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReaderState.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReaderState.cs" }, { "DocsId": "F:System.Formats.Cbor.CborReaderState.EndArray", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReaderState.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReaderState.cs" }, { "DocsId": "F:System.Formats.Cbor.CborReaderState.StartMap", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReaderState.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReaderState.cs" }, { "DocsId": "F:System.Formats.Cbor.CborReaderState.EndMap", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReaderState.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReaderState.cs" }, { "DocsId": "F:System.Formats.Cbor.CborReaderState.Tag", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReaderState.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReaderState.cs" }, { "DocsId": "F:System.Formats.Cbor.CborReaderState.SimpleValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReaderState.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReaderState.cs" }, { "DocsId": "F:System.Formats.Cbor.CborReaderState.HalfPrecisionFloat", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReaderState.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReaderState.cs" }, { "DocsId": "F:System.Formats.Cbor.CborReaderState.SinglePrecisionFloat", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReaderState.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReaderState.cs" }, { "DocsId": "F:System.Formats.Cbor.CborReaderState.DoublePrecisionFloat", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReaderState.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReaderState.cs" }, { "DocsId": "F:System.Formats.Cbor.CborReaderState.Null", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReaderState.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReaderState.cs" }, { "DocsId": "F:System.Formats.Cbor.CborReaderState.Boolean", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReaderState.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReaderState.cs" }, { "DocsId": "F:System.Formats.Cbor.CborReaderState.Finished", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReaderState.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReaderState.cs" } ], "DocsId": "T:System.Formats.Cbor.CborReaderState", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReaderState.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReaderState.cs" }, { "Members": [ { "DocsId": "M:System.Formats.Cbor.CborReader.PeekState", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.PeekState.cs#L15C13-L20C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.PeekState.cs#L15C13-L20C33" }, { "DocsId": "M:System.Formats.Cbor.CborReader.SkipValue(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.SkipValue.cs#L20C13-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.SkipValue.cs#L20C13-L21C10" }, { "DocsId": "M:System.Formats.Cbor.CborReader.SkipToParent(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.SkipValue.cs#L33C13-L39C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.SkipValue.cs#L33C13-L39C10" }, { "DocsId": "M:System.Formats.Cbor.CborReader.ReadSingle", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.Simple.cs#L24C13-L48C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.Simple.cs#L24C13-L48C91" }, { "DocsId": "M:System.Formats.Cbor.CborReader.ReadDouble", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.Simple.cs#L65C13-L93C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.Simple.cs#L65C13-L93C91" }, { "DocsId": "M:System.Formats.Cbor.CborReader.ReadBoolean", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.Simple.cs#L109C13-L120C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.Simple.cs#L109C13-L120C27" }, { "DocsId": "M:System.Formats.Cbor.CborReader.ReadNull", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.Simple.cs#L134C13-L143C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.Simple.cs#L134C13-L143C90" }, { "DocsId": "M:System.Formats.Cbor.CborReader.ReadSimpleValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.Simple.cs#L159C13-L182C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.Simple.cs#L159C13-L182C97" }, { "DocsId": "M:System.Formats.Cbor.CborReader.ReadTag", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.Tag.cs#L22C13-L26C24" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.Tag.cs#L22C13-L26C24" }, { "DocsId": "M:System.Formats.Cbor.CborReader.PeekTag", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.Tag.cs#L39C37-L39C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.Tag.cs#L39C37-L39C59" }, { "DocsId": "M:System.Formats.Cbor.CborReader.ReadDateTimeOffset", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.Tag.cs#L57C13-L87C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.Tag.cs#L57C13-L87C10" }, { "DocsId": "M:System.Formats.Cbor.CborReader.ReadUnixTimeSeconds", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.Tag.cs#L105C13-L139C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.Tag.cs#L105C13-L139C10" }, { "DocsId": "M:System.Formats.Cbor.CborReader.ReadBigInteger", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.Tag.cs#L157C13-L186C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.Tag.cs#L157C13-L186C10" }, { "DocsId": "M:System.Formats.Cbor.CborReader.ReadDecimal", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.Tag.cs#L205C13-L267C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.Tag.cs#L205C13-L267C10" }, { "DocsId": "M:System.Formats.Cbor.CborReader.ReadStartArray", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.Array.cs#L18C13-L38C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.Array.cs#L18C13-L38C36" }, { "DocsId": "M:System.Formats.Cbor.CborReader.ReadEndArray", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.Array.cs#L51C13-L63C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.Array.cs#L51C13-L63C10" }, { "DocsId": "M:System.Formats.Cbor.CborReader.#ctor(System.ReadOnlyMemory{System.Byte},System.Formats.Cbor.CborConformanceMode,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.cs#L29C9-L64C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.cs#L29C9-L64C10" }, { "DocsId": "M:System.Formats.Cbor.CborReader.ReadEncodedValue(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.cs#L75C13-L81C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.cs#L75C13-L81C72" }, { "DocsId": "M:System.Formats.Cbor.CborReader.Reset(System.ReadOnlyMemory{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.cs#L93C13-L110C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.cs#L93C13-L110C10" }, { "DocsId": "M:System.Formats.Cbor.CborReader.ReadInt32", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.Integer.cs#L23C13-L26C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.Integer.cs#L23C13-L26C26" }, { "DocsId": "M:System.Formats.Cbor.CborReader.ReadUInt32", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.Integer.cs#L41C13-L44C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.Integer.cs#L41C13-L44C26" }, { "DocsId": "M:System.Formats.Cbor.CborReader.ReadInt64", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.Integer.cs#L58C13-L61C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.Integer.cs#L58C13-L61C26" }, { "DocsId": "M:System.Formats.Cbor.CborReader.ReadUInt64", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.Integer.cs#L76C13-L79C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.Integer.cs#L76C13-L79C26" }, { "DocsId": "M:System.Formats.Cbor.CborReader.ReadCborNegativeIntegerRepresentation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.Integer.cs#L98C13-L102C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.Integer.cs#L98C13-L102C26" }, { "DocsId": "M:System.Formats.Cbor.CborReader.ReadStartMap", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.Map.cs#L33C13-L63C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.Map.cs#L33C13-L63C27" }, { "DocsId": "M:System.Formats.Cbor.CborReader.ReadEndMap", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.Map.cs#L77C13-L95C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.Map.cs#L77C13-L95C10" }, { "DocsId": "M:System.Formats.Cbor.CborReader.ReadByteString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.String.cs#L29C13-L48C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.String.cs#L29C13-L48C27" }, { "DocsId": "M:System.Formats.Cbor.CborReader.TryReadByteString(System.Span{System.Byte},System.Int32@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.String.cs#L64C13-L91C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.String.cs#L64C13-L91C25" }, { "DocsId": "M:System.Formats.Cbor.CborReader.ReadDefiniteLengthByteString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.String.cs#L106C13-L120C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.String.cs#L106C13-L120C30" }, { "DocsId": "M:System.Formats.Cbor.CborReader.ReadStartIndefiniteLengthByteString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.String.cs#L134C13-L148C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.String.cs#L134C13-L148C10" }, { "DocsId": "M:System.Formats.Cbor.CborReader.ReadEndIndefiniteLengthByteString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.String.cs#L157C13-L161C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.String.cs#L157C13-L161C10" }, { "DocsId": "M:System.Formats.Cbor.CborReader.ReadTextString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.String.cs#L174C13-L204C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.String.cs#L174C13-L204C27" }, { "DocsId": "M:System.Formats.Cbor.CborReader.TryReadTextString(System.Span{System.Char},System.Int32@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.String.cs#L220C13-L251C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.String.cs#L220C13-L251C25" }, { "DocsId": "M:System.Formats.Cbor.CborReader.ReadDefiniteLengthTextStringBytes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.String.cs#L266C13-L287C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.String.cs#L266C13-L287C33" }, { "DocsId": "M:System.Formats.Cbor.CborReader.ReadStartIndefiniteLengthTextString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.String.cs#L301C13-L315C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.String.cs#L301C13-L315C10" }, { "DocsId": "M:System.Formats.Cbor.CborReader.ReadEndIndefiniteLengthTextString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.String.cs#L324C13-L328C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.String.cs#L324C13-L328C10" }, { "DocsId": "M:System.Formats.Cbor.CborReader.ReadHalf", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.Simple.netcoreapp.cs#L24C13-L41C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.Simple.netcoreapp.cs#L24C13-L41C91" }, { "DocsId": "P:System.Formats.Cbor.CborReader.ConformanceMode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.cs#L36C54-L36C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.cs#L36C54-L36C58" }, { "DocsId": "P:System.Formats.Cbor.CborReader.AllowMultipleRootLevelValues", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.cs#L40C52-L40C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.cs#L40C52-L40C56" }, { "DocsId": "P:System.Formats.Cbor.CborReader.CurrentDepth", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.cs#L44C36-L44C89" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.cs#L44C36-L44C89" }, { "DocsId": "P:System.Formats.Cbor.CborReader.BytesRemaining", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.cs#L48C38-L48C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.cs#L48C38-L48C60" } ], "DocsId": "T:System.Formats.Cbor.CborReader", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Reader/CborReader.cs" }, { "Members": [ { "DocsId": "M:System.Formats.Cbor.CborWriter.WriteStartArray(System.Nullable{System.Int32})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.Array.cs#L26C13-L34C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.Array.cs#L26C13-L34C10" }, { "DocsId": "M:System.Formats.Cbor.CborWriter.WriteEndArray", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.Array.cs#L42C13-L44C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.Array.cs#L42C13-L44C10" }, { "DocsId": "M:System.Formats.Cbor.CborWriter.WriteStartMap(System.Nullable{System.Int32})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.Map.cs#L37C13-L45C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.Map.cs#L37C13-L45C10" }, { "DocsId": "M:System.Formats.Cbor.CborWriter.WriteEndMap", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.Map.cs#L55C13-L62C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.Map.cs#L55C13-L62C10" }, { "DocsId": "M:System.Formats.Cbor.CborWriter.WriteSingle(System.Single)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.Simple.cs#L25C13-L34C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.Simple.cs#L25C13-L34C10" }, { "DocsId": "M:System.Formats.Cbor.CborWriter.WriteDouble(System.Double)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.Simple.cs#L45C13-L61C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.Simple.cs#L45C13-L61C10" }, { "DocsId": "M:System.Formats.Cbor.CborWriter.WriteBoolean(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.Simple.cs#L89C13-L90C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.Simple.cs#L89C13-L90C10" }, { "DocsId": "M:System.Formats.Cbor.CborWriter.WriteNull", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.Simple.cs#L100C13-L101C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.Simple.cs#L100C13-L101C10" }, { "DocsId": "M:System.Formats.Cbor.CborWriter.WriteSimpleValue(System.Formats.Cbor.CborSimpleValue)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.Simple.cs#L113C13-L131C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.Simple.cs#L113C13-L131C10" }, { "DocsId": "M:System.Formats.Cbor.CborWriter.WriteByteString(System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.String.cs#L27C13-L33C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.String.cs#L27C13-L33C10" }, { "DocsId": "M:System.Formats.Cbor.CborWriter.WriteByteString(System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.String.cs#L44C13-L59C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.String.cs#L44C13-L59C10" }, { "DocsId": "M:System.Formats.Cbor.CborWriter.WriteStartIndefiniteLengthByteString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.String.cs#L74C13-L90C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.String.cs#L74C13-L90C10" }, { "DocsId": "M:System.Formats.Cbor.CborWriter.WriteEndIndefiniteLengthByteString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.String.cs#L96C13-L98C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.String.cs#L96C13-L98C10" }, { "DocsId": "M:System.Formats.Cbor.CborWriter.WriteTextString(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.String.cs#L111C13-L117C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.String.cs#L111C13-L117C10" }, { "DocsId": "M:System.Formats.Cbor.CborWriter.WriteTextString(System.ReadOnlySpan{System.Char})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.String.cs#L129C13-L156C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.String.cs#L129C13-L156C10" }, { "DocsId": "M:System.Formats.Cbor.CborWriter.WriteStartIndefiniteLengthTextString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.String.cs#L171C13-L187C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.String.cs#L171C13-L187C10" }, { "DocsId": "M:System.Formats.Cbor.CborWriter.WriteEndIndefiniteLengthTextString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.String.cs#L193C13-L195C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.String.cs#L193C13-L195C10" }, { "DocsId": "M:System.Formats.Cbor.CborWriter.#ctor(System.Formats.Cbor.CborConformanceMode,System.Boolean,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.cs#L67C15-L69C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.cs#L67C15-L69C10" }, { "DocsId": "M:System.Formats.Cbor.CborWriter.#ctor(System.Formats.Cbor.CborConformanceMode,System.Boolean,System.Boolean,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.cs#L82C9-L101C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.cs#L82C9-L101C10" }, { "DocsId": "M:System.Formats.Cbor.CborWriter.Reset", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.cs#L106C13-L124C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.cs#L106C13-L124C10" }, { "DocsId": "M:System.Formats.Cbor.CborWriter.WriteEncodedValue(System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.cs#L133C13-L176C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.cs#L133C13-L176C10" }, { "DocsId": "M:System.Formats.Cbor.CborWriter.Encode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.cs#L181C35-L181C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.cs#L181C35-L181C62" }, { "DocsId": "M:System.Formats.Cbor.CborWriter.Encode(System.Span{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.cs#L190C13-L198C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.cs#L190C13-L198C36" }, { "DocsId": "M:System.Formats.Cbor.CborWriter.TryEncode(System.Span{System.Byte},System.Int32@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.cs#L208C13-L218C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.cs#L208C13-L218C25" }, { "DocsId": "M:System.Formats.Cbor.CborWriter.WriteInt32(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.Integer.cs#L19C46-L19C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.Integer.cs#L19C46-L19C63" }, { "DocsId": "M:System.Formats.Cbor.CborWriter.WriteInt64(System.Int64)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.Integer.cs#L30C13-L41C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.Integer.cs#L30C13-L41C10" }, { "DocsId": "M:System.Formats.Cbor.CborWriter.WriteUInt32(System.UInt32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.Integer.cs#L51C48-L51C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.Integer.cs#L51C48-L51C66" }, { "DocsId": "M:System.Formats.Cbor.CborWriter.WriteUInt64(System.UInt64)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.Integer.cs#L63C13-L65C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.Integer.cs#L63C13-L65C10" }, { "DocsId": "M:System.Formats.Cbor.CborWriter.WriteCborNegativeIntegerRepresentation(System.UInt64)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.Integer.cs#L81C13-L83C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.Integer.cs#L81C13-L83C10" }, { "DocsId": "M:System.Formats.Cbor.CborWriter.WriteTag(System.Formats.Cbor.CborTag)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.Tag.cs#L22C13-L29C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.Tag.cs#L22C13-L29C10" }, { "DocsId": "M:System.Formats.Cbor.CborWriter.WriteDateTimeOffset(System.DateTimeOffset)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.Tag.cs#L40C13-L51C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.Tag.cs#L40C13-L51C10" }, { "DocsId": "M:System.Formats.Cbor.CborWriter.WriteUnixTimeSeconds(System.Int64)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.Tag.cs#L62C13-L64C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.Tag.cs#L62C13-L64C10" }, { "DocsId": "M:System.Formats.Cbor.CborWriter.WriteUnixTimeSeconds(System.Double)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.Tag.cs#L76C13-L83C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.Tag.cs#L76C13-L83C10" }, { "DocsId": "M:System.Formats.Cbor.CborWriter.WriteBigInteger(System.Numerics.BigInteger)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.Tag.cs#L94C13-L100C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.Tag.cs#L94C13-L100C10" }, { "DocsId": "M:System.Formats.Cbor.CborWriter.WriteDecimal(System.Decimal)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.Tag.cs#L111C13-L135C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.Tag.cs#L111C13-L135C10" }, { "DocsId": "M:System.Formats.Cbor.CborWriter.WriteHalf(System.Half)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.Simple.netcoreapp.cs#L22C13-L34C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.Simple.netcoreapp.cs#L22C13-L34C10" }, { "DocsId": "P:System.Formats.Cbor.CborWriter.ConformanceMode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.cs#L37C54-L37C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.cs#L37C54-L37C58" }, { "DocsId": "P:System.Formats.Cbor.CborWriter.ConvertIndefiniteLengthEncodings", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.cs#L41C56-L41C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.cs#L41C56-L41C60" }, { "DocsId": "P:System.Formats.Cbor.CborWriter.AllowMultipleRootLevelValues", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.cs#L45C52-L45C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.cs#L45C52-L45C56" }, { "DocsId": "P:System.Formats.Cbor.CborWriter.CurrentDepth", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.cs#L49C36-L49C89" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.cs#L49C36-L49C89" }, { "DocsId": "P:System.Formats.Cbor.CborWriter.BytesWritten", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.cs#L53C36-L53C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.cs#L53C36-L53C43" }, { "DocsId": "P:System.Formats.Cbor.CborWriter.IsWriteCompleted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.cs#L57C41-L57C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.cs#L57C41-L57C87" } ], "DocsId": "T:System.Formats.Cbor.CborWriter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/Writer/CborWriter.cs" }, { "Members": [ { "DocsId": "F:System.Formats.Cbor.CborConformanceMode.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborConformanceLevel.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborConformanceLevel.cs" }, { "DocsId": "F:System.Formats.Cbor.CborConformanceMode.Lax", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborConformanceLevel.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborConformanceLevel.cs" }, { "DocsId": "F:System.Formats.Cbor.CborConformanceMode.Strict", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborConformanceLevel.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborConformanceLevel.cs" }, { "DocsId": "F:System.Formats.Cbor.CborConformanceMode.Canonical", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborConformanceLevel.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborConformanceLevel.cs" }, { "DocsId": "F:System.Formats.Cbor.CborConformanceMode.Ctap2Canonical", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborConformanceLevel.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborConformanceLevel.cs" } ], "DocsId": "T:System.Formats.Cbor.CborConformanceMode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborConformanceLevel.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborConformanceLevel.cs" }, { "Members": [ { "DocsId": "F:System.Formats.Cbor.CborTag.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" }, { "DocsId": "F:System.Formats.Cbor.CborTag.DateTimeString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" }, { "DocsId": "F:System.Formats.Cbor.CborTag.UnixTimeSeconds", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" }, { "DocsId": "F:System.Formats.Cbor.CborTag.UnsignedBigNum", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" }, { "DocsId": "F:System.Formats.Cbor.CborTag.NegativeBigNum", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" }, { "DocsId": "F:System.Formats.Cbor.CborTag.DecimalFraction", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" }, { "DocsId": "F:System.Formats.Cbor.CborTag.BigFloat", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" }, { "DocsId": "F:System.Formats.Cbor.CborTag.Base64UrlLaterEncoding", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" }, { "DocsId": "F:System.Formats.Cbor.CborTag.Base64StringLaterEncoding", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" }, { "DocsId": "F:System.Formats.Cbor.CborTag.Base16StringLaterEncoding", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" }, { "DocsId": "F:System.Formats.Cbor.CborTag.EncodedCborDataItem", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" }, { "DocsId": "F:System.Formats.Cbor.CborTag.Uri", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" }, { "DocsId": "F:System.Formats.Cbor.CborTag.Base64Url", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" }, { "DocsId": "F:System.Formats.Cbor.CborTag.Base64", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" }, { "DocsId": "F:System.Formats.Cbor.CborTag.Regex", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" }, { "DocsId": "F:System.Formats.Cbor.CborTag.MimeMessage", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" }, { "DocsId": "F:System.Formats.Cbor.CborTag.SelfDescribeCbor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" } ], "DocsId": "T:System.Formats.Cbor.CborTag", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" }, { "Members": [ { "DocsId": "F:System.Formats.Cbor.CborSimpleValue.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" }, { "DocsId": "F:System.Formats.Cbor.CborSimpleValue.False", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" }, { "DocsId": "F:System.Formats.Cbor.CborSimpleValue.True", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" }, { "DocsId": "F:System.Formats.Cbor.CborSimpleValue.Null", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" }, { "DocsId": "F:System.Formats.Cbor.CborSimpleValue.Undefined", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" } ], "DocsId": "T:System.Formats.Cbor.CborSimpleValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborTag.cs" }, { "Members": [ { "DocsId": "M:System.Formats.Cbor.CborContentException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborContentException.cs#L18C15-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborContentException.cs#L18C15-L21C10" }, { "DocsId": "M:System.Formats.Cbor.CborContentException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborContentException.cs#L30C15-L33C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborContentException.cs#L30C15-L33C10" }, { "DocsId": "M:System.Formats.Cbor.CborContentException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborContentException.cs#L45C15-L48C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborContentException.cs#L45C15-L48C10" } ], "DocsId": "T:System.Formats.Cbor.CborContentException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborContentException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Formats.Cbor/src/System/Formats/Cbor/CborContentException.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/System.IO.Hashing.json b/xml/SourceLinkInformation/net-9.0/System.IO.Hashing.json index 95d3ec022c9..e77dbfdbe02 100644 --- a/xml/SourceLinkInformation/net-9.0/System.IO.Hashing.json +++ b/xml/SourceLinkInformation/net-9.0/System.IO.Hashing.json @@ -1,393 +1,392 @@ { "Assembly": "System.IO.Hashing", - "GUID": "9110F06984EC4689AAD4D1C8EE3FB92AFFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "699309C64D2747C2AA6D9C4E5C30AA84FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:System.IO.Hashing.Crc32.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc32.cs#L32C9-L40C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc32.cs#L32C9-L40C10" }, { "DocsId": "M:System.IO.Hashing.Crc32.Append(System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc32.cs#L49C13-L50C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc32.cs#L49C13-L50C10" }, { "DocsId": "M:System.IO.Hashing.Crc32.Reset", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc32.cs#L57C13-L58C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc32.cs#L57C13-L58C10" }, { "DocsId": "M:System.IO.Hashing.Crc32.GetCurrentHashCore(System.Span{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc32.cs#L68C13-L69C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc32.cs#L68C13-L69C10" }, { "DocsId": "M:System.IO.Hashing.Crc32.GetHashAndResetCore(System.Span{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc32.cs#L77C13-L79C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc32.cs#L77C13-L79C10" }, { "DocsId": "M:System.IO.Hashing.Crc32.GetCurrentHashAsUInt32", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc32.cs#L84C49-L84C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc32.cs#L84C49-L84C54" }, { "DocsId": "M:System.IO.Hashing.Crc32.Hash(System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc32.cs#L96C13-L101C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc32.cs#L96C13-L101C57" }, { "DocsId": "M:System.IO.Hashing.Crc32.Hash(System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc32.cs#L111C13-L114C24" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc32.cs#L111C13-L114C24" }, { "DocsId": "M:System.IO.Hashing.Crc32.TryHash(System.ReadOnlySpan{System.Byte},System.Span{System.Byte},System.Int32@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc32.cs#L131C13-L140C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc32.cs#L131C13-L140C25" }, { "DocsId": "M:System.IO.Hashing.Crc32.Hash(System.ReadOnlySpan{System.Byte},System.Span{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc32.cs#L153C13-L160C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc32.cs#L153C13-L160C25" }, { "DocsId": "M:System.IO.Hashing.Crc32.HashToUInt32(System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc32.cs#L168C13-L168C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc32.cs#L168C13-L168C42" } ], "DocsId": "T:System.IO.Hashing.Crc32", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc32.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc32.cs" }, { "Members": [ { "DocsId": "M:System.IO.Hashing.Crc64.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc64.cs#L37C15-L39C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc64.cs#L37C15-L39C10" }, { "DocsId": "M:System.IO.Hashing.Crc64.Append(System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc64.cs#L48C13-L49C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc64.cs#L48C13-L49C10" }, { "DocsId": "M:System.IO.Hashing.Crc64.Reset", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc64.cs#L56C13-L57C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc64.cs#L56C13-L57C10" }, { "DocsId": "M:System.IO.Hashing.Crc64.GetCurrentHashCore(System.Span{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc64.cs#L66C13-L67C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc64.cs#L66C13-L67C10" }, { "DocsId": "M:System.IO.Hashing.Crc64.GetHashAndResetCore(System.Span{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc64.cs#L75C13-L77C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc64.cs#L75C13-L77C10" }, { "DocsId": "M:System.IO.Hashing.Crc64.GetCurrentHashAsUInt64", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc64.cs#L82C50-L82C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc64.cs#L82C50-L82C54" }, { "DocsId": "M:System.IO.Hashing.Crc64.Hash(System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc64.cs#L94C13-L99C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc64.cs#L94C13-L99C57" }, { "DocsId": "M:System.IO.Hashing.Crc64.Hash(System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc64.cs#L109C13-L112C24" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc64.cs#L109C13-L112C24" }, { "DocsId": "M:System.IO.Hashing.Crc64.TryHash(System.ReadOnlySpan{System.Byte},System.Span{System.Byte},System.Int32@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc64.cs#L129C13-L138C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc64.cs#L129C13-L138C25" }, { "DocsId": "M:System.IO.Hashing.Crc64.Hash(System.ReadOnlySpan{System.Byte},System.Span{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc64.cs#L151C13-L158C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc64.cs#L151C13-L158C25" }, { "DocsId": "M:System.IO.Hashing.Crc64.HashToUInt64(System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc64.cs#L166C13-L166C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc64.cs#L166C13-L166C41" } ], "DocsId": "T:System.IO.Hashing.Crc64", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc64.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/Crc64.cs" }, { "Members": [ { "DocsId": "M:System.IO.Hashing.NonCryptographicHashAlgorithm.#ctor(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/NonCryptographicHashAlgorithm.cs#L34C9-L40C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/NonCryptographicHashAlgorithm.cs#L34C9-L40C10" }, { "DocsId": "M:System.IO.Hashing.NonCryptographicHashAlgorithm.Append(System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/NonCryptographicHashAlgorithm.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/NonCryptographicHashAlgorithm.cs" }, { "DocsId": "M:System.IO.Hashing.NonCryptographicHashAlgorithm.Reset", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/NonCryptographicHashAlgorithm.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/NonCryptographicHashAlgorithm.cs" }, { "DocsId": "M:System.IO.Hashing.NonCryptographicHashAlgorithm.GetCurrentHashCore(System.Span{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/NonCryptographicHashAlgorithm.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/NonCryptographicHashAlgorithm.cs" }, { "DocsId": "M:System.IO.Hashing.NonCryptographicHashAlgorithm.Append(System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/NonCryptographicHashAlgorithm.cs#L86C13-L92C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/NonCryptographicHashAlgorithm.cs#L86C13-L92C10" }, { "DocsId": "M:System.IO.Hashing.NonCryptographicHashAlgorithm.Append(System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/NonCryptographicHashAlgorithm.cs#L105C13-L125C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/NonCryptographicHashAlgorithm.cs#L105C13-L125C10" }, { "DocsId": "M:System.IO.Hashing.NonCryptographicHashAlgorithm.AppendAsync(System.IO.Stream,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/NonCryptographicHashAlgorithm.cs#L145C13-L150C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/NonCryptographicHashAlgorithm.cs#L145C13-L150C63" }, { "DocsId": "M:System.IO.Hashing.NonCryptographicHashAlgorithm.GetCurrentHash", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/NonCryptographicHashAlgorithm.cs#L184C13-L186C24" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/NonCryptographicHashAlgorithm.cs#L184C13-L186C24" }, { "DocsId": "M:System.IO.Hashing.NonCryptographicHashAlgorithm.TryGetCurrentHash(System.Span{System.Byte},System.Int32@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/NonCryptographicHashAlgorithm.cs#L203C13-L211C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/NonCryptographicHashAlgorithm.cs#L203C13-L211C25" }, { "DocsId": "M:System.IO.Hashing.NonCryptographicHashAlgorithm.GetCurrentHash(System.Span{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/NonCryptographicHashAlgorithm.cs#L228C13-L234C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/NonCryptographicHashAlgorithm.cs#L228C13-L234C38" }, { "DocsId": "M:System.IO.Hashing.NonCryptographicHashAlgorithm.GetHashAndReset", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/NonCryptographicHashAlgorithm.cs#L245C13-L247C24" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/NonCryptographicHashAlgorithm.cs#L245C13-L247C24" }, { "DocsId": "M:System.IO.Hashing.NonCryptographicHashAlgorithm.TryGetHashAndReset(System.Span{System.Byte},System.Int32@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/NonCryptographicHashAlgorithm.cs#L265C13-L273C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/NonCryptographicHashAlgorithm.cs#L265C13-L273C25" }, { "DocsId": "M:System.IO.Hashing.NonCryptographicHashAlgorithm.GetHashAndReset(System.Span{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/NonCryptographicHashAlgorithm.cs#L290C13-L296C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/NonCryptographicHashAlgorithm.cs#L290C13-L296C38" }, { "DocsId": "M:System.IO.Hashing.NonCryptographicHashAlgorithm.GetHashAndResetCore(System.Span{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/NonCryptographicHashAlgorithm.cs#L326C13-L328C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/NonCryptographicHashAlgorithm.cs#L326C13-L328C10" }, { "DocsId": "M:System.IO.Hashing.NonCryptographicHashAlgorithm.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/NonCryptographicHashAlgorithm.cs#L343C13-L343C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/NonCryptographicHashAlgorithm.cs#L343C13-L343C74" }, { "DocsId": "P:System.IO.Hashing.NonCryptographicHashAlgorithm.HashLengthInBytes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/NonCryptographicHashAlgorithm.cs#L22C40-L22C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/NonCryptographicHashAlgorithm.cs#L22C40-L22C44" } ], "DocsId": "T:System.IO.Hashing.NonCryptographicHashAlgorithm", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/NonCryptographicHashAlgorithm.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/NonCryptographicHashAlgorithm.cs" }, { "Members": [ { "DocsId": "M:System.IO.Hashing.XxHash128.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash128.cs#L31C30-L33C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash128.cs#L31C30-L33C10" }, { "DocsId": "M:System.IO.Hashing.XxHash128.#ctor(System.Int64)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash128.cs#L36C39-L39C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash128.cs#L36C39-L39C10" }, { "DocsId": "M:System.IO.Hashing.XxHash128.Hash(System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash128.cs#L45C53-L45C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash128.cs#L45C53-L45C74" }, { "DocsId": "M:System.IO.Hashing.XxHash128.Hash(System.Byte[],System.Int64)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash128.cs#L55C13-L63C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash128.cs#L55C13-L63C63" }, { "DocsId": "M:System.IO.Hashing.XxHash128.Hash(System.ReadOnlySpan{System.Byte},System.Int64)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash128.cs#L72C13-L74C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash128.cs#L72C13-L74C27" }, { "DocsId": "M:System.IO.Hashing.XxHash128.Hash(System.ReadOnlySpan{System.Byte},System.Span{System.Byte},System.Int64)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash128.cs#L85C13-L90C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash128.cs#L85C13-L90C33" }, { "DocsId": "M:System.IO.Hashing.XxHash128.TryHash(System.ReadOnlySpan{System.Byte},System.Span{System.Byte},System.Int32@,System.Int64)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash128.cs#L101C13-L110C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash128.cs#L101C13-L110C26" }, { "DocsId": "M:System.IO.Hashing.XxHash128.HashToUInt128(System.ReadOnlySpan{System.Byte},System.Int64)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash128.cs#L121C13-L122C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash128.cs#L121C13-L122C57" }, { "DocsId": "M:System.IO.Hashing.XxHash128.Reset", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash128.cs#L153C13-L154C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash128.cs#L153C13-L154C10" }, { "DocsId": "M:System.IO.Hashing.XxHash128.Append(System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash128.cs#L160C13-L161C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash128.cs#L160C13-L161C10" }, { "DocsId": "M:System.IO.Hashing.XxHash128.GetCurrentHashCore(System.Span{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash128.cs#L167C13-L169C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash128.cs#L167C13-L169C10" }, { "DocsId": "M:System.IO.Hashing.XxHash128.GetCurrentHashAsUInt128", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash128.cs#L206C13-L207C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash128.cs#L206C13-L207C63" } ], "DocsId": "T:System.IO.Hashing.XxHash128", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash128.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash128.cs" }, { "Members": [ { "DocsId": "M:System.IO.Hashing.XxHash3.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash3.cs#L30C28-L32C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash3.cs#L30C28-L32C10" }, { "DocsId": "M:System.IO.Hashing.XxHash3.#ctor(System.Int64)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash3.cs#L35C37-L38C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash3.cs#L35C37-L38C10" }, { "DocsId": "M:System.IO.Hashing.XxHash3.Hash(System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash3.cs#L44C53-L44C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash3.cs#L44C53-L44C74" }, { "DocsId": "M:System.IO.Hashing.XxHash3.Hash(System.Byte[],System.Int64)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash3.cs#L54C13-L62C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash3.cs#L54C13-L62C63" }, { "DocsId": "M:System.IO.Hashing.XxHash3.Hash(System.ReadOnlySpan{System.Byte},System.Int64)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash3.cs#L71C13-L74C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash3.cs#L71C13-L74C27" }, { "DocsId": "M:System.IO.Hashing.XxHash3.Hash(System.ReadOnlySpan{System.Byte},System.Span{System.Byte},System.Int64)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash3.cs#L85C13-L90C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash3.cs#L85C13-L90C33" }, { "DocsId": "M:System.IO.Hashing.XxHash3.TryHash(System.ReadOnlySpan{System.Byte},System.Span{System.Byte},System.Int32@,System.Int64)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash3.cs#L101C13-L116C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash3.cs#L101C13-L116C26" }, { "DocsId": "M:System.IO.Hashing.XxHash3.HashToUInt64(System.ReadOnlySpan{System.Byte},System.Int64)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash3.cs#L126C13-L144C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash3.cs#L126C13-L144C74" }, { "DocsId": "M:System.IO.Hashing.XxHash3.Reset", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash3.cs#L151C13-L152C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash3.cs#L151C13-L152C10" }, { "DocsId": "M:System.IO.Hashing.XxHash3.Append(System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash3.cs#L158C13-L159C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash3.cs#L158C13-L159C10" }, { "DocsId": "M:System.IO.Hashing.XxHash3.GetCurrentHashCore(System.Span{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash3.cs#L165C13-L167C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash3.cs#L165C13-L167C10" }, { "DocsId": "M:System.IO.Hashing.XxHash3.GetCurrentHashAsUInt64", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash3.cs#L176C13-L196C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash3.cs#L176C13-L196C28" } ], "DocsId": "T:System.IO.Hashing.XxHash3", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash3.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash3.cs" }, { "Members": [ { "DocsId": "M:System.IO.Hashing.XxHash32.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash32.cs#L36C15-L38C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash32.cs#L36C15-L38C10" }, { "DocsId": "M:System.IO.Hashing.XxHash32.#ctor(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash32.cs#L48C15-L52C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash32.cs#L48C15-L52C10" }, { "DocsId": "M:System.IO.Hashing.XxHash32.Reset", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash32.cs#L59C13-L61C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash32.cs#L59C13-L61C10" }, { "DocsId": "M:System.IO.Hashing.XxHash32.Append(System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash32.cs#L74C13-L109C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash32.cs#L74C13-L109C10" }, { "DocsId": "M:System.IO.Hashing.XxHash32.GetCurrentHashCore(System.Span{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash32.cs#L117C13-L119C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash32.cs#L117C13-L119C10" }, { "DocsId": "M:System.IO.Hashing.XxHash32.GetCurrentHashAsUInt32", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash32.cs#L126C13-L134C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash32.cs#L126C13-L134C56" }, { "DocsId": "M:System.IO.Hashing.XxHash32.Hash(System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash32.cs#L147C13-L152C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash32.cs#L147C13-L152C57" }, { "DocsId": "M:System.IO.Hashing.XxHash32.Hash(System.Byte[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash32.cs#L166C13-L171C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash32.cs#L166C13-L171C63" }, { "DocsId": "M:System.IO.Hashing.XxHash32.Hash(System.ReadOnlySpan{System.Byte},System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash32.cs#L182C13-L185C24" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash32.cs#L182C13-L185C24" }, { "DocsId": "M:System.IO.Hashing.XxHash32.TryHash(System.ReadOnlySpan{System.Byte},System.Span{System.Byte},System.Int32@,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash32.cs#L203C13-L212C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash32.cs#L203C13-L212C25" }, { "DocsId": "M:System.IO.Hashing.XxHash32.Hash(System.ReadOnlySpan{System.Byte},System.Span{System.Byte},System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash32.cs#L226C13-L233C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash32.cs#L226C13-L233C29" }, { "DocsId": "M:System.IO.Hashing.XxHash32.HashToUInt32(System.ReadOnlySpan{System.Byte},System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash32.cs#L243C13-L252C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash32.cs#L243C13-L252C56" } ], "DocsId": "T:System.IO.Hashing.XxHash32", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash32.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash32.cs" }, { "Members": [ { "DocsId": "M:System.IO.Hashing.XxHash64.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash64.cs#L36C15-L38C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash64.cs#L36C15-L38C10" }, { "DocsId": "M:System.IO.Hashing.XxHash64.#ctor(System.Int64)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash64.cs#L48C15-L52C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash64.cs#L48C15-L52C10" }, { "DocsId": "M:System.IO.Hashing.XxHash64.Reset", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash64.cs#L59C13-L61C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash64.cs#L59C13-L61C10" }, { "DocsId": "M:System.IO.Hashing.XxHash64.Append(System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash64.cs#L74C13-L109C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash64.cs#L74C13-L109C10" }, { "DocsId": "M:System.IO.Hashing.XxHash64.GetCurrentHashCore(System.Span{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash64.cs#L117C13-L119C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash64.cs#L117C13-L119C10" }, { "DocsId": "M:System.IO.Hashing.XxHash64.GetCurrentHashAsUInt64", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash64.cs#L126C13-L134C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash64.cs#L126C13-L134C56" }, { "DocsId": "M:System.IO.Hashing.XxHash64.Hash(System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash64.cs#L147C13-L152C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash64.cs#L147C13-L152C57" }, { "DocsId": "M:System.IO.Hashing.XxHash64.Hash(System.Byte[],System.Int64)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash64.cs#L166C13-L171C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash64.cs#L166C13-L171C63" }, { "DocsId": "M:System.IO.Hashing.XxHash64.Hash(System.ReadOnlySpan{System.Byte},System.Int64)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash64.cs#L182C13-L185C24" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash64.cs#L182C13-L185C24" }, { "DocsId": "M:System.IO.Hashing.XxHash64.TryHash(System.ReadOnlySpan{System.Byte},System.Span{System.Byte},System.Int32@,System.Int64)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash64.cs#L203C13-L212C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash64.cs#L203C13-L212C25" }, { "DocsId": "M:System.IO.Hashing.XxHash64.Hash(System.ReadOnlySpan{System.Byte},System.Span{System.Byte},System.Int64)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash64.cs#L226C13-L233C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash64.cs#L226C13-L233C29" }, { "DocsId": "M:System.IO.Hashing.XxHash64.HashToUInt64(System.ReadOnlySpan{System.Byte},System.Int64)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash64.cs#L243C13-L252C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash64.cs#L243C13-L252C62" } ], "DocsId": "T:System.IO.Hashing.XxHash64", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash64.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Hashing/src/System/IO/Hashing/XxHash64.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/System.IO.Packaging.json b/xml/SourceLinkInformation/net-9.0/System.IO.Packaging.json index 0dbdd4b87c6..fa99e7966ab 100644 --- a/xml/SourceLinkInformation/net-9.0/System.IO.Packaging.json +++ b/xml/SourceLinkInformation/net-9.0/System.IO.Packaging.json @@ -1,629 +1,628 @@ { "Assembly": "System.IO.Packaging", - "GUID": "0F15DD1A852941FE98F2C3861AADDBFFFFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "C142E50D50124D01843C3683640A3262FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:System.IO.FileFormatException.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/FileFormatException.cs#L24C15-L25C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/FileFormatException.cs#L24C15-L25C12" }, { "DocsId": "M:System.IO.FileFormatException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/FileFormatException.cs#L33C15-L34C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/FileFormatException.cs#L33C15-L34C12" }, { "DocsId": "M:System.IO.FileFormatException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/FileFormatException.cs#L44C15-L45C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/FileFormatException.cs#L44C15-L45C12" }, { "DocsId": "M:System.IO.FileFormatException.#ctor(System.Uri)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/FileFormatException.cs#L56C15-L62C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/FileFormatException.cs#L56C15-L62C10" }, { "DocsId": "M:System.IO.FileFormatException.#ctor(System.Uri,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/FileFormatException.cs#L74C15-L77C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/FileFormatException.cs#L74C15-L77C10" }, { "DocsId": "M:System.IO.FileFormatException.#ctor(System.Uri,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/FileFormatException.cs#L90C15-L97C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/FileFormatException.cs#L90C15-L97C10" }, { "DocsId": "M:System.IO.FileFormatException.#ctor(System.Uri,System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/FileFormatException.cs#L111C15-L114C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/FileFormatException.cs#L111C15-L114C10" }, { "DocsId": "M:System.IO.FileFormatException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/FileFormatException.cs#L120C91-L125C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/FileFormatException.cs#L120C91-L125C10" }, { "DocsId": "M:System.IO.FileFormatException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/FileFormatException.cs#L138C13-L140C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/FileFormatException.cs#L138C13-L140C10" }, { "DocsId": "P:System.IO.FileFormatException.SourceUri", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/FileFormatException.cs#L155C17-L155C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/FileFormatException.cs#L155C17-L155C35" } ], "DocsId": "T:System.IO.FileFormatException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/FileFormatException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/FileFormatException.cs" }, { "Members": [ { "DocsId": "F:System.IO.Packaging.CompressionOption.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/CompressionOption.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/CompressionOption.cs" }, { "DocsId": "F:System.IO.Packaging.CompressionOption.NotCompressed", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/CompressionOption.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/CompressionOption.cs" }, { "DocsId": "F:System.IO.Packaging.CompressionOption.Normal", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/CompressionOption.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/CompressionOption.cs" }, { "DocsId": "F:System.IO.Packaging.CompressionOption.Maximum", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/CompressionOption.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/CompressionOption.cs" }, { "DocsId": "F:System.IO.Packaging.CompressionOption.Fast", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/CompressionOption.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/CompressionOption.cs" }, { "DocsId": "F:System.IO.Packaging.CompressionOption.SuperFast", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/CompressionOption.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/CompressionOption.cs" } ], "DocsId": "T:System.IO.Packaging.CompressionOption", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/CompressionOption.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/CompressionOption.cs" }, { "Members": [ { "DocsId": "F:System.IO.Packaging.EncryptionOption.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/EncryptionOption.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/EncryptionOption.cs" }, { "DocsId": "F:System.IO.Packaging.EncryptionOption.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/EncryptionOption.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/EncryptionOption.cs" }, { "DocsId": "F:System.IO.Packaging.EncryptionOption.RightsManagement", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/EncryptionOption.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/EncryptionOption.cs" } ], "DocsId": "T:System.IO.Packaging.EncryptionOption", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/EncryptionOption.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/EncryptionOption.cs" }, { "Members": [ { "DocsId": "M:System.IO.Packaging.Package.#ctor(System.IO.FileAccess)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L29C9-L39C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L29C9-L39C10" }, { "DocsId": "M:System.IO.Packaging.Package.Open(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L94C13-L94C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L94C13-L94C91" }, { "DocsId": "M:System.IO.Packaging.Package.Open(System.String,System.IO.FileMode)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L110C13-L110C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L110C13-L110C85" }, { "DocsId": "M:System.IO.Packaging.Package.Open(System.String,System.IO.FileMode,System.IO.FileAccess)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L127C13-L127C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L127C13-L127C79" }, { "DocsId": "M:System.IO.Packaging.Package.Open(System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L147C13-L147C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L147C13-L147C77" }, { "DocsId": "M:System.IO.Packaging.Package.Open(System.IO.Stream,System.IO.FileMode)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L166C13-L166C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L166C13-L166C67" }, { "DocsId": "M:System.IO.Packaging.Package.CreatePart(System.Uri,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L189C13-L189C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L189C13-L189C86" }, { "DocsId": "M:System.IO.Packaging.Package.CreatePart(System.Uri,System.String,System.IO.Packaging.CompressionOption)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L214C13-L242C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L214C13-L242C30" }, { "DocsId": "M:System.IO.Packaging.Package.GetPart(System.Uri)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L261C13-L265C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L261C13-L265C37" }, { "DocsId": "M:System.IO.Packaging.Package.PartExists(System.Uri)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L284C13-L291C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L284C13-L291C59" }, { "DocsId": "M:System.IO.Packaging.Package.DeletePart(System.Uri)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L309C13-L375C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L309C13-L375C10" }, { "DocsId": "M:System.IO.Packaging.Package.GetParts", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L385C13-L432C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L385C13-L432C36" }, { "DocsId": "M:System.IO.Packaging.Package.System#IDisposable#Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L447C13-L479C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L447C13-L479C10" }, { "DocsId": "M:System.IO.Packaging.Package.Close", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L491C13-L492C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L491C13-L492C10" }, { "DocsId": "M:System.IO.Packaging.Package.Flush", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L502C13-L524C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L502C13-L524C10" }, { "DocsId": "M:System.IO.Packaging.Package.CreateRelationship(System.Uri,System.IO.Packaging.TargetMode,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L547C13-L547C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L547C13-L547C86" }, { "DocsId": "M:System.IO.Packaging.Package.CreateRelationship(System.Uri,System.IO.Packaging.TargetMode,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L571C13-L575C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L571C13-L575C84" }, { "DocsId": "M:System.IO.Packaging.Package.DeleteRelationship(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L590C13-L600C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L590C13-L600C10" }, { "DocsId": "M:System.IO.Packaging.Package.GetRelationships", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L613C13-L613C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L613C13-L613C49" }, { "DocsId": "M:System.IO.Packaging.Package.GetRelationshipsByType(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L631C13-L639C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L631C13-L639C61" }, { "DocsId": "M:System.IO.Packaging.Package.GetRelationship(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L657C13-L661C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L657C13-L661C45" }, { "DocsId": "M:System.IO.Packaging.Package.RelationshipExists(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L678C13-L678C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L678C13-L678C56" }, { "DocsId": "M:System.IO.Packaging.Package.CreatePartCore(System.Uri,System.String,System.IO.Packaging.CompressionOption)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs" }, { "DocsId": "M:System.IO.Packaging.Package.GetPartCore(System.Uri)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs" }, { "DocsId": "M:System.IO.Packaging.Package.DeletePartCore(System.Uri)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs" }, { "DocsId": "M:System.IO.Packaging.Package.GetPartsCore", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs" }, { "DocsId": "M:System.IO.Packaging.Package.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L736C13-L753C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L736C13-L753C10" }, { "DocsId": "M:System.IO.Packaging.Package.FlushCore", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs" }, { "DocsId": "M:System.IO.Packaging.Package.Open(System.String,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L824C13-L872C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L824C13-L872C28" }, { "DocsId": "M:System.IO.Packaging.Package.Open(System.IO.Stream,System.IO.FileMode,System.IO.FileAccess)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L888C13-L917C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L888C13-L917C28" }, { "DocsId": "P:System.IO.Packaging.Package.FileOpenAccess", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L55C17-L56C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L55C17-L56C40" }, { "DocsId": "P:System.IO.Packaging.Package.PackageProperties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L70C17-L72C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs#L70C17-L72C84" } ], "DocsId": "T:System.IO.Packaging.Package", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/Package.cs" }, { "Members": [ { "DocsId": "M:System.IO.Packaging.PackagePart.#ctor(System.IO.Packaging.Package,System.Uri)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L40C15-L42C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L40C15-L42C10" }, { "DocsId": "M:System.IO.Packaging.PackagePart.#ctor(System.IO.Packaging.Package,System.Uri,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L68C15-L70C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L68C15-L70C10" }, { "DocsId": "M:System.IO.Packaging.PackagePart.#ctor(System.IO.Packaging.Package,System.Uri,System.String,System.IO.Packaging.CompressionOption)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L804C9-L127C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L804C9-L127C10" }, { "DocsId": "M:System.IO.Packaging.PackagePart.GetContentTypeCore", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L252C13-L252C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L252C13-L252C82" }, { "DocsId": "M:System.IO.Packaging.PackagePart.GetStream", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L273C13-L274C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L273C13-L274C80" }, { "DocsId": "M:System.IO.Packaging.PackagePart.GetStream(System.IO.FileMode)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L295C13-L296C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L295C13-L296C63" }, { "DocsId": "M:System.IO.Packaging.PackagePart.GetStream(System.IO.FileMode,System.IO.FileAccess)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L319C13-L351C22" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L319C13-L351C22" }, { "DocsId": "M:System.IO.Packaging.PackagePart.GetStreamCore(System.IO.FileMode,System.IO.FileAccess)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs" }, { "DocsId": "M:System.IO.Packaging.PackagePart.CreateRelationship(System.Uri,System.IO.Packaging.TargetMode,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L384C13-L384C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L384C13-L384C86" }, { "DocsId": "M:System.IO.Packaging.PackagePart.CreateRelationship(System.Uri,System.IO.Packaging.TargetMode,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L410C13-L414C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L410C13-L414C84" }, { "DocsId": "M:System.IO.Packaging.PackagePart.DeleteRelationship(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L430C13-L440C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L430C13-L440C10" }, { "DocsId": "M:System.IO.Packaging.PackagePart.GetRelationships", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L455C13-L455C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L455C13-L455C49" }, { "DocsId": "M:System.IO.Packaging.PackagePart.GetRelationshipsByType(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L474C13-L482C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L474C13-L482C61" }, { "DocsId": "M:System.IO.Packaging.PackagePart.GetRelationship(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L501C13-L505C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L501C13-L505C45" }, { "DocsId": "M:System.IO.Packaging.PackagePart.RelationshipExists(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L523C13-L523C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L523C13-L523C56" }, { "DocsId": "P:System.IO.Packaging.PackagePart.Uri", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L144C17-L145C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L144C17-L145C29" }, { "DocsId": "P:System.IO.Packaging.PackagePart.ContentType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L168C17-L193C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L168C17-L193C48" }, { "DocsId": "P:System.IO.Packaging.PackagePart.Package", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L209C17-L210C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L209C17-L210C35" }, { "DocsId": "P:System.IO.Packaging.PackagePart.CompressionOption", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L224C17-L225C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs#L224C17-L225C43" } ], "DocsId": "T:System.IO.Packaging.PackagePart", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePart.cs" }, { "Members": [ { "DocsId": "M:System.IO.Packaging.PackagePartCollection.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePartCollection.cs#L25C13-L25C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePartCollection.cs#L25C13-L25C36" }, { "DocsId": "M:System.IO.Packaging.PackagePartCollection.System#Collections#Generic#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePartCollection.cs#L36C13-L36C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePartCollection.cs#L36C13-L36C36" }, { "DocsId": "M:System.IO.Packaging.PackagePartCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePartCollection.cs#L46C13-L46C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePartCollection.cs#L46C13-L46C53" } ], "DocsId": "T:System.IO.Packaging.PackagePartCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePartCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackagePartCollection.cs" }, { "Members": [ { "DocsId": "M:System.IO.Packaging.PackageProperties.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs#L43C13-L46C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs#L43C13-L46C10" }, { "DocsId": "M:System.IO.Packaging.PackageProperties.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs#L54C9-L54C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs#L54C9-L54C10" }, { "DocsId": "M:System.IO.Packaging.PackageProperties.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" }, { "DocsId": "P:System.IO.Packaging.PackageProperties.Title", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" }, { "DocsId": "P:System.IO.Packaging.PackageProperties.Subject", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" }, { "DocsId": "P:System.IO.Packaging.PackageProperties.Creator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" }, { "DocsId": "P:System.IO.Packaging.PackageProperties.Keywords", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" }, { "DocsId": "P:System.IO.Packaging.PackageProperties.Description", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" }, { "DocsId": "P:System.IO.Packaging.PackageProperties.LastModifiedBy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" }, { "DocsId": "P:System.IO.Packaging.PackageProperties.Revision", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" }, { "DocsId": "P:System.IO.Packaging.PackageProperties.LastPrinted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" }, { "DocsId": "P:System.IO.Packaging.PackageProperties.Created", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" }, { "DocsId": "P:System.IO.Packaging.PackageProperties.Modified", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" }, { "DocsId": "P:System.IO.Packaging.PackageProperties.Category", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" }, { "DocsId": "P:System.IO.Packaging.PackageProperties.Identifier", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" }, { "DocsId": "P:System.IO.Packaging.PackageProperties.ContentType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" }, { "DocsId": "P:System.IO.Packaging.PackageProperties.Language", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" }, { "DocsId": "P:System.IO.Packaging.PackageProperties.Version", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" }, { "DocsId": "P:System.IO.Packaging.PackageProperties.ContentStatus", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" } ], "DocsId": "T:System.IO.Packaging.PackageProperties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageProperties.cs" }, { "Members": [ { "DocsId": "P:System.IO.Packaging.PackageRelationship.SourceUri", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationship.cs#L32C17-L35C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationship.cs#L32C17-L35C40" }, { "DocsId": "P:System.IO.Packaging.PackageRelationship.TargetUri", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationship.cs#L47C17-L47C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationship.cs#L47C17-L47C35" }, { "DocsId": "P:System.IO.Packaging.PackageRelationship.RelationshipType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationship.cs#L59C17-L59C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationship.cs#L59C17-L59C42" }, { "DocsId": "P:System.IO.Packaging.PackageRelationship.TargetMode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationship.cs#L71C17-L71C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationship.cs#L71C17-L71C36" }, { "DocsId": "P:System.IO.Packaging.PackageRelationship.Id", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationship.cs#L83C17-L83C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationship.cs#L83C17-L83C28" }, { "DocsId": "P:System.IO.Packaging.PackageRelationship.Package", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationship.cs#L96C17-L96C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationship.cs#L96C17-L96C33" } ], "DocsId": "T:System.IO.Packaging.PackageRelationship", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationship.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationship.cs" }, { "Members": [ { "DocsId": "M:System.IO.Packaging.PackageRelationshipCollection.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationshipCollection.cs#L27C13-L27C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationshipCollection.cs#L27C13-L27C36" }, { "DocsId": "M:System.IO.Packaging.PackageRelationshipCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationshipCollection.cs#L37C13-L42C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationshipCollection.cs#L37C13-L42C81" } ], "DocsId": "T:System.IO.Packaging.PackageRelationshipCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationshipCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationshipCollection.cs" }, { "Members": [ { "DocsId": "M:System.IO.Packaging.PackageRelationshipSelector.#ctor(System.Uri,System.IO.Packaging.PackageRelationshipSelectorType,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationshipSelector.cs#L31C9-L59C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationshipSelector.cs#L31C9-L59C10" }, { "DocsId": "M:System.IO.Packaging.PackageRelationshipSelector.Select(System.IO.Packaging.Package)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationshipSelector.cs#L117C13-L166C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationshipSelector.cs#L117C13-L166C34" }, { "DocsId": "P:System.IO.Packaging.PackageRelationshipSelector.SourceUri", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationshipSelector.cs#L73C17-L73C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationshipSelector.cs#L73C17-L73C35" }, { "DocsId": "P:System.IO.Packaging.PackageRelationshipSelector.SelectorType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationshipSelector.cs#L86C17-L86C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationshipSelector.cs#L86C17-L86C38" }, { "DocsId": "P:System.IO.Packaging.PackageRelationshipSelector.SelectionCriteria", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationshipSelector.cs#L99C17-L99C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationshipSelector.cs#L99C17-L99C43" } ], "DocsId": "T:System.IO.Packaging.PackageRelationshipSelector", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationshipSelector.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationshipSelector.cs" }, { "Members": [ { "DocsId": "F:System.IO.Packaging.PackageRelationshipSelectorType.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationshipSelectorType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationshipSelectorType.cs" }, { "DocsId": "F:System.IO.Packaging.PackageRelationshipSelectorType.Id", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationshipSelectorType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationshipSelectorType.cs" }, { "DocsId": "F:System.IO.Packaging.PackageRelationshipSelectorType.Type", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationshipSelectorType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationshipSelectorType.cs" } ], "DocsId": "T:System.IO.Packaging.PackageRelationshipSelectorType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationshipSelectorType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackageRelationshipSelectorType.cs" }, { "Members": [ { "DocsId": "M:System.IO.Packaging.PackUriHelper.CreatePartUri(System.Uri)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.cs#L38C13-L59C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.cs#L38C13-L59C51" }, { "DocsId": "M:System.IO.Packaging.PackUriHelper.ResolvePartUri(System.Uri,System.Uri)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.cs#L81C13-L100C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.cs#L81C13-L100C72" }, { "DocsId": "M:System.IO.Packaging.PackUriHelper.GetRelativeUri(System.Uri,System.Uri)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.cs#L113C13-L125C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.cs#L113C13-L125C65" }, { "DocsId": "M:System.IO.Packaging.PackUriHelper.GetNormalizedPartUri(System.Uri)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.cs#L137C13-L144C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.cs#L137C13-L144C66" }, { "DocsId": "M:System.IO.Packaging.PackUriHelper.ComparePartUri(System.Uri,System.Uri)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.cs#L160C13-L170C109" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.cs#L160C13-L170C109" }, { "DocsId": "M:System.IO.Packaging.PackUriHelper.IsRelationshipPartUri(System.Uri)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.cs#L185C13-L193C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.cs#L185C13-L193C70" }, { "DocsId": "M:System.IO.Packaging.PackUriHelper.GetRelationshipPartUri(System.Uri)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.cs#L211C13-L245C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.cs#L211C13-L245C76" }, { "DocsId": "M:System.IO.Packaging.PackUriHelper.GetSourcePartUriFromRelationshipPartUri(System.Uri)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.cs#L267C13-L307C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.cs#L267C13-L307C77" }, { "DocsId": "M:System.IO.Packaging.PackUriHelper.Create(System.Uri)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.PackUriScheme.cs#L33C13-L33C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.PackUriScheme.cs#L33C13-L33C51" }, { "DocsId": "M:System.IO.Packaging.PackUriHelper.Create(System.Uri,System.Uri)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.PackUriScheme.cs#L51C13-L51C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.PackUriScheme.cs#L51C13-L51C54" }, { "DocsId": "M:System.IO.Packaging.PackUriHelper.Create(System.Uri,System.Uri,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.PackUriScheme.cs#L73C13-L118C100" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.PackUriScheme.cs#L73C13-L118C100" }, { "DocsId": "M:System.IO.Packaging.PackUriHelper.GetPackageUri(System.Uri)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.PackUriScheme.cs#L134C13-L136C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.PackUriScheme.cs#L134C13-L136C31" }, { "DocsId": "M:System.IO.Packaging.PackUriHelper.GetPartUri(System.Uri)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.PackUriScheme.cs#L157C13-L159C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.PackUriScheme.cs#L157C13-L159C28" }, { "DocsId": "M:System.IO.Packaging.PackUriHelper.ComparePackUri(System.Uri,System.Uri)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.PackUriScheme.cs#L177C13-L203C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.PackUriScheme.cs#L177C13-L203C38" }, { "DocsId": "F:System.IO.Packaging.PackUriHelper.UriSchemePack", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.cs" } ], "DocsId": "T:System.IO.Packaging.PackUriHelper", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/PackUriHelper.cs" }, { "Members": [ { "DocsId": "F:System.IO.Packaging.TargetMode.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/TargetMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/TargetMode.cs" }, { "DocsId": "F:System.IO.Packaging.TargetMode.Internal", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/TargetMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/TargetMode.cs" }, { "DocsId": "F:System.IO.Packaging.TargetMode.External", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/TargetMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/TargetMode.cs" } ], "DocsId": "T:System.IO.Packaging.TargetMode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/TargetMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/TargetMode.cs" }, { "Members": [ { "DocsId": "M:System.IO.Packaging.ZipPackage.CreatePartCore(System.Uri,System.String,System.IO.Packaging.CompressionOption)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/ZipPackage.cs#L41C13-L63C179" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/ZipPackage.cs#L41C13-L63C179" }, { "DocsId": "M:System.IO.Packaging.ZipPackage.GetPartCore(System.Uri)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/ZipPackage.cs#L93C13-L93C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/ZipPackage.cs#L93C13-L93C25" }, { "DocsId": "M:System.IO.Packaging.ZipPackage.DeletePartCore(System.Uri)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/ZipPackage.cs#L108C13-L118C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/ZipPackage.cs#L108C13-L118C10" }, { "DocsId": "M:System.IO.Packaging.ZipPackage.GetPartsCore", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/ZipPackage.cs#L145C13-L183C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/ZipPackage.cs#L145C13-L183C36" }, { "DocsId": "M:System.IO.Packaging.ZipPackage.FlushCore", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/ZipPackage.cs#L196C13-L197C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/ZipPackage.cs#L196C13-L197C10" }, { "DocsId": "M:System.IO.Packaging.ZipPackage.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/ZipPackage.cs#L207C17-L225C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/ZipPackage.cs#L207C17-L225C10" } ], "DocsId": "T:System.IO.Packaging.ZipPackage", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/ZipPackage.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/ZipPackage.cs" }, { "Members": [ { "DocsId": "M:System.IO.Packaging.ZipPackagePart.GetStreamCore(System.IO.FileMode,System.IO.FileAccess)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/ZipPackagePart.cs#L27C13-L45C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/ZipPackagePart.cs#L27C13-L45C25" } ], "DocsId": "T:System.IO.Packaging.ZipPackagePart", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Packaging/src/System/IO/Packaging/ZipPackagePart.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Packaging/src/System/IO/Packaging/ZipPackagePart.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/System.IO.Pipelines.json b/xml/SourceLinkInformation/net-9.0/System.IO.Pipelines.json index 252ed2f6f64..67d93984fb9 100644 --- a/xml/SourceLinkInformation/net-9.0/System.IO.Pipelines.json +++ b/xml/SourceLinkInformation/net-9.0/System.IO.Pipelines.json @@ -1,353 +1,352 @@ { "Assembly": "System.IO.Pipelines", - "GUID": "868C2B4670A947FCAEB8BED95FB2333FFFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "B166FF838FFD4EEB9D9DD1E5656162F1FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:System.IO.Pipelines.FlushResult.#ctor(System.Boolean,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/FlushResult.cs#L16C13-L27C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/FlushResult.cs#L16C13-L27C10" }, { "DocsId": "P:System.IO.Pipelines.FlushResult.IsCanceled", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/FlushResult.cs#L31C35-L31C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/FlushResult.cs#L31C35-L31C77" }, { "DocsId": "P:System.IO.Pipelines.FlushResult.IsCompleted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/FlushResult.cs#L35C36-L35C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/FlushResult.cs#L35C36-L35C79" } ], "DocsId": "T:System.IO.Pipelines.FlushResult", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/FlushResult.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/FlushResult.cs" }, { "Members": [ { "DocsId": "P:System.IO.Pipelines.IDuplexPipe.Input", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/IDuplexPipe.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/IDuplexPipe.cs" }, { "DocsId": "P:System.IO.Pipelines.IDuplexPipe.Output", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/IDuplexPipe.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/IDuplexPipe.cs" } ], "DocsId": "T:System.IO.Pipelines.IDuplexPipe", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/IDuplexPipe.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/IDuplexPipe.cs" }, { "Members": [ { "DocsId": "M:System.IO.Pipelines.Pipe.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/Pipe.cs#L87C25-L89C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/Pipe.cs#L87C25-L89C10" }, { "DocsId": "M:System.IO.Pipelines.Pipe.#ctor(System.IO.Pipelines.PipeOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/Pipe.cs#L35C9-L111C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/Pipe.cs#L35C9-L111C10" }, { "DocsId": "M:System.IO.Pipelines.Pipe.Reset", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/Pipe.cs#L1178C13-L1188C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/Pipe.cs#L1178C13-L1188C10" }, { "DocsId": "P:System.IO.Pipelines.Pipe.Reader", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/Pipe.cs#L1169C37-L1169C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/Pipe.cs#L1169C37-L1169C44" }, { "DocsId": "P:System.IO.Pipelines.Pipe.Writer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/Pipe.cs#L1173C37-L1173C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/Pipe.cs#L1173C37-L1173C44" } ], "DocsId": "T:System.IO.Pipelines.Pipe", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/Pipe.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/Pipe.cs" }, { "Members": [ { "DocsId": "M:System.IO.Pipelines.PipeOptions.#ctor(System.Buffers.MemoryPool{System.Byte},System.IO.Pipelines.PipeScheduler,System.IO.Pipelines.PipeScheduler,System.Int64,System.Int64,System.Int32,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeOptions.cs#L26C9-L86C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeOptions.cs#L26C9-L86C10" }, { "DocsId": "P:System.IO.Pipelines.PipeOptions.Default", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeOptions.cs#L16C45-L16C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeOptions.cs#L16C45-L16C49" }, { "DocsId": "P:System.IO.Pipelines.PipeOptions.UseSynchronizationContext", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeOptions.cs#L90C49-L90C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeOptions.cs#L90C49-L90C53" }, { "DocsId": "P:System.IO.Pipelines.PipeOptions.PauseWriterThreshold", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeOptions.cs#L94C44-L94C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeOptions.cs#L94C44-L94C48" }, { "DocsId": "P:System.IO.Pipelines.PipeOptions.ResumeWriterThreshold", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeOptions.cs#L98C45-L98C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeOptions.cs#L98C45-L98C49" }, { "DocsId": "P:System.IO.Pipelines.PipeOptions.MinimumSegmentSize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeOptions.cs#L102C41-L102C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeOptions.cs#L102C41-L102C45" }, { "DocsId": "P:System.IO.Pipelines.PipeOptions.WriterScheduler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeOptions.cs#L106C48-L106C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeOptions.cs#L106C48-L106C52" }, { "DocsId": "P:System.IO.Pipelines.PipeOptions.ReaderScheduler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeOptions.cs#L110C48-L110C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeOptions.cs#L110C48-L110C52" }, { "DocsId": "P:System.IO.Pipelines.PipeOptions.Pool", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeOptions.cs#L114C40-L114C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeOptions.cs#L114C40-L114C44" } ], "DocsId": "T:System.IO.Pipelines.PipeOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeOptions.cs" }, { "Members": [ { "DocsId": "M:System.IO.Pipelines.PipeReader.TryRead(System.IO.Pipelines.ReadResult@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeReader.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeReader.cs" }, { "DocsId": "M:System.IO.Pipelines.PipeReader.ReadAsync(System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeReader.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeReader.cs" }, { "DocsId": "M:System.IO.Pipelines.PipeReader.ReadAtLeastAsync(System.Int32,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeReader.cs#L53C13-L58C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeReader.cs#L53C13-L58C73" }, { "DocsId": "M:System.IO.Pipelines.PipeReader.ReadAtLeastAsyncCore(System.Int32,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeReader.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeReader.cs" }, { "DocsId": "M:System.IO.Pipelines.PipeReader.AdvanceTo(System.SequencePosition)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeReader.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeReader.cs" }, { "DocsId": "M:System.IO.Pipelines.PipeReader.AdvanceTo(System.SequencePosition,System.SequencePosition)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeReader.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeReader.cs" }, { "DocsId": "M:System.IO.Pipelines.PipeReader.AsStream(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeReader.cs#L106C13-L115C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeReader.cs#L106C13-L115C28" }, { "DocsId": "M:System.IO.Pipelines.PipeReader.CancelPendingRead", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeReader.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeReader.cs" }, { "DocsId": "M:System.IO.Pipelines.PipeReader.Complete(System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeReader.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeReader.cs" }, { "DocsId": "M:System.IO.Pipelines.PipeReader.CompleteAsync(System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeReader.cs#L133C17-L140C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeReader.cs#L133C17-L140C10" }, { "DocsId": "M:System.IO.Pipelines.PipeReader.OnWriterCompleted(System.Action{System.Exception,System.Object},System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeReader.cs#L153C9-L153C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeReader.cs#L153C9-L153C10" }, { "DocsId": "M:System.IO.Pipelines.PipeReader.Create(System.IO.Stream,System.IO.Pipelines.StreamPipeReaderOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeReader.cs#L161C13-L161C101" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeReader.cs#L161C13-L161C101" }, { "DocsId": "M:System.IO.Pipelines.PipeReader.Create(System.Buffers.ReadOnlySequence{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeReader.cs#L171C13-L171C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeReader.cs#L171C13-L171C53" }, { "DocsId": "M:System.IO.Pipelines.PipeReader.CopyToAsync(System.IO.Pipelines.PipeWriter,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeReader.cs#L180C13-L193C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeReader.cs#L180C13-L193C36" }, { "DocsId": "M:System.IO.Pipelines.PipeReader.CopyToAsync(System.IO.Stream,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeReader.cs#L202C13-L230C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeReader.cs#L202C13-L230C32" }, { "DocsId": "M:System.IO.Pipelines.PipeReader.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeReader.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeReader.cs" } ], "DocsId": "T:System.IO.Pipelines.PipeReader", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeReader.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeReader.cs" }, { "Members": [ { "DocsId": "M:System.IO.Pipelines.PipeScheduler.Schedule(System.Action{System.Object},System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeScheduler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeScheduler.cs" }, { "DocsId": "M:System.IO.Pipelines.PipeScheduler.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeScheduler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeScheduler.cs" }, { "DocsId": "P:System.IO.Pipelines.PipeScheduler.ThreadPool", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeScheduler.cs#L16C51-L16C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeScheduler.cs#L16C51-L16C72" }, { "DocsId": "P:System.IO.Pipelines.PipeScheduler.Inline", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeScheduler.cs#L20C47-L20C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeScheduler.cs#L20C47-L20C64" } ], "DocsId": "T:System.IO.Pipelines.PipeScheduler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeScheduler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeScheduler.cs" }, { "Members": [ { "DocsId": "M:System.IO.Pipelines.PipeWriter.Complete(System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeWriter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeWriter.cs" }, { "DocsId": "M:System.IO.Pipelines.PipeWriter.CompleteAsync(System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeWriter.cs#L26C17-L33C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeWriter.cs#L26C17-L33C10" }, { "DocsId": "M:System.IO.Pipelines.PipeWriter.CancelPendingFlush", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeWriter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeWriter.cs" }, { "DocsId": "M:System.IO.Pipelines.PipeWriter.OnReaderCompleted(System.Action{System.Exception,System.Object},System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeWriter.cs#L54C9-L54C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeWriter.cs#L54C9-L54C10" }, { "DocsId": "M:System.IO.Pipelines.PipeWriter.FlushAsync(System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeWriter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeWriter.cs" }, { "DocsId": "M:System.IO.Pipelines.PipeWriter.Advance(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeWriter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeWriter.cs" }, { "DocsId": "M:System.IO.Pipelines.PipeWriter.GetMemory(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeWriter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeWriter.cs" }, { "DocsId": "M:System.IO.Pipelines.PipeWriter.GetSpan(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeWriter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeWriter.cs" }, { "DocsId": "M:System.IO.Pipelines.PipeWriter.AsStream(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeWriter.cs#L88C13-L97C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeWriter.cs#L88C13-L97C28" }, { "DocsId": "M:System.IO.Pipelines.PipeWriter.Create(System.IO.Stream,System.IO.Pipelines.StreamPipeWriterOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeWriter.cs#L106C13-L106C101" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeWriter.cs#L106C13-L106C101" }, { "DocsId": "M:System.IO.Pipelines.PipeWriter.WriteAsync(System.ReadOnlyMemory{System.Byte},System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeWriter.cs#L115C13-L116C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeWriter.cs#L115C13-L116C50" }, { "DocsId": "M:System.IO.Pipelines.PipeWriter.CopyFromAsync(System.IO.Stream,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeWriter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeWriter.cs" }, { "DocsId": "M:System.IO.Pipelines.PipeWriter.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeWriter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeWriter.cs" }, { "DocsId": "P:System.IO.Pipelines.PipeWriter.CanGetUnflushedBytes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeWriter.cs#L41C53-L41C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeWriter.cs#L41C53-L41C58" }, { "DocsId": "P:System.IO.Pipelines.PipeWriter.UnflushedBytes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeWriter.cs#L155C47-L155C109" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeWriter.cs#L155C47-L155C109" } ], "DocsId": "T:System.IO.Pipelines.PipeWriter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeWriter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeWriter.cs" }, { "Members": [ { "DocsId": "M:System.IO.Pipelines.ReadResult.#ctor(System.Buffers.ReadOnlySequence{System.Byte},System.Boolean,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/ReadResult.cs#L20C13-L31C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/ReadResult.cs#L20C13-L31C10" }, { "DocsId": "P:System.IO.Pipelines.ReadResult.Buffer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/ReadResult.cs#L35C49-L35C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/ReadResult.cs#L35C49-L35C62" }, { "DocsId": "P:System.IO.Pipelines.ReadResult.IsCanceled", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/ReadResult.cs#L39C35-L39C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/ReadResult.cs#L39C35-L39C77" }, { "DocsId": "P:System.IO.Pipelines.ReadResult.IsCompleted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/ReadResult.cs#L43C36-L43C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/ReadResult.cs#L43C36-L43C79" } ], "DocsId": "T:System.IO.Pipelines.ReadResult", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/ReadResult.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/ReadResult.cs" }, { "Members": [ { "DocsId": "M:System.IO.Pipelines.StreamPipeExtensions.CopyToAsync(System.IO.Stream,System.IO.Pipelines.PipeWriter,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/StreamPipeExtensions.cs#L19C13-L33C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/StreamPipeExtensions.cs#L19C13-L33C73" } ], "DocsId": "T:System.IO.Pipelines.StreamPipeExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/StreamPipeExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/StreamPipeExtensions.cs" }, { "Members": [ { "DocsId": "M:System.IO.Pipelines.StreamPipeReaderOptions.#ctor(System.Buffers.MemoryPool{System.Byte},System.Int32,System.Int32,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/StreamPipeReaderOptions.cs#L23C13-L26C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/StreamPipeReaderOptions.cs#L23C13-L26C10" }, { "DocsId": "M:System.IO.Pipelines.StreamPipeReaderOptions.#ctor(System.Buffers.MemoryPool{System.Byte},System.Int32,System.Int32,System.Boolean,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/StreamPipeReaderOptions.cs#L61C47-L53C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/StreamPipeReaderOptions.cs#L61C47-L53C10" }, { "DocsId": "P:System.IO.Pipelines.StreamPipeReaderOptions.BufferSize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/StreamPipeReaderOptions.cs#L57C33-L57C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/StreamPipeReaderOptions.cs#L57C33-L57C37" }, { "DocsId": "P:System.IO.Pipelines.StreamPipeReaderOptions.MinimumReadSize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/StreamPipeReaderOptions.cs#L65C38-L65C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/StreamPipeReaderOptions.cs#L65C38-L65C42" }, { "DocsId": "P:System.IO.Pipelines.StreamPipeReaderOptions.Pool", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/StreamPipeReaderOptions.cs#L69C40-L69C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/StreamPipeReaderOptions.cs#L69C40-L69C44" }, { "DocsId": "P:System.IO.Pipelines.StreamPipeReaderOptions.LeaveOpen", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/StreamPipeReaderOptions.cs#L73C33-L73C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/StreamPipeReaderOptions.cs#L73C33-L73C37" }, { "DocsId": "P:System.IO.Pipelines.StreamPipeReaderOptions.UseZeroByteReads", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/StreamPipeReaderOptions.cs#L77C40-L77C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/StreamPipeReaderOptions.cs#L77C40-L77C44" } ], "DocsId": "T:System.IO.Pipelines.StreamPipeReaderOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/StreamPipeReaderOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/StreamPipeReaderOptions.cs" }, { "Members": [ { "DocsId": "M:System.IO.Pipelines.StreamPipeWriterOptions.#ctor(System.Buffers.MemoryPool{System.Byte},System.Int32,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/StreamPipeWriterOptions.cs#L19C9-L29C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/StreamPipeWriterOptions.cs#L19C9-L29C10" }, { "DocsId": "P:System.IO.Pipelines.StreamPipeWriterOptions.MinimumBufferSize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/StreamPipeWriterOptions.cs#L33C40-L33C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/StreamPipeWriterOptions.cs#L33C40-L33C44" }, { "DocsId": "P:System.IO.Pipelines.StreamPipeWriterOptions.Pool", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/StreamPipeWriterOptions.cs#L37C40-L37C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/StreamPipeWriterOptions.cs#L37C40-L37C44" }, { "DocsId": "P:System.IO.Pipelines.StreamPipeWriterOptions.LeaveOpen", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/StreamPipeWriterOptions.cs#L41C33-L41C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/StreamPipeWriterOptions.cs#L41C33-L41C37" } ], "DocsId": "T:System.IO.Pipelines.StreamPipeWriterOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/StreamPipeWriterOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/StreamPipeWriterOptions.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/System.IO.Ports.json b/xml/SourceLinkInformation/net-9.0/System.IO.Ports.json index c41c8717478..54a4dadabd4 100644 --- a/xml/SourceLinkInformation/net-9.0/System.IO.Ports.json +++ b/xml/SourceLinkInformation/net-9.0/System.IO.Ports.json @@ -1,481 +1,480 @@ { "Assembly": "System.IO.Ports", - "GUID": "F9AE6DA2BA6F4F56954112E25544B484FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "305F5ACBFB6B4894A1CBB1466A2AD4D8FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "F:System.IO.Ports.Handshake.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/Handshake.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/Handshake.cs" }, { "DocsId": "F:System.IO.Ports.Handshake.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/Handshake.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/Handshake.cs" }, { "DocsId": "F:System.IO.Ports.Handshake.XOnXOff", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/Handshake.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/Handshake.cs" }, { "DocsId": "F:System.IO.Ports.Handshake.RequestToSend", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/Handshake.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/Handshake.cs" }, { "DocsId": "F:System.IO.Ports.Handshake.RequestToSendXOnXOff", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/Handshake.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/Handshake.cs" } ], "DocsId": "T:System.IO.Ports.Handshake", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/Handshake.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/Handshake.cs" }, { "Members": [ { "DocsId": "F:System.IO.Ports.Parity.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/Parity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/Parity.cs" }, { "DocsId": "F:System.IO.Ports.Parity.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/Parity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/Parity.cs" }, { "DocsId": "F:System.IO.Ports.Parity.Odd", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/Parity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/Parity.cs" }, { "DocsId": "F:System.IO.Ports.Parity.Even", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/Parity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/Parity.cs" }, { "DocsId": "F:System.IO.Ports.Parity.Mark", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/Parity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/Parity.cs" }, { "DocsId": "F:System.IO.Ports.Parity.Space", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/Parity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/Parity.cs" } ], "DocsId": "T:System.IO.Ports.Parity", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/Parity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/Parity.cs" }, { "Members": [ { "DocsId": "F:System.IO.Ports.SerialData.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialData.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialData.cs" }, { "DocsId": "F:System.IO.Ports.SerialData.Chars", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialData.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialData.cs" }, { "DocsId": "F:System.IO.Ports.SerialData.Eof", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialData.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialData.cs" } ], "DocsId": "T:System.IO.Ports.SerialData", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialData.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialData.cs" }, { "Members": [ { "DocsId": "P:System.IO.Ports.SerialDataReceivedEventArgs.EventType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialDataReceivedEventArgs.cs#L13C39-L13C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialDataReceivedEventArgs.cs#L13C39-L13C43" } ], "DocsId": "T:System.IO.Ports.SerialDataReceivedEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialDataReceivedEventArgs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialDataReceivedEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.IO.Ports.SerialDataReceivedEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialDataReceivedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialDataReceivedEventHandler.cs" }, { "DocsId": "M:System.IO.Ports.SerialDataReceivedEventHandler.Invoke(System.Object,System.IO.Ports.SerialDataReceivedEventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialDataReceivedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialDataReceivedEventHandler.cs" }, { "DocsId": "M:System.IO.Ports.SerialDataReceivedEventHandler.BeginInvoke(System.Object,System.IO.Ports.SerialDataReceivedEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialDataReceivedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialDataReceivedEventHandler.cs" }, { "DocsId": "M:System.IO.Ports.SerialDataReceivedEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialDataReceivedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialDataReceivedEventHandler.cs" } ], "DocsId": "T:System.IO.Ports.SerialDataReceivedEventHandler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialDataReceivedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialDataReceivedEventHandler.cs" }, { "Members": [ { "DocsId": "F:System.IO.Ports.SerialError.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialError.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialError.cs" }, { "DocsId": "F:System.IO.Ports.SerialError.TXFull", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialError.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialError.cs" }, { "DocsId": "F:System.IO.Ports.SerialError.RXOver", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialError.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialError.cs" }, { "DocsId": "F:System.IO.Ports.SerialError.Overrun", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialError.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialError.cs" }, { "DocsId": "F:System.IO.Ports.SerialError.RXParity", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialError.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialError.cs" }, { "DocsId": "F:System.IO.Ports.SerialError.Frame", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialError.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialError.cs" } ], "DocsId": "T:System.IO.Ports.SerialError", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialError.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialError.cs" }, { "Members": [ { "DocsId": "P:System.IO.Ports.SerialErrorReceivedEventArgs.EventType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialErrorReceivedEventArgs.cs#L13C40-L13C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialErrorReceivedEventArgs.cs#L13C40-L13C44" } ], "DocsId": "T:System.IO.Ports.SerialErrorReceivedEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialErrorReceivedEventArgs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialErrorReceivedEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.IO.Ports.SerialErrorReceivedEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialErrorReceivedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialErrorReceivedEventHandler.cs" }, { "DocsId": "M:System.IO.Ports.SerialErrorReceivedEventHandler.Invoke(System.Object,System.IO.Ports.SerialErrorReceivedEventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialErrorReceivedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialErrorReceivedEventHandler.cs" }, { "DocsId": "M:System.IO.Ports.SerialErrorReceivedEventHandler.BeginInvoke(System.Object,System.IO.Ports.SerialErrorReceivedEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialErrorReceivedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialErrorReceivedEventHandler.cs" }, { "DocsId": "M:System.IO.Ports.SerialErrorReceivedEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialErrorReceivedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialErrorReceivedEventHandler.cs" } ], "DocsId": "T:System.IO.Ports.SerialErrorReceivedEventHandler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialErrorReceivedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialErrorReceivedEventHandler.cs" }, { "Members": [ { "DocsId": "F:System.IO.Ports.SerialPinChange.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPinChange.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPinChange.cs" }, { "DocsId": "F:System.IO.Ports.SerialPinChange.CtsChanged", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPinChange.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPinChange.cs" }, { "DocsId": "F:System.IO.Ports.SerialPinChange.DsrChanged", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPinChange.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPinChange.cs" }, { "DocsId": "F:System.IO.Ports.SerialPinChange.CDChanged", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPinChange.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPinChange.cs" }, { "DocsId": "F:System.IO.Ports.SerialPinChange.Ring", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPinChange.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPinChange.cs" }, { "DocsId": "F:System.IO.Ports.SerialPinChange.Break", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPinChange.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPinChange.cs" } ], "DocsId": "T:System.IO.Ports.SerialPinChange", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPinChange.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPinChange.cs" }, { "Members": [ { "DocsId": "P:System.IO.Ports.SerialPinChangedEventArgs.EventType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPinChangedEventArgs.cs#L13C44-L13C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPinChangedEventArgs.cs#L13C44-L13C48" } ], "DocsId": "T:System.IO.Ports.SerialPinChangedEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPinChangedEventArgs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPinChangedEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.IO.Ports.SerialPinChangedEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPinChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPinChangedEventHandler.cs" }, { "DocsId": "M:System.IO.Ports.SerialPinChangedEventHandler.Invoke(System.Object,System.IO.Ports.SerialPinChangedEventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPinChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPinChangedEventHandler.cs" }, { "DocsId": "M:System.IO.Ports.SerialPinChangedEventHandler.BeginInvoke(System.Object,System.IO.Ports.SerialPinChangedEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPinChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPinChangedEventHandler.cs" }, { "DocsId": "M:System.IO.Ports.SerialPinChangedEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPinChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPinChangedEventHandler.cs" } ], "DocsId": "T:System.IO.Ports.SerialPinChangedEventHandler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPinChangedEventHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPinChangedEventHandler.cs" }, { "Members": [ { "DocsId": "M:System.IO.Ports.SerialPort.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L38C9-L514C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L38C9-L514C10" }, { "DocsId": "M:System.IO.Ports.SerialPort.#ctor(System.ComponentModel.IContainer)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L516C51-L520C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L516C51-L520C10" }, { "DocsId": "M:System.IO.Ports.SerialPort.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L525C46-L527C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L525C46-L527C10" }, { "DocsId": "M:System.IO.Ports.SerialPort.#ctor(System.String,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L529C60-L531C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L529C60-L531C10" }, { "DocsId": "M:System.IO.Ports.SerialPort.#ctor(System.String,System.Int32,System.IO.Ports.Parity)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L533C75-L535C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L533C75-L535C10" }, { "DocsId": "M:System.IO.Ports.SerialPort.#ctor(System.String,System.Int32,System.IO.Ports.Parity,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L537C89-L539C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L537C89-L539C10" }, { "DocsId": "M:System.IO.Ports.SerialPort.#ctor(System.String,System.Int32,System.IO.Ports.Parity,System.Int32,System.IO.Ports.StopBits)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L544C108-L551C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L544C108-L551C10" }, { "DocsId": "M:System.IO.Ports.SerialPort.Close", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L556C13-L557C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L556C13-L557C10" }, { "DocsId": "M:System.IO.Ports.SerialPort.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L561C13-L572C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L561C13-L572C10" }, { "DocsId": "M:System.IO.Ports.SerialPort.DiscardInBuffer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L576C13-L580C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L576C13-L580C10" }, { "DocsId": "M:System.IO.Ports.SerialPort.DiscardOutBuffer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L584C13-L587C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L584C13-L587C10" }, { "DocsId": "M:System.IO.Ports.SerialPort.Open", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L595C13-L610C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L595C13-L610C10" }, { "DocsId": "M:System.IO.Ports.SerialPort.Read(System.Byte[],System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L623C13-L662C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L623C13-L662C38" }, { "DocsId": "M:System.IO.Ports.SerialPort.ReadChar", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L669C13-L672C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L669C13-L672C46" }, { "DocsId": "M:System.IO.Ports.SerialPort.Read(System.Char[],System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L764C13-L775C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L764C13-L775C77" }, { "DocsId": "M:System.IO.Ports.SerialPort.ReadByte", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L944C13-L950C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L944C13-L950C53" }, { "DocsId": "M:System.IO.Ports.SerialPort.ReadExisting", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L955C13-L997C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L955C13-L1011C80" }, { "DocsId": "M:System.IO.Ports.SerialPort.ReadLine", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L1002C13-L1002C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L1016C13-L1016C36" }, { "DocsId": "M:System.IO.Ports.SerialPort.ReadTo(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L1007C13-L1120C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L1021C13-L1134C10" }, { "DocsId": "M:System.IO.Ports.SerialPort.Write(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L1125C13-L1135C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L1139C13-L1149C10" }, { "DocsId": "M:System.IO.Ports.SerialPort.Write(System.Char[],System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L1141C13-L1156C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L1155C13-L1170C10" }, { "DocsId": "M:System.IO.Ports.SerialPort.Write(System.Byte[],System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L1161C13-L1174C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L1175C13-L1188C10" }, { "DocsId": "M:System.IO.Ports.SerialPort.WriteLine(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L1178C13-L1179C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L1192C13-L1193C10" }, { "DocsId": "M:System.IO.Ports.SerialPort.GetPortNames", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.Win32.cs#L22C20-L37C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.Win32.cs#L22C20-L37C10" }, { "DocsId": "E:System.IO.Ports.SerialPort.ErrorReceived", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs" }, { "DocsId": "E:System.IO.Ports.SerialPort.PinChanged", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs" }, { "DocsId": "E:System.IO.Ports.SerialPort.DataReceived", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L77C17-L87C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L77C17-L87C14" }, { "DocsId": "F:System.IO.Ports.SerialPort.InfiniteTimeout", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs" }, { "DocsId": "P:System.IO.Ports.SerialPort.BaseStream", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L114C17-L117C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L114C17-L117C46" }, { "DocsId": "P:System.IO.Ports.SerialPort.BaudRate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L123C19-L123C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L123C19-L123C36" }, { "DocsId": "P:System.IO.Ports.SerialPort.BreakState", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L139C17-L142C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L139C17-L142C57" }, { "DocsId": "P:System.IO.Ports.SerialPort.BytesToWrite", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L158C17-L160C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L158C17-L160C59" }, { "DocsId": "P:System.IO.Ports.SerialPort.BytesToRead", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L169C17-L171C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L169C17-L171C78" }, { "DocsId": "P:System.IO.Ports.SerialPort.CDHolding", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L187C17-L189C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L187C17-L189C56" }, { "DocsId": "P:System.IO.Ports.SerialPort.CtsHolding", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L197C17-L199C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L197C17-L199C57" }, { "DocsId": "P:System.IO.Ports.SerialPort.DataBits", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L206C15-L206C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L206C15-L206C32" }, { "DocsId": "P:System.IO.Ports.SerialPort.DiscardNull", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L222C17-L222C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L222C17-L222C37" }, { "DocsId": "P:System.IO.Ports.SerialPort.DsrHolding", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L236C17-L238C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L236C17-L238C57" }, { "DocsId": "P:System.IO.Ports.SerialPort.DtrEnable", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L246C17-L249C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L246C17-L249C35" }, { "DocsId": "P:System.IO.Ports.SerialPort.Encoding", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L266C17-L266C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L266C17-L266C34" }, { "DocsId": "P:System.IO.Ports.SerialPort.Handshake", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L294C17-L294C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L294C17-L294C35" }, { "DocsId": "P:System.IO.Ports.SerialPort.IsOpen", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L310C19-L310C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L310C19-L310C90" }, { "DocsId": "P:System.IO.Ports.SerialPort.NewLine", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L315C19-L315C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L315C19-L315C35" }, { "DocsId": "P:System.IO.Ports.SerialPort.Parity", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L331C17-L331C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L331C17-L331C32" }, { "DocsId": "P:System.IO.Ports.SerialPort.ParityReplace", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L346C19-L346C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L346C19-L346C41" }, { "DocsId": "P:System.IO.Ports.SerialPort.PortName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L361C17-L361C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L361C17-L361C34" }, { "DocsId": "P:System.IO.Ports.SerialPort.ReadBufferSize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L380C17-L380C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L380C17-L380C40" }, { "DocsId": "P:System.IO.Ports.SerialPort.ReadTimeout", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L399C17-L399C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L399C17-L399C37" }, { "DocsId": "P:System.IO.Ports.SerialPort.ReceivedBytesThreshold", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L419C17-L419C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L419C17-L419C48" }, { "DocsId": "P:System.IO.Ports.SerialPort.RtsEnable", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L442C17-L445C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L442C17-L445C35" }, { "DocsId": "P:System.IO.Ports.SerialPort.StopBits", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L460C17-L460C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L460C17-L460C34" }, { "DocsId": "P:System.IO.Ports.SerialPort.WriteBufferSize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L478C17-L478C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L478C17-L478C41" }, { "DocsId": "P:System.IO.Ports.SerialPort.WriteTimeout", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L497C17-L497C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs#L497C17-L497C38" } ], "DocsId": "T:System.IO.Ports.SerialPort", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialPort.cs" }, { "Members": [ { "DocsId": "F:System.IO.Ports.StopBits.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/StopBits.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/StopBits.cs" }, { "DocsId": "F:System.IO.Ports.StopBits.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/StopBits.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/StopBits.cs" }, { "DocsId": "F:System.IO.Ports.StopBits.One", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/StopBits.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/StopBits.cs" }, { "DocsId": "F:System.IO.Ports.StopBits.Two", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/StopBits.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/StopBits.cs" }, { "DocsId": "F:System.IO.Ports.StopBits.OnePointFive", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/StopBits.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/StopBits.cs" } ], "DocsId": "T:System.IO.Ports.StopBits", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.IO.Ports/src/System/IO/Ports/StopBits.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.IO.Ports/src/System/IO/Ports/StopBits.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/System.Management.json b/xml/SourceLinkInformation/net-9.0/System.Management.json index 5e11b07cbe3..4066119683d 100644 --- a/xml/SourceLinkInformation/net-9.0/System.Management.json +++ b/xml/SourceLinkInformation/net-9.0/System.Management.json @@ -1,2769 +1,2768 @@ { "Assembly": "System.Management", - "GUID": "FFD185A7CAAC4D42B902DE9EE9CD89DAFFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "517C3CB0B4C54C50BD3C257FAD33C26CFFFFFFFF", "Types": [ { "Members": [ { "DocsId": "F:System.Management.TextFormat.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" }, { "DocsId": "F:System.Management.TextFormat.Mof", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" }, { "DocsId": "F:System.Management.TextFormat.CimDtd20", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" }, { "DocsId": "F:System.Management.TextFormat.WmiDtd20", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" } ], "DocsId": "T:System.Management.TextFormat", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" }, { "Members": [ { "DocsId": "F:System.Management.CimType.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" }, { "DocsId": "F:System.Management.CimType.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" }, { "DocsId": "F:System.Management.CimType.SInt8", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" }, { "DocsId": "F:System.Management.CimType.UInt8", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" }, { "DocsId": "F:System.Management.CimType.SInt16", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" }, { "DocsId": "F:System.Management.CimType.UInt16", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" }, { "DocsId": "F:System.Management.CimType.SInt32", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" }, { "DocsId": "F:System.Management.CimType.UInt32", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" }, { "DocsId": "F:System.Management.CimType.SInt64", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" }, { "DocsId": "F:System.Management.CimType.UInt64", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" }, { "DocsId": "F:System.Management.CimType.Real32", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" }, { "DocsId": "F:System.Management.CimType.Real64", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" }, { "DocsId": "F:System.Management.CimType.Boolean", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" }, { "DocsId": "F:System.Management.CimType.String", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" }, { "DocsId": "F:System.Management.CimType.DateTime", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" }, { "DocsId": "F:System.Management.CimType.Reference", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" }, { "DocsId": "F:System.Management.CimType.Char16", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" }, { "DocsId": "F:System.Management.CimType.Object", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" } ], "DocsId": "T:System.Management.CimType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" }, { "Members": [ { "DocsId": "F:System.Management.ComparisonSettings.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" }, { "DocsId": "F:System.Management.ComparisonSettings.IncludeAll", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" }, { "DocsId": "F:System.Management.ComparisonSettings.IgnoreQualifiers", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" }, { "DocsId": "F:System.Management.ComparisonSettings.IgnoreObjectSource", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" }, { "DocsId": "F:System.Management.ComparisonSettings.IgnoreDefaultValues", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" }, { "DocsId": "F:System.Management.ComparisonSettings.IgnoreClass", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" }, { "DocsId": "F:System.Management.ComparisonSettings.IgnoreCase", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" }, { "DocsId": "F:System.Management.ComparisonSettings.IgnoreFlavor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" } ], "DocsId": "T:System.Management.ComparisonSettings", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" }, { "Members": [ { "DocsId": "M:System.Management.ManagementBaseObject.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs#L230C9-L232C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs#L230C9-L232C55" }, { "DocsId": "M:System.Management.ManagementBaseObject.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs#L237C13-L244C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs#L237C13-L244C10" }, { "DocsId": "M:System.Management.ManagementBaseObject.op_Explicit(System.Management.ManagementBaseObject)~System.IntPtr", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs#L260C13-L263C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs#L260C13-L263C56" }, { "DocsId": "M:System.Management.ManagementBaseObject.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs#L269C13-L269C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs#L269C13-L269C55" }, { "DocsId": "M:System.Management.ManagementBaseObject.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs#L274C13-L274C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs#L274C13-L274C55" }, { "DocsId": "M:System.Management.ManagementBaseObject.Clone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs#L314C13-L326C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs#L314C13-L326C55" }, { "DocsId": "M:System.Management.ManagementBaseObject.GetPropertyValue(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs#L500C13-L507C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs#L500C13-L507C55" }, { "DocsId": "M:System.Management.ManagementBaseObject.GetQualifierValue(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs#L522C13-L522C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs#L522C13-L522C52" }, { "DocsId": "M:System.Management.ManagementBaseObject.SetQualifierValue(System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs#L535C13-L536C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs#L535C13-L536C10" }, { "DocsId": "M:System.Management.ManagementBaseObject.GetPropertyQualifierValue(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs#L552C13-L552C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs#L552C13-L552C77" }, { "DocsId": "M:System.Management.ManagementBaseObject.SetPropertyQualifierValue(System.String,System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs#L567C13-L568C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs#L567C13-L568C10" }, { "DocsId": "M:System.Management.ManagementBaseObject.GetText(System.Management.TextFormat)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs#L583C13-L636C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs#L583C13-L636C33" }, { "DocsId": "M:System.Management.ManagementBaseObject.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs#L651C13-L688C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs#L651C13-L688C10" }, { "DocsId": "M:System.Management.ManagementBaseObject.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs#L702C13-L719C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs#L702C13-L719C30" }, { "DocsId": "M:System.Management.ManagementBaseObject.CompareTo(System.Management.ManagementBaseObject,System.Management.ComparisonSettings)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs#L737C13-L758C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs#L737C13-L758C27" }, { "DocsId": "M:System.Management.ManagementBaseObject.SetPropertyValue(System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs#L821C13-L829C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs#L821C13-L829C10" }, { "DocsId": "P:System.Management.ManagementBaseObject.Properties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs#L348C17-L350C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs#L348C17-L350C79" }, { "DocsId": "P:System.Management.ManagementBaseObject.SystemProperties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs#L367C17-L369C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs#L367C17-L369C84" }, { "DocsId": "P:System.Management.ManagementBaseObject.Qualifiers", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs#L387C17-L389C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs#L387C17-L389C73" }, { "DocsId": "P:System.Management.ManagementBaseObject.ClassPath", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs#L408C17-L451C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs#L408C17-L451C34" }, { "DocsId": "P:System.Management.ManagementBaseObject.Item(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs#L473C19-L473C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs#L473C19-L473C57" } ], "DocsId": "T:System.Management.ManagementBaseObject", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementBaseObject.cs" }, { "Members": [ { "DocsId": "M:System.Management.ManagementClass.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L55C13-L55C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L55C13-L55C55" }, { "DocsId": "M:System.Management.ManagementClass.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L144C36-L144C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L144C36-L144C95" }, { "DocsId": "M:System.Management.ManagementClass.#ctor(System.Management.ManagementPath)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L164C55-L164C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L164C55-L164C81" }, { "DocsId": "M:System.Management.ManagementClass.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L177C47-L177C93" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L177C47-L177C93" }, { "DocsId": "M:System.Management.ManagementClass.#ctor(System.Management.ManagementPath,System.Management.ObjectGetOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L197C81-L197C110" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L197C81-L197C110" }, { "DocsId": "M:System.Management.ManagementClass.#ctor(System.String,System.Management.ObjectGetOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L216C15-L216C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L216C15-L216C64" }, { "DocsId": "M:System.Management.ManagementClass.#ctor(System.Management.ManagementScope,System.Management.ManagementPath,System.Management.ObjectGetOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L243C15-L243C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L243C15-L243C45" }, { "DocsId": "M:System.Management.ManagementClass.#ctor(System.String,System.String,System.Management.ObjectGetOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L268C15-L268C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L268C15-L268C86" }, { "DocsId": "M:System.Management.ManagementClass.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L274C9-L276C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L274C9-L276C55" }, { "DocsId": "M:System.Management.ManagementClass.GetInstances", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L427C13-L427C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L427C13-L427C59" }, { "DocsId": "M:System.Management.ManagementClass.GetInstances(System.Management.EnumerationOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L459C13-L492C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L459C13-L492C71" }, { "DocsId": "M:System.Management.ManagementClass.GetInstances(System.Management.ManagementOperationObserver)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L567C13-L568C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L567C13-L568C10" }, { "DocsId": "M:System.Management.ManagementClass.GetInstances(System.Management.ManagementOperationObserver,System.Management.EnumerationOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L579C13-L621C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L579C13-L621C10" }, { "DocsId": "M:System.Management.ManagementClass.GetSubclasses", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L639C13-L639C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L639C13-L639C60" }, { "DocsId": "M:System.Management.ManagementClass.GetSubclasses(System.Management.EnumerationOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L675C13-L708C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L675C13-L708C71" }, { "DocsId": "M:System.Management.ManagementClass.GetSubclasses(System.Management.ManagementOperationObserver)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L717C13-L718C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L717C13-L718C10" }, { "DocsId": "M:System.Management.ManagementClass.GetSubclasses(System.Management.ManagementOperationObserver,System.Management.EnumerationOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L730C13-L773C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L730C13-L773C10" }, { "DocsId": "M:System.Management.ManagementClass.Derive(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L804C13-L852C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L804C13-L852C29" }, { "DocsId": "M:System.Management.ManagementClass.CreateInstance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L887C13-L908C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L887C13-L908C32" }, { "DocsId": "M:System.Management.ManagementClass.Clone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L924C13-L935C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L924C13-L935C71" }, { "DocsId": "M:System.Management.ManagementClass.GetRelatedClasses", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L977C13-L977C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L977C13-L977C52" }, { "DocsId": "M:System.Management.ManagementClass.GetRelatedClasses(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L991C13-L991C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L991C13-L991C88" }, { "DocsId": "M:System.Management.ManagementClass.GetRelatedClasses(System.String,System.String,System.String,System.String,System.String,System.String,System.Management.EnumerationOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L1019C13-L1065C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L1019C13-L1065C71" }, { "DocsId": "M:System.Management.ManagementClass.GetRelatedClasses(System.Management.ManagementOperationObserver)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L1077C13-L1078C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L1077C13-L1078C10" }, { "DocsId": "M:System.Management.ManagementClass.GetRelatedClasses(System.Management.ManagementOperationObserver,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L1090C13-L1091C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L1090C13-L1091C10" }, { "DocsId": "M:System.Management.ManagementClass.GetRelatedClasses(System.Management.ManagementOperationObserver,System.String,System.String,System.String,System.String,System.String,System.String,System.Management.EnumerationOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L1116C13-L1167C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L1116C13-L1167C10" }, { "DocsId": "M:System.Management.ManagementClass.GetRelationshipClasses", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L1185C13-L1185C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L1185C13-L1185C57" }, { "DocsId": "M:System.Management.ManagementClass.GetRelationshipClasses(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L1200C13-L1200C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L1200C13-L1200C80" }, { "DocsId": "M:System.Management.ManagementClass.GetRelationshipClasses(System.String,System.String,System.String,System.Management.EnumerationOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L1222C13-L1262C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L1222C13-L1262C71" }, { "DocsId": "M:System.Management.ManagementClass.GetRelationshipClasses(System.Management.ManagementOperationObserver)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L1274C13-L1275C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L1274C13-L1275C10" }, { "DocsId": "M:System.Management.ManagementClass.GetRelationshipClasses(System.Management.ManagementOperationObserver,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L1287C13-L1288C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L1287C13-L1288C10" }, { "DocsId": "M:System.Management.ManagementClass.GetRelationshipClasses(System.Management.ManagementOperationObserver,System.String,System.String,System.String,System.Management.EnumerationOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L1307C13-L1353C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L1307C13-L1353C10" }, { "DocsId": "M:System.Management.ManagementClass.GetStronglyTypedClassCode(System.Boolean,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L1410C13-L1412C93" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L1410C13-L1412C93" }, { "DocsId": "M:System.Management.ManagementClass.GetStronglyTypedClassCode(System.Management.CodeLanguage,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L1438C13-L1440C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L1438C13-L1440C74" }, { "DocsId": "P:System.Management.ManagementClass.Path", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L305C17-L305C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L305C17-L305C34" }, { "DocsId": "P:System.Management.ManagementClass.Derivation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L344C17-L362C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L344C17-L362C31" }, { "DocsId": "P:System.Management.ManagementClass.Methods", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L389C17-L391C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementClass.cs#L389C17-L391C67" } ], "DocsId": "T:System.Management.ManagementClass", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementClass.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementClass.cs" }, { "Members": [ { "DocsId": "M:System.Management.ManagementDateTimeConverter.ToDateTime(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementDateTime.cs#L113C13-L203C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementDateTime.cs#L113C13-L203C29" }, { "DocsId": "M:System.Management.ManagementDateTimeConverter.ToDmtfDateTime(System.DateTime)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementDateTime.cs#L235C13-L284C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementDateTime.cs#L235C13-L284C33" }, { "DocsId": "M:System.Management.ManagementDateTimeConverter.ToTimeSpan(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementDateTime.cs#L311C13-L374C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementDateTime.cs#L311C13-L374C29" }, { "DocsId": "M:System.Management.ManagementDateTimeConverter.ToDmtfTimeInterval(System.TimeSpan)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementDateTime.cs#L408C13-L439C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementDateTime.cs#L408C13-L439C33" } ], "DocsId": "T:System.Management.ManagementDateTimeConverter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementDateTime.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementDateTime.cs" }, { "Members": [ { "DocsId": "P:System.Management.ManagementEventArgs.Context", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementEventArgs.cs#L55C19-L55C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementEventArgs.cs#L55C19-L55C34" } ], "DocsId": "T:System.Management.ManagementEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementEventArgs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementEventArgs.cs" }, { "Members": [ { "DocsId": "P:System.Management.ObjectReadyEventArgs.NewObject", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementEventArgs.cs#L88C17-L88C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementEventArgs.cs#L88C17-L88C34" } ], "DocsId": "T:System.Management.ObjectReadyEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementEventArgs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementEventArgs.cs" }, { "Members": [ { "DocsId": "P:System.Management.CompletedEventArgs.StatusObject", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementEventArgs.cs#L127C17-L127C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementEventArgs.cs#L127C17-L127C34" }, { "DocsId": "P:System.Management.CompletedEventArgs.Status", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementEventArgs.cs#L142C17-L142C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementEventArgs.cs#L142C17-L142C49" } ], "DocsId": "T:System.Management.CompletedEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementEventArgs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementEventArgs.cs" }, { "Members": [ { "DocsId": "P:System.Management.ObjectPutEventArgs.Path", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementEventArgs.cs#L178C17-L178C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementEventArgs.cs#L178C17-L178C32" } ], "DocsId": "T:System.Management.ObjectPutEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementEventArgs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementEventArgs.cs" }, { "Members": [ { "DocsId": "P:System.Management.ProgressEventArgs.UpperBound", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementEventArgs.cs#L223C17-L223C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementEventArgs.cs#L223C17-L223C35" }, { "DocsId": "P:System.Management.ProgressEventArgs.Current", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementEventArgs.cs#L239C17-L239C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementEventArgs.cs#L239C17-L239C32" }, { "DocsId": "P:System.Management.ProgressEventArgs.Message", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementEventArgs.cs#L254C17-L254C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementEventArgs.cs#L254C17-L254C48" } ], "DocsId": "T:System.Management.ProgressEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementEventArgs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementEventArgs.cs" }, { "Members": [ { "DocsId": "P:System.Management.EventArrivedEventArgs.NewEvent", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementEventArgs.cs#L279C19-L279C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementEventArgs.cs#L279C19-L279C43" } ], "DocsId": "T:System.Management.EventArrivedEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementEventArgs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementEventArgs.cs" }, { "Members": [ { "DocsId": "P:System.Management.StoppedEventArgs.Status", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementEventArgs.cs#L306C17-L306C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementEventArgs.cs#L306C17-L306C49" } ], "DocsId": "T:System.Management.StoppedEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementEventArgs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Management.EventArrivedEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs" }, { "DocsId": "M:System.Management.EventArrivedEventHandler.Invoke(System.Object,System.Management.EventArrivedEventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs" }, { "DocsId": "M:System.Management.EventArrivedEventHandler.BeginInvoke(System.Object,System.Management.EventArrivedEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs" }, { "DocsId": "M:System.Management.EventArrivedEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs" } ], "DocsId": "T:System.Management.EventArrivedEventHandler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs" }, { "Members": [ { "DocsId": "M:System.Management.StoppedEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs" }, { "DocsId": "M:System.Management.StoppedEventHandler.Invoke(System.Object,System.Management.StoppedEventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs" }, { "DocsId": "M:System.Management.StoppedEventHandler.BeginInvoke(System.Object,System.Management.StoppedEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs" }, { "DocsId": "M:System.Management.StoppedEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs" } ], "DocsId": "T:System.Management.StoppedEventHandler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs" }, { "Members": [ { "DocsId": "M:System.Management.ManagementEventWatcher.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs#L142C43-L142C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs#L142C43-L142C86" }, { "DocsId": "M:System.Management.ManagementEventWatcher.#ctor(System.Management.EventQuery)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs#L154C33-L154C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs#L154C33-L154C60" }, { "DocsId": "M:System.Management.ManagementEventWatcher.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs#L166C29-L166C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs#L166C29-L166C72" }, { "DocsId": "M:System.Management.ManagementEventWatcher.#ctor(System.Management.ManagementScope,System.Management.EventQuery)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs#L176C33-L176C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs#L176C33-L176C61" }, { "DocsId": "M:System.Management.ManagementEventWatcher.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs#L187C29-L187C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs#L187C29-L187C94" }, { "DocsId": "M:System.Management.ManagementEventWatcher.#ctor(System.String,System.String,System.Management.EventWatcherOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs#L201C44-L201C112" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs#L201C44-L201C112" }, { "DocsId": "M:System.Management.ManagementEventWatcher.#ctor(System.Management.ManagementScope,System.Management.EventQuery,System.Management.EventWatcherOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs#L212C9-L239C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs#L212C9-L239C10" }, { "DocsId": "M:System.Management.ManagementEventWatcher.Finalize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs#L247C13-L257C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs#L247C13-L257C10" }, { "DocsId": "M:System.Management.ManagementEventWatcher.WaitForNextEvent", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs#L392C13-L465C24" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs#L392C13-L465C24" }, { "DocsId": "M:System.Management.ManagementEventWatcher.Start", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs#L478C13-L524C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs#L478C13-L524C10" }, { "DocsId": "M:System.Management.ManagementEventWatcher.Stop", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs#L535C13-L549C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs#L535C13-L549C10" }, { "DocsId": "E:System.Management.ManagementEventWatcher.EventArrived", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs" }, { "DocsId": "E:System.Management.ManagementEventWatcher.Stopped", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs" }, { "DocsId": "P:System.Management.ManagementEventWatcher.Scope", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs#L287C17-L287C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs#L287C17-L287C30" }, { "DocsId": "P:System.Management.ManagementEventWatcher.Query", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs#L320C17-L320C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs#L320C17-L320C30" }, { "DocsId": "P:System.Management.ManagementEventWatcher.Options", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs#L353C17-L353C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs#L353C17-L353C32" } ], "DocsId": "T:System.Management.ManagementEventWatcher", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementEventWatcher.cs" }, { "Members": [ { "DocsId": "F:System.Management.ManagementStatus.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.NoError", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.False", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.ResetToDefault", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.Different", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.Timedout", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.NoMoreData", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.OperationCanceled", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.Pending", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.DuplicateObjects", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.PartialResults", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.Failed", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.NotFound", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.AccessDenied", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.ProviderFailure", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.TypeMismatch", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.OutOfMemory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.InvalidContext", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.InvalidParameter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.NotAvailable", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.CriticalError", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.InvalidStream", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.NotSupported", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.InvalidSuperclass", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.InvalidNamespace", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.InvalidObject", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.InvalidClass", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.ProviderNotFound", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.InvalidProviderRegistration", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.ProviderLoadFailure", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.InitializationFailure", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.TransportFailure", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.InvalidOperation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.InvalidQuery", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.InvalidQueryType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.AlreadyExists", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.OverrideNotAllowed", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.PropagatedQualifier", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.PropagatedProperty", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.Unexpected", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.IllegalOperation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.CannotBeKey", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.IncompleteClass", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.InvalidSyntax", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.NondecoratedObject", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.ReadOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.ProviderNotCapable", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.ClassHasChildren", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.ClassHasInstances", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.QueryNotImplemented", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.IllegalNull", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.InvalidQualifierType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.InvalidPropertyType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.ValueOutOfRange", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.CannotBeSingleton", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.InvalidCimType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.InvalidMethod", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.InvalidMethodParameters", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.SystemProperty", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.InvalidProperty", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.CallCanceled", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.ShuttingDown", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.PropagatedMethod", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.UnsupportedParameter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.MissingParameterID", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.InvalidParameterID", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.NonconsecutiveParameterIDs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.ParameterIDOnRetval", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.InvalidObjectPath", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.OutOfDiskSpace", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.BufferTooSmall", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.UnsupportedPutExtension", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.UnknownObjectType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.UnknownPacketType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.MarshalVersionMismatch", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.MarshalInvalidSignature", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.InvalidQualifier", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.InvalidDuplicateParameter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.TooMuchData", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.ServerTooBusy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.InvalidFlavor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.CircularReference", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.UnsupportedClassUpdate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.CannotChangeKeyInheritance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.CannotChangeIndexInheritance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.TooManyProperties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.UpdateTypeMismatch", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.UpdateOverrideNotAllowed", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.UpdatePropagatedMethod", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.MethodNotImplemented", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.MethodDisabled", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.RefresherBusy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.UnparsableQuery", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.NotEventClass", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.MissingGroupWithin", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.MissingAggregationList", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.PropertyNotAnObject", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.AggregatingByObject", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.UninterpretableProviderQuery", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.BackupRestoreWinmgmtRunning", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.QueueOverflow", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.PrivilegeNotHeld", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.InvalidOperator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.LocalCredentials", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.CannotBeAbstract", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.AmendedObject", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.ClientTooSlow", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.RegistrationTooBroad", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "DocsId": "F:System.Management.ManagementStatus.RegistrationTooPrecise", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" } ], "DocsId": "T:System.Management.ManagementStatus", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "Members": [ { "DocsId": "M:System.Management.ManagementException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs#L679C91-L682C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs#L679C91-L682C10" }, { "DocsId": "M:System.Management.ManagementException.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs#L686C40-L689C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs#L686C40-L689C10" }, { "DocsId": "M:System.Management.ManagementException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs#L697C54-L700C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs#L697C54-L700C10" }, { "DocsId": "M:System.Management.ManagementException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs#L709C80-L714C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs#L709C80-L714C10" }, { "DocsId": "M:System.Management.ManagementException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs#L729C13-L734C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs#L729C13-L734C10" }, { "DocsId": "P:System.Management.ManagementException.ErrorInformation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs#L788C15-L788C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs#L788C15-L788C34" }, { "DocsId": "P:System.Management.ManagementException.ErrorCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs#L801C15-L801C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs#L801C15-L801C32" } ], "DocsId": "T:System.Management.ManagementException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementException.cs" }, { "Members": [ { "DocsId": "M:System.Management.ManagementNamedValueCollection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementNamedValueCollection.cs#L37C9-L39C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementNamedValueCollection.cs#L37C9-L39C10" }, { "DocsId": "M:System.Management.ManagementNamedValueCollection.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementNamedValueCollection.cs#L53C9-L55C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementNamedValueCollection.cs#L53C9-L55C55" }, { "DocsId": "M:System.Management.ManagementNamedValueCollection.Add(System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementNamedValueCollection.cs#L101C17-L107C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementNamedValueCollection.cs#L101C17-L107C10" }, { "DocsId": "M:System.Management.ManagementNamedValueCollection.Remove(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementNamedValueCollection.cs#L118C13-L120C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementNamedValueCollection.cs#L118C13-L120C10" }, { "DocsId": "M:System.Management.ManagementNamedValueCollection.RemoveAll", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementNamedValueCollection.cs#L127C13-L129C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementNamedValueCollection.cs#L127C13-L129C10" }, { "DocsId": "M:System.Management.ManagementNamedValueCollection.Clone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementNamedValueCollection.cs#L141C13-L175C24" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementNamedValueCollection.cs#L141C13-L175C24" }, { "DocsId": "P:System.Management.ManagementNamedValueCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementNamedValueCollection.cs#L190C17-L190C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementNamedValueCollection.cs#L190C17-L190C43" } ], "DocsId": "T:System.Management.ManagementNamedValueCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementNamedValueCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementNamedValueCollection.cs" }, { "Members": [ { "DocsId": "M:System.Management.ManagementObject.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L100C13-L100C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L100C13-L100C55" }, { "DocsId": "M:System.Management.ManagementObject.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L105C13-L112C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L105C13-L112C10" }, { "DocsId": "M:System.Management.ManagementObject.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L229C37-L229C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L229C37-L229C80" }, { "DocsId": "M:System.Management.ManagementObject.#ctor(System.Management.ManagementPath)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L245C56-L245C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L245C56-L245C82" }, { "DocsId": "M:System.Management.ManagementObject.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L273C48-L273C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L273C48-L273C94" }, { "DocsId": "M:System.Management.ManagementObject.#ctor(System.Management.ManagementPath,System.Management.ObjectGetOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L303C82-L303C111" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L303C82-L303C111" }, { "DocsId": "M:System.Management.ManagementObject.#ctor(System.String,System.Management.ObjectGetOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L331C13-L332C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L331C13-L332C12" }, { "DocsId": "M:System.Management.ManagementObject.#ctor(System.Management.ManagementScope,System.Management.ManagementPath,System.Management.ObjectGetOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L373C15-L376C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L373C15-L376C10" }, { "DocsId": "M:System.Management.ManagementObject.#ctor(System.String,System.String,System.Management.ObjectGetOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L458C15-L458C98" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L458C15-L458C98" }, { "DocsId": "M:System.Management.ManagementObject.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L469C88-L472C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L469C88-L472C10" }, { "DocsId": "M:System.Management.ManagementObject.Get", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L768C13-L806C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L768C13-L806C10" }, { "DocsId": "M:System.Management.ManagementObject.Get(System.Management.ManagementOperationObserver)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L890C13-L933C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L890C13-L933C10" }, { "DocsId": "M:System.Management.ManagementObject.GetRelated", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L965C13-L965C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L965C13-L965C45" }, { "DocsId": "M:System.Management.ManagementObject.GetRelated(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L993C13-L993C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L993C13-L993C88" }, { "DocsId": "M:System.Management.ManagementObject.GetRelated(System.String,System.String,System.String,System.String,System.String,System.String,System.Boolean,System.Management.EnumerationOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1027C13-L1076C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1027C13-L1076C71" }, { "DocsId": "M:System.Management.ManagementObject.GetRelated(System.Management.ManagementOperationObserver)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1092C13-L1093C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1092C13-L1093C10" }, { "DocsId": "M:System.Management.ManagementObject.GetRelated(System.Management.ManagementOperationObserver,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1110C13-L1111C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1110C13-L1111C10" }, { "DocsId": "M:System.Management.ManagementObject.GetRelated(System.Management.ManagementOperationObserver,System.String,System.String,System.String,System.String,System.String,System.String,System.Boolean,System.Management.EnumerationOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1143C13-L1198C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1143C13-L1198C10" }, { "DocsId": "M:System.Management.ManagementObject.GetRelationships", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1217C13-L1217C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1217C13-L1217C51" }, { "DocsId": "M:System.Management.ManagementObject.GetRelationships(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1236C13-L1236C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1236C13-L1236C81" }, { "DocsId": "M:System.Management.ManagementObject.GetRelationships(System.String,System.String,System.String,System.Boolean,System.Management.EnumerationOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1264C13-L1308C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1264C13-L1308C71" }, { "DocsId": "M:System.Management.ManagementObject.GetRelationships(System.Management.ManagementOperationObserver)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1325C13-L1326C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1325C13-L1326C10" }, { "DocsId": "M:System.Management.ManagementObject.GetRelationships(System.Management.ManagementOperationObserver,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1343C13-L1344C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1343C13-L1344C10" }, { "DocsId": "M:System.Management.ManagementObject.GetRelationships(System.Management.ManagementOperationObserver,System.String,System.String,System.String,System.Boolean,System.Management.EnumerationOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1370C13-L1421C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1370C13-L1421C10" }, { "DocsId": "M:System.Management.ManagementObject.Put", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1438C13-L1438C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1438C13-L1438C42" }, { "DocsId": "M:System.Management.ManagementObject.Put(System.Management.PutOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1454C13-L1538C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1454C13-L1538C28" }, { "DocsId": "M:System.Management.ManagementObject.Put(System.Management.ManagementOperationObserver)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1599C13-L1600C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1599C13-L1600C10" }, { "DocsId": "M:System.Management.ManagementObject.Put(System.Management.ManagementOperationObserver,System.Management.PutOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1610C13-L1668C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1610C13-L1668C10" }, { "DocsId": "M:System.Management.ManagementObject.CopyTo(System.Management.ManagementPath)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1701C13-L1701C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1701C13-L1701C51" }, { "DocsId": "M:System.Management.ManagementObject.CopyTo(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1713C13-L1713C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1713C13-L1713C71" }, { "DocsId": "M:System.Management.ManagementObject.CopyTo(System.String,System.Management.PutOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1726C13-L1726C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1726C13-L1726C62" }, { "DocsId": "M:System.Management.ManagementObject.CopyTo(System.Management.ManagementPath,System.Management.PutOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1739C13-L1827C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1739C13-L1827C28" }, { "DocsId": "M:System.Management.ManagementObject.CopyTo(System.Management.ManagementOperationObserver,System.Management.ManagementPath)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1837C13-L1838C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1837C13-L1838C10" }, { "DocsId": "M:System.Management.ManagementObject.CopyTo(System.Management.ManagementOperationObserver,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1847C13-L1848C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1847C13-L1848C10" }, { "DocsId": "M:System.Management.ManagementObject.CopyTo(System.Management.ManagementOperationObserver,System.String,System.Management.PutOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1858C13-L1859C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1858C13-L1859C10" }, { "DocsId": "M:System.Management.ManagementObject.CopyTo(System.Management.ManagementOperationObserver,System.Management.ManagementPath,System.Management.PutOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1869C13-L1924C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1869C13-L1924C10" }, { "DocsId": "M:System.Management.ManagementObject.Delete", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1937C13-L1938C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1937C13-L1938C10" }, { "DocsId": "M:System.Management.ManagementObject.Delete(System.Management.DeleteOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1946C13-L1990C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1946C13-L1990C10" }, { "DocsId": "M:System.Management.ManagementObject.Delete(System.Management.ManagementOperationObserver)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1999C13-L2000C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L1999C13-L2000C10" }, { "DocsId": "M:System.Management.ManagementObject.Delete(System.Management.ManagementOperationObserver,System.Management.DeleteOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L2009C13-L2057C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L2009C13-L2057C10" }, { "DocsId": "M:System.Management.ManagementObject.InvokeMethod(System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L2130C13-L2156C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L2130C13-L2156C27" }, { "DocsId": "M:System.Management.ManagementObject.InvokeMethod(System.Management.ManagementOperationObserver,System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L2177C13-L2198C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L2177C13-L2198C10" }, { "DocsId": "M:System.Management.ManagementObject.InvokeMethod(System.String,System.Management.ManagementBaseObject,System.Management.InvokeMethodOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L2276C13-L2323C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L2276C13-L2323C34" }, { "DocsId": "M:System.Management.ManagementObject.InvokeMethod(System.Management.ManagementOperationObserver,System.String,System.Management.ManagementBaseObject,System.Management.InvokeMethodOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L2343C13-L2390C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L2343C13-L2390C10" }, { "DocsId": "M:System.Management.ManagementObject.GetMethodParameters(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L2413C13-L2415C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L2413C13-L2415C33" }, { "DocsId": "M:System.Management.ManagementObject.Clone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L2493C13-L2511C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L2493C13-L2511C73" }, { "DocsId": "M:System.Management.ManagementObject.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L2527C13-L2530C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L2527C13-L2530C27" }, { "DocsId": "P:System.Management.ManagementObject.Scope", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L510C17-L510C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L510C17-L510C63" }, { "DocsId": "P:System.Management.ManagementObject.Path", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L562C17-L562C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L562C17-L562C61" }, { "DocsId": "P:System.Management.ManagementObject.Options", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L626C17-L626C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L626C17-L626C66" }, { "DocsId": "P:System.Management.ManagementObject.ClassPath", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L671C17-L721C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs#L671C17-L721C34" } ], "DocsId": "T:System.Management.ManagementObject", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObject.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObject.cs" }, { "Members": [ { "DocsId": "M:System.Management.ManagementObjectCollection.Finalize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObjectCollection.cs#L92C13-L93C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObjectCollection.cs#L92C13-L93C10" }, { "DocsId": "M:System.Management.ManagementObjectCollection.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObjectCollection.cs#L102C13-L106C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObjectCollection.cs#L102C13-L106C10" }, { "DocsId": "M:System.Management.ManagementObjectCollection.CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObjectCollection.cs#L201C13-L235C20" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObjectCollection.cs#L201C13-L235C20" }, { "DocsId": "M:System.Management.ManagementObjectCollection.CopyTo(System.Management.ManagementBaseObject[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObjectCollection.cs#L246C13-L247C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObjectCollection.cs#L246C13-L247C10" }, { "DocsId": "M:System.Management.ManagementObjectCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObjectCollection.cs#L269C13-L329C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObjectCollection.cs#L269C13-L329C71" }, { "DocsId": "M:System.Management.ManagementObjectCollection.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObjectCollection.cs#L344C13-L344C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObjectCollection.cs#L344C13-L344C36" }, { "DocsId": "P:System.Management.ManagementObjectCollection.Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObjectCollection.cs#L137C17-L152C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObjectCollection.cs#L137C17-L152C30" }, { "DocsId": "P:System.Management.ManagementObjectCollection.IsSynchronized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObjectCollection.cs#L167C17-L170C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObjectCollection.cs#L167C17-L170C30" }, { "DocsId": "P:System.Management.ManagementObjectCollection.SyncRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObjectCollection.cs#L184C17-L187C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObjectCollection.cs#L184C17-L187C29" }, { "DocsId": "T:System.Management.ManagementObjectCollection.ManagementObjectEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObjectCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObjectCollection.cs" } ], "DocsId": "T:System.Management.ManagementObjectCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObjectCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObjectCollection.cs" }, { "Members": [ { "DocsId": "M:System.Management.ManagementObjectSearcher.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObjectSearcher.cs#L86C45-L86C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObjectSearcher.cs#L86C45-L86C88" }, { "DocsId": "M:System.Management.ManagementObjectSearcher.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObjectSearcher.cs#L101C63-L101C113" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObjectSearcher.cs#L101C63-L101C113" }, { "DocsId": "M:System.Management.ManagementObjectSearcher.#ctor(System.Management.ObjectQuery)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObjectSearcher.cs#L116C62-L116C89" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObjectSearcher.cs#L116C62-L116C89" }, { "DocsId": "M:System.Management.ManagementObjectSearcher.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObjectSearcher.cs#L138C13-L139C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObjectSearcher.cs#L138C13-L139C12" }, { "DocsId": "M:System.Management.ManagementObjectSearcher.#ctor(System.Management.ManagementScope,System.Management.ObjectQuery)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObjectSearcher.cs#L161C85-L161C113" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObjectSearcher.cs#L161C85-L161C113" }, { "DocsId": "M:System.Management.ManagementObjectSearcher.#ctor(System.String,System.String,System.Management.EnumerationOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObjectSearcher.cs#L183C13-L184C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObjectSearcher.cs#L183C13-L184C12" }, { "DocsId": "M:System.Management.ManagementObjectSearcher.#ctor(System.Management.ManagementScope,System.Management.ObjectQuery,System.Management.EnumerationOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObjectSearcher.cs#L205C9-L218C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObjectSearcher.cs#L205C9-L218C10" }, { "DocsId": "M:System.Management.ManagementObjectSearcher.Get", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObjectSearcher.cs#L323C13-L392C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObjectSearcher.cs#L323C13-L392C71" }, { "DocsId": "M:System.Management.ManagementObjectSearcher.Get(System.Management.ManagementOperationObserver)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObjectSearcher.cs#L405C13-L483C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObjectSearcher.cs#L405C13-L483C10" }, { "DocsId": "P:System.Management.ManagementObjectSearcher.Scope", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObjectSearcher.cs#L249C17-L249C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObjectSearcher.cs#L249C17-L249C30" }, { "DocsId": "P:System.Management.ManagementObjectSearcher.Query", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObjectSearcher.cs#L275C17-L275C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObjectSearcher.cs#L275C17-L275C30" }, { "DocsId": "P:System.Management.ManagementObjectSearcher.Options", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObjectSearcher.cs#L296C17-L296C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObjectSearcher.cs#L296C17-L296C32" } ], "DocsId": "T:System.Management.ManagementObjectSearcher", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObjectSearcher.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObjectSearcher.cs" }, { "Members": [ { "DocsId": "M:System.Management.ObjectReadyEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" }, { "DocsId": "M:System.Management.ObjectReadyEventHandler.Invoke(System.Object,System.Management.ObjectReadyEventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" }, { "DocsId": "M:System.Management.ObjectReadyEventHandler.BeginInvoke(System.Object,System.Management.ObjectReadyEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" }, { "DocsId": "M:System.Management.ObjectReadyEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" } ], "DocsId": "T:System.Management.ObjectReadyEventHandler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" }, { "Members": [ { "DocsId": "M:System.Management.CompletedEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" }, { "DocsId": "M:System.Management.CompletedEventHandler.Invoke(System.Object,System.Management.CompletedEventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" }, { "DocsId": "M:System.Management.CompletedEventHandler.BeginInvoke(System.Object,System.Management.CompletedEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" }, { "DocsId": "M:System.Management.CompletedEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" } ], "DocsId": "T:System.Management.CompletedEventHandler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" }, { "Members": [ { "DocsId": "M:System.Management.ProgressEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" }, { "DocsId": "M:System.Management.ProgressEventHandler.Invoke(System.Object,System.Management.ProgressEventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" }, { "DocsId": "M:System.Management.ProgressEventHandler.BeginInvoke(System.Object,System.Management.ProgressEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" }, { "DocsId": "M:System.Management.ProgressEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" } ], "DocsId": "T:System.Management.ProgressEventHandler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" }, { "Members": [ { "DocsId": "M:System.Management.ObjectPutEventHandler.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" }, { "DocsId": "M:System.Management.ObjectPutEventHandler.Invoke(System.Object,System.Management.ObjectPutEventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" }, { "DocsId": "M:System.Management.ObjectPutEventHandler.BeginInvoke(System.Object,System.Management.ObjectPutEventArgs,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" }, { "DocsId": "M:System.Management.ObjectPutEventHandler.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" } ], "DocsId": "T:System.Management.ObjectPutEventHandler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" }, { "Members": [ { "DocsId": "M:System.Management.ManagementOperationObserver.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs#L153C9-L158C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs#L153C9-L158C10" }, { "DocsId": "M:System.Management.ManagementOperationObserver.Cancel", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs#L167C13-L211C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs#L167C13-L211C10" }, { "DocsId": "E:System.Management.ManagementOperationObserver.ObjectReady", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" }, { "DocsId": "E:System.Management.ManagementOperationObserver.Completed", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" }, { "DocsId": "E:System.Management.ManagementOperationObserver.Progress", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" }, { "DocsId": "E:System.Management.ManagementOperationObserver.ObjectPut", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" } ], "DocsId": "T:System.Management.ManagementOperationObserver", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOperationWatcher.cs" }, { "Members": [ { "DocsId": "F:System.Management.AuthenticationLevel.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" }, { "DocsId": "F:System.Management.AuthenticationLevel.Default", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" }, { "DocsId": "F:System.Management.AuthenticationLevel.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" }, { "DocsId": "F:System.Management.AuthenticationLevel.Connect", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" }, { "DocsId": "F:System.Management.AuthenticationLevel.Call", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" }, { "DocsId": "F:System.Management.AuthenticationLevel.Packet", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" }, { "DocsId": "F:System.Management.AuthenticationLevel.PacketIntegrity", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" }, { "DocsId": "F:System.Management.AuthenticationLevel.PacketPrivacy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" }, { "DocsId": "F:System.Management.AuthenticationLevel.Unchanged", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" } ], "DocsId": "T:System.Management.AuthenticationLevel", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" }, { "Members": [ { "DocsId": "F:System.Management.ImpersonationLevel.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" }, { "DocsId": "F:System.Management.ImpersonationLevel.Default", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" }, { "DocsId": "F:System.Management.ImpersonationLevel.Anonymous", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" }, { "DocsId": "F:System.Management.ImpersonationLevel.Identify", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" }, { "DocsId": "F:System.Management.ImpersonationLevel.Impersonate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" }, { "DocsId": "F:System.Management.ImpersonationLevel.Delegate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" } ], "DocsId": "T:System.Management.ImpersonationLevel", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" }, { "Members": [ { "DocsId": "F:System.Management.PutType.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" }, { "DocsId": "F:System.Management.PutType.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" }, { "DocsId": "F:System.Management.PutType.UpdateOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" }, { "DocsId": "F:System.Management.PutType.CreateOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" }, { "DocsId": "F:System.Management.PutType.UpdateOrCreate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" } ], "DocsId": "T:System.Management.PutType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" }, { "Members": [ { "DocsId": "M:System.Management.ManagementOptions.Clone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" }, { "DocsId": "F:System.Management.ManagementOptions.InfiniteTimeout", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" }, { "DocsId": "P:System.Management.ManagementOptions.Context", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L169C17-L169C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L169C17-L169C73" }, { "DocsId": "P:System.Management.ManagementOptions.Timeout", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L207C15-L207C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L207C15-L207C30" } ], "DocsId": "T:System.Management.ManagementOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" }, { "Members": [ { "DocsId": "M:System.Management.EnumerationOptions.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L514C39-L514C120" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L514C39-L514C120" }, { "DocsId": "M:System.Management.EnumerationOptions.#ctor(System.Management.ManagementNamedValueCollection,System.TimeSpan,System.Int32,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L543C35-L553C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L543C35-L553C10" }, { "DocsId": "M:System.Management.EnumerationOptions.Clone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L563C13-L569C129" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L563C13-L569C129" }, { "DocsId": "P:System.Management.EnumerationOptions.ReturnImmediately", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L329C19-L329C121" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L329C19-L329C121" }, { "DocsId": "P:System.Management.EnumerationOptions.BlockSize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L347C19-L347C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L347C19-L347C36" }, { "DocsId": "P:System.Management.EnumerationOptions.Rewindable", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L378C19-L378C115" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L378C19-L378C115" }, { "DocsId": "P:System.Management.EnumerationOptions.UseAmendedQualifiers", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L405C19-L405C125" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L405C19-L405C125" }, { "DocsId": "P:System.Management.EnumerationOptions.EnsureLocatable", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L428C15-L428C115" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L428C15-L428C115" }, { "DocsId": "P:System.Management.EnumerationOptions.PrototypeOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L451C15-L451C106" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L451C15-L451C106" }, { "DocsId": "P:System.Management.EnumerationOptions.DirectRead", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L472C15-L472C110" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L472C15-L472C110" }, { "DocsId": "P:System.Management.EnumerationOptions.EnumerateDeep", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L495C15-L495C104" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L495C15-L495C104" } ], "DocsId": "T:System.Management.EnumerationOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" }, { "Members": [ { "DocsId": "M:System.Management.EventWatcherOptions.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L691C15-L691C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L691C15-L691C49" }, { "DocsId": "M:System.Management.EventWatcherOptions.#ctor(System.Management.ManagementNamedValueCollection,System.TimeSpan,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L663C9-L705C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L663C9-L705C10" }, { "DocsId": "M:System.Management.EventWatcherOptions.Clone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L715C13-L720C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L715C13-L720C76" }, { "DocsId": "P:System.Management.EventWatcherOptions.BlockSize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L674C19-L674C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L674C19-L674C36" } ], "DocsId": "T:System.Management.EventWatcherOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" }, { "Members": [ { "DocsId": "M:System.Management.ObjectGetOptions.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L830C37-L830C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L830C37-L830C75" }, { "DocsId": "M:System.Management.ObjectGetOptions.#ctor(System.Management.ManagementNamedValueCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L837C75-L837C116" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L837C75-L837C116" }, { "DocsId": "M:System.Management.ObjectGetOptions.#ctor(System.Management.ManagementNamedValueCollection,System.TimeSpan,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L846C120-L849C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L846C120-L849C10" }, { "DocsId": "M:System.Management.ObjectGetOptions.Clone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L859C13-L864C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L859C13-L864C84" }, { "DocsId": "P:System.Management.ObjectGetOptions.UseAmendedQualifiers", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L814C19-L814C125" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L814C19-L814C125" } ], "DocsId": "T:System.Management.ObjectGetOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" }, { "Members": [ { "DocsId": "M:System.Management.PutOptions.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L988C31-L988C93" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L988C31-L988C93" }, { "DocsId": "M:System.Management.PutOptions.#ctor(System.Management.ManagementNamedValueCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L995C69-L995C134" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L995C69-L995C134" }, { "DocsId": "M:System.Management.PutOptions.#ctor(System.Management.ManagementNamedValueCollection,System.TimeSpan,System.Boolean,System.Management.PutType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L1005C131-L1009C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L1005C131-L1009C10" }, { "DocsId": "M:System.Management.PutOptions.Clone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L1019C13-L1024C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L1019C13-L1024C84" }, { "DocsId": "P:System.Management.PutOptions.UseAmendedQualifiers", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L947C19-L947C125" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L947C19-L947C125" }, { "DocsId": "P:System.Management.PutOptions.Type", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L965C17-L967C103" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L965C17-L967C103" } ], "DocsId": "T:System.Management.PutOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" }, { "Members": [ { "DocsId": "M:System.Management.DeleteOptions.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L1088C34-L1088C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L1088C34-L1088C44" }, { "DocsId": "M:System.Management.DeleteOptions.#ctor(System.Management.ManagementNamedValueCollection,System.TimeSpan)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L1096C90-L1096C116" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L1096C90-L1096C116" }, { "DocsId": "M:System.Management.DeleteOptions.Clone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L1106C13-L1111C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L1106C13-L1111C59" } ], "DocsId": "T:System.Management.DeleteOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" }, { "Members": [ { "DocsId": "M:System.Management.InvokeMethodOptions.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L1175C40-L1175C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L1175C40-L1175C50" }, { "DocsId": "M:System.Management.InvokeMethodOptions.#ctor(System.Management.ManagementNamedValueCollection,System.TimeSpan)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L1183C96-L1183C122" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L1183C96-L1183C122" }, { "DocsId": "M:System.Management.InvokeMethodOptions.Clone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L1193C13-L1198C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L1193C13-L1198C65" } ], "DocsId": "T:System.Management.InvokeMethodOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" }, { "Members": [ { "DocsId": "M:System.Management.ConnectionOptions.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L1554C13-L1557C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L1554C13-L1557C12" }, { "DocsId": "M:System.Management.ConnectionOptions.#ctor(System.String,System.String,System.String,System.String,System.Management.ImpersonationLevel,System.Management.AuthenticationLevel,System.Boolean,System.Management.ManagementNamedValueCollection,System.TimeSpan)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L1578C77-L1603C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L1578C77-L1603C10" }, { "DocsId": "M:System.Management.ConnectionOptions.#ctor(System.String,System.String,System.Security.SecureString,System.String,System.Management.ImpersonationLevel,System.Management.AuthenticationLevel,System.Boolean,System.Management.ManagementNamedValueCollection,System.TimeSpan)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L1622C77-L1643C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L1622C77-L1643C10" }, { "DocsId": "M:System.Management.ConnectionOptions.Clone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L1653C13-L1658C102" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L1653C13-L1658C102" }, { "DocsId": "P:System.Management.ConnectionOptions.Locale", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L1295C19-L1295C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L1295C19-L1295C49" }, { "DocsId": "P:System.Management.ConnectionOptions.Username", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L1321C19-L1321C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L1321C19-L1321C35" }, { "DocsId": "P:System.Management.ConnectionOptions.Password", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L1347C17-L1379C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L1347C17-L1379C14" }, { "DocsId": "P:System.Management.ConnectionOptions.SecurePassword", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L1396C17-L1418C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L1396C17-L1418C14" }, { "DocsId": "P:System.Management.ConnectionOptions.Authority", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L1443C19-L1443C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L1443C19-L1443C52" }, { "DocsId": "P:System.Management.ConnectionOptions.Impersonation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L1475C19-L1475C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L1475C19-L1475C40" }, { "DocsId": "P:System.Management.ConnectionOptions.Authentication", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L1506C19-L1506C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L1506C19-L1506C41" }, { "DocsId": "P:System.Management.ConnectionOptions.EnablePrivileges", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L1530C19-L1530C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs#L1530C19-L1530C43" } ], "DocsId": "T:System.Management.ConnectionOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementOptions.cs" }, { "Members": [ { "DocsId": "M:System.Management.ManagementPath.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementPath.cs#L184C35-L184C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementPath.cs#L184C35-L184C57" }, { "DocsId": "M:System.Management.ManagementPath.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementPath.cs#L190C9-L194C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementPath.cs#L190C9-L194C10" }, { "DocsId": "M:System.Management.ManagementPath.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementPath.cs#L206C13-L206C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementPath.cs#L206C13-L206C30" }, { "DocsId": "M:System.Management.ManagementPath.Clone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementPath.cs#L217C13-L217C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementPath.cs#L217C13-L217C45" }, { "DocsId": "M:System.Management.ManagementPath.System#ICloneable#Clone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementPath.cs#L228C13-L228C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementPath.cs#L228C13-L228C28" }, { "DocsId": "M:System.Management.ManagementPath.SetAsClass", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementPath.cs#L408C13-L421C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementPath.cs#L408C13-L421C94" }, { "DocsId": "M:System.Management.ManagementPath.SetAsSingleton", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementPath.cs#L430C13-L443C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementPath.cs#L430C13-L443C94" }, { "DocsId": "P:System.Management.ManagementPath.DefaultPath", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementPath.cs#L241C19-L241C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementPath.cs#L241C19-L241C53" }, { "DocsId": "P:System.Management.ManagementPath.Path", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementPath.cs#L462C17-L462C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementPath.cs#L462C17-L462C43" }, { "DocsId": "P:System.Management.ManagementPath.RelativePath", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementPath.cs#L502C17-L536C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementPath.cs#L502C17-L536C32" }, { "DocsId": "P:System.Management.ManagementPath.Server", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementPath.cs#L605C17-L633C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementPath.cs#L605C17-L633C32" }, { "DocsId": "P:System.Management.ManagementPath.NamespacePath", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementPath.cs#L856C17-L856C99" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementPath.cs#L856C17-L856C99" }, { "DocsId": "P:System.Management.ManagementPath.ClassName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementPath.cs#L889C17-L889C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementPath.cs#L889C17-L889C42" }, { "DocsId": "P:System.Management.ManagementPath.IsClass", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementPath.cs#L976C17-L990C101" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementPath.cs#L976C17-L990C101" }, { "DocsId": "P:System.Management.ManagementPath.IsInstance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementPath.cs#L1005C17-L1019C100" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementPath.cs#L1005C17-L1019C100" }, { "DocsId": "P:System.Management.ManagementPath.IsSingleton", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementPath.cs#L1034C17-L1048C101" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementPath.cs#L1034C17-L1048C101" } ], "DocsId": "T:System.Management.ManagementPath", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementPath.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementPath.cs" }, { "Members": [ { "DocsId": "M:System.Management.ManagementQuery.ParseQuery(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L60C68-L60C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L60C68-L60C69" }, { "DocsId": "M:System.Management.ManagementQuery.Clone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs" }, { "DocsId": "P:System.Management.ManagementQuery.QueryString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L76C19-L76C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L76C19-L76C54" }, { "DocsId": "P:System.Management.ManagementQuery.QueryLanguage", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L98C19-L98C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L98C19-L98C56" } ], "DocsId": "T:System.Management.ManagementQuery", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs" }, { "Members": [ { "DocsId": "M:System.Management.ObjectQuery.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L221C32-L221C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L221C32-L221C42" }, { "DocsId": "M:System.Management.ObjectQuery.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L228C44-L228C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L228C44-L228C59" }, { "DocsId": "M:System.Management.ObjectQuery.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L236C61-L236C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L236C61-L236C86" }, { "DocsId": "M:System.Management.ObjectQuery.Clone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L247C13-L247C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L247C13-L247C64" } ], "DocsId": "T:System.Management.ObjectQuery", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs" }, { "Members": [ { "DocsId": "M:System.Management.EventQuery.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L434C31-L434C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L434C31-L434C41" }, { "DocsId": "M:System.Management.EventQuery.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L440C43-L440C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L440C43-L440C58" }, { "DocsId": "M:System.Management.EventQuery.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L448C60-L448C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L448C60-L448C85" }, { "DocsId": "M:System.Management.EventQuery.Clone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L459C13-L459C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L459C13-L459C63" } ], "DocsId": "T:System.Management.EventQuery", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs" }, { "Members": [ { "DocsId": "M:System.Management.WqlObjectQuery.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L523C35-L523C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L523C35-L523C49" }, { "DocsId": "M:System.Management.WqlObjectQuery.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L530C47-L530C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L530C47-L530C62" }, { "DocsId": "M:System.Management.WqlObjectQuery.Clone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L555C13-L555C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L555C13-L555C52" }, { "DocsId": "P:System.Management.WqlObjectQuery.QueryLanguage", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L543C15-L543C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L543C15-L543C41" } ], "DocsId": "T:System.Management.WqlObjectQuery", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs" }, { "Members": [ { "DocsId": "M:System.Management.SelectQuery.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L626C32-L626C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L626C32-L626C46" }, { "DocsId": "M:System.Management.SelectQuery.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L654C9-L682C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L654C9-L682C10" }, { "DocsId": "M:System.Management.SelectQuery.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L697C66-L697C102" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L697C66-L697C102" }, { "DocsId": "M:System.Management.SelectQuery.#ctor(System.String,System.String,System.String[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L721C95-L732C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L721C95-L732C10" }, { "DocsId": "M:System.Management.SelectQuery.#ctor(System.Boolean,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L747C68-L758C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L747C68-L758C10" }, { "DocsId": "M:System.Management.SelectQuery.BuildQuery", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L913C13-L955C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L913C13-L955C10" }, { "DocsId": "M:System.Management.SelectQuery.ParseQuery(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L965C13-L1095C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L965C13-L1095C10" }, { "DocsId": "M:System.Management.SelectQuery.Clone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1105C13-L1121C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1105C13-L1121C57" }, { "DocsId": "P:System.Management.SelectQuery.QueryString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L787C17-L788C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L787C17-L788C41" }, { "DocsId": "P:System.Management.SelectQuery.IsSchemaQuery", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L812C15-L812C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L812C15-L812C36" }, { "DocsId": "P:System.Management.SelectQuery.ClassName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L846C19-L846C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L846C19-L846C52" }, { "DocsId": "P:System.Management.SelectQuery.Condition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L865C19-L865C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L865C19-L865C52" }, { "DocsId": "P:System.Management.SelectQuery.SelectedProperties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L884C19-L884C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L884C19-L884C45" } ], "DocsId": "T:System.Management.SelectQuery", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs" }, { "Members": [ { "DocsId": "M:System.Management.RelatedObjectQuery.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1215C39-L1215C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1215C39-L1215C53" }, { "DocsId": "M:System.Management.RelatedObjectQuery.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1252C9-L1283C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1252C9-L1283C10" }, { "DocsId": "M:System.Management.RelatedObjectQuery.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1291C79-L1293C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1291C79-L1293C12" }, { "DocsId": "M:System.Management.RelatedObjectQuery.#ctor(System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1308C9-L1328C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1308C9-L1328C10" }, { "DocsId": "M:System.Management.RelatedObjectQuery.#ctor(System.Boolean,System.String,System.String,System.String,System.String,System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1344C9-L1367C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1344C9-L1367C10" }, { "DocsId": "M:System.Management.RelatedObjectQuery.BuildQuery", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1564C13-L1624C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1564C13-L1624C10" }, { "DocsId": "M:System.Management.RelatedObjectQuery.ParseQuery(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1634C13-L1754C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1634C13-L1754C10" }, { "DocsId": "M:System.Management.RelatedObjectQuery.Clone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1766C13-L1773C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1766C13-L1773C55" }, { "DocsId": "P:System.Management.RelatedObjectQuery.IsSchemaQuery", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1385C15-L1385C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1385C15-L1385C36" }, { "DocsId": "P:System.Management.RelatedObjectQuery.SourceObject", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1405C19-L1405C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1405C19-L1405C55" }, { "DocsId": "P:System.Management.RelatedObjectQuery.RelatedClass", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1433C19-L1433C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1433C19-L1433C55" }, { "DocsId": "P:System.Management.RelatedObjectQuery.RelationshipClass", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1461C19-L1461C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1461C19-L1461C60" }, { "DocsId": "P:System.Management.RelatedObjectQuery.RelatedQualifier", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1479C19-L1479C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1479C19-L1479C59" }, { "DocsId": "P:System.Management.RelatedObjectQuery.RelationshipQualifier", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1497C19-L1497C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1497C19-L1497C64" }, { "DocsId": "P:System.Management.RelatedObjectQuery.RelatedRole", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1515C19-L1515C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1515C19-L1515C54" }, { "DocsId": "P:System.Management.RelatedObjectQuery.ThisRole", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1532C19-L1532C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1532C19-L1532C51" }, { "DocsId": "P:System.Management.RelatedObjectQuery.ClassDefinitionsOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1552C19-L1552C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1552C19-L1552C47" } ], "DocsId": "T:System.Management.RelatedObjectQuery", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs" }, { "Members": [ { "DocsId": "M:System.Management.RelationshipQuery.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1852C38-L1852C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1852C38-L1852C52" }, { "DocsId": "M:System.Management.RelationshipQuery.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1880C9-L1911C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1880C9-L1911C10" }, { "DocsId": "M:System.Management.RelationshipQuery.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1919C83-L1921C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1919C83-L1921C12" }, { "DocsId": "M:System.Management.RelationshipQuery.#ctor(System.String,System.String,System.String,System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1933C9-L1946C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1933C9-L1946C10" }, { "DocsId": "M:System.Management.RelationshipQuery.#ctor(System.Boolean,System.String,System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1959C9-L1976C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1959C9-L1976C10" }, { "DocsId": "M:System.Management.RelationshipQuery.BuildQuery", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2099C13-L2144C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2099C13-L2144C10" }, { "DocsId": "M:System.Management.RelationshipQuery.ParseQuery(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2154C13-L2260C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2154C13-L2260C10" }, { "DocsId": "M:System.Management.RelationshipQuery.Clone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2272C13-L2277C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2272C13-L2277C55" }, { "DocsId": "P:System.Management.RelationshipQuery.IsSchemaQuery", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1995C15-L1995C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L1995C15-L1995C36" }, { "DocsId": "P:System.Management.RelationshipQuery.SourceObject", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2015C19-L2015C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2015C19-L2015C55" }, { "DocsId": "P:System.Management.RelationshipQuery.RelationshipClass", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2033C19-L2033C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2033C19-L2033C60" }, { "DocsId": "P:System.Management.RelationshipQuery.RelationshipQualifier", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2051C19-L2051C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2051C19-L2051C64" }, { "DocsId": "P:System.Management.RelationshipQuery.ThisRole", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2069C19-L2069C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2069C19-L2069C51" }, { "DocsId": "P:System.Management.RelationshipQuery.ClassDefinitionsOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2087C19-L2087C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2087C19-L2087C47" } ], "DocsId": "T:System.Management.RelationshipQuery", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs" }, { "Members": [ { "DocsId": "M:System.Management.WqlEventQuery.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2443C34-L2443C96" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2443C34-L2443C96" }, { "DocsId": "M:System.Management.WqlEventQuery.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2471C9-L2497C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2471C9-L2497C10" }, { "DocsId": "M:System.Management.WqlEventQuery.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2518C73-L2518C150" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2518C73-L2518C150" }, { "DocsId": "M:System.Management.WqlEventQuery.#ctor(System.String,System.TimeSpan)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2543C41-L2544C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2543C41-L2544C12" }, { "DocsId": "M:System.Management.WqlEventQuery.#ctor(System.String,System.TimeSpan,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2575C41-L2576C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2575C41-L2576C12" }, { "DocsId": "M:System.Management.WqlEventQuery.#ctor(System.String,System.String,System.TimeSpan)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2607C41-L2608C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2607C41-L2608C12" }, { "DocsId": "M:System.Management.WqlEventQuery.#ctor(System.String,System.String,System.TimeSpan,System.String[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2646C13-L2647C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2646C13-L2647C12" }, { "DocsId": "M:System.Management.WqlEventQuery.#ctor(System.String,System.TimeSpan,System.String,System.TimeSpan,System.String[],System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2686C9-L2700C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2686C9-L2700C10" }, { "DocsId": "M:System.Management.WqlEventQuery.BuildQuery", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2966C13-L3013C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2966C13-L3013C10" }, { "DocsId": "M:System.Management.WqlEventQuery.ParseQuery(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L3022C13-L3134C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L3022C13-L3134C10" }, { "DocsId": "M:System.Management.WqlEventQuery.Clone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L3146C13-L3160C104" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L3146C13-L3160C104" }, { "DocsId": "P:System.Management.WqlEventQuery.QueryLanguage", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2714C15-L2714C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2714C15-L2714C41" }, { "DocsId": "P:System.Management.WqlEventQuery.QueryString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2729C17-L2730C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2729C17-L2730C41" }, { "DocsId": "P:System.Management.WqlEventQuery.EventClassName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2763C19-L2763C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2763C19-L2763C57" }, { "DocsId": "P:System.Management.WqlEventQuery.Condition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2797C19-L2797C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2797C19-L2797C52" }, { "DocsId": "P:System.Management.WqlEventQuery.WithinInterval", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2833C19-L2833C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2833C19-L2833C41" }, { "DocsId": "P:System.Management.WqlEventQuery.GroupWithinInterval", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2869C19-L2869C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2869C19-L2869C46" }, { "DocsId": "P:System.Management.WqlEventQuery.GroupByPropertyList", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2906C19-L2906C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2906C19-L2906C46" }, { "DocsId": "P:System.Management.WqlEventQuery.HavingCondition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2954C19-L2954C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs#L2954C19-L2954C58" } ], "DocsId": "T:System.Management.WqlEventQuery", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementQuery.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementQuery.cs" }, { "Members": [ { "DocsId": "M:System.Management.ManagementScope.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementScope.cs#L691C13-L695C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementScope.cs#L691C13-L695C10" }, { "DocsId": "M:System.Management.ManagementScope.#ctor(System.Management.ManagementPath)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementScope.cs#L710C55-L710C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementScope.cs#L710C55-L710C94" }, { "DocsId": "M:System.Management.ManagementScope.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementScope.cs#L723C47-L723C106" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementScope.cs#L723C47-L723C106" }, { "DocsId": "M:System.Management.ManagementScope.#ctor(System.String,System.Management.ConnectionOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementScope.cs#L742C74-L742C117" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementScope.cs#L742C74-L742C117" }, { "DocsId": "M:System.Management.ManagementScope.#ctor(System.Management.ManagementPath,System.Management.ConnectionOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementScope.cs#L766C9-L781C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementScope.cs#L766C9-L781C10" }, { "DocsId": "M:System.Management.ManagementScope.Clone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementScope.cs#L877C13-L877C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementScope.cs#L877C13-L877C49" }, { "DocsId": "M:System.Management.ManagementScope.System#ICloneable#Clone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementScope.cs#L889C13-L889C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementScope.cs#L889C13-L889C28" }, { "DocsId": "M:System.Management.ManagementScope.Connect", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementScope.cs#L921C13-L922C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementScope.cs#L921C13-L922C10" }, { "DocsId": "P:System.Management.ManagementScope.IsConnected", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementScope.cs#L597C17-L597C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementScope.cs#L597C17-L597C47" }, { "DocsId": "P:System.Management.ManagementScope.Options", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementScope.cs#L810C17-L810C126" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementScope.cs#L810C17-L810C126" }, { "DocsId": "P:System.Management.ManagementScope.Path", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementScope.cs#L848C17-L848C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementScope.cs#L848C17-L848C64" } ], "DocsId": "T:System.Management.ManagementScope", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementScope.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementScope.cs" }, { "Members": [ { "DocsId": "P:System.Management.MethodData.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/Method.cs#L147C19-L147C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/Method.cs#L147C19-L147C43" }, { "DocsId": "P:System.Management.MethodData.InParameters", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/Method.cs#L171C17-L172C93" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/Method.cs#L171C17-L172C93" }, { "DocsId": "P:System.Management.MethodData.OutParameters", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/Method.cs#L198C17-L199C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/Method.cs#L198C17-L199C95" }, { "DocsId": "P:System.Management.MethodData.Origin", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/Method.cs#L215C17-L228C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/Method.cs#L215C17-L228C34" }, { "DocsId": "P:System.Management.MethodData.Qualifiers", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/Method.cs#L243C54-L243C147" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/Method.cs#L243C54-L243C147" } ], "DocsId": "T:System.Management.MethodData", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/Method.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/Method.cs" }, { "Members": [ { "DocsId": "M:System.Management.MethodDataCollection.CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/MethodSet.cs#L152C38-L154C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/MethodSet.cs#L152C38-L154C10" }, { "DocsId": "M:System.Management.MethodDataCollection.CopyTo(System.Management.MethodData[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/MethodSet.cs#L164C13-L165C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/MethodSet.cs#L164C13-L165C10" }, { "DocsId": "M:System.Management.MethodDataCollection.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/MethodSet.cs#L172C13-L172C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/MethodSet.cs#L172C13-L172C68" }, { "DocsId": "M:System.Management.MethodDataCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/MethodSet.cs#L188C13-L188C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/MethodSet.cs#L188C13-L188C53" }, { "DocsId": "M:System.Management.MethodDataCollection.Remove(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/MethodSet.cs#L363C13-L385C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/MethodSet.cs#L363C13-L385C10" }, { "DocsId": "M:System.Management.MethodDataCollection.Add(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/MethodSet.cs#L403C13-L404C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/MethodSet.cs#L403C13-L404C10" }, { "DocsId": "M:System.Management.MethodDataCollection.Add(System.String,System.Management.ManagementBaseObject,System.Management.ManagementBaseObject)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/MethodSet.cs#L423C13-L452C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/MethodSet.cs#L423C13-L452C10" }, { "DocsId": "P:System.Management.MethodDataCollection.Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/MethodSet.cs#L75C17-L114C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/MethodSet.cs#L75C17-L114C26" }, { "DocsId": "P:System.Management.MethodDataCollection.IsSynchronized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/MethodSet.cs#L127C19-L127C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/MethodSet.cs#L127C19-L127C32" }, { "DocsId": "P:System.Management.MethodDataCollection.SyncRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/MethodSet.cs#L138C19-L138C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/MethodSet.cs#L138C19-L138C31" }, { "DocsId": "P:System.Management.MethodDataCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/MethodSet.cs#L343C17-L346C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/MethodSet.cs#L343C17-L346C59" }, { "DocsId": "T:System.Management.MethodDataCollection.MethodDataEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/MethodSet.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/MethodSet.cs" } ], "DocsId": "T:System.Management.MethodDataCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/MethodSet.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/MethodSet.cs" }, { "Members": [ { "DocsId": "P:System.Management.PropertyData.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/Property.cs#L124C19-L124C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/Property.cs#L124C19-L124C45" }, { "DocsId": "P:System.Management.PropertyData.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/Property.cs#L138C17-L141C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/Property.cs#L138C17-L141C95" }, { "DocsId": "P:System.Management.PropertyData.Type", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/Property.cs#L181C17-L182C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/Property.cs#L181C17-L182C95" }, { "DocsId": "P:System.Management.PropertyData.IsLocal", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/Property.cs#L197C17-L198C121" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/Property.cs#L197C17-L198C121" }, { "DocsId": "P:System.Management.PropertyData.IsArray", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/Property.cs#L212C17-L213C92" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/Property.cs#L212C17-L213C92" }, { "DocsId": "P:System.Management.PropertyData.Origin", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/Property.cs#L228C17-L241C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/Property.cs#L228C17-L241C34" }, { "DocsId": "P:System.Management.PropertyData.Qualifiers", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/Property.cs#L253C54-L253C151" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/Property.cs#L253C54-L253C151" } ], "DocsId": "T:System.Management.PropertyData", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/Property.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/Property.cs" }, { "Members": [ { "DocsId": "M:System.Management.PropertyDataCollection.CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/PropertySet.cs#L131C13-L168C20" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/PropertySet.cs#L131C13-L168C20" }, { "DocsId": "M:System.Management.PropertyDataCollection.CopyTo(System.Management.PropertyData[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/PropertySet.cs#L179C13-L180C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/PropertySet.cs#L179C13-L180C10" }, { "DocsId": "M:System.Management.PropertyDataCollection.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/PropertySet.cs#L186C13-L186C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/PropertySet.cs#L186C13-L186C80" }, { "DocsId": "M:System.Management.PropertyDataCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/PropertySet.cs#L198C13-L198C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/PropertySet.cs#L198C13-L198C65" }, { "DocsId": "M:System.Management.PropertyDataCollection.Remove(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/PropertySet.cs#L377C13-L394C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/PropertySet.cs#L377C13-L394C10" }, { "DocsId": "M:System.Management.PropertyDataCollection.Add(System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/PropertySet.cs#L413C13-L436C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/PropertySet.cs#L413C13-L436C10" }, { "DocsId": "M:System.Management.PropertyDataCollection.Add(System.String,System.Object,System.Management.CimType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/PropertySet.cs#L452C13-L478C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/PropertySet.cs#L452C13-L478C10" }, { "DocsId": "M:System.Management.PropertyDataCollection.Add(System.String,System.Management.CimType,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/PropertySet.cs#L494C13-L516C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/PropertySet.cs#L494C13-L516C10" }, { "DocsId": "P:System.Management.PropertyDataCollection.Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/PropertySet.cs#L75C17-L94C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/PropertySet.cs#L75C17-L94C45" }, { "DocsId": "P:System.Management.PropertyDataCollection.IsSynchronized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/PropertySet.cs#L107C19-L107C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/PropertySet.cs#L107C19-L107C32" }, { "DocsId": "P:System.Management.PropertyDataCollection.SyncRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/PropertySet.cs#L118C19-L118C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/PropertySet.cs#L118C19-L118C31" }, { "DocsId": "P:System.Management.PropertyDataCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/PropertySet.cs#L350C17-L353C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/PropertySet.cs#L350C17-L353C63" }, { "DocsId": "T:System.Management.PropertyDataCollection.PropertyDataEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/PropertySet.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/PropertySet.cs" } ], "DocsId": "T:System.Management.PropertyDataCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/PropertySet.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/PropertySet.cs" }, { "Members": [ { "DocsId": "P:System.Management.QualifierData.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/Qualifier.cs#L151C19-L151C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/Qualifier.cs#L151C19-L151C46" }, { "DocsId": "P:System.Management.QualifierData.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/Qualifier.cs#L172C17-L173C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/Qualifier.cs#L172C17-L173C70" }, { "DocsId": "P:System.Management.QualifierData.IsAmended", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/Qualifier.cs#L209C17-L211C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/Qualifier.cs#L209C17-L211C88" }, { "DocsId": "P:System.Management.QualifierData.IsLocal", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/Qualifier.cs#L247C17-L249C92" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/Qualifier.cs#L247C17-L249C92" }, { "DocsId": "P:System.Management.QualifierData.PropagatesToInstance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/Qualifier.cs#L265C17-L267C107" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/Qualifier.cs#L265C17-L267C107" }, { "DocsId": "P:System.Management.QualifierData.PropagatesToSubclass", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/Qualifier.cs#L303C17-L305C112" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/Qualifier.cs#L303C17-L305C112" }, { "DocsId": "P:System.Management.QualifierData.IsOverridable", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/Qualifier.cs#L341C17-L343C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/Qualifier.cs#L341C17-L343C97" } ], "DocsId": "T:System.Management.QualifierData", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/Qualifier.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/Qualifier.cs" }, { "Members": [ { "DocsId": "M:System.Management.QualifierDataCollection.CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/QualifierSet.cs#L180C13-L218C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/QualifierSet.cs#L180C13-L218C10" }, { "DocsId": "M:System.Management.QualifierDataCollection.CopyTo(System.Management.QualifierData[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/QualifierSet.cs#L230C13-L231C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/QualifierSet.cs#L230C13-L231C10" }, { "DocsId": "M:System.Management.QualifierDataCollection.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/QualifierSet.cs#L238C13-L238C111" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/QualifierSet.cs#L238C13-L238C111" }, { "DocsId": "M:System.Management.QualifierDataCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/QualifierSet.cs#L250C13-L250C96" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/QualifierSet.cs#L250C13-L250C96" }, { "DocsId": "M:System.Management.QualifierDataCollection.Remove(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/QualifierSet.cs#L426C13-L435C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/QualifierSet.cs#L426C13-L435C10" }, { "DocsId": "M:System.Management.QualifierDataCollection.Add(System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/QualifierSet.cs#L447C13-L448C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/QualifierSet.cs#L447C13-L448C10" }, { "DocsId": "M:System.Management.QualifierDataCollection.Add(System.String,System.Object,System.Boolean,System.Boolean,System.Boolean,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/QualifierSet.cs#L466C13-L484C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/QualifierSet.cs#L466C13-L484C10" }, { "DocsId": "P:System.Management.QualifierDataCollection.Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/QualifierSet.cs#L119C17-L144C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/QualifierSet.cs#L119C17-L144C14" }, { "DocsId": "P:System.Management.QualifierDataCollection.IsSynchronized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/QualifierSet.cs#L156C19-L156C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/QualifierSet.cs#L156C19-L156C32" }, { "DocsId": "P:System.Management.QualifierDataCollection.SyncRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/QualifierSet.cs#L167C19-L167C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/QualifierSet.cs#L167C19-L167C31" }, { "DocsId": "P:System.Management.QualifierDataCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/QualifierSet.cs#L413C17-L416C105" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/QualifierSet.cs#L413C17-L416C105" }, { "DocsId": "T:System.Management.QualifierDataCollection.QualifierDataEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/QualifierSet.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/QualifierSet.cs" } ], "DocsId": "T:System.Management.QualifierDataCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/QualifierSet.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/QualifierSet.cs" }, { "Members": [ { "DocsId": "F:System.Management.CodeLanguage.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/WMIGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/WMIGenerator.cs" }, { "DocsId": "F:System.Management.CodeLanguage.CSharp", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/WMIGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/WMIGenerator.cs" }, { "DocsId": "F:System.Management.CodeLanguage.JScript", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/WMIGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/WMIGenerator.cs" }, { "DocsId": "F:System.Management.CodeLanguage.VB", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/WMIGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/WMIGenerator.cs" }, { "DocsId": "F:System.Management.CodeLanguage.VJSharp", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/WMIGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/WMIGenerator.cs" }, { "DocsId": "F:System.Management.CodeLanguage.Mcpp", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/WMIGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/WMIGenerator.cs" } ], "DocsId": "T:System.Management.CodeLanguage", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/WMIGenerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/WMIGenerator.cs" }, { "Members": [ { "DocsId": "M:System.Management.ManagementObjectCollection.ManagementObjectEnumerator.Finalize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObjectCollection.cs#L430C17-L431C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObjectCollection.cs#L430C17-L431C14" }, { "DocsId": "M:System.Management.ManagementObjectCollection.ManagementObjectEnumerator.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObjectCollection.cs#L441C17-L461C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObjectCollection.cs#L441C17-L461C14" }, { "DocsId": "M:System.Management.ManagementObjectCollection.ManagementObjectEnumerator.System#Collections#IEnumerator#get_Current", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObjectCollection.cs#L497C21-L497C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObjectCollection.cs#L497C21-L497C36" }, { "DocsId": "M:System.Management.ManagementObjectCollection.ManagementObjectEnumerator.MoveNext", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObjectCollection.cs#L515C17-L589C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObjectCollection.cs#L515C17-L589C29" }, { "DocsId": "M:System.Management.ManagementObjectCollection.ManagementObjectEnumerator.Reset", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObjectCollection.cs#L600C17-L642C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObjectCollection.cs#L600C17-L642C14" }, { "DocsId": "P:System.Management.ManagementObjectCollection.ManagementObjectEnumerator.Current", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObjectCollection.cs#L475C21-L482C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObjectCollection.cs#L475C21-L482C49" }, { "DocsId": "P:System.Management.ManagementObjectCollection.ManagementObjectEnumerator.System#Collections#IEnumerator#Current", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObjectCollection.cs#L497C21-L497C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObjectCollection.cs#L497C21-L497C36" } ], "DocsId": "T:System.Management.ManagementObjectCollection.ManagementObjectEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/ManagementObjectCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/ManagementObjectCollection.cs" }, { "Members": [ { "DocsId": "M:System.Management.MethodDataCollection.MethodDataEnumerator.System#Collections#IEnumerator#get_Current", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/MethodSet.cs#L295C48-L295C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/MethodSet.cs#L295C48-L295C76" }, { "DocsId": "M:System.Management.MethodDataCollection.MethodDataEnumerator.MoveNext", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/MethodSet.cs#L316C17-L316C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/MethodSet.cs#L316C17-L316C38" }, { "DocsId": "M:System.Management.MethodDataCollection.MethodDataEnumerator.Reset", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/MethodSet.cs#L324C17-L325C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/MethodSet.cs#L324C17-L325C14" }, { "DocsId": "P:System.Management.MethodDataCollection.MethodDataEnumerator.System#Collections#IEnumerator#Current", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/MethodSet.cs#L295C48-L295C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/MethodSet.cs#L295C48-L295C76" }, { "DocsId": "P:System.Management.MethodDataCollection.MethodDataEnumerator.Current", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/MethodSet.cs#L306C21-L306C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/MethodSet.cs#L306C21-L306C71" } ], "DocsId": "T:System.Management.MethodDataCollection.MethodDataEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/MethodSet.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/MethodSet.cs" }, { "Members": [ { "DocsId": "M:System.Management.PropertyDataCollection.PropertyDataEnumerator.System#Collections#IEnumerator#get_Current", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/PropertySet.cs#L276C48-L276C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/PropertySet.cs#L276C48-L276C76" }, { "DocsId": "M:System.Management.PropertyDataCollection.PropertyDataEnumerator.MoveNext", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/PropertySet.cs#L306C17-L310C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/PropertySet.cs#L306C17-L310C71" }, { "DocsId": "M:System.Management.PropertyDataCollection.PropertyDataEnumerator.Reset", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/PropertySet.cs#L319C17-L320C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/PropertySet.cs#L319C17-L320C14" }, { "DocsId": "P:System.Management.PropertyDataCollection.PropertyDataEnumerator.System#Collections#IEnumerator#Current", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/PropertySet.cs#L276C48-L276C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/PropertySet.cs#L276C48-L276C76" }, { "DocsId": "P:System.Management.PropertyDataCollection.PropertyDataEnumerator.Current", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/PropertySet.cs#L289C21-L292C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/PropertySet.cs#L289C21-L292C79" } ], "DocsId": "T:System.Management.PropertyDataCollection.PropertyDataEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/PropertySet.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/PropertySet.cs" }, { "Members": [ { "DocsId": "M:System.Management.QualifierDataCollection.QualifierDataEnumerator.System#Collections#IEnumerator#get_Current", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/QualifierSet.cs#L350C48-L350C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/QualifierSet.cs#L350C48-L350C76" }, { "DocsId": "M:System.Management.QualifierDataCollection.QualifierDataEnumerator.MoveNext", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/QualifierSet.cs#L380C17-L384C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/QualifierSet.cs#L380C17-L384C72" }, { "DocsId": "M:System.Management.QualifierDataCollection.QualifierDataEnumerator.Reset", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/QualifierSet.cs#L392C17-L393C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/QualifierSet.cs#L392C17-L393C14" }, { "DocsId": "P:System.Management.QualifierDataCollection.QualifierDataEnumerator.System#Collections#IEnumerator#Current", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/QualifierSet.cs#L350C48-L350C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/QualifierSet.cs#L350C48-L350C76" }, { "DocsId": "P:System.Management.QualifierDataCollection.QualifierDataEnumerator.Current", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/QualifierSet.cs#L362C21-L366C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/QualifierSet.cs#L362C21-L366C87" } ], "DocsId": "T:System.Management.QualifierDataCollection.QualifierDataEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Management/src/System/Management/QualifierSet.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Management/src/System/Management/QualifierSet.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/System.Memory.Data.json b/xml/SourceLinkInformation/net-9.0/System.Memory.Data.json index 3236f42fb08..2dc372297c5 100644 --- a/xml/SourceLinkInformation/net-9.0/System.Memory.Data.json +++ b/xml/SourceLinkInformation/net-9.0/System.Memory.Data.json @@ -1,171 +1,170 @@ { "Assembly": "System.Memory.Data", - "GUID": "0E82FA97DAC442AC9943E196192F8F99FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "8FC468CC570A4C0B8B5F270195C9E8AEFFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:System.BinaryData.#ctor(System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L60C9-L63C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L60C9-L63C10" }, { "DocsId": "M:System.BinaryData.#ctor(System.Byte[],System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L72C61-L75C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L72C61-L75C10" }, { "DocsId": "M:System.BinaryData.#ctor(System.Object,System.Text.Json.JsonSerializerOptions,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L90C119-L94C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L90C119-L94C10" }, { "DocsId": "M:System.BinaryData.#ctor(System.Object,System.Text.Json.Serialization.JsonSerializerContext,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L107C108-L111C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L107C108-L111C10" }, { "DocsId": "M:System.BinaryData.#ctor(System.ReadOnlyMemory{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L118C9-L121C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L118C9-L121C10" }, { "DocsId": "M:System.BinaryData.#ctor(System.ReadOnlyMemory{System.Byte},System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L130C75-L133C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L130C75-L133C10" }, { "DocsId": "M:System.BinaryData.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L140C9-L148C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L140C9-L148C10" }, { "DocsId": "M:System.BinaryData.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L158C61-L161C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L158C61-L161C10" }, { "DocsId": "M:System.BinaryData.FromBytes(System.ReadOnlyMemory{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L169C74-L169C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L169C74-L169C94" }, { "DocsId": "M:System.BinaryData.FromBytes(System.ReadOnlyMemory{System.Byte},System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L181C16-L181C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L181C16-L181C47" }, { "DocsId": "M:System.BinaryData.FromBytes(System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L189C60-L189C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L189C60-L189C80" }, { "DocsId": "M:System.BinaryData.FromBytes(System.Byte[],System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L200C16-L200C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L200C16-L200C47" }, { "DocsId": "M:System.BinaryData.FromString(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L208C61-L208C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L208C61-L208C81" }, { "DocsId": "M:System.BinaryData.FromString(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L220C16-L220C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L220C16-L220C47" }, { "DocsId": "M:System.BinaryData.FromStream(System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L230C13-L235C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L230C13-L235C83" }, { "DocsId": "M:System.BinaryData.FromStream(System.IO.Stream,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L249C13-L254C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L249C13-L254C94" }, { "DocsId": "M:System.BinaryData.FromStreamAsync(System.IO.Stream,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L266C13-L271C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L266C13-L271C95" }, { "DocsId": "M:System.BinaryData.FromStreamAsync(System.IO.Stream,System.String,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L287C13-L292C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L287C13-L292C87" }, { "DocsId": "M:System.BinaryData.FromObjectAsJson``1(``0,System.Text.Json.JsonSerializerOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L346C16-L346C120" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L346C16-L346C120" }, { "DocsId": "M:System.BinaryData.FromObjectAsJson``1(``0,System.Text.Json.Serialization.Metadata.JsonTypeInfo{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L359C16-L359C125" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L359C16-L359C125" }, { "DocsId": "M:System.BinaryData.WithMediaType(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L368C16-L368C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L368C16-L368C49" }, { "DocsId": "M:System.BinaryData.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L385C13-L394C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L385C13-L394C66" }, { "DocsId": "M:System.BinaryData.ToStream", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L402C37-L402C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L402C37-L402C69" }, { "DocsId": "M:System.BinaryData.ToMemory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L408C51-L408C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L408C51-L408C57" }, { "DocsId": "M:System.BinaryData.ToArray", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L414C36-L414C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L414C36-L414C52" }, { "DocsId": "M:System.BinaryData.ToObjectFromJson``1(System.Text.Json.JsonSerializerOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L427C16-L427C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L427C16-L427C80" }, { "DocsId": "M:System.BinaryData.ToObjectFromJson``1(System.Text.Json.Serialization.Metadata.JsonTypeInfo{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L438C16-L438C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L438C16-L438C82" }, { "DocsId": "M:System.BinaryData.op_Implicit(System.BinaryData)~System.ReadOnlyMemory{System.Byte}", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L455C83-L455C106" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L455C83-L455C106" }, { "DocsId": "M:System.BinaryData.op_Implicit(System.BinaryData)~System.ReadOnlySpan{System.Byte}", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L463C13-L467C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L463C13-L467C37" }, { "DocsId": "M:System.BinaryData.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L478C73-L478C99" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L478C73-L478C99" }, { "DocsId": "M:System.BinaryData.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L482C46-L482C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L482C46-L482C64" }, { "DocsId": "P:System.BinaryData.Empty", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L35C42-L35C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L35C42-L35C46" }, { "DocsId": "P:System.BinaryData.Length", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L41C30-L41C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L41C30-L41C43" }, { "DocsId": "P:System.BinaryData.IsEmpty", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L47C32-L47C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L47C32-L47C46" }, { "DocsId": "P:System.BinaryData.MediaType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L53C36-L53C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Memory.Data/src/System/BinaryData.cs#L53C36-L53C40" } ], "DocsId": "T:System.BinaryData", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Memory.Data/src/System/BinaryData.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Memory.Data/src/System/BinaryData.cs" }, { "Members": [ { "DocsId": "M:System.Text.Json.Serialization.BinaryDataJsonConverter.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Memory.Data/src/System/BinaryDataConverter.cs#L14C9-L15C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Memory.Data/src/System/BinaryDataConverter.cs#L14C9-L15C12" }, { "DocsId": "M:System.Text.Json.Serialization.BinaryDataJsonConverter.Read(System.Text.Json.Utf8JsonReader@,System.Type,System.Text.Json.JsonSerializerOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Memory.Data/src/System/BinaryDataConverter.cs#L20C13-L20C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Memory.Data/src/System/BinaryDataConverter.cs#L20C13-L20C70" }, { "DocsId": "M:System.Text.Json.Serialization.BinaryDataJsonConverter.Write(System.Text.Json.Utf8JsonWriter,System.BinaryData,System.Text.Json.JsonSerializerOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Memory.Data/src/System/BinaryDataConverter.cs#L26C13-L27C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Memory.Data/src/System/BinaryDataConverter.cs#L26C13-L27C10" } ], "DocsId": "T:System.Text.Json.Serialization.BinaryDataJsonConverter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Memory.Data/src/System/BinaryDataConverter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Memory.Data/src/System/BinaryDataConverter.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/System.Net.Http.WinHttpHandler.json b/xml/SourceLinkInformation/net-9.0/System.Net.Http.WinHttpHandler.json index fd5da8bdb55..98682b9b0f9 100644 --- a/xml/SourceLinkInformation/net-9.0/System.Net.Http.WinHttpHandler.json +++ b/xml/SourceLinkInformation/net-9.0/System.Net.Http.WinHttpHandler.json @@ -1,177 +1,176 @@ { "Assembly": "System.Net.Http.WinHttpHandler", - "GUID": "9C79754111D444A19F22A2FE9D4EB65EFFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "7E1235250BDC421E888CB65379D5BC75FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "F:System.Net.Http.WindowsProxyUsePolicy.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs" }, { "DocsId": "F:System.Net.Http.WindowsProxyUsePolicy.DoNotUseProxy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs" }, { "DocsId": "F:System.Net.Http.WindowsProxyUsePolicy.UseWinHttpProxy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs" }, { "DocsId": "F:System.Net.Http.WindowsProxyUsePolicy.UseWinInetProxy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs" }, { "DocsId": "F:System.Net.Http.WindowsProxyUsePolicy.UseCustomProxy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs" } ], "DocsId": "T:System.Net.Http.WindowsProxyUsePolicy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs" }, { "Members": [ { "DocsId": "F:System.Net.Http.CookieUsePolicy.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs" }, { "DocsId": "F:System.Net.Http.CookieUsePolicy.IgnoreCookies", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs" }, { "DocsId": "F:System.Net.Http.CookieUsePolicy.UseInternalCookieStoreOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs" }, { "DocsId": "F:System.Net.Http.CookieUsePolicy.UseSpecifiedCookieContainer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs" } ], "DocsId": "T:System.Net.Http.CookieUsePolicy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs" }, { "Members": [ { "DocsId": "M:System.Net.Http.WinHttpHandler.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L52C9-L98C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L52C9-L98C10" }, { "DocsId": "M:System.Net.Http.WinHttpHandler.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L541C13-L552C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L541C13-L552C10" }, { "DocsId": "M:System.Net.Http.WinHttpHandler.SendAsync(System.Net.Http.HttpRequestMessage,System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L558C13-L621C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L558C13-L621C29" }, { "DocsId": "P:System.Net.Http.WinHttpHandler.AutomaticRedirection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L105C17-L105C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L105C17-L105C46" }, { "DocsId": "P:System.Net.Http.WinHttpHandler.MaxAutomaticRedirections", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L119C17-L119C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L119C17-L119C50" }, { "DocsId": "P:System.Net.Http.WinHttpHandler.AutomaticDecompression", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L141C17-L141C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L141C17-L141C48" }, { "DocsId": "P:System.Net.Http.WinHttpHandler.CookieUsePolicy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L155C17-L155C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L155C17-L155C41" }, { "DocsId": "P:System.Net.Http.WinHttpHandler.CookieContainer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L176C17-L176C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L176C17-L176C41" }, { "DocsId": "P:System.Net.Http.WinHttpHandler.SslProtocols", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L190C17-L190C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L190C17-L190C38" }, { "DocsId": "P:System.Net.Http.WinHttpHandler.ServerCertificateValidationCallback", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L210C17-L210C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L210C17-L210C61" }, { "DocsId": "P:System.Net.Http.WinHttpHandler.CheckCertificateRevocationList", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L225C17-L225C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L225C17-L225C56" }, { "DocsId": "P:System.Net.Http.WinHttpHandler.ClientCertificateOption", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L239C17-L239C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L239C17-L239C49" }, { "DocsId": "P:System.Net.Http.WinHttpHandler.ClientCertificates", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L259C17-L264C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L259C17-L264C81" }, { "DocsId": "P:System.Net.Http.WinHttpHandler.PreAuthenticate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L272C17-L272C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L272C17-L272C41" }, { "DocsId": "P:System.Net.Http.WinHttpHandler.ServerCredentials", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L285C17-L285C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L285C17-L285C43" }, { "DocsId": "P:System.Net.Http.WinHttpHandler.WindowsProxyUsePolicy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L298C17-L298C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L298C17-L298C47" }, { "DocsId": "P:System.Net.Http.WinHttpHandler.DefaultProxyCredentials", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L320C17-L320C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L320C17-L320C49" }, { "DocsId": "P:System.Net.Http.WinHttpHandler.Proxy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L334C17-L334C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L334C17-L334C31" }, { "DocsId": "P:System.Net.Http.WinHttpHandler.MaxConnectionsPerServer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L348C17-L348C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L348C17-L348C49" }, { "DocsId": "P:System.Net.Http.WinHttpHandler.SendTimeout", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L372C17-L372C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L372C17-L372C37" }, { "DocsId": "P:System.Net.Http.WinHttpHandler.ReceiveHeadersTimeout", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L388C17-L388C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L388C17-L388C47" }, { "DocsId": "P:System.Net.Http.WinHttpHandler.ReceiveDataTimeout", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L403C17-L403C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L403C17-L403C44" }, { "DocsId": "P:System.Net.Http.WinHttpHandler.TcpKeepAliveEnabled", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L426C17-L426C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L426C17-L426C45" }, { "DocsId": "P:System.Net.Http.WinHttpHandler.TcpKeepAliveTime", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L447C17-L447C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L447C17-L447C42" }, { "DocsId": "P:System.Net.Http.WinHttpHandler.TcpKeepAliveInterval", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L469C17-L469C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L469C17-L469C46" }, { "DocsId": "P:System.Net.Http.WinHttpHandler.MaxResponseHeadersLength", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L483C17-L483C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L483C17-L483C50" }, { "DocsId": "P:System.Net.Http.WinHttpHandler.MaxResponseDrainSize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L505C17-L505C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L505C17-L505C46" }, { "DocsId": "P:System.Net.Http.WinHttpHandler.EnableMultipleHttp2Connections", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L527C17-L527C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L527C17-L527C56" }, { "DocsId": "P:System.Net.Http.WinHttpHandler.Properties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L536C58-L536C106" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs#L536C58-L536C106" } ], "DocsId": "T:System.Net.Http.WinHttpHandler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http/WinHttpHandler.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/System.Numerics.Tensors.json b/xml/SourceLinkInformation/net-9.0/System.Numerics.Tensors.json index 09a5185d6bd..2a4f20a5f62 100644 --- a/xml/SourceLinkInformation/net-9.0/System.Numerics.Tensors.json +++ b/xml/SourceLinkInformation/net-9.0/System.Numerics.Tensors.json @@ -1,765 +1,764 @@ { "Assembly": "System.Numerics.Tensors", - "GUID": "4011BDB4A7AF420C8551B59524965730FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "4382AC9817934AE8BE89DAE08A3533B5FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Abs(System.ReadOnlySpan{System.Single},System.Span{System.Single})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L30C13-L30C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L30C13-L30C72" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Add(System.ReadOnlySpan{System.Single},System.ReadOnlySpan{System.Single},System.Span{System.Single})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L49C13-L49C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L49C13-L49C74" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Add(System.ReadOnlySpan{System.Single},System.Single,System.Span{System.Single})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L66C13-L66C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L66C13-L66C76" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.AddMultiply(System.ReadOnlySpan{System.Single},System.ReadOnlySpan{System.Single},System.ReadOnlySpan{System.Single},System.Span{System.Single})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L87C13-L87C98" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L87C13-L87C98" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.AddMultiply(System.ReadOnlySpan{System.Single},System.ReadOnlySpan{System.Single},System.Single,System.Span{System.Single})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L107C13-L107C100" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L107C13-L107C100" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.AddMultiply(System.ReadOnlySpan{System.Single},System.Single,System.ReadOnlySpan{System.Single},System.Span{System.Single})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L127C13-L127C100" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L127C13-L127C100" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Cosh(System.ReadOnlySpan{System.Single},System.Span{System.Single})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L151C13-L151C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L151C13-L151C68" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.CosineSimilarity(System.ReadOnlySpan{System.Single},System.ReadOnlySpan{System.Single})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L173C13-L173C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L173C13-L173C39" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Distance(System.ReadOnlySpan{System.Single},System.ReadOnlySpan{System.Single})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L201C13-L206C100" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L201C13-L206C100" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Divide(System.ReadOnlySpan{System.Single},System.ReadOnlySpan{System.Single},System.Span{System.Single})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L226C13-L226C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L226C13-L226C77" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Divide(System.ReadOnlySpan{System.Single},System.Single,System.Span{System.Single})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L243C13-L243C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L243C13-L243C79" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Dot(System.ReadOnlySpan{System.Single},System.ReadOnlySpan{System.Single})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L269C13-L269C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L269C13-L269C73" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Exp(System.ReadOnlySpan{System.Single},System.Span{System.Single})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L290C13-L290C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L290C13-L290C67" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.IndexOfMax(System.ReadOnlySpan{System.Single})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L306C13-L306C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L306C13-L306C67" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.IndexOfMaxMagnitude(System.ReadOnlySpan{System.Single})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L323C13-L323C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L323C13-L323C76" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.IndexOfMin(System.ReadOnlySpan{System.Single})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L339C13-L339C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L339C13-L339C67" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.IndexOfMinMagnitude(System.ReadOnlySpan{System.Single})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L356C13-L356C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L356C13-L356C76" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Log(System.ReadOnlySpan{System.Single},System.Span{System.Single})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L379C13-L379C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L379C13-L379C67" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Log2(System.ReadOnlySpan{System.Single},System.Span{System.Single})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L402C13-L402C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L402C13-L402C68" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Max(System.ReadOnlySpan{System.Single})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L419C13-L419C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L419C13-L419C46" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Max(System.ReadOnlySpan{System.Single},System.ReadOnlySpan{System.Single},System.Span{System.Single})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L443C13-L443C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L443C13-L443C86" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.MaxMagnitude(System.ReadOnlySpan{System.Single})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L461C13-L461C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L461C13-L461C55" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.MaxMagnitude(System.ReadOnlySpan{System.Single},System.ReadOnlySpan{System.Single},System.Span{System.Single})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L479C13-L479C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L479C13-L479C95" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Min(System.ReadOnlySpan{System.Single})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L496C13-L496C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L496C13-L496C46" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Min(System.ReadOnlySpan{System.Single},System.ReadOnlySpan{System.Single},System.Span{System.Single})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L520C13-L520C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L520C13-L520C86" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.MinMagnitude(System.ReadOnlySpan{System.Single})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L538C13-L538C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L538C13-L538C55" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.MinMagnitude(System.ReadOnlySpan{System.Single},System.ReadOnlySpan{System.Single},System.Span{System.Single})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L561C13-L561C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L561C13-L561C95" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Multiply(System.ReadOnlySpan{System.Single},System.ReadOnlySpan{System.Single},System.Span{System.Single})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L580C13-L580C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L580C13-L580C79" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Multiply(System.ReadOnlySpan{System.Single},System.Single,System.Span{System.Single})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L598C13-L598C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L598C13-L598C81" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.MultiplyAdd(System.ReadOnlySpan{System.Single},System.ReadOnlySpan{System.Single},System.ReadOnlySpan{System.Single},System.Span{System.Single})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L619C13-L619C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L619C13-L619C94" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.MultiplyAdd(System.ReadOnlySpan{System.Single},System.ReadOnlySpan{System.Single},System.Single,System.Span{System.Single})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L640C13-L640C96" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L640C13-L640C96" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.MultiplyAdd(System.ReadOnlySpan{System.Single},System.Single,System.ReadOnlySpan{System.Single},System.Span{System.Single})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L660C13-L660C96" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L660C13-L660C96" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Negate(System.ReadOnlySpan{System.Single},System.Span{System.Single})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L676C13-L676C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L676C13-L676C70" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Norm(System.ReadOnlySpan{System.Single})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L696C13-L696C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L696C13-L696C40" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Product(System.ReadOnlySpan{System.Single})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L713C13-L718C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L713C13-L718C83" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.ProductOfDifferences(System.ReadOnlySpan{System.Single},System.ReadOnlySpan{System.Single})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L744C13-L749C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L744C13-L749C86" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.ProductOfSums(System.ReadOnlySpan{System.Single},System.ReadOnlySpan{System.Single})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L775C13-L780C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L775C13-L780C81" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Sigmoid(System.ReadOnlySpan{System.Single},System.Span{System.Single})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L800C13-L806C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L800C13-L806C10" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Sinh(System.ReadOnlySpan{System.Single},System.Span{System.Single})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L830C13-L830C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L830C13-L830C68" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.SoftMax(System.ReadOnlySpan{System.Single},System.Span{System.Single})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L850C13-L865C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L850C13-L865C10" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Subtract(System.ReadOnlySpan{System.Single},System.ReadOnlySpan{System.Single},System.Span{System.Single})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L884C13-L884C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L884C13-L884C79" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Subtract(System.ReadOnlySpan{System.Single},System.Single,System.Span{System.Single})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L901C13-L901C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L901C13-L901C81" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Sum(System.ReadOnlySpan{System.Single})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L916C13-L916C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L916C13-L916C70" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.SumOfMagnitudes(System.ReadOnlySpan{System.Single})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L937C13-L937C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L937C13-L937C70" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.SumOfSquares(System.ReadOnlySpan{System.Single})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L958C13-L958C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L958C13-L958C69" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Tanh(System.ReadOnlySpan{System.Single},System.Span{System.Single})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L983C13-L983C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs#L983C13-L983C68" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Abs``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Abs.cs#L31C13-L31C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Abs.cs#L31C13-L31C71" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Acos``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Acos.cs#L26C13-L26C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Acos.cs#L26C13-L26C67" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Acosh``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Acosh.cs#L26C13-L26C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Acosh.cs#L26C13-L26C68" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.AcosPi``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.AcosPi.cs#L26C13-L26C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.AcosPi.cs#L26C13-L26C69" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Add``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Add.cs#L28C13-L28C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Add.cs#L28C13-L28C73" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Add``1(System.ReadOnlySpan{``0},``0,System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Add.cs#L46C13-L46C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Add.cs#L46C13-L46C75" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.AddMultiply``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0},System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.AddMultiply.cs#L30C13-L30C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.AddMultiply.cs#L30C13-L30C97" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.AddMultiply``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0},``0,System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.AddMultiply.cs#L51C13-L51C99" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.AddMultiply.cs#L51C13-L51C99" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.AddMultiply``1(System.ReadOnlySpan{``0},``0,System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.AddMultiply.cs#L72C13-L72C99" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.AddMultiply.cs#L72C13-L72C99" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Asin``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Asin.cs#L26C13-L26C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Asin.cs#L26C13-L26C67" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Asinh``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Asinh.cs#L26C13-L26C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Asinh.cs#L26C13-L26C68" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.AsinPi``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.AsinPi.cs#L26C13-L26C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.AsinPi.cs#L26C13-L26C69" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Atan``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Atan.cs#L26C13-L26C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Atan.cs#L26C13-L26C67" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Atan2``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Atan2.cs#L29C13-L29C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Atan2.cs#L29C13-L29C75" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Atan2``1(System.ReadOnlySpan{``0},``0,System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Atan2.cs#L48C13-L48C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Atan2.cs#L48C13-L48C77" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Atan2``1(``0,System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Atan2.cs#L67C13-L67C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Atan2.cs#L67C13-L67C77" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Atan2Pi``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Atan2Pi.cs#L29C13-L29C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Atan2Pi.cs#L29C13-L29C77" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Atan2Pi``1(System.ReadOnlySpan{``0},``0,System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Atan2Pi.cs#L48C13-L48C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Atan2Pi.cs#L48C13-L48C79" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Atan2Pi``1(``0,System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Atan2Pi.cs#L67C13-L67C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Atan2Pi.cs#L67C13-L67C79" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Atanh``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Atanh.cs#L26C13-L26C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Atanh.cs#L26C13-L26C68" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.AtanPi``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.AtanPi.cs#L26C13-L26C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.AtanPi.cs#L26C13-L26C69" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.BitwiseAnd``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.BitwiseAnd.cs#L25C13-L25C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.BitwiseAnd.cs#L25C13-L25C80" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.BitwiseAnd``1(System.ReadOnlySpan{``0},``0,System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.BitwiseAnd.cs#L40C13-L40C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.BitwiseAnd.cs#L40C13-L40C82" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.BitwiseOr``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.BitwiseOr.cs#L25C13-L25C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.BitwiseOr.cs#L25C13-L25C79" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.BitwiseOr``1(System.ReadOnlySpan{``0},``0,System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.BitwiseOr.cs#L40C13-L40C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.BitwiseOr.cs#L40C13-L40C81" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Cbrt``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Cbrt.cs#L23C13-L23C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Cbrt.cs#L23C13-L23C67" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Ceiling``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Ceiling.cs#L23C13-L23C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Ceiling.cs#L23C13-L23C70" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.ConvertChecked``2(System.ReadOnlySpan{``0},System.Span{``1})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.ConvertChecked.cs#L26C13-L30C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.ConvertChecked.cs#L26C13-L30C10" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.ConvertSaturating``2(System.ReadOnlySpan{``0},System.Span{``1})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.ConvertSaturating.cs#L26C13-L30C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.ConvertSaturating.cs#L26C13-L30C10" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.ConvertTruncating``2(System.ReadOnlySpan{``0},System.Span{``1})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.ConvertTruncating.cs#L26C13-L101C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.ConvertTruncating.cs#L26C13-L101C10" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.CopySign``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.CopySign.cs#L25C13-L25C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.CopySign.cs#L25C13-L25C81" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.CopySign``1(System.ReadOnlySpan{``0},``0,System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.CopySign.cs#L40C13-L40C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.CopySign.cs#L40C13-L40C83" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Cos``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Cos.cs#L30C13-L30C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Cos.cs#L30C13-L30C66" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Cosh``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Cosh.cs#L34C13-L34C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Cosh.cs#L34C13-L34C67" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.CosineSimilarity``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.CosineSimilarity.cs#L32C13-L32C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.CosineSimilarity.cs#L32C13-L32C39" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.CosPi``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.CosPi.cs#L30C13-L30C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.CosPi.cs#L30C13-L30C68" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.DegreesToRadians``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.DegreesToRadians.cs#L22C13-L22C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.DegreesToRadians.cs#L22C13-L22C79" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Distance``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Distance.cs#L37C13-L42C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Distance.cs#L37C13-L42C91" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Divide``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Divide.cs#L29C13-L29C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Divide.cs#L29C13-L29C76" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Divide``1(System.ReadOnlySpan{``0},``0,System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Divide.cs#L48C13-L48C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Divide.cs#L48C13-L48C78" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Divide``1(``0,System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Divide.cs#L67C13-L67C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Divide.cs#L67C13-L67C78" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Dot``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Dot.cs#L33C13-L33C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Dot.cs#L33C13-L33C68" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Exp``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Exp.cs#L31C13-L31C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Exp.cs#L31C13-L31C66" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Exp10``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Exp10.cs#L26C13-L26C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Exp10.cs#L26C13-L26C68" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Exp10M1``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Exp10M1.cs#L26C13-L26C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Exp10M1.cs#L26C13-L26C70" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Exp2``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Exp2.cs#L26C13-L26C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Exp2.cs#L26C13-L26C67" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Exp2M1``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Exp2M1.cs#L26C13-L26C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Exp2M1.cs#L26C13-L26C69" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.ExpM1``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.ExpM1.cs#L26C13-L26C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.ExpM1.cs#L26C13-L26C68" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Floor``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Floor.cs#L23C13-L23C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Floor.cs#L23C13-L23C68" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.FusedMultiplyAdd``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0},System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.FusedMultiplyAdd.cs#L39C13-L39C98" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.FusedMultiplyAdd.cs#L39C13-L39C98" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.FusedMultiplyAdd``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0},``0,System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.FusedMultiplyAdd.cs#L67C13-L67C100" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.FusedMultiplyAdd.cs#L67C13-L67C100" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.FusedMultiplyAdd``1(System.ReadOnlySpan{``0},``0,System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.FusedMultiplyAdd.cs#L94C13-L94C100" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.FusedMultiplyAdd.cs#L94C13-L94C100" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.ConvertToHalf(System.ReadOnlySpan{System.Single},System.Span{System.Half})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Half.cs#L24C13-L24C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Half.cs#L24C13-L24C51" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.ConvertToSingle(System.ReadOnlySpan{System.Half},System.Span{System.Single})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Half.cs#L42C13-L42C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Half.cs#L42C13-L42C51" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Hypot``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Hypot.cs#L25C13-L25C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Hypot.cs#L25C13-L25C75" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Ieee754Remainder``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Ieee754Remainder.cs#L25C13-L25C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Ieee754Remainder.cs#L25C13-L25C86" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Ieee754Remainder``1(System.ReadOnlySpan{``0},``0,System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Ieee754Remainder.cs#L41C13-L41C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Ieee754Remainder.cs#L41C13-L41C88" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Ieee754Remainder``1(``0,System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Ieee754Remainder.cs#L56C13-L56C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Ieee754Remainder.cs#L56C13-L56C88" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.ILogB``1(System.ReadOnlySpan{``0},System.Span{System.Int32})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.ILogB.cs#L23C13-L32C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.ILogB.cs#L23C13-L32C10" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.IndexOfMax``1(System.ReadOnlySpan{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.IndexOfMax.cs#L31C13-L31C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.IndexOfMax.cs#L31C13-L31C59" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.IndexOfMaxMagnitude``1(System.ReadOnlySpan{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.IndexOfMaxMagnitude.cs#L27C13-L27C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.IndexOfMaxMagnitude.cs#L27C13-L27C68" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.IndexOfMin``1(System.ReadOnlySpan{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.IndexOfMin.cs#L26C13-L26C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.IndexOfMin.cs#L26C13-L26C59" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.IndexOfMinMagnitude``1(System.ReadOnlySpan{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.IndexOfMinMagnitude.cs#L27C13-L27C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.IndexOfMinMagnitude.cs#L27C13-L27C68" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.LeadingZeroCount``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.LeadingZeroCount.cs#L28C13-L28C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.LeadingZeroCount.cs#L28C13-L28C79" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Lerp``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0},System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Lerp.cs#L30C13-L30C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Lerp.cs#L30C13-L30C86" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Lerp``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0},``0,System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Lerp.cs#L51C13-L51C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Lerp.cs#L51C13-L51C88" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Lerp``1(System.ReadOnlySpan{``0},``0,System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Lerp.cs#L72C13-L72C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Lerp.cs#L72C13-L72C88" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Log``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Log.cs#L33C13-L33C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Log.cs#L33C13-L33C66" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Log``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Log.cs#L54C13-L54C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Log.cs#L54C13-L54C77" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Log``1(System.ReadOnlySpan{``0},``0,System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Log.cs#L73C13-L73C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Log.cs#L73C13-L73C79" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Log10``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Log10.cs#L32C13-L32C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Log10.cs#L32C13-L32C68" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Log10P1``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Log10P1.cs#L32C13-L32C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Log10P1.cs#L32C13-L32C70" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Log2``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Log2.cs#L33C13-L33C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Log2.cs#L33C13-L33C67" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Log2P1``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Log2P1.cs#L32C13-L32C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Log2P1.cs#L32C13-L32C69" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.LogP1``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.LogP1.cs#L32C13-L32C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.LogP1.cs#L32C13-L32C68" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Max``1(System.ReadOnlySpan{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Max.cs#L29C13-L29C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Max.cs#L29C13-L29C45" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Max``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Max.cs#L54C13-L54C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Max.cs#L54C13-L54C85" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Max``1(System.ReadOnlySpan{``0},``0,System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Max.cs#L77C13-L77C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Max.cs#L77C13-L77C87" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.MaxMagnitude``1(System.ReadOnlySpan{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.MaxMagnitude.cs#L28C13-L28C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.MaxMagnitude.cs#L28C13-L28C54" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.MaxMagnitude``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.MaxMagnitude.cs#L47C13-L47C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.MaxMagnitude.cs#L47C13-L47C94" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.MaxMagnitude``1(System.ReadOnlySpan{``0},``0,System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.MaxMagnitude.cs#L64C13-L64C96" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.MaxMagnitude.cs#L64C13-L64C96" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Min``1(System.ReadOnlySpan{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.MaxMagnitude.cs#L82C13-L82C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.MaxMagnitude.cs#L82C13-L82C45" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Min``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Min.cs#L35C13-L35C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Min.cs#L35C13-L35C85" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Min``1(System.ReadOnlySpan{``0},``0,System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Min.cs#L58C13-L58C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Min.cs#L58C13-L58C87" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.MinMagnitude``1(System.ReadOnlySpan{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.MinMagnitude.cs#L28C13-L28C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.MinMagnitude.cs#L28C13-L28C54" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.MinMagnitude``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.MinMagnitude.cs#L52C13-L52C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.MinMagnitude.cs#L52C13-L52C94" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.MinMagnitude``1(System.ReadOnlySpan{``0},``0,System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.MinMagnitude.cs#L74C13-L74C96" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.MinMagnitude.cs#L74C13-L74C96" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Multiply``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Multiply.cs#L28C13-L28C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Multiply.cs#L28C13-L28C78" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Multiply``1(System.ReadOnlySpan{``0},``0,System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Multiply.cs#L47C13-L47C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Multiply.cs#L47C13-L47C80" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.MultiplyAdd``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0},System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.MultiplyAdd.cs#L30C13-L30C93" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.MultiplyAdd.cs#L30C13-L30C93" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.MultiplyAdd``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0},``0,System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.MultiplyAdd.cs#L52C13-L52C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.MultiplyAdd.cs#L52C13-L52C95" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.MultiplyAdd``1(System.ReadOnlySpan{``0},``0,System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.MultiplyAdd.cs#L73C13-L73C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.MultiplyAdd.cs#L73C13-L73C95" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.MultiplyAddEstimate``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0},System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.MultiplyAddEstimate.cs#L37C13-L37C101" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.MultiplyAddEstimate.cs#L37C13-L37C101" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.MultiplyAddEstimate``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0},``0,System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.MultiplyAddEstimate.cs#L63C13-L63C103" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.MultiplyAddEstimate.cs#L63C13-L63C103" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.MultiplyAddEstimate``1(System.ReadOnlySpan{``0},``0,System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.MultiplyAddEstimate.cs#L88C13-L88C103" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.MultiplyAddEstimate.cs#L88C13-L88C103" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Negate``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Negate.cs#L25C13-L25C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Negate.cs#L25C13-L25C69" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Norm``1(System.ReadOnlySpan{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Norm.cs#L27C13-L27C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Norm.cs#L27C13-L27C36" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.OnesComplement``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.OnesComplement.cs#L22C13-L22C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.OnesComplement.cs#L22C13-L22C77" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.PopCount``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.PopCount.cs#L28C13-L28C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.PopCount.cs#L28C13-L28C71" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Pow``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Pow.cs#L26C13-L26C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Pow.cs#L26C13-L26C73" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Pow``1(System.ReadOnlySpan{``0},``0,System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Pow.cs#L41C13-L41C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Pow.cs#L41C13-L41C75" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Pow``1(``0,System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Pow.cs#L56C13-L56C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Pow.cs#L56C13-L56C75" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Product``1(System.ReadOnlySpan{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Product.cs#L24C13-L29C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Product.cs#L24C13-L29C78" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.ProductOfDifferences``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Product.cs#L56C13-L61C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Product.cs#L56C13-L61C81" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.ProductOfSums``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Product.cs#L88C13-L93C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Product.cs#L88C13-L93C76" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.RadiansToDegrees``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.RadiansToDegrees.cs#L22C13-L22C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.RadiansToDegrees.cs#L22C13-L22C79" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Reciprocal``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Reciprocal.cs#L25C13-L25C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Reciprocal.cs#L25C13-L25C73" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.ReciprocalEstimate``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Reciprocal.cs#L40C13-L40C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Reciprocal.cs#L40C13-L40C81" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.ReciprocalSqrt``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Reciprocal.cs#L55C13-L55C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Reciprocal.cs#L55C13-L55C77" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.ReciprocalSqrtEstimate``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Reciprocal.cs#L70C13-L70C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Reciprocal.cs#L70C13-L70C85" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.RootN``1(System.ReadOnlySpan{``0},System.Int32,System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.RootN.cs#L24C13-L24C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.RootN.cs#L24C13-L24C72" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.RotateLeft``1(System.ReadOnlySpan{``0},System.Int32,System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Rotate.cs#L25C13-L25C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Rotate.cs#L25C13-L25C88" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.RotateRight``1(System.ReadOnlySpan{``0},System.Int32,System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Rotate.cs#L40C13-L40C89" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Rotate.cs#L40C13-L40C89" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Round``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Round.cs#L26C13-L26C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Round.cs#L26C13-L26C74" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Round``1(System.ReadOnlySpan{``0},System.MidpointRounding,System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Round.cs#L45C21-L65C136" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Round.cs#L16707566C0-L65C136" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Round``1(System.ReadOnlySpan{``0},System.Int32,System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Round.cs#L81C13-L81C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Round.cs#L81C13-L81C67" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Round``1(System.ReadOnlySpan{``0},System.Int32,System.MidpointRounding,System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Round.cs#L100C13-L157C136" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Round.cs#L100C13-L157C136" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.ScaleB``1(System.ReadOnlySpan{``0},System.Int32,System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.ScaleB.cs#L23C13-L23C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.ScaleB.cs#L23C13-L23C73" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.ShiftLeft``1(System.ReadOnlySpan{``0},System.Int32,System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.ShiftLeft.cs#L23C13-L23C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.ShiftLeft.cs#L23C13-L23C86" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.ShiftRightArithmetic``1(System.ReadOnlySpan{``0},System.Int32,System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.ShiftLeft.cs#L38C13-L38C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.ShiftLeft.cs#L38C13-L38C97" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.ShiftRightLogical``1(System.ReadOnlySpan{``0},System.Int32,System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.ShiftLeft.cs#L53C13-L53C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.ShiftLeft.cs#L53C13-L53C94" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Sigmoid``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Sigmoid.cs#L28C13-L34C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Sigmoid.cs#L28C13-L34C10" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Sin``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Sin.cs#L30C13-L30C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Sin.cs#L30C13-L30C66" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.SinCos``1(System.ReadOnlySpan{``0},System.Span{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.SinCos.cs#L27C13-L27C99" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.SinCos.cs#L27C13-L27C99" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.SinCosPi``1(System.ReadOnlySpan{``0},System.Span{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.SinCosPi.cs#L27C13-L27C105" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.SinCosPi.cs#L27C13-L27C105" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Sinh``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Sinh.cs#L34C13-L34C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Sinh.cs#L34C13-L34C67" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.SinPi``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.SinPi.cs#L30C13-L30C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.SinPi.cs#L30C13-L30C68" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.SoftMax``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.SoftMax.cs#L27C13-L42C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.SoftMax.cs#L27C13-L42C10" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Sqrt``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Sqrt.cs#L22C13-L22C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Sqrt.cs#L22C13-L22C67" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Subtract``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Subtract.cs#L28C13-L28C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Subtract.cs#L28C13-L28C78" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Subtract``1(System.ReadOnlySpan{``0},``0,System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Subtract.cs#L46C13-L46C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Subtract.cs#L46C13-L46C80" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Subtract``1(``0,System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Subtract.cs#L64C13-L64C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Subtract.cs#L64C13-L64C80" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Sum``1(System.ReadOnlySpan{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Sum.cs#L24C13-L24C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Sum.cs#L24C13-L24C65" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.SumOfMagnitudes``1(System.ReadOnlySpan{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Sum.cs#L47C13-L47C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Sum.cs#L47C13-L47C65" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.SumOfSquares``1(System.ReadOnlySpan{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Sum.cs#L69C13-L69C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Sum.cs#L69C13-L69C64" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Tan``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Tan.cs#L30C13-L30C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Tan.cs#L30C13-L30C66" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Tanh``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Tanh.cs#L34C13-L34C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Tanh.cs#L34C13-L34C67" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.TanPi``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.TanPi.cs#L29C13-L29C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.TanPi.cs#L29C13-L29C68" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.TrailingZeroCount``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.TrailingZeroCount.cs#L27C13-L27C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.TrailingZeroCount.cs#L27C13-L27C80" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Truncate``1(System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Truncate.cs#L25C13-L25C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Truncate.cs#L25C13-L25C71" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Xor``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0},System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Xor.cs#L25C13-L25C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Xor.cs#L25C13-L25C73" }, { "DocsId": "M:System.Numerics.Tensors.TensorPrimitives.Xor``1(System.ReadOnlySpan{``0},``0,System.Span{``0})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Xor.cs#L40C13-L40C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Xor.cs#L40C13-L40C75" } ], "DocsId": "T:System.Numerics.Tensors.TensorPrimitives", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/TensorPrimitives.Single.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/System.Reflection.Context.json b/xml/SourceLinkInformation/net-9.0/System.Reflection.Context.json index b5ea366e83a..f0e09b50524 100644 --- a/xml/SourceLinkInformation/net-9.0/System.Reflection.Context.json +++ b/xml/SourceLinkInformation/net-9.0/System.Reflection.Context.json @@ -1,49 +1,48 @@ { "Assembly": "System.Reflection.Context", - "GUID": "93A4B265826D4EF188B184D037580DD2FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "C9986FC634954640B517D4BBC49D5D17FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:System.Reflection.Context.CustomReflectionContext.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Reflection.Context/src/System/Reflection/Context/CustomReflectionContext.cs#L21C47-L21C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Reflection.Context/src/System/Reflection/Context/CustomReflectionContext.cs#L21C47-L21C88" }, { "DocsId": "M:System.Reflection.Context.CustomReflectionContext.#ctor(System.Reflection.ReflectionContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Reflection.Context/src/System/Reflection/Context/CustomReflectionContext.cs#L23C9-L32C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Reflection.Context/src/System/Reflection/Context/CustomReflectionContext.cs#L23C9-L32C10" }, { "DocsId": "M:System.Reflection.Context.CustomReflectionContext.MapAssembly(System.Reflection.Assembly)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Reflection.Context/src/System/Reflection/Context/CustomReflectionContext.cs#L36C13-L41C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Reflection.Context/src/System/Reflection/Context/CustomReflectionContext.cs#L36C13-L41C65" }, { "DocsId": "M:System.Reflection.Context.CustomReflectionContext.MapType(System.Reflection.TypeInfo)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Reflection.Context/src/System/Reflection/Context/CustomReflectionContext.cs#L46C13-L51C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Reflection.Context/src/System/Reflection/Context/CustomReflectionContext.cs#L46C13-L51C57" }, { "DocsId": "M:System.Reflection.Context.CustomReflectionContext.GetCustomAttributes(System.Reflection.MemberInfo,System.Collections.Generic.IEnumerable{System.Object})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Reflection.Context/src/System/Reflection/Context/CustomReflectionContext.cs#L56C13-L56C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Reflection.Context/src/System/Reflection/Context/CustomReflectionContext.cs#L56C13-L56C39" }, { "DocsId": "M:System.Reflection.Context.CustomReflectionContext.GetCustomAttributes(System.Reflection.ParameterInfo,System.Collections.Generic.IEnumerable{System.Object})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Reflection.Context/src/System/Reflection/Context/CustomReflectionContext.cs#L61C13-L61C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Reflection.Context/src/System/Reflection/Context/CustomReflectionContext.cs#L61C13-L61C39" }, { "DocsId": "M:System.Reflection.Context.CustomReflectionContext.AddProperties(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Reflection.Context/src/System/Reflection/Context/CustomReflectionContext.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Reflection.Context/src/System/Reflection/Context/CustomReflectionContext.cs" }, { "DocsId": "M:System.Reflection.Context.CustomReflectionContext.CreateProperty(System.Type,System.String,System.Func{System.Object,System.Object},System.Action{System.Object,System.Object})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Reflection.Context/src/System/Reflection/Context/CustomReflectionContext.cs#L77C13-L85C23" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Reflection.Context/src/System/Reflection/Context/CustomReflectionContext.cs#L77C13-L85C23" }, { "DocsId": "M:System.Reflection.Context.CustomReflectionContext.CreateProperty(System.Type,System.String,System.Func{System.Object,System.Object},System.Action{System.Object,System.Object},System.Collections.Generic.IEnumerable{System.Attribute},System.Collections.Generic.IEnumerable{System.Attribute},System.Collections.Generic.IEnumerable{System.Attribute})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Reflection.Context/src/System/Reflection/Context/CustomReflectionContext.cs#L97C13-L105C23" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Reflection.Context/src/System/Reflection/Context/CustomReflectionContext.cs#L97C13-L105C23" } ], "DocsId": "T:System.Reflection.Context.CustomReflectionContext", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Reflection.Context/src/System/Reflection/Context/CustomReflectionContext.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Reflection.Context/src/System/Reflection/Context/CustomReflectionContext.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/System.Reflection.MetadataLoadContext.json b/xml/SourceLinkInformation/net-9.0/System.Reflection.MetadataLoadContext.json index 193ff2b380e..7fbc00544e7 100644 --- a/xml/SourceLinkInformation/net-9.0/System.Reflection.MetadataLoadContext.json +++ b/xml/SourceLinkInformation/net-9.0/System.Reflection.MetadataLoadContext.json @@ -1,77 +1,76 @@ { "Assembly": "System.Reflection.MetadataLoadContext", - "GUID": "B39EDF674F4A4B28B96ECFB07EF42828FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "ACD54EB895444243A3C750FCFB14E6DEFFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:System.Reflection.MetadataAssemblyResolver.Resolve(System.Reflection.MetadataLoadContext,System.Reflection.AssemblyName)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Reflection.MetadataLoadContext/src/System/Reflection/MetadataAssemblyResolver.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Reflection.MetadataLoadContext/src/System/Reflection/MetadataAssemblyResolver.cs" }, { "DocsId": "M:System.Reflection.MetadataAssemblyResolver.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Reflection.MetadataLoadContext/src/System/Reflection/MetadataAssemblyResolver.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Reflection.MetadataLoadContext/src/System/Reflection/MetadataAssemblyResolver.cs" } ], "DocsId": "T:System.Reflection.MetadataAssemblyResolver", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Reflection.MetadataLoadContext/src/System/Reflection/MetadataAssemblyResolver.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Reflection.MetadataLoadContext/src/System/Reflection/MetadataAssemblyResolver.cs" }, { "Members": [ { "DocsId": "M:System.Reflection.MetadataLoadContext.#ctor(System.Reflection.MetadataAssemblyResolver,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Reflection.MetadataLoadContext/src/System/Reflection/MetadataLoadContext.Disposing.cs#L11C9-L121C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Reflection.MetadataLoadContext/src/System/Reflection/MetadataLoadContext.Disposing.cs#L11C9-L121C10" }, { "DocsId": "M:System.Reflection.MetadataLoadContext.LoadFromAssemblyPath(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Reflection.MetadataLoadContext/src/System/Reflection/MetadataLoadContext.Apis.cs#L130C13-L135C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Reflection.MetadataLoadContext/src/System/Reflection/MetadataLoadContext.Apis.cs#L130C13-L135C68" }, { "DocsId": "M:System.Reflection.MetadataLoadContext.LoadFromByteArray(System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Reflection.MetadataLoadContext/src/System/Reflection/MetadataLoadContext.Apis.cs#L145C13-L150C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Reflection.MetadataLoadContext/src/System/Reflection/MetadataLoadContext.Apis.cs#L145C13-L150C67" }, { "DocsId": "M:System.Reflection.MetadataLoadContext.LoadFromStream(System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Reflection.MetadataLoadContext/src/System/Reflection/MetadataLoadContext.Apis.cs#L163C13-L169C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Reflection.MetadataLoadContext/src/System/Reflection/MetadataLoadContext.Apis.cs#L163C13-L169C49" }, { "DocsId": "M:System.Reflection.MetadataLoadContext.LoadFromAssemblyName(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Reflection.MetadataLoadContext/src/System/Reflection/MetadataLoadContext.Apis.cs#L181C13-L188C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Reflection.MetadataLoadContext/src/System/Reflection/MetadataLoadContext.Apis.cs#L181C13-L188C45" }, { "DocsId": "M:System.Reflection.MetadataLoadContext.LoadFromAssemblyName(System.Reflection.AssemblyName)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Reflection.MetadataLoadContext/src/System/Reflection/MetadataLoadContext.Apis.cs#L200C13-L206C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Reflection.MetadataLoadContext/src/System/Reflection/MetadataLoadContext.Apis.cs#L200C13-L206C45" }, { "DocsId": "M:System.Reflection.MetadataLoadContext.GetAssemblies", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Reflection.MetadataLoadContext/src/System/Reflection/MetadataLoadContext.Apis.cs#L265C13-L268C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Reflection.MetadataLoadContext/src/System/Reflection/MetadataLoadContext.Apis.cs#L265C13-L268C45" }, { "DocsId": "M:System.Reflection.MetadataLoadContext.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Reflection.MetadataLoadContext/src/System/Reflection/MetadataLoadContext.Apis.cs#L280C13-L282C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Reflection.MetadataLoadContext/src/System/Reflection/MetadataLoadContext.Apis.cs#L280C13-L282C10" }, { "DocsId": "P:System.Reflection.MetadataLoadContext.CoreAssembly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Reflection.MetadataLoadContext/src/System/Reflection/MetadataLoadContext.Apis.cs#L253C17-L256C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Reflection.MetadataLoadContext/src/System/Reflection/MetadataLoadContext.Apis.cs#L253C17-L256C38" } ], "DocsId": "T:System.Reflection.MetadataLoadContext", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Reflection.MetadataLoadContext/src/System/Reflection/MetadataLoadContext.Disposing.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Reflection.MetadataLoadContext/src/System/Reflection/MetadataLoadContext.Disposing.cs" }, { "Members": [ { "DocsId": "M:System.Reflection.PathAssemblyResolver.#ctor(System.Collections.Generic.IEnumerable{System.String})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Reflection.MetadataLoadContext/src/System/Reflection/PathAssemblyResolver.cs#L25C9-L53C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Reflection.MetadataLoadContext/src/System/Reflection/PathAssemblyResolver.cs#L25C9-L53C10" }, { "DocsId": "M:System.Reflection.PathAssemblyResolver.Resolve(System.Reflection.MetadataLoadContext,System.Reflection.AssemblyName)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Reflection.MetadataLoadContext/src/System/Reflection/PathAssemblyResolver.cs#L58C13-L96C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Reflection.MetadataLoadContext/src/System/Reflection/PathAssemblyResolver.cs#L58C13-L96C65" } ], "DocsId": "T:System.Reflection.PathAssemblyResolver", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Reflection.MetadataLoadContext/src/System/Reflection/PathAssemblyResolver.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Reflection.MetadataLoadContext/src/System/Reflection/PathAssemblyResolver.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/System.Resources.Extensions.json b/xml/SourceLinkInformation/net-9.0/System.Resources.Extensions.json index 521224df219..38bc1ad96a3 100644 --- a/xml/SourceLinkInformation/net-9.0/System.Resources.Extensions.json +++ b/xml/SourceLinkInformation/net-9.0/System.Resources.Extensions.json @@ -1,95 +1,94 @@ { "Assembly": "System.Resources.Extensions", - "GUID": "71D1D99536964999B0AE8C0374AE5A21FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "C5196780415E4788840328E73728FC7FFFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:System.Resources.Extensions.PreserializedResourceWriter.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/Resources/ResourceWriter.cs#L44C9-L59C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/Resources/ResourceWriter.cs#L44C9-L59C10" }, { "DocsId": "M:System.Resources.Extensions.PreserializedResourceWriter.#ctor(System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/Resources/ResourceWriter.cs#L61C9-L81C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/Resources/ResourceWriter.cs#L61C9-L81C10" }, { "DocsId": "M:System.Resources.Extensions.PreserializedResourceWriter.AddResource(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/Resources/ResourceWriter.cs#L88C13-L101C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/Resources/ResourceWriter.cs#L88C13-L101C10" }, { "DocsId": "M:System.Resources.Extensions.PreserializedResourceWriter.AddResource(System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/Resources/ResourceWriter.cs#L108C13-L129C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/Resources/ResourceWriter.cs#L108C13-L129C10" }, { "DocsId": "M:System.Resources.Extensions.PreserializedResourceWriter.AddResource(System.String,System.IO.Stream,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/Resources/ResourceWriter.cs#L137C13-L148C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/Resources/ResourceWriter.cs#L137C13-L148C10" }, { "DocsId": "M:System.Resources.Extensions.PreserializedResourceWriter.AddResource(System.String,System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/Resources/ResourceWriter.cs#L177C13-L190C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/Resources/ResourceWriter.cs#L177C13-L190C10" }, { "DocsId": "M:System.Resources.Extensions.PreserializedResourceWriter.Close", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/Resources/ResourceWriter.cs#L233C13-L234C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/Resources/ResourceWriter.cs#L233C13-L234C10" }, { "DocsId": "M:System.Resources.Extensions.PreserializedResourceWriter.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/Resources/ResourceWriter.cs#L253C13-L254C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/Resources/ResourceWriter.cs#L253C13-L254C10" }, { "DocsId": "M:System.Resources.Extensions.PreserializedResourceWriter.Generate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/Common/src/System/Resources/ResourceWriter.cs#L263C13-L434C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/Common/src/System/Resources/ResourceWriter.cs#L263C13-L434C10" }, { "DocsId": "M:System.Resources.Extensions.PreserializedResourceWriter.AddResource(System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Resources.Extensions/src/System/Resources/Extensions/PreserializedResourceWriter.cs#L73C13-L119C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Resources.Extensions/src/System/Resources/Extensions/PreserializedResourceWriter.cs#L73C13-L119C10" }, { "DocsId": "M:System.Resources.Extensions.PreserializedResourceWriter.AddTypeConverterResource(System.String,System.Byte[],System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Resources.Extensions/src/System/Resources/Extensions/PreserializedResourceWriter.cs#L130C13-L146C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Resources.Extensions/src/System/Resources/Extensions/PreserializedResourceWriter.cs#L130C13-L146C10" }, { "DocsId": "M:System.Resources.Extensions.PreserializedResourceWriter.AddBinaryFormattedResource(System.String,System.Byte[],System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Resources.Extensions/src/System/Resources/Extensions/PreserializedResourceWriter.cs#L158C13-L179C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Resources.Extensions/src/System/Resources/Extensions/PreserializedResourceWriter.cs#L158C13-L179C10" }, { "DocsId": "M:System.Resources.Extensions.PreserializedResourceWriter.AddActivatorResource(System.String,System.IO.Stream,System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Resources.Extensions/src/System/Resources/Extensions/PreserializedResourceWriter.cs#L191C13-L210C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Resources.Extensions/src/System/Resources/Extensions/PreserializedResourceWriter.cs#L191C13-L210C10" } ], "DocsId": "T:System.Resources.Extensions.PreserializedResourceWriter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Resources.Extensions/src/System/Resources/Extensions/PreserializedResourceWriter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Resources.Extensions/src/System/Resources/Extensions/PreserializedResourceWriter.cs" }, { "Members": [ { "DocsId": "M:System.Resources.Extensions.DeserializingResourceReader.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Private.CoreLib/src/System/Resources/ResourceReader.cs#L93C9-L112C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Private.CoreLib/src/System/Resources/ResourceReader.cs#L93C9-L112C10" }, { "DocsId": "M:System.Resources.Extensions.DeserializingResourceReader.#ctor(System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Private.CoreLib/src/System/Resources/ResourceReader.cs#L114C9-L141C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Private.CoreLib/src/System/Resources/ResourceReader.cs#L114C9-L141C10" }, { "DocsId": "M:System.Resources.Extensions.DeserializingResourceReader.Close", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Private.CoreLib/src/System/Resources/ResourceReader.cs#L147C13-L148C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Private.CoreLib/src/System/Resources/ResourceReader.cs#L147C13-L148C10" }, { "DocsId": "M:System.Resources.Extensions.DeserializingResourceReader.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Private.CoreLib/src/System/Resources/ResourceReader.cs#L152C13-L153C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Private.CoreLib/src/System/Resources/ResourceReader.cs#L152C13-L153C10" }, { "DocsId": "M:System.Resources.Extensions.DeserializingResourceReader.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Private.CoreLib/src/System/Resources/ResourceReader.cs#L235C13-L235C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Private.CoreLib/src/System/Resources/ResourceReader.cs#L235C13-L235C36" }, { "DocsId": "M:System.Resources.Extensions.DeserializingResourceReader.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Private.CoreLib/src/System/Resources/ResourceReader.cs#L240C13-L242C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Private.CoreLib/src/System/Resources/ResourceReader.cs#L240C13-L242C49" } ], "DocsId": "T:System.Resources.Extensions.DeserializingResourceReader", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Resources.Extensions/src/System/Resources/Extensions/DeserializingResourceReader.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Resources.Extensions/src/System/Resources/Extensions/DeserializingResourceReader.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/System.Runtime.Caching.json b/xml/SourceLinkInformation/net-9.0/System.Runtime.Caching.json index 1b176ee1285..06a308a794f 100644 --- a/xml/SourceLinkInformation/net-9.0/System.Runtime.Caching.json +++ b/xml/SourceLinkInformation/net-9.0/System.Runtime.Caching.json @@ -1,669 +1,668 @@ { "Assembly": "System.Runtime.Caching", - "GUID": "963DE8C3104845CC8CFCBA78E719C333FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "2DDC173CF919439F87D55CDA77738D00FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:System.Runtime.Caching.CacheEntryChangeMonitor.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryChangeMonitor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryChangeMonitor.cs" }, { "DocsId": "P:System.Runtime.Caching.CacheEntryChangeMonitor.CacheKeys", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryChangeMonitor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryChangeMonitor.cs" }, { "DocsId": "P:System.Runtime.Caching.CacheEntryChangeMonitor.LastModified", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryChangeMonitor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryChangeMonitor.cs" }, { "DocsId": "P:System.Runtime.Caching.CacheEntryChangeMonitor.RegionName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryChangeMonitor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryChangeMonitor.cs" } ], "DocsId": "T:System.Runtime.Caching.CacheEntryChangeMonitor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryChangeMonitor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryChangeMonitor.cs" }, { "Members": [ { "DocsId": "M:System.Runtime.Caching.CacheEntryRemovedArguments.#ctor(System.Runtime.Caching.ObjectCache,System.Runtime.Caching.CacheEntryRemovedReason,System.Runtime.Caching.CacheItem)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryRemovedArguments.cs#L27C9-L41C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryRemovedArguments.cs#L27C9-L41C10" }, { "DocsId": "P:System.Runtime.Caching.CacheEntryRemovedArguments.CacheItem", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryRemovedArguments.cs#L14C19-L14C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryRemovedArguments.cs#L14C19-L14C37" }, { "DocsId": "P:System.Runtime.Caching.CacheEntryRemovedArguments.RemovedReason", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryRemovedArguments.cs#L19C19-L19C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryRemovedArguments.cs#L19C19-L19C34" }, { "DocsId": "P:System.Runtime.Caching.CacheEntryRemovedArguments.Source", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryRemovedArguments.cs#L24C19-L24C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryRemovedArguments.cs#L24C19-L24C34" } ], "DocsId": "T:System.Runtime.Caching.CacheEntryRemovedArguments", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryRemovedArguments.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryRemovedArguments.cs" }, { "Members": [ { "DocsId": "M:System.Runtime.Caching.CacheEntryRemovedCallback.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryRemovedCallback.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryRemovedCallback.cs" }, { "DocsId": "M:System.Runtime.Caching.CacheEntryRemovedCallback.Invoke(System.Runtime.Caching.CacheEntryRemovedArguments)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryRemovedCallback.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryRemovedCallback.cs" }, { "DocsId": "M:System.Runtime.Caching.CacheEntryRemovedCallback.BeginInvoke(System.Runtime.Caching.CacheEntryRemovedArguments,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryRemovedCallback.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryRemovedCallback.cs" }, { "DocsId": "M:System.Runtime.Caching.CacheEntryRemovedCallback.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryRemovedCallback.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryRemovedCallback.cs" } ], "DocsId": "T:System.Runtime.Caching.CacheEntryRemovedCallback", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryRemovedCallback.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryRemovedCallback.cs" }, { "Members": [ { "DocsId": "F:System.Runtime.Caching.CacheEntryRemovedReason.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryRemovedReason.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryRemovedReason.cs" }, { "DocsId": "F:System.Runtime.Caching.CacheEntryRemovedReason.Removed", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryRemovedReason.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryRemovedReason.cs" }, { "DocsId": "F:System.Runtime.Caching.CacheEntryRemovedReason.Expired", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryRemovedReason.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryRemovedReason.cs" }, { "DocsId": "F:System.Runtime.Caching.CacheEntryRemovedReason.Evicted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryRemovedReason.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryRemovedReason.cs" }, { "DocsId": "F:System.Runtime.Caching.CacheEntryRemovedReason.ChangeMonitorChanged", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryRemovedReason.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryRemovedReason.cs" }, { "DocsId": "F:System.Runtime.Caching.CacheEntryRemovedReason.CacheSpecificEviction", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryRemovedReason.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryRemovedReason.cs" } ], "DocsId": "T:System.Runtime.Caching.CacheEntryRemovedReason", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryRemovedReason.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryRemovedReason.cs" }, { "Members": [ { "DocsId": "M:System.Runtime.Caching.CacheEntryUpdateArguments.#ctor(System.Runtime.Caching.ObjectCache,System.Runtime.Caching.CacheEntryRemovedReason,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryUpdateArguments.cs#L49C9-L64C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryUpdateArguments.cs#L49C9-L64C10" }, { "DocsId": "P:System.Runtime.Caching.CacheEntryUpdateArguments.Key", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryUpdateArguments.cs#L19C19-L19C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryUpdateArguments.cs#L19C19-L19C31" }, { "DocsId": "P:System.Runtime.Caching.CacheEntryUpdateArguments.RemovedReason", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryUpdateArguments.cs#L24C19-L24C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryUpdateArguments.cs#L24C19-L24C34" }, { "DocsId": "P:System.Runtime.Caching.CacheEntryUpdateArguments.RegionName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryUpdateArguments.cs#L29C19-L29C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryUpdateArguments.cs#L29C19-L29C38" }, { "DocsId": "P:System.Runtime.Caching.CacheEntryUpdateArguments.Source", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryUpdateArguments.cs#L34C19-L34C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryUpdateArguments.cs#L34C19-L34C34" }, { "DocsId": "P:System.Runtime.Caching.CacheEntryUpdateArguments.UpdatedCacheItem", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryUpdateArguments.cs#L39C19-L39C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryUpdateArguments.cs#L39C19-L39C44" }, { "DocsId": "P:System.Runtime.Caching.CacheEntryUpdateArguments.UpdatedCacheItemPolicy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryUpdateArguments.cs#L45C19-L45C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryUpdateArguments.cs#L45C19-L45C50" } ], "DocsId": "T:System.Runtime.Caching.CacheEntryUpdateArguments", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryUpdateArguments.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryUpdateArguments.cs" }, { "Members": [ { "DocsId": "M:System.Runtime.Caching.CacheEntryUpdateCallback.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryUpdateCallback.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryUpdateCallback.cs" }, { "DocsId": "M:System.Runtime.Caching.CacheEntryUpdateCallback.Invoke(System.Runtime.Caching.CacheEntryUpdateArguments)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryUpdateCallback.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryUpdateCallback.cs" }, { "DocsId": "M:System.Runtime.Caching.CacheEntryUpdateCallback.BeginInvoke(System.Runtime.Caching.CacheEntryUpdateArguments,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryUpdateCallback.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryUpdateCallback.cs" }, { "DocsId": "M:System.Runtime.Caching.CacheEntryUpdateCallback.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryUpdateCallback.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryUpdateCallback.cs" } ], "DocsId": "T:System.Runtime.Caching.CacheEntryUpdateCallback", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryUpdateCallback.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheEntryUpdateCallback.cs" }, { "Members": [ { "DocsId": "M:System.Runtime.Caching.CacheItem.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheItem.cs#L16C9-L19C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheItem.cs#L16C9-L19C10" }, { "DocsId": "M:System.Runtime.Caching.CacheItem.#ctor(System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheItem.cs#L21C54-L24C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheItem.cs#L21C54-L24C10" }, { "DocsId": "M:System.Runtime.Caching.CacheItem.#ctor(System.String,System.Object,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheItem.cs#L26C73-L29C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheItem.cs#L26C73-L29C10" }, { "DocsId": "P:System.Runtime.Caching.CacheItem.Key", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheItem.cs#L10C29-L10C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheItem.cs#L10C29-L10C33" }, { "DocsId": "P:System.Runtime.Caching.CacheItem.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheItem.cs#L11C31-L11C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheItem.cs#L11C31-L11C35" }, { "DocsId": "P:System.Runtime.Caching.CacheItem.RegionName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheItem.cs#L12C36-L12C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheItem.cs#L12C36-L12C40" } ], "DocsId": "T:System.Runtime.Caching.CacheItem", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheItem.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheItem.cs" }, { "Members": [ { "DocsId": "M:System.Runtime.Caching.CacheItemPolicy.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheItemPolicy.cs#L50C9-L55C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheItemPolicy.cs#L50C9-L55C10" }, { "DocsId": "P:System.Runtime.Caching.CacheItemPolicy.AbsoluteExpiration", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheItemPolicy.cs#L20C19-L20C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheItemPolicy.cs#L20C19-L20C37" }, { "DocsId": "P:System.Runtime.Caching.CacheItemPolicy.ChangeMonitors", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheItemPolicy.cs#L24C60-L24C111" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheItemPolicy.cs#L24C60-L24C111" }, { "DocsId": "P:System.Runtime.Caching.CacheItemPolicy.Priority", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheItemPolicy.cs#L28C19-L28C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheItemPolicy.cs#L28C19-L28C36" }, { "DocsId": "P:System.Runtime.Caching.CacheItemPolicy.RemovedCallback", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheItemPolicy.cs#L34C19-L34C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheItemPolicy.cs#L34C19-L34C43" }, { "DocsId": "P:System.Runtime.Caching.CacheItemPolicy.SlidingExpiration", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheItemPolicy.cs#L40C19-L40C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheItemPolicy.cs#L40C19-L40C37" }, { "DocsId": "P:System.Runtime.Caching.CacheItemPolicy.UpdateCallback", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheItemPolicy.cs#L46C19-L46C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheItemPolicy.cs#L46C19-L46C42" } ], "DocsId": "T:System.Runtime.Caching.CacheItemPolicy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheItemPolicy.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheItemPolicy.cs" }, { "Members": [ { "DocsId": "F:System.Runtime.Caching.CacheItemPriority.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheItemPriority.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheItemPriority.cs" }, { "DocsId": "F:System.Runtime.Caching.CacheItemPriority.Default", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheItemPriority.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheItemPriority.cs" }, { "DocsId": "F:System.Runtime.Caching.CacheItemPriority.NotRemovable", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheItemPriority.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheItemPriority.cs" } ], "DocsId": "T:System.Runtime.Caching.CacheItemPriority", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheItemPriority.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/CacheItemPriority.cs" }, { "Members": [ { "DocsId": "M:System.Runtime.Caching.ChangeMonitor.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ChangeMonitor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ChangeMonitor.cs" }, { "DocsId": "M:System.Runtime.Caching.ChangeMonitor.InitializationComplete", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ChangeMonitor.cs#L142C13-L150C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ChangeMonitor.cs#L142C13-L150C10" }, { "DocsId": "M:System.Runtime.Caching.ChangeMonitor.OnChanged(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ChangeMonitor.cs#L159C13-L167C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ChangeMonitor.cs#L159C13-L167C10" }, { "DocsId": "M:System.Runtime.Caching.ChangeMonitor.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ChangeMonitor.cs#L205C13-L215C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ChangeMonitor.cs#L205C13-L215C10" }, { "DocsId": "M:System.Runtime.Caching.ChangeMonitor.NotifyOnChanged(System.Runtime.Caching.OnChangedCallback)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ChangeMonitor.cs#L224C13-L239C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ChangeMonitor.cs#L224C13-L239C10" }, { "DocsId": "M:System.Runtime.Caching.ChangeMonitor.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ChangeMonitor.cs#L90C9-L90C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ChangeMonitor.cs#L90C9-L90C52" }, { "DocsId": "P:System.Runtime.Caching.ChangeMonitor.HasChanged", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ChangeMonitor.cs#L174C40-L174C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ChangeMonitor.cs#L174C40-L174C63" }, { "DocsId": "P:System.Runtime.Caching.ChangeMonitor.IsDisposed", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ChangeMonitor.cs#L178C40-L178C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ChangeMonitor.cs#L178C40-L178C64" }, { "DocsId": "P:System.Runtime.Caching.ChangeMonitor.UniqueId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ChangeMonitor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ChangeMonitor.cs" } ], "DocsId": "T:System.Runtime.Caching.ChangeMonitor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ChangeMonitor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ChangeMonitor.cs" }, { "Members": [ { "DocsId": "F:System.Runtime.Caching.DefaultCacheCapabilities.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/DefaultCacheCapabilities.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/DefaultCacheCapabilities.cs" }, { "DocsId": "F:System.Runtime.Caching.DefaultCacheCapabilities.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/DefaultCacheCapabilities.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/DefaultCacheCapabilities.cs" }, { "DocsId": "F:System.Runtime.Caching.DefaultCacheCapabilities.InMemoryProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/DefaultCacheCapabilities.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/DefaultCacheCapabilities.cs" }, { "DocsId": "F:System.Runtime.Caching.DefaultCacheCapabilities.OutOfProcessProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/DefaultCacheCapabilities.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/DefaultCacheCapabilities.cs" }, { "DocsId": "F:System.Runtime.Caching.DefaultCacheCapabilities.CacheEntryChangeMonitors", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/DefaultCacheCapabilities.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/DefaultCacheCapabilities.cs" }, { "DocsId": "F:System.Runtime.Caching.DefaultCacheCapabilities.AbsoluteExpirations", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/DefaultCacheCapabilities.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/DefaultCacheCapabilities.cs" }, { "DocsId": "F:System.Runtime.Caching.DefaultCacheCapabilities.SlidingExpirations", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/DefaultCacheCapabilities.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/DefaultCacheCapabilities.cs" }, { "DocsId": "F:System.Runtime.Caching.DefaultCacheCapabilities.CacheEntryUpdateCallback", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/DefaultCacheCapabilities.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/DefaultCacheCapabilities.cs" }, { "DocsId": "F:System.Runtime.Caching.DefaultCacheCapabilities.CacheEntryRemovedCallback", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/DefaultCacheCapabilities.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/DefaultCacheCapabilities.cs" }, { "DocsId": "F:System.Runtime.Caching.DefaultCacheCapabilities.CacheRegions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/DefaultCacheCapabilities.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/DefaultCacheCapabilities.cs" } ], "DocsId": "T:System.Runtime.Caching.DefaultCacheCapabilities", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/DefaultCacheCapabilities.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/DefaultCacheCapabilities.cs" }, { "Members": [ { "DocsId": "M:System.Runtime.Caching.FileChangeMonitor.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/FileChangeMonitor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/FileChangeMonitor.cs" }, { "DocsId": "P:System.Runtime.Caching.FileChangeMonitor.FilePaths", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/FileChangeMonitor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/FileChangeMonitor.cs" }, { "DocsId": "P:System.Runtime.Caching.FileChangeMonitor.LastModified", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/FileChangeMonitor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/FileChangeMonitor.cs" } ], "DocsId": "T:System.Runtime.Caching.FileChangeMonitor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/FileChangeMonitor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/FileChangeMonitor.cs" }, { "Members": [ { "DocsId": "M:System.Runtime.Caching.HostFileChangeMonitor.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/HostFileChangeMonitor.cs#L121C13-L150C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/HostFileChangeMonitor.cs#L121C13-L150C10" }, { "DocsId": "M:System.Runtime.Caching.HostFileChangeMonitor.#ctor(System.Collections.Generic.IList{System.String})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/HostFileChangeMonitor.cs#L160C9-L176C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/HostFileChangeMonitor.cs#L160C9-L176C10" }, { "DocsId": "P:System.Runtime.Caching.HostFileChangeMonitor.FilePaths", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/HostFileChangeMonitor.cs#L156C70-L156C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/HostFileChangeMonitor.cs#L156C70-L156C88" }, { "DocsId": "P:System.Runtime.Caching.HostFileChangeMonitor.UniqueId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/HostFileChangeMonitor.cs#L157C49-L157C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/HostFileChangeMonitor.cs#L157C49-L157C66" }, { "DocsId": "P:System.Runtime.Caching.HostFileChangeMonitor.LastModified", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/HostFileChangeMonitor.cs#L158C61-L158C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/HostFileChangeMonitor.cs#L158C61-L158C82" } ], "DocsId": "T:System.Runtime.Caching.HostFileChangeMonitor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/HostFileChangeMonitor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/HostFileChangeMonitor.cs" }, { "Members": [ { "DocsId": "M:System.Runtime.Caching.MemoryCache.#ctor(System.String,System.Collections.Specialized.NameValueCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L39C9-L362C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L39C9-L362C10" }, { "DocsId": "M:System.Runtime.Caching.MemoryCache.#ctor(System.String,System.Collections.Specialized.NameValueCollection,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L39C9-L384C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L39C9-L384C10" }, { "DocsId": "M:System.Runtime.Caching.MemoryCache.CreateCacheEntryChangeMonitor(System.Collections.Generic.IEnumerable{System.String},System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L445C13-L467C96" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L445C13-L467C96" }, { "DocsId": "M:System.Runtime.Caching.MemoryCache.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L472C13-L494C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L472C13-L494C10" }, { "DocsId": "M:System.Runtime.Caching.MemoryCache.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L536C13-L545C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L536C13-L545C38" }, { "DocsId": "M:System.Runtime.Caching.MemoryCache.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L550C13-L559C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L550C13-L559C38" }, { "DocsId": "M:System.Runtime.Caching.MemoryCache.Trim(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L571C13-L584C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L571C13-L584C28" }, { "DocsId": "M:System.Runtime.Caching.MemoryCache.Contains(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L603C13-L603C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L603C13-L603C59" }, { "DocsId": "M:System.Runtime.Caching.MemoryCache.Add(System.Runtime.Caching.CacheItem,System.Runtime.Caching.CacheItemPolicy)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L608C13-L609C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L608C13-L609C75" }, { "DocsId": "M:System.Runtime.Caching.MemoryCache.AddOrGetExisting(System.String,System.Object,System.DateTimeOffset,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L614C13-L620C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L614C13-L620C65" }, { "DocsId": "M:System.Runtime.Caching.MemoryCache.AddOrGetExisting(System.Runtime.Caching.CacheItem,System.Runtime.Caching.CacheItemPolicy)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L625C13-L630C100" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L625C13-L630C100" }, { "DocsId": "M:System.Runtime.Caching.MemoryCache.AddOrGetExisting(System.String,System.Object,System.Runtime.Caching.CacheItemPolicy,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L635C13-L639C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L635C13-L639C65" }, { "DocsId": "M:System.Runtime.Caching.MemoryCache.Get(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L644C13-L644C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L644C13-L644C49" }, { "DocsId": "M:System.Runtime.Caching.MemoryCache.GetCacheItem(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L649C13-L650C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L649C13-L650C71" }, { "DocsId": "M:System.Runtime.Caching.MemoryCache.Set(System.String,System.Object,System.DateTimeOffset,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L655C13-L662C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L655C13-L662C10" }, { "DocsId": "M:System.Runtime.Caching.MemoryCache.Set(System.Runtime.Caching.CacheItem,System.Runtime.Caching.CacheItemPolicy)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L666C13-L672C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L666C13-L672C10" }, { "DocsId": "M:System.Runtime.Caching.MemoryCache.Set(System.String,System.Object,System.Runtime.Caching.CacheItemPolicy,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L676C13-L720C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L676C13-L720C10" }, { "DocsId": "M:System.Runtime.Caching.MemoryCache.Remove(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L794C13-L794C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L794C13-L794C77" }, { "DocsId": "M:System.Runtime.Caching.MemoryCache.Remove(System.String,System.Runtime.Caching.CacheEntryRemovedReason,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L799C13-L812C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L799C13-L812C33" }, { "DocsId": "M:System.Runtime.Caching.MemoryCache.GetCount(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L817C13-L831C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L817C13-L831C26" }, { "DocsId": "M:System.Runtime.Caching.MemoryCache.GetLastSize(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L836C13-L841C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L836C13-L841C41" }, { "DocsId": "M:System.Runtime.Caching.MemoryCache.GetValues(System.Collections.Generic.IEnumerable{System.String},System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L846C13-L873C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L846C13-L873C27" }, { "DocsId": "P:System.Runtime.Caching.MemoryCache.CacheMemoryLimit", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L281C17-L281C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L281C17-L281C48" }, { "DocsId": "P:System.Runtime.Caching.MemoryCache.Default", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L289C17-L296C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L289C17-L296C39" }, { "DocsId": "P:System.Runtime.Caching.MemoryCache.DefaultCacheCapabilities", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L304C17-L304C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L304C17-L304C37" }, { "DocsId": "P:System.Runtime.Caching.MemoryCache.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L310C19-L310C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L310C19-L310C32" }, { "DocsId": "P:System.Runtime.Caching.MemoryCache.PhysicalMemoryLimit", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L324C17-L324C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L324C17-L324C51" }, { "DocsId": "P:System.Runtime.Caching.MemoryCache.PollingInterval", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L334C17-L334C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L334C17-L334C47" }, { "DocsId": "P:System.Runtime.Caching.MemoryCache.Item(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L592C17-L592C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs#L592C17-L592C47" } ], "DocsId": "T:System.Runtime.Caching.MemoryCache", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs" }, { "Members": [ { "DocsId": "M:System.Runtime.Caching.ObjectCache.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs#L52C13-L52C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs#L52C13-L52C86" }, { "DocsId": "M:System.Runtime.Caching.ObjectCache.CreateCacheEntryChangeMonitor(System.Collections.Generic.IEnumerable{System.String},System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs" }, { "DocsId": "M:System.Runtime.Caching.ObjectCache.System#Collections#Generic#IEnumerable>#GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs#L59C13-L59C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs#L59C13-L59C36" }, { "DocsId": "M:System.Runtime.Caching.ObjectCache.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs" }, { "DocsId": "M:System.Runtime.Caching.ObjectCache.Contains(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs" }, { "DocsId": "M:System.Runtime.Caching.ObjectCache.Add(System.String,System.Object,System.DateTimeOffset,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs#L70C13-L70C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs#L70C13-L70C91" }, { "DocsId": "M:System.Runtime.Caching.ObjectCache.Add(System.Runtime.Caching.CacheItem,System.Runtime.Caching.CacheItemPolicy)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs#L75C13-L75C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs#L75C13-L75C61" }, { "DocsId": "M:System.Runtime.Caching.ObjectCache.Add(System.String,System.Object,System.Runtime.Caching.CacheItemPolicy,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs#L80C13-L80C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs#L80C13-L80C79" }, { "DocsId": "M:System.Runtime.Caching.ObjectCache.AddOrGetExisting(System.String,System.Object,System.DateTimeOffset,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs" }, { "DocsId": "M:System.Runtime.Caching.ObjectCache.AddOrGetExisting(System.Runtime.Caching.CacheItem,System.Runtime.Caching.CacheItemPolicy)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs" }, { "DocsId": "M:System.Runtime.Caching.ObjectCache.AddOrGetExisting(System.String,System.Object,System.Runtime.Caching.CacheItemPolicy,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs" }, { "DocsId": "M:System.Runtime.Caching.ObjectCache.Get(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs" }, { "DocsId": "M:System.Runtime.Caching.ObjectCache.GetCacheItem(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs" }, { "DocsId": "M:System.Runtime.Caching.ObjectCache.Set(System.String,System.Object,System.DateTimeOffset,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs" }, { "DocsId": "M:System.Runtime.Caching.ObjectCache.Set(System.Runtime.Caching.CacheItem,System.Runtime.Caching.CacheItemPolicy)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs" }, { "DocsId": "M:System.Runtime.Caching.ObjectCache.Set(System.String,System.Object,System.Runtime.Caching.CacheItemPolicy,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs" }, { "DocsId": "M:System.Runtime.Caching.ObjectCache.GetValues(System.Collections.Generic.IEnumerable{System.String},System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs" }, { "DocsId": "M:System.Runtime.Caching.ObjectCache.GetValues(System.String,System.String[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs#L103C13-L103C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs#L103C13-L103C48" }, { "DocsId": "M:System.Runtime.Caching.ObjectCache.Remove(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs" }, { "DocsId": "M:System.Runtime.Caching.ObjectCache.GetCount(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs" }, { "DocsId": "M:System.Runtime.Caching.ObjectCache.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs" }, { "DocsId": "F:System.Runtime.Caching.ObjectCache.InfiniteAbsoluteExpiration", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs" }, { "DocsId": "F:System.Runtime.Caching.ObjectCache.NoSlidingExpiration", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs" }, { "DocsId": "P:System.Runtime.Caching.ObjectCache.Host", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs#L27C17-L27C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs#L27C17-L27C31" }, { "DocsId": "P:System.Runtime.Caching.ObjectCache.DefaultCacheCapabilities", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs" }, { "DocsId": "P:System.Runtime.Caching.ObjectCache.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs" }, { "DocsId": "P:System.Runtime.Caching.ObjectCache.Item(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs" } ], "DocsId": "T:System.Runtime.Caching.ObjectCache", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/ObjectCache.cs" }, { "Members": [ { "DocsId": "M:System.Runtime.Caching.OnChangedCallback.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/OnChangedCallback.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/OnChangedCallback.cs" }, { "DocsId": "M:System.Runtime.Caching.OnChangedCallback.Invoke(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/OnChangedCallback.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/OnChangedCallback.cs" }, { "DocsId": "M:System.Runtime.Caching.OnChangedCallback.BeginInvoke(System.Object,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/OnChangedCallback.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/OnChangedCallback.cs" }, { "DocsId": "M:System.Runtime.Caching.OnChangedCallback.EndInvoke(System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/OnChangedCallback.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/OnChangedCallback.cs" } ], "DocsId": "T:System.Runtime.Caching.OnChangedCallback", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/OnChangedCallback.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/OnChangedCallback.cs" }, { "Members": [ { "DocsId": "M:System.Runtime.Caching.Hosting.IApplicationIdentifier.GetApplicationId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/Hosting/IApplicationIdentifier.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/Hosting/IApplicationIdentifier.cs" } ], "DocsId": "T:System.Runtime.Caching.Hosting.IApplicationIdentifier", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/Hosting/IApplicationIdentifier.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/Hosting/IApplicationIdentifier.cs" }, { "Members": [ { "DocsId": "M:System.Runtime.Caching.Hosting.IFileChangeNotificationSystem.StartMonitoring(System.String,System.Runtime.Caching.OnChangedCallback,System.Object@,System.DateTimeOffset@,System.Int64@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/Hosting/IFileChangeNotificationSystem.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/Hosting/IFileChangeNotificationSystem.cs" }, { "DocsId": "M:System.Runtime.Caching.Hosting.IFileChangeNotificationSystem.StopMonitoring(System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/Hosting/IFileChangeNotificationSystem.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/Hosting/IFileChangeNotificationSystem.cs" } ], "DocsId": "T:System.Runtime.Caching.Hosting.IFileChangeNotificationSystem", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/Hosting/IFileChangeNotificationSystem.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/Hosting/IFileChangeNotificationSystem.cs" }, { "Members": [ { "DocsId": "M:System.Runtime.Caching.Hosting.IMemoryCacheManager.UpdateCacheSize(System.Int64,System.Runtime.Caching.MemoryCache)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/Hosting/IMemoryCacheManager.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/Hosting/IMemoryCacheManager.cs" }, { "DocsId": "M:System.Runtime.Caching.Hosting.IMemoryCacheManager.ReleaseCache(System.Runtime.Caching.MemoryCache)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/Hosting/IMemoryCacheManager.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/Hosting/IMemoryCacheManager.cs" } ], "DocsId": "T:System.Runtime.Caching.Hosting.IMemoryCacheManager", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/Hosting/IMemoryCacheManager.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/Hosting/IMemoryCacheManager.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/System.Runtime.Serialization.Schema.json b/xml/SourceLinkInformation/net-9.0/System.Runtime.Serialization.Schema.json index 15e13b29e30..8b9fac49a12 100644 --- a/xml/SourceLinkInformation/net-9.0/System.Runtime.Serialization.Schema.json +++ b/xml/SourceLinkInformation/net-9.0/System.Runtime.Serialization.Schema.json @@ -1,129 +1,128 @@ { "Assembly": "System.Runtime.Serialization.Schema", - "GUID": "425EA0C20EB34C5AB87228C7E591CEC5FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "D59AEC1423E64FB6997B3220B561C592FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:System.Runtime.Serialization.ISerializationCodeDomSurrogateProvider.ProcessImportedType(System.CodeDom.CodeTypeDeclaration,System.CodeDom.CodeCompileUnit)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/ISerializationCodeDomSurrogateProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/ISerializationCodeDomSurrogateProvider.cs" } ], "DocsId": "T:System.Runtime.Serialization.ISerializationCodeDomSurrogateProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/ISerializationCodeDomSurrogateProvider.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/ISerializationCodeDomSurrogateProvider.cs" }, { "Members": [ { "DocsId": "M:System.Runtime.Serialization.ImportOptions.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/ImportOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/ImportOptions.cs" }, { "DocsId": "P:System.Runtime.Serialization.ImportOptions.CodeProvider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/ImportOptions.cs#L26C48-L26C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/ImportOptions.cs#L26C48-L26C52" }, { "DocsId": "P:System.Runtime.Serialization.ImportOptions.EnableDataBinding", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/ImportOptions.cs#L31C41-L31C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/ImportOptions.cs#L31C41-L31C45" }, { "DocsId": "P:System.Runtime.Serialization.ImportOptions.DataContractSurrogate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/ImportOptions.cs#L40C73-L40C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/ImportOptions.cs#L40C73-L40C77" }, { "DocsId": "P:System.Runtime.Serialization.ImportOptions.GenerateInternal", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/ImportOptions.cs#L45C40-L45C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/ImportOptions.cs#L45C40-L45C44" }, { "DocsId": "P:System.Runtime.Serialization.ImportOptions.GenerateSerializable", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/ImportOptions.cs#L50C44-L50C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/ImportOptions.cs#L50C44-L50C48" }, { "DocsId": "P:System.Runtime.Serialization.ImportOptions.ImportXmlType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/ImportOptions.cs#L55C37-L55C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/ImportOptions.cs#L55C37-L55C41" }, { "DocsId": "P:System.Runtime.Serialization.ImportOptions.Namespaces", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/ImportOptions.cs#L60C58-L60C106" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/ImportOptions.cs#L60C58-L60C106" }, { "DocsId": "P:System.Runtime.Serialization.ImportOptions.ReferencedCollectionTypes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/ImportOptions.cs#L65C63-L65C110" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/ImportOptions.cs#L65C63-L65C110" }, { "DocsId": "P:System.Runtime.Serialization.ImportOptions.ReferencedTypes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/ImportOptions.cs#L70C53-L70C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/ImportOptions.cs#L70C53-L70C90" } ], "DocsId": "T:System.Runtime.Serialization.ImportOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/ImportOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/ImportOptions.cs" }, { "Members": [ { "DocsId": "M:System.Runtime.Serialization.XsdDataContractImporter.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/XsdDataContractImporter.cs#L42C9-L44C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/XsdDataContractImporter.cs#L42C9-L44C10" }, { "DocsId": "M:System.Runtime.Serialization.XsdDataContractImporter.#ctor(System.CodeDom.CodeCompileUnit)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/XsdDataContractImporter.cs#L50C9-L53C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/XsdDataContractImporter.cs#L50C9-L53C10" }, { "DocsId": "M:System.Runtime.Serialization.XsdDataContractImporter.Import(System.Xml.Schema.XmlSchemaSet)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/XsdDataContractImporter.cs#L81C13-L85C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/XsdDataContractImporter.cs#L81C13-L85C10" }, { "DocsId": "M:System.Runtime.Serialization.XsdDataContractImporter.Import(System.Xml.Schema.XmlSchemaSet,System.Collections.Generic.ICollection{System.Xml.XmlQualifiedName})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/XsdDataContractImporter.cs#L95C13-L102C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/XsdDataContractImporter.cs#L95C13-L102C10" }, { "DocsId": "M:System.Runtime.Serialization.XsdDataContractImporter.Import(System.Xml.Schema.XmlSchemaSet,System.Xml.XmlQualifiedName)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/XsdDataContractImporter.cs#L112C13-L120C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/XsdDataContractImporter.cs#L112C13-L120C10" }, { "DocsId": "M:System.Runtime.Serialization.XsdDataContractImporter.Import(System.Xml.Schema.XmlSchemaSet,System.Xml.Schema.XmlSchemaElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/XsdDataContractImporter.cs#L132C13-L141C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/XsdDataContractImporter.cs#L132C13-L141C36" }, { "DocsId": "M:System.Runtime.Serialization.XsdDataContractImporter.CanImport(System.Xml.Schema.XmlSchemaSet)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/XsdDataContractImporter.cs#L152C13-L155C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/XsdDataContractImporter.cs#L152C13-L155C59" }, { "DocsId": "M:System.Runtime.Serialization.XsdDataContractImporter.CanImport(System.Xml.Schema.XmlSchemaSet,System.Collections.Generic.ICollection{System.Xml.XmlQualifiedName})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/XsdDataContractImporter.cs#L167C13-L173C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/XsdDataContractImporter.cs#L167C13-L173C64" }, { "DocsId": "M:System.Runtime.Serialization.XsdDataContractImporter.CanImport(System.Xml.Schema.XmlSchemaSet,System.Xml.XmlQualifiedName)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/XsdDataContractImporter.cs#L185C13-L191C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/XsdDataContractImporter.cs#L185C13-L191C90" }, { "DocsId": "M:System.Runtime.Serialization.XsdDataContractImporter.CanImport(System.Xml.Schema.XmlSchemaSet,System.Xml.Schema.XmlSchemaElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/XsdDataContractImporter.cs#L203C13-L210C89" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/XsdDataContractImporter.cs#L203C13-L210C89" }, { "DocsId": "M:System.Runtime.Serialization.XsdDataContractImporter.GetCodeTypeReference(System.Xml.XmlQualifiedName)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/XsdDataContractImporter.cs#L221C13-L223C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/XsdDataContractImporter.cs#L221C13-L223C68" }, { "DocsId": "M:System.Runtime.Serialization.XsdDataContractImporter.GetCodeTypeReference(System.Xml.XmlQualifiedName,System.Xml.Schema.XmlSchemaElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/XsdDataContractImporter.cs#L235C13-L241C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/XsdDataContractImporter.cs#L235C13-L241C91" }, { "DocsId": "M:System.Runtime.Serialization.XsdDataContractImporter.GetKnownTypeReferences(System.Xml.XmlQualifiedName)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/XsdDataContractImporter.cs#L268C13-L280C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/XsdDataContractImporter.cs#L268C13-L280C70" }, { "DocsId": "P:System.Runtime.Serialization.XsdDataContractImporter.Options", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/XsdDataContractImporter.cs#L58C41-L58C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/XsdDataContractImporter.cs#L58C41-L58C45" }, { "DocsId": "P:System.Runtime.Serialization.XsdDataContractImporter.CodeCompileUnit", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/XsdDataContractImporter.cs#L63C51-L63C93" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/XsdDataContractImporter.cs#L63C51-L63C93" } ], "DocsId": "T:System.Runtime.Serialization.XsdDataContractImporter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/XsdDataContractImporter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Runtime.Serialization.Schema/src/System/Runtime/Serialization/Schema/XsdDataContractImporter.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/System.Security.Cryptography.Cose.json b/xml/SourceLinkInformation/net-9.0/System.Security.Cryptography.Cose.json index 5acac36fe8f..cc8f4820a49 100644 --- a/xml/SourceLinkInformation/net-9.0/System.Security.Cryptography.Cose.json +++ b/xml/SourceLinkInformation/net-9.0/System.Security.Cryptography.Cose.json @@ -1,539 +1,538 @@ { "Assembly": "System.Security.Cryptography.Cose", - "GUID": "CBC882FC827A4D0C97836CF17186B137FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "B4BBDC1BFE8C466BB63C4B6C0ECC741CFFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:System.Security.Cryptography.Cose.CoseHeaderLabel.#ctor(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderLabel.cs#L50C13-L53C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderLabel.cs#L50C13-L53C10" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseHeaderLabel.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderLabel.cs#L62C13-L70C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderLabel.cs#L62C13-L70C10" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseHeaderLabel.Equals(System.Security.Cryptography.Cose.CoseHeaderLabel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderLabel.cs#L79C13-L79C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderLabel.cs#L79C13-L79C95" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseHeaderLabel.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderLabel.cs#L87C73-L87C124" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderLabel.cs#L87C73-L87C124" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseHeaderLabel.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderLabel.cs#L99C13-L104C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderLabel.cs#L99C13-L104C57" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseHeaderLabel.op_Equality(System.Security.Cryptography.Cose.CoseHeaderLabel,System.Security.Cryptography.Cose.CoseHeaderLabel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderLabel.cs#L113C88-L113C106" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderLabel.cs#L113C88-L113C106" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseHeaderLabel.op_Inequality(System.Security.Cryptography.Cose.CoseHeaderLabel,System.Security.Cryptography.Cose.CoseHeaderLabel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderLabel.cs#L121C88-L121C107" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderLabel.cs#L121C88-L121C107" }, { "DocsId": "P:System.Security.Cryptography.Cose.CoseHeaderLabel.Algorithm", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderLabel.cs#L23C52-L23C89" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderLabel.cs#L23C52-L23C89" }, { "DocsId": "P:System.Security.Cryptography.Cose.CoseHeaderLabel.CriticalHeaders", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderLabel.cs#L28C58-L28C96" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderLabel.cs#L28C58-L28C96" }, { "DocsId": "P:System.Security.Cryptography.Cose.CoseHeaderLabel.ContentType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderLabel.cs#L33C54-L33C99" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderLabel.cs#L33C54-L33C99" }, { "DocsId": "P:System.Security.Cryptography.Cose.CoseHeaderLabel.KeyIdentifier", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderLabel.cs#L38C56-L38C93" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderLabel.cs#L38C56-L38C93" } ], "DocsId": "T:System.Security.Cryptography.Cose.CoseHeaderLabel", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderLabel.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderLabel.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Cose.CoseHeaderMap.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L30C34-L30C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L30C34-L30C61" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseHeaderMap.System#Collections#Generic#IReadOnlyDictionary#get_Keys", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L58C100-L58C122" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L58C100-L58C122" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseHeaderMap.System#Collections#Generic#IReadOnlyDictionary#get_Values", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L61C102-L61C126" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L61C102-L61C126" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseHeaderMap.GetValueAsInt32(System.Security.Cryptography.Cose.CoseHeaderLabel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L89C62-L89C104" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L89C62-L89C104" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseHeaderMap.GetValueAsString(System.Security.Cryptography.Cose.CoseHeaderLabel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L98C66-L98C109" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L98C66-L98C109" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseHeaderMap.GetValueAsBytes(System.Security.Cryptography.Cose.CoseHeaderLabel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L106C65-L106C107" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L106C65-L106C107" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseHeaderMap.GetValueAsBytes(System.Security.Cryptography.Cose.CoseHeaderLabel,System.Span{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L117C86-L117C139" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L117C86-L117C139" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseHeaderMap.Add(System.Security.Cryptography.Cose.CoseHeaderLabel,System.Security.Cryptography.Cose.CoseHeaderValue)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L128C13-L131C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L128C13-L131C10" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseHeaderMap.Add(System.Collections.Generic.KeyValuePair{System.Security.Cryptography.Cose.CoseHeaderLabel,System.Security.Cryptography.Cose.CoseHeaderValue})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L139C81-L139C106" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L139C81-L139C106" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseHeaderMap.Add(System.Security.Cryptography.Cose.CoseHeaderLabel,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L147C62-L147C106" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L147C62-L147C106" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseHeaderMap.Add(System.Security.Cryptography.Cose.CoseHeaderLabel,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L155C65-L155C110" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L155C65-L155C110" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseHeaderMap.Add(System.Security.Cryptography.Cose.CoseHeaderLabel,System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L167C65-L167C109" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L167C65-L167C109" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseHeaderMap.Add(System.Security.Cryptography.Cose.CoseHeaderLabel,System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L179C77-L179C121" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L179C77-L179C121" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseHeaderMap.ContainsKey(System.Security.Cryptography.Cose.CoseHeaderLabel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L182C57-L182C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L182C57-L182C91" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseHeaderMap.TryGetValue(System.Security.Cryptography.Cose.CoseHeaderLabel,System.Security.Cryptography.Cose.CoseHeaderValue@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L185C84-L185C129" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L185C84-L185C129" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseHeaderMap.Clear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L193C13-L195C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L193C13-L195C10" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseHeaderMap.Contains(System.Collections.Generic.KeyValuePair{System.Security.Cryptography.Cose.CoseHeaderLabel,System.Security.Cryptography.Cose.CoseHeaderValue})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L199C16-L199C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L199C16-L199C59" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseHeaderMap.CopyTo(System.Collections.Generic.KeyValuePair{System.Security.Cryptography.Cose.CoseHeaderLabel,System.Security.Cryptography.Cose.CoseHeaderValue}[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L203C16-L203C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L203C16-L203C70" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseHeaderMap.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L207C16-L207C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L207C16-L207C49" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseHeaderMap.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L211C16-L211C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L211C16-L211C49" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseHeaderMap.Remove(System.Security.Cryptography.Cose.CoseHeaderLabel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L221C13-L222C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L221C13-L222C52" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseHeaderMap.Remove(System.Collections.Generic.KeyValuePair{System.Security.Cryptography.Cose.CoseHeaderLabel,System.Security.Cryptography.Cose.CoseHeaderValue})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L233C13-L234C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L233C13-L234C62" }, { "DocsId": "P:System.Security.Cryptography.Cose.CoseHeaderMap.IsReadOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L25C34-L25C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L25C34-L25C38" }, { "DocsId": "P:System.Security.Cryptography.Cose.CoseHeaderMap.Keys", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L43C53-L43C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L43C53-L43C75" }, { "DocsId": "P:System.Security.Cryptography.Cose.CoseHeaderMap.Values", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L49C55-L49C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L49C55-L49C79" }, { "DocsId": "P:System.Security.Cryptography.Cose.CoseHeaderMap.Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L55C29-L55C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L55C29-L55C52" }, { "DocsId": "P:System.Security.Cryptography.Cose.CoseHeaderMap.System#Collections#Generic#IReadOnlyDictionary#Keys", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L58C100-L58C122" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L58C100-L58C122" }, { "DocsId": "P:System.Security.Cryptography.Cose.CoseHeaderMap.System#Collections#Generic#IReadOnlyDictionary#Values", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L61C102-L61C126" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L61C102-L61C126" }, { "DocsId": "P:System.Security.Cryptography.Cose.CoseHeaderMap.Item(System.Security.Cryptography.Cose.CoseHeaderLabel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L73C20-L73C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs#L73C20-L73C42" } ], "DocsId": "T:System.Security.Cryptography.Cose.CoseHeaderMap", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderMap.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Cose.CoseHeaderValue.FromEncodedValue(System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderValue.cs#L39C13-L40C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderValue.cs#L39C13-L40C55" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseHeaderValue.FromEncodedValue(System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderValue.cs#L51C13-L56C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderValue.cs#L51C13-L56C60" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseHeaderValue.FromInt32(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderValue.cs#L74C13-L77C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderValue.cs#L74C13-L77C53" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseHeaderValue.FromString(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderValue.cs#L88C13-L96C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderValue.cs#L88C13-L96C53" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseHeaderValue.FromBytes(System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderValue.cs#L107C13-L110C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderValue.cs#L107C13-L110C53" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseHeaderValue.FromBytes(System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderValue.cs#L122C13-L127C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderValue.cs#L122C13-L127C46" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseHeaderValue.GetValueAsInt32", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderValue.cs#L137C13-L154C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderValue.cs#L137C13-L154C27" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseHeaderValue.GetValueAsString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderValue.cs#L164C13-L181C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderValue.cs#L164C13-L181C27" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseHeaderValue.GetValueAsBytes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderValue.cs#L191C13-L208C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderValue.cs#L191C13-L208C27" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseHeaderValue.GetValueAsBytes(System.Span{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderValue.cs#L220C13-L240C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderValue.cs#L220C13-L240C33" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseHeaderValue.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderValue.cs#L248C73-L248C124" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderValue.cs#L248C73-L248C124" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseHeaderValue.Equals(System.Security.Cryptography.Cose.CoseHeaderValue)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderValue.cs#L255C54-L255C110" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderValue.cs#L255C54-L255C110" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseHeaderValue.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderValue.cs#L263C13-L272C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderValue.cs#L263C13-L272C42" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseHeaderValue.op_Equality(System.Security.Cryptography.Cose.CoseHeaderValue,System.Security.Cryptography.Cose.CoseHeaderValue)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderValue.cs#L281C88-L281C106" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderValue.cs#L281C88-L281C106" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseHeaderValue.op_Inequality(System.Security.Cryptography.Cose.CoseHeaderValue,System.Security.Cryptography.Cose.CoseHeaderValue)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderValue.cs#L289C88-L289C107" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderValue.cs#L289C88-L289C107" }, { "DocsId": "P:System.Security.Cryptography.Cose.CoseHeaderValue.EncodedValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderValue.cs#L18C61-L18C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderValue.cs#L18C61-L18C65" } ], "DocsId": "T:System.Security.Cryptography.Cose.CoseHeaderValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderValue.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseHeaderValue.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Cose.CoseMessage.DecodeSign1(System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMessage.cs#L95C13-L98C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMessage.cs#L95C13-L98C69" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseMessage.DecodeSign1(System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMessage.cs#L110C13-L119C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMessage.cs#L110C13-L119C10" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseMessage.DecodeMultiSign(System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMessage.cs#L181C13-L184C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMessage.cs#L181C13-L184C73" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseMessage.DecodeMultiSign(System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMessage.cs#L196C13-L205C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMessage.cs#L196C13-L205C10" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseMessage.Encode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMessage.cs#L597C13-L601C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMessage.cs#L597C13-L601C27" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseMessage.Encode(System.Span{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMessage.cs#L615C13-L620C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMessage.cs#L615C13-L620C33" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseMessage.TryEncode(System.Span{System.Byte},System.Int32@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMessage.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMessage.cs" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseMessage.GetEncodedLength", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMessage.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMessage.cs" }, { "DocsId": "P:System.Security.Cryptography.Cose.CoseMessage.ProtectedHeaders", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMessage.cs#L41C50-L41C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMessage.cs#L41C50-L41C67" }, { "DocsId": "P:System.Security.Cryptography.Cose.CoseMessage.UnprotectedHeaders", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMessage.cs#L47C52-L47C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMessage.cs#L47C52-L47C71" }, { "DocsId": "P:System.Security.Cryptography.Cose.CoseMessage.RawProtectedHeaders", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMessage.cs#L53C60-L53C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMessage.cs#L53C60-L53C82" }, { "DocsId": "P:System.Security.Cryptography.Cose.CoseMessage.Content", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMessage.cs#L74C17-L79C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMessage.cs#L74C17-L79C33" } ], "DocsId": "T:System.Security.Cryptography.Cose.CoseMessage", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMessage.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMessage.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Cose.CoseMultiSignMessage.SignDetached(System.Byte[],System.Security.Cryptography.Cose.CoseSigner,System.Security.Cryptography.Cose.CoseHeaderMap,System.Security.Cryptography.Cose.CoseHeaderMap,System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMultiSignMessage.cs#L69C13-L72C132" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMultiSignMessage.cs#L69C13-L72C132" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseMultiSignMessage.SignEmbedded(System.Byte[],System.Security.Cryptography.Cose.CoseSigner,System.Security.Cryptography.Cose.CoseHeaderMap,System.Security.Cryptography.Cose.CoseHeaderMap,System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMultiSignMessage.cs#L100C13-L103C133" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMultiSignMessage.cs#L100C13-L103C133" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseMultiSignMessage.SignDetached(System.ReadOnlySpan{System.Byte},System.Security.Cryptography.Cose.CoseSigner,System.Security.Cryptography.Cose.CoseHeaderMap,System.Security.Cryptography.Cose.CoseHeaderMap,System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMultiSignMessage.cs#L130C16-L130C127" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMultiSignMessage.cs#L130C16-L130C127" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseMultiSignMessage.SignEmbedded(System.ReadOnlySpan{System.Byte},System.Security.Cryptography.Cose.CoseSigner,System.Security.Cryptography.Cose.CoseHeaderMap,System.Security.Cryptography.Cose.CoseHeaderMap,System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMultiSignMessage.cs#L157C16-L157C128" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMultiSignMessage.cs#L157C16-L157C128" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseMultiSignMessage.SignDetached(System.IO.Stream,System.Security.Cryptography.Cose.CoseSigner,System.Security.Cryptography.Cose.CoseHeaderMap,System.Security.Cryptography.Cose.CoseHeaderMap,System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMultiSignMessage.cs#L189C13-L198C135" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMultiSignMessage.cs#L189C13-L198C135" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseMultiSignMessage.SignDetachedAsync(System.IO.Stream,System.Security.Cryptography.Cose.CoseSigner,System.Security.Cryptography.Cose.CoseHeaderMap,System.Security.Cryptography.Cose.CoseHeaderMap,System.ReadOnlyMemory{System.Byte},System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMultiSignMessage.cs#L260C13-L275C146" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMultiSignMessage.cs#L260C13-L275C146" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseMultiSignMessage.TrySignDetached(System.ReadOnlySpan{System.Byte},System.Span{System.Byte},System.Security.Cryptography.Cose.CoseSigner,System.Int32@,System.Security.Cryptography.Cose.CoseHeaderMap,System.Security.Cryptography.Cose.CoseHeaderMap,System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMultiSignMessage.cs#L320C16-L320C151" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMultiSignMessage.cs#L320C16-L320C151" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseMultiSignMessage.TrySignEmbedded(System.ReadOnlySpan{System.Byte},System.Span{System.Byte},System.Security.Cryptography.Cose.CoseSigner,System.Int32@,System.Security.Cryptography.Cose.CoseHeaderMap,System.Security.Cryptography.Cose.CoseHeaderMap,System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMultiSignMessage.cs#L348C16-L348C152" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMultiSignMessage.cs#L348C16-L348C152" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseMultiSignMessage.GetEncodedLength", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMultiSignMessage.cs#L543C13-L554C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMultiSignMessage.cs#L543C13-L554C34" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseMultiSignMessage.TryEncode(System.Span{System.Byte},System.Int32@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMultiSignMessage.cs#L576C13-L630C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMultiSignMessage.cs#L576C13-L630C25" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseMultiSignMessage.AddSignatureForEmbedded(System.Security.Cryptography.Cose.CoseSigner,System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMultiSignMessage.cs#L650C16-L650C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMultiSignMessage.cs#L650C16-L650C72" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseMultiSignMessage.AddSignatureForEmbedded(System.Security.Cryptography.Cose.CoseSigner,System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMultiSignMessage.cs#L670C13-L681C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMultiSignMessage.cs#L670C13-L681C10" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseMultiSignMessage.AddSignatureForDetached(System.Byte[],System.Security.Cryptography.Cose.CoseSigner,System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMultiSignMessage.cs#L702C13-L708C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMultiSignMessage.cs#L702C13-L708C10" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseMultiSignMessage.AddSignatureForDetached(System.ReadOnlySpan{System.Byte},System.Security.Cryptography.Cose.CoseSigner,System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMultiSignMessage.cs#L729C13-L740C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMultiSignMessage.cs#L729C13-L740C10" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseMultiSignMessage.AddSignatureForDetached(System.IO.Stream,System.Security.Cryptography.Cose.CoseSigner,System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMultiSignMessage.cs#L765C13-L776C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMultiSignMessage.cs#L765C13-L776C10" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseMultiSignMessage.AddSignatureForDetachedAsync(System.IO.Stream,System.Security.Cryptography.Cose.CoseSigner,System.ReadOnlyMemory{System.Byte},System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMultiSignMessage.cs#L841C13-L851C102" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMultiSignMessage.cs#L841C13-L851C102" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseMultiSignMessage.RemoveSignature(System.Security.Cryptography.Cose.CoseSignature)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMultiSignMessage.cs#L894C13-L900C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMultiSignMessage.cs#L894C13-L900C10" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseMultiSignMessage.RemoveSignature(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMultiSignMessage.cs#L917C16-L917C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMultiSignMessage.cs#L917C16-L917C43" }, { "DocsId": "P:System.Security.Cryptography.Cose.CoseMultiSignMessage.Signatures", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMultiSignMessage.cs#L30C63-L30C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMultiSignMessage.cs#L30C63-L30C67" } ], "DocsId": "T:System.Security.Cryptography.Cose.CoseMultiSignMessage", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMultiSignMessage.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseMultiSignMessage.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Cose.CoseSign1Message.SignDetached(System.Byte[],System.Security.Cryptography.Cose.CoseSigner,System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSign1Message.cs#L53C13-L59C103" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSign1Message.cs#L53C13-L59C103" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseSign1Message.SignEmbedded(System.Byte[],System.Security.Cryptography.Cose.CoseSigner,System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSign1Message.cs#L81C13-L87C104" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSign1Message.cs#L81C13-L87C104" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseSign1Message.SignDetached(System.ReadOnlySpan{System.Byte},System.Security.Cryptography.Cose.CoseSigner,System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSign1Message.cs#L109C13-L112C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSign1Message.cs#L109C13-L112C94" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseSign1Message.SignEmbedded(System.ReadOnlySpan{System.Byte},System.Security.Cryptography.Cose.CoseSigner,System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSign1Message.cs#L134C13-L137C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSign1Message.cs#L134C13-L137C95" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseSign1Message.SignDetached(System.IO.Stream,System.Security.Cryptography.Cose.CoseSigner,System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSign1Message.cs#L163C13-L175C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSign1Message.cs#L163C13-L175C97" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseSign1Message.SignDetachedAsync(System.IO.Stream,System.Security.Cryptography.Cose.CoseSigner,System.ReadOnlyMemory{System.Byte},System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSign1Message.cs#L217C13-L232C108" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSign1Message.cs#L217C13-L232C108" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseSign1Message.TrySignDetached(System.ReadOnlySpan{System.Byte},System.Span{System.Byte},System.Security.Cryptography.Cose.CoseSigner,System.Int32@,System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSign1Message.cs#L264C16-L264C113" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSign1Message.cs#L264C16-L264C113" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseSign1Message.TrySignEmbedded(System.ReadOnlySpan{System.Byte},System.Span{System.Byte},System.Security.Cryptography.Cose.CoseSigner,System.Int32@,System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSign1Message.cs#L286C16-L286C114" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSign1Message.cs#L286C16-L286C114" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseSign1Message.VerifyEmbedded(System.Security.Cryptography.AsymmetricAlgorithm,System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSign1Message.cs#L396C13-L406C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSign1Message.cs#L396C13-L406C97" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseSign1Message.VerifyEmbedded(System.Security.Cryptography.AsymmetricAlgorithm,System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSign1Message.cs#L438C13-L448C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSign1Message.cs#L438C13-L448C97" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseSign1Message.VerifyDetached(System.Security.Cryptography.AsymmetricAlgorithm,System.Byte[],System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSign1Message.cs#L482C13-L496C104" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSign1Message.cs#L482C13-L496C104" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseSign1Message.VerifyDetached(System.Security.Cryptography.AsymmetricAlgorithm,System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSign1Message.cs#L530C13-L540C104" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSign1Message.cs#L530C13-L540C104" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseSign1Message.VerifyDetached(System.Security.Cryptography.AsymmetricAlgorithm,System.IO.Stream,System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSign1Message.cs#L582C13-L606C107" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSign1Message.cs#L582C13-L606C107" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseSign1Message.VerifyDetachedAsync(System.Security.Cryptography.AsymmetricAlgorithm,System.IO.Stream,System.ReadOnlyMemory{System.Byte},System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSign1Message.cs#L683C13-L707C122" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSign1Message.cs#L683C13-L707C122" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseSign1Message.GetEncodedLength", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSign1Message.cs#L790C13-L791C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSign1Message.cs#L790C13-L791C68" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseSign1Message.TryEncode(System.Span{System.Byte},System.Int32@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSign1Message.cs#L804C13-L836C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSign1Message.cs#L804C13-L836C25" }, { "DocsId": "P:System.Security.Cryptography.Cose.CoseSign1Message.Signature", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSign1Message.cs#L26C50-L26C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSign1Message.cs#L26C50-L26C60" } ], "DocsId": "T:System.Security.Cryptography.Cose.CoseSign1Message", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSign1Message.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSign1Message.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Cose.CoseSignature.VerifyEmbedded(System.Security.Cryptography.AsymmetricAlgorithm,System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSignature.cs#L102C13-L112C115" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSignature.cs#L102C13-L112C115" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseSignature.VerifyEmbedded(System.Security.Cryptography.AsymmetricAlgorithm,System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSignature.cs#L145C13-L155C115" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSignature.cs#L145C13-L155C115" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseSignature.VerifyDetached(System.Security.Cryptography.AsymmetricAlgorithm,System.Byte[],System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSignature.cs#L189C13-L204C104" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSignature.cs#L189C13-L204C104" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseSignature.VerifyDetached(System.Security.Cryptography.AsymmetricAlgorithm,System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSignature.cs#L238C13-L248C104" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSignature.cs#L238C13-L248C104" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseSignature.VerifyDetached(System.Security.Cryptography.AsymmetricAlgorithm,System.IO.Stream,System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSignature.cs#L290C13-L315C107" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSignature.cs#L290C13-L315C107" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseSignature.VerifyDetachedAsync(System.Security.Cryptography.AsymmetricAlgorithm,System.IO.Stream,System.ReadOnlyMemory{System.Byte},System.Threading.CancellationToken)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSignature.cs#L358C13-L382C122" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSignature.cs#L358C13-L382C122" }, { "DocsId": "P:System.Security.Cryptography.Cose.CoseSignature.ProtectedHeaders", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSignature.cs#L25C49-L25C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSignature.cs#L25C49-L25C53" }, { "DocsId": "P:System.Security.Cryptography.Cose.CoseSignature.UnprotectedHeaders", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSignature.cs#L31C51-L31C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSignature.cs#L31C51-L31C55" }, { "DocsId": "P:System.Security.Cryptography.Cose.CoseSignature.RawProtectedHeaders", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSignature.cs#L37C60-L37C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSignature.cs#L37C60-L37C88" }, { "DocsId": "P:System.Security.Cryptography.Cose.CoseSignature.Signature", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSignature.cs#L43C50-L43C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSignature.cs#L43C50-L43C60" } ], "DocsId": "T:System.Security.Cryptography.Cose.CoseSignature", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSignature.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSignature.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Cose.CoseSigner.#ctor(System.Security.Cryptography.AsymmetricAlgorithm,System.Security.Cryptography.HashAlgorithmName,System.Security.Cryptography.Cose.CoseHeaderMap,System.Security.Cryptography.Cose.CoseHeaderMap)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSigner.cs#L65C9-L80C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSigner.cs#L65C9-L80C10" }, { "DocsId": "M:System.Security.Cryptography.Cose.CoseSigner.#ctor(System.Security.Cryptography.RSA,System.Security.Cryptography.RSASignaturePadding,System.Security.Cryptography.HashAlgorithmName,System.Security.Cryptography.Cose.CoseHeaderMap,System.Security.Cryptography.Cose.CoseHeaderMap)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSigner.cs#L104C9-L120C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSigner.cs#L104C9-L120C10" }, { "DocsId": "P:System.Security.Cryptography.Cose.CoseSigner.Key", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSigner.cs#L22C42-L22C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSigner.cs#L22C42-L22C46" }, { "DocsId": "P:System.Security.Cryptography.Cose.CoseSigner.HashAlgorithm", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSigner.cs#L28C50-L28C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSigner.cs#L28C50-L28C54" }, { "DocsId": "P:System.Security.Cryptography.Cose.CoseSigner.RSASignaturePadding", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSigner.cs#L34C59-L34C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSigner.cs#L34C59-L34C63" }, { "DocsId": "P:System.Security.Cryptography.Cose.CoseSigner.ProtectedHeaders", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSigner.cs#L126C50-L126C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSigner.cs#L126C50-L126C91" }, { "DocsId": "P:System.Security.Cryptography.Cose.CoseSigner.UnprotectedHeaders", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSigner.cs#L132C52-L132C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSigner.cs#L132C52-L132C95" } ], "DocsId": "T:System.Security.Cryptography.Cose.CoseSigner", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSigner.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Cose/src/System/Security/Cryptography/Cose/CoseSigner.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/System.Security.Cryptography.Pkcs.json b/xml/SourceLinkInformation/net-9.0/System.Security.Cryptography.Pkcs.json index 646ef9b92be..fce59363fa2 100644 --- a/xml/SourceLinkInformation/net-9.0/System.Security.Cryptography.Pkcs.json +++ b/xml/SourceLinkInformation/net-9.0/System.Security.Cryptography.Pkcs.json @@ -1,1691 +1,1690 @@ { "Assembly": "System.Security.Cryptography.Pkcs", - "GUID": "68C259AC57C84296AFFB07261E19709DFFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "B07DC4BE8F3F4A37806D86FB92E44482FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:System.Security.Cryptography.CryptographicAttributeObject.#ctor(System.Security.Cryptography.Oid)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObject.cs#L16C15-L18C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObject.cs#L16C15-L18C10" }, { "DocsId": "M:System.Security.Cryptography.CryptographicAttributeObject.#ctor(System.Security.Cryptography.Oid,System.Security.Cryptography.AsnEncodedDataCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObject.cs#L20C9-L44C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObject.cs#L20C9-L44C10" }, { "DocsId": "P:System.Security.Cryptography.CryptographicAttributeObject.Oid", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObject.cs#L50C27-L50C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObject.cs#L50C27-L50C41" }, { "DocsId": "P:System.Security.Cryptography.CryptographicAttributeObject.Values", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObject.cs#L52C50-L52C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObject.cs#L52C50-L52C54" } ], "DocsId": "T:System.Security.Cryptography.CryptographicAttributeObject", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObject.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObject.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.CryptographicAttributeObjectCollection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObjectCollection.cs#L15C9-L18C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObjectCollection.cs#L15C9-L18C10" }, { "DocsId": "M:System.Security.Cryptography.CryptographicAttributeObjectCollection.#ctor(System.Security.Cryptography.CryptographicAttributeObject)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObjectCollection.cs#L20C9-L24C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObjectCollection.cs#L20C9-L24C10" }, { "DocsId": "M:System.Security.Cryptography.CryptographicAttributeObjectCollection.Add(System.Security.Cryptography.AsnEncodedData)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObjectCollection.cs#L28C13-L33C125" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObjectCollection.cs#L28C13-L33C125" }, { "DocsId": "M:System.Security.Cryptography.CryptographicAttributeObjectCollection.Add(System.Security.Cryptography.CryptographicAttributeObject)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObjectCollection.cs#L38C13-L75C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObjectCollection.cs#L38C13-L75C35" }, { "DocsId": "M:System.Security.Cryptography.CryptographicAttributeObjectCollection.Remove(System.Security.Cryptography.CryptographicAttributeObject)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObjectCollection.cs#L86C13-L92C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObjectCollection.cs#L86C13-L92C10" }, { "DocsId": "M:System.Security.Cryptography.CryptographicAttributeObjectCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObjectCollection.cs#L128C13-L128C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObjectCollection.cs#L128C13-L128C69" }, { "DocsId": "M:System.Security.Cryptography.CryptographicAttributeObjectCollection.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObjectCollection.cs#L133C13-L133C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObjectCollection.cs#L133C13-L133C69" }, { "DocsId": "M:System.Security.Cryptography.CryptographicAttributeObjectCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObjectCollection.cs#L138C13-L155C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObjectCollection.cs#L138C13-L155C10" }, { "DocsId": "M:System.Security.Cryptography.CryptographicAttributeObjectCollection.CopyTo(System.Security.Cryptography.CryptographicAttributeObject[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObjectCollection.cs#L159C13-L170C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObjectCollection.cs#L159C13-L170C10" }, { "DocsId": "P:System.Security.Cryptography.CryptographicAttributeObjectCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObjectCollection.cs#L98C17-L98C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObjectCollection.cs#L98C17-L98C37" }, { "DocsId": "P:System.Security.Cryptography.CryptographicAttributeObjectCollection.Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObjectCollection.cs#L106C17-L106C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObjectCollection.cs#L106C17-L106C36" }, { "DocsId": "P:System.Security.Cryptography.CryptographicAttributeObjectCollection.IsSynchronized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObjectCollection.cs#L114C17-L114C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObjectCollection.cs#L114C17-L114C30" }, { "DocsId": "P:System.Security.Cryptography.CryptographicAttributeObjectCollection.SyncRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObjectCollection.cs#L122C17-L122C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObjectCollection.cs#L122C17-L122C29" } ], "DocsId": "T:System.Security.Cryptography.CryptographicAttributeObjectCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObjectCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObjectCollection.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.CryptographicAttributeObjectEnumerator.System#Collections#IEnumerator#get_Current", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObjectEnumerator.cs#L30C17-L30C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObjectEnumerator.cs#L30C17-L30C46" }, { "DocsId": "M:System.Security.Cryptography.CryptographicAttributeObjectEnumerator.MoveNext", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObjectEnumerator.cs#L36C13-L39C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObjectEnumerator.cs#L36C13-L39C25" }, { "DocsId": "M:System.Security.Cryptography.CryptographicAttributeObjectEnumerator.Reset", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObjectEnumerator.cs#L44C13-L45C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObjectEnumerator.cs#L44C13-L45C10" }, { "DocsId": "P:System.Security.Cryptography.CryptographicAttributeObjectEnumerator.Current", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObjectEnumerator.cs#L22C17-L22C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObjectEnumerator.cs#L22C17-L22C46" }, { "DocsId": "P:System.Security.Cryptography.CryptographicAttributeObjectEnumerator.System#Collections#IEnumerator#Current", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObjectEnumerator.cs#L30C17-L30C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObjectEnumerator.cs#L30C17-L30C46" } ], "DocsId": "T:System.Security.Cryptography.CryptographicAttributeObjectEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObjectEnumerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/CryptographicAttributeObjectEnumerator.cs" }, { "Members": [ { "DocsId": "P:System.Security.Cryptography.Xml.X509IssuerSerial.IssuerName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Xml/X509IssuerSerial.cs#L21C36-L21C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Xml/X509IssuerSerial.cs#L21C36-L21C40" }, { "DocsId": "P:System.Security.Cryptography.Xml.X509IssuerSerial.SerialNumber", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Xml/X509IssuerSerial.cs#L22C38-L22C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Xml/X509IssuerSerial.cs#L22C38-L22C42" } ], "DocsId": "T:System.Security.Cryptography.Xml.X509IssuerSerial", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Xml/X509IssuerSerial.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Xml/X509IssuerSerial.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.AlgorithmIdentifier.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/AlgorithmIdentifier.cs#L14C15-L16C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/AlgorithmIdentifier.cs#L14C15-L16C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.AlgorithmIdentifier.#ctor(System.Security.Cryptography.Oid)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/AlgorithmIdentifier.cs#L19C15-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/AlgorithmIdentifier.cs#L19C15-L21C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.AlgorithmIdentifier.#ctor(System.Security.Cryptography.Oid,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/AlgorithmIdentifier.cs#L33C50-L27C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/AlgorithmIdentifier.cs#L33C50-L27C10" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.AlgorithmIdentifier.Oid", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/AlgorithmIdentifier.cs#L29C26-L29C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/AlgorithmIdentifier.cs#L29C26-L29C30" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.AlgorithmIdentifier.KeyLength", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/AlgorithmIdentifier.cs#L31C32-L31C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/AlgorithmIdentifier.cs#L31C32-L31C36" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.AlgorithmIdentifier.Parameters", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/AlgorithmIdentifier.cs#L33C36-L33C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/AlgorithmIdentifier.cs#L33C36-L33C40" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.AlgorithmIdentifier", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/AlgorithmIdentifier.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/AlgorithmIdentifier.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.CmsRecipient.#ctor(System.Security.Cryptography.X509Certificates.X509Certificate2)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipient.cs#L13C15-L15C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipient.cs#L13C15-L15C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.CmsRecipient.#ctor(System.Security.Cryptography.X509Certificates.X509Certificate2,System.Security.Cryptography.RSAEncryptionPadding)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipient.cs#L23C15-L32C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipient.cs#L23C15-L32C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.CmsRecipient.#ctor(System.Security.Cryptography.Pkcs.SubjectIdentifierType,System.Security.Cryptography.X509Certificates.X509Certificate2,System.Security.Cryptography.RSAEncryptionPadding)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipient.cs#L40C15-L49C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipient.cs#L40C15-L49C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.CmsRecipient.#ctor(System.Security.Cryptography.Pkcs.SubjectIdentifierType,System.Security.Cryptography.X509Certificates.X509Certificate2)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipient.cs#L51C9-L73C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipient.cs#L51C9-L73C10" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.CmsRecipient.RSAEncryptionPadding", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipient.cs#L80C54-L80C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipient.cs#L80C54-L80C58" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.CmsRecipient.RecipientIdentifierType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipient.cs#L81C64-L81C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipient.cs#L81C64-L81C68" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.CmsRecipient.Certificate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipient.cs#L82C47-L82C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipient.cs#L82C47-L82C51" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.CmsRecipient", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipient.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipient.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.CmsRecipientCollection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientCollection.cs#L14C9-L17C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientCollection.cs#L14C9-L17C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.CmsRecipientCollection.#ctor(System.Security.Cryptography.Pkcs.CmsRecipient)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientCollection.cs#L19C9-L23C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientCollection.cs#L19C9-L23C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.CmsRecipientCollection.#ctor(System.Security.Cryptography.Pkcs.SubjectIdentifierType,System.Security.Cryptography.X509Certificates.X509Certificate2Collection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientCollection.cs#L25C9-L35C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientCollection.cs#L25C9-L35C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.CmsRecipientCollection.Add(System.Security.Cryptography.Pkcs.CmsRecipient)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientCollection.cs#L58C13-L65C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientCollection.cs#L58C13-L65C35" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.CmsRecipientCollection.Remove(System.Security.Cryptography.Pkcs.CmsRecipient)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientCollection.cs#L70C13-L76C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientCollection.cs#L70C13-L76C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.CmsRecipientCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientCollection.cs#L80C13-L80C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientCollection.cs#L80C13-L80C53" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.CmsRecipientCollection.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientCollection.cs#L85C13-L85C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientCollection.cs#L85C13-L85C53" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.CmsRecipientCollection.CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientCollection.cs#L90C13-L107C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientCollection.cs#L90C13-L107C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.CmsRecipientCollection.CopyTo(System.Security.Cryptography.Pkcs.CmsRecipient[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientCollection.cs#L111C13-L122C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientCollection.cs#L111C13-L122C10" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.CmsRecipientCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientCollection.cs#L41C17-L44C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientCollection.cs#L41C17-L44C43" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.CmsRecipientCollection.Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientCollection.cs#L52C17-L52C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientCollection.cs#L52C17-L52C42" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.CmsRecipientCollection.IsSynchronized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientCollection.cs#L128C17-L128C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientCollection.cs#L128C17-L128C30" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.CmsRecipientCollection.SyncRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientCollection.cs#L136C17-L136C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientCollection.cs#L136C17-L136C29" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.CmsRecipientCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientCollection.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.CmsRecipientEnumerator.System#Collections#IEnumerator#get_Current", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientEnumerator.cs#L30C17-L30C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientEnumerator.cs#L30C17-L30C46" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.CmsRecipientEnumerator.MoveNext", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientEnumerator.cs#L36C13-L39C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientEnumerator.cs#L36C13-L39C25" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.CmsRecipientEnumerator.Reset", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientEnumerator.cs#L44C13-L45C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientEnumerator.cs#L44C13-L45C10" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.CmsRecipientEnumerator.Current", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientEnumerator.cs#L22C17-L22C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientEnumerator.cs#L22C17-L22C46" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.CmsRecipientEnumerator.System#Collections#IEnumerator#Current", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientEnumerator.cs#L30C17-L30C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientEnumerator.cs#L30C17-L30C46" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.CmsRecipientEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientEnumerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsRecipientEnumerator.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.ContentInfo.#ctor(System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/ContentInfo.cs#L18C15-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/ContentInfo.cs#L18C15-L20C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.ContentInfo.#ctor(System.Security.Cryptography.Oid,System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/ContentInfo.cs#L22C9-L35C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/ContentInfo.cs#L22C9-L35C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.ContentInfo.GetContentType(System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/ContentInfo.cs#L43C13-L48C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/ContentInfo.cs#L43C13-L48C75" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.ContentInfo.GetContentType(System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/ContentInfo.cs#L53C13-L53C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/ContentInfo.cs#L53C13-L53C75" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.ContentInfo.ContentType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/ContentInfo.cs#L37C34-L37C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/ContentInfo.cs#L37C34-L37C38" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.ContentInfo.Content", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/ContentInfo.cs#L39C33-L39C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/ContentInfo.cs#L39C33-L39C37" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.ContentInfo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/ContentInfo.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/ContentInfo.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.EnvelopedCms.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L19C15-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L19C15-L21C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.EnvelopedCms.#ctor(System.Security.Cryptography.Pkcs.ContentInfo)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L24C15-L26C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L24C15-L26C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.EnvelopedCms.#ctor(System.Security.Cryptography.Pkcs.ContentInfo,System.Security.Cryptography.Pkcs.AlgorithmIdentifier)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L28C9-L46C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L28C9-L46C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.EnvelopedCms.Encrypt(System.Security.Cryptography.Pkcs.CmsRecipient)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L93C13-L99C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L93C13-L99C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.EnvelopedCms.Encrypt(System.Security.Cryptography.Pkcs.CmsRecipientCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L103C13-L119C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L103C13-L119C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.EnvelopedCms.Encode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L126C13-L129C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L126C13-L129C53" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.EnvelopedCms.Decode(System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L137C13-L143C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L137C13-L143C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.EnvelopedCms.Decode(System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L156C13-L178C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L156C13-L178C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.EnvelopedCms.Decrypt", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L185C13-L186C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L185C13-L186C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.EnvelopedCms.Decrypt(System.Security.Cryptography.Pkcs.RecipientInfo)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L190C13-L196C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L190C13-L196C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.EnvelopedCms.Decrypt(System.Security.Cryptography.Pkcs.RecipientInfo,System.Security.Cryptography.X509Certificates.X509Certificate2Collection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L200C13-L210C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L200C13-L210C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.EnvelopedCms.Decrypt(System.Security.Cryptography.X509Certificates.X509Certificate2Collection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L214C13-L220C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L214C13-L220C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.EnvelopedCms.Decrypt(System.Security.Cryptography.Pkcs.RecipientInfo,System.Security.Cryptography.AsymmetricAlgorithm)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L224C13-L244C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L224C13-L244C10" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.EnvelopedCms.Version", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L54C30-L54C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L54C30-L54C34" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.EnvelopedCms.ContentInfo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L55C42-L55C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L55C42-L55C46" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.EnvelopedCms.ContentEncryptionAlgorithm", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L56C65-L56C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L56C65-L56C69" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.EnvelopedCms.Certificates", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L57C58-L57C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L57C58-L57C62" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.EnvelopedCms.UnprotectedAttributes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L58C79-L58C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L58C79-L58C83" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.EnvelopedCms.RecipientInfos", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L68C17-L83C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs#L68C17-L83C63" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.EnvelopedCms", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/EnvelopedCms.cs" }, { "Members": [ { "DocsId": "P:System.Security.Cryptography.Pkcs.KeyAgreeRecipientInfo.Version", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/KeyAgreeRecipientInfo.cs#L23C17-L23C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/KeyAgreeRecipientInfo.cs#L23C17-L23C36" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.KeyAgreeRecipientInfo.RecipientIdentifier", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/KeyAgreeRecipientInfo.cs#L31C17-L31C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/KeyAgreeRecipientInfo.cs#L31C17-L31C77" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.KeyAgreeRecipientInfo.KeyEncryptionAlgorithm", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/KeyAgreeRecipientInfo.cs#L39C17-L39C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/KeyAgreeRecipientInfo.cs#L39C17-L39C83" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.KeyAgreeRecipientInfo.EncryptedKey", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/KeyAgreeRecipientInfo.cs#L47C17-L47C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/KeyAgreeRecipientInfo.cs#L47C17-L47C63" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.KeyAgreeRecipientInfo.OriginatorIdentifierOrKey", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/KeyAgreeRecipientInfo.cs#L55C17-L55C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/KeyAgreeRecipientInfo.cs#L55C17-L55C87" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.KeyAgreeRecipientInfo.Date", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/KeyAgreeRecipientInfo.cs#L63C17-L68C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/KeyAgreeRecipientInfo.cs#L63C17-L68C40" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.KeyAgreeRecipientInfo.OtherKeyAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/KeyAgreeRecipientInfo.cs#L76C17-L76C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/KeyAgreeRecipientInfo.cs#L76C17-L76C73" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.KeyAgreeRecipientInfo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/KeyAgreeRecipientInfo.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/KeyAgreeRecipientInfo.cs" }, { "Members": [ { "DocsId": "P:System.Security.Cryptography.Pkcs.KeyTransRecipientInfo.Version", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/KeyTransRecipientInfo.cs#L22C17-L22C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/KeyTransRecipientInfo.cs#L22C17-L22C36" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.KeyTransRecipientInfo.RecipientIdentifier", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/KeyTransRecipientInfo.cs#L30C17-L30C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/KeyTransRecipientInfo.cs#L30C17-L30C77" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.KeyTransRecipientInfo.KeyEncryptionAlgorithm", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/KeyTransRecipientInfo.cs#L38C17-L38C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/KeyTransRecipientInfo.cs#L38C17-L38C83" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.KeyTransRecipientInfo.EncryptedKey", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/KeyTransRecipientInfo.cs#L46C17-L46C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/KeyTransRecipientInfo.cs#L46C17-L46C63" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.KeyTransRecipientInfo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/KeyTransRecipientInfo.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/KeyTransRecipientInfo.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs9AttributeObject.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9AttributeObject.cs#L16C15-L18C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9AttributeObject.cs#L16C15-L18C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs9AttributeObject.#ctor(System.String,System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9AttributeObject.cs#L21C15-L23C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9AttributeObject.cs#L21C15-L23C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs9AttributeObject.#ctor(System.Security.Cryptography.Oid,System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9AttributeObject.cs#L26C15-L28C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9AttributeObject.cs#L26C15-L28C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs9AttributeObject.#ctor(System.Security.Cryptography.AsnEncodedData)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9AttributeObject.cs#L31C15-L40C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9AttributeObject.cs#L31C15-L40C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs9AttributeObject.CopyFrom(System.Security.Cryptography.AsnEncodedData)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9AttributeObject.cs#L70C13-L79C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9AttributeObject.cs#L70C13-L79C10" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Pkcs9AttributeObject.Oid", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9AttributeObject.cs#L64C17-L64C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9AttributeObject.cs#L64C17-L64C33" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.Pkcs9AttributeObject", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9AttributeObject.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9AttributeObject.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs9ContentType.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9ContentType.cs#L18C15-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9ContentType.cs#L18C15-L20C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs9ContentType.CopyFrom(System.Security.Cryptography.AsnEncodedData)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9ContentType.cs#L41C13-L43C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9ContentType.cs#L41C13-L43C10" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Pkcs9ContentType.ContentType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9ContentType.cs#L35C17-L35C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9ContentType.cs#L35C17-L35C61" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.Pkcs9ContentType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9ContentType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9ContentType.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs9DocumentDescription.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9DocumentDescription.cs#L18C15-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9DocumentDescription.cs#L18C15-L20C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs9DocumentDescription.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9DocumentDescription.cs#L23C15-L26C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9DocumentDescription.cs#L23C15-L26C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs9DocumentDescription.#ctor(System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9DocumentDescription.cs#L29C15-L31C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9DocumentDescription.cs#L29C15-L31C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs9DocumentDescription.CopyFrom(System.Security.Cryptography.AsnEncodedData)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9DocumentDescription.cs#L52C13-L54C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9DocumentDescription.cs#L52C13-L54C10" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Pkcs9DocumentDescription.DocumentDescription", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9DocumentDescription.cs#L46C17-L46C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9DocumentDescription.cs#L46C17-L46C69" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.Pkcs9DocumentDescription", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9DocumentDescription.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9DocumentDescription.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs9DocumentName.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9DocumentName.cs#L18C15-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9DocumentName.cs#L18C15-L20C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs9DocumentName.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9DocumentName.cs#L23C15-L26C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9DocumentName.cs#L23C15-L26C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs9DocumentName.#ctor(System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9DocumentName.cs#L29C15-L31C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9DocumentName.cs#L29C15-L31C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs9DocumentName.CopyFrom(System.Security.Cryptography.AsnEncodedData)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9DocumentName.cs#L52C13-L54C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9DocumentName.cs#L52C13-L54C10" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Pkcs9DocumentName.DocumentName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9DocumentName.cs#L46C17-L46C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9DocumentName.cs#L46C17-L46C62" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.Pkcs9DocumentName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9DocumentName.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9DocumentName.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs9MessageDigest.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9MessageDigest.cs#L17C15-L19C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9MessageDigest.cs#L17C15-L19C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs9MessageDigest.CopyFrom(System.Security.Cryptography.AsnEncodedData)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9MessageDigest.cs#L40C13-L42C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9MessageDigest.cs#L40C13-L42C10" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Pkcs9MessageDigest.MessageDigest", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9MessageDigest.cs#L34C17-L34C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9MessageDigest.cs#L34C17-L34C63" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.Pkcs9MessageDigest", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9MessageDigest.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9MessageDigest.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs9SigningTime.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9SigningTime.cs#L19C15-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9SigningTime.cs#L19C15-L21C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs9SigningTime.#ctor(System.DateTime)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9SigningTime.cs#L24C15-L27C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9SigningTime.cs#L24C15-L27C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs9SigningTime.#ctor(System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9SigningTime.cs#L30C15-L32C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9SigningTime.cs#L30C15-L32C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs9SigningTime.CopyFrom(System.Security.Cryptography.AsnEncodedData)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9SigningTime.cs#L58C13-L60C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9SigningTime.cs#L58C13-L60C10" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Pkcs9SigningTime.SigningTime", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9SigningTime.cs#L47C17-L52C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9SigningTime.cs#L47C17-L52C47" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.Pkcs9SigningTime", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9SigningTime.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9SigningTime.cs" }, { "Members": [ { "DocsId": "P:System.Security.Cryptography.Pkcs.PublicKeyInfo.Algorithm", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/PublicKeyInfo.cs#L20C48-L20C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/PublicKeyInfo.cs#L20C48-L20C52" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.PublicKeyInfo.KeyValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/PublicKeyInfo.cs#L22C34-L22C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/PublicKeyInfo.cs#L22C34-L22C38" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.PublicKeyInfo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/PublicKeyInfo.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/PublicKeyInfo.cs" }, { "Members": [ { "DocsId": "P:System.Security.Cryptography.Pkcs.RecipientInfo.Type", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfo.cs#L36C41-L36C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfo.cs#L36C41-L36C45" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.RecipientInfo.Version", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfo.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfo.cs" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.RecipientInfo.RecipientIdentifier", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfo.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfo.cs" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.RecipientInfo.KeyEncryptionAlgorithm", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfo.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfo.cs" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.RecipientInfo.EncryptedKey", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfo.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfo.cs" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.RecipientInfo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfo.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfo.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.RecipientInfoCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoCollection.cs#L49C13-L49C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoCollection.cs#L49C13-L49C54" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.RecipientInfoCollection.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoCollection.cs#L54C13-L54C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoCollection.cs#L54C13-L54C68" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.RecipientInfoCollection.CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoCollection.cs#L59C13-L75C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoCollection.cs#L59C13-L75C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.RecipientInfoCollection.CopyTo(System.Security.Cryptography.Pkcs.RecipientInfo[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoCollection.cs#L79C13-L87C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoCollection.cs#L79C13-L87C10" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.RecipientInfoCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoCollection.cs#L33C17-L35C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoCollection.cs#L33C17-L35C47" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.RecipientInfoCollection.Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoCollection.cs#L43C17-L43C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoCollection.cs#L43C17-L43C47" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.RecipientInfoCollection.IsSynchronized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoCollection.cs#L93C17-L93C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoCollection.cs#L93C17-L93C30" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.RecipientInfoCollection.SyncRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoCollection.cs#L101C17-L101C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoCollection.cs#L101C17-L101C29" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.RecipientInfoCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoCollection.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.RecipientInfoEnumerator.System#Collections#IEnumerator#get_Current", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoEnumerator.cs#L30C17-L30C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoEnumerator.cs#L30C17-L30C50" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.RecipientInfoEnumerator.MoveNext", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoEnumerator.cs#L36C13-L41C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoEnumerator.cs#L36C13-L41C25" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.RecipientInfoEnumerator.Reset", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoEnumerator.cs#L46C13-L47C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoEnumerator.cs#L46C13-L47C10" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.RecipientInfoEnumerator.Current", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoEnumerator.cs#L22C17-L22C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoEnumerator.cs#L22C17-L22C50" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.RecipientInfoEnumerator.System#Collections#IEnumerator#Current", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoEnumerator.cs#L30C17-L30C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoEnumerator.cs#L30C17-L30C50" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.RecipientInfoEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoEnumerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoEnumerator.cs" }, { "Members": [ { "DocsId": "F:System.Security.Cryptography.Pkcs.RecipientInfoType.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoType.cs" }, { "DocsId": "F:System.Security.Cryptography.Pkcs.RecipientInfoType.Unknown", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoType.cs" }, { "DocsId": "F:System.Security.Cryptography.Pkcs.RecipientInfoType.KeyTransport", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoType.cs" }, { "DocsId": "F:System.Security.Cryptography.Pkcs.RecipientInfoType.KeyAgreement", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoType.cs" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.RecipientInfoType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/RecipientInfoType.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.SubjectIdentifier.MatchesCertificate(System.Security.Cryptography.X509Certificates.X509Certificate2)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifier.cs#L102C13-L126C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifier.cs#L102C13-L126C56" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.SubjectIdentifier.Type", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifier.cs#L97C45-L97C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifier.cs#L97C45-L97C49" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.SubjectIdentifier.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifier.cs#L98C32-L98C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifier.cs#L98C32-L98C36" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.SubjectIdentifier", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifier.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifier.cs" }, { "Members": [ { "DocsId": "P:System.Security.Cryptography.Pkcs.SubjectIdentifierOrKey.Type", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifierOrKey.cs#L40C50-L40C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifierOrKey.cs#L40C50-L40C54" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.SubjectIdentifierOrKey.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifierOrKey.cs#L42C31-L42C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifierOrKey.cs#L42C31-L42C35" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.SubjectIdentifierOrKey", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifierOrKey.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifierOrKey.cs" }, { "Members": [ { "DocsId": "F:System.Security.Cryptography.Pkcs.SubjectIdentifierOrKeyType.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifierOrKeyType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifierOrKeyType.cs" }, { "DocsId": "F:System.Security.Cryptography.Pkcs.SubjectIdentifierOrKeyType.Unknown", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifierOrKeyType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifierOrKeyType.cs" }, { "DocsId": "F:System.Security.Cryptography.Pkcs.SubjectIdentifierOrKeyType.IssuerAndSerialNumber", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifierOrKeyType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifierOrKeyType.cs" }, { "DocsId": "F:System.Security.Cryptography.Pkcs.SubjectIdentifierOrKeyType.SubjectKeyIdentifier", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifierOrKeyType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifierOrKeyType.cs" }, { "DocsId": "F:System.Security.Cryptography.Pkcs.SubjectIdentifierOrKeyType.PublicKeyInfo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifierOrKeyType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifierOrKeyType.cs" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.SubjectIdentifierOrKeyType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifierOrKeyType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifierOrKeyType.cs" }, { "Members": [ { "DocsId": "F:System.Security.Cryptography.Pkcs.SubjectIdentifierType.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifierType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifierType.cs" }, { "DocsId": "F:System.Security.Cryptography.Pkcs.SubjectIdentifierType.Unknown", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifierType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifierType.cs" }, { "DocsId": "F:System.Security.Cryptography.Pkcs.SubjectIdentifierType.IssuerAndSerialNumber", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifierType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifierType.cs" }, { "DocsId": "F:System.Security.Cryptography.Pkcs.SubjectIdentifierType.SubjectKeyIdentifier", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifierType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifierType.cs" }, { "DocsId": "F:System.Security.Cryptography.Pkcs.SubjectIdentifierType.NoSignature", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifierType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifierType.cs" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.SubjectIdentifierType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifierType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SubjectIdentifierType.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.CmsSigner.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L62C15-L64C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L62C15-L64C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.CmsSigner.#ctor(System.Security.Cryptography.Pkcs.SubjectIdentifierType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L67C15-L69C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L67C15-L69C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.CmsSigner.#ctor(System.Security.Cryptography.X509Certificates.X509Certificate2)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L72C15-L74C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L72C15-L74C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.CmsSigner.#ctor(System.Security.Cryptography.CspParameters)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L25C80-L80C96" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L25C67-L80C96" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.CmsSigner.#ctor(System.Security.Cryptography.Pkcs.SubjectIdentifierType,System.Security.Cryptography.X509Certificates.X509Certificate2)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L82C103-L84C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L82C103-L84C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.CmsSigner.#ctor(System.Security.Cryptography.Pkcs.SubjectIdentifierType,System.Security.Cryptography.X509Certificates.X509Certificate2,System.Security.Cryptography.AsymmetricAlgorithm)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L87C15-L89C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L87C15-L89C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.CmsSigner.#ctor(System.Security.Cryptography.Pkcs.SubjectIdentifierType,System.Security.Cryptography.X509Certificates.X509Certificate2,System.Security.Cryptography.RSA,System.Security.Cryptography.RSASignaturePadding)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L113C15-L115C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L113C15-L115C10" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.CmsSigner.Certificate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L23C48-L23C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L23C48-L23C52" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.CmsSigner.PrivateKey", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L24C50-L24C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L24C50-L24C54" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.CmsSigner.Certificates", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L25C58-L25C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L25C58-L25C62" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.CmsSigner.DigestAlgorithm", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L26C38-L26C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L26C38-L26C42" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.CmsSigner.IncludeOption", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L27C50-L27C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L27C50-L27C54" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.CmsSigner.SignedAttributes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L28C74-L28C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L28C74-L28C78" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.CmsSigner.UnsignedAttributes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L29C76-L29C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L29C76-L29C80" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.CmsSigner.SignaturePadding", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L37C20-L37C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L37C20-L37C37" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.CmsSigner.SignerIdentifierType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L52C19-L52C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs#L52C19-L52C48" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.CmsSigner", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/CmsSigner.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.SignedCms.#ctor(System.Security.Cryptography.Pkcs.SubjectIdentifierType,System.Security.Cryptography.Pkcs.ContentInfo,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L44C9-L74C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L44C9-L74C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignedCms.Encode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L127C13-L163C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L127C13-L163C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignedCms.Decode(System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L167C13-L173C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L167C13-L173C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignedCms.Decode(System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L178C13-L245C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L178C13-L245C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignedCms.ComputeSignature", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L304C43-L304C103" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L304C43-L304C103" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignedCms.ComputeSignature(System.Security.Cryptography.Pkcs.CmsSigner)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L306C59-L306C89" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L306C59-L306C89" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignedCms.ComputeSignature(System.Security.Cryptography.Pkcs.CmsSigner,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L310C13-L396C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L310C13-L396C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignedCms.RemoveSignature(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L400C13-L415C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L400C13-L415C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignedCms.RemoveSignature(System.Security.Cryptography.Pkcs.SignerInfo)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L419C13-L432C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L419C13-L432C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignedCms.CheckSignature(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L615C13-L615C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L615C13-L615C82" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignedCms.CheckSignature(System.Security.Cryptography.X509Certificates.X509Certificate2Collection,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L619C13-L625C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L619C13-L625C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignedCms.CheckHash", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L654C13-L672C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L654C13-L672C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignedCms.AddCertificate(System.Security.Cryptography.X509Certificates.X509Certificate2)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L681C13-L711C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L681C13-L711C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignedCms.RemoveCertificate(System.Security.Cryptography.X509Certificates.X509Certificate2)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L715C13-L735C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L715C13-L735C86" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignedCms.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.CtorOverloads.cs#L14C15-L16C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.CtorOverloads.cs#L14C15-L16C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignedCms.#ctor(System.Security.Cryptography.Pkcs.SubjectIdentifierType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.CtorOverloads.cs#L19C15-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.CtorOverloads.cs#L19C15-L21C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignedCms.#ctor(System.Security.Cryptography.Pkcs.ContentInfo)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.CtorOverloads.cs#L24C15-L26C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.CtorOverloads.cs#L24C15-L26C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignedCms.#ctor(System.Security.Cryptography.Pkcs.SubjectIdentifierType,System.Security.Cryptography.Pkcs.ContentInfo)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.CtorOverloads.cs#L29C15-L31C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.CtorOverloads.cs#L29C15-L31C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignedCms.#ctor(System.Security.Cryptography.Pkcs.ContentInfo,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.CtorOverloads.cs#L34C15-L36C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.CtorOverloads.cs#L34C15-L36C10" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.SignedCms.Version", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L40C30-L40C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L40C30-L40C34" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.SignedCms.ContentInfo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L41C42-L41C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L41C42-L41C46" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.SignedCms.Detached", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L42C32-L42C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L42C32-L42C36" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.SignedCms.Certificates", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L80C17-L108C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L80C17-L108C29" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.SignedCms.SignerInfos", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L116C17-L121C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs#L116C17-L121C80" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.SignedCms", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignedCms.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.SignerInfo.GetSignature", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L69C41-L69C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L69C41-L69C61" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignerInfo.AddUnsignedAttribute(System.Security.Cryptography.AsnEncodedData)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L172C13-L176C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L16707566C0-L176C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignerInfo.RemoveUnsignedAttribute(System.Security.Cryptography.AsnEncodedData)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L213C13-L217C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L16707566C0-L217C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignerInfo.ComputeCounterSignature", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L271C13-L271C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L271C13-L271C87" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignerInfo.ComputeCounterSignature(System.Security.Cryptography.Pkcs.CmsSigner)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L276C13-L326C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L276C13-L326C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignerInfo.RemoveCounterSignature(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L330C13-L406C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L330C13-L406C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignerInfo.RemoveCounterSignature(System.Security.Cryptography.Pkcs.SignerInfo)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L410C13-L432C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L410C13-L432C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignerInfo.CheckSignature(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L435C13-L435C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L435C13-L435C82" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignerInfo.CheckSignature(System.Security.Cryptography.X509Certificates.X509Certificate2Collection,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L439C13-L457C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L439C13-L457C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignerInfo.CheckHash", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L461C13-L470C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L461C13-L470C10" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.SignerInfo.Version", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L20C30-L20C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L20C30-L20C34" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.SignerInfo.SignerIdentifier", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L21C53-L21C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L21C53-L21C57" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.SignerInfo.SignedAttributes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L62C13-L62C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L62C13-L62C78" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.SignerInfo.UnsignedAttributes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L65C13-L65C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L65C13-L65C82" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.SignerInfo.Certificate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L72C13-L72C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L72C13-L72C59" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.SignerInfo.CounterSignerInfos", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L79C17-L86C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L79C17-L86C63" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.SignerInfo.DigestAlgorithm", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L90C39-L90C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L90C39-L90C70" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.SignerInfo.SignatureAlgorithm", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L92C42-L92C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs#L92C42-L92C76" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.SignerInfo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfo.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.SignerInfoCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfoCollection.cs#L51C56-L51C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfoCollection.cs#L51C56-L51C86" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignerInfoCollection.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfoCollection.cs#L52C52-L52C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfoCollection.cs#L52C52-L52C82" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignerInfoCollection.CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfoCollection.cs#L56C13-L72C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfoCollection.cs#L56C13-L72C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignerInfoCollection.CopyTo(System.Security.Cryptography.Pkcs.SignerInfo[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfoCollection.cs#L76C62-L76C102" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfoCollection.cs#L76C62-L76C102" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.SignerInfoCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfoCollection.cs#L43C17-L45C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfoCollection.cs#L43C17-L45C44" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.SignerInfoCollection.Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfoCollection.cs#L49C29-L49C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfoCollection.cs#L49C29-L49C48" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.SignerInfoCollection.IsSynchronized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfoCollection.cs#L78C39-L78C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfoCollection.cs#L78C39-L78C44" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.SignerInfoCollection.SyncRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfoCollection.cs#L79C35-L79C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfoCollection.cs#L79C35-L79C39" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.SignerInfoCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfoCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfoCollection.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.SignerInfoEnumerator.System#Collections#IEnumerator#get_Current", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfoEnumerator.cs#L23C39-L23C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfoEnumerator.cs#L23C39-L23C62" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignerInfoEnumerator.MoveNext", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfoEnumerator.cs#L27C13-L33C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfoEnumerator.cs#L27C13-L33C25" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.SignerInfoEnumerator.Reset", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfoEnumerator.cs#L38C13-L39C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfoEnumerator.cs#L38C13-L39C10" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.SignerInfoEnumerator.Current", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfoEnumerator.cs#L22C38-L22C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfoEnumerator.cs#L22C38-L22C61" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.SignerInfoEnumerator.System#Collections#IEnumerator#Current", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfoEnumerator.cs#L23C39-L23C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfoEnumerator.cs#L23C39-L23C62" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.SignerInfoEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfoEnumerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/SignerInfoEnumerator.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12Builder.AddSafeContentsEncrypted(System.Security.Cryptography.Pkcs.Pkcs12SafeContents,System.Byte[],System.Security.Cryptography.PbeParameters)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12Builder.cs#L25C13-L30C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12Builder.cs#L25C13-L30C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12Builder.AddSafeContentsEncrypted(System.Security.Cryptography.Pkcs.Pkcs12SafeContents,System.ReadOnlySpan{System.Byte},System.Security.Cryptography.PbeParameters)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12Builder.cs#L37C13-L68C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12Builder.cs#L37C13-L68C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12Builder.AddSafeContentsEncrypted(System.Security.Cryptography.Pkcs.Pkcs12SafeContents,System.String,System.Security.Cryptography.PbeParameters)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12Builder.cs#L75C13-L80C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12Builder.cs#L75C13-L80C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12Builder.AddSafeContentsEncrypted(System.Security.Cryptography.Pkcs.Pkcs12SafeContents,System.ReadOnlySpan{System.Char},System.Security.Cryptography.PbeParameters)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12Builder.cs#L87C13-L118C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12Builder.cs#L87C13-L118C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12Builder.AddSafeContentsUnencrypted(System.Security.Cryptography.Pkcs.Pkcs12SafeContents)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12Builder.cs#L122C13-L133C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12Builder.cs#L122C13-L133C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12Builder.Encode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12Builder.cs#L137C13-L142C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12Builder.cs#L137C13-L142C42" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12Builder.SealWithMac(System.String,System.Security.Cryptography.HashAlgorithmName,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12Builder.cs#L150C13-L155C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12Builder.cs#L150C13-L155C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12Builder.SealWithMac(System.ReadOnlySpan{System.Char},System.Security.Cryptography.HashAlgorithmName,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12Builder.cs#L162C13-L311C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12Builder.cs#L162C13-L311C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12Builder.SealWithoutIntegrity", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12Builder.cs#L315C13-L356C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12Builder.cs#L315C13-L356C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12Builder.TryEncode(System.Span{System.Byte},System.Int32@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12Builder.cs#L360C13-L373C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12Builder.cs#L360C13-L373C25" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12Builder.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12Builder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12Builder.cs" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Pkcs12Builder.IsSealed", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12Builder.cs#L18C33-L18C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12Builder.cs#L18C33-L18C53" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.Pkcs12Builder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12Builder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12Builder.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12CertBag.#ctor(System.Security.Cryptography.Oid,System.ReadOnlyMemory{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12CertBag.cs#L38C15-L48C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12CertBag.cs#L38C15-L48C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12CertBag.GetCertificateType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12CertBag.cs#L65C13-L67C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12CertBag.cs#L65C13-L67C43" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12CertBag.GetCertificate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12CertBag.cs#L74C13-L79C92" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12CertBag.cs#L74C13-L79C92" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Pkcs12CertBag.IsX509Certificate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12CertBag.cs#L16C41-L16C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12CertBag.cs#L16C41-L16C45" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Pkcs12CertBag.EncodedCertificate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12CertBag.cs#L70C59-L70C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12CertBag.cs#L70C59-L70C77" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.Pkcs12CertBag", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12CertBag.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12CertBag.cs" }, { "Members": [ { "DocsId": "F:System.Security.Cryptography.Pkcs.Pkcs12ConfidentialityMode.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12ConfidentialityMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12ConfidentialityMode.cs" }, { "DocsId": "F:System.Security.Cryptography.Pkcs.Pkcs12ConfidentialityMode.Unknown", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12ConfidentialityMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12ConfidentialityMode.cs" }, { "DocsId": "F:System.Security.Cryptography.Pkcs.Pkcs12ConfidentialityMode.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12ConfidentialityMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12ConfidentialityMode.cs" }, { "DocsId": "F:System.Security.Cryptography.Pkcs.Pkcs12ConfidentialityMode.Password", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12ConfidentialityMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12ConfidentialityMode.cs" }, { "DocsId": "F:System.Security.Cryptography.Pkcs.Pkcs12ConfidentialityMode.PublicKey", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12ConfidentialityMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12ConfidentialityMode.cs" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.Pkcs12ConfidentialityMode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12ConfidentialityMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12ConfidentialityMode.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12Info.VerifyMac(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12Info.cs#L29C13-L29C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12Info.cs#L29C13-L29C49" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12Info.VerifyMac(System.ReadOnlySpan{System.Char})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12Info.cs#L34C13-L43C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12Info.cs#L34C13-L43C73" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12Info.Decode(System.ReadOnlyMemory{System.Byte},System.Int32@,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12Info.cs#L52C13-L147C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12Info.cs#L52C13-L147C10" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Pkcs12Info.AuthenticatedSafe", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12Info.cs#L19C75-L19C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12Info.cs#L19C75-L19C79" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Pkcs12Info.IntegrityMode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12Info.cs#L20C52-L20C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12Info.cs#L20C52-L20C56" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.Pkcs12Info", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12Info.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12Info.cs" }, { "Members": [ { "DocsId": "F:System.Security.Cryptography.Pkcs.Pkcs12IntegrityMode.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12IntegrityMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12IntegrityMode.cs" }, { "DocsId": "F:System.Security.Cryptography.Pkcs.Pkcs12IntegrityMode.Unknown", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12IntegrityMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12IntegrityMode.cs" }, { "DocsId": "F:System.Security.Cryptography.Pkcs.Pkcs12IntegrityMode.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12IntegrityMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12IntegrityMode.cs" }, { "DocsId": "F:System.Security.Cryptography.Pkcs.Pkcs12IntegrityMode.Password", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12IntegrityMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12IntegrityMode.cs" }, { "DocsId": "F:System.Security.Cryptography.Pkcs.Pkcs12IntegrityMode.PublicKey", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12IntegrityMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12IntegrityMode.cs" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.Pkcs12IntegrityMode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12IntegrityMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12IntegrityMode.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12KeyBag.#ctor(System.ReadOnlyMemory{System.Byte},System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12KeyBag.cs#L9C15-L11C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12KeyBag.cs#L9C15-L11C10" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Pkcs12KeyBag.Pkcs8PrivateKey", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12KeyBag.cs#L13C56-L13C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12KeyBag.cs#L13C56-L13C71" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.Pkcs12KeyBag", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12KeyBag.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12KeyBag.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12SafeBag.#ctor(System.String,System.ReadOnlyMemory{System.Byte},System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeBag.cs#L36C9-L46C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeBag.cs#L36C9-L46C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12SafeBag.Encode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeBag.cs#L50C13-L51C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeBag.cs#L50C13-L51C36" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12SafeBag.GetBagId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeBag.cs#L56C13-L58C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeBag.cs#L56C13-L58C38" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12SafeBag.TryEncode(System.Span{System.Byte},System.Int32@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeBag.cs#L63C13-L64C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeBag.cs#L63C13-L64C68" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Pkcs12SafeBag.EncodedBagValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeBag.cs#L18C55-L18C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeBag.cs#L18C55-L18C59" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Pkcs12SafeBag.Attributes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeBag.cs#L24C17-L26C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeBag.cs#L24C17-L26C36" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.Pkcs12SafeBag", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeBag.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeBag.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12SafeContents.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L23C9-L26C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L23C9-L26C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12SafeContents.AddSafeBag(System.Security.Cryptography.Pkcs.Pkcs12SafeBag)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L60C13-L71C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L60C13-L71C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12SafeContents.AddCertificate(System.Security.Cryptography.X509Certificates.X509Certificate2)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L75C13-L85C24" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L75C13-L85C24" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12SafeContents.AddKeyUnencrypted(System.Security.Cryptography.AsymmetricAlgorithm)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L90C13-L101C24" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L90C13-L101C24" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12SafeContents.AddNestedContents(System.Security.Cryptography.Pkcs.Pkcs12SafeContents)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L106C13-L118C24" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L106C13-L118C24" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12SafeContents.AddShroudedKey(System.Security.Cryptography.AsymmetricAlgorithm,System.Byte[],System.Security.Cryptography.PbeParameters)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L126C13-L130C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L126C13-L130C32" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12SafeContents.AddShroudedKey(System.Security.Cryptography.AsymmetricAlgorithm,System.ReadOnlySpan{System.Byte},System.Security.Cryptography.PbeParameters)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L138C13-L149C24" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L138C13-L149C24" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12SafeContents.AddShroudedKey(System.Security.Cryptography.AsymmetricAlgorithm,System.String,System.Security.Cryptography.PbeParameters)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L157C13-L161C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L157C13-L161C32" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12SafeContents.AddShroudedKey(System.Security.Cryptography.AsymmetricAlgorithm,System.ReadOnlySpan{System.Char},System.Security.Cryptography.PbeParameters)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L169C13-L180C24" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L169C13-L180C24" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12SafeContents.AddSecret(System.Security.Cryptography.Oid,System.ReadOnlyMemory{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L185C13-L195C24" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L185C13-L195C24" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12SafeContents.Decrypt(System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L201C13-L202C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L201C13-L202C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12SafeContents.Decrypt(System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L206C13-L207C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L206C13-L207C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12SafeContents.Decrypt(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L212C13-L213C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L212C13-L213C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12SafeContents.Decrypt(System.ReadOnlySpan{System.Char})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L217C13-L218C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L217C13-L218C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12SafeContents.GetBags", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L283C13-L293C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L283C13-L293C39" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Pkcs12SafeContents.ConfidentialityMode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L20C64-L20C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L20C64-L20C68" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Pkcs12SafeContents.IsReadOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L21C34-L21C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs#L21C34-L21C38" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.Pkcs12SafeContents", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContents.cs" }, { "Members": [ { "DocsId": "P:System.Security.Cryptography.Pkcs.Pkcs12SafeContentsBag.SafeContents", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContentsBag.cs#L11C51-L11C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContentsBag.cs#L11C51-L11C55" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.Pkcs12SafeContentsBag", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContentsBag.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SafeContentsBag.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12SecretBag.GetSecretType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SecretBag.cs#L39C13-L41C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SecretBag.cs#L39C13-L41C45" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Pkcs12SecretBag.SecretValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SecretBag.cs#L16C52-L16C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SecretBag.cs#L16C52-L16C72" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.Pkcs12SecretBag", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SecretBag.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12SecretBag.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs12ShroudedKeyBag.#ctor(System.ReadOnlyMemory{System.Byte},System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12ShroudedKeyBag.cs#L9C15-L11C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12ShroudedKeyBag.cs#L9C15-L11C10" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Pkcs12ShroudedKeyBag.EncryptedPkcs8PrivateKey", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12ShroudedKeyBag.cs#L13C65-L13C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12ShroudedKeyBag.cs#L13C65-L13C80" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.Pkcs12ShroudedKeyBag", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12ShroudedKeyBag.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs12ShroudedKeyBag.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs8PrivateKeyInfo.#ctor(System.Security.Cryptography.Oid,System.Nullable{System.ReadOnlyMemory{System.Byte}},System.ReadOnlyMemory{System.Byte},System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs#L19C9-L40C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs#L19C9-L40C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs8PrivateKeyInfo.Create(System.Security.Cryptography.AsymmetricAlgorithm)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs#L58C13-L64C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs#L58C13-L64C57" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs8PrivateKeyInfo.Decode(System.ReadOnlyMemory{System.Byte},System.Int32@,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs#L74C17-L93C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs#L74C17-L93C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs8PrivateKeyInfo.Encode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs#L97C13-L98C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs#L97C13-L98C36" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs8PrivateKeyInfo.Encrypt(System.ReadOnlySpan{System.Char},System.Security.Cryptography.PbeParameters)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs#L103C13-L116C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs#L103C13-L116C40" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs8PrivateKeyInfo.Encrypt(System.ReadOnlySpan{System.Byte},System.Security.Cryptography.PbeParameters)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs#L122C13-L134C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs#L122C13-L134C36" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs8PrivateKeyInfo.TryEncode(System.Span{System.Byte},System.Int32@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs#L139C13-L140C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs#L139C13-L140C68" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs8PrivateKeyInfo.TryEncrypt(System.ReadOnlySpan{System.Char},System.Security.Cryptography.PbeParameters,System.Span{System.Byte},System.Int32@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs#L149C13-L161C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs#L149C13-L161C68" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs8PrivateKeyInfo.TryEncrypt(System.ReadOnlySpan{System.Byte},System.Security.Cryptography.PbeParameters,System.Span{System.Byte},System.Int32@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs#L170C13-L182C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs#L170C13-L182C68" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs8PrivateKeyInfo.DecryptAndDecode(System.ReadOnlySpan{System.Char},System.ReadOnlyMemory{System.Byte},System.Int32@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs#L190C13-L214C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs#L190C13-L214C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs8PrivateKeyInfo.DecryptAndDecode(System.ReadOnlySpan{System.Byte},System.ReadOnlyMemory{System.Byte},System.Int32@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs#L221C13-L245C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs#L221C13-L245C10" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Pkcs8PrivateKeyInfo.AlgorithmId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs#L14C34-L14C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs#L14C34-L14C38" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Pkcs8PrivateKeyInfo.AlgorithmParameters", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs#L15C60-L15C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs#L15C60-L15C64" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Pkcs8PrivateKeyInfo.Attributes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs#L16C68-L16C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs#L16C68-L16C72" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Pkcs8PrivateKeyInfo.PrivateKeyBytes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs#L17C55-L17C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs#L17C55-L17C59" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.Pkcs8PrivateKeyInfo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs8PrivateKeyInfo.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs9LocalKeyId.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9LocalKeyId.cs#L15C13-L17C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9LocalKeyId.cs#L15C13-L17C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs9LocalKeyId.#ctor(System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9LocalKeyId.cs#L21C15-L23C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9LocalKeyId.cs#L21C15-L23C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs9LocalKeyId.#ctor(System.ReadOnlySpan{System.Byte})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9LocalKeyId.cs#L26C15-L31C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9LocalKeyId.cs#L26C15-L31C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Pkcs9LocalKeyId.CopyFrom(System.Security.Cryptography.AsnEncodedData)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9LocalKeyId.cs#L38C13-L40C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9LocalKeyId.cs#L38C13-L40C10" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Pkcs9LocalKeyId.KeyId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9LocalKeyId.cs#L34C13-L34C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9LocalKeyId.cs#L34C13-L34C43" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.Pkcs9LocalKeyId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9LocalKeyId.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Pkcs9LocalKeyId.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.Rfc3161TimestampRequest.GetMessageHash", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L26C57-L26C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L26C57-L26C97" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Rfc3161TimestampRequest.GetNonce", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L30C52-L30C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L30C52-L30C69" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Rfc3161TimestampRequest.GetExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L35C13-L57C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L35C13-L57C25" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Rfc3161TimestampRequest.ProcessResponse(System.ReadOnlyMemory{System.Byte},System.Int32@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L62C13-L70C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L62C13-L70C48" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Rfc3161TimestampRequest.Encode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L148C13-L148C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L148C13-L148C51" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Rfc3161TimestampRequest.TryEncode(System.Span{System.Byte},System.Int32@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L153C13-L161C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L153C13-L161C25" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Rfc3161TimestampRequest.CreateFromSignerInfo(System.Security.Cryptography.Pkcs.SignerInfo,System.Security.Cryptography.HashAlgorithmName,System.Security.Cryptography.Oid,System.Nullable{System.ReadOnlyMemory{System.Byte}},System.Boolean,System.Security.Cryptography.X509Certificates.X509ExtensionCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L172C13-L188C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L172C13-L188C29" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Rfc3161TimestampRequest.CreateFromData(System.ReadOnlySpan{System.Byte},System.Security.Cryptography.HashAlgorithmName,System.Security.Cryptography.Oid,System.Nullable{System.ReadOnlyMemory{System.Byte}},System.Boolean,System.Security.Cryptography.X509Certificates.X509ExtensionCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L199C20-L212C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L199C20-L212C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Rfc3161TimestampRequest.CreateFromHash(System.ReadOnlyMemory{System.Byte},System.Security.Cryptography.HashAlgorithmName,System.Security.Cryptography.Oid,System.Nullable{System.ReadOnlyMemory{System.Byte}},System.Boolean,System.Security.Cryptography.X509Certificates.X509ExtensionCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L222C13-L230C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L222C13-L230C29" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Rfc3161TimestampRequest.CreateFromHash(System.ReadOnlyMemory{System.Byte},System.Security.Cryptography.Oid,System.Security.Cryptography.Oid,System.Nullable{System.ReadOnlyMemory{System.Byte}},System.Boolean,System.Security.Cryptography.X509Certificates.X509ExtensionCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L267C13-L341C15" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L267C13-L341C15" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Rfc3161TimestampRequest.TryDecode(System.ReadOnlyMemory{System.Byte},System.Security.Cryptography.Pkcs.Rfc3161TimestampRequest@,System.Int32@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L359C17-L383C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L359C17-L383C10" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Rfc3161TimestampRequest.Version", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L25C31-L25C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L25C31-L25C50" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Rfc3161TimestampRequest.HashAlgorithmId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L27C39-L27C127" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L27C39-L27C127" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Rfc3161TimestampRequest.RequestedPolicyId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L28C42-L28C142" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L28C42-L28C142" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Rfc3161TimestampRequest.RequestSignerCertificate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L29C49-L29C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L29C49-L29C68" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Rfc3161TimestampRequest.HasExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L31C38-L31C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs#L31C38-L31C72" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.Rfc3161TimestampRequest", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampRequest.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.Rfc3161TimestampToken.AsSignedCms", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampToken.cs#L40C43-L40C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampToken.cs#L40C43-L40C58" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Rfc3161TimestampToken.VerifySignatureForData(System.ReadOnlySpan{System.Byte},System.Security.Cryptography.X509Certificates.X509Certificate2@,System.Security.Cryptography.X509Certificates.X509Certificate2Collection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampToken.cs#L79C13-L94C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampToken.cs#L79C13-L94C26" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Rfc3161TimestampToken.VerifySignatureForHash(System.ReadOnlySpan{System.Byte},System.Security.Cryptography.HashAlgorithmName,System.Security.Cryptography.X509Certificates.X509Certificate2@,System.Security.Cryptography.X509Certificates.X509Certificate2Collection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampToken.cs#L103C13-L118C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampToken.cs#L103C13-L118C26" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Rfc3161TimestampToken.VerifySignatureForHash(System.ReadOnlySpan{System.Byte},System.Security.Cryptography.Oid,System.Security.Cryptography.X509Certificates.X509Certificate2@,System.Security.Cryptography.X509Certificates.X509Certificate2Collection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampToken.cs#L127C13-L151C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampToken.cs#L127C13-L151C26" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Rfc3161TimestampToken.VerifySignatureForSignerInfo(System.Security.Cryptography.Pkcs.SignerInfo,System.Security.Cryptography.X509Certificates.X509Certificate2@,System.Security.Cryptography.X509Certificates.X509Certificate2Collection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampToken.cs#L159C13-L167C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampToken.cs#L159C13-L167C34" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Rfc3161TimestampToken.TryDecode(System.ReadOnlyMemory{System.Byte},System.Security.Cryptography.Pkcs.Rfc3161TimestampToken@,System.Int32@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampToken.cs#L298C13-L428C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampToken.cs#L298C13-L428C10" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Rfc3161TimestampToken.TokenInfo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampToken.cs#L23C54-L23C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampToken.cs#L23C54-L23C58" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.Rfc3161TimestampToken", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampToken.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampToken.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.#ctor(System.Security.Cryptography.Oid,System.Security.Cryptography.Oid,System.ReadOnlyMemory{System.Byte},System.ReadOnlyMemory{System.Byte},System.DateTimeOffset,System.Nullable{System.Int64},System.Boolean,System.Nullable{System.ReadOnlyMemory{System.Byte}},System.Nullable{System.ReadOnlyMemory{System.Byte}},System.Security.Cryptography.X509Certificates.X509ExtensionCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L40C9-L69C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L40C9-L69C10" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.GetMessageHash", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L99C57-L99C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L99C57-L99C97" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.GetSerialNumber", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L105C58-L105C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L105C58-L105C82" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.GetNonce", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L130C52-L130C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L130C52-L130C69" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.GetTimestampAuthorityName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L149C13-L164C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L149C13-L164C40" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.GetExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L173C13-L195C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L173C13-L195C25" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.Encode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L204C13-L204C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L204C13-L204C51" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.TryEncode(System.Span{System.Byte},System.Int32@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L215C13-L223C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L215C13-L223C25" }, { "DocsId": "M:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.TryDecode(System.ReadOnlyMemory{System.Byte},System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo@,System.Int32@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L238C13-L246C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L238C13-L246C26" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.Version", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L81C31-L81C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L81C31-L81C50" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.PolicyId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L87C32-L87C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L87C32-L87C82" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.HashAlgorithmId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L93C39-L93C127" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L93C39-L93C127" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.Timestamp", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L111C44-L111C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L111C44-L111C63" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.AccuracyInMicroseconds", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L118C48-L118C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L118C48-L118C81" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.IsOrdering", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L124C35-L124C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L124C35-L124C55" }, { "DocsId": "P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.HasExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L136C38-L136C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs#L136C38-L136C72" } ], "DocsId": "T:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/Rfc3161TimestampTokenInfo.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/System.Security.Cryptography.ProtectedData.json b/xml/SourceLinkInformation/net-9.0/System.Security.Cryptography.ProtectedData.json index 1d6d3fd90d1..a7dd6fbfc46 100644 --- a/xml/SourceLinkInformation/net-9.0/System.Security.Cryptography.ProtectedData.json +++ b/xml/SourceLinkInformation/net-9.0/System.Security.Cryptography.ProtectedData.json @@ -1,39 +1,38 @@ { "Assembly": "System.Security.Cryptography.ProtectedData", - "GUID": "FDB17BE443C34B0A88A9CE0FEB8AF88EFFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "2A8CCFBBDB7B4F798A7C523F51AE0A0BFFFFFFFF", "Types": [ { "Members": [ { "DocsId": "F:System.Security.Cryptography.DataProtectionScope.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.ProtectedData/src/System/Security/Cryptography/DataProtectionScope.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.ProtectedData/src/System/Security/Cryptography/DataProtectionScope.cs" }, { "DocsId": "F:System.Security.Cryptography.DataProtectionScope.CurrentUser", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.ProtectedData/src/System/Security/Cryptography/DataProtectionScope.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.ProtectedData/src/System/Security/Cryptography/DataProtectionScope.cs" }, { "DocsId": "F:System.Security.Cryptography.DataProtectionScope.LocalMachine", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.ProtectedData/src/System/Security/Cryptography/DataProtectionScope.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.ProtectedData/src/System/Security/Cryptography/DataProtectionScope.cs" } ], "DocsId": "T:System.Security.Cryptography.DataProtectionScope", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.ProtectedData/src/System/Security/Cryptography/DataProtectionScope.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.ProtectedData/src/System/Security/Cryptography/DataProtectionScope.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.ProtectedData.Protect(System.Byte[],System.Byte[],System.Security.Cryptography.DataProtectionScope)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.ProtectedData/src/System/Security/Cryptography/ProtectedData.cs#L17C13-L22C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.ProtectedData/src/System/Security/Cryptography/ProtectedData.cs#L17C13-L22C88" }, { "DocsId": "M:System.Security.Cryptography.ProtectedData.Unprotect(System.Byte[],System.Byte[],System.Security.Cryptography.DataProtectionScope)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.ProtectedData/src/System/Security/Cryptography/ProtectedData.cs#L27C13-L32C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.ProtectedData/src/System/Security/Cryptography/ProtectedData.cs#L27C13-L32C94" } ], "DocsId": "T:System.Security.Cryptography.ProtectedData", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.ProtectedData/src/System/Security/Cryptography/ProtectedData.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.ProtectedData/src/System/Security/Cryptography/ProtectedData.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/System.Security.Cryptography.Xml.json b/xml/SourceLinkInformation/net-9.0/System.Security.Cryptography.Xml.json index 0458218461c..e867f5f5402 100644 --- a/xml/SourceLinkInformation/net-9.0/System.Security.Cryptography.Xml.json +++ b/xml/SourceLinkInformation/net-9.0/System.Security.Cryptography.Xml.json @@ -1,1925 +1,1924 @@ { "Assembly": "System.Security.Cryptography.Xml", - "GUID": "D37DBC75B8A647A2B41E8C9BAC183DCCFFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "FEE72188BE80439EA560576785846944FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.CipherData.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherData.cs#L15C9-L15C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherData.cs#L15C9-L15C32" }, { "DocsId": "M:System.Security.Cryptography.Xml.CipherData.#ctor(System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherData.cs#L17C9-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherData.cs#L17C9-L20C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.CipherData.#ctor(System.Security.Cryptography.Xml.CipherReference)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherData.cs#L22C9-L25C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherData.cs#L22C9-L25C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.CipherData.GetXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherData.cs#L70C13-L74C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherData.cs#L70C13-L74C37" }, { "DocsId": "M:System.Security.Cryptography.Xml.CipherData.LoadXml(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherData.cs#L101C13-L129C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherData.cs#L101C13-L129C10" }, { "DocsId": "P:System.Security.Cryptography.Xml.CipherData.CipherReference", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherData.cs#L39C19-L39C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherData.cs#L39C19-L39C43" }, { "DocsId": "P:System.Security.Cryptography.Xml.CipherData.CipherValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherData.cs#L55C19-L55C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherData.cs#L55C19-L55C39" } ], "DocsId": "T:System.Security.Cryptography.Xml.CipherData", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherData.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherData.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.CipherReference.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherReference.cs#L13C36-L16C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherReference.cs#L13C36-L16C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.CipherReference.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherReference.cs#L18C46-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherReference.cs#L18C46-L21C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.CipherReference.#ctor(System.String,System.Security.Cryptography.Xml.TransformChain)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherReference.cs#L23C77-L26C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherReference.cs#L23C77-L26C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.CipherReference.GetXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherReference.cs#L45C13-L49C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherReference.cs#L45C13-L49C37" }, { "DocsId": "M:System.Security.Cryptography.Xml.CipherReference.LoadXml(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherReference.cs#L73C13-L91C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherReference.cs#L73C13-L91C10" } ], "DocsId": "T:System.Security.Cryptography.Xml.CipherReference", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherReference.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CipherReference.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.CryptoSignedXmlRecursionException.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CryptoSignedXmlRecursionException.cs#L20C54-L20C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CryptoSignedXmlRecursionException.cs#L20C54-L20C64" }, { "DocsId": "M:System.Security.Cryptography.Xml.CryptoSignedXmlRecursionException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CryptoSignedXmlRecursionException.cs#L21C68-L21C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CryptoSignedXmlRecursionException.cs#L21C68-L21C85" }, { "DocsId": "M:System.Security.Cryptography.Xml.CryptoSignedXmlRecursionException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CryptoSignedXmlRecursionException.cs#L22C85-L22C109" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CryptoSignedXmlRecursionException.cs#L22C85-L22C109" }, { "DocsId": "M:System.Security.Cryptography.Xml.CryptoSignedXmlRecursionException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CryptoSignedXmlRecursionException.cs#L27C105-L27C128" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CryptoSignedXmlRecursionException.cs#L27C105-L27C128" } ], "DocsId": "T:System.Security.Cryptography.Xml.CryptoSignedXmlRecursionException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CryptoSignedXmlRecursionException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/CryptoSignedXmlRecursionException.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.DataObject.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataObject.cs#L21C9-L25C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataObject.cs#L21C9-L25C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.DataObject.#ctor(System.String,System.String,System.String,System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataObject.cs#L27C9-L40C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataObject.cs#L27C9-L40C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.DataObject.GetXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataObject.cs#L109C13-L113C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataObject.cs#L109C13-L113C37" }, { "DocsId": "M:System.Security.Cryptography.Xml.DataObject.LoadXml(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataObject.cs#L140C13-L156C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataObject.cs#L140C13-L156C10" }, { "DocsId": "P:System.Security.Cryptography.Xml.DataObject.Id", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataObject.cs#L48C19-L48C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataObject.cs#L48C19-L48C30" }, { "DocsId": "P:System.Security.Cryptography.Xml.DataObject.MimeType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataObject.cs#L58C19-L58C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataObject.cs#L58C19-L58C36" }, { "DocsId": "P:System.Security.Cryptography.Xml.DataObject.Encoding", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataObject.cs#L68C19-L68C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataObject.cs#L68C19-L68C36" }, { "DocsId": "P:System.Security.Cryptography.Xml.DataObject.Data", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataObject.cs#L78C19-L78C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataObject.cs#L78C19-L78C34" } ], "DocsId": "T:System.Security.Cryptography.Xml.DataObject", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataObject.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataObject.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.DataReference.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataReference.cs#L8C34-L11C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataReference.cs#L8C34-L11C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.DataReference.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataReference.cs#L13C44-L16C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataReference.cs#L13C44-L16C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.DataReference.#ctor(System.String,System.Security.Cryptography.Xml.TransformChain)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataReference.cs#L18C75-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataReference.cs#L18C75-L21C10" } ], "DocsId": "T:System.Security.Cryptography.Xml.DataReference", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataReference.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DataReference.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.DSAKeyValue.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DSAKeyValue.cs#L21C9-L24C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DSAKeyValue.cs#L21C9-L24C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.DSAKeyValue.#ctor(System.Security.Cryptography.DSA)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DSAKeyValue.cs#L26C9-L34C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DSAKeyValue.cs#L26C9-L34C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.DSAKeyValue.GetXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DSAKeyValue.cs#L69C13-L71C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DSAKeyValue.cs#L69C13-L71C40" }, { "DocsId": "M:System.Security.Cryptography.Xml.DSAKeyValue.LoadXml(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DSAKeyValue.cs#L156C13-L213C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DSAKeyValue.cs#L156C13-L213C10" }, { "DocsId": "P:System.Security.Cryptography.Xml.DSAKeyValue.Key", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DSAKeyValue.cs#L42C20-L42C24" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DSAKeyValue.cs#L42C20-L42C24" } ], "DocsId": "T:System.Security.Cryptography.Xml.DSAKeyValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DSAKeyValue.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/DSAKeyValue.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedData.LoadXml(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedData.cs#L15C13-L69C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedData.cs#L15C13-L69C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedData.GetXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedData.cs#L73C13-L77C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedData.cs#L73C13-L77C37" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedData.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedData.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedData.cs" } ], "DocsId": "T:System.Security.Cryptography.Xml.EncryptedData", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedData.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedData.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedKey.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedKey.cs#L15C9-L15C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedKey.cs#L15C9-L15C34" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedKey.AddReference(System.Security.Cryptography.Xml.DataReference)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedKey.cs#L42C13-L43C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedKey.cs#L42C13-L43C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedKey.AddReference(System.Security.Cryptography.Xml.KeyReference)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedKey.cs#L47C13-L48C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedKey.cs#L47C13-L48C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedKey.LoadXml(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedKey.cs#L54C13-L144C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedKey.cs#L54C13-L144C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedKey.GetXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedKey.cs#L148C13-L152C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedKey.cs#L148C13-L152C37" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptedKey.Recipient", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedKey.cs#L20C20-L20C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedKey.cs#L20C20-L20C47" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptedKey.CarriedKeyName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedKey.cs#L30C19-L30C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedKey.cs#L30C19-L30C42" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptedKey.ReferenceList", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedKey.cs#L38C47-L38C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedKey.cs#L38C47-L38C85" } ], "DocsId": "T:System.Security.Cryptography.Xml.EncryptedKey", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedKey.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedKey.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedReference.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedReference.cs#L16C42-L18C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedReference.cs#L16C42-L18C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedReference.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedReference.cs#L20C52-L22C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedReference.cs#L20C52-L22C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedReference.#ctor(System.String,System.Security.Cryptography.Xml.TransformChain)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedReference.cs#L24C9-L29C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedReference.cs#L24C9-L29C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedReference.AddTransform(System.Security.Cryptography.Xml.Transform)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedReference.cs#L57C13-L58C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedReference.cs#L57C13-L58C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedReference.GetXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedReference.cs#L81C13-L85C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedReference.cs#L81C13-L85C37" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedReference.LoadXml(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedReference.cs#L109C13-L130C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedReference.cs#L109C13-L130C10" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptedReference.Uri", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedReference.cs#L33C19-L33C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedReference.cs#L33C19-L33C31" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptedReference.TransformChain", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedReference.cs#L47C20-L47C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedReference.cs#L47C20-L47C60" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptedReference.ReferenceType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedReference.cs#L62C19-L62C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedReference.cs#L62C19-L62C41" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptedReference.CacheValid", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedReference.cs#L75C17-L75C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedReference.cs#L75C17-L75C45" } ], "DocsId": "T:System.Security.Cryptography.Xml.EncryptedReference", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedReference.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedReference.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedType.AddProperty(System.Security.Cryptography.Xml.EncryptionProperty)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs#L91C13-L92C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs#L91C13-L92C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedType.LoadXml(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedType.GetXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedType.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptedType.Id", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs#L32C19-L32C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs#L32C19-L32C30" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptedType.Type", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs#L42C19-L42C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs#L42C19-L42C32" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptedType.MimeType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs#L52C19-L52C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs#L52C19-L52C36" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptedType.Encoding", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs#L62C19-L62C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs#L62C19-L62C36" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptedType.KeyInfo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs#L73C20-L73C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs#L73C20-L73C46" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptedType.EncryptionMethod", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs#L79C19-L79C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs#L79C19-L79C44" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptedType.EncryptionProperties", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs#L87C77-L87C122" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs#L87C77-L87C122" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptedType.CipherData", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs#L96C20-L96C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs#L96C20-L96C52" } ], "DocsId": "T:System.Security.Cryptography.Xml.EncryptedType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedType.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedXml.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L81C33-L81C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L81C33-L81C60" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedXml.#ctor(System.Xml.XmlDocument)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L85C53-L85C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L85C53-L85C77" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedXml.#ctor(System.Xml.XmlDocument,System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L89C9-L102C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L89C9-L102C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedXml.GetIdElement(System.Xml.XmlDocument,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L266C13-L266C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L266C13-L266C69" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedXml.GetDecryptionIV(System.Security.Cryptography.Xml.EncryptedData,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L272C13-L303C23" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L272C13-L303C23" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedXml.GetDecryptionKey(System.Security.Cryptography.Xml.EncryptedData,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L312C13-L393C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L312C13-L393C25" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedXml.DecryptEncryptedKey(System.Security.Cryptography.Xml.EncryptedKey)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L401C13-L513C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L401C13-L513C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedXml.AddKeyNameMapping(System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L523C13-L535C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L523C13-L535C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedXml.ClearKeyNameMappings", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L539C13-L540C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L539C13-L540C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedXml.Encrypt(System.Xml.XmlElement,System.Security.Cryptography.X509Certificates.X509Certificate2)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L548C13-L585C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L548C13-L585C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedXml.Encrypt(System.Xml.XmlElement,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L594C13-L668C23" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L594C13-L668C23" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedXml.DecryptDocument", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L679C13-L696C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L679C13-L696C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedXml.EncryptData(System.Byte[],System.Security.Cryptography.SymmetricAlgorithm)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L701C13-L742C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L701C13-L742C27" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedXml.EncryptData(System.Xml.XmlElement,System.Security.Cryptography.SymmetricAlgorithm,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L748C13-L758C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L748C13-L758C63" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedXml.DecryptData(System.Security.Cryptography.Xml.EncryptedData,System.Security.Cryptography.SymmetricAlgorithm)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L764C13-L809C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L764C13-L809C27" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedXml.ReplaceData(System.Xml.XmlElement,System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L815C13-L880C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L815C13-L880C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedXml.ReplaceElement(System.Xml.XmlElement,System.Security.Cryptography.Xml.EncryptedData,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L889C13-L914C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L889C13-L914C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedXml.EncryptKey(System.Byte[],System.Security.Cryptography.SymmetricAlgorithm)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L919C13-L941C102" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L919C13-L941C102" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedXml.EncryptKey(System.Byte[],System.Security.Cryptography.RSA,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L949C13-L966C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L949C13-L966C64" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedXml.DecryptKey(System.Byte[],System.Security.Cryptography.SymmetricAlgorithm)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L973C13-L995C102" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L973C13-L995C102" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptedXml.DecryptKey(System.Byte[],System.Security.Cryptography.RSA,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L1002C13-L1019C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L1002C13-L1019C67" }, { "DocsId": "F:System.Security.Cryptography.Xml.EncryptedXml.XmlEncNamespaceUrl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.EncryptedXml.XmlEncElementUrl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.EncryptedXml.XmlEncElementContentUrl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.EncryptedXml.XmlEncEncryptedKeyUrl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.EncryptedXml.XmlEncDESUrl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.EncryptedXml.XmlEncTripleDESUrl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.EncryptedXml.XmlEncAES128Url", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.EncryptedXml.XmlEncAES256Url", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.EncryptedXml.XmlEncAES192Url", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.EncryptedXml.XmlEncRSA15Url", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.EncryptedXml.XmlEncRSAOAEPUrl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.EncryptedXml.XmlEncTripleDESKeyWrapUrl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.EncryptedXml.XmlEncAES128KeyWrapUrl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.EncryptedXml.XmlEncAES256KeyWrapUrl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.EncryptedXml.XmlEncAES192KeyWrapUrl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.EncryptedXml.XmlEncSHA256Url", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.EncryptedXml.XmlEncSHA512Url", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptedXml.XmlDSigSearchDepth", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L125C17-L125C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L125C17-L125C44" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptedXml.DocumentEvidence", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L136C19-L136C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L136C19-L136C36" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptedXml.Resolver", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L143C19-L143C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L143C19-L143C39" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptedXml.Padding", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L151C19-L151C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L151C19-L151C35" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptedXml.Mode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L159C19-L159C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L159C19-L159C32" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptedXml.Encoding", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L166C19-L166C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L166C19-L166C36" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptedXml.Recipient", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L175C20-L175C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs#L175C20-L175C47" } ], "DocsId": "T:System.Security.Cryptography.Xml.EncryptedXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptedXml.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionMethod.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionMethod.cs#L15C9-L18C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionMethod.cs#L15C9-L18C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionMethod.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionMethod.cs#L20C9-L24C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionMethod.cs#L20C9-L24C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionMethod.GetXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionMethod.cs#L59C13-L63C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionMethod.cs#L59C13-L63C37" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionMethod.LoadXml(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionMethod.cs#L84C13-L103C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionMethod.cs#L84C13-L103C10" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptionMethod.KeySize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionMethod.cs#L37C19-L37C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionMethod.cs#L37C19-L37C35" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptionMethod.KeyAlgorithm", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionMethod.cs#L49C19-L49C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionMethod.cs#L49C19-L49C37" } ], "DocsId": "T:System.Security.Cryptography.Xml.EncryptionMethod", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionMethod.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionMethod.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionProperty.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionProperty.cs#L17C9-L17C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionProperty.cs#L17C9-L17C40" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionProperty.#ctor(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionProperty.cs#L19C9-L31C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionProperty.cs#L19C9-L31C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionProperty.GetXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionProperty.cs#L70C13-L74C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionProperty.cs#L70C13-L74C37" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionProperty.LoadXml(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionProperty.cs#L84C13-L97C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionProperty.cs#L84C13-L97C10" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptionProperty.Id", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionProperty.cs#L35C19-L35C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionProperty.cs#L35C19-L35C30" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptionProperty.Target", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionProperty.cs#L40C19-L40C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionProperty.cs#L40C19-L40C34" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptionProperty.PropertyElement", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionProperty.cs#L46C19-L46C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionProperty.cs#L46C19-L46C36" } ], "DocsId": "T:System.Security.Cryptography.Xml.EncryptionProperty", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionProperty.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionProperty.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionPropertyCollection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L12C9-L15C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L12C9-L15C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionPropertyCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L19C13-L19C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L19C13-L19C43" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionPropertyCollection.System#Collections#IList#Add(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L30C13-L33C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L30C13-L33C38" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionPropertyCollection.Add(System.Security.Cryptography.Xml.EncryptionProperty)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L38C13-L38C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L38C13-L38C38" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionPropertyCollection.Clear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L43C13-L44C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L43C13-L44C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionPropertyCollection.System#Collections#IList#Contains(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L49C13-L52C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L49C13-L52C43" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionPropertyCollection.Contains(System.Security.Cryptography.Xml.EncryptionProperty)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L57C13-L57C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L57C13-L57C43" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionPropertyCollection.System#Collections#IList#IndexOf(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L63C13-L66C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L63C13-L66C42" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionPropertyCollection.IndexOf(System.Security.Cryptography.Xml.EncryptionProperty)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L71C13-L71C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L71C13-L71C42" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionPropertyCollection.System#Collections#IList#Insert(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L77C13-L81C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L77C13-L81C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionPropertyCollection.Insert(System.Int32,System.Security.Cryptography.Xml.EncryptionProperty)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L85C13-L86C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L85C13-L86C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionPropertyCollection.System#Collections#IList#Remove(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L91C13-L95C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L91C13-L95C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionPropertyCollection.Remove(System.Security.Cryptography.Xml.EncryptionProperty)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L99C13-L100C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L99C13-L100C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionPropertyCollection.RemoveAt(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L104C13-L105C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L104C13-L105C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionPropertyCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L119C13-L119C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L119C13-L119C55" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionPropertyCollection.System#Collections#IList#get_Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L138C19-L138C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L138C19-L138C40" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionPropertyCollection.System#Collections#IList#set_Item(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L141C17-L145C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L141C17-L145C14" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionPropertyCollection.CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L150C13-L151C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L150C13-L151C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.EncryptionPropertyCollection.CopyTo(System.Security.Cryptography.Xml.EncryptionProperty[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L155C13-L156C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L155C13-L156C10" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptionPropertyCollection.Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L24C19-L24C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L24C19-L24C39" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptionPropertyCollection.IsFixedSize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L109C19-L109C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L109C19-L109C45" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptionPropertyCollection.IsReadOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L114C19-L114C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L114C19-L114C44" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptionPropertyCollection.ItemOf(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L127C17-L127C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L127C17-L127C66" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptionPropertyCollection.System#Collections#IList#Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L138C19-L138C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L138C19-L138C40" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptionPropertyCollection.SyncRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L160C19-L160C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L160C19-L160C42" }, { "DocsId": "P:System.Security.Cryptography.Xml.EncryptionPropertyCollection.IsSynchronized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L165C19-L165C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs#L165C19-L165C48" } ], "DocsId": "T:System.Security.Cryptography.Xml.EncryptionPropertyCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/EncryptionPropertyCollection.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.IRelDecryptor.Decrypt(System.Security.Cryptography.Xml.EncryptionMethod,System.Security.Cryptography.Xml.KeyInfo,System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/IRelDecryptor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/IRelDecryptor.cs" } ], "DocsId": "T:System.Security.Cryptography.Xml.IRelDecryptor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/IRelDecryptor.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/IRelDecryptor.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfo.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfo.cs#L19C9-L22C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfo.cs#L19C9-L22C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfo.GetXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfo.cs#L36C13-L38C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfo.cs#L36C13-L38C40" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfo.LoadXml(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfo.cs#L65C13-L113C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfo.cs#L65C13-L113C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfo.AddClause(System.Security.Cryptography.Xml.KeyInfoClause)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfo.cs#L126C13-L127C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfo.cs#L126C13-L127C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfo.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfo.cs#L131C13-L131C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfo.cs#L131C13-L131C52" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfo.GetEnumerator(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfo.cs#L136C13-L148C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfo.cs#L136C13-L148C50" }, { "DocsId": "P:System.Security.Cryptography.Xml.KeyInfo.Id", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfo.cs#L30C19-L30C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfo.cs#L30C19-L30C30" }, { "DocsId": "P:System.Security.Cryptography.Xml.KeyInfo.Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfo.cs#L117C19-L117C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfo.cs#L117C19-L117C48" } ], "DocsId": "T:System.Security.Cryptography.Xml.KeyInfo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfo.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfo.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoClause.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoClause.cs#L14C9-L14C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoClause.cs#L14C9-L14C38" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoClause.GetXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoClause.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoClause.cs" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoClause.LoadXml(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoClause.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoClause.cs" } ], "DocsId": "T:System.Security.Cryptography.Xml.KeyInfoClause", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoClause.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoClause.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoEncryptedKey.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoEncryptedKey.cs#L15C9-L15C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoEncryptedKey.cs#L15C9-L15C41" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoEncryptedKey.#ctor(System.Security.Cryptography.Xml.EncryptedKey)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoEncryptedKey.cs#L17C9-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoEncryptedKey.cs#L17C9-L20C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoEncryptedKey.GetXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoEncryptedKey.cs#L30C13-L32C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoEncryptedKey.cs#L30C13-L32C43" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoEncryptedKey.LoadXml(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoEncryptedKey.cs#L44C13-L46C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoEncryptedKey.cs#L44C13-L46C10" }, { "DocsId": "P:System.Security.Cryptography.Xml.KeyInfoEncryptedKey.EncryptedKey", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoEncryptedKey.cs#L24C19-L24C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoEncryptedKey.cs#L24C19-L24C40" } ], "DocsId": "T:System.Security.Cryptography.Xml.KeyInfoEncryptedKey", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoEncryptedKey.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoEncryptedKey.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoName.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoName.cs#L16C32-L16C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoName.cs#L16C32-L16C46" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoName.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoName.cs#L18C9-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoName.cs#L18C9-L21C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoName.GetXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoName.cs#L39C13-L41C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoName.cs#L39C13-L41C40" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoName.LoadXml(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoName.cs#L53C13-L60C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoName.cs#L53C13-L60C10" }, { "DocsId": "P:System.Security.Cryptography.Xml.KeyInfoName.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoName.cs#L29C19-L29C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoName.cs#L29C19-L29C35" } ], "DocsId": "T:System.Security.Cryptography.Xml.KeyInfoName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoName.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoName.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoNode.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoNode.cs#L17C9-L17C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoNode.cs#L17C9-L17C33" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoNode.#ctor(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoNode.cs#L19C9-L22C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoNode.cs#L19C9-L22C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoNode.GetXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoNode.cs#L40C13-L42C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoNode.cs#L40C13-L42C40" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoNode.LoadXml(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoNode.cs#L52C13-L53C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoNode.cs#L52C13-L53C10" }, { "DocsId": "P:System.Security.Cryptography.Xml.KeyInfoNode.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoNode.cs#L30C19-L30C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoNode.cs#L30C19-L30C32" } ], "DocsId": "T:System.Security.Cryptography.Xml.KeyInfoNode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoNode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoNode.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoRetrievalMethod.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoRetrievalMethod.cs#L17C9-L17C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoRetrievalMethod.cs#L17C9-L17C44" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoRetrievalMethod.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoRetrievalMethod.cs#L19C9-L22C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoRetrievalMethod.cs#L19C9-L22C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoRetrievalMethod.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoRetrievalMethod.cs#L24C9-L28C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoRetrievalMethod.cs#L24C9-L28C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoRetrievalMethod.GetXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoRetrievalMethod.cs#L48C13-L50C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoRetrievalMethod.cs#L48C13-L50C40" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoRetrievalMethod.LoadXml(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoRetrievalMethod.cs#L68C13-L75C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoRetrievalMethod.cs#L68C13-L75C10" }, { "DocsId": "P:System.Security.Cryptography.Xml.KeyInfoRetrievalMethod.Uri", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoRetrievalMethod.cs#L36C19-L36C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoRetrievalMethod.cs#L36C19-L36C31" }, { "DocsId": "P:System.Security.Cryptography.Xml.KeyInfoRetrievalMethod.Type", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoRetrievalMethod.cs#L42C19-L42C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoRetrievalMethod.cs#L42C19-L42C32" } ], "DocsId": "T:System.Security.Cryptography.Xml.KeyInfoRetrievalMethod", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoRetrievalMethod.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoRetrievalMethod.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoX509Data.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L29C9-L29C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L29C9-L29C37" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoX509Data.#ctor(System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L31C9-L35C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L31C9-L35C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoX509Data.#ctor(System.Security.Cryptography.X509Certificates.X509Certificate)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L37C9-L40C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L37C9-L40C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoX509Data.#ctor(System.Security.Cryptography.X509Certificates.X509Certificate,System.Security.Cryptography.X509Certificates.X509IncludeOption)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L42C9-L94C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L42C9-L94C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoX509Data.AddCertificate(System.Security.Cryptography.X509Certificates.X509Certificate)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L107C13-L116C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L107C13-L116C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoX509Data.AddSubjectKeyId(System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L125C13-L127C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L125C13-L127C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoX509Data.AddSubjectKeyId(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L131C13-L133C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L131C13-L133C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoX509Data.AddSubjectName(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L142C13-L144C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L142C13-L144C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoX509Data.AddIssuerSerial(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L153C13-L165C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L153C13-L174C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoX509Data.GetXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L199C13-L201C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L208C13-L210C40" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyInfoX509Data.LoadXml(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L265C13-L312C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L274C13-L321C10" }, { "DocsId": "P:System.Security.Cryptography.Xml.KeyInfoX509Data.Certificates", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L102C19-L102C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L102C19-L102C40" }, { "DocsId": "P:System.Security.Cryptography.Xml.KeyInfoX509Data.SubjectKeyIds", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L120C19-L120C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L120C19-L120C41" }, { "DocsId": "P:System.Security.Cryptography.Xml.KeyInfoX509Data.SubjectNames", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L137C19-L137C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L137C19-L137C40" }, { "DocsId": "P:System.Security.Cryptography.Xml.KeyInfoX509Data.IssuerSerials", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L148C19-L148C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L148C19-L148C41" }, { "DocsId": "P:System.Security.Cryptography.Xml.KeyInfoX509Data.CRL", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L176C19-L176C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs#L185C19-L185C31" } ], "DocsId": "T:System.Security.Cryptography.Xml.KeyInfoX509Data", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyInfoX509Data.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.KeyReference.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyReference.cs#L8C33-L11C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyReference.cs#L8C33-L11C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyReference.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyReference.cs#L13C43-L16C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyReference.cs#L13C43-L16C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.KeyReference.#ctor(System.String,System.Security.Cryptography.Xml.TransformChain)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyReference.cs#L18C74-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyReference.cs#L18C74-L21C10" } ], "DocsId": "T:System.Security.Cryptography.Xml.KeyReference", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyReference.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/KeyReference.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.Reference.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L32C9-L39C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L32C9-L39C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.Reference.#ctor(System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L41C9-L48C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L41C9-L48C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.Reference.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L50C9-L58C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L50C9-L58C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.Reference.GetXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L160C13-L164C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L160C13-L164C37" }, { "DocsId": "M:System.Security.Cryptography.Xml.Reference.LoadXml(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L211C13-L339C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L211C13-L339C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.Reference.AddTransform(System.Security.Cryptography.Xml.Transform)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L343C13-L350C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L343C13-L350C10" }, { "DocsId": "P:System.Security.Cryptography.Xml.Reference.Id", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L75C19-L75C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L75C19-L75C30" }, { "DocsId": "P:System.Security.Cryptography.Xml.Reference.Uri", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L81C19-L81C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L81C19-L81C31" }, { "DocsId": "P:System.Security.Cryptography.Xml.Reference.Type", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L91C19-L91C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L91C19-L91C32" }, { "DocsId": "P:System.Security.Cryptography.Xml.Reference.DigestMethod", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L101C19-L101C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L101C19-L101C40" }, { "DocsId": "P:System.Security.Cryptography.Xml.Reference.DigestValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L111C19-L111C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L111C19-L111C39" }, { "DocsId": "P:System.Security.Cryptography.Xml.Reference.TransformChain", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L121C20-L121C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs#L121C20-L121C60" } ], "DocsId": "T:System.Security.Cryptography.Xml.Reference", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Reference.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.ReferenceList.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L12C9-L15C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L12C9-L15C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.ReferenceList.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L19C13-L19C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L19C13-L19C48" }, { "DocsId": "M:System.Security.Cryptography.Xml.ReferenceList.Add(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L30C13-L38C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L30C13-L38C43" }, { "DocsId": "M:System.Security.Cryptography.Xml.ReferenceList.Clear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L44C13-L45C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L44C13-L45C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.ReferenceList.Contains(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L49C13-L49C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L49C13-L49C48" }, { "DocsId": "M:System.Security.Cryptography.Xml.ReferenceList.IndexOf(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L54C13-L54C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L54C13-L54C47" }, { "DocsId": "M:System.Security.Cryptography.Xml.ReferenceList.Insert(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L59C13-L68C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L59C13-L68C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.ReferenceList.Remove(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L73C13-L74C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L73C13-L74C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.ReferenceList.RemoveAt(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L78C13-L79C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L78C13-L79C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.ReferenceList.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L83C13-L83C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L83C13-L83C60" }, { "DocsId": "M:System.Security.Cryptography.Xml.ReferenceList.System#Collections#IList#get_Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L102C19-L102C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L102C19-L102C45" }, { "DocsId": "M:System.Security.Cryptography.Xml.ReferenceList.System#Collections#IList#set_Item(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L105C17-L112C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L105C17-L112C14" }, { "DocsId": "M:System.Security.Cryptography.Xml.ReferenceList.CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L117C13-L118C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L117C13-L118C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.ReferenceList.System#Collections#IList#get_IsFixedSize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L122C19-L122C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L122C19-L122C50" }, { "DocsId": "M:System.Security.Cryptography.Xml.ReferenceList.System#Collections#IList#get_IsReadOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L127C19-L127C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L127C19-L127C49" }, { "DocsId": "P:System.Security.Cryptography.Xml.ReferenceList.Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L24C19-L24C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L24C19-L24C44" }, { "DocsId": "P:System.Security.Cryptography.Xml.ReferenceList.ItemOf(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L91C17-L91C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L91C17-L91C37" }, { "DocsId": "P:System.Security.Cryptography.Xml.ReferenceList.System#Collections#IList#Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L102C19-L102C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L102C19-L102C45" }, { "DocsId": "P:System.Security.Cryptography.Xml.ReferenceList.System#Collections#IList#IsFixedSize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L122C19-L122C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L122C19-L122C50" }, { "DocsId": "P:System.Security.Cryptography.Xml.ReferenceList.System#Collections#IList#IsReadOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L127C19-L127C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L127C19-L127C49" }, { "DocsId": "P:System.Security.Cryptography.Xml.ReferenceList.SyncRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L132C19-L132C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L132C19-L132C47" }, { "DocsId": "P:System.Security.Cryptography.Xml.ReferenceList.IsSynchronized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L137C19-L137C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs#L137C19-L137C53" } ], "DocsId": "T:System.Security.Cryptography.Xml.ReferenceList", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/ReferenceList.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.RSAKeyValue.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/RSAKeyValue.cs#L16C9-L19C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/RSAKeyValue.cs#L16C9-L19C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.RSAKeyValue.#ctor(System.Security.Cryptography.RSA)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/RSAKeyValue.cs#L21C9-L29C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/RSAKeyValue.cs#L21C9-L29C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.RSAKeyValue.GetXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/RSAKeyValue.cs#L64C13-L66C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/RSAKeyValue.cs#L64C13-L66C40" }, { "DocsId": "M:System.Security.Cryptography.Xml.RSAKeyValue.LoadXml(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/RSAKeyValue.cs#L111C13-L144C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/RSAKeyValue.cs#L111C13-L144C10" }, { "DocsId": "P:System.Security.Cryptography.Xml.RSAKeyValue.Key", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/RSAKeyValue.cs#L37C20-L37C24" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/RSAKeyValue.cs#L37C20-L37C24" } ], "DocsId": "T:System.Security.Cryptography.Xml.RSAKeyValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/RSAKeyValue.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/RSAKeyValue.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.Signature.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Signature.cs#L31C9-L35C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Signature.cs#L31C9-L35C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.Signature.GetXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Signature.cs#L87C13-L89C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Signature.cs#L87C13-L89C37" }, { "DocsId": "M:System.Security.Cryptography.Xml.Signature.LoadXml(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Signature.cs#L136C13-L226C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Signature.cs#L136C13-L226C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.Signature.AddObject(System.Security.Cryptography.Xml.DataObject)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Signature.cs#L230C13-L231C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Signature.cs#L230C13-L231C10" }, { "DocsId": "P:System.Security.Cryptography.Xml.Signature.Id", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Signature.cs#L43C19-L43C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Signature.cs#L43C19-L43C30" }, { "DocsId": "P:System.Security.Cryptography.Xml.Signature.SignedInfo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Signature.cs#L49C19-L49C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Signature.cs#L49C19-L49C38" }, { "DocsId": "P:System.Security.Cryptography.Xml.Signature.SignatureValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Signature.cs#L60C19-L60C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Signature.cs#L60C19-L60C42" }, { "DocsId": "P:System.Security.Cryptography.Xml.Signature.KeyInfo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Signature.cs#L66C20-L66C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Signature.cs#L66C20-L66C46" }, { "DocsId": "P:System.Security.Cryptography.Xml.Signature.ObjectList", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Signature.cs#L72C19-L72C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Signature.cs#L72C19-L72C43" } ], "DocsId": "T:System.Security.Cryptography.Xml.Signature", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Signature.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Signature.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.SignedInfo.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L29C9-L32C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L29C9-L32C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.SignedInfo.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L36C13-L36C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L36C13-L36C47" }, { "DocsId": "M:System.Security.Cryptography.Xml.SignedInfo.CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L41C13-L41C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L41C13-L41C47" }, { "DocsId": "M:System.Security.Cryptography.Xml.SignedInfo.GetXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L157C13-L161C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L157C13-L161C37" }, { "DocsId": "M:System.Security.Cryptography.Xml.SignedInfo.LoadXml(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L207C13-L282C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L207C13-L282C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.SignedInfo.AddReference(System.Security.Cryptography.Xml.Reference)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L286C13-L293C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L286C13-L293C10" }, { "DocsId": "P:System.Security.Cryptography.Xml.SignedInfo.Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L46C19-L46C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L46C19-L46C53" }, { "DocsId": "P:System.Security.Cryptography.Xml.SignedInfo.IsReadOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L51C19-L51C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L51C19-L51C53" }, { "DocsId": "P:System.Security.Cryptography.Xml.SignedInfo.IsSynchronized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L56C19-L56C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L56C19-L56C53" }, { "DocsId": "P:System.Security.Cryptography.Xml.SignedInfo.SyncRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L61C19-L61C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L61C19-L61C53" }, { "DocsId": "P:System.Security.Cryptography.Xml.SignedInfo.Id", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L70C19-L70C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L70C19-L70C30" }, { "DocsId": "P:System.Security.Cryptography.Xml.SignedInfo.CanonicalizationMethod", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L84C17-L86C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L84C17-L86C48" }, { "DocsId": "P:System.Security.Cryptography.Xml.SignedInfo.CanonicalizationMethodObject", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L99C17-L107C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L99C17-L107C57" }, { "DocsId": "P:System.Security.Cryptography.Xml.SignedInfo.SignatureMethod", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L113C19-L113C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L113C19-L113C43" }, { "DocsId": "P:System.Security.Cryptography.Xml.SignedInfo.SignatureLength", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L123C19-L123C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L123C19-L123C43" }, { "DocsId": "P:System.Security.Cryptography.Xml.SignedInfo.References", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L133C19-L133C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs#L133C19-L133C38" } ], "DocsId": "T:System.Security.Cryptography.Xml.SignedInfo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedInfo.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.SignedXml.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L33C9-L95C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L33C9-L95C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.SignedXml.#ctor(System.Xml.XmlDocument)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L33C9-L107C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L33C9-L107C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.SignedXml.#ctor(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L33C9-L119C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L33C9-L119C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.SignedXml.GetXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L224C13-L227C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L224C13-L227C45" }, { "DocsId": "M:System.Security.Cryptography.Xml.SignedXml.LoadXml(System.Xml.XmlElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L234C13-L244C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L234C13-L244C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.SignedXml.AddReference(System.Security.Cryptography.Xml.Reference)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L252C13-L253C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L252C13-L253C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.SignedXml.AddObject(System.Security.Cryptography.Xml.DataObject)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L257C13-L258C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L257C13-L258C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.SignedXml.CheckSignature", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L262C13-L262C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L262C13-L262C54" }, { "DocsId": "M:System.Security.Cryptography.Xml.SignedXml.CheckSignatureReturningKey(System.Security.Cryptography.AsymmetricAlgorithm@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L267C13-L289C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L267C13-L289C25" }, { "DocsId": "M:System.Security.Cryptography.Xml.SignedXml.CheckSignature(System.Security.Cryptography.AsymmetricAlgorithm)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L294C13-L313C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L294C13-L313C25" }, { "DocsId": "M:System.Security.Cryptography.Xml.SignedXml.CheckSignature(System.Security.Cryptography.KeyedHashAlgorithm)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L318C13-L336C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L318C13-L336C25" }, { "DocsId": "M:System.Security.Cryptography.Xml.SignedXml.CheckSignature(System.Security.Cryptography.X509Certificates.X509Certificate2,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L341C13-L387C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L341C13-L387C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.SignedXml.ComputeSignature", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L392C13-L436C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L392C13-L436C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.SignedXml.ComputeSignature(System.Security.Cryptography.KeyedHashAlgorithm)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L440C13-L476C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L440C13-L476C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.SignedXml.GetPublicKey", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L484C13-L520C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L484C13-L520C25" }, { "DocsId": "M:System.Security.Cryptography.Xml.SignedXml.GetIdElement(System.Xml.XmlDocument,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L554C13-L554C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L554C13-L554C59" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.m_signature", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.m_strSigningKeyName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlDsigNamespaceUrl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlDsigMinimalCanonicalizationUrl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlDsigCanonicalizationUrl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlDsigCanonicalizationWithCommentsUrl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlDsigSHA1Url", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlDsigDSAUrl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlDsigRSASHA1Url", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlDsigHMACSHA1Url", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlDsigSHA256Url", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlDsigRSASHA256Url", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlDsigSHA384Url", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlDsigRSASHA384Url", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlDsigSHA512Url", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlDsigRSASHA512Url", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlDsigC14NTransformUrl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlDsigC14NWithCommentsTransformUrl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlDsigExcC14NTransformUrl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlDsigExcC14NWithCommentsTransformUrl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlDsigBase64TransformUrl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlDsigXPathTransformUrl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlDsigXsltTransformUrl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlDsigEnvelopedSignatureTransformUrl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlDecryptionTransformUrl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "F:System.Security.Cryptography.Xml.SignedXml.XmlLicenseTransformUrl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "DocsId": "P:System.Security.Cryptography.Xml.SignedXml.SigningKeyName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L144C19-L144C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L144C19-L144C46" }, { "DocsId": "P:System.Security.Cryptography.Xml.SignedXml.Resolver", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L154C17-L156C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L154C17-L156C14" }, { "DocsId": "P:System.Security.Cryptography.Xml.SignedXml.SignatureFormatValidator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L166C19-L166C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L166C19-L166C52" }, { "DocsId": "P:System.Security.Cryptography.Xml.SignedXml.SafeCanonicalizationMethods", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L172C19-L172C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L172C19-L172C55" }, { "DocsId": "P:System.Security.Cryptography.Xml.SignedXml.SigningKey", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L177C19-L177C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L177C19-L177C38" }, { "DocsId": "P:System.Security.Cryptography.Xml.SignedXml.EncryptedXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L186C20-L186C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L186C20-L186C68" }, { "DocsId": "P:System.Security.Cryptography.Xml.SignedXml.Signature", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L192C19-L192C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L192C19-L192C38" }, { "DocsId": "P:System.Security.Cryptography.Xml.SignedXml.SignedInfo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L197C19-L197C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L197C19-L197C49" }, { "DocsId": "P:System.Security.Cryptography.Xml.SignedXml.SignatureMethod", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L202C19-L202C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L202C19-L202C66" }, { "DocsId": "P:System.Security.Cryptography.Xml.SignedXml.SignatureLength", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L207C19-L207C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L207C19-L207C66" }, { "DocsId": "P:System.Security.Cryptography.Xml.SignedXml.SignatureValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L212C19-L212C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L212C19-L212C53" }, { "DocsId": "P:System.Security.Cryptography.Xml.SignedXml.KeyInfo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L217C19-L217C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs#L217C19-L217C46" } ], "DocsId": "T:System.Security.Cryptography.Xml.SignedXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/SignedXml.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.Transform.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs#L56C9-L56C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs#L56C9-L56C34" }, { "DocsId": "M:System.Security.Cryptography.Xml.Transform.GetXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs#L118C13-L120C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs#L118C13-L120C37" }, { "DocsId": "M:System.Security.Cryptography.Xml.Transform.LoadInnerXml(System.Xml.XmlNodeList)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs" }, { "DocsId": "M:System.Security.Cryptography.Xml.Transform.GetInnerXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs" }, { "DocsId": "M:System.Security.Cryptography.Xml.Transform.LoadInput(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs" }, { "DocsId": "M:System.Security.Cryptography.Xml.Transform.GetOutput", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs" }, { "DocsId": "M:System.Security.Cryptography.Xml.Transform.GetOutput(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs" }, { "DocsId": "M:System.Security.Cryptography.Xml.Transform.GetDigestedOutput(System.Security.Cryptography.HashAlgorithm)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs#L156C13-L156C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs#L156C13-L156C72" }, { "DocsId": "P:System.Security.Cryptography.Xml.Transform.Algorithm", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs#L64C19-L64C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs#L64C19-L64C37" }, { "DocsId": "P:System.Security.Cryptography.Xml.Transform.InputTypes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs" }, { "DocsId": "P:System.Security.Cryptography.Xml.Transform.OutputTypes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs" }, { "DocsId": "P:System.Security.Cryptography.Xml.Transform.Context", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs#L163C17-L171C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs#L163C17-L171C43" }, { "DocsId": "P:System.Security.Cryptography.Xml.Transform.PropagatedNamespaces", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs#L183C17-L218C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs#L183C17-L218C46" } ], "DocsId": "T:System.Security.Cryptography.Xml.Transform", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Transform.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.TransformChain.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/TransformChain.cs#L29C9-L32C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/TransformChain.cs#L29C9-L32C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.TransformChain.Add(System.Security.Cryptography.Xml.Transform)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/TransformChain.cs#L36C13-L38C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/TransformChain.cs#L36C13-L38C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.TransformChain.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/TransformChain.cs#L42C13-L42C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/TransformChain.cs#L42C13-L42C48" }, { "DocsId": "P:System.Security.Cryptography.Xml.TransformChain.Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/TransformChain.cs#L47C19-L47C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/TransformChain.cs#L47C19-L47C44" }, { "DocsId": "P:System.Security.Cryptography.Xml.TransformChain.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/TransformChain.cs#L54C17-L56C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/TransformChain.cs#L54C17-L56C55" } ], "DocsId": "T:System.Security.Cryptography.Xml.TransformChain", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/TransformChain.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/TransformChain.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.XmlDecryptionTransform.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs#L18C9-L35C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs#L18C9-L35C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDecryptionTransform.IsTargetElement(System.Xml.XmlElement,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs#L41C13-L47C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs#L41C13-L47C26" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDecryptionTransform.AddExceptUri(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs#L81C13-L87C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs#L81C13-L87C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDecryptionTransform.LoadInnerXml(System.Xml.XmlNodeList)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs#L91C13-L118C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs#L91C13-L118C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDecryptionTransform.GetInnerXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs#L122C13-L134C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs#L122C13-L134C39" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDecryptionTransform.LoadInput(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs#L139C13-L147C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs#L139C13-L147C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDecryptionTransform.GetOutput", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs#L266C13-L270C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs#L266C13-L270C40" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDecryptionTransform.GetOutput(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs#L275C13-L278C108" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs#L275C13-L278C108" }, { "DocsId": "P:System.Security.Cryptography.Xml.XmlDecryptionTransform.EncryptedXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs#L54C17-L64C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs#L54C17-L64C30" }, { "DocsId": "P:System.Security.Cryptography.Xml.XmlDecryptionTransform.InputTypes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs#L71C19-L71C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs#L71C19-L71C38" }, { "DocsId": "P:System.Security.Cryptography.Xml.XmlDecryptionTransform.OutputTypes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs#L76C19-L76C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs#L76C19-L76C39" } ], "DocsId": "T:System.Security.Cryptography.Xml.XmlDecryptionTransform", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDecryptionTransform.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigBase64Transform.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigBase64Transform.cs#L13C9-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigBase64Transform.cs#L13C9-L20C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigBase64Transform.LoadInnerXml(System.Xml.XmlNodeList)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigBase64Transform.cs#L34C9-L34C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigBase64Transform.cs#L34C9-L34C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigBase64Transform.GetInnerXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigBase64Transform.cs#L38C13-L38C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigBase64Transform.cs#L38C13-L38C25" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigBase64Transform.LoadInput(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigBase64Transform.cs#L43C13-L58C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigBase64Transform.cs#L43C13-L58C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigBase64Transform.GetOutput", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigBase64Transform.cs#L121C13-L121C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigBase64Transform.cs#L121C13-L121C25" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigBase64Transform.GetOutput(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigBase64Transform.cs#L126C13-L128C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigBase64Transform.cs#L126C13-L128C25" }, { "DocsId": "P:System.Security.Cryptography.Xml.XmlDsigBase64Transform.InputTypes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigBase64Transform.cs#L24C19-L24C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigBase64Transform.cs#L24C19-L24C38" }, { "DocsId": "P:System.Security.Cryptography.Xml.XmlDsigBase64Transform.OutputTypes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigBase64Transform.cs#L29C19-L29C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigBase64Transform.cs#L29C19-L29C39" } ], "DocsId": "T:System.Security.Cryptography.Xml.XmlDsigBase64Transform", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigBase64Transform.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigBase64Transform.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigC14NTransform.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NTransform.cs#L11C9-L19C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NTransform.cs#L11C9-L19C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigC14NTransform.#ctor(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NTransform.cs#L11C9-L25C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NTransform.cs#L11C9-L25C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigC14NTransform.LoadInnerXml(System.Xml.XmlNodeList)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NTransform.cs#L39C13-L41C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NTransform.cs#L39C13-L41C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigC14NTransform.GetInnerXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NTransform.cs#L45C13-L45C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NTransform.cs#L45C13-L45C25" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigC14NTransform.LoadInput(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NTransform.cs#L50C13-L67C99" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NTransform.cs#L50C13-L67C99" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigC14NTransform.GetOutput", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NTransform.cs#L73C13-L73C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NTransform.cs#L73C13-L73C56" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigC14NTransform.GetOutput(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NTransform.cs#L78C13-L80C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NTransform.cs#L78C13-L80C56" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigC14NTransform.GetDigestedOutput(System.Security.Cryptography.HashAlgorithm)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NTransform.cs#L85C13-L85C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NTransform.cs#L85C13-L85C50" }, { "DocsId": "P:System.Security.Cryptography.Xml.XmlDsigC14NTransform.InputTypes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NTransform.cs#L29C19-L29C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NTransform.cs#L29C19-L29C38" }, { "DocsId": "P:System.Security.Cryptography.Xml.XmlDsigC14NTransform.OutputTypes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NTransform.cs#L34C19-L34C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NTransform.cs#L34C19-L34C39" } ], "DocsId": "T:System.Security.Cryptography.Xml.XmlDsigC14NTransform", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NTransform.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NTransform.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigC14NWithCommentsTransform.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NWithCommentsTransform.cs#L9C15-L12C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NWithCommentsTransform.cs#L9C15-L12C10" } ], "DocsId": "T:System.Security.Cryptography.Xml.XmlDsigC14NWithCommentsTransform", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NWithCommentsTransform.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigC14NWithCommentsTransform.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigEnvelopedSignatureTransform.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigEnvelopedSignatureTransform.cs#L11C9-L27C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigEnvelopedSignatureTransform.cs#L11C9-L27C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigEnvelopedSignatureTransform.#ctor(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigEnvelopedSignatureTransform.cs#L11C9-L34C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigEnvelopedSignatureTransform.cs#L11C9-L34C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigEnvelopedSignatureTransform.LoadInnerXml(System.Xml.XmlNodeList)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigEnvelopedSignatureTransform.cs#L49C13-L51C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigEnvelopedSignatureTransform.cs#L49C13-L51C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigEnvelopedSignatureTransform.GetInnerXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigEnvelopedSignatureTransform.cs#L56C13-L56C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigEnvelopedSignatureTransform.cs#L56C13-L56C25" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigEnvelopedSignatureTransform.LoadInput(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigEnvelopedSignatureTransform.cs#L61C13-L76C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigEnvelopedSignatureTransform.cs#L61C13-L76C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigEnvelopedSignatureTransform.GetOutput", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigEnvelopedSignatureTransform.cs#L122C13-L174C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigEnvelopedSignatureTransform.cs#L122C13-L174C44" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigEnvelopedSignatureTransform.GetOutput(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigEnvelopedSignatureTransform.cs#L180C13-L192C108" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigEnvelopedSignatureTransform.cs#L180C13-L192C108" }, { "DocsId": "P:System.Security.Cryptography.Xml.XmlDsigEnvelopedSignatureTransform.InputTypes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigEnvelopedSignatureTransform.cs#L38C19-L38C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigEnvelopedSignatureTransform.cs#L38C19-L38C38" }, { "DocsId": "P:System.Security.Cryptography.Xml.XmlDsigEnvelopedSignatureTransform.OutputTypes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigEnvelopedSignatureTransform.cs#L43C19-L43C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigEnvelopedSignatureTransform.cs#L43C19-L43C39" } ], "DocsId": "T:System.Security.Cryptography.Xml.XmlDsigEnvelopedSignatureTransform", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigEnvelopedSignatureTransform.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigEnvelopedSignatureTransform.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigExcC14NTransform.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L17C44-L17C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L17C44-L17C65" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigExcC14NTransform.#ctor(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L19C64-L19C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L19C64-L19C95" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigExcC14NTransform.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L21C80-L21C126" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L21C80-L21C126" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigExcC14NTransform.#ctor(System.Boolean,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L11C9-L28C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L11C9-L28C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigExcC14NTransform.LoadInnerXml(System.Xml.XmlNodeList)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L48C13-L73C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L48C13-L73C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigExcC14NTransform.LoadInput(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L77C13-L91C99" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L77C13-L91C99" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigExcC14NTransform.GetInnerXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L96C13-L105C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L96C13-L105C39" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigExcC14NTransform.GetOutput", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L110C13-L110C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L110C13-L110C67" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigExcC14NTransform.GetOutput(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L115C13-L117C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L115C13-L117C67" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigExcC14NTransform.GetDigestedOutput(System.Security.Cryptography.HashAlgorithm)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L122C13-L122C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L122C13-L122C61" }, { "DocsId": "P:System.Security.Cryptography.Xml.XmlDsigExcC14NTransform.InclusiveNamespacesPrefixList", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L32C19-L32C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L32C19-L32C57" }, { "DocsId": "P:System.Security.Cryptography.Xml.XmlDsigExcC14NTransform.InputTypes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L38C19-L38C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L38C19-L38C38" }, { "DocsId": "P:System.Security.Cryptography.Xml.XmlDsigExcC14NTransform.OutputTypes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L43C19-L43C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs#L43C19-L43C39" } ], "DocsId": "T:System.Security.Cryptography.Xml.XmlDsigExcC14NTransform", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NTransform.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigExcC14NWithCommentsTransform.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NWithCommentsTransform.cs#L12C56-L15C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NWithCommentsTransform.cs#L12C56-L15C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigExcC14NWithCommentsTransform.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NWithCommentsTransform.cs#L17C92-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NWithCommentsTransform.cs#L17C92-L20C10" } ], "DocsId": "T:System.Security.Cryptography.Xml.XmlDsigExcC14NWithCommentsTransform", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NWithCommentsTransform.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigExcC14NWithCommentsTransform.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigXPathTransform.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXPathTransform.cs#L14C9-L23C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXPathTransform.cs#L14C9-L23C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigXPathTransform.LoadInnerXml(System.Xml.XmlNodeList)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXPathTransform.cs#L38C13-L84C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXPathTransform.cs#L38C13-L84C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigXPathTransform.GetInnerXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXPathTransform.cs#L88C13-L115C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXPathTransform.cs#L88C13-L115C40" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigXPathTransform.LoadInput(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXPathTransform.cs#L120C13-L132C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXPathTransform.cs#L120C13-L132C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigXPathTransform.GetOutput", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXPathTransform.cs#L161C13-L188C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXPathTransform.cs#L161C13-L188C35" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigXPathTransform.GetOutput(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXPathTransform.cs#L193C13-L195C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXPathTransform.cs#L193C13-L195C45" }, { "DocsId": "P:System.Security.Cryptography.Xml.XmlDsigXPathTransform.InputTypes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXPathTransform.cs#L27C19-L27C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXPathTransform.cs#L27C19-L27C38" }, { "DocsId": "P:System.Security.Cryptography.Xml.XmlDsigXPathTransform.OutputTypes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXPathTransform.cs#L32C19-L32C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXPathTransform.cs#L32C19-L32C39" } ], "DocsId": "T:System.Security.Cryptography.Xml.XmlDsigXPathTransform", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXPathTransform.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXPathTransform.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigXsltTransform.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXsltTransform.cs#L15C9-L25C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXsltTransform.cs#L15C9-L25C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigXsltTransform.#ctor(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXsltTransform.cs#L15C9-L31C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXsltTransform.cs#L15C9-L31C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigXsltTransform.LoadInnerXml(System.Xml.XmlNodeList)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXsltTransform.cs#L51C13-L75C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXsltTransform.cs#L51C13-L75C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigXsltTransform.GetInnerXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXsltTransform.cs#L79C13-L79C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXsltTransform.cs#L79C13-L79C30" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigXsltTransform.LoadInput(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXsltTransform.cs#L84C13-L108C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXsltTransform.cs#L84C13-L108C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigXsltTransform.GetOutput", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXsltTransform.cs#L118C13-L141C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXsltTransform.cs#L118C13-L141C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlDsigXsltTransform.GetOutput(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXsltTransform.cs#L145C13-L147C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXsltTransform.cs#L145C13-L147C40" }, { "DocsId": "P:System.Security.Cryptography.Xml.XmlDsigXsltTransform.InputTypes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXsltTransform.cs#L37C17-L37C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXsltTransform.cs#L37C17-L37C36" }, { "DocsId": "P:System.Security.Cryptography.Xml.XmlDsigXsltTransform.OutputTypes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXsltTransform.cs#L45C17-L45C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXsltTransform.cs#L45C17-L45C37" } ], "DocsId": "T:System.Security.Cryptography.Xml.XmlDsigXsltTransform", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXsltTransform.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlDsigXsltTransform.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.Xml.XmlLicenseTransform.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlLicenseTransform.cs#L14C9-L30C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlLicenseTransform.cs#L14C9-L30C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlLicenseTransform.GetInnerXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlLicenseTransform.cs#L106C13-L106C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlLicenseTransform.cs#L106C13-L106C25" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlLicenseTransform.GetOutput", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlLicenseTransform.cs#L111C13-L111C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlLicenseTransform.cs#L111C13-L111C30" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlLicenseTransform.GetOutput(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlLicenseTransform.cs#L116C13-L119C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlLicenseTransform.cs#L116C13-L119C32" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlLicenseTransform.LoadInnerXml(System.Xml.XmlNodeList)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlLicenseTransform.cs#L125C13-L127C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlLicenseTransform.cs#L125C13-L127C10" }, { "DocsId": "M:System.Security.Cryptography.Xml.XmlLicenseTransform.LoadInput(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlLicenseTransform.cs#L132C13-L183C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlLicenseTransform.cs#L132C13-L183C10" }, { "DocsId": "P:System.Security.Cryptography.Xml.XmlLicenseTransform.InputTypes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlLicenseTransform.cs#L34C19-L34C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlLicenseTransform.cs#L34C19-L34C38" }, { "DocsId": "P:System.Security.Cryptography.Xml.XmlLicenseTransform.OutputTypes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlLicenseTransform.cs#L39C19-L39C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlLicenseTransform.cs#L39C19-L39C39" }, { "DocsId": "P:System.Security.Cryptography.Xml.XmlLicenseTransform.Decryptor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlLicenseTransform.cs#L44C19-L44C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlLicenseTransform.cs#L44C19-L44C40" } ], "DocsId": "T:System.Security.Cryptography.Xml.XmlLicenseTransform", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlLicenseTransform.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/XmlLicenseTransform.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/System.Security.Permissions.json b/xml/SourceLinkInformation/net-9.0/System.Security.Permissions.json index 8c4b2ea257a..59a675f908c 100644 --- a/xml/SourceLinkInformation/net-9.0/System.Security.Permissions.json +++ b/xml/SourceLinkInformation/net-9.0/System.Security.Permissions.json @@ -1,6613 +1,6612 @@ { "Assembly": "System.Security.Permissions", - "GUID": "73B9F9D791754667901B9912EB37A6B3FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "B1EC74D4FEA64E239EF953C90DF0A865FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:System.ApplicationIdentity.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/ApplicationIdentity.cs#L12C9-L12C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/ApplicationIdentity.cs#L12C9-L12C75" }, { "DocsId": "M:System.ApplicationIdentity.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/ApplicationIdentity.cs#L15C45-L15C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/ApplicationIdentity.cs#L15C45-L15C57" }, { "DocsId": "M:System.ApplicationIdentity.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/ApplicationIdentity.cs#L18C13-L18C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/ApplicationIdentity.cs#L18C13-L18C55" }, { "DocsId": "P:System.ApplicationIdentity.FullName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/ApplicationIdentity.cs#L13C40-L13C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/ApplicationIdentity.cs#L13C40-L13C52" }, { "DocsId": "P:System.ApplicationIdentity.CodeBase", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/ApplicationIdentity.cs#L14C40-L14C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/ApplicationIdentity.cs#L14C40-L14C52" } ], "DocsId": "T:System.ApplicationIdentity", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/ApplicationIdentity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/ApplicationIdentity.cs" }, { "Members": [ { "DocsId": "M:System.Xaml.Permissions.XamlLoadPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Xaml/Permissions/XamlLoadPermission.cs#L26C77-L18C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Xaml/Permissions/XamlLoadPermission.cs#L26C64-L18C61" }, { "DocsId": "M:System.Xaml.Permissions.XamlLoadPermission.#ctor(System.Xaml.Permissions.XamlAccessLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Xaml/Permissions/XamlLoadPermission.cs#L26C77-L19C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Xaml/Permissions/XamlLoadPermission.cs#L26C64-L19C69" }, { "DocsId": "M:System.Xaml.Permissions.XamlLoadPermission.#ctor(System.Collections.Generic.IEnumerable{System.Xaml.Permissions.XamlAccessLevel})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Xaml/Permissions/XamlLoadPermission.cs#L26C77-L20C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Xaml/Permissions/XamlLoadPermission.cs#L26C64-L20C82" }, { "DocsId": "M:System.Xaml.Permissions.XamlLoadPermission.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Xaml/Permissions/XamlLoadPermission.cs#L22C51-L22C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Xaml/Permissions/XamlLoadPermission.cs#L22C51-L22C85" }, { "DocsId": "M:System.Xaml.Permissions.XamlLoadPermission.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Xaml/Permissions/XamlLoadPermission.cs#L24C45-L24C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Xaml/Permissions/XamlLoadPermission.cs#L24C45-L24C71" }, { "DocsId": "M:System.Xaml.Permissions.XamlLoadPermission.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Xaml/Permissions/XamlLoadPermission.cs#L27C46-L27C106" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Xaml/Permissions/XamlLoadPermission.cs#L27C46-L27C106" }, { "DocsId": "M:System.Xaml.Permissions.XamlLoadPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Xaml/Permissions/XamlLoadPermission.cs#L28C62-L28C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Xaml/Permissions/XamlLoadPermission.cs#L28C62-L28C63" }, { "DocsId": "M:System.Xaml.Permissions.XamlLoadPermission.Includes(System.Xaml.Permissions.XamlAccessLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Xaml/Permissions/XamlLoadPermission.cs#L29C65-L29C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Xaml/Permissions/XamlLoadPermission.cs#L29C65-L29C77" }, { "DocsId": "M:System.Xaml.Permissions.XamlLoadPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Xaml/Permissions/XamlLoadPermission.cs#L30C69-L30C129" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Xaml/Permissions/XamlLoadPermission.cs#L30C69-L30C129" }, { "DocsId": "M:System.Xaml.Permissions.XamlLoadPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Xaml/Permissions/XamlLoadPermission.cs#L31C63-L31C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Xaml/Permissions/XamlLoadPermission.cs#L31C63-L31C75" }, { "DocsId": "M:System.Xaml.Permissions.XamlLoadPermission.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Xaml/Permissions/XamlLoadPermission.cs#L32C51-L32C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Xaml/Permissions/XamlLoadPermission.cs#L32C51-L32C83" }, { "DocsId": "M:System.Xaml.Permissions.XamlLoadPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Xaml/Permissions/XamlLoadPermission.cs#L33C64-L33C124" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Xaml/Permissions/XamlLoadPermission.cs#L33C64-L33C124" }, { "DocsId": "M:System.Xaml.Permissions.XamlLoadPermission.IsUnrestricted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Xaml/Permissions/XamlLoadPermission.cs#L34C40-L34C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Xaml/Permissions/XamlLoadPermission.cs#L34C40-L34C52" }, { "DocsId": "P:System.Xaml.Permissions.XamlLoadPermission.AllowedAccess", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Xaml/Permissions/XamlLoadPermission.cs#L26C55-L26C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Xaml/Permissions/XamlLoadPermission.cs#L26C55-L26C59" } ], "DocsId": "T:System.Xaml.Permissions.XamlLoadPermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Xaml/Permissions/XamlLoadPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Xaml/Permissions/XamlLoadPermission.cs" }, { "Members": [ { "DocsId": "M:System.Web.AspNetHostingPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermission.cs#L14C9-L14C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermission.cs#L14C9-L14C66" }, { "DocsId": "M:System.Web.AspNetHostingPermission.#ctor(System.Web.AspNetHostingPermissionLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermission.cs#L15C9-L15C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermission.cs#L15C9-L15C79" }, { "DocsId": "M:System.Web.AspNetHostingPermission.IsUnrestricted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermission.cs#L17C41-L17C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermission.cs#L17C41-L17C46" }, { "DocsId": "M:System.Web.AspNetHostingPermission.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermission.cs#L18C46-L18C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermission.cs#L18C46-L18C58" }, { "DocsId": "M:System.Web.AspNetHostingPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermission.cs#L19C65-L19C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermission.cs#L19C65-L19C77" }, { "DocsId": "M:System.Web.AspNetHostingPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermission.cs#L20C69-L20C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermission.cs#L20C69-L20C81" }, { "DocsId": "M:System.Web.AspNetHostingPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermission.cs#L21C64-L21C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermission.cs#L21C64-L21C69" }, { "DocsId": "M:System.Web.AspNetHostingPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermission.cs#L22C73-L22C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermission.cs#L22C73-L22C74" }, { "DocsId": "M:System.Web.AspNetHostingPermission.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermission.cs#L23C51-L23C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermission.cs#L23C51-L23C63" }, { "DocsId": "P:System.Web.AspNetHostingPermission.Level", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermission.cs#L16C53-L16C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermission.cs#L16C53-L16C57" } ], "DocsId": "T:System.Web.AspNetHostingPermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermission.cs" }, { "Members": [ { "DocsId": "M:System.Web.AspNetHostingPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermissionAttribute.cs#L15C74-L15C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermissionAttribute.cs#L15C74-L15C90" }, { "DocsId": "M:System.Web.AspNetHostingPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermissionAttribute.cs#L17C58-L17C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermissionAttribute.cs#L17C58-L17C70" }, { "DocsId": "P:System.Web.AspNetHostingPermissionAttribute.Level", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermissionAttribute.cs#L16C53-L16C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermissionAttribute.cs#L16C53-L16C57" } ], "DocsId": "T:System.Web.AspNetHostingPermissionAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermissionAttribute.cs" }, { "Members": [ { "DocsId": "F:System.Web.AspNetHostingPermissionLevel.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermissionLevel.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermissionLevel.cs" }, { "DocsId": "F:System.Web.AspNetHostingPermissionLevel.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermissionLevel.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermissionLevel.cs" }, { "DocsId": "F:System.Web.AspNetHostingPermissionLevel.Minimal", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermissionLevel.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermissionLevel.cs" }, { "DocsId": "F:System.Web.AspNetHostingPermissionLevel.Low", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermissionLevel.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermissionLevel.cs" }, { "DocsId": "F:System.Web.AspNetHostingPermissionLevel.Medium", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermissionLevel.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermissionLevel.cs" }, { "DocsId": "F:System.Web.AspNetHostingPermissionLevel.High", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermissionLevel.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermissionLevel.cs" }, { "DocsId": "F:System.Web.AspNetHostingPermissionLevel.Unrestricted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermissionLevel.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermissionLevel.cs" } ], "DocsId": "T:System.Web.AspNetHostingPermissionLevel", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermissionLevel.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Web/AspNetHostingPermissionLevel.cs" }, { "Members": [ { "DocsId": "M:System.Transactions.DistributedTransactionPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Transactions/DistributedTransactionPermission.cs#L14C9-L14C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Transactions/DistributedTransactionPermission.cs#L14C9-L14C75" }, { "DocsId": "M:System.Transactions.DistributedTransactionPermission.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Transactions/DistributedTransactionPermission.cs#L15C46-L15C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Transactions/DistributedTransactionPermission.cs#L15C46-L15C58" }, { "DocsId": "M:System.Transactions.DistributedTransactionPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Transactions/DistributedTransactionPermission.cs#L16C73-L16C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Transactions/DistributedTransactionPermission.cs#L16C73-L16C74" }, { "DocsId": "M:System.Transactions.DistributedTransactionPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Transactions/DistributedTransactionPermission.cs#L17C69-L17C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Transactions/DistributedTransactionPermission.cs#L17C69-L17C81" }, { "DocsId": "M:System.Transactions.DistributedTransactionPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Transactions/DistributedTransactionPermission.cs#L18C64-L18C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Transactions/DistributedTransactionPermission.cs#L18C64-L18C69" }, { "DocsId": "M:System.Transactions.DistributedTransactionPermission.IsUnrestricted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Transactions/DistributedTransactionPermission.cs#L19C41-L19C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Transactions/DistributedTransactionPermission.cs#L19C41-L19C46" }, { "DocsId": "M:System.Transactions.DistributedTransactionPermission.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Transactions/DistributedTransactionPermission.cs#L20C51-L20C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Transactions/DistributedTransactionPermission.cs#L20C51-L20C63" }, { "DocsId": "M:System.Transactions.DistributedTransactionPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Transactions/DistributedTransactionPermission.cs#L21C65-L21C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Transactions/DistributedTransactionPermission.cs#L21C65-L21C77" } ], "DocsId": "T:System.Transactions.DistributedTransactionPermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Transactions/DistributedTransactionPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Transactions/DistributedTransactionPermission.cs" }, { "Members": [ { "DocsId": "M:System.Transactions.DistributedTransactionPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Transactions/DistributedTransactionPermissionAttribute.cs#L15C83-L15C99" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Transactions/DistributedTransactionPermissionAttribute.cs#L15C83-L15C99" }, { "DocsId": "M:System.Transactions.DistributedTransactionPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Transactions/DistributedTransactionPermissionAttribute.cs#L17C58-L17C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Transactions/DistributedTransactionPermissionAttribute.cs#L17C58-L17C70" }, { "DocsId": "P:System.Transactions.DistributedTransactionPermissionAttribute.Unrestricted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Transactions/DistributedTransactionPermissionAttribute.cs#L16C40-L16C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Transactions/DistributedTransactionPermissionAttribute.cs#L16C40-L16C44" } ], "DocsId": "T:System.Transactions.DistributedTransactionPermissionAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Transactions/DistributedTransactionPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Transactions/DistributedTransactionPermissionAttribute.cs" }, { "Members": [ { "DocsId": "M:System.ServiceProcess.ServiceControllerPermission.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermission.cs#L13C9-L13C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermission.cs#L13C9-L13C49" }, { "DocsId": "M:System.ServiceProcess.ServiceControllerPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermission.cs#L14C69-L14C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermission.cs#L14C69-L14C84" }, { "DocsId": "M:System.ServiceProcess.ServiceControllerPermission.#ctor(System.ServiceProcess.ServiceControllerPermissionAccess,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermission.cs#L15C9-L15C139" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermission.cs#L15C9-L15C139" }, { "DocsId": "M:System.ServiceProcess.ServiceControllerPermission.#ctor(System.ServiceProcess.ServiceControllerPermissionEntry[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermission.cs#L16C9-L16C107" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermission.cs#L16C9-L16C107" }, { "DocsId": "P:System.ServiceProcess.ServiceControllerPermission.PermissionEntries", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermission.cs#L17C86-L17C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermission.cs#L17C86-L17C90" } ], "DocsId": "T:System.ServiceProcess.ServiceControllerPermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermission.cs" }, { "Members": [ { "DocsId": "F:System.ServiceProcess.ServiceControllerPermissionAccess.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionAccess.cs" }, { "DocsId": "F:System.ServiceProcess.ServiceControllerPermissionAccess.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionAccess.cs" }, { "DocsId": "F:System.ServiceProcess.ServiceControllerPermissionAccess.Browse", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionAccess.cs" }, { "DocsId": "F:System.ServiceProcess.ServiceControllerPermissionAccess.Control", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionAccess.cs" } ], "DocsId": "T:System.ServiceProcess.ServiceControllerPermissionAccess", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionAccess.cs" }, { "Members": [ { "DocsId": "M:System.ServiceProcess.ServiceControllerPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionAttribute.cs#L15C78-L15C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionAttribute.cs#L15C78-L15C94" }, { "DocsId": "M:System.ServiceProcess.ServiceControllerPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionAttribute.cs#L19C58-L19C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionAttribute.cs#L19C58-L19C86" }, { "DocsId": "P:System.ServiceProcess.ServiceControllerPermissionAttribute.MachineName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionAttribute.cs#L16C44-L16C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionAttribute.cs#L16C44-L16C48" }, { "DocsId": "P:System.ServiceProcess.ServiceControllerPermissionAttribute.PermissionAccess", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionAttribute.cs#L17C76-L17C118" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionAttribute.cs#L17C76-L17C118" }, { "DocsId": "P:System.ServiceProcess.ServiceControllerPermissionAttribute.ServiceName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionAttribute.cs#L18C44-L18C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionAttribute.cs#L18C44-L18C48" } ], "DocsId": "T:System.ServiceProcess.ServiceControllerPermissionAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionAttribute.cs" }, { "Members": [ { "DocsId": "M:System.ServiceProcess.ServiceControllerPermissionEntry.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntry.cs#L8C9-L8C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntry.cs#L8C9-L8C54" }, { "DocsId": "M:System.ServiceProcess.ServiceControllerPermissionEntry.#ctor(System.ServiceProcess.ServiceControllerPermissionAccess,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntry.cs#L9C9-L9C144" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntry.cs#L9C9-L9C144" }, { "DocsId": "P:System.ServiceProcess.ServiceControllerPermissionEntry.MachineName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntry.cs#L10C44-L10C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntry.cs#L10C44-L10C48" }, { "DocsId": "P:System.ServiceProcess.ServiceControllerPermissionEntry.PermissionAccess", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntry.cs#L11C76-L11C118" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntry.cs#L11C76-L11C118" }, { "DocsId": "P:System.ServiceProcess.ServiceControllerPermissionEntry.ServiceName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntry.cs#L12C44-L12C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntry.cs#L12C44-L12C48" } ], "DocsId": "T:System.ServiceProcess.ServiceControllerPermissionEntry", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntry.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntry.cs" }, { "Members": [ { "DocsId": "M:System.ServiceProcess.ServiceControllerPermissionEntryCollection.Add(System.ServiceProcess.ServiceControllerPermissionEntry)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntryCollection.cs#L12C66-L12C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntryCollection.cs#L12C66-L12C75" }, { "DocsId": "M:System.ServiceProcess.ServiceControllerPermissionEntryCollection.AddRange(System.ServiceProcess.ServiceControllerPermissionEntry[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntryCollection.cs#L13C74-L13C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntryCollection.cs#L13C74-L13C75" }, { "DocsId": "M:System.ServiceProcess.ServiceControllerPermissionEntryCollection.AddRange(System.ServiceProcess.ServiceControllerPermissionEntryCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntryCollection.cs#L14C82-L14C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntryCollection.cs#L14C82-L14C83" }, { "DocsId": "M:System.ServiceProcess.ServiceControllerPermissionEntryCollection.Contains(System.ServiceProcess.ServiceControllerPermissionEntry)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntryCollection.cs#L15C72-L15C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntryCollection.cs#L15C72-L15C85" }, { "DocsId": "M:System.ServiceProcess.ServiceControllerPermissionEntryCollection.CopyTo(System.ServiceProcess.ServiceControllerPermissionEntry[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntryCollection.cs#L16C83-L16C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntryCollection.cs#L16C83-L16C84" }, { "DocsId": "M:System.ServiceProcess.ServiceControllerPermissionEntryCollection.IndexOf(System.ServiceProcess.ServiceControllerPermissionEntry)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntryCollection.cs#L17C70-L17C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntryCollection.cs#L17C70-L17C79" }, { "DocsId": "M:System.ServiceProcess.ServiceControllerPermissionEntryCollection.Insert(System.Int32,System.ServiceProcess.ServiceControllerPermissionEntry)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntryCollection.cs#L18C81-L18C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntryCollection.cs#L18C81-L18C82" }, { "DocsId": "M:System.ServiceProcess.ServiceControllerPermissionEntryCollection.OnClear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntryCollection.cs#L19C45-L19C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntryCollection.cs#L19C45-L19C46" }, { "DocsId": "M:System.ServiceProcess.ServiceControllerPermissionEntryCollection.OnInsert(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntryCollection.cs#L20C69-L20C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntryCollection.cs#L20C69-L20C70" }, { "DocsId": "M:System.ServiceProcess.ServiceControllerPermissionEntryCollection.OnRemove(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntryCollection.cs#L21C69-L21C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntryCollection.cs#L21C69-L21C70" }, { "DocsId": "M:System.ServiceProcess.ServiceControllerPermissionEntryCollection.OnSet(System.Int32,System.Object,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntryCollection.cs#L22C86-L22C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntryCollection.cs#L22C86-L22C87" }, { "DocsId": "M:System.ServiceProcess.ServiceControllerPermissionEntryCollection.Remove(System.ServiceProcess.ServiceControllerPermissionEntry)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntryCollection.cs#L23C70-L23C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntryCollection.cs#L23C70-L23C71" }, { "DocsId": "P:System.ServiceProcess.ServiceControllerPermissionEntryCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntryCollection.cs#L11C73-L11C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntryCollection.cs#L11C73-L11C85" } ], "DocsId": "T:System.ServiceProcess.ServiceControllerPermissionEntryCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntryCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/ServiceProcess/ServiceControllerPermissionEntryCollection.cs" }, { "Members": [ { "DocsId": "M:System.Security.CodeAccessPermission.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs#L11C9-L11C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs#L11C9-L11C45" }, { "DocsId": "M:System.Security.CodeAccessPermission.Assert", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs#L12C32-L12C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs#L12C32-L12C33" }, { "DocsId": "M:System.Security.CodeAccessPermission.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs" }, { "DocsId": "M:System.Security.CodeAccessPermission.Demand", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs#L14C32-L14C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs#L14C32-L14C33" }, { "DocsId": "M:System.Security.CodeAccessPermission.Deny", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs#L16C30-L16C99" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs#L16C30-L16C99" }, { "DocsId": "M:System.Security.CodeAccessPermission.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs#L17C52-L17C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs#L17C52-L17C68" }, { "DocsId": "M:System.Security.CodeAccessPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs" }, { "DocsId": "M:System.Security.CodeAccessPermission.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs#L19C46-L19C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs#L19C46-L19C64" }, { "DocsId": "M:System.Security.CodeAccessPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs" }, { "DocsId": "M:System.Security.CodeAccessPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs" }, { "DocsId": "M:System.Security.CodeAccessPermission.PermitOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs#L22C36-L22C105" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs#L22C36-L22C105" }, { "DocsId": "M:System.Security.CodeAccessPermission.RevertAll", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs#L23C42-L23C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs#L23C42-L23C43" }, { "DocsId": "M:System.Security.CodeAccessPermission.RevertAssert", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs#L24C45-L24C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs#L24C45-L24C46" }, { "DocsId": "M:System.Security.CodeAccessPermission.RevertDeny", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs#L26C43-L26C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs#L26C43-L26C44" }, { "DocsId": "M:System.Security.CodeAccessPermission.RevertPermitOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs#L27C49-L27C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs#L27C49-L27C50" }, { "DocsId": "M:System.Security.CodeAccessPermission.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs#L28C46-L28C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs#L28C46-L28C61" }, { "DocsId": "M:System.Security.CodeAccessPermission.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs" }, { "DocsId": "M:System.Security.CodeAccessPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs#L30C63-L30C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs#L30C63-L30C91" } ], "DocsId": "T:System.Security.CodeAccessPermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/CodeAccessPermission.cs" }, { "Members": [ { "DocsId": "M:System.Security.HostProtectionException.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/HostProtectionException.cs#L22C44-L27C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/HostProtectionException.cs#L22C44-L27C10" }, { "DocsId": "M:System.Security.HostProtectionException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/HostProtectionException.cs#L29C58-L34C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/HostProtectionException.cs#L29C58-L34C10" }, { "DocsId": "M:System.Security.HostProtectionException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/HostProtectionException.cs#L36C71-L41C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/HostProtectionException.cs#L36C71-L41C10" }, { "DocsId": "M:System.Security.HostProtectionException.#ctor(System.String,System.Security.Permissions.HostProtectionResource,System.Security.Permissions.HostProtectionResource)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/HostProtectionException.cs#L44C15-L49C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/HostProtectionException.cs#L44C15-L49C10" }, { "DocsId": "M:System.Security.HostProtectionException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/HostProtectionException.cs#L56C15-L60C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/HostProtectionException.cs#L56C15-L60C10" }, { "DocsId": "M:System.Security.HostProtectionException.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/HostProtectionException.cs#L80C13-L85C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/HostProtectionException.cs#L80C13-L85C34" }, { "DocsId": "M:System.Security.HostProtectionException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/HostProtectionException.cs#L94C13-L97C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/HostProtectionException.cs#L94C13-L97C10" }, { "DocsId": "P:System.Security.HostProtectionException.DemandedResources", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/HostProtectionException.cs#L62C59-L62C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/HostProtectionException.cs#L62C59-L62C63" }, { "DocsId": "P:System.Security.HostProtectionException.ProtectedResources", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/HostProtectionException.cs#L64C60-L64C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/HostProtectionException.cs#L64C60-L64C64" } ], "DocsId": "T:System.Security.HostProtectionException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/HostProtectionException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/HostProtectionException.cs" }, { "Members": [ { "DocsId": "M:System.Security.HostSecurityManager.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManager.cs#L11C9-L11C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManager.cs#L11C9-L11C41" }, { "DocsId": "M:System.Security.HostSecurityManager.DetermineApplicationTrust(System.Security.Policy.Evidence,System.Security.Policy.Evidence,System.Security.Policy.TrustManagerContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManager.cs#L14C156-L14C189" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManager.cs#L14C156-L14C189" }, { "DocsId": "M:System.Security.HostSecurityManager.ProvideAppDomainEvidence(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManager.cs#L15C84-L15C109" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManager.cs#L15C84-L15C109" }, { "DocsId": "M:System.Security.HostSecurityManager.ProvideAssemblyEvidence(System.Reflection.Assembly,System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManager.cs#L16C126-L16C151" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManager.cs#L16C126-L16C151" }, { "DocsId": "M:System.Security.HostSecurityManager.ResolvePolicy(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManager.cs#L18C73-L18C103" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManager.cs#L18C73-L18C103" }, { "DocsId": "M:System.Security.HostSecurityManager.GenerateAppDomainEvidence(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManager.cs#L19C84-L19C96" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManager.cs#L19C84-L19C96" }, { "DocsId": "M:System.Security.HostSecurityManager.GenerateAssemblyEvidence(System.Type,System.Reflection.Assembly)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManager.cs#L20C102-L20C114" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManager.cs#L20C102-L20C114" }, { "DocsId": "M:System.Security.HostSecurityManager.GetHostSuppliedAppDomainEvidenceTypes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManager.cs#L21C73-L21C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManager.cs#L21C73-L21C85" }, { "DocsId": "M:System.Security.HostSecurityManager.GetHostSuppliedAssemblyEvidenceTypes(System.Reflection.Assembly)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManager.cs#L22C89-L22C101" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManager.cs#L22C89-L22C101" }, { "DocsId": "P:System.Security.HostSecurityManager.DomainPolicy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManager.cs#L12C57-L12C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManager.cs#L12C57-L12C85" }, { "DocsId": "P:System.Security.HostSecurityManager.Flags", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManager.cs#L13C65-L13C108" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManager.cs#L13C65-L13C108" } ], "DocsId": "T:System.Security.HostSecurityManager", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManager.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManager.cs" }, { "Members": [ { "DocsId": "F:System.Security.HostSecurityManagerOptions.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManagerOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManagerOptions.cs" }, { "DocsId": "F:System.Security.HostSecurityManagerOptions.AllFlags", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManagerOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManagerOptions.cs" }, { "DocsId": "F:System.Security.HostSecurityManagerOptions.HostAppDomainEvidence", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManagerOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManagerOptions.cs" }, { "DocsId": "F:System.Security.HostSecurityManagerOptions.HostAssemblyEvidence", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManagerOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManagerOptions.cs" }, { "DocsId": "F:System.Security.HostSecurityManagerOptions.HostDetermineApplicationTrust", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManagerOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManagerOptions.cs" }, { "DocsId": "F:System.Security.HostSecurityManagerOptions.HostPolicyLevel", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManagerOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManagerOptions.cs" }, { "DocsId": "F:System.Security.HostSecurityManagerOptions.HostResolvePolicy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManagerOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManagerOptions.cs" }, { "DocsId": "F:System.Security.HostSecurityManagerOptions.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManagerOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManagerOptions.cs" } ], "DocsId": "T:System.Security.HostSecurityManagerOptions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManagerOptions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/HostSecurityManagerOptions.cs" }, { "Members": [ { "DocsId": "P:System.Security.IEvidenceFactory.Evidence", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/IEvidenceFactory.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/IEvidenceFactory.cs" } ], "DocsId": "T:System.Security.IEvidenceFactory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/IEvidenceFactory.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/IEvidenceFactory.cs" }, { "Members": [ { "DocsId": "M:System.Security.ISecurityPolicyEncodable.FromXml(System.Security.SecurityElement,System.Security.Policy.PolicyLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/ISecurityPolicyEncodable.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/ISecurityPolicyEncodable.cs" }, { "DocsId": "M:System.Security.ISecurityPolicyEncodable.ToXml(System.Security.Policy.PolicyLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/ISecurityPolicyEncodable.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/ISecurityPolicyEncodable.cs" } ], "DocsId": "T:System.Security.ISecurityPolicyEncodable", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/ISecurityPolicyEncodable.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/ISecurityPolicyEncodable.cs" }, { "Members": [ { "DocsId": "M:System.Security.NamedPermissionSet.#ctor(System.Security.NamedPermissionSet)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/NamedPermissionSet.cs#L13C65-L13C99" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/NamedPermissionSet.cs#L13C65-L13C99" }, { "DocsId": "M:System.Security.NamedPermissionSet.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/NamedPermissionSet.cs#L14C50-L14C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/NamedPermissionSet.cs#L14C50-L14C84" }, { "DocsId": "M:System.Security.NamedPermissionSet.#ctor(System.String,System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/NamedPermissionSet.cs#L15C73-L15C107" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/NamedPermissionSet.cs#L15C73-L15C107" }, { "DocsId": "M:System.Security.NamedPermissionSet.#ctor(System.String,System.Security.PermissionSet)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/NamedPermissionSet.cs#L16C73-L16C107" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/NamedPermissionSet.cs#L16C73-L16C107" }, { "DocsId": "M:System.Security.NamedPermissionSet.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/NamedPermissionSet.cs#L19C48-L19C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/NamedPermissionSet.cs#L19C48-L19C78" }, { "DocsId": "M:System.Security.NamedPermissionSet.Copy(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/NamedPermissionSet.cs#L20C55-L20C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/NamedPermissionSet.cs#L20C55-L20C90" }, { "DocsId": "M:System.Security.NamedPermissionSet.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/NamedPermissionSet.cs#L21C50-L21C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/NamedPermissionSet.cs#L21C50-L21C64" }, { "DocsId": "M:System.Security.NamedPermissionSet.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/NamedPermissionSet.cs#L22C60-L22C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/NamedPermissionSet.cs#L22C60-L22C61" }, { "DocsId": "M:System.Security.NamedPermissionSet.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/NamedPermissionSet.cs#L23C46-L23C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/NamedPermissionSet.cs#L23C46-L23C64" }, { "DocsId": "M:System.Security.NamedPermissionSet.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/NamedPermissionSet.cs#L24C51-L24C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/NamedPermissionSet.cs#L24C51-L24C83" }, { "DocsId": "P:System.Security.NamedPermissionSet.Description", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/NamedPermissionSet.cs#L17C37-L17C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/NamedPermissionSet.cs#L17C37-L17C41" }, { "DocsId": "P:System.Security.NamedPermissionSet.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/NamedPermissionSet.cs#L18C30-L18C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/NamedPermissionSet.cs#L18C30-L18C34" } ], "DocsId": "T:System.Security.NamedPermissionSet", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/NamedPermissionSet.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/NamedPermissionSet.cs" }, { "Members": [ { "DocsId": "F:System.Security.PolicyLevelType.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/PolicyLevelType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/PolicyLevelType.cs" }, { "DocsId": "F:System.Security.PolicyLevelType.AppDomain", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/PolicyLevelType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/PolicyLevelType.cs" }, { "DocsId": "F:System.Security.PolicyLevelType.Enterprise", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/PolicyLevelType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/PolicyLevelType.cs" }, { "DocsId": "F:System.Security.PolicyLevelType.Machine", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/PolicyLevelType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/PolicyLevelType.cs" }, { "DocsId": "F:System.Security.PolicyLevelType.User", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/PolicyLevelType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/PolicyLevelType.cs" } ], "DocsId": "T:System.Security.PolicyLevelType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/PolicyLevelType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/PolicyLevelType.cs" }, { "Members": [ { "DocsId": "M:System.Security.SecurityContext.Capture", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/SecurityContext.cs#L14C51-L14C120" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/SecurityContext.cs#L14C51-L14C120" }, { "DocsId": "M:System.Security.SecurityContext.CreateCopy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/SecurityContext.cs#L15C47-L15C116" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/SecurityContext.cs#L15C47-L15C116" }, { "DocsId": "M:System.Security.SecurityContext.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/SecurityContext.cs#L16C33-L16C102" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/SecurityContext.cs#L16C33-L16C102" }, { "DocsId": "M:System.Security.SecurityContext.IsFlowSuppressed", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/SecurityContext.cs#L17C49-L17C118" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/SecurityContext.cs#L17C49-L17C118" }, { "DocsId": "M:System.Security.SecurityContext.IsWindowsIdentityFlowSuppressed", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/SecurityContext.cs#L18C64-L18C133" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/SecurityContext.cs#L18C64-L18C133" }, { "DocsId": "M:System.Security.SecurityContext.RestoreFlow", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/SecurityContext.cs#L19C44-L19C113" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/SecurityContext.cs#L19C44-L19C113" }, { "DocsId": "M:System.Security.SecurityContext.Run(System.Security.SecurityContext,System.Threading.ContextCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/SecurityContext.cs#L20C107-L20C176" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/SecurityContext.cs#L20C107-L20C176" }, { "DocsId": "M:System.Security.SecurityContext.SuppressFlow", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/SecurityContext.cs#L21C57-L21C126" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/SecurityContext.cs#L21C57-L21C126" }, { "DocsId": "M:System.Security.SecurityContext.SuppressFlowWindowsIdentity", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/SecurityContext.cs#L22C72-L22C141" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/SecurityContext.cs#L22C72-L22C141" } ], "DocsId": "T:System.Security.SecurityContext", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/SecurityContext.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/SecurityContext.cs" }, { "Members": [ { "DocsId": "F:System.Security.SecurityContextSource.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/SecurityContextSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/SecurityContextSource.cs" }, { "DocsId": "F:System.Security.SecurityContextSource.CurrentAppDomain", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/SecurityContextSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/SecurityContextSource.cs" }, { "DocsId": "F:System.Security.SecurityContextSource.CurrentAssembly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/SecurityContextSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/SecurityContextSource.cs" } ], "DocsId": "T:System.Security.SecurityContextSource", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/SecurityContextSource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/SecurityContextSource.cs" }, { "Members": [ { "DocsId": "M:System.Security.SecurityManager.CurrentThreadRequiresSecurityContextCapture", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L18C76-L18C89" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L18C76-L18C89" }, { "DocsId": "M:System.Security.SecurityManager.GetStandardSandbox(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L19C77-L19C107" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L19C77-L19C107" }, { "DocsId": "M:System.Security.SecurityManager.GetZoneAndOrigin(System.Collections.ArrayList@,System.Collections.ArrayList@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L20C127-L20C222" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L20C127-L20C222" }, { "DocsId": "M:System.Security.SecurityManager.IsGranted(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L22C58-L22C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L22C58-L22C71" }, { "DocsId": "M:System.Security.SecurityManager.LoadPolicyLevelFromFile(System.String,System.Security.PolicyLevelType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L24C96-L24C124" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L24C96-L24C124" }, { "DocsId": "M:System.Security.SecurityManager.LoadPolicyLevelFromString(System.String,System.Security.PolicyLevelType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L26C97-L26C125" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L26C97-L26C125" }, { "DocsId": "M:System.Security.SecurityManager.PolicyHierarchy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L28C55-L28C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L28C55-L28C83" }, { "DocsId": "M:System.Security.SecurityManager.ResolvePolicy(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L30C72-L30C102" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L30C72-L30C102" }, { "DocsId": "M:System.Security.SecurityManager.ResolvePolicy(System.Security.Policy.Evidence,System.Security.PermissionSet,System.Security.PermissionSet,System.Security.PermissionSet,System.Security.PermissionSet@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L32C192-L32C271" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L32C192-L32C271" }, { "DocsId": "M:System.Security.SecurityManager.ResolvePolicy(System.Security.Policy.Evidence[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L34C98-L34C128" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L34C98-L34C128" }, { "DocsId": "M:System.Security.SecurityManager.ResolvePolicyGroups(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L36C99-L36C127" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L36C99-L36C127" }, { "DocsId": "M:System.Security.SecurityManager.ResolveSystemPolicy(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L38C101-L38C131" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L38C101-L38C131" }, { "DocsId": "M:System.Security.SecurityManager.SavePolicy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L40C43-L40C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L40C43-L40C44" }, { "DocsId": "M:System.Security.SecurityManager.SavePolicyLevel(System.Security.Policy.PolicyLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L42C65-L42C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L42C65-L42C66" }, { "DocsId": "P:System.Security.SecurityManager.CheckExecutionRights", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L15C51-L15C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L15C51-L15C55" }, { "DocsId": "P:System.Security.SecurityManager.SecurityEnabled", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L17C46-L17C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs#L17C46-L17C50" } ], "DocsId": "T:System.Security.SecurityManager", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/SecurityManager.cs" }, { "Members": [ { "DocsId": "M:System.Security.SecurityState.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/SecurityState.cs#L8C9-L8C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/SecurityState.cs#L8C9-L8C38" }, { "DocsId": "M:System.Security.SecurityState.EnsureState", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/SecurityState.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/SecurityState.cs" }, { "DocsId": "M:System.Security.SecurityState.IsStateAvailable", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/SecurityState.cs#L10C42-L10C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/SecurityState.cs#L10C42-L10C55" } ], "DocsId": "T:System.Security.SecurityState", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/SecurityState.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/SecurityState.cs" }, { "Members": [ { "DocsId": "F:System.Security.SecurityZone.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/SecurityZone.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/SecurityZone.cs" }, { "DocsId": "F:System.Security.SecurityZone.Internet", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/SecurityZone.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/SecurityZone.cs" }, { "DocsId": "F:System.Security.SecurityZone.Intranet", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/SecurityZone.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/SecurityZone.cs" }, { "DocsId": "F:System.Security.SecurityZone.MyComputer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/SecurityZone.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/SecurityZone.cs" }, { "DocsId": "F:System.Security.SecurityZone.NoZone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/SecurityZone.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/SecurityZone.cs" }, { "DocsId": "F:System.Security.SecurityZone.Trusted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/SecurityZone.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/SecurityZone.cs" }, { "DocsId": "F:System.Security.SecurityZone.Untrusted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/SecurityZone.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/SecurityZone.cs" } ], "DocsId": "T:System.Security.SecurityZone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/SecurityZone.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/SecurityZone.cs" }, { "Members": [ { "DocsId": "M:System.Security.XmlSyntaxException.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/XmlSyntaxException.cs#L12C9-L12C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/XmlSyntaxException.cs#L12C9-L12C40" }, { "DocsId": "M:System.Security.XmlSyntaxException.#ctor(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/XmlSyntaxException.cs#L13C9-L13C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/XmlSyntaxException.cs#L13C9-L13C54" }, { "DocsId": "M:System.Security.XmlSyntaxException.#ctor(System.Int32,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/XmlSyntaxException.cs#L14C9-L14C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/XmlSyntaxException.cs#L14C9-L14C70" }, { "DocsId": "M:System.Security.XmlSyntaxException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/XmlSyntaxException.cs#L15C9-L15C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/XmlSyntaxException.cs#L15C9-L15C54" }, { "DocsId": "M:System.Security.XmlSyntaxException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/XmlSyntaxException.cs#L16C9-L16C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/XmlSyntaxException.cs#L16C9-L16C71" } ], "DocsId": "T:System.Security.XmlSyntaxException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/XmlSyntaxException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/XmlSyntaxException.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.AllMembershipCondition.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/AllMembershipCondition.cs#L8C9-L8C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/AllMembershipCondition.cs#L8C9-L8C44" }, { "DocsId": "M:System.Security.Policy.AllMembershipCondition.Check(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/AllMembershipCondition.cs#L9C48-L9C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/AllMembershipCondition.cs#L9C48-L9C61" }, { "DocsId": "M:System.Security.Policy.AllMembershipCondition.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/AllMembershipCondition.cs#L10C46-L10C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/AllMembershipCondition.cs#L10C46-L10C83" }, { "DocsId": "M:System.Security.Policy.AllMembershipCondition.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/AllMembershipCondition.cs#L11C50-L11C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/AllMembershipCondition.cs#L11C50-L11C64" }, { "DocsId": "M:System.Security.Policy.AllMembershipCondition.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/AllMembershipCondition.cs#L12C50-L12C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/AllMembershipCondition.cs#L12C50-L12C51" }, { "DocsId": "M:System.Security.Policy.AllMembershipCondition.FromXml(System.Security.SecurityElement,System.Security.Policy.PolicyLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/AllMembershipCondition.cs#L13C69-L13C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/AllMembershipCondition.cs#L13C69-L13C70" }, { "DocsId": "M:System.Security.Policy.AllMembershipCondition.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/AllMembershipCondition.cs#L14C46-L14C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/AllMembershipCondition.cs#L14C46-L14C64" }, { "DocsId": "M:System.Security.Policy.AllMembershipCondition.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/AllMembershipCondition.cs#L15C46-L15C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/AllMembershipCondition.cs#L15C46-L15C61" }, { "DocsId": "M:System.Security.Policy.AllMembershipCondition.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/AllMembershipCondition.cs#L16C42-L16C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/AllMembershipCondition.cs#L16C42-L16C74" }, { "DocsId": "M:System.Security.Policy.AllMembershipCondition.ToXml(System.Security.Policy.PolicyLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/AllMembershipCondition.cs#L17C59-L17C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/AllMembershipCondition.cs#L17C59-L17C91" } ], "DocsId": "T:System.Security.Policy.AllMembershipCondition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/AllMembershipCondition.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/AllMembershipCondition.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.ApplicationDirectory.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectory.cs#L8C9-L8C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectory.cs#L8C9-L8C53" }, { "DocsId": "M:System.Security.Policy.ApplicationDirectory.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectory.cs#L10C32-L10C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectory.cs#L10C32-L10C44" }, { "DocsId": "M:System.Security.Policy.ApplicationDirectory.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectory.cs#L11C50-L11C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectory.cs#L11C50-L11C64" }, { "DocsId": "M:System.Security.Policy.ApplicationDirectory.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectory.cs#L12C46-L12C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectory.cs#L12C46-L12C64" }, { "DocsId": "M:System.Security.Policy.ApplicationDirectory.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectory.cs#L13C46-L13C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectory.cs#L13C46-L13C61" }, { "DocsId": "P:System.Security.Policy.ApplicationDirectory.Directory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectory.cs#L9C41-L9C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectory.cs#L9C41-L9C53" } ], "DocsId": "T:System.Security.Policy.ApplicationDirectory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectory.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectory.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.ApplicationDirectoryMembershipCondition.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectoryMembershipCondition.cs#L8C9-L8C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectoryMembershipCondition.cs#L8C9-L8C61" }, { "DocsId": "M:System.Security.Policy.ApplicationDirectoryMembershipCondition.Check(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectoryMembershipCondition.cs#L9C48-L9C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectoryMembershipCondition.cs#L9C48-L9C61" }, { "DocsId": "M:System.Security.Policy.ApplicationDirectoryMembershipCondition.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectoryMembershipCondition.cs#L10C46-L10C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectoryMembershipCondition.cs#L10C46-L10C83" }, { "DocsId": "M:System.Security.Policy.ApplicationDirectoryMembershipCondition.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectoryMembershipCondition.cs#L11C50-L11C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectoryMembershipCondition.cs#L11C50-L11C64" }, { "DocsId": "M:System.Security.Policy.ApplicationDirectoryMembershipCondition.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectoryMembershipCondition.cs#L12C50-L12C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectoryMembershipCondition.cs#L12C50-L12C51" }, { "DocsId": "M:System.Security.Policy.ApplicationDirectoryMembershipCondition.FromXml(System.Security.SecurityElement,System.Security.Policy.PolicyLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectoryMembershipCondition.cs#L13C69-L13C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectoryMembershipCondition.cs#L13C69-L13C70" }, { "DocsId": "M:System.Security.Policy.ApplicationDirectoryMembershipCondition.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectoryMembershipCondition.cs#L14C46-L14C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectoryMembershipCondition.cs#L14C46-L14C64" }, { "DocsId": "M:System.Security.Policy.ApplicationDirectoryMembershipCondition.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectoryMembershipCondition.cs#L15C46-L15C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectoryMembershipCondition.cs#L15C46-L15C61" }, { "DocsId": "M:System.Security.Policy.ApplicationDirectoryMembershipCondition.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectoryMembershipCondition.cs#L16C42-L16C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectoryMembershipCondition.cs#L16C42-L16C74" }, { "DocsId": "M:System.Security.Policy.ApplicationDirectoryMembershipCondition.ToXml(System.Security.Policy.PolicyLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectoryMembershipCondition.cs#L17C59-L17C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectoryMembershipCondition.cs#L17C59-L17C91" } ], "DocsId": "T:System.Security.Policy.ApplicationDirectoryMembershipCondition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectoryMembershipCondition.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationDirectoryMembershipCondition.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.ApplicationTrust.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrust.cs#L10C9-L10C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrust.cs#L10C9-L10C38" }, { "DocsId": "M:System.Security.Policy.ApplicationTrust.#ctor(System.ApplicationIdentity)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrust.cs#L11C9-L11C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrust.cs#L11C9-L11C66" }, { "DocsId": "M:System.Security.Policy.ApplicationTrust.#ctor(System.Security.PermissionSet,System.Collections.Generic.IEnumerable{System.Security.Policy.StrongName})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrust.cs#L15C9-L15C112" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrust.cs#L15C9-L15C112" }, { "DocsId": "M:System.Security.Policy.ApplicationTrust.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrust.cs#L25C56-L25C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrust.cs#L25C56-L25C57" }, { "DocsId": "M:System.Security.Policy.ApplicationTrust.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrust.cs#L26C42-L26C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrust.cs#L26C42-L26C74" }, { "DocsId": "P:System.Security.Policy.ApplicationTrust.ApplicationIdentity", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrust.cs#L16C58-L16C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrust.cs#L16C58-L16C62" }, { "DocsId": "P:System.Security.Policy.ApplicationTrust.DefaultGrantSet", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrust.cs#L17C50-L17C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrust.cs#L17C50-L17C54" }, { "DocsId": "P:System.Security.Policy.ApplicationTrust.ExtraInfo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrust.cs#L18C35-L18C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrust.cs#L18C35-L18C39" }, { "DocsId": "P:System.Security.Policy.ApplicationTrust.FullTrustAssemblies", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrust.cs#L22C62-L22C96" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrust.cs#L22C62-L22C96" }, { "DocsId": "P:System.Security.Policy.ApplicationTrust.IsApplicationTrustedToRun", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrust.cs#L23C49-L23C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrust.cs#L23C49-L23C53" }, { "DocsId": "P:System.Security.Policy.ApplicationTrust.Persist", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrust.cs#L24C31-L24C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrust.cs#L24C31-L24C35" } ], "DocsId": "T:System.Security.Policy.ApplicationTrust", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrust.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrust.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.ApplicationTrustCollection.Add(System.Security.Policy.ApplicationTrust)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L16C50-L16C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L16C50-L16C59" }, { "DocsId": "M:System.Security.Policy.ApplicationTrustCollection.AddRange(System.Security.Policy.ApplicationTrust[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L17C59-L17C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L17C59-L17C60" }, { "DocsId": "M:System.Security.Policy.ApplicationTrustCollection.AddRange(System.Security.Policy.ApplicationTrustCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L18C67-L18C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L18C67-L18C68" }, { "DocsId": "M:System.Security.Policy.ApplicationTrustCollection.Clear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L19C31-L19C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L19C31-L19C32" }, { "DocsId": "M:System.Security.Policy.ApplicationTrustCollection.CopyTo(System.Security.Policy.ApplicationTrust[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L20C67-L20C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L20C67-L20C68" }, { "DocsId": "M:System.Security.Policy.ApplicationTrustCollection.Find(System.ApplicationIdentity,System.Security.Policy.ApplicationVersionMatch)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L21C129-L21C172" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L21C129-L21C172" }, { "DocsId": "M:System.Security.Policy.ApplicationTrustCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L22C61-L22C101" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L22C61-L22C101" }, { "DocsId": "M:System.Security.Policy.ApplicationTrustCollection.Remove(System.Security.Policy.ApplicationTrust)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L23C54-L23C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L23C54-L23C55" }, { "DocsId": "M:System.Security.Policy.ApplicationTrustCollection.Remove(System.ApplicationIdentity,System.Security.Policy.ApplicationVersionMatch)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L24C109-L24C110" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L24C109-L24C110" }, { "DocsId": "M:System.Security.Policy.ApplicationTrustCollection.RemoveRange(System.Security.Policy.ApplicationTrust[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L25C62-L25C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L25C62-L25C63" }, { "DocsId": "M:System.Security.Policy.ApplicationTrustCollection.RemoveRange(System.Security.Policy.ApplicationTrustCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L26C70-L26C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L26C70-L26C71" }, { "DocsId": "M:System.Security.Policy.ApplicationTrustCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L27C59-L27C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L27C59-L27C60" }, { "DocsId": "M:System.Security.Policy.ApplicationTrustCollection.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L28C51-L28C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L28C51-L28C74" }, { "DocsId": "P:System.Security.Policy.ApplicationTrustCollection.Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L11C34-L11C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L11C34-L11C43" }, { "DocsId": "P:System.Security.Policy.ApplicationTrustCollection.IsSynchronized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L12C44-L12C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L12C44-L12C57" }, { "DocsId": "P:System.Security.Policy.ApplicationTrustCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L13C57-L13C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L13C57-L13C90" }, { "DocsId": "P:System.Security.Policy.ApplicationTrustCollection.Item(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L14C66-L14C99" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L14C66-L14C99" }, { "DocsId": "P:System.Security.Policy.ApplicationTrustCollection.SyncRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L15C40-L15C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs#L15C40-L15C52" } ], "DocsId": "T:System.Security.Policy.ApplicationTrustCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustCollection.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.ApplicationTrustEnumerator.System#Collections#IEnumerator#get_Current", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustEnumerator.cs#L12C44-L12C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustEnumerator.cs#L12C44-L12C56" }, { "DocsId": "M:System.Security.Policy.ApplicationTrustEnumerator.MoveNext", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustEnumerator.cs#L13C34-L13C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustEnumerator.cs#L13C34-L13C47" }, { "DocsId": "M:System.Security.Policy.ApplicationTrustEnumerator.Reset", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustEnumerator.cs#L14C31-L14C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustEnumerator.cs#L14C31-L14C32" }, { "DocsId": "P:System.Security.Policy.ApplicationTrustEnumerator.Current", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustEnumerator.cs#L11C49-L11C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustEnumerator.cs#L11C49-L11C82" }, { "DocsId": "P:System.Security.Policy.ApplicationTrustEnumerator.System#Collections#IEnumerator#Current", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustEnumerator.cs#L12C44-L12C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustEnumerator.cs#L12C44-L12C56" } ], "DocsId": "T:System.Security.Policy.ApplicationTrustEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustEnumerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationTrustEnumerator.cs" }, { "Members": [ { "DocsId": "F:System.Security.Policy.ApplicationVersionMatch.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationVersionMatch.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationVersionMatch.cs" }, { "DocsId": "F:System.Security.Policy.ApplicationVersionMatch.MatchAllVersions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationVersionMatch.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationVersionMatch.cs" }, { "DocsId": "F:System.Security.Policy.ApplicationVersionMatch.MatchExactVersion", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationVersionMatch.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationVersionMatch.cs" } ], "DocsId": "T:System.Security.Policy.ApplicationVersionMatch", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationVersionMatch.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ApplicationVersionMatch.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.CodeConnectAccess.#ctor(System.String,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeConnectAccess.cs#L12C9-L12C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeConnectAccess.cs#L12C9-L12C72" }, { "DocsId": "M:System.Security.Policy.CodeConnectAccess.CreateAnySchemeAccess(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeConnectAccess.cs#L15C80-L15C114" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeConnectAccess.cs#L15C80-L15C114" }, { "DocsId": "M:System.Security.Policy.CodeConnectAccess.CreateOriginSchemeAccess(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeConnectAccess.cs#L16C83-L16C117" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeConnectAccess.cs#L16C83-L16C117" }, { "DocsId": "M:System.Security.Policy.CodeConnectAccess.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeConnectAccess.cs#L17C50-L17C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeConnectAccess.cs#L17C50-L17C64" }, { "DocsId": "M:System.Security.Policy.CodeConnectAccess.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeConnectAccess.cs#L18C46-L18C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeConnectAccess.cs#L18C46-L18C64" }, { "DocsId": "F:System.Security.Policy.CodeConnectAccess.AnyScheme", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeConnectAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeConnectAccess.cs" }, { "DocsId": "F:System.Security.Policy.CodeConnectAccess.DefaultPort", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeConnectAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeConnectAccess.cs" }, { "DocsId": "F:System.Security.Policy.CodeConnectAccess.OriginPort", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeConnectAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeConnectAccess.cs" }, { "DocsId": "F:System.Security.Policy.CodeConnectAccess.OriginScheme", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeConnectAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeConnectAccess.cs" }, { "DocsId": "P:System.Security.Policy.CodeConnectAccess.Port", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeConnectAccess.cs#L13C33-L13C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeConnectAccess.cs#L13C33-L13C42" }, { "DocsId": "P:System.Security.Policy.CodeConnectAccess.Scheme", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeConnectAccess.cs#L14C38-L14C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeConnectAccess.cs#L14C38-L14C50" } ], "DocsId": "T:System.Security.Policy.CodeConnectAccess", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeConnectAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeConnectAccess.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.CodeGroup.#ctor(System.Security.Policy.IMembershipCondition,System.Security.Policy.PolicyStatement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L10C9-L10C98" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L10C9-L10C98" }, { "DocsId": "M:System.Security.Policy.CodeGroup.AddChild(System.Security.Policy.CodeGroup)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L19C49-L19C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L19C49-L19C50" }, { "DocsId": "M:System.Security.Policy.CodeGroup.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs" }, { "DocsId": "M:System.Security.Policy.CodeGroup.CreateXml(System.Security.SecurityElement,System.Security.Policy.PolicyLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L21C88-L21C89" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L21C88-L21C89" }, { "DocsId": "M:System.Security.Policy.CodeGroup.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L22C50-L22C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L22C50-L22C64" }, { "DocsId": "M:System.Security.Policy.CodeGroup.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L23C50-L23C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L23C50-L23C51" }, { "DocsId": "M:System.Security.Policy.CodeGroup.FromXml(System.Security.SecurityElement,System.Security.Policy.PolicyLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L24C69-L24C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L24C69-L24C70" }, { "DocsId": "M:System.Security.Policy.CodeGroup.Equals(System.Security.Policy.CodeGroup,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L25C66-L25C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L25C66-L25C79" }, { "DocsId": "M:System.Security.Policy.CodeGroup.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L26C46-L26C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L26C46-L26C64" }, { "DocsId": "M:System.Security.Policy.CodeGroup.ParseXml(System.Security.SecurityElement,System.Security.Policy.PolicyLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L27C81-L27C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L27C81-L27C82" }, { "DocsId": "M:System.Security.Policy.CodeGroup.RemoveChild(System.Security.Policy.CodeGroup)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L28C52-L28C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L28C52-L28C53" }, { "DocsId": "M:System.Security.Policy.CodeGroup.Resolve(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs" }, { "DocsId": "M:System.Security.Policy.CodeGroup.ResolveMatchingCodeGroups(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs" }, { "DocsId": "M:System.Security.Policy.CodeGroup.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L31C42-L31C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L31C42-L31C74" }, { "DocsId": "M:System.Security.Policy.CodeGroup.ToXml(System.Security.Policy.PolicyLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L32C59-L32C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L32C59-L32C91" }, { "DocsId": "P:System.Security.Policy.CodeGroup.AttributeString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L11C55-L11C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L11C55-L11C67" }, { "DocsId": "P:System.Security.Policy.CodeGroup.Children", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L12C33-L12C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L12C33-L12C37" }, { "DocsId": "P:System.Security.Policy.CodeGroup.Description", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L13C37-L13C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L13C37-L13C41" }, { "DocsId": "P:System.Security.Policy.CodeGroup.MembershipCondition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L14C59-L14C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L14C59-L14C63" }, { "DocsId": "P:System.Security.Policy.CodeGroup.MergeLogic", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs" }, { "DocsId": "P:System.Security.Policy.CodeGroup.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L16C30-L16C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L16C30-L16C34" }, { "DocsId": "P:System.Security.Policy.CodeGroup.PermissionSetName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L17C57-L17C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L17C57-L17C69" }, { "DocsId": "P:System.Security.Policy.CodeGroup.PolicyStatement", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L18C50-L18C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs#L18C50-L18C54" } ], "DocsId": "T:System.Security.Policy.CodeGroup", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/CodeGroup.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.FileCodeGroup.#ctor(System.Security.Policy.IMembershipCondition,System.Security.Permissions.FileIOPermissionAccess)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/FileCodeGroup.cs#L11C117-L11C182" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/FileCodeGroup.cs#L11C117-L11C182" }, { "DocsId": "M:System.Security.Policy.FileCodeGroup.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/FileCodeGroup.cs#L15C44-L15C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/FileCodeGroup.cs#L15C44-L15C70" }, { "DocsId": "M:System.Security.Policy.FileCodeGroup.CreateXml(System.Security.SecurityElement,System.Security.Policy.PolicyLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/FileCodeGroup.cs#L16C89-L16C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/FileCodeGroup.cs#L16C89-L16C90" }, { "DocsId": "M:System.Security.Policy.FileCodeGroup.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/FileCodeGroup.cs#L17C50-L17C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/FileCodeGroup.cs#L17C50-L17C64" }, { "DocsId": "M:System.Security.Policy.FileCodeGroup.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/FileCodeGroup.cs#L18C46-L18C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/FileCodeGroup.cs#L18C46-L18C64" }, { "DocsId": "M:System.Security.Policy.FileCodeGroup.ParseXml(System.Security.SecurityElement,System.Security.Policy.PolicyLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/FileCodeGroup.cs#L19C82-L19C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/FileCodeGroup.cs#L19C82-L19C83" }, { "DocsId": "M:System.Security.Policy.FileCodeGroup.Resolve(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/FileCodeGroup.cs#L20C70-L20C102" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/FileCodeGroup.cs#L20C70-L20C102" }, { "DocsId": "M:System.Security.Policy.FileCodeGroup.ResolveMatchingCodeGroups(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/FileCodeGroup.cs#L21C82-L21C108" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/FileCodeGroup.cs#L21C82-L21C108" }, { "DocsId": "P:System.Security.Policy.FileCodeGroup.AttributeString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/FileCodeGroup.cs#L12C56-L12C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/FileCodeGroup.cs#L12C56-L12C68" }, { "DocsId": "P:System.Security.Policy.FileCodeGroup.MergeLogic", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/FileCodeGroup.cs#L13C51-L13C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/FileCodeGroup.cs#L13C51-L13C63" }, { "DocsId": "P:System.Security.Policy.FileCodeGroup.PermissionSetName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/FileCodeGroup.cs#L14C58-L14C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/FileCodeGroup.cs#L14C58-L14C70" } ], "DocsId": "T:System.Security.Policy.FileCodeGroup", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/FileCodeGroup.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/FileCodeGroup.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.FirstMatchCodeGroup.#ctor(System.Security.Policy.IMembershipCondition,System.Security.Policy.PolicyStatement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/FirstMatchCodeGroup.cs#L9C104-L9C169" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/FirstMatchCodeGroup.cs#L9C104-L9C169" }, { "DocsId": "M:System.Security.Policy.FirstMatchCodeGroup.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/FirstMatchCodeGroup.cs#L11C44-L11C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/FirstMatchCodeGroup.cs#L11C44-L11C70" }, { "DocsId": "M:System.Security.Policy.FirstMatchCodeGroup.Resolve(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/FirstMatchCodeGroup.cs#L12C70-L12C102" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/FirstMatchCodeGroup.cs#L12C70-L12C102" }, { "DocsId": "M:System.Security.Policy.FirstMatchCodeGroup.ResolveMatchingCodeGroups(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/FirstMatchCodeGroup.cs#L13C82-L13C108" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/FirstMatchCodeGroup.cs#L13C82-L13C108" }, { "DocsId": "P:System.Security.Policy.FirstMatchCodeGroup.MergeLogic", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/FirstMatchCodeGroup.cs#L10C51-L10C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/FirstMatchCodeGroup.cs#L10C51-L10C63" } ], "DocsId": "T:System.Security.Policy.FirstMatchCodeGroup", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/FirstMatchCodeGroup.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/FirstMatchCodeGroup.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.GacInstalled.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacInstalled.cs#L11C9-L11C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacInstalled.cs#L11C9-L11C34" }, { "DocsId": "M:System.Security.Policy.GacInstalled.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacInstalled.cs#L12C32-L12C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacInstalled.cs#L12C32-L12C44" }, { "DocsId": "M:System.Security.Policy.GacInstalled.CreateIdentityPermission(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacInstalled.cs#L13C74-L13C102" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacInstalled.cs#L13C74-L13C102" }, { "DocsId": "M:System.Security.Policy.GacInstalled.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacInstalled.cs#L14C50-L14C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacInstalled.cs#L14C50-L14C64" }, { "DocsId": "M:System.Security.Policy.GacInstalled.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacInstalled.cs#L15C46-L15C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacInstalled.cs#L15C46-L15C64" }, { "DocsId": "M:System.Security.Policy.GacInstalled.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacInstalled.cs#L16C46-L16C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacInstalled.cs#L16C46-L16C61" } ], "DocsId": "T:System.Security.Policy.GacInstalled", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacInstalled.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacInstalled.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.GacMembershipCondition.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacMembershipCondition.cs#L8C9-L8C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacMembershipCondition.cs#L8C9-L8C44" }, { "DocsId": "M:System.Security.Policy.GacMembershipCondition.Check(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacMembershipCondition.cs#L9C48-L9C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacMembershipCondition.cs#L9C48-L9C61" }, { "DocsId": "M:System.Security.Policy.GacMembershipCondition.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacMembershipCondition.cs#L10C46-L10C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacMembershipCondition.cs#L10C46-L10C83" }, { "DocsId": "M:System.Security.Policy.GacMembershipCondition.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacMembershipCondition.cs#L11C50-L11C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacMembershipCondition.cs#L11C50-L11C64" }, { "DocsId": "M:System.Security.Policy.GacMembershipCondition.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacMembershipCondition.cs#L12C50-L12C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacMembershipCondition.cs#L12C50-L12C51" }, { "DocsId": "M:System.Security.Policy.GacMembershipCondition.FromXml(System.Security.SecurityElement,System.Security.Policy.PolicyLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacMembershipCondition.cs#L13C69-L13C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacMembershipCondition.cs#L13C69-L13C70" }, { "DocsId": "M:System.Security.Policy.GacMembershipCondition.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacMembershipCondition.cs#L14C46-L14C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacMembershipCondition.cs#L14C46-L14C64" }, { "DocsId": "M:System.Security.Policy.GacMembershipCondition.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacMembershipCondition.cs#L15C46-L15C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacMembershipCondition.cs#L15C46-L15C61" }, { "DocsId": "M:System.Security.Policy.GacMembershipCondition.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacMembershipCondition.cs#L16C42-L16C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacMembershipCondition.cs#L16C42-L16C74" }, { "DocsId": "M:System.Security.Policy.GacMembershipCondition.ToXml(System.Security.Policy.PolicyLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacMembershipCondition.cs#L17C59-L17C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacMembershipCondition.cs#L17C59-L17C91" } ], "DocsId": "T:System.Security.Policy.GacMembershipCondition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacMembershipCondition.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/GacMembershipCondition.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.Hash.#ctor(System.Reflection.Assembly)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/Hash.cs#L12C9-L12C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/Hash.cs#L12C9-L12C61" }, { "DocsId": "M:System.Security.Policy.Hash.CreateMD5(System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/Hash.cs#L16C52-L16C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/Hash.cs#L16C52-L16C73" }, { "DocsId": "M:System.Security.Policy.Hash.CreateSHA1(System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/Hash.cs#L17C54-L17C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/Hash.cs#L17C54-L17C75" }, { "DocsId": "M:System.Security.Policy.Hash.CreateSHA256(System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/Hash.cs#L18C58-L18C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/Hash.cs#L18C58-L18C79" }, { "DocsId": "M:System.Security.Policy.Hash.GenerateHash(System.Security.Cryptography.HashAlgorithm)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/Hash.cs#L19C61-L19C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/Hash.cs#L19C61-L19C73" }, { "DocsId": "M:System.Security.Policy.Hash.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/Hash.cs#L26C13-L26C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/Hash.cs#L26C13-L26C55" }, { "DocsId": "M:System.Security.Policy.Hash.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/Hash.cs#L29C46-L29C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/Hash.cs#L29C46-L29C61" }, { "DocsId": "P:System.Security.Policy.Hash.MD5", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/Hash.cs#L13C35-L13C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/Hash.cs#L13C35-L13C47" }, { "DocsId": "P:System.Security.Policy.Hash.SHA1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/Hash.cs#L14C36-L14C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/Hash.cs#L14C36-L14C48" }, { "DocsId": "P:System.Security.Policy.Hash.SHA256", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/Hash.cs#L15C38-L15C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/Hash.cs#L15C38-L15C50" } ], "DocsId": "T:System.Security.Policy.Hash", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/Hash.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/Hash.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.HashMembershipCondition.#ctor(System.Security.Cryptography.HashAlgorithm,System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/HashMembershipCondition.cs#L11C9-L11C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/HashMembershipCondition.cs#L11C9-L11C80" }, { "DocsId": "M:System.Security.Policy.HashMembershipCondition.Check(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/HashMembershipCondition.cs#L14C48-L14C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/HashMembershipCondition.cs#L14C48-L14C61" }, { "DocsId": "M:System.Security.Policy.HashMembershipCondition.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/HashMembershipCondition.cs#L15C46-L15C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/HashMembershipCondition.cs#L15C46-L15C58" }, { "DocsId": "M:System.Security.Policy.HashMembershipCondition.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/HashMembershipCondition.cs#L16C50-L16C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/HashMembershipCondition.cs#L16C50-L16C64" }, { "DocsId": "M:System.Security.Policy.HashMembershipCondition.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/HashMembershipCondition.cs#L17C50-L17C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/HashMembershipCondition.cs#L17C50-L17C51" }, { "DocsId": "M:System.Security.Policy.HashMembershipCondition.FromXml(System.Security.SecurityElement,System.Security.Policy.PolicyLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/HashMembershipCondition.cs#L18C69-L18C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/HashMembershipCondition.cs#L18C69-L18C70" }, { "DocsId": "M:System.Security.Policy.HashMembershipCondition.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/HashMembershipCondition.cs#L19C46-L19C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/HashMembershipCondition.cs#L19C46-L19C64" }, { "DocsId": "M:System.Security.Policy.HashMembershipCondition.System#Runtime#Serialization#IDeserializationCallback#OnDeserialization(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/HashMembershipCondition.cs#L20C74-L20C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/HashMembershipCondition.cs#L20C74-L20C75" }, { "DocsId": "M:System.Security.Policy.HashMembershipCondition.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/HashMembershipCondition.cs#L23C13-L23C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/HashMembershipCondition.cs#L23C13-L23C55" }, { "DocsId": "M:System.Security.Policy.HashMembershipCondition.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/HashMembershipCondition.cs#L26C46-L26C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/HashMembershipCondition.cs#L26C46-L26C61" }, { "DocsId": "M:System.Security.Policy.HashMembershipCondition.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/HashMembershipCondition.cs#L27C42-L27C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/HashMembershipCondition.cs#L27C42-L27C74" }, { "DocsId": "M:System.Security.Policy.HashMembershipCondition.ToXml(System.Security.Policy.PolicyLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/HashMembershipCondition.cs#L28C59-L28C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/HashMembershipCondition.cs#L28C59-L28C91" }, { "DocsId": "P:System.Security.Policy.HashMembershipCondition.HashAlgorithm", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/HashMembershipCondition.cs#L12C46-L12C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/HashMembershipCondition.cs#L12C46-L12C50" }, { "DocsId": "P:System.Security.Policy.HashMembershipCondition.HashValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/HashMembershipCondition.cs#L13C35-L13C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/HashMembershipCondition.cs#L13C35-L13C39" } ], "DocsId": "T:System.Security.Policy.HashMembershipCondition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/HashMembershipCondition.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/HashMembershipCondition.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.IIdentityPermissionFactory.CreateIdentityPermission(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/IIdentityPermissionFactory.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/IIdentityPermissionFactory.cs" } ], "DocsId": "T:System.Security.Policy.IIdentityPermissionFactory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/IIdentityPermissionFactory.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/IIdentityPermissionFactory.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.IMembershipCondition.Check(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/IMembershipCondition.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/IMembershipCondition.cs" }, { "DocsId": "M:System.Security.Policy.IMembershipCondition.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/IMembershipCondition.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/IMembershipCondition.cs" }, { "DocsId": "M:System.Security.Policy.IMembershipCondition.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/IMembershipCondition.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/IMembershipCondition.cs" }, { "DocsId": "M:System.Security.Policy.IMembershipCondition.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/IMembershipCondition.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/IMembershipCondition.cs" } ], "DocsId": "T:System.Security.Policy.IMembershipCondition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/IMembershipCondition.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/IMembershipCondition.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.NetCodeGroup.#ctor(System.Security.Policy.IMembershipCondition)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs#L10C73-L10C138" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs#L10C73-L10C138" }, { "DocsId": "M:System.Security.Policy.NetCodeGroup.AddConnectAccess(System.String,System.Security.Policy.CodeConnectAccess)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs#L14C94-L14C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs#L14C94-L14C95" }, { "DocsId": "M:System.Security.Policy.NetCodeGroup.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs#L15C44-L15C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs#L15C44-L15C70" }, { "DocsId": "M:System.Security.Policy.NetCodeGroup.CreateXml(System.Security.SecurityElement,System.Security.Policy.PolicyLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs#L16C89-L16C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs#L16C89-L16C90" }, { "DocsId": "M:System.Security.Policy.NetCodeGroup.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs#L17C50-L17C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs#L17C50-L17C64" }, { "DocsId": "M:System.Security.Policy.NetCodeGroup.GetConnectAccessRules", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs#L18C79-L18C132" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs#L18C79-L18C132" }, { "DocsId": "M:System.Security.Policy.NetCodeGroup.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs#L19C46-L19C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs#L19C46-L19C64" }, { "DocsId": "M:System.Security.Policy.NetCodeGroup.ParseXml(System.Security.SecurityElement,System.Security.Policy.PolicyLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs#L20C82-L20C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs#L20C82-L20C83" }, { "DocsId": "M:System.Security.Policy.NetCodeGroup.ResetConnectAccess", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs#L21C44-L21C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs#L21C44-L21C45" }, { "DocsId": "M:System.Security.Policy.NetCodeGroup.Resolve(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs#L22C70-L22C102" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs#L22C70-L22C102" }, { "DocsId": "M:System.Security.Policy.NetCodeGroup.ResolveMatchingCodeGroups(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs#L23C82-L23C108" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs#L23C82-L23C108" }, { "DocsId": "F:System.Security.Policy.NetCodeGroup.AbsentOriginScheme", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs" }, { "DocsId": "F:System.Security.Policy.NetCodeGroup.AnyOtherOriginScheme", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs" }, { "DocsId": "P:System.Security.Policy.NetCodeGroup.AttributeString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs#L11C56-L11C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs#L11C56-L11C68" }, { "DocsId": "P:System.Security.Policy.NetCodeGroup.MergeLogic", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs#L12C51-L12C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs#L12C51-L12C63" }, { "DocsId": "P:System.Security.Policy.NetCodeGroup.PermissionSetName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs#L13C58-L13C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs#L13C58-L13C70" } ], "DocsId": "T:System.Security.Policy.NetCodeGroup", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/NetCodeGroup.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.PermissionRequestEvidence.#ctor(System.Security.PermissionSet,System.Security.PermissionSet,System.Security.PermissionSet)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PermissionRequestEvidence.cs#L9C9-L9C114" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PermissionRequestEvidence.cs#L9C9-L9C114" }, { "DocsId": "M:System.Security.Policy.PermissionRequestEvidence.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PermissionRequestEvidence.cs#L13C51-L13C93" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PermissionRequestEvidence.cs#L13C51-L13C93" }, { "DocsId": "M:System.Security.Policy.PermissionRequestEvidence.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PermissionRequestEvidence.cs#L14C46-L14C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PermissionRequestEvidence.cs#L14C46-L14C61" }, { "DocsId": "P:System.Security.Policy.PermissionRequestEvidence.DeniedPermissions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PermissionRequestEvidence.cs#L10C56-L10C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PermissionRequestEvidence.cs#L10C56-L10C86" }, { "DocsId": "P:System.Security.Policy.PermissionRequestEvidence.OptionalPermissions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PermissionRequestEvidence.cs#L11C58-L11C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PermissionRequestEvidence.cs#L11C58-L11C88" }, { "DocsId": "P:System.Security.Policy.PermissionRequestEvidence.RequestedPermissions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PermissionRequestEvidence.cs#L12C59-L12C89" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PermissionRequestEvidence.cs#L12C59-L12C89" } ], "DocsId": "T:System.Security.Policy.PermissionRequestEvidence", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PermissionRequestEvidence.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PermissionRequestEvidence.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.PolicyException.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyException.cs#L13C9-L13C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyException.cs#L13C9-L13C37" }, { "DocsId": "M:System.Security.Policy.PolicyException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyException.cs#L18C87-L18C110" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyException.cs#L18C87-L18C110" }, { "DocsId": "M:System.Security.Policy.PolicyException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyException.cs#L19C50-L19C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyException.cs#L19C50-L19C67" }, { "DocsId": "M:System.Security.Policy.PolicyException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyException.cs#L20C71-L20C99" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyException.cs#L20C71-L20C99" } ], "DocsId": "T:System.Security.Policy.PolicyException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyException.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.PolicyLevel.AddFullTrustAssembly(System.Security.Policy.StrongName)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L18C59-L18C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L18C59-L18C60" }, { "DocsId": "M:System.Security.Policy.PolicyLevel.AddFullTrustAssembly(System.Security.Policy.StrongNameMembershipCondition)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L20C80-L20C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L20C80-L20C81" }, { "DocsId": "M:System.Security.Policy.PolicyLevel.AddNamedPermissionSet(System.Security.NamedPermissionSet)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L24C73-L24C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L24C73-L24C74" }, { "DocsId": "M:System.Security.Policy.PolicyLevel.ChangeNamedPermissionSet(System.String,System.Security.PermissionSet)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L28C95-L28C130" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L28C95-L28C130" }, { "DocsId": "M:System.Security.Policy.PolicyLevel.CreateAppDomainLevel", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L30C60-L30C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L30C60-L30C88" }, { "DocsId": "M:System.Security.Policy.PolicyLevel.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L31C50-L31C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L31C50-L31C51" }, { "DocsId": "M:System.Security.Policy.PolicyLevel.GetNamedPermissionSet(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L35C72-L35C107" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L35C72-L35C107" }, { "DocsId": "M:System.Security.Policy.PolicyLevel.Recover", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L36C33-L36C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L36C33-L36C34" }, { "DocsId": "M:System.Security.Policy.PolicyLevel.RemoveFullTrustAssembly(System.Security.Policy.StrongName)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L38C62-L38C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L38C62-L38C63" }, { "DocsId": "M:System.Security.Policy.PolicyLevel.RemoveFullTrustAssembly(System.Security.Policy.StrongNameMembershipCondition)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L40C83-L40C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L40C83-L40C84" }, { "DocsId": "M:System.Security.Policy.PolicyLevel.RemoveNamedPermissionSet(System.Security.NamedPermissionSet)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L44C90-L44C125" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L44C90-L44C125" }, { "DocsId": "M:System.Security.Policy.PolicyLevel.RemoveNamedPermissionSet(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L48C75-L48C110" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L48C75-L48C110" }, { "DocsId": "M:System.Security.Policy.PolicyLevel.Reset", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L49C31-L49C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L49C31-L49C32" }, { "DocsId": "M:System.Security.Policy.PolicyLevel.Resolve(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L50C61-L50C93" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L50C61-L50C93" }, { "DocsId": "M:System.Security.Policy.PolicyLevel.ResolveMatchingCodeGroups(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L51C73-L51C99" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L51C73-L51C99" }, { "DocsId": "M:System.Security.Policy.PolicyLevel.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L52C42-L52C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L52C42-L52C74" }, { "DocsId": "P:System.Security.Policy.PolicyLevel.FullTrustAssemblies", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L11C272-L11C294" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L11C272-L11C294" }, { "DocsId": "P:System.Security.Policy.PolicyLevel.Label", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L12C37-L12C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L12C37-L12C49" }, { "DocsId": "P:System.Security.Policy.PolicyLevel.NamedPermissionSets", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L13C50-L13C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L13C50-L13C72" }, { "DocsId": "P:System.Security.Policy.PolicyLevel.RootCodeGroup", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L14C42-L14C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L14C42-L14C46" }, { "DocsId": "P:System.Security.Policy.PolicyLevel.StoreLocation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L15C45-L15C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L15C45-L15C57" }, { "DocsId": "P:System.Security.Policy.PolicyLevel.Type", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L16C45-L16C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs#L16C45-L16C77" } ], "DocsId": "T:System.Security.Policy.PolicyLevel", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyLevel.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.PolicyStatement.#ctor(System.Security.PermissionSet)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatement.cs#L11C9-L11C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatement.cs#L11C9-L11C58" }, { "DocsId": "M:System.Security.Policy.PolicyStatement.#ctor(System.Security.PermissionSet,System.Security.Policy.PolicyStatementAttribute)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatement.cs#L15C9-L15C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatement.cs#L15C9-L15C95" }, { "DocsId": "M:System.Security.Policy.PolicyStatement.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatement.cs#L22C41-L22C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatement.cs#L22C41-L22C53" }, { "DocsId": "M:System.Security.Policy.PolicyStatement.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatement.cs#L23C50-L23C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatement.cs#L23C50-L23C64" }, { "DocsId": "M:System.Security.Policy.PolicyStatement.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatement.cs#L24C51-L24C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatement.cs#L24C51-L24C52" }, { "DocsId": "M:System.Security.Policy.PolicyStatement.FromXml(System.Security.SecurityElement,System.Security.Policy.PolicyLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatement.cs#L25C70-L25C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatement.cs#L25C70-L25C71" }, { "DocsId": "M:System.Security.Policy.PolicyStatement.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatement.cs#L26C46-L26C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatement.cs#L26C46-L26C64" }, { "DocsId": "M:System.Security.Policy.PolicyStatement.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatement.cs#L27C42-L27C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatement.cs#L27C42-L27C74" }, { "DocsId": "M:System.Security.Policy.PolicyStatement.ToXml(System.Security.Policy.PolicyLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatement.cs#L28C59-L28C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatement.cs#L28C59-L28C91" }, { "DocsId": "P:System.Security.Policy.PolicyStatement.Attributes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatement.cs#L16C54-L16C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatement.cs#L16C54-L16C58" }, { "DocsId": "P:System.Security.Policy.PolicyStatement.AttributeString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatement.cs#L17C47-L17C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatement.cs#L17C47-L17C59" }, { "DocsId": "P:System.Security.Policy.PolicyStatement.PermissionSet", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatement.cs#L21C46-L21C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatement.cs#L21C46-L21C50" } ], "DocsId": "T:System.Security.Policy.PolicyStatement", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatement.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatement.cs" }, { "Members": [ { "DocsId": "F:System.Security.Policy.PolicyStatementAttribute.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatementAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatementAttribute.cs" }, { "DocsId": "F:System.Security.Policy.PolicyStatementAttribute.All", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatementAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatementAttribute.cs" }, { "DocsId": "F:System.Security.Policy.PolicyStatementAttribute.Exclusive", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatementAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatementAttribute.cs" }, { "DocsId": "F:System.Security.Policy.PolicyStatementAttribute.LevelFinal", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatementAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatementAttribute.cs" }, { "DocsId": "F:System.Security.Policy.PolicyStatementAttribute.Nothing", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatementAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatementAttribute.cs" } ], "DocsId": "T:System.Security.Policy.PolicyStatementAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatementAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PolicyStatementAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.Publisher.#ctor(System.Security.Cryptography.X509Certificates.X509Certificate)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/Publisher.cs#L13C9-L13C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/Publisher.cs#L13C9-L13C51" }, { "DocsId": "M:System.Security.Policy.Publisher.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/Publisher.cs#L15C32-L15C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/Publisher.cs#L15C32-L15C44" }, { "DocsId": "M:System.Security.Policy.Publisher.CreateIdentityPermission(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/Publisher.cs#L16C74-L16C102" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/Publisher.cs#L16C74-L16C102" }, { "DocsId": "M:System.Security.Policy.Publisher.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/Publisher.cs#L17C50-L17C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/Publisher.cs#L17C50-L17C64" }, { "DocsId": "M:System.Security.Policy.Publisher.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/Publisher.cs#L18C46-L18C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/Publisher.cs#L18C46-L18C64" }, { "DocsId": "M:System.Security.Policy.Publisher.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/Publisher.cs#L19C46-L19C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/Publisher.cs#L19C46-L19C61" }, { "DocsId": "P:System.Security.Policy.Publisher.Certificate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/Publisher.cs#L14C52-L14C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/Publisher.cs#L14C52-L14C84" } ], "DocsId": "T:System.Security.Policy.Publisher", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/Publisher.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/Publisher.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.PublisherMembershipCondition.#ctor(System.Security.Cryptography.X509Certificates.X509Certificate)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PublisherMembershipCondition.cs#L10C9-L10C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PublisherMembershipCondition.cs#L10C9-L10C77" }, { "DocsId": "M:System.Security.Policy.PublisherMembershipCondition.Check(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PublisherMembershipCondition.cs#L12C48-L12C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PublisherMembershipCondition.cs#L12C48-L12C61" }, { "DocsId": "M:System.Security.Policy.PublisherMembershipCondition.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PublisherMembershipCondition.cs#L13C46-L13C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PublisherMembershipCondition.cs#L13C46-L13C58" }, { "DocsId": "M:System.Security.Policy.PublisherMembershipCondition.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PublisherMembershipCondition.cs#L14C50-L14C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PublisherMembershipCondition.cs#L14C50-L14C64" }, { "DocsId": "M:System.Security.Policy.PublisherMembershipCondition.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PublisherMembershipCondition.cs#L15C50-L15C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PublisherMembershipCondition.cs#L15C50-L15C51" }, { "DocsId": "M:System.Security.Policy.PublisherMembershipCondition.FromXml(System.Security.SecurityElement,System.Security.Policy.PolicyLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PublisherMembershipCondition.cs#L16C69-L16C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PublisherMembershipCondition.cs#L16C69-L16C70" }, { "DocsId": "M:System.Security.Policy.PublisherMembershipCondition.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PublisherMembershipCondition.cs#L17C46-L17C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PublisherMembershipCondition.cs#L17C46-L17C64" }, { "DocsId": "M:System.Security.Policy.PublisherMembershipCondition.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PublisherMembershipCondition.cs#L18C46-L18C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PublisherMembershipCondition.cs#L18C46-L18C61" }, { "DocsId": "M:System.Security.Policy.PublisherMembershipCondition.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PublisherMembershipCondition.cs#L19C42-L19C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PublisherMembershipCondition.cs#L19C42-L19C74" }, { "DocsId": "M:System.Security.Policy.PublisherMembershipCondition.ToXml(System.Security.Policy.PolicyLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PublisherMembershipCondition.cs#L20C59-L20C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PublisherMembershipCondition.cs#L20C59-L20C91" }, { "DocsId": "P:System.Security.Policy.PublisherMembershipCondition.Certificate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PublisherMembershipCondition.cs#L11C46-L11C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PublisherMembershipCondition.cs#L11C46-L11C50" } ], "DocsId": "T:System.Security.Policy.PublisherMembershipCondition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/PublisherMembershipCondition.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/PublisherMembershipCondition.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.Site.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/Site.cs#L11C9-L11C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/Site.cs#L11C9-L11C37" }, { "DocsId": "M:System.Security.Policy.Site.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/Site.cs#L13C32-L13C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/Site.cs#L13C32-L13C44" }, { "DocsId": "M:System.Security.Policy.Site.CreateFromUrl(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/Site.cs#L14C56-L14C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/Site.cs#L14C56-L14C77" }, { "DocsId": "M:System.Security.Policy.Site.CreateIdentityPermission(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/Site.cs#L15C74-L15C102" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/Site.cs#L15C74-L15C102" }, { "DocsId": "M:System.Security.Policy.Site.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/Site.cs#L16C50-L16C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/Site.cs#L16C50-L16C64" }, { "DocsId": "M:System.Security.Policy.Site.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/Site.cs#L17C46-L17C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/Site.cs#L17C46-L17C64" }, { "DocsId": "M:System.Security.Policy.Site.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/Site.cs#L18C46-L18C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/Site.cs#L18C46-L18C61" }, { "DocsId": "P:System.Security.Policy.Site.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/Site.cs#L12C36-L12C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/Site.cs#L12C36-L12C48" } ], "DocsId": "T:System.Security.Policy.Site", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/Site.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/Site.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.SiteMembershipCondition.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/SiteMembershipCondition.cs#L8C9-L8C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/SiteMembershipCondition.cs#L8C9-L8C56" }, { "DocsId": "M:System.Security.Policy.SiteMembershipCondition.Check(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/SiteMembershipCondition.cs#L10C48-L10C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/SiteMembershipCondition.cs#L10C48-L10C61" }, { "DocsId": "M:System.Security.Policy.SiteMembershipCondition.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/SiteMembershipCondition.cs#L11C46-L11C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/SiteMembershipCondition.cs#L11C46-L11C83" }, { "DocsId": "M:System.Security.Policy.SiteMembershipCondition.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/SiteMembershipCondition.cs#L12C50-L12C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/SiteMembershipCondition.cs#L12C50-L12C64" }, { "DocsId": "M:System.Security.Policy.SiteMembershipCondition.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/SiteMembershipCondition.cs#L13C50-L13C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/SiteMembershipCondition.cs#L13C50-L13C51" }, { "DocsId": "M:System.Security.Policy.SiteMembershipCondition.FromXml(System.Security.SecurityElement,System.Security.Policy.PolicyLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/SiteMembershipCondition.cs#L14C69-L14C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/SiteMembershipCondition.cs#L14C69-L14C70" }, { "DocsId": "M:System.Security.Policy.SiteMembershipCondition.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/SiteMembershipCondition.cs#L15C46-L15C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/SiteMembershipCondition.cs#L15C46-L15C64" }, { "DocsId": "M:System.Security.Policy.SiteMembershipCondition.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/SiteMembershipCondition.cs#L16C46-L16C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/SiteMembershipCondition.cs#L16C46-L16C61" }, { "DocsId": "M:System.Security.Policy.SiteMembershipCondition.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/SiteMembershipCondition.cs#L17C42-L17C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/SiteMembershipCondition.cs#L17C42-L17C74" }, { "DocsId": "M:System.Security.Policy.SiteMembershipCondition.ToXml(System.Security.Policy.PolicyLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/SiteMembershipCondition.cs#L18C59-L18C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/SiteMembershipCondition.cs#L18C59-L18C91" }, { "DocsId": "P:System.Security.Policy.SiteMembershipCondition.Site", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/SiteMembershipCondition.cs#L9C30-L9C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/SiteMembershipCondition.cs#L9C30-L9C34" } ], "DocsId": "T:System.Security.Policy.SiteMembershipCondition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/SiteMembershipCondition.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/SiteMembershipCondition.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.StrongName.#ctor(System.Security.Permissions.StrongNamePublicKeyBlob,System.String,System.Version)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongName.cs#L13C9-L13C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongName.cs#L13C9-L13C90" }, { "DocsId": "M:System.Security.Policy.StrongName.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongName.cs#L17C32-L17C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongName.cs#L17C32-L17C44" }, { "DocsId": "M:System.Security.Policy.StrongName.CreateIdentityPermission(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongName.cs#L18C74-L18C102" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongName.cs#L18C74-L18C102" }, { "DocsId": "M:System.Security.Policy.StrongName.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongName.cs#L19C50-L19C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongName.cs#L19C50-L19C64" }, { "DocsId": "M:System.Security.Policy.StrongName.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongName.cs#L20C46-L20C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongName.cs#L20C46-L20C64" }, { "DocsId": "M:System.Security.Policy.StrongName.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongName.cs#L21C46-L21C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongName.cs#L21C46-L21C61" }, { "DocsId": "P:System.Security.Policy.StrongName.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongName.cs#L14C36-L14C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongName.cs#L14C36-L14C48" }, { "DocsId": "P:System.Security.Policy.StrongName.PublicKey", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongName.cs#L15C58-L15C98" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongName.cs#L15C58-L15C98" }, { "DocsId": "P:System.Security.Policy.StrongName.Version", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongName.cs#L16C40-L16C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongName.cs#L16C40-L16C64" } ], "DocsId": "T:System.Security.Policy.StrongName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongName.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongName.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.StrongNameMembershipCondition.#ctor(System.Security.Permissions.StrongNamePublicKeyBlob,System.String,System.Version)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongNameMembershipCondition.cs#L13C9-L13C109" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongNameMembershipCondition.cs#L13C9-L13C109" }, { "DocsId": "M:System.Security.Policy.StrongNameMembershipCondition.Check(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongNameMembershipCondition.cs#L17C48-L17C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongNameMembershipCondition.cs#L17C48-L17C61" }, { "DocsId": "M:System.Security.Policy.StrongNameMembershipCondition.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongNameMembershipCondition.cs#L18C46-L18C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongNameMembershipCondition.cs#L18C46-L18C58" }, { "DocsId": "M:System.Security.Policy.StrongNameMembershipCondition.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongNameMembershipCondition.cs#L19C50-L19C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongNameMembershipCondition.cs#L19C50-L19C64" }, { "DocsId": "M:System.Security.Policy.StrongNameMembershipCondition.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongNameMembershipCondition.cs#L20C50-L20C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongNameMembershipCondition.cs#L20C50-L20C51" }, { "DocsId": "M:System.Security.Policy.StrongNameMembershipCondition.FromXml(System.Security.SecurityElement,System.Security.Policy.PolicyLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongNameMembershipCondition.cs#L21C69-L21C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongNameMembershipCondition.cs#L21C69-L21C70" }, { "DocsId": "M:System.Security.Policy.StrongNameMembershipCondition.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongNameMembershipCondition.cs#L22C46-L22C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongNameMembershipCondition.cs#L22C46-L22C64" }, { "DocsId": "M:System.Security.Policy.StrongNameMembershipCondition.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongNameMembershipCondition.cs#L23C46-L23C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongNameMembershipCondition.cs#L23C46-L23C61" }, { "DocsId": "M:System.Security.Policy.StrongNameMembershipCondition.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongNameMembershipCondition.cs#L24C42-L24C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongNameMembershipCondition.cs#L24C42-L24C74" }, { "DocsId": "M:System.Security.Policy.StrongNameMembershipCondition.ToXml(System.Security.Policy.PolicyLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongNameMembershipCondition.cs#L25C59-L25C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongNameMembershipCondition.cs#L25C59-L25C91" }, { "DocsId": "P:System.Security.Policy.StrongNameMembershipCondition.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongNameMembershipCondition.cs#L14C30-L14C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongNameMembershipCondition.cs#L14C30-L14C34" }, { "DocsId": "P:System.Security.Policy.StrongNameMembershipCondition.PublicKey", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongNameMembershipCondition.cs#L15C52-L15C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongNameMembershipCondition.cs#L15C52-L15C56" }, { "DocsId": "P:System.Security.Policy.StrongNameMembershipCondition.Version", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongNameMembershipCondition.cs#L16C34-L16C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongNameMembershipCondition.cs#L16C34-L16C38" } ], "DocsId": "T:System.Security.Policy.StrongNameMembershipCondition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongNameMembershipCondition.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/StrongNameMembershipCondition.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.TrustManagerContext.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/TrustManagerContext.cs#L8C9-L8C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/TrustManagerContext.cs#L8C9-L8C41" }, { "DocsId": "M:System.Security.Policy.TrustManagerContext.#ctor(System.Security.Policy.TrustManagerUIContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/TrustManagerContext.cs#L9C9-L9C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/TrustManagerContext.cs#L9C9-L9C72" }, { "DocsId": "P:System.Security.Policy.TrustManagerContext.IgnorePersistedDecision", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/TrustManagerContext.cs#L10C55-L10C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/TrustManagerContext.cs#L10C55-L10C59" }, { "DocsId": "P:System.Security.Policy.TrustManagerContext.KeepAlive", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/TrustManagerContext.cs#L11C41-L11C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/TrustManagerContext.cs#L11C41-L11C45" }, { "DocsId": "P:System.Security.Policy.TrustManagerContext.NoPrompt", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/TrustManagerContext.cs#L12C40-L12C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/TrustManagerContext.cs#L12C40-L12C44" }, { "DocsId": "P:System.Security.Policy.TrustManagerContext.Persist", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/TrustManagerContext.cs#L13C39-L13C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/TrustManagerContext.cs#L13C39-L13C43" }, { "DocsId": "P:System.Security.Policy.TrustManagerContext.UIContext", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/TrustManagerContext.cs#L14C58-L14C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/TrustManagerContext.cs#L14C58-L14C62" }, { "DocsId": "P:System.Security.Policy.TrustManagerContext.PreviousApplicationIdentity", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/TrustManagerContext.cs#L15C74-L15C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/TrustManagerContext.cs#L15C74-L15C78" } ], "DocsId": "T:System.Security.Policy.TrustManagerContext", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/TrustManagerContext.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/TrustManagerContext.cs" }, { "Members": [ { "DocsId": "F:System.Security.Policy.TrustManagerUIContext.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/TrustManagerContext.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/TrustManagerContext.cs" }, { "DocsId": "F:System.Security.Policy.TrustManagerUIContext.Install", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/TrustManagerContext.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/TrustManagerContext.cs" }, { "DocsId": "F:System.Security.Policy.TrustManagerUIContext.Run", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/TrustManagerContext.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/TrustManagerContext.cs" }, { "DocsId": "F:System.Security.Policy.TrustManagerUIContext.Upgrade", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/TrustManagerContext.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/TrustManagerContext.cs" } ], "DocsId": "T:System.Security.Policy.TrustManagerUIContext", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/TrustManagerContext.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/TrustManagerContext.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.UnionCodeGroup.#ctor(System.Security.Policy.IMembershipCondition,System.Security.Policy.PolicyStatement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/UnionCodeGroup.cs#L9C99-L9C164" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/UnionCodeGroup.cs#L9C99-L9C164" }, { "DocsId": "M:System.Security.Policy.UnionCodeGroup.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/UnionCodeGroup.cs#L11C44-L11C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/UnionCodeGroup.cs#L11C44-L11C70" }, { "DocsId": "M:System.Security.Policy.UnionCodeGroup.Resolve(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/UnionCodeGroup.cs#L12C70-L12C102" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/UnionCodeGroup.cs#L12C70-L12C102" }, { "DocsId": "M:System.Security.Policy.UnionCodeGroup.ResolveMatchingCodeGroups(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/UnionCodeGroup.cs#L13C82-L13C108" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/UnionCodeGroup.cs#L13C82-L13C108" }, { "DocsId": "P:System.Security.Policy.UnionCodeGroup.MergeLogic", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/UnionCodeGroup.cs#L10C51-L10C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/UnionCodeGroup.cs#L10C51-L10C63" } ], "DocsId": "T:System.Security.Policy.UnionCodeGroup", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/UnionCodeGroup.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/UnionCodeGroup.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.Url.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/Url.cs#L11C9-L11C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/Url.cs#L11C9-L11C36" }, { "DocsId": "M:System.Security.Policy.Url.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/Url.cs#L13C32-L13C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/Url.cs#L13C32-L13C44" }, { "DocsId": "M:System.Security.Policy.Url.CreateIdentityPermission(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/Url.cs#L14C74-L14C102" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/Url.cs#L14C74-L14C102" }, { "DocsId": "M:System.Security.Policy.Url.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/Url.cs#L15C50-L15C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/Url.cs#L15C50-L15C64" }, { "DocsId": "M:System.Security.Policy.Url.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/Url.cs#L16C46-L16C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/Url.cs#L16C46-L16C64" }, { "DocsId": "M:System.Security.Policy.Url.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/Url.cs#L17C46-L17C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/Url.cs#L17C46-L17C61" }, { "DocsId": "P:System.Security.Policy.Url.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/Url.cs#L12C37-L12C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/Url.cs#L12C37-L12C49" } ], "DocsId": "T:System.Security.Policy.Url", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/Url.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/Url.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.UrlMembershipCondition.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/UrlMembershipCondition.cs#L8C9-L8C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/UrlMembershipCondition.cs#L8C9-L8C54" }, { "DocsId": "M:System.Security.Policy.UrlMembershipCondition.Check(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/UrlMembershipCondition.cs#L10C48-L10C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/UrlMembershipCondition.cs#L10C48-L10C61" }, { "DocsId": "M:System.Security.Policy.UrlMembershipCondition.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/UrlMembershipCondition.cs#L11C46-L11C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/UrlMembershipCondition.cs#L11C46-L11C83" }, { "DocsId": "M:System.Security.Policy.UrlMembershipCondition.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/UrlMembershipCondition.cs#L12C52-L12C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/UrlMembershipCondition.cs#L12C52-L12C68" }, { "DocsId": "M:System.Security.Policy.UrlMembershipCondition.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/UrlMembershipCondition.cs#L13C50-L13C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/UrlMembershipCondition.cs#L13C50-L13C51" }, { "DocsId": "M:System.Security.Policy.UrlMembershipCondition.FromXml(System.Security.SecurityElement,System.Security.Policy.PolicyLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/UrlMembershipCondition.cs#L14C69-L14C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/UrlMembershipCondition.cs#L14C69-L14C70" }, { "DocsId": "M:System.Security.Policy.UrlMembershipCondition.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/UrlMembershipCondition.cs#L15C46-L15C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/UrlMembershipCondition.cs#L15C46-L15C64" }, { "DocsId": "M:System.Security.Policy.UrlMembershipCondition.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/UrlMembershipCondition.cs#L16C46-L16C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/UrlMembershipCondition.cs#L16C46-L16C61" }, { "DocsId": "M:System.Security.Policy.UrlMembershipCondition.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/UrlMembershipCondition.cs#L17C42-L17C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/UrlMembershipCondition.cs#L17C42-L17C74" }, { "DocsId": "M:System.Security.Policy.UrlMembershipCondition.ToXml(System.Security.Policy.PolicyLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/UrlMembershipCondition.cs#L18C59-L18C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/UrlMembershipCondition.cs#L18C59-L18C91" }, { "DocsId": "P:System.Security.Policy.UrlMembershipCondition.Url", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/UrlMembershipCondition.cs#L9C29-L9C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/UrlMembershipCondition.cs#L9C29-L9C33" } ], "DocsId": "T:System.Security.Policy.UrlMembershipCondition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/UrlMembershipCondition.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/UrlMembershipCondition.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.Zone.#ctor(System.Security.SecurityZone)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/Zone.cs#L11C9-L11C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/Zone.cs#L11C9-L11C43" }, { "DocsId": "M:System.Security.Policy.Zone.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/Zone.cs#L13C32-L13C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/Zone.cs#L13C32-L13C44" }, { "DocsId": "M:System.Security.Policy.Zone.CreateFromUrl(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/Zone.cs#L14C56-L14C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/Zone.cs#L14C56-L14C77" }, { "DocsId": "M:System.Security.Policy.Zone.CreateIdentityPermission(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/Zone.cs#L15C74-L15C102" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/Zone.cs#L15C74-L15C102" }, { "DocsId": "M:System.Security.Policy.Zone.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/Zone.cs#L16C50-L16C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/Zone.cs#L16C50-L16C64" }, { "DocsId": "M:System.Security.Policy.Zone.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/Zone.cs#L17C46-L17C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/Zone.cs#L17C46-L17C64" }, { "DocsId": "M:System.Security.Policy.Zone.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/Zone.cs#L18C46-L18C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/Zone.cs#L18C46-L18C61" }, { "DocsId": "P:System.Security.Policy.Zone.SecurityZone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/Zone.cs#L12C50-L12C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/Zone.cs#L12C50-L12C79" } ], "DocsId": "T:System.Security.Policy.Zone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/Zone.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/Zone.cs" }, { "Members": [ { "DocsId": "M:System.Security.Policy.ZoneMembershipCondition.#ctor(System.Security.SecurityZone)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ZoneMembershipCondition.cs#L8C9-L8C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ZoneMembershipCondition.cs#L8C9-L8C62" }, { "DocsId": "M:System.Security.Policy.ZoneMembershipCondition.Check(System.Security.Policy.Evidence)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ZoneMembershipCondition.cs#L10C48-L10C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ZoneMembershipCondition.cs#L10C48-L10C61" }, { "DocsId": "M:System.Security.Policy.ZoneMembershipCondition.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ZoneMembershipCondition.cs#L11C46-L11C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ZoneMembershipCondition.cs#L11C46-L11C58" }, { "DocsId": "M:System.Security.Policy.ZoneMembershipCondition.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ZoneMembershipCondition.cs#L12C50-L12C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ZoneMembershipCondition.cs#L12C50-L12C64" }, { "DocsId": "M:System.Security.Policy.ZoneMembershipCondition.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ZoneMembershipCondition.cs#L13C50-L13C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ZoneMembershipCondition.cs#L13C50-L13C51" }, { "DocsId": "M:System.Security.Policy.ZoneMembershipCondition.FromXml(System.Security.SecurityElement,System.Security.Policy.PolicyLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ZoneMembershipCondition.cs#L14C69-L14C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ZoneMembershipCondition.cs#L14C69-L14C70" }, { "DocsId": "M:System.Security.Policy.ZoneMembershipCondition.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ZoneMembershipCondition.cs#L15C46-L15C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ZoneMembershipCondition.cs#L15C46-L15C64" }, { "DocsId": "M:System.Security.Policy.ZoneMembershipCondition.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ZoneMembershipCondition.cs#L16C46-L16C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ZoneMembershipCondition.cs#L16C46-L16C61" }, { "DocsId": "M:System.Security.Policy.ZoneMembershipCondition.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ZoneMembershipCondition.cs#L17C42-L17C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ZoneMembershipCondition.cs#L17C42-L17C74" }, { "DocsId": "M:System.Security.Policy.ZoneMembershipCondition.ToXml(System.Security.Policy.PolicyLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ZoneMembershipCondition.cs#L18C59-L18C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ZoneMembershipCondition.cs#L18C59-L18C91" }, { "DocsId": "P:System.Security.Policy.ZoneMembershipCondition.SecurityZone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ZoneMembershipCondition.cs#L9C44-L9C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ZoneMembershipCondition.cs#L9C44-L9C48" } ], "DocsId": "T:System.Security.Policy.ZoneMembershipCondition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Policy/ZoneMembershipCondition.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Policy/ZoneMembershipCondition.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.DataProtectionPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermission.cs#L11C9-L11C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermission.cs#L11C9-L11C67" }, { "DocsId": "M:System.Security.Permissions.DataProtectionPermission.#ctor(System.Security.Permissions.DataProtectionPermissionFlags)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermission.cs#L12C9-L12C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermission.cs#L12C9-L12C80" }, { "DocsId": "M:System.Security.Permissions.DataProtectionPermission.IsUnrestricted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermission.cs#L13C41-L13C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermission.cs#L13C41-L13C46" }, { "DocsId": "M:System.Security.Permissions.DataProtectionPermission.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermission.cs#L15C46-L15C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermission.cs#L15C46-L15C58" }, { "DocsId": "M:System.Security.Permissions.DataProtectionPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermission.cs#L16C65-L16C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermission.cs#L16C65-L16C77" }, { "DocsId": "M:System.Security.Permissions.DataProtectionPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermission.cs#L17C69-L17C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermission.cs#L17C69-L17C81" }, { "DocsId": "M:System.Security.Permissions.DataProtectionPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermission.cs#L18C64-L18C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermission.cs#L18C64-L18C69" }, { "DocsId": "M:System.Security.Permissions.DataProtectionPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermission.cs#L19C73-L19C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermission.cs#L19C73-L19C74" }, { "DocsId": "M:System.Security.Permissions.DataProtectionPermission.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermission.cs#L20C51-L20C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermission.cs#L20C51-L20C63" }, { "DocsId": "P:System.Security.Permissions.DataProtectionPermission.Flags", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermission.cs#L14C54-L14C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermission.cs#L14C54-L14C58" } ], "DocsId": "T:System.Security.Permissions.DataProtectionPermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermission.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.DataProtectionPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionAttribute.cs#L13C75-L13C108" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionAttribute.cs#L13C75-L13C108" }, { "DocsId": "M:System.Security.Permissions.DataProtectionPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionAttribute.cs#L19C58-L19C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionAttribute.cs#L19C58-L19C86" }, { "DocsId": "P:System.Security.Permissions.DataProtectionPermissionAttribute.Flags", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionAttribute.cs#L14C54-L14C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionAttribute.cs#L14C54-L14C58" }, { "DocsId": "P:System.Security.Permissions.DataProtectionPermissionAttribute.ProtectData", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionAttribute.cs#L15C35-L15C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionAttribute.cs#L15C35-L15C39" }, { "DocsId": "P:System.Security.Permissions.DataProtectionPermissionAttribute.UnprotectData", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionAttribute.cs#L16C37-L16C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionAttribute.cs#L16C37-L16C41" }, { "DocsId": "P:System.Security.Permissions.DataProtectionPermissionAttribute.ProtectMemory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionAttribute.cs#L17C37-L17C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionAttribute.cs#L17C37-L17C41" }, { "DocsId": "P:System.Security.Permissions.DataProtectionPermissionAttribute.UnprotectMemory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionAttribute.cs#L18C39-L18C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionAttribute.cs#L18C39-L18C43" } ], "DocsId": "T:System.Security.Permissions.DataProtectionPermissionAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionAttribute.cs" }, { "Members": [ { "DocsId": "F:System.Security.Permissions.DataProtectionPermissionFlags.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionFlags.cs" }, { "DocsId": "F:System.Security.Permissions.DataProtectionPermissionFlags.NoFlags", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionFlags.cs" }, { "DocsId": "F:System.Security.Permissions.DataProtectionPermissionFlags.ProtectData", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionFlags.cs" }, { "DocsId": "F:System.Security.Permissions.DataProtectionPermissionFlags.UnprotectData", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionFlags.cs" }, { "DocsId": "F:System.Security.Permissions.DataProtectionPermissionFlags.ProtectMemory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionFlags.cs" }, { "DocsId": "F:System.Security.Permissions.DataProtectionPermissionFlags.UnprotectMemory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionFlags.cs" }, { "DocsId": "F:System.Security.Permissions.DataProtectionPermissionFlags.AllFlags", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionFlags.cs" } ], "DocsId": "T:System.Security.Permissions.DataProtectionPermissionFlags", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/DataProtectionPermissionFlags.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.EnvironmentPermission.#ctor(System.Security.Permissions.EnvironmentPermissionAccess,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermission.cs#L11C9-L11C92" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermission.cs#L11C9-L11C92" }, { "DocsId": "M:System.Security.Permissions.EnvironmentPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermission.cs#L12C9-L12C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermission.cs#L12C9-L12C64" }, { "DocsId": "M:System.Security.Permissions.EnvironmentPermission.AddPathList(System.Security.Permissions.EnvironmentPermissionAccess,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermission.cs#L13C86-L13C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermission.cs#L13C86-L13C87" }, { "DocsId": "M:System.Security.Permissions.EnvironmentPermission.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermission.cs#L14C46-L14C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermission.cs#L14C46-L14C74" }, { "DocsId": "M:System.Security.Permissions.EnvironmentPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermission.cs#L15C61-L15C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermission.cs#L15C61-L15C62" }, { "DocsId": "M:System.Security.Permissions.EnvironmentPermission.GetPathList(System.Security.Permissions.EnvironmentPermissionAccess)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermission.cs#L16C71-L16C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermission.cs#L16C71-L16C83" }, { "DocsId": "M:System.Security.Permissions.EnvironmentPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermission.cs#L17C69-L17C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermission.cs#L17C69-L17C97" }, { "DocsId": "M:System.Security.Permissions.EnvironmentPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermission.cs#L18C63-L18C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermission.cs#L18C63-L18C76" }, { "DocsId": "M:System.Security.Permissions.EnvironmentPermission.IsUnrestricted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermission.cs#L19C40-L19C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermission.cs#L19C40-L19C53" }, { "DocsId": "M:System.Security.Permissions.EnvironmentPermission.SetPathList(System.Security.Permissions.EnvironmentPermissionAccess,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermission.cs#L20C86-L20C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermission.cs#L20C86-L20C87" }, { "DocsId": "M:System.Security.Permissions.EnvironmentPermission.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermission.cs#L21C51-L21C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermission.cs#L21C51-L21C83" }, { "DocsId": "M:System.Security.Permissions.EnvironmentPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermission.cs#L22C64-L22C92" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermission.cs#L22C64-L22C92" } ], "DocsId": "T:System.Security.Permissions.EnvironmentPermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermission.cs" }, { "Members": [ { "DocsId": "F:System.Security.Permissions.EnvironmentPermissionAccess.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermissionAccess.cs" }, { "DocsId": "F:System.Security.Permissions.EnvironmentPermissionAccess.AllAccess", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermissionAccess.cs" }, { "DocsId": "F:System.Security.Permissions.EnvironmentPermissionAccess.NoAccess", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermissionAccess.cs" }, { "DocsId": "F:System.Security.Permissions.EnvironmentPermissionAccess.Read", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermissionAccess.cs" }, { "DocsId": "F:System.Security.Permissions.EnvironmentPermissionAccess.Write", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermissionAccess.cs" } ], "DocsId": "T:System.Security.Permissions.EnvironmentPermissionAccess", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermissionAccess.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.EnvironmentPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermissionAttribute.cs#L12C72-L12C105" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermissionAttribute.cs#L12C72-L12C105" }, { "DocsId": "M:System.Security.Permissions.EnvironmentPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermissionAttribute.cs#L16C58-L16C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermissionAttribute.cs#L16C58-L16C86" }, { "DocsId": "P:System.Security.Permissions.EnvironmentPermissionAttribute.All", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermissionAttribute.cs#L13C29-L13C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermissionAttribute.cs#L13C29-L13C33" }, { "DocsId": "P:System.Security.Permissions.EnvironmentPermissionAttribute.Read", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermissionAttribute.cs#L14C30-L14C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermissionAttribute.cs#L14C30-L14C34" }, { "DocsId": "P:System.Security.Permissions.EnvironmentPermissionAttribute.Write", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermissionAttribute.cs#L15C31-L15C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermissionAttribute.cs#L15C31-L15C35" } ], "DocsId": "T:System.Security.Permissions.EnvironmentPermissionAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/EnvironmentPermissionAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.FileDialogPermission.#ctor(System.Security.Permissions.FileDialogPermissionAccess)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermission.cs#L11C9-L11C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermission.cs#L11C9-L11C75" }, { "DocsId": "M:System.Security.Permissions.FileDialogPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermission.cs#L12C9-L12C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermission.cs#L12C9-L12C63" }, { "DocsId": "M:System.Security.Permissions.FileDialogPermission.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermission.cs#L14C46-L14C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermission.cs#L14C46-L14C58" }, { "DocsId": "M:System.Security.Permissions.FileDialogPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermission.cs#L15C61-L15C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermission.cs#L15C61-L15C62" }, { "DocsId": "M:System.Security.Permissions.FileDialogPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermission.cs#L16C69-L16C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermission.cs#L16C69-L16C97" }, { "DocsId": "M:System.Security.Permissions.FileDialogPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermission.cs#L17C63-L17C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermission.cs#L17C63-L17C76" }, { "DocsId": "M:System.Security.Permissions.FileDialogPermission.IsUnrestricted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermission.cs#L18C40-L18C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermission.cs#L18C40-L18C53" }, { "DocsId": "M:System.Security.Permissions.FileDialogPermission.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermission.cs#L19C51-L19C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermission.cs#L19C51-L19C83" }, { "DocsId": "M:System.Security.Permissions.FileDialogPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermission.cs#L20C65-L20C93" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermission.cs#L20C65-L20C93" }, { "DocsId": "P:System.Security.Permissions.FileDialogPermission.Access", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermission.cs#L13C52-L13C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermission.cs#L13C52-L13C56" } ], "DocsId": "T:System.Security.Permissions.FileDialogPermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermission.cs" }, { "Members": [ { "DocsId": "F:System.Security.Permissions.FileDialogPermissionAccess.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermissionAccess.cs" }, { "DocsId": "F:System.Security.Permissions.FileDialogPermissionAccess.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermissionAccess.cs" }, { "DocsId": "F:System.Security.Permissions.FileDialogPermissionAccess.Open", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermissionAccess.cs" }, { "DocsId": "F:System.Security.Permissions.FileDialogPermissionAccess.OpenSave", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermissionAccess.cs" }, { "DocsId": "F:System.Security.Permissions.FileDialogPermissionAccess.Save", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermissionAccess.cs" } ], "DocsId": "T:System.Security.Permissions.FileDialogPermissionAccess", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermissionAccess.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.FileDialogPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermissionAttribute.cs#L12C71-L12C104" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermissionAttribute.cs#L12C71-L12C104" }, { "DocsId": "M:System.Security.Permissions.FileDialogPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermissionAttribute.cs#L15C58-L15C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermissionAttribute.cs#L15C58-L15C86" }, { "DocsId": "P:System.Security.Permissions.FileDialogPermissionAttribute.Open", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermissionAttribute.cs#L13C28-L13C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermissionAttribute.cs#L13C28-L13C32" }, { "DocsId": "P:System.Security.Permissions.FileDialogPermissionAttribute.Save", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermissionAttribute.cs#L14C28-L14C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermissionAttribute.cs#L14C28-L14C32" } ], "DocsId": "T:System.Security.Permissions.FileDialogPermissionAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileDialogPermissionAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.FileIOPermission.#ctor(System.Security.Permissions.FileIOPermissionAccess,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L11C9-L11C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L11C9-L11C80" }, { "DocsId": "M:System.Security.Permissions.FileIOPermission.#ctor(System.Security.Permissions.FileIOPermissionAccess,System.String[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L12C9-L12C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L12C9-L12C86" }, { "DocsId": "M:System.Security.Permissions.FileIOPermission.#ctor(System.Security.Permissions.FileIOPermissionAccess,System.Security.AccessControl.AccessControlActions,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L13C9-L13C124" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L13C9-L13C124" }, { "DocsId": "M:System.Security.Permissions.FileIOPermission.#ctor(System.Security.Permissions.FileIOPermissionAccess,System.Security.AccessControl.AccessControlActions,System.String[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L14C9-L14C130" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L14C9-L14C130" }, { "DocsId": "M:System.Security.Permissions.FileIOPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L15C9-L15C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L15C9-L15C59" }, { "DocsId": "M:System.Security.Permissions.FileIOPermission.AddPathList(System.Security.Permissions.FileIOPermissionAccess,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L18C79-L18C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L18C79-L18C80" }, { "DocsId": "M:System.Security.Permissions.FileIOPermission.AddPathList(System.Security.Permissions.FileIOPermissionAccess,System.String[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L19C85-L19C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L19C85-L19C86" }, { "DocsId": "M:System.Security.Permissions.FileIOPermission.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L20C46-L20C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L20C46-L20C58" }, { "DocsId": "M:System.Security.Permissions.FileIOPermission.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L21C50-L21C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L21C50-L21C64" }, { "DocsId": "M:System.Security.Permissions.FileIOPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L22C61-L22C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L22C61-L22C62" }, { "DocsId": "M:System.Security.Permissions.FileIOPermission.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L23C46-L23C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L23C46-L23C64" }, { "DocsId": "M:System.Security.Permissions.FileIOPermission.GetPathList(System.Security.Permissions.FileIOPermissionAccess)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L24C70-L24C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L24C70-L24C82" }, { "DocsId": "M:System.Security.Permissions.FileIOPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L25C69-L25C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L25C69-L25C97" }, { "DocsId": "M:System.Security.Permissions.FileIOPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L26C63-L26C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L26C63-L26C76" }, { "DocsId": "M:System.Security.Permissions.FileIOPermission.IsUnrestricted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L27C40-L27C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L27C40-L27C53" }, { "DocsId": "M:System.Security.Permissions.FileIOPermission.SetPathList(System.Security.Permissions.FileIOPermissionAccess,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L28C79-L28C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L28C79-L28C80" }, { "DocsId": "M:System.Security.Permissions.FileIOPermission.SetPathList(System.Security.Permissions.FileIOPermissionAccess,System.String[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L29C85-L29C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L29C85-L29C86" }, { "DocsId": "M:System.Security.Permissions.FileIOPermission.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L30C51-L30C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L30C51-L30C83" }, { "DocsId": "M:System.Security.Permissions.FileIOPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L31C64-L31C92" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L31C64-L31C92" }, { "DocsId": "P:System.Security.Permissions.FileIOPermission.AllFiles", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L16C50-L16C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L16C50-L16C54" }, { "DocsId": "P:System.Security.Permissions.FileIOPermission.AllLocalFiles", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L17C55-L17C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs#L17C55-L17C59" } ], "DocsId": "T:System.Security.Permissions.FileIOPermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermission.cs" }, { "Members": [ { "DocsId": "F:System.Security.Permissions.FileIOPermissionAccess.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAccess.cs" }, { "DocsId": "F:System.Security.Permissions.FileIOPermissionAccess.AllAccess", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAccess.cs" }, { "DocsId": "F:System.Security.Permissions.FileIOPermissionAccess.Append", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAccess.cs" }, { "DocsId": "F:System.Security.Permissions.FileIOPermissionAccess.NoAccess", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAccess.cs" }, { "DocsId": "F:System.Security.Permissions.FileIOPermissionAccess.PathDiscovery", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAccess.cs" }, { "DocsId": "F:System.Security.Permissions.FileIOPermissionAccess.Read", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAccess.cs" }, { "DocsId": "F:System.Security.Permissions.FileIOPermissionAccess.Write", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAccess.cs" } ], "DocsId": "T:System.Security.Permissions.FileIOPermissionAccess", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAccess.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.FileIOPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAttribute.cs#L12C67-L12C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAttribute.cs#L12C67-L12C83" }, { "DocsId": "M:System.Security.Permissions.FileIOPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAttribute.cs#L24C58-L24C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAttribute.cs#L24C58-L24C70" }, { "DocsId": "P:System.Security.Permissions.FileIOPermissionAttribute.Read", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAttribute.cs#L13C30-L13C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAttribute.cs#L13C30-L13C34" }, { "DocsId": "P:System.Security.Permissions.FileIOPermissionAttribute.Write", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAttribute.cs#L14C31-L14C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAttribute.cs#L14C31-L14C35" }, { "DocsId": "P:System.Security.Permissions.FileIOPermissionAttribute.Append", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAttribute.cs#L15C32-L15C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAttribute.cs#L15C32-L15C36" }, { "DocsId": "P:System.Security.Permissions.FileIOPermissionAttribute.PathDiscovery", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAttribute.cs#L16C39-L16C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAttribute.cs#L16C39-L16C43" }, { "DocsId": "P:System.Security.Permissions.FileIOPermissionAttribute.ViewAccessControl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAttribute.cs#L17C43-L17C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAttribute.cs#L17C43-L17C47" }, { "DocsId": "P:System.Security.Permissions.FileIOPermissionAttribute.ChangeAccessControl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAttribute.cs#L18C45-L18C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAttribute.cs#L18C45-L18C49" }, { "DocsId": "P:System.Security.Permissions.FileIOPermissionAttribute.All", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAttribute.cs#L20C29-L20C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAttribute.cs#L20C29-L20C33" }, { "DocsId": "P:System.Security.Permissions.FileIOPermissionAttribute.ViewAndModify", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAttribute.cs#L21C39-L21C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAttribute.cs#L21C39-L21C43" }, { "DocsId": "P:System.Security.Permissions.FileIOPermissionAttribute.AllFiles", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAttribute.cs#L22C50-L22C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAttribute.cs#L22C50-L22C54" }, { "DocsId": "P:System.Security.Permissions.FileIOPermissionAttribute.AllLocalFiles", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAttribute.cs#L23C55-L23C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAttribute.cs#L23C55-L23C59" } ], "DocsId": "T:System.Security.Permissions.FileIOPermissionAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/FileIOPermissionAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.GacIdentityPermission.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/GacIdentityPermission.cs#L11C9-L11C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/GacIdentityPermission.cs#L11C9-L11C43" }, { "DocsId": "M:System.Security.Permissions.GacIdentityPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/GacIdentityPermission.cs#L12C9-L12C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/GacIdentityPermission.cs#L12C9-L12C64" }, { "DocsId": "M:System.Security.Permissions.GacIdentityPermission.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/GacIdentityPermission.cs#L13C46-L13C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/GacIdentityPermission.cs#L13C46-L13C74" }, { "DocsId": "M:System.Security.Permissions.GacIdentityPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/GacIdentityPermission.cs#L14C73-L14C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/GacIdentityPermission.cs#L14C73-L14C74" }, { "DocsId": "M:System.Security.Permissions.GacIdentityPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/GacIdentityPermission.cs#L15C69-L15C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/GacIdentityPermission.cs#L15C69-L15C97" }, { "DocsId": "M:System.Security.Permissions.GacIdentityPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/GacIdentityPermission.cs#L16C63-L16C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/GacIdentityPermission.cs#L16C63-L16C76" }, { "DocsId": "M:System.Security.Permissions.GacIdentityPermission.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/GacIdentityPermission.cs#L17C51-L17C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/GacIdentityPermission.cs#L17C51-L17C83" }, { "DocsId": "M:System.Security.Permissions.GacIdentityPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/GacIdentityPermission.cs#L18C65-L18C93" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/GacIdentityPermission.cs#L18C65-L18C93" } ], "DocsId": "T:System.Security.Permissions.GacIdentityPermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/GacIdentityPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/GacIdentityPermission.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.GacIdentityPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/GacIdentityPermissionAttribute.cs#L12C72-L12C105" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/GacIdentityPermissionAttribute.cs#L12C72-L12C105" }, { "DocsId": "M:System.Security.Permissions.GacIdentityPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/GacIdentityPermissionAttribute.cs#L13C58-L13C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/GacIdentityPermissionAttribute.cs#L13C58-L13C86" } ], "DocsId": "T:System.Security.Permissions.GacIdentityPermissionAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/GacIdentityPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/GacIdentityPermissionAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.HostProtectionAttribute.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionAttribute.cs#L12C44-L12C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionAttribute.cs#L12C44-L12C77" }, { "DocsId": "M:System.Security.Permissions.HostProtectionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionAttribute.cs#L13C65-L13C98" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionAttribute.cs#L13C65-L13C98" }, { "DocsId": "M:System.Security.Permissions.HostProtectionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionAttribute.cs#L24C58-L24C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionAttribute.cs#L24C58-L24C86" }, { "DocsId": "P:System.Security.Permissions.HostProtectionAttribute.ExternalProcessMgmt", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionAttribute.cs#L14C43-L14C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionAttribute.cs#L14C43-L14C47" }, { "DocsId": "P:System.Security.Permissions.HostProtectionAttribute.ExternalThreading", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionAttribute.cs#L15C41-L15C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionAttribute.cs#L15C41-L15C45" }, { "DocsId": "P:System.Security.Permissions.HostProtectionAttribute.MayLeakOnAbort", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionAttribute.cs#L16C38-L16C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionAttribute.cs#L16C38-L16C42" }, { "DocsId": "P:System.Security.Permissions.HostProtectionAttribute.Resources", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionAttribute.cs#L17C51-L17C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionAttribute.cs#L17C51-L17C55" }, { "DocsId": "P:System.Security.Permissions.HostProtectionAttribute.SecurityInfrastructure", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionAttribute.cs#L18C46-L18C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionAttribute.cs#L18C46-L18C50" }, { "DocsId": "P:System.Security.Permissions.HostProtectionAttribute.SelfAffectingProcessMgmt", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionAttribute.cs#L19C48-L19C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionAttribute.cs#L19C48-L19C52" }, { "DocsId": "P:System.Security.Permissions.HostProtectionAttribute.SelfAffectingThreading", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionAttribute.cs#L20C46-L20C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionAttribute.cs#L20C46-L20C50" }, { "DocsId": "P:System.Security.Permissions.HostProtectionAttribute.SharedState", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionAttribute.cs#L21C35-L21C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionAttribute.cs#L21C35-L21C39" }, { "DocsId": "P:System.Security.Permissions.HostProtectionAttribute.Synchronization", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionAttribute.cs#L22C39-L22C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionAttribute.cs#L22C39-L22C43" }, { "DocsId": "P:System.Security.Permissions.HostProtectionAttribute.UI", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionAttribute.cs#L23C26-L23C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionAttribute.cs#L23C26-L23C30" } ], "DocsId": "T:System.Security.Permissions.HostProtectionAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionAttribute.cs" }, { "Members": [ { "DocsId": "F:System.Security.Permissions.HostProtectionResource.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionResource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionResource.cs" }, { "DocsId": "F:System.Security.Permissions.HostProtectionResource.All", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionResource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionResource.cs" }, { "DocsId": "F:System.Security.Permissions.HostProtectionResource.ExternalProcessMgmt", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionResource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionResource.cs" }, { "DocsId": "F:System.Security.Permissions.HostProtectionResource.ExternalThreading", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionResource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionResource.cs" }, { "DocsId": "F:System.Security.Permissions.HostProtectionResource.MayLeakOnAbort", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionResource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionResource.cs" }, { "DocsId": "F:System.Security.Permissions.HostProtectionResource.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionResource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionResource.cs" }, { "DocsId": "F:System.Security.Permissions.HostProtectionResource.SecurityInfrastructure", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionResource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionResource.cs" }, { "DocsId": "F:System.Security.Permissions.HostProtectionResource.SelfAffectingProcessMgmt", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionResource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionResource.cs" }, { "DocsId": "F:System.Security.Permissions.HostProtectionResource.SelfAffectingThreading", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionResource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionResource.cs" }, { "DocsId": "F:System.Security.Permissions.HostProtectionResource.SharedState", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionResource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionResource.cs" }, { "DocsId": "F:System.Security.Permissions.HostProtectionResource.Synchronization", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionResource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionResource.cs" }, { "DocsId": "F:System.Security.Permissions.HostProtectionResource.UI", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionResource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionResource.cs" } ], "DocsId": "T:System.Security.Permissions.HostProtectionResource", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionResource.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/HostProtectionResource.cs" }, { "Members": [ { "DocsId": "F:System.Security.Permissions.IsolatedStorageContainment.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageContainment.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageContainment.cs" }, { "DocsId": "F:System.Security.Permissions.IsolatedStorageContainment.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageContainment.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageContainment.cs" }, { "DocsId": "F:System.Security.Permissions.IsolatedStorageContainment.DomainIsolationByUser", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageContainment.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageContainment.cs" }, { "DocsId": "F:System.Security.Permissions.IsolatedStorageContainment.ApplicationIsolationByUser", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageContainment.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageContainment.cs" }, { "DocsId": "F:System.Security.Permissions.IsolatedStorageContainment.AssemblyIsolationByUser", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageContainment.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageContainment.cs" }, { "DocsId": "F:System.Security.Permissions.IsolatedStorageContainment.DomainIsolationByMachine", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageContainment.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageContainment.cs" }, { "DocsId": "F:System.Security.Permissions.IsolatedStorageContainment.AssemblyIsolationByMachine", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageContainment.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageContainment.cs" }, { "DocsId": "F:System.Security.Permissions.IsolatedStorageContainment.ApplicationIsolationByMachine", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageContainment.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageContainment.cs" }, { "DocsId": "F:System.Security.Permissions.IsolatedStorageContainment.DomainIsolationByRoamingUser", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageContainment.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageContainment.cs" }, { "DocsId": "F:System.Security.Permissions.IsolatedStorageContainment.AssemblyIsolationByRoamingUser", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageContainment.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageContainment.cs" }, { "DocsId": "F:System.Security.Permissions.IsolatedStorageContainment.ApplicationIsolationByRoamingUser", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageContainment.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageContainment.cs" }, { "DocsId": "F:System.Security.Permissions.IsolatedStorageContainment.AdministerIsolatedStorageByUser", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageContainment.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageContainment.cs" }, { "DocsId": "F:System.Security.Permissions.IsolatedStorageContainment.UnrestrictedIsolatedStorage", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageContainment.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageContainment.cs" } ], "DocsId": "T:System.Security.Permissions.IsolatedStorageContainment", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageContainment.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageContainment.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.IsolatedStorageFilePermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageFilePermission.cs#L11C71-L11C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageFilePermission.cs#L11C71-L11C86" }, { "DocsId": "M:System.Security.Permissions.IsolatedStorageFilePermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageFilePermission.cs#L12C65-L12C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageFilePermission.cs#L12C65-L12C77" }, { "DocsId": "M:System.Security.Permissions.IsolatedStorageFilePermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageFilePermission.cs#L13C63-L13C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageFilePermission.cs#L13C63-L13C76" }, { "DocsId": "M:System.Security.Permissions.IsolatedStorageFilePermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageFilePermission.cs#L14C69-L14C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageFilePermission.cs#L14C69-L14C81" }, { "DocsId": "M:System.Security.Permissions.IsolatedStorageFilePermission.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageFilePermission.cs#L15C46-L15C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageFilePermission.cs#L15C46-L15C58" }, { "DocsId": "M:System.Security.Permissions.IsolatedStorageFilePermission.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageFilePermission.cs#L16C51-L16C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageFilePermission.cs#L16C51-L16C63" } ], "DocsId": "T:System.Security.Permissions.IsolatedStorageFilePermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageFilePermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageFilePermission.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.IsolatedStorageFilePermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageFilePermissionAttribute.cs#L14C80-L14C96" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageFilePermissionAttribute.cs#L14C80-L14C96" }, { "DocsId": "M:System.Security.Permissions.IsolatedStorageFilePermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageFilePermissionAttribute.cs#L15C58-L15C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageFilePermissionAttribute.cs#L15C58-L15C70" } ], "DocsId": "T:System.Security.Permissions.IsolatedStorageFilePermissionAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageFilePermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStorageFilePermissionAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.IsolatedStoragePermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStoragePermission.cs#L11C9-L11C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStoragePermission.cs#L11C9-L11C71" }, { "DocsId": "M:System.Security.Permissions.IsolatedStoragePermission.IsUnrestricted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStoragePermission.cs#L14C40-L14C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStoragePermission.cs#L14C40-L14C53" }, { "DocsId": "M:System.Security.Permissions.IsolatedStoragePermission.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStoragePermission.cs#L15C51-L15C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStoragePermission.cs#L15C51-L15C83" }, { "DocsId": "M:System.Security.Permissions.IsolatedStoragePermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStoragePermission.cs#L16C61-L16C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStoragePermission.cs#L16C61-L16C62" }, { "DocsId": "P:System.Security.Permissions.IsolatedStoragePermission.UserQuota", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStoragePermission.cs#L12C33-L12C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStoragePermission.cs#L12C33-L12C37" }, { "DocsId": "P:System.Security.Permissions.IsolatedStoragePermission.UsageAllowed", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStoragePermission.cs#L13C58-L13C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStoragePermission.cs#L13C58-L13C62" } ], "DocsId": "T:System.Security.Permissions.IsolatedStoragePermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStoragePermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStoragePermission.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.IsolatedStoragePermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStoragePermissionAttribute.cs#L11C79-L11C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStoragePermissionAttribute.cs#L11C79-L11C95" }, { "DocsId": "P:System.Security.Permissions.IsolatedStoragePermissionAttribute.UserQuota", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStoragePermissionAttribute.cs#L12C33-L12C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStoragePermissionAttribute.cs#L12C33-L12C37" }, { "DocsId": "P:System.Security.Permissions.IsolatedStoragePermissionAttribute.UsageAllowed", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStoragePermissionAttribute.cs#L13C58-L13C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStoragePermissionAttribute.cs#L13C58-L13C62" } ], "DocsId": "T:System.Security.Permissions.IsolatedStoragePermissionAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStoragePermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IsolatedStoragePermissionAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.IUnrestrictedPermission.IsUnrestricted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IUnrestrictedPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IUnrestrictedPermission.cs" } ], "DocsId": "T:System.Security.Permissions.IUnrestrictedPermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IUnrestrictedPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/IUnrestrictedPermission.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.KeyContainerPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermission.cs#L11C9-L11C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermission.cs#L11C9-L11C65" }, { "DocsId": "M:System.Security.Permissions.KeyContainerPermission.#ctor(System.Security.Permissions.KeyContainerPermissionFlags)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermission.cs#L12C9-L12C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermission.cs#L12C9-L12C77" }, { "DocsId": "M:System.Security.Permissions.KeyContainerPermission.#ctor(System.Security.Permissions.KeyContainerPermissionFlags,System.Security.Permissions.KeyContainerPermissionAccessEntry[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermission.cs#L13C9-L13C125" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermission.cs#L13C9-L13C125" }, { "DocsId": "M:System.Security.Permissions.KeyContainerPermission.IsUnrestricted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermission.cs#L16C40-L16C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermission.cs#L16C40-L16C53" }, { "DocsId": "M:System.Security.Permissions.KeyContainerPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermission.cs#L17C63-L17C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermission.cs#L17C63-L17C76" }, { "DocsId": "M:System.Security.Permissions.KeyContainerPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermission.cs#L18C69-L18C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermission.cs#L18C69-L18C81" }, { "DocsId": "M:System.Security.Permissions.KeyContainerPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermission.cs#L19C65-L19C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermission.cs#L19C65-L19C77" }, { "DocsId": "M:System.Security.Permissions.KeyContainerPermission.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermission.cs#L20C46-L20C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermission.cs#L20C46-L20C58" }, { "DocsId": "M:System.Security.Permissions.KeyContainerPermission.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermission.cs#L21C51-L21C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermission.cs#L21C51-L21C63" }, { "DocsId": "M:System.Security.Permissions.KeyContainerPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermission.cs#L22C73-L22C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermission.cs#L22C73-L22C74" }, { "DocsId": "P:System.Security.Permissions.KeyContainerPermission.Flags", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermission.cs#L14C52-L14C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermission.cs#L14C52-L14C56" }, { "DocsId": "P:System.Security.Permissions.KeyContainerPermission.AccessEntries", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermission.cs#L15C76-L15C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermission.cs#L15C76-L15C80" } ], "DocsId": "T:System.Security.Permissions.KeyContainerPermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermission.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.KeyContainerPermissionAccessEntry.#ctor(System.String,System.Security.Permissions.KeyContainerPermissionFlags)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntry.cs#L13C9-L13C113" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntry.cs#L13C9-L13C113" }, { "DocsId": "M:System.Security.Permissions.KeyContainerPermissionAccessEntry.#ctor(System.Security.Cryptography.CspParameters,System.Security.Permissions.KeyContainerPermissionFlags)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntry.cs#L14C9-L14C114" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntry.cs#L14C9-L14C114" }, { "DocsId": "M:System.Security.Permissions.KeyContainerPermissionAccessEntry.#ctor(System.String,System.String,System.Int32,System.String,System.Int32,System.Security.Permissions.KeyContainerPermissionFlags)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntry.cs#L15C9-L17C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntry.cs#L15C9-L17C12" }, { "DocsId": "M:System.Security.Permissions.KeyContainerPermissionAccessEntry.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntry.cs#L24C49-L24C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntry.cs#L24C49-L24C62" }, { "DocsId": "M:System.Security.Permissions.KeyContainerPermissionAccessEntry.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntry.cs#L25C45-L25C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntry.cs#L25C45-L25C54" }, { "DocsId": "P:System.Security.Permissions.KeyContainerPermissionAccessEntry.KeyStore", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntry.cs#L18C34-L18C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntry.cs#L18C34-L18C38" }, { "DocsId": "P:System.Security.Permissions.KeyContainerPermissionAccessEntry.ProviderName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntry.cs#L19C38-L19C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntry.cs#L19C38-L19C42" }, { "DocsId": "P:System.Security.Permissions.KeyContainerPermissionAccessEntry.ProviderType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntry.cs#L20C35-L20C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntry.cs#L20C35-L20C39" }, { "DocsId": "P:System.Security.Permissions.KeyContainerPermissionAccessEntry.KeyContainerName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntry.cs#L21C42-L21C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntry.cs#L21C42-L21C46" }, { "DocsId": "P:System.Security.Permissions.KeyContainerPermissionAccessEntry.KeySpec", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntry.cs#L22C30-L22C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntry.cs#L22C30-L22C34" }, { "DocsId": "P:System.Security.Permissions.KeyContainerPermissionAccessEntry.Flags", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntry.cs#L23C52-L23C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntry.cs#L23C52-L23C56" } ], "DocsId": "T:System.Security.Permissions.KeyContainerPermissionAccessEntry", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntry.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntry.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.KeyContainerPermissionAccessEntryCollection.Add(System.Security.Permissions.KeyContainerPermissionAccessEntry)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryCollection.cs#L15C73-L15C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryCollection.cs#L15C73-L15C82" }, { "DocsId": "M:System.Security.Permissions.KeyContainerPermissionAccessEntryCollection.Clear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryCollection.cs#L16C31-L16C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryCollection.cs#L16C31-L16C32" }, { "DocsId": "M:System.Security.Permissions.KeyContainerPermissionAccessEntryCollection.IndexOf(System.Security.Permissions.KeyContainerPermissionAccessEntry)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryCollection.cs#L17C77-L17C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryCollection.cs#L17C77-L17C86" }, { "DocsId": "M:System.Security.Permissions.KeyContainerPermissionAccessEntryCollection.Remove(System.Security.Permissions.KeyContainerPermissionAccessEntry)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryCollection.cs#L18C77-L18C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryCollection.cs#L18C77-L18C78" }, { "DocsId": "M:System.Security.Permissions.KeyContainerPermissionAccessEntryCollection.GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryCollection.cs#L19C78-L19C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryCollection.cs#L19C78-L19C90" }, { "DocsId": "M:System.Security.Permissions.KeyContainerPermissionAccessEntryCollection.CopyTo(System.Security.Permissions.KeyContainerPermissionAccessEntry[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryCollection.cs#L20C84-L20C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryCollection.cs#L20C84-L20C85" }, { "DocsId": "M:System.Security.Permissions.KeyContainerPermissionAccessEntryCollection.CopyTo(System.Array,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryCollection.cs#L21C54-L21C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryCollection.cs#L21C54-L21C90" }, { "DocsId": "M:System.Security.Permissions.KeyContainerPermissionAccessEntryCollection.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryCollection.cs#L22C51-L22C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryCollection.cs#L22C51-L22C87" }, { "DocsId": "M:System.Security.Permissions.KeyContainerPermissionAccessEntryCollection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryCollection.cs" }, { "DocsId": "P:System.Security.Permissions.KeyContainerPermissionAccessEntryCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryCollection.cs#L13C74-L13C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryCollection.cs#L13C74-L13C86" }, { "DocsId": "P:System.Security.Permissions.KeyContainerPermissionAccessEntryCollection.Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryCollection.cs#L14C28-L14C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryCollection.cs#L14C28-L14C32" }, { "DocsId": "P:System.Security.Permissions.KeyContainerPermissionAccessEntryCollection.IsSynchronized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryCollection.cs#L23C38-L23C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryCollection.cs#L23C38-L23C42" }, { "DocsId": "P:System.Security.Permissions.KeyContainerPermissionAccessEntryCollection.SyncRoot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryCollection.cs#L24C34-L24C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryCollection.cs#L24C34-L24C38" } ], "DocsId": "T:System.Security.Permissions.KeyContainerPermissionAccessEntryCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryCollection.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.KeyContainerPermissionAccessEntryEnumerator.System#Collections#IEnumerator#get_Current", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryEnumerator.cs#L14C38-L14C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryEnumerator.cs#L14C38-L14C42" }, { "DocsId": "M:System.Security.Permissions.KeyContainerPermissionAccessEntryEnumerator.MoveNext", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryEnumerator.cs#L15C34-L15C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryEnumerator.cs#L15C34-L15C47" }, { "DocsId": "M:System.Security.Permissions.KeyContainerPermissionAccessEntryEnumerator.Reset", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryEnumerator.cs#L16C31-L16C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryEnumerator.cs#L16C31-L16C32" }, { "DocsId": "M:System.Security.Permissions.KeyContainerPermissionAccessEntryEnumerator.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryEnumerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryEnumerator.cs" }, { "DocsId": "P:System.Security.Permissions.KeyContainerPermissionAccessEntryEnumerator.Current", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryEnumerator.cs#L13C60-L13C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryEnumerator.cs#L13C60-L13C64" }, { "DocsId": "P:System.Security.Permissions.KeyContainerPermissionAccessEntryEnumerator.System#Collections#IEnumerator#Current", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryEnumerator.cs#L14C38-L14C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryEnumerator.cs#L14C38-L14C42" } ], "DocsId": "T:System.Security.Permissions.KeyContainerPermissionAccessEntryEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryEnumerator.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAccessEntryEnumerator.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.KeyContainerPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAttribute.cs#L12C73-L12C89" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAttribute.cs#L12C73-L12C89" }, { "DocsId": "M:System.Security.Permissions.KeyContainerPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAttribute.cs#L19C58-L19C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAttribute.cs#L19C58-L19C70" }, { "DocsId": "P:System.Security.Permissions.KeyContainerPermissionAttribute.KeyStore", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAttribute.cs#L13C34-L13C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAttribute.cs#L13C34-L13C38" }, { "DocsId": "P:System.Security.Permissions.KeyContainerPermissionAttribute.ProviderName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAttribute.cs#L14C38-L14C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAttribute.cs#L14C38-L14C42" }, { "DocsId": "P:System.Security.Permissions.KeyContainerPermissionAttribute.ProviderType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAttribute.cs#L15C35-L15C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAttribute.cs#L15C35-L15C39" }, { "DocsId": "P:System.Security.Permissions.KeyContainerPermissionAttribute.KeyContainerName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAttribute.cs#L16C42-L16C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAttribute.cs#L16C42-L16C46" }, { "DocsId": "P:System.Security.Permissions.KeyContainerPermissionAttribute.KeySpec", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAttribute.cs#L17C30-L17C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAttribute.cs#L17C30-L17C34" }, { "DocsId": "P:System.Security.Permissions.KeyContainerPermissionAttribute.Flags", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAttribute.cs#L18C52-L18C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAttribute.cs#L18C52-L18C56" } ], "DocsId": "T:System.Security.Permissions.KeyContainerPermissionAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionAttribute.cs" }, { "Members": [ { "DocsId": "F:System.Security.Permissions.KeyContainerPermissionFlags.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionFlags.cs" }, { "DocsId": "F:System.Security.Permissions.KeyContainerPermissionFlags.NoFlags", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionFlags.cs" }, { "DocsId": "F:System.Security.Permissions.KeyContainerPermissionFlags.Create", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionFlags.cs" }, { "DocsId": "F:System.Security.Permissions.KeyContainerPermissionFlags.Open", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionFlags.cs" }, { "DocsId": "F:System.Security.Permissions.KeyContainerPermissionFlags.Delete", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionFlags.cs" }, { "DocsId": "F:System.Security.Permissions.KeyContainerPermissionFlags.Import", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionFlags.cs" }, { "DocsId": "F:System.Security.Permissions.KeyContainerPermissionFlags.Export", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionFlags.cs" }, { "DocsId": "F:System.Security.Permissions.KeyContainerPermissionFlags.Sign", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionFlags.cs" }, { "DocsId": "F:System.Security.Permissions.KeyContainerPermissionFlags.Decrypt", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionFlags.cs" }, { "DocsId": "F:System.Security.Permissions.KeyContainerPermissionFlags.ViewAcl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionFlags.cs" }, { "DocsId": "F:System.Security.Permissions.KeyContainerPermissionFlags.ChangeAcl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionFlags.cs" }, { "DocsId": "F:System.Security.Permissions.KeyContainerPermissionFlags.AllFlags", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionFlags.cs" } ], "DocsId": "T:System.Security.Permissions.KeyContainerPermissionFlags", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/KeyContainerPermissionFlags.cs" }, { "Members": [ { "DocsId": "F:System.Security.Permissions.MediaPermissionAudio.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" }, { "DocsId": "F:System.Security.Permissions.MediaPermissionAudio.NoAudio", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" }, { "DocsId": "F:System.Security.Permissions.MediaPermissionAudio.SiteOfOriginAudio", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" }, { "DocsId": "F:System.Security.Permissions.MediaPermissionAudio.SafeAudio", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" }, { "DocsId": "F:System.Security.Permissions.MediaPermissionAudio.AllAudio", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" } ], "DocsId": "T:System.Security.Permissions.MediaPermissionAudio", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" }, { "Members": [ { "DocsId": "F:System.Security.Permissions.MediaPermissionVideo.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" }, { "DocsId": "F:System.Security.Permissions.MediaPermissionVideo.NoVideo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" }, { "DocsId": "F:System.Security.Permissions.MediaPermissionVideo.SiteOfOriginVideo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" }, { "DocsId": "F:System.Security.Permissions.MediaPermissionVideo.SafeVideo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" }, { "DocsId": "F:System.Security.Permissions.MediaPermissionVideo.AllVideo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" } ], "DocsId": "T:System.Security.Permissions.MediaPermissionVideo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" }, { "Members": [ { "DocsId": "F:System.Security.Permissions.MediaPermissionImage.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" }, { "DocsId": "F:System.Security.Permissions.MediaPermissionImage.NoImage", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" }, { "DocsId": "F:System.Security.Permissions.MediaPermissionImage.SiteOfOriginImage", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" }, { "DocsId": "F:System.Security.Permissions.MediaPermissionImage.SafeImage", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" }, { "DocsId": "F:System.Security.Permissions.MediaPermissionImage.AllImage", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" } ], "DocsId": "T:System.Security.Permissions.MediaPermissionImage", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.MediaPermission.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L43C9-L43C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L43C9-L43C37" }, { "DocsId": "M:System.Security.Permissions.MediaPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L44C9-L44C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L44C9-L44C58" }, { "DocsId": "M:System.Security.Permissions.MediaPermission.#ctor(System.Security.Permissions.MediaPermissionAudio)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L45C9-L45C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L45C9-L45C73" }, { "DocsId": "M:System.Security.Permissions.MediaPermission.#ctor(System.Security.Permissions.MediaPermissionVideo)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L46C9-L46C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L46C9-L46C73" }, { "DocsId": "M:System.Security.Permissions.MediaPermission.#ctor(System.Security.Permissions.MediaPermissionImage)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L47C9-L47C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L47C9-L47C73" }, { "DocsId": "M:System.Security.Permissions.MediaPermission.#ctor(System.Security.Permissions.MediaPermissionAudio,System.Security.Permissions.MediaPermissionVideo,System.Security.Permissions.MediaPermissionImage)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L48C9-L51C12" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L48C9-L51C12" }, { "DocsId": "M:System.Security.Permissions.MediaPermission.IsUnrestricted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L52C40-L52C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L52C40-L52C52" }, { "DocsId": "M:System.Security.Permissions.MediaPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L53C63-L53C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L53C63-L53C75" }, { "DocsId": "M:System.Security.Permissions.MediaPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L54C69-L54C98" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L54C69-L54C98" }, { "DocsId": "M:System.Security.Permissions.MediaPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L55C65-L55C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L55C65-L55C94" }, { "DocsId": "M:System.Security.Permissions.MediaPermission.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L56C46-L56C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L56C46-L56C75" }, { "DocsId": "M:System.Security.Permissions.MediaPermission.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L57C51-L57C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L57C51-L57C83" }, { "DocsId": "M:System.Security.Permissions.MediaPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L58C73-L58C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L58C73-L58C74" }, { "DocsId": "P:System.Security.Permissions.MediaPermission.Audio", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L59C51-L59C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L59C51-L59C88" }, { "DocsId": "P:System.Security.Permissions.MediaPermission.Video", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L60C51-L60C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L60C51-L60C88" }, { "DocsId": "P:System.Security.Permissions.MediaPermission.Image", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L61C51-L61C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L61C51-L61C88" } ], "DocsId": "T:System.Security.Permissions.MediaPermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.MediaPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L70C66-L70C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L70C66-L70C82" }, { "DocsId": "M:System.Security.Permissions.MediaPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L71C58-L71C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L71C58-L71C87" }, { "DocsId": "P:System.Security.Permissions.MediaPermissionAttribute.Audio", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L72C51-L72C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L72C51-L72C88" }, { "DocsId": "P:System.Security.Permissions.MediaPermissionAttribute.Video", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L73C51-L73C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L73C51-L73C88" }, { "DocsId": "P:System.Security.Permissions.MediaPermissionAttribute.Image", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L74C51-L74C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs#L74C51-L74C88" } ], "DocsId": "T:System.Security.Permissions.MediaPermissionAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/MediaPermission.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.PermissionSetAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PermissionSetAttribute.cs#L12C64-L12C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PermissionSetAttribute.cs#L12C64-L12C97" }, { "DocsId": "M:System.Security.Permissions.PermissionSetAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PermissionSetAttribute.cs#L18C58-L18C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PermissionSetAttribute.cs#L18C58-L18C86" }, { "DocsId": "M:System.Security.Permissions.PermissionSetAttribute.CreatePermissionSet", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PermissionSetAttribute.cs#L19C54-L19C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PermissionSetAttribute.cs#L19C54-L19C84" }, { "DocsId": "P:System.Security.Permissions.PermissionSetAttribute.File", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PermissionSetAttribute.cs#L13C30-L13C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PermissionSetAttribute.cs#L13C30-L13C34" }, { "DocsId": "P:System.Security.Permissions.PermissionSetAttribute.Hex", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PermissionSetAttribute.cs#L14C29-L14C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PermissionSetAttribute.cs#L14C29-L14C33" }, { "DocsId": "P:System.Security.Permissions.PermissionSetAttribute.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PermissionSetAttribute.cs#L15C30-L15C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PermissionSetAttribute.cs#L15C30-L15C34" }, { "DocsId": "P:System.Security.Permissions.PermissionSetAttribute.UnicodeEncoded", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PermissionSetAttribute.cs#L16C38-L16C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PermissionSetAttribute.cs#L16C38-L16C42" }, { "DocsId": "P:System.Security.Permissions.PermissionSetAttribute.XML", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PermissionSetAttribute.cs#L17C29-L17C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PermissionSetAttribute.cs#L17C29-L17C33" } ], "DocsId": "T:System.Security.Permissions.PermissionSetAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PermissionSetAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PermissionSetAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.PrincipalPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermission.cs#L18C9-L30C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermission.cs#L18C9-L30C81" }, { "DocsId": "M:System.Security.Permissions.PrincipalPermission.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermission.cs#L34C9-L37C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermission.cs#L34C9-L37C10" }, { "DocsId": "M:System.Security.Permissions.PrincipalPermission.#ctor(System.String,System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermission.cs#L39C9-L42C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermission.cs#L39C9-L42C10" }, { "DocsId": "M:System.Security.Permissions.PrincipalPermission.IsUnrestricted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermission.cs#L67C39-L72C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermission.cs#L67C39-L72C25" }, { "DocsId": "M:System.Security.Permissions.PrincipalPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermission.cs#L77C13-L115C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermission.cs#L77C13-L115C25" }, { "DocsId": "M:System.Security.Permissions.PrincipalPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermission.cs#L120C13-L171C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermission.cs#L120C13-L171C90" }, { "DocsId": "M:System.Security.Permissions.PrincipalPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermission.cs#L176C13-L196C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermission.cs#L176C13-L196C58" }, { "DocsId": "M:System.Security.Permissions.PrincipalPermission.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermission.cs#L201C13-L208C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermission.cs#L201C13-L208C25" }, { "DocsId": "M:System.Security.Permissions.PrincipalPermission.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermission.cs#L213C13-L216C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermission.cs#L213C13-L216C25" }, { "DocsId": "M:System.Security.Permissions.PrincipalPermission.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermission.cs#L221C13-L221C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermission.cs#L221C13-L221C54" }, { "DocsId": "M:System.Security.Permissions.PrincipalPermission.Demand", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermission.cs#L226C13-L248C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermission.cs#L226C13-L248C74" }, { "DocsId": "M:System.Security.Permissions.PrincipalPermission.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermission.cs#L253C13-L267C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermission.cs#L253C13-L267C25" }, { "DocsId": "M:System.Security.Permissions.PrincipalPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermission.cs#L272C13-L298C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermission.cs#L272C13-L298C10" }, { "DocsId": "M:System.Security.Permissions.PrincipalPermission.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermission.cs#L302C13-L302C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermission.cs#L302C13-L302C39" } ], "DocsId": "T:System.Security.Permissions.PrincipalPermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermission.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.PrincipalPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermissionAttribute.cs#L15C70-L15C103" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermissionAttribute.cs#L15C70-L15C103" }, { "DocsId": "M:System.Security.Permissions.PrincipalPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermissionAttribute.cs#L19C58-L19C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermissionAttribute.cs#L19C58-L19C86" }, { "DocsId": "P:System.Security.Permissions.PrincipalPermissionAttribute.Authenticated", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermissionAttribute.cs#L16C37-L16C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermissionAttribute.cs#L16C37-L16C41" }, { "DocsId": "P:System.Security.Permissions.PrincipalPermissionAttribute.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermissionAttribute.cs#L17C30-L17C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermissionAttribute.cs#L17C30-L17C34" }, { "DocsId": "P:System.Security.Permissions.PrincipalPermissionAttribute.Role", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermissionAttribute.cs#L18C30-L18C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermissionAttribute.cs#L18C30-L18C34" } ], "DocsId": "T:System.Security.Permissions.PrincipalPermissionAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PrincipalPermissionAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.PublisherIdentityPermission.#ctor(System.Security.Cryptography.X509Certificates.X509Certificate)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermission.cs#L13C9-L13C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermission.cs#L13C9-L13C76" }, { "DocsId": "M:System.Security.Permissions.PublisherIdentityPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermission.cs#L14C9-L14C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermission.cs#L14C9-L14C70" }, { "DocsId": "M:System.Security.Permissions.PublisherIdentityPermission.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermission.cs#L16C46-L16C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermission.cs#L16C46-L16C58" }, { "DocsId": "M:System.Security.Permissions.PublisherIdentityPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermission.cs#L17C61-L17C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermission.cs#L17C61-L17C62" }, { "DocsId": "M:System.Security.Permissions.PublisherIdentityPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermission.cs#L18C69-L18C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermission.cs#L18C69-L18C97" }, { "DocsId": "M:System.Security.Permissions.PublisherIdentityPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermission.cs#L19C63-L19C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermission.cs#L19C63-L19C76" }, { "DocsId": "M:System.Security.Permissions.PublisherIdentityPermission.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermission.cs#L20C51-L20C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermission.cs#L20C51-L20C83" }, { "DocsId": "M:System.Security.Permissions.PublisherIdentityPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermission.cs#L21C65-L21C93" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermission.cs#L21C65-L21C93" }, { "DocsId": "P:System.Security.Permissions.PublisherIdentityPermission.Certificate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermission.cs#L15C46-L15C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermission.cs#L15C46-L15C50" } ], "DocsId": "T:System.Security.Permissions.PublisherIdentityPermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermission.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.PublisherIdentityPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermissionAttribute.cs#L12C78-L12C111" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermissionAttribute.cs#L12C78-L12C111" }, { "DocsId": "M:System.Security.Permissions.PublisherIdentityPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermissionAttribute.cs#L16C58-L16C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermissionAttribute.cs#L16C58-L16C86" }, { "DocsId": "P:System.Security.Permissions.PublisherIdentityPermissionAttribute.CertFile", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermissionAttribute.cs#L13C34-L13C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermissionAttribute.cs#L13C34-L13C38" }, { "DocsId": "P:System.Security.Permissions.PublisherIdentityPermissionAttribute.SignedFile", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermissionAttribute.cs#L14C36-L14C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermissionAttribute.cs#L14C36-L14C40" }, { "DocsId": "P:System.Security.Permissions.PublisherIdentityPermissionAttribute.X509Certificate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermissionAttribute.cs#L15C41-L15C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermissionAttribute.cs#L15C41-L15C45" } ], "DocsId": "T:System.Security.Permissions.PublisherIdentityPermissionAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/PublisherIdentityPermissionAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.ReflectionPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermission.cs#L11C9-L11C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermission.cs#L11C9-L11C63" }, { "DocsId": "M:System.Security.Permissions.ReflectionPermission.#ctor(System.Security.Permissions.ReflectionPermissionFlag)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermission.cs#L12C9-L12C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermission.cs#L12C9-L12C71" }, { "DocsId": "M:System.Security.Permissions.ReflectionPermission.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermission.cs#L14C46-L14C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermission.cs#L14C46-L14C58" }, { "DocsId": "M:System.Security.Permissions.ReflectionPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermission.cs#L15C61-L15C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermission.cs#L15C61-L15C62" }, { "DocsId": "M:System.Security.Permissions.ReflectionPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermission.cs#L16C69-L16C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermission.cs#L16C69-L16C97" }, { "DocsId": "M:System.Security.Permissions.ReflectionPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermission.cs#L17C63-L17C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermission.cs#L17C63-L17C76" }, { "DocsId": "M:System.Security.Permissions.ReflectionPermission.IsUnrestricted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermission.cs#L18C40-L18C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermission.cs#L18C40-L18C53" }, { "DocsId": "M:System.Security.Permissions.ReflectionPermission.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermission.cs#L19C51-L19C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermission.cs#L19C51-L19C83" }, { "DocsId": "M:System.Security.Permissions.ReflectionPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermission.cs#L20C64-L20C92" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermission.cs#L20C64-L20C92" }, { "DocsId": "P:System.Security.Permissions.ReflectionPermission.Flags", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermission.cs#L13C49-L13C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermission.cs#L13C49-L13C53" } ], "DocsId": "T:System.Security.Permissions.ReflectionPermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermission.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.ReflectionPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionAttribute.cs#L12C71-L12C104" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionAttribute.cs#L12C71-L12C104" }, { "DocsId": "M:System.Security.Permissions.ReflectionPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionAttribute.cs#L20C58-L20C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionAttribute.cs#L20C58-L20C86" }, { "DocsId": "P:System.Security.Permissions.ReflectionPermissionAttribute.Flags", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionAttribute.cs#L13C49-L13C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionAttribute.cs#L13C49-L13C53" }, { "DocsId": "P:System.Security.Permissions.ReflectionPermissionAttribute.MemberAccess", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionAttribute.cs#L14C36-L14C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionAttribute.cs#L14C36-L14C40" }, { "DocsId": "P:System.Security.Permissions.ReflectionPermissionAttribute.ReflectionEmit", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionAttribute.cs#L16C38-L16C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionAttribute.cs#L16C38-L16C42" }, { "DocsId": "P:System.Security.Permissions.ReflectionPermissionAttribute.RestrictedMemberAccess", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionAttribute.cs#L17C46-L17C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionAttribute.cs#L17C46-L17C50" }, { "DocsId": "P:System.Security.Permissions.ReflectionPermissionAttribute.TypeInformation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionAttribute.cs#L19C39-L19C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionAttribute.cs#L19C39-L19C43" } ], "DocsId": "T:System.Security.Permissions.ReflectionPermissionAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionAttribute.cs" }, { "Members": [ { "DocsId": "F:System.Security.Permissions.ReflectionPermissionFlag.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionFlag.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionFlag.cs" }, { "DocsId": "F:System.Security.Permissions.ReflectionPermissionFlag.AllFlags", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionFlag.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionFlag.cs" }, { "DocsId": "F:System.Security.Permissions.ReflectionPermissionFlag.MemberAccess", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionFlag.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionFlag.cs" }, { "DocsId": "F:System.Security.Permissions.ReflectionPermissionFlag.NoFlags", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionFlag.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionFlag.cs" }, { "DocsId": "F:System.Security.Permissions.ReflectionPermissionFlag.ReflectionEmit", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionFlag.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionFlag.cs" }, { "DocsId": "F:System.Security.Permissions.ReflectionPermissionFlag.RestrictedMemberAccess", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionFlag.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionFlag.cs" }, { "DocsId": "F:System.Security.Permissions.ReflectionPermissionFlag.TypeInformation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionFlag.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionFlag.cs" } ], "DocsId": "T:System.Security.Permissions.ReflectionPermissionFlag", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionFlag.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ReflectionPermissionFlag.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.RegistryPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermission.cs#L13C9-L13C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermission.cs#L13C9-L13C61" }, { "DocsId": "M:System.Security.Permissions.RegistryPermission.#ctor(System.Security.Permissions.RegistryPermissionAccess,System.Security.AccessControl.AccessControlActions,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermission.cs#L14C9-L14C118" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermission.cs#L14C9-L14C118" }, { "DocsId": "M:System.Security.Permissions.RegistryPermission.#ctor(System.Security.Permissions.RegistryPermissionAccess,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermission.cs#L15C9-L15C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermission.cs#L15C9-L15C88" }, { "DocsId": "M:System.Security.Permissions.RegistryPermission.AddPathList(System.Security.Permissions.RegistryPermissionAccess,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermission.cs#L16C85-L16C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermission.cs#L16C85-L16C86" }, { "DocsId": "M:System.Security.Permissions.RegistryPermission.AddPathList(System.Security.Permissions.RegistryPermissionAccess,System.Security.AccessControl.AccessControlActions,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermission.cs#L17C115-L17C116" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermission.cs#L17C115-L17C116" }, { "DocsId": "M:System.Security.Permissions.RegistryPermission.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermission.cs#L18C46-L18C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermission.cs#L18C46-L18C74" }, { "DocsId": "M:System.Security.Permissions.RegistryPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermission.cs#L19C62-L19C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermission.cs#L19C62-L19C63" }, { "DocsId": "M:System.Security.Permissions.RegistryPermission.GetPathList(System.Security.Permissions.RegistryPermissionAccess)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermission.cs#L20C70-L20C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermission.cs#L20C70-L20C82" }, { "DocsId": "M:System.Security.Permissions.RegistryPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermission.cs#L21C69-L21C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermission.cs#L21C69-L21C97" }, { "DocsId": "M:System.Security.Permissions.RegistryPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermission.cs#L22C63-L22C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermission.cs#L22C63-L22C76" }, { "DocsId": "M:System.Security.Permissions.RegistryPermission.IsUnrestricted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermission.cs#L23C40-L23C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermission.cs#L23C40-L23C53" }, { "DocsId": "M:System.Security.Permissions.RegistryPermission.SetPathList(System.Security.Permissions.RegistryPermissionAccess,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermission.cs#L24C85-L24C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermission.cs#L24C85-L24C86" }, { "DocsId": "M:System.Security.Permissions.RegistryPermission.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermission.cs#L25C51-L25C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermission.cs#L25C51-L25C83" }, { "DocsId": "M:System.Security.Permissions.RegistryPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermission.cs#L26C64-L26C92" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermission.cs#L26C64-L26C92" } ], "DocsId": "T:System.Security.Permissions.RegistryPermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermission.cs" }, { "Members": [ { "DocsId": "F:System.Security.Permissions.RegistryPermissionAccess.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAccess.cs" }, { "DocsId": "F:System.Security.Permissions.RegistryPermissionAccess.AllAccess", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAccess.cs" }, { "DocsId": "F:System.Security.Permissions.RegistryPermissionAccess.Create", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAccess.cs" }, { "DocsId": "F:System.Security.Permissions.RegistryPermissionAccess.NoAccess", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAccess.cs" }, { "DocsId": "F:System.Security.Permissions.RegistryPermissionAccess.Read", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAccess.cs" }, { "DocsId": "F:System.Security.Permissions.RegistryPermissionAccess.Write", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAccess.cs" } ], "DocsId": "T:System.Security.Permissions.RegistryPermissionAccess", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAccess.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.RegistryPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAttribute.cs#L12C69-L12C102" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAttribute.cs#L12C69-L12C102" }, { "DocsId": "M:System.Security.Permissions.RegistryPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAttribute.cs#L21C58-L21C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAttribute.cs#L21C58-L21C86" }, { "DocsId": "P:System.Security.Permissions.RegistryPermissionAttribute.All", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAttribute.cs#L14C29-L14C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAttribute.cs#L14C29-L14C33" }, { "DocsId": "P:System.Security.Permissions.RegistryPermissionAttribute.ChangeAccessControl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAttribute.cs#L15C45-L15C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAttribute.cs#L15C45-L15C49" }, { "DocsId": "P:System.Security.Permissions.RegistryPermissionAttribute.Create", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAttribute.cs#L16C32-L16C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAttribute.cs#L16C32-L16C36" }, { "DocsId": "P:System.Security.Permissions.RegistryPermissionAttribute.Read", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAttribute.cs#L17C30-L17C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAttribute.cs#L17C30-L17C34" }, { "DocsId": "P:System.Security.Permissions.RegistryPermissionAttribute.ViewAccessControl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAttribute.cs#L18C43-L18C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAttribute.cs#L18C43-L18C47" }, { "DocsId": "P:System.Security.Permissions.RegistryPermissionAttribute.ViewAndModify", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAttribute.cs#L19C39-L19C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAttribute.cs#L19C39-L19C43" }, { "DocsId": "P:System.Security.Permissions.RegistryPermissionAttribute.Write", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAttribute.cs#L20C31-L20C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAttribute.cs#L20C31-L20C35" } ], "DocsId": "T:System.Security.Permissions.RegistryPermissionAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/RegistryPermissionAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.ResourcePermissionBase.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs#L15C9-L15C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs#L15C9-L15C47" }, { "DocsId": "M:System.Security.Permissions.ResourcePermissionBase.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs#L16C9-L16C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs#L16C9-L16C68" }, { "DocsId": "M:System.Security.Permissions.ResourcePermissionBase.AddPermissionAccess(System.Security.Permissions.ResourcePermissionBaseEntry)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs#L22C81-L22C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs#L22C81-L22C82" }, { "DocsId": "M:System.Security.Permissions.ResourcePermissionBase.Clear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs#L23C34-L23C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs#L23C34-L23C35" }, { "DocsId": "M:System.Security.Permissions.ResourcePermissionBase.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs#L24C46-L24C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs#L24C46-L24C58" }, { "DocsId": "M:System.Security.Permissions.ResourcePermissionBase.GetPermissionEntries", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs#L25C74-L25C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs#L25C74-L25C86" }, { "DocsId": "M:System.Security.Permissions.ResourcePermissionBase.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs#L26C73-L26C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs#L26C73-L26C74" }, { "DocsId": "M:System.Security.Permissions.ResourcePermissionBase.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs#L27C69-L27C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs#L27C69-L27C81" }, { "DocsId": "M:System.Security.Permissions.ResourcePermissionBase.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs#L28C63-L28C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs#L28C63-L28C76" }, { "DocsId": "M:System.Security.Permissions.ResourcePermissionBase.IsUnrestricted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs#L29C40-L29C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs#L29C40-L29C53" }, { "DocsId": "M:System.Security.Permissions.ResourcePermissionBase.RemovePermissionAccess(System.Security.Permissions.ResourcePermissionBaseEntry)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs#L30C84-L30C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs#L30C84-L30C85" }, { "DocsId": "M:System.Security.Permissions.ResourcePermissionBase.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs#L31C51-L31C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs#L31C51-L31C63" }, { "DocsId": "M:System.Security.Permissions.ResourcePermissionBase.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs#L32C65-L32C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs#L32C65-L32C77" }, { "DocsId": "F:System.Security.Permissions.ResourcePermissionBase.Any", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs" }, { "DocsId": "F:System.Security.Permissions.ResourcePermissionBase.Local", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs" }, { "DocsId": "P:System.Security.Permissions.ResourcePermissionBase.PermissionAccessType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs#L20C47-L20C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs#L20C47-L20C51" }, { "DocsId": "P:System.Security.Permissions.ResourcePermissionBase.TagNames", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs#L21C39-L21C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs#L21C39-L21C43" } ], "DocsId": "T:System.Security.Permissions.ResourcePermissionBase", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBase.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.ResourcePermissionBaseEntry.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBaseEntry.cs#L11C9-L11C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBaseEntry.cs#L11C9-L11C49" }, { "DocsId": "M:System.Security.Permissions.ResourcePermissionBaseEntry.#ctor(System.Int32,System.String[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBaseEntry.cs#L12C9-L12C100" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBaseEntry.cs#L12C9-L12C100" }, { "DocsId": "P:System.Security.Permissions.ResourcePermissionBaseEntry.PermissionAccess", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBaseEntry.cs#L13C39-L13C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBaseEntry.cs#L13C39-L13C43" }, { "DocsId": "P:System.Security.Permissions.ResourcePermissionBaseEntry.PermissionAccessPath", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBaseEntry.cs#L14C48-L14C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBaseEntry.cs#L14C48-L14C52" } ], "DocsId": "T:System.Security.Permissions.ResourcePermissionBaseEntry", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBaseEntry.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ResourcePermissionBaseEntry.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.SecurityPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SecurityPermission.cs#L11C9-L11C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SecurityPermission.cs#L11C9-L11C61" }, { "DocsId": "M:System.Security.Permissions.SecurityPermission.#ctor(System.Security.Permissions.SecurityPermissionFlag)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SecurityPermission.cs#L12C9-L12C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SecurityPermission.cs#L12C9-L12C67" }, { "DocsId": "M:System.Security.Permissions.SecurityPermission.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SecurityPermission.cs#L14C46-L14C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SecurityPermission.cs#L14C46-L14C58" }, { "DocsId": "M:System.Security.Permissions.SecurityPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SecurityPermission.cs#L15C61-L15C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SecurityPermission.cs#L15C61-L15C62" }, { "DocsId": "M:System.Security.Permissions.SecurityPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SecurityPermission.cs#L16C69-L16C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SecurityPermission.cs#L16C69-L16C97" }, { "DocsId": "M:System.Security.Permissions.SecurityPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SecurityPermission.cs#L17C63-L17C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SecurityPermission.cs#L17C63-L17C76" }, { "DocsId": "M:System.Security.Permissions.SecurityPermission.IsUnrestricted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SecurityPermission.cs#L18C40-L18C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SecurityPermission.cs#L18C40-L18C53" }, { "DocsId": "M:System.Security.Permissions.SecurityPermission.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SecurityPermission.cs#L19C51-L19C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SecurityPermission.cs#L19C51-L19C83" }, { "DocsId": "M:System.Security.Permissions.SecurityPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SecurityPermission.cs#L20C65-L20C93" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SecurityPermission.cs#L20C65-L20C93" }, { "DocsId": "P:System.Security.Permissions.SecurityPermission.Flags", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SecurityPermission.cs#L13C47-L13C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SecurityPermission.cs#L13C47-L13C51" } ], "DocsId": "T:System.Security.Permissions.SecurityPermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SecurityPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SecurityPermission.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.SiteIdentityPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SiteIdentityPermission.cs#L11C9-L11C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SiteIdentityPermission.cs#L11C9-L11C65" }, { "DocsId": "M:System.Security.Permissions.SiteIdentityPermission.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SiteIdentityPermission.cs#L12C9-L12C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SiteIdentityPermission.cs#L12C9-L12C55" }, { "DocsId": "M:System.Security.Permissions.SiteIdentityPermission.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SiteIdentityPermission.cs#L14C46-L14C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SiteIdentityPermission.cs#L14C46-L14C74" }, { "DocsId": "M:System.Security.Permissions.SiteIdentityPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SiteIdentityPermission.cs#L15C61-L15C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SiteIdentityPermission.cs#L15C61-L15C62" }, { "DocsId": "M:System.Security.Permissions.SiteIdentityPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SiteIdentityPermission.cs#L16C69-L16C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SiteIdentityPermission.cs#L16C69-L16C97" }, { "DocsId": "M:System.Security.Permissions.SiteIdentityPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SiteIdentityPermission.cs#L17C63-L17C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SiteIdentityPermission.cs#L17C63-L17C76" }, { "DocsId": "M:System.Security.Permissions.SiteIdentityPermission.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SiteIdentityPermission.cs#L18C51-L18C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SiteIdentityPermission.cs#L18C51-L18C83" }, { "DocsId": "M:System.Security.Permissions.SiteIdentityPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SiteIdentityPermission.cs#L19C65-L19C93" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SiteIdentityPermission.cs#L19C65-L19C93" }, { "DocsId": "P:System.Security.Permissions.SiteIdentityPermission.Site", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SiteIdentityPermission.cs#L13C30-L13C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SiteIdentityPermission.cs#L13C30-L13C34" } ], "DocsId": "T:System.Security.Permissions.SiteIdentityPermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SiteIdentityPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SiteIdentityPermission.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.SiteIdentityPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SiteIdentityPermissionAttribute.cs#L12C73-L12C106" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SiteIdentityPermissionAttribute.cs#L12C73-L12C106" }, { "DocsId": "M:System.Security.Permissions.SiteIdentityPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SiteIdentityPermissionAttribute.cs#L14C58-L14C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SiteIdentityPermissionAttribute.cs#L14C58-L14C86" }, { "DocsId": "P:System.Security.Permissions.SiteIdentityPermissionAttribute.Site", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SiteIdentityPermissionAttribute.cs#L13C30-L13C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SiteIdentityPermissionAttribute.cs#L13C30-L13C34" } ], "DocsId": "T:System.Security.Permissions.SiteIdentityPermissionAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SiteIdentityPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/SiteIdentityPermissionAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.StorePermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermission.cs#L11C9-L11C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermission.cs#L11C9-L11C58" }, { "DocsId": "M:System.Security.Permissions.StorePermission.#ctor(System.Security.Permissions.StorePermissionFlags)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermission.cs#L12C9-L12C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermission.cs#L12C9-L12C62" }, { "DocsId": "M:System.Security.Permissions.StorePermission.IsUnrestricted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermission.cs#L14C40-L14C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermission.cs#L14C40-L14C53" }, { "DocsId": "M:System.Security.Permissions.StorePermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermission.cs#L15C65-L15C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermission.cs#L15C65-L15C77" }, { "DocsId": "M:System.Security.Permissions.StorePermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermission.cs#L16C63-L16C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermission.cs#L16C63-L16C76" }, { "DocsId": "M:System.Security.Permissions.StorePermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermission.cs#L17C69-L17C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermission.cs#L17C69-L17C81" }, { "DocsId": "M:System.Security.Permissions.StorePermission.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermission.cs#L18C46-L18C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermission.cs#L18C46-L18C58" }, { "DocsId": "M:System.Security.Permissions.StorePermission.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermission.cs#L19C51-L19C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermission.cs#L19C51-L19C63" }, { "DocsId": "M:System.Security.Permissions.StorePermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermission.cs#L20C73-L20C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermission.cs#L20C73-L20C74" }, { "DocsId": "P:System.Security.Permissions.StorePermission.Flags", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermission.cs#L13C45-L13C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermission.cs#L13C45-L13C49" } ], "DocsId": "T:System.Security.Permissions.StorePermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermission.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.StorePermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionAttribute.cs#L12C66-L12C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionAttribute.cs#L12C66-L12C82" }, { "DocsId": "M:System.Security.Permissions.StorePermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionAttribute.cs#L21C58-L21C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionAttribute.cs#L21C58-L21C70" }, { "DocsId": "P:System.Security.Permissions.StorePermissionAttribute.Flags", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionAttribute.cs#L13C45-L13C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionAttribute.cs#L13C45-L13C49" }, { "DocsId": "P:System.Security.Permissions.StorePermissionAttribute.CreateStore", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionAttribute.cs#L14C35-L14C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionAttribute.cs#L14C35-L14C39" }, { "DocsId": "P:System.Security.Permissions.StorePermissionAttribute.DeleteStore", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionAttribute.cs#L15C35-L15C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionAttribute.cs#L15C35-L15C39" }, { "DocsId": "P:System.Security.Permissions.StorePermissionAttribute.EnumerateStores", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionAttribute.cs#L16C39-L16C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionAttribute.cs#L16C39-L16C43" }, { "DocsId": "P:System.Security.Permissions.StorePermissionAttribute.OpenStore", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionAttribute.cs#L17C33-L17C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionAttribute.cs#L17C33-L17C37" }, { "DocsId": "P:System.Security.Permissions.StorePermissionAttribute.AddToStore", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionAttribute.cs#L18C34-L18C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionAttribute.cs#L18C34-L18C38" }, { "DocsId": "P:System.Security.Permissions.StorePermissionAttribute.RemoveFromStore", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionAttribute.cs#L19C39-L19C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionAttribute.cs#L19C39-L19C43" }, { "DocsId": "P:System.Security.Permissions.StorePermissionAttribute.EnumerateCertificates", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionAttribute.cs#L20C45-L20C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionAttribute.cs#L20C45-L20C49" } ], "DocsId": "T:System.Security.Permissions.StorePermissionAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionAttribute.cs" }, { "Members": [ { "DocsId": "F:System.Security.Permissions.StorePermissionFlags.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionFlags.cs" }, { "DocsId": "F:System.Security.Permissions.StorePermissionFlags.NoFlags", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionFlags.cs" }, { "DocsId": "F:System.Security.Permissions.StorePermissionFlags.CreateStore", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionFlags.cs" }, { "DocsId": "F:System.Security.Permissions.StorePermissionFlags.DeleteStore", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionFlags.cs" }, { "DocsId": "F:System.Security.Permissions.StorePermissionFlags.EnumerateStores", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionFlags.cs" }, { "DocsId": "F:System.Security.Permissions.StorePermissionFlags.OpenStore", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionFlags.cs" }, { "DocsId": "F:System.Security.Permissions.StorePermissionFlags.AddToStore", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionFlags.cs" }, { "DocsId": "F:System.Security.Permissions.StorePermissionFlags.RemoveFromStore", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionFlags.cs" }, { "DocsId": "F:System.Security.Permissions.StorePermissionFlags.EnumerateCertificates", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionFlags.cs" }, { "DocsId": "F:System.Security.Permissions.StorePermissionFlags.AllFlags", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionFlags.cs" } ], "DocsId": "T:System.Security.Permissions.StorePermissionFlags", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StorePermissionFlags.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.StrongNameIdentityPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermission.cs#L11C9-L11C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermission.cs#L11C9-L11C71" }, { "DocsId": "M:System.Security.Permissions.StrongNameIdentityPermission.#ctor(System.Security.Permissions.StrongNamePublicKeyBlob,System.String,System.Version)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermission.cs#L12C9-L12C108" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermission.cs#L12C9-L12C108" }, { "DocsId": "M:System.Security.Permissions.StrongNameIdentityPermission.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermission.cs#L16C46-L16C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermission.cs#L16C46-L16C58" }, { "DocsId": "M:System.Security.Permissions.StrongNameIdentityPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermission.cs#L17C59-L17C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermission.cs#L17C59-L17C60" }, { "DocsId": "M:System.Security.Permissions.StrongNameIdentityPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermission.cs#L18C69-L18C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermission.cs#L18C69-L18C97" }, { "DocsId": "M:System.Security.Permissions.StrongNameIdentityPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermission.cs#L19C63-L19C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermission.cs#L19C63-L19C76" }, { "DocsId": "M:System.Security.Permissions.StrongNameIdentityPermission.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermission.cs#L20C51-L20C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermission.cs#L20C51-L20C83" }, { "DocsId": "M:System.Security.Permissions.StrongNameIdentityPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermission.cs#L21C65-L21C93" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermission.cs#L21C65-L21C93" }, { "DocsId": "P:System.Security.Permissions.StrongNameIdentityPermission.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermission.cs#L13C30-L13C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermission.cs#L13C30-L13C34" }, { "DocsId": "P:System.Security.Permissions.StrongNameIdentityPermission.PublicKey", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermission.cs#L14C52-L14C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermission.cs#L14C52-L14C56" }, { "DocsId": "P:System.Security.Permissions.StrongNameIdentityPermission.Version", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermission.cs#L15C34-L15C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermission.cs#L15C34-L15C38" } ], "DocsId": "T:System.Security.Permissions.StrongNameIdentityPermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermission.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.StrongNameIdentityPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermissionAttribute.cs#L12C79-L12C112" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermissionAttribute.cs#L12C79-L12C112" }, { "DocsId": "M:System.Security.Permissions.StrongNameIdentityPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermissionAttribute.cs#L16C58-L16C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermissionAttribute.cs#L16C58-L16C86" }, { "DocsId": "P:System.Security.Permissions.StrongNameIdentityPermissionAttribute.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermissionAttribute.cs#L13C30-L13C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermissionAttribute.cs#L13C30-L13C34" }, { "DocsId": "P:System.Security.Permissions.StrongNameIdentityPermissionAttribute.PublicKey", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermissionAttribute.cs#L14C35-L14C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermissionAttribute.cs#L14C35-L14C39" }, { "DocsId": "P:System.Security.Permissions.StrongNameIdentityPermissionAttribute.Version", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermissionAttribute.cs#L15C33-L15C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermissionAttribute.cs#L15C33-L15C37" } ], "DocsId": "T:System.Security.Permissions.StrongNameIdentityPermissionAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNameIdentityPermissionAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.StrongNamePublicKeyBlob.#ctor(System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNamePublicKeyBlob.cs#L11C9-L11C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNamePublicKeyBlob.cs#L11C9-L11C61" }, { "DocsId": "M:System.Security.Permissions.StrongNamePublicKeyBlob.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNamePublicKeyBlob.cs#L12C50-L12C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNamePublicKeyBlob.cs#L12C50-L12C64" }, { "DocsId": "M:System.Security.Permissions.StrongNamePublicKeyBlob.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNamePublicKeyBlob.cs#L13C46-L13C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNamePublicKeyBlob.cs#L13C46-L13C64" }, { "DocsId": "M:System.Security.Permissions.StrongNamePublicKeyBlob.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNamePublicKeyBlob.cs#L14C46-L14C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNamePublicKeyBlob.cs#L14C46-L14C61" } ], "DocsId": "T:System.Security.Permissions.StrongNamePublicKeyBlob", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNamePublicKeyBlob.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/StrongNamePublicKeyBlob.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.TypeDescriptorPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermission.cs#L11C9-L11C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermission.cs#L11C9-L11C67" }, { "DocsId": "M:System.Security.Permissions.TypeDescriptorPermission.#ctor(System.Security.Permissions.TypeDescriptorPermissionFlags)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermission.cs#L12C9-L12C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermission.cs#L12C9-L12C80" }, { "DocsId": "M:System.Security.Permissions.TypeDescriptorPermission.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermission.cs#L14C46-L14C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermission.cs#L14C46-L14C58" }, { "DocsId": "M:System.Security.Permissions.TypeDescriptorPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermission.cs#L15C73-L15C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermission.cs#L15C73-L15C74" }, { "DocsId": "M:System.Security.Permissions.TypeDescriptorPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermission.cs#L16C69-L16C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermission.cs#L16C69-L16C97" }, { "DocsId": "M:System.Security.Permissions.TypeDescriptorPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermission.cs#L17C63-L17C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermission.cs#L17C63-L17C76" }, { "DocsId": "M:System.Security.Permissions.TypeDescriptorPermission.IsUnrestricted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermission.cs#L18C40-L18C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermission.cs#L18C40-L18C53" }, { "DocsId": "M:System.Security.Permissions.TypeDescriptorPermission.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermission.cs#L19C51-L19C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermission.cs#L19C51-L19C83" }, { "DocsId": "M:System.Security.Permissions.TypeDescriptorPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermission.cs#L20C65-L20C93" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermission.cs#L20C65-L20C93" }, { "DocsId": "P:System.Security.Permissions.TypeDescriptorPermission.Flags", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermission.cs#L13C54-L13C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermission.cs#L13C54-L13C58" } ], "DocsId": "T:System.Security.Permissions.TypeDescriptorPermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermission.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.TypeDescriptorPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermissionAttribute.cs#L12C75-L12C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermissionAttribute.cs#L12C75-L12C91" }, { "DocsId": "M:System.Security.Permissions.TypeDescriptorPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermissionAttribute.cs#L15C58-L15C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermissionAttribute.cs#L15C58-L15C70" }, { "DocsId": "P:System.Security.Permissions.TypeDescriptorPermissionAttribute.Flags", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermissionAttribute.cs#L13C54-L13C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermissionAttribute.cs#L13C54-L13C58" }, { "DocsId": "P:System.Security.Permissions.TypeDescriptorPermissionAttribute.RestrictedRegistrationAccess", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermissionAttribute.cs#L14C52-L14C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermissionAttribute.cs#L14C52-L14C56" } ], "DocsId": "T:System.Security.Permissions.TypeDescriptorPermissionAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermissionAttribute.cs" }, { "Members": [ { "DocsId": "F:System.Security.Permissions.TypeDescriptorPermissionFlags.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermissionFlags.cs" }, { "DocsId": "F:System.Security.Permissions.TypeDescriptorPermissionFlags.NoFlags", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermissionFlags.cs" }, { "DocsId": "F:System.Security.Permissions.TypeDescriptorPermissionFlags.RestrictedRegistrationAccess", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermissionFlags.cs" } ], "DocsId": "T:System.Security.Permissions.TypeDescriptorPermissionFlags", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermissionFlags.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/TypeDescriptorPermissionFlags.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.UIPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermission.cs#L11C9-L11C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermission.cs#L11C9-L11C55" }, { "DocsId": "M:System.Security.Permissions.UIPermission.#ctor(System.Security.Permissions.UIPermissionClipboard)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermission.cs#L12C9-L12C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermission.cs#L12C9-L12C69" }, { "DocsId": "M:System.Security.Permissions.UIPermission.#ctor(System.Security.Permissions.UIPermissionWindow)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermission.cs#L13C9-L13C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermission.cs#L13C9-L13C63" }, { "DocsId": "M:System.Security.Permissions.UIPermission.#ctor(System.Security.Permissions.UIPermissionWindow,System.Security.Permissions.UIPermissionClipboard)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermission.cs#L14C9-L14C100" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermission.cs#L14C9-L14C100" }, { "DocsId": "M:System.Security.Permissions.UIPermission.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermission.cs#L17C46-L17C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermission.cs#L17C46-L17C58" }, { "DocsId": "M:System.Security.Permissions.UIPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermission.cs#L18C61-L18C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermission.cs#L18C61-L18C62" }, { "DocsId": "M:System.Security.Permissions.UIPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermission.cs#L19C69-L19C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermission.cs#L19C69-L19C97" }, { "DocsId": "M:System.Security.Permissions.UIPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermission.cs#L20C63-L20C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermission.cs#L20C63-L20C76" }, { "DocsId": "M:System.Security.Permissions.UIPermission.IsUnrestricted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermission.cs#L21C40-L21C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermission.cs#L21C40-L21C53" }, { "DocsId": "M:System.Security.Permissions.UIPermission.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermission.cs#L22C51-L22C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermission.cs#L22C51-L22C83" }, { "DocsId": "M:System.Security.Permissions.UIPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermission.cs#L23C65-L23C93" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermission.cs#L23C65-L23C93" }, { "DocsId": "P:System.Security.Permissions.UIPermission.Clipboard", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermission.cs#L15C50-L15C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermission.cs#L15C50-L15C54" }, { "DocsId": "P:System.Security.Permissions.UIPermission.Window", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermission.cs#L16C44-L16C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermission.cs#L16C44-L16C48" } ], "DocsId": "T:System.Security.Permissions.UIPermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermission.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.UIPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionAttribute.cs#L12C63-L12C96" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionAttribute.cs#L12C63-L12C96" }, { "DocsId": "M:System.Security.Permissions.UIPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionAttribute.cs#L15C58-L15C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionAttribute.cs#L15C58-L15C86" }, { "DocsId": "P:System.Security.Permissions.UIPermissionAttribute.Clipboard", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionAttribute.cs#L13C50-L13C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionAttribute.cs#L13C50-L13C54" }, { "DocsId": "P:System.Security.Permissions.UIPermissionAttribute.Window", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionAttribute.cs#L14C44-L14C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionAttribute.cs#L14C44-L14C48" } ], "DocsId": "T:System.Security.Permissions.UIPermissionAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionAttribute.cs" }, { "Members": [ { "DocsId": "F:System.Security.Permissions.UIPermissionClipboard.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionClipboard.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionClipboard.cs" }, { "DocsId": "F:System.Security.Permissions.UIPermissionClipboard.AllClipboard", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionClipboard.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionClipboard.cs" }, { "DocsId": "F:System.Security.Permissions.UIPermissionClipboard.NoClipboard", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionClipboard.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionClipboard.cs" }, { "DocsId": "F:System.Security.Permissions.UIPermissionClipboard.OwnClipboard", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionClipboard.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionClipboard.cs" } ], "DocsId": "T:System.Security.Permissions.UIPermissionClipboard", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionClipboard.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionClipboard.cs" }, { "Members": [ { "DocsId": "F:System.Security.Permissions.UIPermissionWindow.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionWindow.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionWindow.cs" }, { "DocsId": "F:System.Security.Permissions.UIPermissionWindow.AllWindows", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionWindow.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionWindow.cs" }, { "DocsId": "F:System.Security.Permissions.UIPermissionWindow.NoWindows", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionWindow.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionWindow.cs" }, { "DocsId": "F:System.Security.Permissions.UIPermissionWindow.SafeSubWindows", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionWindow.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionWindow.cs" }, { "DocsId": "F:System.Security.Permissions.UIPermissionWindow.SafeTopLevelWindows", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionWindow.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionWindow.cs" } ], "DocsId": "T:System.Security.Permissions.UIPermissionWindow", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionWindow.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UIPermissionWindow.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.UrlIdentityPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UrlIdentityPermission.cs#L11C9-L11C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UrlIdentityPermission.cs#L11C9-L11C64" }, { "DocsId": "M:System.Security.Permissions.UrlIdentityPermission.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UrlIdentityPermission.cs#L12C9-L12C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UrlIdentityPermission.cs#L12C9-L12C54" }, { "DocsId": "M:System.Security.Permissions.UrlIdentityPermission.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UrlIdentityPermission.cs#L14C46-L14C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UrlIdentityPermission.cs#L14C46-L14C74" }, { "DocsId": "M:System.Security.Permissions.UrlIdentityPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UrlIdentityPermission.cs#L15C61-L15C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UrlIdentityPermission.cs#L15C61-L15C62" }, { "DocsId": "M:System.Security.Permissions.UrlIdentityPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UrlIdentityPermission.cs#L16C69-L16C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UrlIdentityPermission.cs#L16C69-L16C97" }, { "DocsId": "M:System.Security.Permissions.UrlIdentityPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UrlIdentityPermission.cs#L17C63-L17C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UrlIdentityPermission.cs#L17C63-L17C76" }, { "DocsId": "M:System.Security.Permissions.UrlIdentityPermission.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UrlIdentityPermission.cs#L18C51-L18C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UrlIdentityPermission.cs#L18C51-L18C83" }, { "DocsId": "M:System.Security.Permissions.UrlIdentityPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UrlIdentityPermission.cs#L19C65-L19C93" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UrlIdentityPermission.cs#L19C65-L19C93" }, { "DocsId": "P:System.Security.Permissions.UrlIdentityPermission.Url", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UrlIdentityPermission.cs#L13C29-L13C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UrlIdentityPermission.cs#L13C29-L13C33" } ], "DocsId": "T:System.Security.Permissions.UrlIdentityPermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UrlIdentityPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UrlIdentityPermission.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.UrlIdentityPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UrlIdentityPermissionAttribute.cs#L12C72-L12C105" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UrlIdentityPermissionAttribute.cs#L12C72-L12C105" }, { "DocsId": "M:System.Security.Permissions.UrlIdentityPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UrlIdentityPermissionAttribute.cs#L14C58-L14C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UrlIdentityPermissionAttribute.cs#L14C58-L14C86" }, { "DocsId": "P:System.Security.Permissions.UrlIdentityPermissionAttribute.Url", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UrlIdentityPermissionAttribute.cs#L13C29-L13C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UrlIdentityPermissionAttribute.cs#L13C29-L13C33" } ], "DocsId": "T:System.Security.Permissions.UrlIdentityPermissionAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UrlIdentityPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/UrlIdentityPermissionAttribute.cs" }, { "Members": [ { "DocsId": "F:System.Security.Permissions.WebBrowserPermissionLevel.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs" }, { "DocsId": "F:System.Security.Permissions.WebBrowserPermissionLevel.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs" }, { "DocsId": "F:System.Security.Permissions.WebBrowserPermissionLevel.Safe", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs" }, { "DocsId": "F:System.Security.Permissions.WebBrowserPermissionLevel.Unrestricted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs" } ], "DocsId": "T:System.Security.Permissions.WebBrowserPermissionLevel", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.WebBrowserPermission.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs#L20C9-L20C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs#L20C9-L20C42" }, { "DocsId": "M:System.Security.Permissions.WebBrowserPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs#L21C9-L21C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs#L21C9-L21C63" }, { "DocsId": "M:System.Security.Permissions.WebBrowserPermission.#ctor(System.Security.Permissions.WebBrowserPermissionLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs#L22C9-L22C93" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs#L22C9-L22C93" }, { "DocsId": "M:System.Security.Permissions.WebBrowserPermission.IsUnrestricted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs#L23C40-L23C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs#L23C40-L23C52" }, { "DocsId": "M:System.Security.Permissions.WebBrowserPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs#L24C63-L24C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs#L24C63-L24C75" }, { "DocsId": "M:System.Security.Permissions.WebBrowserPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs#L25C69-L25C103" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs#L25C69-L25C103" }, { "DocsId": "M:System.Security.Permissions.WebBrowserPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs#L26C65-L26C99" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs#L26C65-L26C99" }, { "DocsId": "M:System.Security.Permissions.WebBrowserPermission.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs#L27C46-L27C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs#L27C46-L27C80" }, { "DocsId": "M:System.Security.Permissions.WebBrowserPermission.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs#L28C51-L28C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs#L28C51-L28C83" }, { "DocsId": "M:System.Security.Permissions.WebBrowserPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs#L29C73-L29C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs#L29C73-L29C74" }, { "DocsId": "P:System.Security.Permissions.WebBrowserPermission.Level", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs#L30C56-L30C102" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs#L30C56-L30C102" } ], "DocsId": "T:System.Security.Permissions.WebBrowserPermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.WebBrowserPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs#L39C71-L39C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs#L39C71-L39C87" }, { "DocsId": "M:System.Security.Permissions.WebBrowserPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs#L40C58-L40C92" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs#L40C58-L40C92" }, { "DocsId": "P:System.Security.Permissions.WebBrowserPermissionAttribute.Level", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs#L41C56-L41C102" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs#L41C56-L41C102" } ], "DocsId": "T:System.Security.Permissions.WebBrowserPermissionAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/WebBrowserPermission.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.ZoneIdentityPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ZoneIdentityPermission.cs#L11C9-L11C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ZoneIdentityPermission.cs#L11C9-L11C65" }, { "DocsId": "M:System.Security.Permissions.ZoneIdentityPermission.#ctor(System.Security.SecurityZone)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ZoneIdentityPermission.cs#L12C9-L12C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ZoneIdentityPermission.cs#L12C9-L12C61" }, { "DocsId": "M:System.Security.Permissions.ZoneIdentityPermission.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ZoneIdentityPermission.cs#L14C46-L14C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ZoneIdentityPermission.cs#L14C46-L14C58" }, { "DocsId": "M:System.Security.Permissions.ZoneIdentityPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ZoneIdentityPermission.cs#L15C61-L15C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ZoneIdentityPermission.cs#L15C61-L15C62" }, { "DocsId": "M:System.Security.Permissions.ZoneIdentityPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ZoneIdentityPermission.cs#L16C69-L16C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ZoneIdentityPermission.cs#L16C69-L16C97" }, { "DocsId": "M:System.Security.Permissions.ZoneIdentityPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ZoneIdentityPermission.cs#L17C63-L17C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ZoneIdentityPermission.cs#L17C63-L17C76" }, { "DocsId": "M:System.Security.Permissions.ZoneIdentityPermission.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ZoneIdentityPermission.cs#L18C51-L18C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ZoneIdentityPermission.cs#L18C51-L18C83" }, { "DocsId": "M:System.Security.Permissions.ZoneIdentityPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ZoneIdentityPermission.cs#L19C65-L19C93" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ZoneIdentityPermission.cs#L19C65-L19C93" }, { "DocsId": "P:System.Security.Permissions.ZoneIdentityPermission.SecurityZone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ZoneIdentityPermission.cs#L13C44-L13C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ZoneIdentityPermission.cs#L13C44-L13C48" } ], "DocsId": "T:System.Security.Permissions.ZoneIdentityPermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ZoneIdentityPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ZoneIdentityPermission.cs" }, { "Members": [ { "DocsId": "M:System.Security.Permissions.ZoneIdentityPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ZoneIdentityPermissionAttribute.cs#L12C73-L12C106" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ZoneIdentityPermissionAttribute.cs#L12C73-L12C106" }, { "DocsId": "M:System.Security.Permissions.ZoneIdentityPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ZoneIdentityPermissionAttribute.cs#L14C58-L14C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ZoneIdentityPermissionAttribute.cs#L14C58-L14C86" }, { "DocsId": "P:System.Security.Permissions.ZoneIdentityPermissionAttribute.Zone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ZoneIdentityPermissionAttribute.cs#L13C36-L13C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ZoneIdentityPermissionAttribute.cs#L13C36-L13C40" } ], "DocsId": "T:System.Security.Permissions.ZoneIdentityPermissionAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ZoneIdentityPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Security/Permissions/ZoneIdentityPermissionAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Net.DnsPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/DnsPermission.cs#L14C9-L14C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/DnsPermission.cs#L14C9-L14C56" }, { "DocsId": "M:System.Net.DnsPermission.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/DnsPermission.cs#L15C46-L15C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/DnsPermission.cs#L15C46-L15C58" }, { "DocsId": "M:System.Net.DnsPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/DnsPermission.cs#L16C73-L16C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/DnsPermission.cs#L16C73-L16C74" }, { "DocsId": "M:System.Net.DnsPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/DnsPermission.cs#L17C69-L17C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/DnsPermission.cs#L17C69-L17C81" }, { "DocsId": "M:System.Net.DnsPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/DnsPermission.cs#L18C64-L18C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/DnsPermission.cs#L18C64-L18C69" }, { "DocsId": "M:System.Net.DnsPermission.IsUnrestricted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/DnsPermission.cs#L19C41-L19C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/DnsPermission.cs#L19C41-L19C46" }, { "DocsId": "M:System.Net.DnsPermission.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/DnsPermission.cs#L20C51-L20C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/DnsPermission.cs#L20C51-L20C63" }, { "DocsId": "M:System.Net.DnsPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/DnsPermission.cs#L21C65-L21C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/DnsPermission.cs#L21C65-L21C77" } ], "DocsId": "T:System.Net.DnsPermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/DnsPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/DnsPermission.cs" }, { "Members": [ { "DocsId": "M:System.Net.DnsPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/DnsPermissionAttribute.cs#L16C64-L16C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/DnsPermissionAttribute.cs#L16C64-L16C80" }, { "DocsId": "M:System.Net.DnsPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/DnsPermissionAttribute.cs#L17C58-L17C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/DnsPermissionAttribute.cs#L17C58-L17C70" } ], "DocsId": "T:System.Net.DnsPermissionAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/DnsPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/DnsPermissionAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Net.EndpointPermission.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/EndpointPermission.cs#L12C51-L12C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/EndpointPermission.cs#L12C51-L12C64" }, { "DocsId": "M:System.Net.EndpointPermission.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/EndpointPermission.cs#L13C45-L13C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/EndpointPermission.cs#L13C45-L13C54" }, { "DocsId": "P:System.Net.EndpointPermission.Hostname", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/EndpointPermission.cs#L9C40-L9C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/EndpointPermission.cs#L9C40-L9C52" }, { "DocsId": "P:System.Net.EndpointPermission.Port", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/EndpointPermission.cs#L10C33-L10C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/EndpointPermission.cs#L10C33-L10C42" }, { "DocsId": "P:System.Net.EndpointPermission.Transport", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/EndpointPermission.cs#L11C42-L11C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/EndpointPermission.cs#L11C42-L11C46" } ], "DocsId": "T:System.Net.EndpointPermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/EndpointPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/EndpointPermission.cs" }, { "Members": [ { "DocsId": "F:System.Net.NetworkAccess.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/NetworkAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/NetworkAccess.cs" }, { "DocsId": "F:System.Net.NetworkAccess.Accept", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/NetworkAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/NetworkAccess.cs" }, { "DocsId": "F:System.Net.NetworkAccess.Connect", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/NetworkAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/NetworkAccess.cs" } ], "DocsId": "T:System.Net.NetworkAccess", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/NetworkAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/NetworkAccess.cs" }, { "Members": [ { "DocsId": "M:System.Net.SocketPermission.#ctor(System.Net.NetworkAccess,System.Net.TransportType,System.String,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/SocketPermission.cs#L15C9-L15C116" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/SocketPermission.cs#L15C9-L15C116" }, { "DocsId": "M:System.Net.SocketPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/SocketPermission.cs#L16C9-L16C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/SocketPermission.cs#L16C9-L16C59" }, { "DocsId": "M:System.Net.SocketPermission.AddPermission(System.Net.NetworkAccess,System.Net.TransportType,System.String,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/SocketPermission.cs#L19C117-L19C118" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/SocketPermission.cs#L19C117-L19C118" }, { "DocsId": "M:System.Net.SocketPermission.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/SocketPermission.cs#L20C46-L20C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/SocketPermission.cs#L20C46-L20C58" }, { "DocsId": "M:System.Net.SocketPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/SocketPermission.cs#L21C73-L21C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/SocketPermission.cs#L21C73-L21C74" }, { "DocsId": "M:System.Net.SocketPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/SocketPermission.cs#L22C69-L22C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/SocketPermission.cs#L22C69-L22C81" }, { "DocsId": "M:System.Net.SocketPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/SocketPermission.cs#L23C64-L23C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/SocketPermission.cs#L23C64-L23C69" }, { "DocsId": "M:System.Net.SocketPermission.IsUnrestricted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/SocketPermission.cs#L24C41-L24C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/SocketPermission.cs#L24C41-L24C46" }, { "DocsId": "M:System.Net.SocketPermission.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/SocketPermission.cs#L25C51-L25C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/SocketPermission.cs#L25C51-L25C63" }, { "DocsId": "M:System.Net.SocketPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/SocketPermission.cs#L26C65-L26C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/SocketPermission.cs#L26C65-L26C77" }, { "DocsId": "F:System.Net.SocketPermission.AllPorts", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/SocketPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/SocketPermission.cs" }, { "DocsId": "P:System.Net.SocketPermission.AcceptList", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/SocketPermission.cs#L17C66-L17C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/SocketPermission.cs#L17C66-L17C78" }, { "DocsId": "P:System.Net.SocketPermission.ConnectList", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/SocketPermission.cs#L18C67-L18C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/SocketPermission.cs#L18C67-L18C79" } ], "DocsId": "T:System.Net.SocketPermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/SocketPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/SocketPermission.cs" }, { "Members": [ { "DocsId": "M:System.Net.SocketPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/SocketPermissionAttribute.cs#L16C67-L16C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/SocketPermissionAttribute.cs#L16C67-L16C83" }, { "DocsId": "M:System.Net.SocketPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/SocketPermissionAttribute.cs#L21C58-L21C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/SocketPermissionAttribute.cs#L21C58-L21C70" }, { "DocsId": "P:System.Net.SocketPermissionAttribute.Access", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/SocketPermissionAttribute.cs#L17C38-L17C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/SocketPermissionAttribute.cs#L17C38-L17C50" }, { "DocsId": "P:System.Net.SocketPermissionAttribute.Host", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/SocketPermissionAttribute.cs#L18C36-L18C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/SocketPermissionAttribute.cs#L18C36-L18C48" }, { "DocsId": "P:System.Net.SocketPermissionAttribute.Port", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/SocketPermissionAttribute.cs#L19C36-L19C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/SocketPermissionAttribute.cs#L19C36-L19C48" }, { "DocsId": "P:System.Net.SocketPermissionAttribute.Transport", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/SocketPermissionAttribute.cs#L20C41-L20C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/SocketPermissionAttribute.cs#L20C41-L20C53" } ], "DocsId": "T:System.Net.SocketPermissionAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/SocketPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/SocketPermissionAttribute.cs" }, { "Members": [ { "DocsId": "F:System.Net.TransportType.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/TransportType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/TransportType.cs" }, { "DocsId": "F:System.Net.TransportType.All", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/TransportType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/TransportType.cs" }, { "DocsId": "F:System.Net.TransportType.Connectionless", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/TransportType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/TransportType.cs" }, { "DocsId": "F:System.Net.TransportType.ConnectionOriented", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/TransportType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/TransportType.cs" }, { "DocsId": "F:System.Net.TransportType.Tcp", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/TransportType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/TransportType.cs" }, { "DocsId": "F:System.Net.TransportType.Udp", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/TransportType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/TransportType.cs" } ], "DocsId": "T:System.Net.TransportType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/TransportType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/TransportType.cs" }, { "Members": [ { "DocsId": "M:System.Net.WebPermission.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs#L16C9-L16C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs#L16C9-L16C35" }, { "DocsId": "M:System.Net.WebPermission.#ctor(System.Net.NetworkAccess,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs#L17C9-L17C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs#L17C9-L17C73" }, { "DocsId": "M:System.Net.WebPermission.#ctor(System.Net.NetworkAccess,System.Text.RegularExpressions.Regex)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs#L18C9-L18C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs#L18C9-L18C71" }, { "DocsId": "M:System.Net.WebPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs#L19C9-L19C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs#L19C9-L19C56" }, { "DocsId": "M:System.Net.WebPermission.AddPermission(System.Net.NetworkAccess,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs#L22C77-L22C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs#L22C77-L22C78" }, { "DocsId": "M:System.Net.WebPermission.AddPermission(System.Net.NetworkAccess,System.Text.RegularExpressions.Regex)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs#L23C75-L23C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs#L23C75-L23C76" }, { "DocsId": "M:System.Net.WebPermission.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs#L24C46-L24C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs#L24C46-L24C58" }, { "DocsId": "M:System.Net.WebPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs#L25C73-L25C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs#L25C73-L25C74" }, { "DocsId": "M:System.Net.WebPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs#L26C69-L26C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs#L26C69-L26C81" }, { "DocsId": "M:System.Net.WebPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs#L27C64-L27C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs#L27C64-L27C69" }, { "DocsId": "M:System.Net.WebPermission.IsUnrestricted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs#L28C41-L28C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs#L28C41-L28C46" }, { "DocsId": "M:System.Net.WebPermission.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs#L29C51-L29C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs#L29C51-L29C63" }, { "DocsId": "M:System.Net.WebPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs#L30C65-L30C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs#L30C65-L30C77" }, { "DocsId": "P:System.Net.WebPermission.AcceptList", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs#L20C47-L20C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs#L20C47-L20C59" }, { "DocsId": "P:System.Net.WebPermission.ConnectList", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs#L21C48-L21C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs#L21C48-L21C60" } ], "DocsId": "T:System.Net.WebPermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/WebPermission.cs" }, { "Members": [ { "DocsId": "M:System.Net.WebPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/WebPermissionAttribute.cs#L16C64-L16C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/WebPermissionAttribute.cs#L16C64-L16C80" }, { "DocsId": "M:System.Net.WebPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/WebPermissionAttribute.cs#L21C58-L21C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/WebPermissionAttribute.cs#L21C58-L21C70" }, { "DocsId": "P:System.Net.WebPermissionAttribute.Accept", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/WebPermissionAttribute.cs#L17C38-L17C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/WebPermissionAttribute.cs#L17C38-L17C50" }, { "DocsId": "P:System.Net.WebPermissionAttribute.AcceptPattern", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/WebPermissionAttribute.cs#L18C45-L18C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/WebPermissionAttribute.cs#L18C45-L18C57" }, { "DocsId": "P:System.Net.WebPermissionAttribute.Connect", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/WebPermissionAttribute.cs#L19C39-L19C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/WebPermissionAttribute.cs#L19C39-L19C51" }, { "DocsId": "P:System.Net.WebPermissionAttribute.ConnectPattern", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/WebPermissionAttribute.cs#L20C46-L20C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/WebPermissionAttribute.cs#L20C46-L20C58" } ], "DocsId": "T:System.Net.WebPermissionAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/WebPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/WebPermissionAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Net.PeerToPeer.PnrpPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpPermission.cs#L14C9-L14C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpPermission.cs#L14C9-L14C57" }, { "DocsId": "M:System.Net.PeerToPeer.PnrpPermission.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpPermission.cs#L15C46-L15C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpPermission.cs#L15C46-L15C58" }, { "DocsId": "M:System.Net.PeerToPeer.PnrpPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpPermission.cs#L16C59-L16C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpPermission.cs#L16C59-L16C60" }, { "DocsId": "M:System.Net.PeerToPeer.PnrpPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpPermission.cs#L17C69-L17C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpPermission.cs#L17C69-L17C81" }, { "DocsId": "M:System.Net.PeerToPeer.PnrpPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpPermission.cs#L18C64-L18C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpPermission.cs#L18C64-L18C69" }, { "DocsId": "M:System.Net.PeerToPeer.PnrpPermission.IsUnrestricted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpPermission.cs#L19C41-L19C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpPermission.cs#L19C41-L19C46" }, { "DocsId": "M:System.Net.PeerToPeer.PnrpPermission.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpPermission.cs#L20C51-L20C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpPermission.cs#L20C51-L20C63" }, { "DocsId": "M:System.Net.PeerToPeer.PnrpPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpPermission.cs#L21C65-L21C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpPermission.cs#L21C65-L21C77" } ], "DocsId": "T:System.Net.PeerToPeer.PnrpPermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpPermission.cs" }, { "Members": [ { "DocsId": "M:System.Net.PeerToPeer.PnrpPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpPermissionAttribute.cs#L16C65-L16C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpPermissionAttribute.cs#L16C65-L16C81" }, { "DocsId": "M:System.Net.PeerToPeer.PnrpPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpPermissionAttribute.cs#L17C58-L17C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpPermissionAttribute.cs#L17C58-L17C70" } ], "DocsId": "T:System.Net.PeerToPeer.PnrpPermissionAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpPermissionAttribute.cs" }, { "Members": [ { "DocsId": "F:System.Net.PeerToPeer.PnrpScope.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpScope.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpScope.cs" }, { "DocsId": "F:System.Net.PeerToPeer.PnrpScope.All", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpScope.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpScope.cs" }, { "DocsId": "F:System.Net.PeerToPeer.PnrpScope.Global", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpScope.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpScope.cs" }, { "DocsId": "F:System.Net.PeerToPeer.PnrpScope.LinkLocal", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpScope.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpScope.cs" }, { "DocsId": "F:System.Net.PeerToPeer.PnrpScope.SiteLocal", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpScope.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpScope.cs" } ], "DocsId": "T:System.Net.PeerToPeer.PnrpScope", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpScope.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/PnrpScope.cs" }, { "Members": [ { "DocsId": "M:System.Net.PeerToPeer.Collaboration.PeerCollaborationPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/Collaboration/PeerCollaborationPermission.cs#L14C9-L14C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/Collaboration/PeerCollaborationPermission.cs#L14C9-L14C70" }, { "DocsId": "M:System.Net.PeerToPeer.Collaboration.PeerCollaborationPermission.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/Collaboration/PeerCollaborationPermission.cs#L15C46-L15C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/Collaboration/PeerCollaborationPermission.cs#L15C46-L15C58" }, { "DocsId": "M:System.Net.PeerToPeer.Collaboration.PeerCollaborationPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/Collaboration/PeerCollaborationPermission.cs#L16C59-L16C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/Collaboration/PeerCollaborationPermission.cs#L16C59-L16C60" }, { "DocsId": "M:System.Net.PeerToPeer.Collaboration.PeerCollaborationPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/Collaboration/PeerCollaborationPermission.cs#L17C69-L17C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/Collaboration/PeerCollaborationPermission.cs#L17C69-L17C81" }, { "DocsId": "M:System.Net.PeerToPeer.Collaboration.PeerCollaborationPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/Collaboration/PeerCollaborationPermission.cs#L18C64-L18C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/Collaboration/PeerCollaborationPermission.cs#L18C64-L18C69" }, { "DocsId": "M:System.Net.PeerToPeer.Collaboration.PeerCollaborationPermission.IsUnrestricted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/Collaboration/PeerCollaborationPermission.cs#L19C41-L19C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/Collaboration/PeerCollaborationPermission.cs#L19C41-L19C46" }, { "DocsId": "M:System.Net.PeerToPeer.Collaboration.PeerCollaborationPermission.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/Collaboration/PeerCollaborationPermission.cs#L20C51-L20C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/Collaboration/PeerCollaborationPermission.cs#L20C51-L20C63" }, { "DocsId": "M:System.Net.PeerToPeer.Collaboration.PeerCollaborationPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/Collaboration/PeerCollaborationPermission.cs#L21C65-L21C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/Collaboration/PeerCollaborationPermission.cs#L21C65-L21C77" } ], "DocsId": "T:System.Net.PeerToPeer.Collaboration.PeerCollaborationPermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/Collaboration/PeerCollaborationPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/Collaboration/PeerCollaborationPermission.cs" }, { "Members": [ { "DocsId": "M:System.Net.PeerToPeer.Collaboration.PeerCollaborationPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/Collaboration/PeerCollaborationPermissionAttribute.cs#L16C78-L16C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/Collaboration/PeerCollaborationPermissionAttribute.cs#L16C78-L16C94" }, { "DocsId": "M:System.Net.PeerToPeer.Collaboration.PeerCollaborationPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/Collaboration/PeerCollaborationPermissionAttribute.cs#L17C58-L17C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/Collaboration/PeerCollaborationPermissionAttribute.cs#L17C58-L17C70" } ], "DocsId": "T:System.Net.PeerToPeer.Collaboration.PeerCollaborationPermissionAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/Collaboration/PeerCollaborationPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/PeerToPeer/Collaboration/PeerCollaborationPermissionAttribute.cs" }, { "Members": [ { "DocsId": "F:System.Net.NetworkInformation.NetworkInformationAccess.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationAccess.cs" }, { "DocsId": "F:System.Net.NetworkInformation.NetworkInformationAccess.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationAccess.cs" }, { "DocsId": "F:System.Net.NetworkInformation.NetworkInformationAccess.Read", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationAccess.cs" }, { "DocsId": "F:System.Net.NetworkInformation.NetworkInformationAccess.Ping", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationAccess.cs" } ], "DocsId": "T:System.Net.NetworkInformation.NetworkInformationAccess", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationAccess.cs" }, { "Members": [ { "DocsId": "M:System.Net.NetworkInformation.NetworkInformationPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermission.cs#L14C9-L14C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermission.cs#L14C9-L14C71" }, { "DocsId": "M:System.Net.NetworkInformation.NetworkInformationPermission.#ctor(System.Net.NetworkInformation.NetworkInformationAccess)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermission.cs#L15C9-L15C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermission.cs#L15C9-L15C81" }, { "DocsId": "M:System.Net.NetworkInformation.NetworkInformationPermission.AddPermission(System.Net.NetworkInformation.NetworkInformationAccess)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermission.cs#L17C70-L17C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermission.cs#L17C70-L17C71" }, { "DocsId": "M:System.Net.NetworkInformation.NetworkInformationPermission.IsUnrestricted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermission.cs#L18C41-L18C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermission.cs#L18C41-L18C45" }, { "DocsId": "M:System.Net.NetworkInformation.NetworkInformationPermission.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermission.cs#L19C47-L19C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermission.cs#L19C47-L19C51" }, { "DocsId": "M:System.Net.NetworkInformation.NetworkInformationPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermission.cs#L20C66-L20C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermission.cs#L20C66-L20C70" }, { "DocsId": "M:System.Net.NetworkInformation.NetworkInformationPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermission.cs#L21C70-L21C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermission.cs#L21C70-L21C74" }, { "DocsId": "M:System.Net.NetworkInformation.NetworkInformationPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermission.cs#L22C64-L22C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermission.cs#L22C64-L22C69" }, { "DocsId": "M:System.Net.NetworkInformation.NetworkInformationPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermission.cs#L23C73-L23C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermission.cs#L23C73-L23C74" }, { "DocsId": "M:System.Net.NetworkInformation.NetworkInformationPermission.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermission.cs#L24C52-L24C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermission.cs#L24C52-L24C56" }, { "DocsId": "P:System.Net.NetworkInformation.NetworkInformationPermission.Access", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermission.cs#L16C50-L16C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermission.cs#L16C50-L16C54" } ], "DocsId": "T:System.Net.NetworkInformation.NetworkInformationPermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermission.cs" }, { "Members": [ { "DocsId": "M:System.Net.NetworkInformation.NetworkInformationPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermissionAttribute.cs#L15C79-L15C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermissionAttribute.cs#L15C79-L15C95" }, { "DocsId": "M:System.Net.NetworkInformation.NetworkInformationPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermissionAttribute.cs#L17C59-L17C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermissionAttribute.cs#L17C59-L17C63" }, { "DocsId": "P:System.Net.NetworkInformation.NetworkInformationPermissionAttribute.Access", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermissionAttribute.cs#L16C32-L16C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermissionAttribute.cs#L16C32-L16C36" } ], "DocsId": "T:System.Net.NetworkInformation.NetworkInformationPermissionAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/NetworkInformation/NetworkInformationPermissionAttribute.cs" }, { "Members": [ { "DocsId": "F:System.Net.Mail.SmtpAccess.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpAccess.cs" }, { "DocsId": "F:System.Net.Mail.SmtpAccess.Connect", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpAccess.cs" }, { "DocsId": "F:System.Net.Mail.SmtpAccess.ConnectToUnrestrictedPort", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpAccess.cs" }, { "DocsId": "F:System.Net.Mail.SmtpAccess.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpAccess.cs" } ], "DocsId": "T:System.Net.Mail.SmtpAccess", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpAccess.cs" }, { "Members": [ { "DocsId": "M:System.Net.Mail.SmtpPermission.#ctor(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermission.cs#L14C9-L14C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermission.cs#L14C9-L14C53" }, { "DocsId": "M:System.Net.Mail.SmtpPermission.#ctor(System.Net.Mail.SmtpAccess)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermission.cs#L15C9-L15C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermission.cs#L15C9-L15C53" }, { "DocsId": "M:System.Net.Mail.SmtpPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermission.cs#L16C9-L16C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermission.cs#L16C9-L16C57" }, { "DocsId": "M:System.Net.Mail.SmtpPermission.AddPermission(System.Net.Mail.SmtpAccess)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermission.cs#L18C56-L18C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermission.cs#L18C56-L18C57" }, { "DocsId": "M:System.Net.Mail.SmtpPermission.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermission.cs#L19C46-L19C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermission.cs#L19C46-L19C58" }, { "DocsId": "M:System.Net.Mail.SmtpPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermission.cs#L20C73-L20C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermission.cs#L20C73-L20C74" }, { "DocsId": "M:System.Net.Mail.SmtpPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermission.cs#L21C69-L21C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermission.cs#L21C69-L21C81" }, { "DocsId": "M:System.Net.Mail.SmtpPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermission.cs#L22C64-L22C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermission.cs#L22C64-L22C69" }, { "DocsId": "M:System.Net.Mail.SmtpPermission.IsUnrestricted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermission.cs#L23C41-L23C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermission.cs#L23C41-L23C46" }, { "DocsId": "M:System.Net.Mail.SmtpPermission.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermission.cs#L24C51-L24C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermission.cs#L24C51-L24C63" }, { "DocsId": "M:System.Net.Mail.SmtpPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermission.cs#L25C65-L25C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermission.cs#L25C65-L25C77" }, { "DocsId": "P:System.Net.Mail.SmtpPermission.Access", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermission.cs#L17C36-L17C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermission.cs#L17C36-L17C40" } ], "DocsId": "T:System.Net.Mail.SmtpPermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermission.cs" }, { "Members": [ { "DocsId": "M:System.Net.Mail.SmtpPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermissionAttribute.cs#L16C65-L16C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermissionAttribute.cs#L16C65-L16C81" }, { "DocsId": "M:System.Net.Mail.SmtpPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermissionAttribute.cs#L18C58-L18C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermissionAttribute.cs#L18C58-L18C70" }, { "DocsId": "P:System.Net.Mail.SmtpPermissionAttribute.Access", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermissionAttribute.cs#L17C38-L17C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermissionAttribute.cs#L17C38-L17C50" } ], "DocsId": "T:System.Net.Mail.SmtpPermissionAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Net/Mail/SmtpPermissionAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.PrintingPermission.#ctor(System.Drawing.Printing.PrintingPermissionLevel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermission.cs#L14C9-L14C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermission.cs#L14C9-L14C77" }, { "DocsId": "M:System.Drawing.Printing.PrintingPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermission.cs#L15C9-L15C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermission.cs#L15C9-L15C61" }, { "DocsId": "M:System.Drawing.Printing.PrintingPermission.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermission.cs#L17C47-L17C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermission.cs#L17C47-L17C51" }, { "DocsId": "M:System.Drawing.Printing.PrintingPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermission.cs#L18C65-L18C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermission.cs#L18C65-L18C66" }, { "DocsId": "M:System.Drawing.Printing.PrintingPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermission.cs#L19C70-L19C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermission.cs#L19C70-L19C74" }, { "DocsId": "M:System.Drawing.Printing.PrintingPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermission.cs#L20C64-L20C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermission.cs#L20C64-L20C69" }, { "DocsId": "M:System.Drawing.Printing.PrintingPermission.IsUnrestricted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermission.cs#L21C41-L21C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermission.cs#L21C41-L21C46" }, { "DocsId": "M:System.Drawing.Printing.PrintingPermission.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermission.cs#L22C52-L22C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermission.cs#L22C52-L22C56" }, { "DocsId": "M:System.Drawing.Printing.PrintingPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermission.cs#L23C66-L23C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermission.cs#L23C66-L23C70" }, { "DocsId": "P:System.Drawing.Printing.PrintingPermission.Level", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermission.cs#L16C48-L16C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermission.cs#L16C48-L16C52" } ], "DocsId": "T:System.Drawing.Printing.PrintingPermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermission.cs" }, { "Members": [ { "DocsId": "M:System.Drawing.Printing.PrintingPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermissionAttribute.cs#L14C69-L14C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermissionAttribute.cs#L14C69-L14C85" }, { "DocsId": "M:System.Drawing.Printing.PrintingPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermissionAttribute.cs#L16C74-L16C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermissionAttribute.cs#L16C74-L16C86" }, { "DocsId": "P:System.Drawing.Printing.PrintingPermissionAttribute.Level", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermissionAttribute.cs#L15C48-L15C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermissionAttribute.cs#L15C48-L15C52" } ], "DocsId": "T:System.Drawing.Printing.PrintingPermissionAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermissionAttribute.cs" }, { "Members": [ { "DocsId": "F:System.Drawing.Printing.PrintingPermissionLevel.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermissionLevel.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermissionLevel.cs" }, { "DocsId": "F:System.Drawing.Printing.PrintingPermissionLevel.AllPrinting", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermissionLevel.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermissionLevel.cs" }, { "DocsId": "F:System.Drawing.Printing.PrintingPermissionLevel.DefaultPrinting", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermissionLevel.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermissionLevel.cs" }, { "DocsId": "F:System.Drawing.Printing.PrintingPermissionLevel.NoPrinting", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermissionLevel.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermissionLevel.cs" }, { "DocsId": "F:System.Drawing.Printing.PrintingPermissionLevel.SafePrinting", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermissionLevel.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermissionLevel.cs" } ], "DocsId": "T:System.Drawing.Printing.PrintingPermissionLevel", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermissionLevel.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Drawing/Printing/PrintingPermissionLevel.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.DirectoryServicesPermission.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermission.cs#L11C9-L11C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermission.cs#L11C9-L11C49" }, { "DocsId": "M:System.DirectoryServices.DirectoryServicesPermission.#ctor(System.DirectoryServices.DirectoryServicesPermissionEntry[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermission.cs#L12C9-L12C108" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermission.cs#L12C9-L12C108" }, { "DocsId": "M:System.DirectoryServices.DirectoryServicesPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermission.cs#L13C9-L13C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermission.cs#L13C9-L13C70" }, { "DocsId": "M:System.DirectoryServices.DirectoryServicesPermission.#ctor(System.DirectoryServices.DirectoryServicesPermissionAccess,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermission.cs#L14C9-L14C113" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermission.cs#L14C9-L14C113" }, { "DocsId": "P:System.DirectoryServices.DirectoryServicesPermission.PermissionEntries", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermission.cs#L15C80-L15C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermission.cs#L15C80-L15C84" } ], "DocsId": "T:System.DirectoryServices.DirectoryServicesPermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermission.cs" }, { "Members": [ { "DocsId": "F:System.DirectoryServices.DirectoryServicesPermissionAccess.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionAccess.cs" }, { "DocsId": "F:System.DirectoryServices.DirectoryServicesPermissionAccess.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionAccess.cs" }, { "DocsId": "F:System.DirectoryServices.DirectoryServicesPermissionAccess.Browse", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionAccess.cs" }, { "DocsId": "F:System.DirectoryServices.DirectoryServicesPermissionAccess.Write", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionAccess.cs" } ], "DocsId": "T:System.DirectoryServices.DirectoryServicesPermissionAccess", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionAccess.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.DirectoryServicesPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionAttribute.cs#L15C78-L15C111" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionAttribute.cs#L15C78-L15C111" }, { "DocsId": "M:System.DirectoryServices.DirectoryServicesPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionAttribute.cs#L18C59-L18C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionAttribute.cs#L18C59-L18C87" }, { "DocsId": "P:System.DirectoryServices.DirectoryServicesPermissionAttribute.PermissionAccess", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionAttribute.cs#L16C69-L16C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionAttribute.cs#L16C69-L16C73" }, { "DocsId": "P:System.DirectoryServices.DirectoryServicesPermissionAttribute.Path", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionAttribute.cs#L17C31-L17C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionAttribute.cs#L17C31-L17C35" } ], "DocsId": "T:System.DirectoryServices.DirectoryServicesPermissionAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionAttribute.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.DirectoryServicesPermissionEntry.#ctor(System.DirectoryServices.DirectoryServicesPermissionAccess,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntry.cs#L8C9-L8C118" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntry.cs#L8C9-L8C118" }, { "DocsId": "P:System.DirectoryServices.DirectoryServicesPermissionEntry.Path", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntry.cs#L9C31-L9C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntry.cs#L9C31-L9C35" }, { "DocsId": "P:System.DirectoryServices.DirectoryServicesPermissionEntry.PermissionAccess", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntry.cs#L10C69-L10C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntry.cs#L10C69-L10C73" } ], "DocsId": "T:System.DirectoryServices.DirectoryServicesPermissionEntry", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntry.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntry.cs" }, { "Members": [ { "DocsId": "M:System.DirectoryServices.DirectoryServicesPermissionEntryCollection.Add(System.DirectoryServices.DirectoryServicesPermissionEntry)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntryCollection.cs#L12C66-L12C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntryCollection.cs#L12C66-L12C75" }, { "DocsId": "M:System.DirectoryServices.DirectoryServicesPermissionEntryCollection.AddRange(System.DirectoryServices.DirectoryServicesPermissionEntryCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntryCollection.cs#L13C82-L13C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntryCollection.cs#L13C82-L13C83" }, { "DocsId": "M:System.DirectoryServices.DirectoryServicesPermissionEntryCollection.AddRange(System.DirectoryServices.DirectoryServicesPermissionEntry[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntryCollection.cs#L14C74-L14C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntryCollection.cs#L14C74-L14C75" }, { "DocsId": "M:System.DirectoryServices.DirectoryServicesPermissionEntryCollection.Contains(System.DirectoryServices.DirectoryServicesPermissionEntry)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntryCollection.cs#L15C72-L15C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntryCollection.cs#L15C72-L15C85" }, { "DocsId": "M:System.DirectoryServices.DirectoryServicesPermissionEntryCollection.CopyTo(System.DirectoryServices.DirectoryServicesPermissionEntry[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntryCollection.cs#L16C83-L16C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntryCollection.cs#L16C83-L16C84" }, { "DocsId": "M:System.DirectoryServices.DirectoryServicesPermissionEntryCollection.IndexOf(System.DirectoryServices.DirectoryServicesPermissionEntry)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntryCollection.cs#L17C70-L17C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntryCollection.cs#L17C70-L17C79" }, { "DocsId": "M:System.DirectoryServices.DirectoryServicesPermissionEntryCollection.Insert(System.Int32,System.DirectoryServices.DirectoryServicesPermissionEntry)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntryCollection.cs#L18C81-L18C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntryCollection.cs#L18C81-L18C82" }, { "DocsId": "M:System.DirectoryServices.DirectoryServicesPermissionEntryCollection.OnClear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntryCollection.cs#L19C45-L19C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntryCollection.cs#L19C45-L19C46" }, { "DocsId": "M:System.DirectoryServices.DirectoryServicesPermissionEntryCollection.OnInsert(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntryCollection.cs#L20C70-L20C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntryCollection.cs#L20C70-L20C71" }, { "DocsId": "M:System.DirectoryServices.DirectoryServicesPermissionEntryCollection.OnRemove(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntryCollection.cs#L21C70-L21C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntryCollection.cs#L21C70-L21C71" }, { "DocsId": "M:System.DirectoryServices.DirectoryServicesPermissionEntryCollection.OnSet(System.Int32,System.Object,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntryCollection.cs#L22C88-L22C89" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntryCollection.cs#L22C88-L22C89" }, { "DocsId": "M:System.DirectoryServices.DirectoryServicesPermissionEntryCollection.Remove(System.DirectoryServices.DirectoryServicesPermissionEntry)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntryCollection.cs#L23C71-L23C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntryCollection.cs#L23C71-L23C72" }, { "DocsId": "P:System.DirectoryServices.DirectoryServicesPermissionEntryCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntryCollection.cs#L11C74-L11C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntryCollection.cs#L11C74-L11C86" } ], "DocsId": "T:System.DirectoryServices.DirectoryServicesPermissionEntryCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntryCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/DirectoryServices/DirectoryServicesPermissionEntryCollection.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.EventLogPermission.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermission.cs#L13C9-L13C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermission.cs#L13C9-L13C40" }, { "DocsId": "M:System.Diagnostics.EventLogPermission.#ctor(System.Diagnostics.EventLogPermissionAccess,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermission.cs#L14C9-L14C101" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermission.cs#L14C9-L14C101" }, { "DocsId": "M:System.Diagnostics.EventLogPermission.#ctor(System.Diagnostics.EventLogPermissionEntry[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermission.cs#L15C9-L15C89" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermission.cs#L15C9-L15C89" }, { "DocsId": "M:System.Diagnostics.EventLogPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermission.cs#L16C9-L16C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermission.cs#L16C9-L16C61" }, { "DocsId": "P:System.Diagnostics.EventLogPermission.PermissionEntries", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermission.cs#L17C70-L17C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermission.cs#L17C70-L17C74" } ], "DocsId": "T:System.Diagnostics.EventLogPermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermission.cs" }, { "Members": [ { "DocsId": "F:System.Diagnostics.EventLogPermissionAccess.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionAccess.cs" }, { "DocsId": "F:System.Diagnostics.EventLogPermissionAccess.Administer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionAccess.cs" }, { "DocsId": "F:System.Diagnostics.EventLogPermissionAccess.Audit", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionAccess.cs" }, { "DocsId": "F:System.Diagnostics.EventLogPermissionAccess.Browse", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionAccess.cs" }, { "DocsId": "F:System.Diagnostics.EventLogPermissionAccess.Instrument", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionAccess.cs" }, { "DocsId": "F:System.Diagnostics.EventLogPermissionAccess.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionAccess.cs" }, { "DocsId": "F:System.Diagnostics.EventLogPermissionAccess.Write", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionAccess.cs" } ], "DocsId": "T:System.Diagnostics.EventLogPermissionAccess", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionAccess.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.EventLogPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionAttribute.cs#L16C69-L16C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionAttribute.cs#L16C69-L16C85" }, { "DocsId": "M:System.Diagnostics.EventLogPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionAttribute.cs#L19C58-L19C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionAttribute.cs#L19C58-L19C70" }, { "DocsId": "P:System.Diagnostics.EventLogPermissionAttribute.MachineName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionAttribute.cs#L17C43-L17C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionAttribute.cs#L17C43-L17C55" }, { "DocsId": "P:System.Diagnostics.EventLogPermissionAttribute.PermissionAccess", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionAttribute.cs#L18C60-L18C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionAttribute.cs#L18C60-L18C64" } ], "DocsId": "T:System.Diagnostics.EventLogPermissionAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.EventLogPermissionEntry.#ctor(System.Diagnostics.EventLogPermissionAccess,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntry.cs#L8C9-L8C106" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntry.cs#L8C9-L8C106" }, { "DocsId": "P:System.Diagnostics.EventLogPermissionEntry.MachineName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntry.cs#L9C43-L9C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntry.cs#L9C43-L9C55" }, { "DocsId": "P:System.Diagnostics.EventLogPermissionEntry.PermissionAccess", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntry.cs#L10C60-L10C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntry.cs#L10C60-L10C64" } ], "DocsId": "T:System.Diagnostics.EventLogPermissionEntry", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntry.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntry.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.EventLogPermissionEntryCollection.Add(System.Diagnostics.EventLogPermissionEntry)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntryCollection.cs#L12C57-L12C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntryCollection.cs#L12C57-L12C66" }, { "DocsId": "M:System.Diagnostics.EventLogPermissionEntryCollection.AddRange(System.Diagnostics.EventLogPermissionEntryCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntryCollection.cs#L13C73-L13C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntryCollection.cs#L13C73-L13C74" }, { "DocsId": "M:System.Diagnostics.EventLogPermissionEntryCollection.AddRange(System.Diagnostics.EventLogPermissionEntry[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntryCollection.cs#L14C65-L14C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntryCollection.cs#L14C65-L14C66" }, { "DocsId": "M:System.Diagnostics.EventLogPermissionEntryCollection.Contains(System.Diagnostics.EventLogPermissionEntry)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntryCollection.cs#L15C63-L15C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntryCollection.cs#L15C63-L15C76" }, { "DocsId": "M:System.Diagnostics.EventLogPermissionEntryCollection.CopyTo(System.Diagnostics.EventLogPermissionEntry[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntryCollection.cs#L16C74-L16C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntryCollection.cs#L16C74-L16C75" }, { "DocsId": "M:System.Diagnostics.EventLogPermissionEntryCollection.IndexOf(System.Diagnostics.EventLogPermissionEntry)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntryCollection.cs#L17C61-L17C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntryCollection.cs#L17C61-L17C70" }, { "DocsId": "M:System.Diagnostics.EventLogPermissionEntryCollection.Insert(System.Int32,System.Diagnostics.EventLogPermissionEntry)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntryCollection.cs#L18C72-L18C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntryCollection.cs#L18C72-L18C73" }, { "DocsId": "M:System.Diagnostics.EventLogPermissionEntryCollection.OnClear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntryCollection.cs#L19C45-L19C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntryCollection.cs#L19C45-L19C46" }, { "DocsId": "M:System.Diagnostics.EventLogPermissionEntryCollection.OnInsert(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntryCollection.cs#L20C69-L20C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntryCollection.cs#L20C69-L20C70" }, { "DocsId": "M:System.Diagnostics.EventLogPermissionEntryCollection.OnRemove(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntryCollection.cs#L21C69-L21C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntryCollection.cs#L21C69-L21C70" }, { "DocsId": "M:System.Diagnostics.EventLogPermissionEntryCollection.OnSet(System.Int32,System.Object,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntryCollection.cs#L22C86-L22C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntryCollection.cs#L22C86-L22C87" }, { "DocsId": "M:System.Diagnostics.EventLogPermissionEntryCollection.Remove(System.Diagnostics.EventLogPermissionEntry)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntryCollection.cs#L23C61-L23C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntryCollection.cs#L23C61-L23C62" }, { "DocsId": "P:System.Diagnostics.EventLogPermissionEntryCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntryCollection.cs#L11C64-L11C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntryCollection.cs#L11C64-L11C76" } ], "DocsId": "T:System.Diagnostics.EventLogPermissionEntryCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntryCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/EventLogPermissionEntryCollection.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.PerformanceCounterPermission.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermission.cs#L13C9-L13C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermission.cs#L13C9-L13C50" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterPermission.#ctor(System.Diagnostics.PerformanceCounterPermissionAccess,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermission.cs#L14C9-L14C142" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermission.cs#L14C9-L14C142" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterPermission.#ctor(System.Diagnostics.PerformanceCounterPermissionEntry[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermission.cs#L15C9-L15C109" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermission.cs#L15C9-L15C109" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermission.cs#L16C9-L16C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermission.cs#L16C9-L16C71" }, { "DocsId": "P:System.Diagnostics.PerformanceCounterPermission.PermissionEntries", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermission.cs#L17C86-L17C98" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermission.cs#L17C86-L17C98" } ], "DocsId": "T:System.Diagnostics.PerformanceCounterPermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermission.cs" }, { "Members": [ { "DocsId": "F:System.Diagnostics.PerformanceCounterPermissionAccess.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionAccess.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterPermissionAccess.Administer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionAccess.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterPermissionAccess.Browse", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionAccess.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterPermissionAccess.Instrument", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionAccess.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterPermissionAccess.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionAccess.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterPermissionAccess.Read", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionAccess.cs" }, { "DocsId": "F:System.Diagnostics.PerformanceCounterPermissionAccess.Write", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionAccess.cs" } ], "DocsId": "T:System.Diagnostics.PerformanceCounterPermissionAccess", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionAccess.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionAccess.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.PerformanceCounterPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionAttribute.cs#L15C79-L15C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionAttribute.cs#L15C79-L15C95" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionAttribute.cs#L19C58-L19C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionAttribute.cs#L19C58-L19C70" }, { "DocsId": "P:System.Diagnostics.PerformanceCounterPermissionAttribute.CategoryName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionAttribute.cs#L16C44-L16C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionAttribute.cs#L16C44-L16C56" }, { "DocsId": "P:System.Diagnostics.PerformanceCounterPermissionAttribute.MachineName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionAttribute.cs#L17C43-L17C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionAttribute.cs#L17C43-L17C55" }, { "DocsId": "P:System.Diagnostics.PerformanceCounterPermissionAttribute.PermissionAccess", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionAttribute.cs#L18C70-L18C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionAttribute.cs#L18C70-L18C74" } ], "DocsId": "T:System.Diagnostics.PerformanceCounterPermissionAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.PerformanceCounterPermissionEntry.#ctor(System.Diagnostics.PerformanceCounterPermissionAccess,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntry.cs#L8C9-L8C147" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntry.cs#L8C9-L8C147" }, { "DocsId": "P:System.Diagnostics.PerformanceCounterPermissionEntry.CategoryName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntry.cs#L9C44-L9C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntry.cs#L9C44-L9C56" }, { "DocsId": "P:System.Diagnostics.PerformanceCounterPermissionEntry.MachineName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntry.cs#L10C43-L10C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntry.cs#L10C43-L10C55" }, { "DocsId": "P:System.Diagnostics.PerformanceCounterPermissionEntry.PermissionAccess", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntry.cs#L11C70-L11C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntry.cs#L11C70-L11C74" } ], "DocsId": "T:System.Diagnostics.PerformanceCounterPermissionEntry", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntry.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntry.cs" }, { "Members": [ { "DocsId": "M:System.Diagnostics.PerformanceCounterPermissionEntryCollection.Add(System.Diagnostics.PerformanceCounterPermissionEntry)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntryCollection.cs#L12C67-L12C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntryCollection.cs#L12C67-L12C76" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterPermissionEntryCollection.AddRange(System.Diagnostics.PerformanceCounterPermissionEntryCollection)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntryCollection.cs#L13C83-L13C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntryCollection.cs#L13C83-L13C84" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterPermissionEntryCollection.AddRange(System.Diagnostics.PerformanceCounterPermissionEntry[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntryCollection.cs#L14C75-L14C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntryCollection.cs#L14C75-L14C76" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterPermissionEntryCollection.Contains(System.Diagnostics.PerformanceCounterPermissionEntry)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntryCollection.cs#L15C73-L15C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntryCollection.cs#L15C73-L15C86" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterPermissionEntryCollection.CopyTo(System.Diagnostics.PerformanceCounterPermissionEntry[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntryCollection.cs#L16C84-L16C85" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntryCollection.cs#L16C84-L16C85" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterPermissionEntryCollection.IndexOf(System.Diagnostics.PerformanceCounterPermissionEntry)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntryCollection.cs#L17C71-L17C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntryCollection.cs#L17C71-L17C80" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterPermissionEntryCollection.Insert(System.Int32,System.Diagnostics.PerformanceCounterPermissionEntry)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntryCollection.cs#L18C82-L18C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntryCollection.cs#L18C82-L18C83" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterPermissionEntryCollection.OnClear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntryCollection.cs#L19C45-L19C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntryCollection.cs#L19C45-L19C46" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterPermissionEntryCollection.OnInsert(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntryCollection.cs#L20C69-L20C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntryCollection.cs#L20C69-L20C70" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterPermissionEntryCollection.OnRemove(System.Int32,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntryCollection.cs#L21C69-L21C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntryCollection.cs#L21C69-L21C70" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterPermissionEntryCollection.OnSet(System.Int32,System.Object,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntryCollection.cs#L22C86-L22C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntryCollection.cs#L22C86-L22C87" }, { "DocsId": "M:System.Diagnostics.PerformanceCounterPermissionEntryCollection.Remove(System.Diagnostics.PerformanceCounterPermissionEntry)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntryCollection.cs#L23C71-L23C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntryCollection.cs#L23C71-L23C72" }, { "DocsId": "P:System.Diagnostics.PerformanceCounterPermissionEntryCollection.Item(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntryCollection.cs#L11C74-L11C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntryCollection.cs#L11C74-L11C86" } ], "DocsId": "T:System.Diagnostics.PerformanceCounterPermissionEntryCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntryCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Diagnostics/PerformanceCounterPermissionEntryCollection.cs" }, { "Members": [ { "DocsId": "M:System.Data.SqlClient.SqlClientPermission.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/SqlClient/SqlClientPermission.cs#L14C40-L14C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/SqlClient/SqlClientPermission.cs#L14C40-L14C74" }, { "DocsId": "M:System.Data.SqlClient.SqlClientPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/SqlClient/SqlClientPermission.cs#L15C61-L15C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/SqlClient/SqlClientPermission.cs#L15C61-L15C95" }, { "DocsId": "M:System.Data.SqlClient.SqlClientPermission.#ctor(System.Security.Permissions.PermissionState,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/SqlClient/SqlClientPermission.cs#L16C86-L16C120" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/SqlClient/SqlClientPermission.cs#L16C86-L16C120" }, { "DocsId": "M:System.Data.SqlClient.SqlClientPermission.Add(System.String,System.String,System.Data.KeyRestrictionBehavior)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/SqlClient/SqlClientPermission.cs#L17C115-L17C116" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/SqlClient/SqlClientPermission.cs#L17C115-L17C116" }, { "DocsId": "M:System.Data.SqlClient.SqlClientPermission.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/SqlClient/SqlClientPermission.cs#L18C62-L18C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/SqlClient/SqlClientPermission.cs#L18C62-L18C74" } ], "DocsId": "T:System.Data.SqlClient.SqlClientPermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/SqlClient/SqlClientPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/SqlClient/SqlClientPermission.cs" }, { "Members": [ { "DocsId": "M:System.Data.SqlClient.SqlClientPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/SqlClient/SqlClientPermissionAttribute.cs#L17C70-L17C103" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/SqlClient/SqlClientPermissionAttribute.cs#L17C70-L17C103" }, { "DocsId": "M:System.Data.SqlClient.SqlClientPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/SqlClient/SqlClientPermissionAttribute.cs#L18C58-L18C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/SqlClient/SqlClientPermissionAttribute.cs#L18C58-L18C70" } ], "DocsId": "T:System.Data.SqlClient.SqlClientPermissionAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/SqlClient/SqlClientPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/SqlClient/SqlClientPermissionAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Data.OracleClient.OraclePermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermission.cs#L14C9-L14C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermission.cs#L14C9-L14C59" }, { "DocsId": "M:System.Data.OracleClient.OraclePermission.Add(System.String,System.String,System.Data.KeyRestrictionBehavior)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermission.cs#L16C106-L16C107" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermission.cs#L16C106-L16C107" }, { "DocsId": "M:System.Data.OracleClient.OraclePermission.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermission.cs#L17C46-L17C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermission.cs#L17C46-L17C58" }, { "DocsId": "M:System.Data.OracleClient.OraclePermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermission.cs#L18C73-L18C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermission.cs#L18C73-L18C74" }, { "DocsId": "M:System.Data.OracleClient.OraclePermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermission.cs#L19C69-L19C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermission.cs#L19C69-L19C81" }, { "DocsId": "M:System.Data.OracleClient.OraclePermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermission.cs#L20C64-L20C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermission.cs#L20C64-L20C69" }, { "DocsId": "M:System.Data.OracleClient.OraclePermission.IsUnrestricted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermission.cs#L21C41-L21C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermission.cs#L21C41-L21C46" }, { "DocsId": "M:System.Data.OracleClient.OraclePermission.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermission.cs#L22C51-L22C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermission.cs#L22C51-L22C63" }, { "DocsId": "M:System.Data.OracleClient.OraclePermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermission.cs#L23C65-L23C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermission.cs#L23C65-L23C77" }, { "DocsId": "P:System.Data.OracleClient.OraclePermission.AllowBlankPassword", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermission.cs#L15C42-L15C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermission.cs#L15C42-L15C46" } ], "DocsId": "T:System.Data.OracleClient.OraclePermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermission.cs" }, { "Members": [ { "DocsId": "M:System.Data.OracleClient.OraclePermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermissionAttribute.cs#L15C67-L15C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermissionAttribute.cs#L15C67-L15C83" }, { "DocsId": "M:System.Data.OracleClient.OraclePermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermissionAttribute.cs#L20C67-L20C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermissionAttribute.cs#L20C67-L20C79" }, { "DocsId": "M:System.Data.OracleClient.OraclePermissionAttribute.ShouldSerializeConnectionString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermissionAttribute.cs#L22C58-L22C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermissionAttribute.cs#L22C58-L22C63" }, { "DocsId": "M:System.Data.OracleClient.OraclePermissionAttribute.ShouldSerializeKeyRestrictions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermissionAttribute.cs#L24C57-L24C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermissionAttribute.cs#L24C57-L24C62" }, { "DocsId": "P:System.Data.OracleClient.OraclePermissionAttribute.AllowBlankPassword", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermissionAttribute.cs#L16C42-L16C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermissionAttribute.cs#L16C42-L16C46" }, { "DocsId": "P:System.Data.OracleClient.OraclePermissionAttribute.ConnectionString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermissionAttribute.cs#L17C48-L17C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermissionAttribute.cs#L17C48-L17C60" }, { "DocsId": "P:System.Data.OracleClient.OraclePermissionAttribute.KeyRestrictionBehavior", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermissionAttribute.cs#L18C64-L18C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermissionAttribute.cs#L18C64-L18C68" }, { "DocsId": "P:System.Data.OracleClient.OraclePermissionAttribute.KeyRestrictions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermissionAttribute.cs#L19C47-L19C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermissionAttribute.cs#L19C47-L19C59" } ], "DocsId": "T:System.Data.OracleClient.OraclePermissionAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/OracleClient/OraclePermissionAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Data.OleDb.OleDbPermission.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/OleDb/OleDbPermission.cs#L15C36-L15C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/OleDb/OleDbPermission.cs#L15C36-L15C70" }, { "DocsId": "M:System.Data.OleDb.OleDbPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/OleDb/OleDbPermission.cs#L16C57-L16C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/OleDb/OleDbPermission.cs#L16C57-L16C91" }, { "DocsId": "M:System.Data.OleDb.OleDbPermission.#ctor(System.Security.Permissions.PermissionState,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/OleDb/OleDbPermission.cs#L17C82-L17C116" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/OleDb/OleDbPermission.cs#L17C82-L17C116" }, { "DocsId": "M:System.Data.OleDb.OleDbPermission.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/OleDb/OleDbPermission.cs#L21C46-L21C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/OleDb/OleDbPermission.cs#L21C46-L21C58" }, { "DocsId": "P:System.Data.OleDb.OleDbPermission.Provider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/OleDb/OleDbPermission.cs#L20C40-L20C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/OleDb/OleDbPermission.cs#L20C40-L20C52" } ], "DocsId": "T:System.Data.OleDb.OleDbPermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/OleDb/OleDbPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/OleDb/OleDbPermission.cs" }, { "Members": [ { "DocsId": "M:System.Data.OleDb.OleDbPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/OleDb/OleDbPermissionAttribute.cs#L17C66-L17C99" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/OleDb/OleDbPermissionAttribute.cs#L17C66-L17C99" }, { "DocsId": "M:System.Data.OleDb.OleDbPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/OleDb/OleDbPermissionAttribute.cs#L21C58-L21C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/OleDb/OleDbPermissionAttribute.cs#L21C58-L21C70" }, { "DocsId": "P:System.Data.OleDb.OleDbPermissionAttribute.Provider", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/OleDb/OleDbPermissionAttribute.cs#L20C40-L20C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/OleDb/OleDbPermissionAttribute.cs#L20C40-L20C52" } ], "DocsId": "T:System.Data.OleDb.OleDbPermissionAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/OleDb/OleDbPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/OleDb/OleDbPermissionAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Data.Odbc.OdbcPermission.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/Odbc/OdbcPermission.cs#L15C35-L15C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/Odbc/OdbcPermission.cs#L15C35-L15C69" }, { "DocsId": "M:System.Data.Odbc.OdbcPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/Odbc/OdbcPermission.cs#L16C56-L16C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/Odbc/OdbcPermission.cs#L16C56-L16C90" }, { "DocsId": "M:System.Data.Odbc.OdbcPermission.#ctor(System.Security.Permissions.PermissionState,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/Odbc/OdbcPermission.cs#L17C81-L17C115" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/Odbc/OdbcPermission.cs#L17C81-L17C115" }, { "DocsId": "M:System.Data.Odbc.OdbcPermission.Add(System.String,System.String,System.Data.KeyRestrictionBehavior)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/Odbc/OdbcPermission.cs#L18C115-L18C116" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/Odbc/OdbcPermission.cs#L18C115-L18C116" }, { "DocsId": "M:System.Data.Odbc.OdbcPermission.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/Odbc/OdbcPermission.cs#L19C46-L19C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/Odbc/OdbcPermission.cs#L19C46-L19C58" } ], "DocsId": "T:System.Data.Odbc.OdbcPermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/Odbc/OdbcPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/Odbc/OdbcPermission.cs" }, { "Members": [ { "DocsId": "M:System.Data.Odbc.OdbcPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/Odbc/OdbcPermissionAttribute.cs#L17C65-L17C98" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/Odbc/OdbcPermissionAttribute.cs#L17C65-L17C98" }, { "DocsId": "M:System.Data.Odbc.OdbcPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/Odbc/OdbcPermissionAttribute.cs#L18C58-L18C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/Odbc/OdbcPermissionAttribute.cs#L18C58-L18C70" } ], "DocsId": "T:System.Data.Odbc.OdbcPermissionAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/Odbc/OdbcPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/Odbc/OdbcPermissionAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Data.Common.DBDataPermission.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L14C9-L14C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L14C9-L14C41" }, { "DocsId": "M:System.Data.Common.DBDataPermission.#ctor(System.Data.Common.DBDataPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L15C9-L15C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L15C9-L15C68" }, { "DocsId": "M:System.Data.Common.DBDataPermission.#ctor(System.Data.Common.DBDataPermissionAttribute)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L16C9-L16C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L16C9-L16C86" }, { "DocsId": "M:System.Data.Common.DBDataPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L17C9-L17C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L17C9-L17C62" }, { "DocsId": "M:System.Data.Common.DBDataPermission.#ctor(System.Security.Permissions.PermissionState,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L18C9-L18C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L18C9-L18C87" }, { "DocsId": "M:System.Data.Common.DBDataPermission.Add(System.String,System.String,System.Data.KeyRestrictionBehavior)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L20C114-L20C115" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L20C114-L20C115" }, { "DocsId": "M:System.Data.Common.DBDataPermission.Clear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L21C34-L21C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L21C34-L21C35" }, { "DocsId": "M:System.Data.Common.DBDataPermission.CreateInstance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L22C64-L22C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L22C64-L22C68" }, { "DocsId": "M:System.Data.Common.DBDataPermission.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L23C47-L23C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L23C47-L23C51" }, { "DocsId": "M:System.Data.Common.DBDataPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L24C73-L24C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L24C73-L24C74" }, { "DocsId": "M:System.Data.Common.DBDataPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L25C70-L25C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L25C70-L25C74" }, { "DocsId": "M:System.Data.Common.DBDataPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L26C64-L26C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L26C64-L26C69" }, { "DocsId": "M:System.Data.Common.DBDataPermission.IsUnrestricted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L27C41-L27C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L27C41-L27C46" }, { "DocsId": "M:System.Data.Common.DBDataPermission.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L28C52-L28C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L28C52-L28C56" }, { "DocsId": "M:System.Data.Common.DBDataPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L29C65-L29C93" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L29C65-L29C93" }, { "DocsId": "P:System.Data.Common.DBDataPermission.AllowBlankPassword", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L19C42-L19C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs#L19C42-L19C46" } ], "DocsId": "T:System.Data.Common.DBDataPermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermission.cs" }, { "Members": [ { "DocsId": "M:System.Data.Common.DBDataPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermissionAttribute.cs#L15C70-L15C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermissionAttribute.cs#L15C70-L15C86" }, { "DocsId": "M:System.Data.Common.DBDataPermissionAttribute.ShouldSerializeConnectionString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermissionAttribute.cs#L21C57-L21C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermissionAttribute.cs#L21C57-L21C70" }, { "DocsId": "M:System.Data.Common.DBDataPermissionAttribute.ShouldSerializeKeyRestrictions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermissionAttribute.cs#L23C56-L23C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermissionAttribute.cs#L23C56-L23C69" }, { "DocsId": "P:System.Data.Common.DBDataPermissionAttribute.AllowBlankPassword", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermissionAttribute.cs#L16C42-L16C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermissionAttribute.cs#L16C42-L16C46" }, { "DocsId": "P:System.Data.Common.DBDataPermissionAttribute.ConnectionString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermissionAttribute.cs#L17C42-L17C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermissionAttribute.cs#L17C42-L17C46" }, { "DocsId": "P:System.Data.Common.DBDataPermissionAttribute.KeyRestrictionBehavior", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermissionAttribute.cs#L18C64-L18C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermissionAttribute.cs#L18C64-L18C68" }, { "DocsId": "P:System.Data.Common.DBDataPermissionAttribute.KeyRestrictions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermissionAttribute.cs#L19C41-L19C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermissionAttribute.cs#L19C41-L19C45" } ], "DocsId": "T:System.Data.Common.DBDataPermissionAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Data/Common/DBDataPermissionAttribute.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ConfigurationPermission.#ctor(System.Security.Permissions.PermissionState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Configuration/ConfigurationPermission.cs#L14C9-L14C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Configuration/ConfigurationPermission.cs#L14C9-L14C66" }, { "DocsId": "M:System.Configuration.ConfigurationPermission.IsUnrestricted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Configuration/ConfigurationPermission.cs#L15C41-L15C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Configuration/ConfigurationPermission.cs#L15C41-L15C46" }, { "DocsId": "M:System.Configuration.ConfigurationPermission.Copy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Configuration/ConfigurationPermission.cs#L16C46-L16C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Configuration/ConfigurationPermission.cs#L16C46-L16C74" }, { "DocsId": "M:System.Configuration.ConfigurationPermission.Union(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Configuration/ConfigurationPermission.cs#L17C65-L17C93" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Configuration/ConfigurationPermission.cs#L17C65-L17C93" }, { "DocsId": "M:System.Configuration.ConfigurationPermission.Intersect(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Configuration/ConfigurationPermission.cs#L18C69-L18C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Configuration/ConfigurationPermission.cs#L18C69-L18C97" }, { "DocsId": "M:System.Configuration.ConfigurationPermission.IsSubsetOf(System.Security.IPermission)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Configuration/ConfigurationPermission.cs#L19C64-L19C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Configuration/ConfigurationPermission.cs#L19C64-L19C69" }, { "DocsId": "M:System.Configuration.ConfigurationPermission.FromXml(System.Security.SecurityElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Configuration/ConfigurationPermission.cs#L20C73-L20C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Configuration/ConfigurationPermission.cs#L20C73-L20C74" }, { "DocsId": "M:System.Configuration.ConfigurationPermission.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Configuration/ConfigurationPermission.cs#L21C51-L21C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Configuration/ConfigurationPermission.cs#L21C51-L21C83" } ], "DocsId": "T:System.Configuration.ConfigurationPermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Configuration/ConfigurationPermission.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Configuration/ConfigurationPermission.cs" }, { "Members": [ { "DocsId": "M:System.Configuration.ConfigurationPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Configuration/ConfigurationPermissionAttribute.cs#L15C74-L15C107" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Configuration/ConfigurationPermissionAttribute.cs#L15C74-L15C107" }, { "DocsId": "M:System.Configuration.ConfigurationPermissionAttribute.CreatePermission", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Configuration/ConfigurationPermissionAttribute.cs#L16C58-L16C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Configuration/ConfigurationPermissionAttribute.cs#L16C58-L16C86" } ], "DocsId": "T:System.Configuration.ConfigurationPermissionAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Security.Permissions/src/System/Configuration/ConfigurationPermissionAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Security.Permissions/src/System/Configuration/ConfigurationPermissionAttribute.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/System.ServiceModel.Syndication.json b/xml/SourceLinkInformation/net-9.0/System.ServiceModel.Syndication.json index 6b86361bceb..e53dfd03a5c 100644 --- a/xml/SourceLinkInformation/net-9.0/System.ServiceModel.Syndication.json +++ b/xml/SourceLinkInformation/net-9.0/System.ServiceModel.Syndication.json @@ -1,2357 +1,2356 @@ { "Assembly": "System.ServiceModel.Syndication", - "GUID": "42E9D80F78234011A970AA16A7BC2071FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "1C13130139D146EBAA524B7F2380DB17FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:System.ServiceModel.Syndication.Atom10FeedFormatter.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10FeedFormatter.cs#L34C40-L36C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10FeedFormatter.cs#L34C40-L36C10" }, { "DocsId": "M:System.ServiceModel.Syndication.Atom10FeedFormatter.#ctor(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10FeedFormatter.cs#L66C65-L52C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10FeedFormatter.cs#L66C65-L52C10" }, { "DocsId": "M:System.ServiceModel.Syndication.Atom10FeedFormatter.#ctor(System.ServiceModel.Syndication.SyndicationFeed)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10FeedFormatter.cs#L66C65-L59C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10FeedFormatter.cs#L66C65-L59C10" }, { "DocsId": "M:System.ServiceModel.Syndication.Atom10FeedFormatter.CanRead(System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10FeedFormatter.cs#L76C13-L81C100" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10FeedFormatter.cs#L76C13-L81C100" }, { "DocsId": "M:System.ServiceModel.Syndication.Atom10FeedFormatter.System#Xml#Serialization#IXmlSerializable#GetSchema", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10FeedFormatter.cs#L84C51-L84C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10FeedFormatter.cs#L84C51-L84C55" }, { "DocsId": "M:System.ServiceModel.Syndication.Atom10FeedFormatter.System#Xml#Serialization#IXmlSerializable#ReadXml(System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10FeedFormatter.cs#L88C13-L94C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10FeedFormatter.cs#L88C13-L94C10" }, { "DocsId": "M:System.ServiceModel.Syndication.Atom10FeedFormatter.System#Xml#Serialization#IXmlSerializable#WriteXml(System.Xml.XmlWriter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10FeedFormatter.cs#L98C13-L104C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10FeedFormatter.cs#L98C13-L104C10" }, { "DocsId": "M:System.ServiceModel.Syndication.Atom10FeedFormatter.ReadFrom(System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10FeedFormatter.cs#L108C13-L114C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10FeedFormatter.cs#L108C13-L114C10" }, { "DocsId": "M:System.ServiceModel.Syndication.Atom10FeedFormatter.WriteTo(System.Xml.XmlWriter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10FeedFormatter.cs#L118C13-L126C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10FeedFormatter.cs#L118C13-L126C10" }, { "DocsId": "M:System.ServiceModel.Syndication.Atom10FeedFormatter.CreateFeedInstance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10FeedFormatter.cs#L492C68-L492C96" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10FeedFormatter.cs#L492C68-L492C96" }, { "DocsId": "M:System.ServiceModel.Syndication.Atom10FeedFormatter.ReadItem(System.Xml.XmlReader,System.ServiceModel.Syndication.SyndicationFeed)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10FeedFormatter.cs#L496C13-L507C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10FeedFormatter.cs#L496C13-L507C25" }, { "DocsId": "M:System.ServiceModel.Syndication.Atom10FeedFormatter.ReadItems(System.Xml.XmlReader,System.ServiceModel.Syndication.SyndicationFeed,System.Boolean@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10FeedFormatter.cs#L512C13-L527C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10FeedFormatter.cs#L512C13-L527C26" }, { "DocsId": "M:System.ServiceModel.Syndication.Atom10FeedFormatter.WriteItem(System.Xml.XmlWriter,System.ServiceModel.Syndication.SyndicationItem,System.Uri)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10FeedFormatter.cs#L532C13-L535C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10FeedFormatter.cs#L532C13-L535C10" }, { "DocsId": "M:System.ServiceModel.Syndication.Atom10FeedFormatter.WriteItems(System.Xml.XmlWriter,System.Collections.Generic.IEnumerable{System.ServiceModel.Syndication.SyndicationItem},System.Uri)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10FeedFormatter.cs#L539C13-L547C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10FeedFormatter.cs#L539C13-L547C10" }, { "DocsId": "P:System.ServiceModel.Syndication.Atom10FeedFormatter.PreserveAttributeExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10FeedFormatter.cs#L66C51-L66C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10FeedFormatter.cs#L66C51-L66C55" }, { "DocsId": "P:System.ServiceModel.Syndication.Atom10FeedFormatter.PreserveElementExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10FeedFormatter.cs#L68C49-L68C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10FeedFormatter.cs#L68C49-L68C53" }, { "DocsId": "P:System.ServiceModel.Syndication.Atom10FeedFormatter.Version", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10FeedFormatter.cs#L70C43-L70C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10FeedFormatter.cs#L70C43-L70C69" }, { "DocsId": "P:System.ServiceModel.Syndication.Atom10FeedFormatter.FeedType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10FeedFormatter.cs#L72C35-L72C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10FeedFormatter.cs#L72C35-L72C39" } ], "DocsId": "T:System.ServiceModel.Syndication.Atom10FeedFormatter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10FeedFormatter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10FeedFormatter.cs" }, { "Members": [ { "DocsId": "M:System.ServiceModel.Syndication.Atom10FeedFormatter`1.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10FeedFormatter.cs#L1225C40-L1227C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10FeedFormatter.cs#L1225C40-L1227C10" }, { "DocsId": "M:System.ServiceModel.Syndication.Atom10FeedFormatter`1.#ctor(`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10FeedFormatter.cs#L1229C68-L1231C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10FeedFormatter.cs#L1229C68-L1231C10" }, { "DocsId": "M:System.ServiceModel.Syndication.Atom10FeedFormatter`1.CreateFeedInstance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10FeedFormatter.cs#L1233C68-L1233C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10FeedFormatter.cs#L1233C68-L1233C90" } ], "DocsId": "T:System.ServiceModel.Syndication.Atom10FeedFormatter`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10FeedFormatter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10FeedFormatter.cs" }, { "Members": [ { "DocsId": "M:System.ServiceModel.Syndication.Atom10ItemFormatter.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10ItemFormatter.cs#L18C40-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10ItemFormatter.cs#L18C40-L20C10" }, { "DocsId": "M:System.ServiceModel.Syndication.Atom10ItemFormatter.#ctor(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10ItemFormatter.cs#L14C9-L35C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10ItemFormatter.cs#L14C9-L35C10" }, { "DocsId": "M:System.ServiceModel.Syndication.Atom10ItemFormatter.#ctor(System.ServiceModel.Syndication.SyndicationItem)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10ItemFormatter.cs#L14C9-L40C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10ItemFormatter.cs#L14C9-L40C10" }, { "DocsId": "M:System.ServiceModel.Syndication.Atom10ItemFormatter.CanRead(System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10ItemFormatter.cs#L68C13-L73C101" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10ItemFormatter.cs#L68C13-L73C101" }, { "DocsId": "M:System.ServiceModel.Syndication.Atom10ItemFormatter.System#Xml#Serialization#IXmlSerializable#GetSchema", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10ItemFormatter.cs#L76C51-L76C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10ItemFormatter.cs#L76C51-L76C55" }, { "DocsId": "M:System.ServiceModel.Syndication.Atom10ItemFormatter.System#Xml#Serialization#IXmlSerializable#ReadXml(System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10ItemFormatter.cs#L80C13-L86C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10ItemFormatter.cs#L80C13-L86C10" }, { "DocsId": "M:System.ServiceModel.Syndication.Atom10ItemFormatter.System#Xml#Serialization#IXmlSerializable#WriteXml(System.Xml.XmlWriter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10ItemFormatter.cs#L90C13-L96C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10ItemFormatter.cs#L90C13-L96C10" }, { "DocsId": "M:System.ServiceModel.Syndication.Atom10ItemFormatter.ReadFrom(System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10ItemFormatter.cs#L100C13-L106C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10ItemFormatter.cs#L100C13-L106C10" }, { "DocsId": "M:System.ServiceModel.Syndication.Atom10ItemFormatter.WriteTo(System.Xml.XmlWriter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10ItemFormatter.cs#L110C13-L118C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10ItemFormatter.cs#L110C13-L118C10" }, { "DocsId": "M:System.ServiceModel.Syndication.Atom10ItemFormatter.CreateItemInstance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10ItemFormatter.cs#L120C68-L120C96" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10ItemFormatter.cs#L120C68-L120C96" }, { "DocsId": "P:System.ServiceModel.Syndication.Atom10ItemFormatter.PreserveAttributeExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10ItemFormatter.cs#L44C20-L44C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10ItemFormatter.cs#L44C20-L44C48" }, { "DocsId": "P:System.ServiceModel.Syndication.Atom10ItemFormatter.PreserveElementExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10ItemFormatter.cs#L54C20-L54C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10ItemFormatter.cs#L54C20-L54C46" }, { "DocsId": "P:System.ServiceModel.Syndication.Atom10ItemFormatter.Version", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10ItemFormatter.cs#L62C43-L62C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10ItemFormatter.cs#L62C43-L62C69" }, { "DocsId": "P:System.ServiceModel.Syndication.Atom10ItemFormatter.ItemType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10ItemFormatter.cs#L64C35-L64C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10ItemFormatter.cs#L64C35-L64C39" } ], "DocsId": "T:System.ServiceModel.Syndication.Atom10ItemFormatter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10ItemFormatter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10ItemFormatter.cs" }, { "Members": [ { "DocsId": "M:System.ServiceModel.Syndication.Atom10ItemFormatter`1.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10ItemFormatter.cs#L143C40-L145C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10ItemFormatter.cs#L143C40-L145C10" }, { "DocsId": "M:System.ServiceModel.Syndication.Atom10ItemFormatter`1.#ctor(`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10ItemFormatter.cs#L147C68-L149C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10ItemFormatter.cs#L147C68-L149C10" }, { "DocsId": "M:System.ServiceModel.Syndication.Atom10ItemFormatter`1.CreateItemInstance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10ItemFormatter.cs#L151C68-L151C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10ItemFormatter.cs#L151C68-L151C90" } ], "DocsId": "T:System.ServiceModel.Syndication.Atom10ItemFormatter`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10ItemFormatter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Atom10ItemFormatter.cs" }, { "Members": [ { "DocsId": "M:System.ServiceModel.Syndication.AtomPub10CategoriesDocumentFormatter.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10CategoriesDocumentFormatter.cs#L18C57-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10CategoriesDocumentFormatter.cs#L18C57-L20C10" }, { "DocsId": "M:System.ServiceModel.Syndication.AtomPub10CategoriesDocumentFormatter.#ctor(System.Type,System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10CategoriesDocumentFormatter.cs#L22C109-L44C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10CategoriesDocumentFormatter.cs#L22C109-L44C10" }, { "DocsId": "M:System.ServiceModel.Syndication.AtomPub10CategoriesDocumentFormatter.#ctor(System.ServiceModel.Syndication.CategoriesDocument)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10CategoriesDocumentFormatter.cs#L46C91-L59C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10CategoriesDocumentFormatter.cs#L46C91-L59C10" }, { "DocsId": "M:System.ServiceModel.Syndication.AtomPub10CategoriesDocumentFormatter.CanRead(System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10CategoriesDocumentFormatter.cs#L65C13-L70C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10CategoriesDocumentFormatter.cs#L65C13-L70C95" }, { "DocsId": "M:System.ServiceModel.Syndication.AtomPub10CategoriesDocumentFormatter.System#Xml#Serialization#IXmlSerializable#GetSchema", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10CategoriesDocumentFormatter.cs#L73C51-L73C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10CategoriesDocumentFormatter.cs#L73C51-L73C55" }, { "DocsId": "M:System.ServiceModel.Syndication.AtomPub10CategoriesDocumentFormatter.System#Xml#Serialization#IXmlSerializable#ReadXml(System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10CategoriesDocumentFormatter.cs#L77C13-L83C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10CategoriesDocumentFormatter.cs#L77C13-L83C10" }, { "DocsId": "M:System.ServiceModel.Syndication.AtomPub10CategoriesDocumentFormatter.System#Xml#Serialization#IXmlSerializable#WriteXml(System.Xml.XmlWriter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10CategoriesDocumentFormatter.cs#L87C13-L98C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10CategoriesDocumentFormatter.cs#L87C13-L98C10" }, { "DocsId": "M:System.ServiceModel.Syndication.AtomPub10CategoriesDocumentFormatter.ReadFrom(System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10CategoriesDocumentFormatter.cs#L102C13-L113C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10CategoriesDocumentFormatter.cs#L102C13-L113C10" }, { "DocsId": "M:System.ServiceModel.Syndication.AtomPub10CategoriesDocumentFormatter.WriteTo(System.Xml.XmlWriter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10CategoriesDocumentFormatter.cs#L117C13-L130C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10CategoriesDocumentFormatter.cs#L117C13-L130C10" }, { "DocsId": "M:System.ServiceModel.Syndication.AtomPub10CategoriesDocumentFormatter.CreateInlineCategoriesDocument", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10CategoriesDocumentFormatter.cs#L134C13-L140C96" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10CategoriesDocumentFormatter.cs#L134C13-L140C96" }, { "DocsId": "M:System.ServiceModel.Syndication.AtomPub10CategoriesDocumentFormatter.CreateReferencedCategoriesDocument", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10CategoriesDocumentFormatter.cs#L146C13-L152C104" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10CategoriesDocumentFormatter.cs#L146C13-L152C104" }, { "DocsId": "P:System.ServiceModel.Syndication.AtomPub10CategoriesDocumentFormatter.Version", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10CategoriesDocumentFormatter.cs#L61C43-L61C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10CategoriesDocumentFormatter.cs#L61C43-L61C67" } ], "DocsId": "T:System.ServiceModel.Syndication.AtomPub10CategoriesDocumentFormatter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10CategoriesDocumentFormatter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10CategoriesDocumentFormatter.cs" }, { "Members": [ { "DocsId": "M:System.ServiceModel.Syndication.AtomPub10ServiceDocumentFormatter.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10ServiceDocumentFormatter.cs#L21C54-L23C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10ServiceDocumentFormatter.cs#L21C54-L23C10" }, { "DocsId": "M:System.ServiceModel.Syndication.AtomPub10ServiceDocumentFormatter.#ctor(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10ServiceDocumentFormatter.cs#L25C79-L39C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10ServiceDocumentFormatter.cs#L25C79-L39C10" }, { "DocsId": "M:System.ServiceModel.Syndication.AtomPub10ServiceDocumentFormatter.#ctor(System.ServiceModel.Syndication.ServiceDocument)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10ServiceDocumentFormatter.cs#L41C85-L45C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10ServiceDocumentFormatter.cs#L41C85-L45C10" }, { "DocsId": "M:System.ServiceModel.Syndication.AtomPub10ServiceDocumentFormatter.CanRead(System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10ServiceDocumentFormatter.cs#L51C13-L56C92" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10ServiceDocumentFormatter.cs#L51C13-L56C92" }, { "DocsId": "M:System.ServiceModel.Syndication.AtomPub10ServiceDocumentFormatter.System#Xml#Serialization#IXmlSerializable#GetSchema", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10ServiceDocumentFormatter.cs#L59C51-L59C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10ServiceDocumentFormatter.cs#L59C51-L59C55" }, { "DocsId": "M:System.ServiceModel.Syndication.AtomPub10ServiceDocumentFormatter.System#Xml#Serialization#IXmlSerializable#ReadXml(System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10ServiceDocumentFormatter.cs#L63C13-L69C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10ServiceDocumentFormatter.cs#L63C13-L69C10" }, { "DocsId": "M:System.ServiceModel.Syndication.AtomPub10ServiceDocumentFormatter.System#Xml#Serialization#IXmlSerializable#WriteXml(System.Xml.XmlWriter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10ServiceDocumentFormatter.cs#L73C13-L84C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10ServiceDocumentFormatter.cs#L73C13-L84C10" }, { "DocsId": "M:System.ServiceModel.Syndication.AtomPub10ServiceDocumentFormatter.ReadFrom(System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10ServiceDocumentFormatter.cs#L88C13-L100C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10ServiceDocumentFormatter.cs#L88C13-L100C10" }, { "DocsId": "M:System.ServiceModel.Syndication.AtomPub10ServiceDocumentFormatter.WriteTo(System.Xml.XmlWriter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10ServiceDocumentFormatter.cs#L104C13-L117C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10ServiceDocumentFormatter.cs#L104C13-L117C10" }, { "DocsId": "M:System.ServiceModel.Syndication.AtomPub10ServiceDocumentFormatter.CreateDocumentInstance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10ServiceDocumentFormatter.cs#L159C13-L165C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10ServiceDocumentFormatter.cs#L159C13-L165C81" }, { "DocsId": "P:System.ServiceModel.Syndication.AtomPub10ServiceDocumentFormatter.Version", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10ServiceDocumentFormatter.cs#L47C43-L47C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10ServiceDocumentFormatter.cs#L47C43-L47C67" } ], "DocsId": "T:System.ServiceModel.Syndication.AtomPub10ServiceDocumentFormatter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10ServiceDocumentFormatter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10ServiceDocumentFormatter.cs" }, { "Members": [ { "DocsId": "M:System.ServiceModel.Syndication.AtomPub10ServiceDocumentFormatter`1.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10ServiceDocumentFormatter.cs#L638C54-L640C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10ServiceDocumentFormatter.cs#L638C54-L640C10" }, { "DocsId": "M:System.ServiceModel.Syndication.AtomPub10ServiceDocumentFormatter`1.#ctor(`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10ServiceDocumentFormatter.cs#L642C86-L644C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10ServiceDocumentFormatter.cs#L642C86-L644C10" }, { "DocsId": "M:System.ServiceModel.Syndication.AtomPub10ServiceDocumentFormatter`1.CreateDocumentInstance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10ServiceDocumentFormatter.cs#L646C72-L646C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10ServiceDocumentFormatter.cs#L646C72-L646C94" } ], "DocsId": "T:System.ServiceModel.Syndication.AtomPub10ServiceDocumentFormatter`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10ServiceDocumentFormatter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/AtomPub10ServiceDocumentFormatter.cs" }, { "Members": [ { "DocsId": "M:System.ServiceModel.Syndication.CategoriesDocument.Create(System.Collections.ObjectModel.Collection{System.ServiceModel.Syndication.SyndicationCategory})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocument.cs#L30C13-L30C61" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocument.cs#L30C13-L30C61" }, { "DocsId": "M:System.ServiceModel.Syndication.CategoriesDocument.Create(System.Collections.ObjectModel.Collection{System.ServiceModel.Syndication.SyndicationCategory},System.Boolean,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocument.cs#L35C13-L35C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocument.cs#L35C13-L35C78" }, { "DocsId": "M:System.ServiceModel.Syndication.CategoriesDocument.Create(System.Uri)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocument.cs#L40C13-L40C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocument.cs#L40C13-L40C79" }, { "DocsId": "M:System.ServiceModel.Syndication.CategoriesDocument.Load(System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocument.cs#L45C13-L47C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocument.cs#L45C13-L47C39" }, { "DocsId": "M:System.ServiceModel.Syndication.CategoriesDocument.GetFormatter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocument.cs#L50C62-L50C108" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocument.cs#L50C62-L50C108" }, { "DocsId": "M:System.ServiceModel.Syndication.CategoriesDocument.Save(System.Xml.XmlWriter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocument.cs#L54C13-L55C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocument.cs#L54C13-L55C10" }, { "DocsId": "M:System.ServiceModel.Syndication.CategoriesDocument.TryParseAttribute(System.String,System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocument.cs#L59C13-L59C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocument.cs#L59C13-L59C26" }, { "DocsId": "M:System.ServiceModel.Syndication.CategoriesDocument.TryParseElement(System.Xml.XmlReader,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocument.cs#L64C13-L64C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocument.cs#L64C13-L64C26" }, { "DocsId": "M:System.ServiceModel.Syndication.CategoriesDocument.WriteAttributeExtensions(System.Xml.XmlWriter,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocument.cs#L69C13-L70C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocument.cs#L69C13-L70C10" }, { "DocsId": "M:System.ServiceModel.Syndication.CategoriesDocument.WriteElementExtensions(System.Xml.XmlWriter,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocument.cs#L74C13-L75C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocument.cs#L74C13-L75C10" }, { "DocsId": "P:System.ServiceModel.Syndication.CategoriesDocument.AttributeExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocument.cs#L18C76-L18C107" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocument.cs#L18C76-L18C107" }, { "DocsId": "P:System.ServiceModel.Syndication.CategoriesDocument.BaseUri", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocument.cs#L20C30-L20C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocument.cs#L20C30-L20C34" }, { "DocsId": "P:System.ServiceModel.Syndication.CategoriesDocument.ElementExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocument.cs#L22C75-L22C104" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocument.cs#L22C75-L22C104" }, { "DocsId": "P:System.ServiceModel.Syndication.CategoriesDocument.Language", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocument.cs#L24C34-L24C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocument.cs#L24C34-L24C38" } ], "DocsId": "T:System.ServiceModel.Syndication.CategoriesDocument", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocument.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocument.cs" }, { "Members": [ { "DocsId": "M:System.ServiceModel.Syndication.CategoriesDocumentFormatter.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocumentFormatter.cs#L14C9-L16C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocumentFormatter.cs#L14C9-L16C10" }, { "DocsId": "M:System.ServiceModel.Syndication.CategoriesDocumentFormatter.#ctor(System.ServiceModel.Syndication.CategoriesDocument)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocumentFormatter.cs#L18C9-L26C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocumentFormatter.cs#L18C9-L26C10" }, { "DocsId": "M:System.ServiceModel.Syndication.CategoriesDocumentFormatter.CanRead(System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocumentFormatter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocumentFormatter.cs" }, { "DocsId": "M:System.ServiceModel.Syndication.CategoriesDocumentFormatter.ReadFrom(System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocumentFormatter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocumentFormatter.cs" }, { "DocsId": "M:System.ServiceModel.Syndication.CategoriesDocumentFormatter.WriteTo(System.Xml.XmlWriter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocumentFormatter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocumentFormatter.cs" }, { "DocsId": "M:System.ServiceModel.Syndication.CategoriesDocumentFormatter.CreateInlineCategoriesDocument", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocumentFormatter.cs#L38C13-L38C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocumentFormatter.cs#L38C13-L38C51" }, { "DocsId": "M:System.ServiceModel.Syndication.CategoriesDocumentFormatter.CreateReferencedCategoriesDocument", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocumentFormatter.cs#L43C13-L43C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocumentFormatter.cs#L43C13-L43C55" }, { "DocsId": "M:System.ServiceModel.Syndication.CategoriesDocumentFormatter.SetDocument(System.ServiceModel.Syndication.CategoriesDocument)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocumentFormatter.cs#L46C76-L46C96" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocumentFormatter.cs#L46C76-L46C96" }, { "DocsId": "P:System.ServiceModel.Syndication.CategoriesDocumentFormatter.Document", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocumentFormatter.cs#L28C47-L28C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocumentFormatter.cs#L28C47-L28C56" }, { "DocsId": "P:System.ServiceModel.Syndication.CategoriesDocumentFormatter.Version", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocumentFormatter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocumentFormatter.cs" } ], "DocsId": "T:System.ServiceModel.Syndication.CategoriesDocumentFormatter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocumentFormatter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/CategoriesDocumentFormatter.cs" }, { "Members": [ { "DocsId": "M:System.ServiceModel.Syndication.InlineCategoriesDocument.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/InlineCategoriesDocument.cs#L13C9-L15C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/InlineCategoriesDocument.cs#L13C9-L15C10" }, { "DocsId": "M:System.ServiceModel.Syndication.InlineCategoriesDocument.#ctor(System.Collections.Generic.IEnumerable{System.ServiceModel.Syndication.SyndicationCategory})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/InlineCategoriesDocument.cs#L17C88-L19C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/InlineCategoriesDocument.cs#L17C88-L19C10" }, { "DocsId": "M:System.ServiceModel.Syndication.InlineCategoriesDocument.#ctor(System.Collections.Generic.IEnumerable{System.ServiceModel.Syndication.SyndicationCategory},System.Boolean,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/InlineCategoriesDocument.cs#L21C9-L34C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/InlineCategoriesDocument.cs#L21C9-L34C10" }, { "DocsId": "M:System.ServiceModel.Syndication.InlineCategoriesDocument.CreateCategory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/InlineCategoriesDocument.cs#L47C76-L47C101" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/InlineCategoriesDocument.cs#L47C76-L47C101" }, { "DocsId": "P:System.ServiceModel.Syndication.InlineCategoriesDocument.Categories", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/InlineCategoriesDocument.cs#L38C20-L38C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/InlineCategoriesDocument.cs#L38C20-L38C87" }, { "DocsId": "P:System.ServiceModel.Syndication.InlineCategoriesDocument.IsFixed", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/InlineCategoriesDocument.cs#L41C31-L41C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/InlineCategoriesDocument.cs#L41C31-L41C35" }, { "DocsId": "P:System.ServiceModel.Syndication.InlineCategoriesDocument.Scheme", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/InlineCategoriesDocument.cs#L43C32-L43C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/InlineCategoriesDocument.cs#L43C32-L43C36" } ], "DocsId": "T:System.ServiceModel.Syndication.InlineCategoriesDocument", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/InlineCategoriesDocument.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/InlineCategoriesDocument.cs" }, { "Members": [ { "DocsId": "M:System.ServiceModel.Syndication.ReferencedCategoriesDocument.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ReferencedCategoriesDocument.cs#L8C9-L10C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ReferencedCategoriesDocument.cs#L8C9-L10C10" }, { "DocsId": "M:System.ServiceModel.Syndication.ReferencedCategoriesDocument.#ctor(System.Uri)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ReferencedCategoriesDocument.cs#L12C57-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ReferencedCategoriesDocument.cs#L12C57-L20C10" }, { "DocsId": "P:System.ServiceModel.Syndication.ReferencedCategoriesDocument.Link", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ReferencedCategoriesDocument.cs#L22C27-L22C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ReferencedCategoriesDocument.cs#L22C27-L22C31" } ], "DocsId": "T:System.ServiceModel.Syndication.ReferencedCategoriesDocument", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ReferencedCategoriesDocument.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ReferencedCategoriesDocument.cs" }, { "Members": [ { "DocsId": "M:System.ServiceModel.Syndication.ResourceCollectionInfo.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ResourceCollectionInfo.cs#L17C9-L19C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ResourceCollectionInfo.cs#L17C9-L19C10" }, { "DocsId": "M:System.ServiceModel.Syndication.ResourceCollectionInfo.#ctor(System.String,System.Uri)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ResourceCollectionInfo.cs#L21C65-L23C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ResourceCollectionInfo.cs#L21C65-L23C10" }, { "DocsId": "M:System.ServiceModel.Syndication.ResourceCollectionInfo.#ctor(System.ServiceModel.Syndication.TextSyndicationContent,System.Uri)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ResourceCollectionInfo.cs#L25C81-L27C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ResourceCollectionInfo.cs#L25C81-L27C10" }, { "DocsId": "M:System.ServiceModel.Syndication.ResourceCollectionInfo.#ctor(System.ServiceModel.Syndication.TextSyndicationContent,System.Uri,System.Collections.Generic.IEnumerable{System.ServiceModel.Syndication.CategoriesDocument},System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ResourceCollectionInfo.cs#L30C15-L32C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ResourceCollectionInfo.cs#L30C15-L32C10" }, { "DocsId": "M:System.ServiceModel.Syndication.ResourceCollectionInfo.#ctor(System.ServiceModel.Syndication.TextSyndicationContent,System.Uri,System.Collections.Generic.IEnumerable{System.ServiceModel.Syndication.CategoriesDocument},System.Collections.Generic.IEnumerable{System.String})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ResourceCollectionInfo.cs#L34C9-L65C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ResourceCollectionInfo.cs#L34C9-L65C10" }, { "DocsId": "M:System.ServiceModel.Syndication.ResourceCollectionInfo.CreateInlineCategoriesDocument", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ResourceCollectionInfo.cs#L89C13-L89C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ResourceCollectionInfo.cs#L89C13-L89C51" }, { "DocsId": "M:System.ServiceModel.Syndication.ResourceCollectionInfo.CreateReferencedCategoriesDocument", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ResourceCollectionInfo.cs#L94C13-L94C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ResourceCollectionInfo.cs#L94C13-L94C55" }, { "DocsId": "M:System.ServiceModel.Syndication.ResourceCollectionInfo.TryParseAttribute(System.String,System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ResourceCollectionInfo.cs#L99C13-L99C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ResourceCollectionInfo.cs#L99C13-L99C26" }, { "DocsId": "M:System.ServiceModel.Syndication.ResourceCollectionInfo.TryParseElement(System.Xml.XmlReader,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ResourceCollectionInfo.cs#L104C13-L104C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ResourceCollectionInfo.cs#L104C13-L104C26" }, { "DocsId": "M:System.ServiceModel.Syndication.ResourceCollectionInfo.WriteAttributeExtensions(System.Xml.XmlWriter,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ResourceCollectionInfo.cs#L109C13-L110C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ResourceCollectionInfo.cs#L109C13-L110C10" }, { "DocsId": "M:System.ServiceModel.Syndication.ResourceCollectionInfo.WriteElementExtensions(System.Xml.XmlWriter,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ResourceCollectionInfo.cs#L114C13-L115C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ResourceCollectionInfo.cs#L114C13-L115C10" }, { "DocsId": "P:System.ServiceModel.Syndication.ResourceCollectionInfo.Accepts", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ResourceCollectionInfo.cs#L69C20-L69C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ResourceCollectionInfo.cs#L69C20-L69C71" }, { "DocsId": "P:System.ServiceModel.Syndication.ResourceCollectionInfo.AttributeExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ResourceCollectionInfo.cs#L72C76-L72C107" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ResourceCollectionInfo.cs#L72C76-L72C107" }, { "DocsId": "P:System.ServiceModel.Syndication.ResourceCollectionInfo.BaseUri", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ResourceCollectionInfo.cs#L74C30-L74C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ResourceCollectionInfo.cs#L74C30-L74C34" }, { "DocsId": "P:System.ServiceModel.Syndication.ResourceCollectionInfo.Categories", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ResourceCollectionInfo.cs#L78C20-L78C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ResourceCollectionInfo.cs#L78C20-L78C86" }, { "DocsId": "P:System.ServiceModel.Syndication.ResourceCollectionInfo.ElementExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ResourceCollectionInfo.cs#L81C75-L81C104" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ResourceCollectionInfo.cs#L81C75-L81C104" }, { "DocsId": "P:System.ServiceModel.Syndication.ResourceCollectionInfo.Link", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ResourceCollectionInfo.cs#L83C27-L83C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ResourceCollectionInfo.cs#L83C27-L83C31" }, { "DocsId": "P:System.ServiceModel.Syndication.ResourceCollectionInfo.Title", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ResourceCollectionInfo.cs#L85C47-L85C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ResourceCollectionInfo.cs#L85C47-L85C51" } ], "DocsId": "T:System.ServiceModel.Syndication.ResourceCollectionInfo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ResourceCollectionInfo.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ResourceCollectionInfo.cs" }, { "Members": [ { "DocsId": "M:System.ServiceModel.Syndication.Rss20FeedFormatter.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L27C39-L29C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L27C39-L29C10" }, { "DocsId": "M:System.ServiceModel.Syndication.Rss20FeedFormatter.#ctor(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L64C65-L47C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L64C65-L47C10" }, { "DocsId": "M:System.ServiceModel.Syndication.Rss20FeedFormatter.#ctor(System.ServiceModel.Syndication.SyndicationFeed)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L49C66-L51C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L49C66-L51C10" }, { "DocsId": "M:System.ServiceModel.Syndication.Rss20FeedFormatter.#ctor(System.ServiceModel.Syndication.SyndicationFeed,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L64C65-L60C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L64C65-L60C10" }, { "DocsId": "M:System.ServiceModel.Syndication.Rss20FeedFormatter.CanRead(System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L76C13-L81C96" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L76C13-L81C96" }, { "DocsId": "M:System.ServiceModel.Syndication.Rss20FeedFormatter.System#Xml#Serialization#IXmlSerializable#GetSchema", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L84C51-L84C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L84C51-L84C55" }, { "DocsId": "M:System.ServiceModel.Syndication.Rss20FeedFormatter.System#Xml#Serialization#IXmlSerializable#ReadXml(System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L88C13-L94C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L88C13-L94C10" }, { "DocsId": "M:System.ServiceModel.Syndication.Rss20FeedFormatter.System#Xml#Serialization#IXmlSerializable#WriteXml(System.Xml.XmlWriter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L98C13-L104C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L98C13-L104C10" }, { "DocsId": "M:System.ServiceModel.Syndication.Rss20FeedFormatter.ReadFrom(System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L108C13-L114C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L108C13-L114C10" }, { "DocsId": "M:System.ServiceModel.Syndication.Rss20FeedFormatter.WriteTo(System.Xml.XmlWriter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L118C13-L126C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L118C13-L126C10" }, { "DocsId": "M:System.ServiceModel.Syndication.Rss20FeedFormatter.SetFeed(System.ServiceModel.Syndication.SyndicationFeed)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L130C13-L132C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L130C13-L132C10" }, { "DocsId": "M:System.ServiceModel.Syndication.Rss20FeedFormatter.CreateFeedInstance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L144C68-L144C96" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L144C68-L144C96" }, { "DocsId": "M:System.ServiceModel.Syndication.Rss20FeedFormatter.ReadItem(System.Xml.XmlReader,System.ServiceModel.Syndication.SyndicationFeed)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L148C13-L159C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L148C13-L159C25" }, { "DocsId": "M:System.ServiceModel.Syndication.Rss20FeedFormatter.ReadItems(System.Xml.XmlReader,System.ServiceModel.Syndication.SyndicationFeed,System.Boolean@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L164C13-L179C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L164C13-L179C26" }, { "DocsId": "M:System.ServiceModel.Syndication.Rss20FeedFormatter.WriteItem(System.Xml.XmlWriter,System.ServiceModel.Syndication.SyndicationItem,System.Uri)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L184C13-L187C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L184C13-L187C10" }, { "DocsId": "M:System.ServiceModel.Syndication.Rss20FeedFormatter.WriteItems(System.Xml.XmlWriter,System.Collections.Generic.IEnumerable{System.ServiceModel.Syndication.SyndicationItem},System.Uri)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L191C13-L200C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L191C13-L200C10" }, { "DocsId": "P:System.ServiceModel.Syndication.Rss20FeedFormatter.PreserveAttributeExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L64C51-L64C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L64C51-L64C55" }, { "DocsId": "P:System.ServiceModel.Syndication.Rss20FeedFormatter.PreserveElementExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L66C49-L66C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L66C49-L66C53" }, { "DocsId": "P:System.ServiceModel.Syndication.Rss20FeedFormatter.SerializeExtensionsAsAtom", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L68C49-L68C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L68C49-L68C53" }, { "DocsId": "P:System.ServiceModel.Syndication.Rss20FeedFormatter.Version", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L70C43-L70C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L70C43-L70C68" }, { "DocsId": "P:System.ServiceModel.Syndication.Rss20FeedFormatter.FeedType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L72C35-L72C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L72C35-L72C39" } ], "DocsId": "T:System.ServiceModel.Syndication.Rss20FeedFormatter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs" }, { "Members": [ { "DocsId": "M:System.ServiceModel.Syndication.Rss20FeedFormatter`1.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L1202C39-L1204C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L1202C39-L1204C10" }, { "DocsId": "M:System.ServiceModel.Syndication.Rss20FeedFormatter`1.#ctor(`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L1206C67-L1208C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L1206C67-L1208C10" }, { "DocsId": "M:System.ServiceModel.Syndication.Rss20FeedFormatter`1.#ctor(`0,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L1210C99-L1212C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L1210C99-L1212C10" }, { "DocsId": "M:System.ServiceModel.Syndication.Rss20FeedFormatter`1.CreateFeedInstance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L1214C68-L1214C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs#L1214C68-L1214C90" } ], "DocsId": "T:System.ServiceModel.Syndication.Rss20FeedFormatter`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20FeedFormatter.cs" }, { "Members": [ { "DocsId": "M:System.ServiceModel.Syndication.Rss20ItemFormatter.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20ItemFormatter.cs#L19C39-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20ItemFormatter.cs#L19C39-L21C10" }, { "DocsId": "M:System.ServiceModel.Syndication.Rss20ItemFormatter.#ctor(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20ItemFormatter.cs#L15C9-L40C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20ItemFormatter.cs#L15C9-L40C10" }, { "DocsId": "M:System.ServiceModel.Syndication.Rss20ItemFormatter.#ctor(System.ServiceModel.Syndication.SyndicationItem)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20ItemFormatter.cs#L42C66-L44C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20ItemFormatter.cs#L42C66-L44C10" }, { "DocsId": "M:System.ServiceModel.Syndication.Rss20ItemFormatter.#ctor(System.ServiceModel.Syndication.SyndicationItem,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20ItemFormatter.cs#L15C9-L53C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20ItemFormatter.cs#L15C9-L53C10" }, { "DocsId": "M:System.ServiceModel.Syndication.Rss20ItemFormatter.CanRead(System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20ItemFormatter.cs#L91C13-L96C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20ItemFormatter.cs#L91C13-L96C97" }, { "DocsId": "M:System.ServiceModel.Syndication.Rss20ItemFormatter.System#Xml#Serialization#IXmlSerializable#GetSchema", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20ItemFormatter.cs#L99C51-L99C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20ItemFormatter.cs#L99C51-L99C55" }, { "DocsId": "M:System.ServiceModel.Syndication.Rss20ItemFormatter.System#Xml#Serialization#IXmlSerializable#ReadXml(System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20ItemFormatter.cs#L103C13-L109C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20ItemFormatter.cs#L103C13-L109C10" }, { "DocsId": "M:System.ServiceModel.Syndication.Rss20ItemFormatter.System#Xml#Serialization#IXmlSerializable#WriteXml(System.Xml.XmlWriter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20ItemFormatter.cs#L113C13-L119C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20ItemFormatter.cs#L113C13-L119C10" }, { "DocsId": "M:System.ServiceModel.Syndication.Rss20ItemFormatter.ReadFrom(System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20ItemFormatter.cs#L123C13-L129C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20ItemFormatter.cs#L123C13-L129C10" }, { "DocsId": "M:System.ServiceModel.Syndication.Rss20ItemFormatter.WriteTo(System.Xml.XmlWriter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20ItemFormatter.cs#L133C13-L141C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20ItemFormatter.cs#L133C13-L141C10" }, { "DocsId": "M:System.ServiceModel.Syndication.Rss20ItemFormatter.CreateItemInstance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20ItemFormatter.cs#L143C68-L143C96" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20ItemFormatter.cs#L143C68-L143C96" }, { "DocsId": "P:System.ServiceModel.Syndication.Rss20ItemFormatter.PreserveAttributeExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20ItemFormatter.cs#L57C20-L57C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20ItemFormatter.cs#L57C20-L57C48" }, { "DocsId": "P:System.ServiceModel.Syndication.Rss20ItemFormatter.PreserveElementExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20ItemFormatter.cs#L67C20-L67C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20ItemFormatter.cs#L67C20-L67C46" }, { "DocsId": "P:System.ServiceModel.Syndication.Rss20ItemFormatter.SerializeExtensionsAsAtom", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20ItemFormatter.cs#L77C20-L77C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20ItemFormatter.cs#L77C20-L77C46" }, { "DocsId": "P:System.ServiceModel.Syndication.Rss20ItemFormatter.Version", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20ItemFormatter.cs#L85C43-L85C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20ItemFormatter.cs#L85C43-L85C68" }, { "DocsId": "P:System.ServiceModel.Syndication.Rss20ItemFormatter.ItemType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20ItemFormatter.cs#L87C35-L87C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20ItemFormatter.cs#L87C35-L87C39" } ], "DocsId": "T:System.ServiceModel.Syndication.Rss20ItemFormatter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20ItemFormatter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20ItemFormatter.cs" }, { "Members": [ { "DocsId": "M:System.ServiceModel.Syndication.Rss20ItemFormatter`1.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20ItemFormatter.cs#L166C39-L168C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20ItemFormatter.cs#L166C39-L168C10" }, { "DocsId": "M:System.ServiceModel.Syndication.Rss20ItemFormatter`1.#ctor(`0)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20ItemFormatter.cs#L170C67-L172C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20ItemFormatter.cs#L170C67-L172C10" }, { "DocsId": "M:System.ServiceModel.Syndication.Rss20ItemFormatter`1.#ctor(`0,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20ItemFormatter.cs#L174C99-L176C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20ItemFormatter.cs#L174C99-L176C10" }, { "DocsId": "M:System.ServiceModel.Syndication.Rss20ItemFormatter`1.CreateItemInstance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20ItemFormatter.cs#L178C68-L178C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20ItemFormatter.cs#L178C68-L178C90" } ], "DocsId": "T:System.ServiceModel.Syndication.Rss20ItemFormatter`1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20ItemFormatter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Rss20ItemFormatter.cs" }, { "Members": [ { "DocsId": "M:System.ServiceModel.Syndication.ServiceDocument.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocument.cs#L15C36-L17C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocument.cs#L15C36-L17C10" }, { "DocsId": "M:System.ServiceModel.Syndication.ServiceDocument.#ctor(System.Collections.Generic.IEnumerable{System.ServiceModel.Syndication.Workspace})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocument.cs#L19C9-L29C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocument.cs#L19C9-L29C10" }, { "DocsId": "M:System.ServiceModel.Syndication.ServiceDocument.Load(System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocument.cs#L46C13-L46C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocument.cs#L46C13-L46C50" }, { "DocsId": "M:System.ServiceModel.Syndication.ServiceDocument.Load``1(System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocument.cs#L51C13-L53C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocument.cs#L51C13-L53C57" }, { "DocsId": "M:System.ServiceModel.Syndication.ServiceDocument.GetFormatter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocument.cs#L58C13-L58C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocument.cs#L58C13-L58C64" }, { "DocsId": "M:System.ServiceModel.Syndication.ServiceDocument.Save(System.Xml.XmlWriter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocument.cs#L63C13-L64C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocument.cs#L63C13-L64C10" }, { "DocsId": "M:System.ServiceModel.Syndication.ServiceDocument.CreateWorkspace", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocument.cs#L68C13-L68C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocument.cs#L68C13-L68C36" }, { "DocsId": "M:System.ServiceModel.Syndication.ServiceDocument.TryParseAttribute(System.String,System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocument.cs#L73C13-L73C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocument.cs#L73C13-L73C26" }, { "DocsId": "M:System.ServiceModel.Syndication.ServiceDocument.TryParseElement(System.Xml.XmlReader,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocument.cs#L78C13-L78C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocument.cs#L78C13-L78C26" }, { "DocsId": "M:System.ServiceModel.Syndication.ServiceDocument.WriteAttributeExtensions(System.Xml.XmlWriter,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocument.cs#L83C13-L84C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocument.cs#L83C13-L84C10" }, { "DocsId": "M:System.ServiceModel.Syndication.ServiceDocument.WriteElementExtensions(System.Xml.XmlWriter,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocument.cs#L88C13-L89C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocument.cs#L88C13-L89C10" }, { "DocsId": "P:System.ServiceModel.Syndication.ServiceDocument.AttributeExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocument.cs#L31C76-L31C107" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocument.cs#L31C76-L31C107" }, { "DocsId": "P:System.ServiceModel.Syndication.ServiceDocument.BaseUri", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocument.cs#L33C30-L33C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocument.cs#L33C30-L33C34" }, { "DocsId": "P:System.ServiceModel.Syndication.ServiceDocument.ElementExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocument.cs#L35C75-L35C104" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocument.cs#L35C75-L35C104" }, { "DocsId": "P:System.ServiceModel.Syndication.ServiceDocument.Language", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocument.cs#L37C34-L37C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocument.cs#L37C34-L37C38" }, { "DocsId": "P:System.ServiceModel.Syndication.ServiceDocument.Workspaces", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocument.cs#L41C20-L41C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocument.cs#L41C20-L41C77" } ], "DocsId": "T:System.ServiceModel.Syndication.ServiceDocument", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocument.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocument.cs" }, { "Members": [ { "DocsId": "M:System.ServiceModel.Syndication.ServiceDocumentFormatter.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L15C9-L17C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L15C9-L17C10" }, { "DocsId": "M:System.ServiceModel.Syndication.ServiceDocumentFormatter.#ctor(System.ServiceModel.Syndication.ServiceDocument)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L19C9-L27C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L19C9-L27C10" }, { "DocsId": "M:System.ServiceModel.Syndication.ServiceDocumentFormatter.CanRead(System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs" }, { "DocsId": "M:System.ServiceModel.Syndication.ServiceDocumentFormatter.ReadFrom(System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs" }, { "DocsId": "M:System.ServiceModel.Syndication.ServiceDocumentFormatter.WriteTo(System.Xml.XmlWriter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs" }, { "DocsId": "M:System.ServiceModel.Syndication.ServiceDocumentFormatter.CreateCategory(System.ServiceModel.Syndication.InlineCategoriesDocument)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L74C13-L79C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L74C13-L79C54" }, { "DocsId": "M:System.ServiceModel.Syndication.ServiceDocumentFormatter.CreateCollection(System.ServiceModel.Syndication.Workspace)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L84C13-L89C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L84C13-L89C57" }, { "DocsId": "M:System.ServiceModel.Syndication.ServiceDocumentFormatter.CreateInlineCategories(System.ServiceModel.Syndication.ResourceCollectionInfo)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L94C13-L94C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L94C13-L94C64" }, { "DocsId": "M:System.ServiceModel.Syndication.ServiceDocumentFormatter.CreateReferencedCategories(System.ServiceModel.Syndication.ResourceCollectionInfo)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L99C13-L99C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L99C13-L99C68" }, { "DocsId": "M:System.ServiceModel.Syndication.ServiceDocumentFormatter.CreateWorkspace(System.ServiceModel.Syndication.ServiceDocument)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L104C13-L109C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L104C13-L109C47" }, { "DocsId": "M:System.ServiceModel.Syndication.ServiceDocumentFormatter.LoadElementExtensions(System.Xml.XmlReader,System.ServiceModel.Syndication.CategoriesDocument,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L114C13-L120C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L114C13-L120C10" }, { "DocsId": "M:System.ServiceModel.Syndication.ServiceDocumentFormatter.LoadElementExtensions(System.Xml.XmlReader,System.ServiceModel.Syndication.ResourceCollectionInfo,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L124C13-L130C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L124C13-L130C10" }, { "DocsId": "M:System.ServiceModel.Syndication.ServiceDocumentFormatter.LoadElementExtensions(System.Xml.XmlReader,System.ServiceModel.Syndication.Workspace,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L134C13-L140C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L134C13-L140C10" }, { "DocsId": "M:System.ServiceModel.Syndication.ServiceDocumentFormatter.LoadElementExtensions(System.Xml.XmlReader,System.ServiceModel.Syndication.ServiceDocument,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L144C13-L150C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L144C13-L150C10" }, { "DocsId": "M:System.ServiceModel.Syndication.ServiceDocumentFormatter.TryParseAttribute(System.String,System.String,System.String,System.ServiceModel.Syndication.ServiceDocument,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L154C13-L159C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L154C13-L159C73" }, { "DocsId": "M:System.ServiceModel.Syndication.ServiceDocumentFormatter.TryParseAttribute(System.String,System.String,System.String,System.ServiceModel.Syndication.ResourceCollectionInfo,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L164C13-L169C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L164C13-L169C75" }, { "DocsId": "M:System.ServiceModel.Syndication.ServiceDocumentFormatter.TryParseAttribute(System.String,System.String,System.String,System.ServiceModel.Syndication.CategoriesDocument,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L174C13-L179C75" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L174C13-L179C75" }, { "DocsId": "M:System.ServiceModel.Syndication.ServiceDocumentFormatter.TryParseAttribute(System.String,System.String,System.String,System.ServiceModel.Syndication.Workspace,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L184C13-L189C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L184C13-L189C74" }, { "DocsId": "M:System.ServiceModel.Syndication.ServiceDocumentFormatter.TryParseElement(System.Xml.XmlReader,System.ServiceModel.Syndication.ResourceCollectionInfo,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L194C13-L199C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L194C13-L199C64" }, { "DocsId": "M:System.ServiceModel.Syndication.ServiceDocumentFormatter.TryParseElement(System.Xml.XmlReader,System.ServiceModel.Syndication.ServiceDocument,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L204C13-L209C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L204C13-L209C62" }, { "DocsId": "M:System.ServiceModel.Syndication.ServiceDocumentFormatter.TryParseElement(System.Xml.XmlReader,System.ServiceModel.Syndication.Workspace,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L214C13-L219C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L214C13-L219C63" }, { "DocsId": "M:System.ServiceModel.Syndication.ServiceDocumentFormatter.TryParseElement(System.Xml.XmlReader,System.ServiceModel.Syndication.CategoriesDocument,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L224C13-L229C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L224C13-L229C64" }, { "DocsId": "M:System.ServiceModel.Syndication.ServiceDocumentFormatter.WriteAttributeExtensions(System.Xml.XmlWriter,System.ServiceModel.Syndication.ServiceDocument,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L234C13-L240C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L234C13-L240C10" }, { "DocsId": "M:System.ServiceModel.Syndication.ServiceDocumentFormatter.WriteAttributeExtensions(System.Xml.XmlWriter,System.ServiceModel.Syndication.Workspace,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L244C13-L250C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L244C13-L250C10" }, { "DocsId": "M:System.ServiceModel.Syndication.ServiceDocumentFormatter.WriteAttributeExtensions(System.Xml.XmlWriter,System.ServiceModel.Syndication.ResourceCollectionInfo,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L254C13-L260C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L254C13-L260C10" }, { "DocsId": "M:System.ServiceModel.Syndication.ServiceDocumentFormatter.WriteAttributeExtensions(System.Xml.XmlWriter,System.ServiceModel.Syndication.CategoriesDocument,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L264C13-L270C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L264C13-L270C10" }, { "DocsId": "M:System.ServiceModel.Syndication.ServiceDocumentFormatter.WriteElementExtensions(System.Xml.XmlWriter,System.ServiceModel.Syndication.ServiceDocument,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L274C13-L280C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L274C13-L280C10" }, { "DocsId": "M:System.ServiceModel.Syndication.ServiceDocumentFormatter.WriteElementExtensions(System.Xml.XmlWriter,System.ServiceModel.Syndication.Workspace,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L284C13-L290C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L284C13-L290C10" }, { "DocsId": "M:System.ServiceModel.Syndication.ServiceDocumentFormatter.WriteElementExtensions(System.Xml.XmlWriter,System.ServiceModel.Syndication.ResourceCollectionInfo,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L294C13-L300C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L294C13-L300C10" }, { "DocsId": "M:System.ServiceModel.Syndication.ServiceDocumentFormatter.WriteElementExtensions(System.Xml.XmlWriter,System.ServiceModel.Syndication.CategoriesDocument,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L304C13-L310C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L304C13-L310C10" }, { "DocsId": "M:System.ServiceModel.Syndication.ServiceDocumentFormatter.CreateDocumentInstance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L312C71-L312C92" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L312C71-L312C92" }, { "DocsId": "M:System.ServiceModel.Syndication.ServiceDocumentFormatter.SetDocument(System.ServiceModel.Syndication.ServiceDocument)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L314C73-L314C93" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L314C73-L314C93" }, { "DocsId": "P:System.ServiceModel.Syndication.ServiceDocumentFormatter.Document", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L29C44-L29C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs#L29C44-L29C53" }, { "DocsId": "P:System.ServiceModel.Syndication.ServiceDocumentFormatter.Version", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs" } ], "DocsId": "T:System.ServiceModel.Syndication.ServiceDocumentFormatter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/ServiceDocumentFormatter.cs" }, { "Members": [ { "DocsId": "M:System.ServiceModel.Syndication.SyndicationCategory.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationCategory.cs#L14C40-L16C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationCategory.cs#L14C40-L16C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationCategory.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationCategory.cs#L18C51-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationCategory.cs#L18C51-L20C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationCategory.#ctor(System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationCategory.cs#L22C9-L27C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationCategory.cs#L22C9-L27C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationCategory.#ctor(System.ServiceModel.Syndication.SyndicationCategory)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationCategory.cs#L29C9-L40C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationCategory.cs#L29C9-L40C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationCategory.Clone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationCategory.cs#L52C55-L52C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationCategory.cs#L52C55-L52C84" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationCategory.TryParseAttribute(System.String,System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationCategory.cs#L56C13-L56C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationCategory.cs#L56C13-L56C26" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationCategory.TryParseElement(System.Xml.XmlReader,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationCategory.cs#L61C13-L61C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationCategory.cs#L61C13-L61C26" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationCategory.WriteAttributeExtensions(System.Xml.XmlWriter,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationCategory.cs#L66C13-L67C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationCategory.cs#L66C13-L67C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationCategory.WriteElementExtensions(System.Xml.XmlWriter,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationCategory.cs#L71C13-L72C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationCategory.cs#L71C13-L72C10" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationCategory.AttributeExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationCategory.cs#L42C76-L42C107" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationCategory.cs#L42C76-L42C107" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationCategory.ElementExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationCategory.cs#L44C75-L44C104" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationCategory.cs#L44C75-L44C104" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationCategory.Label", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationCategory.cs#L46C31-L46C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationCategory.cs#L46C31-L46C35" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationCategory.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationCategory.cs#L48C30-L48C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationCategory.cs#L48C30-L48C34" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationCategory.Scheme", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationCategory.cs#L50C32-L50C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationCategory.cs#L50C32-L50C36" } ], "DocsId": "T:System.ServiceModel.Syndication.SyndicationCategory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationCategory.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationCategory.cs" }, { "Members": [ { "DocsId": "M:System.ServiceModel.Syndication.SyndicationContent.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationContent.cs#L15C9-L17C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationContent.cs#L15C9-L17C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationContent.#ctor(System.ServiceModel.Syndication.SyndicationContent)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationContent.cs#L19C9-L19C99" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationContent.cs#L19C9-L19C99" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationContent.CreateHtmlContent(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationContent.cs#L30C13-L30C89" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationContent.cs#L30C13-L30C89" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationContent.CreatePlaintextContent(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationContent.cs#L35C13-L35C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationContent.cs#L35C13-L35C56" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationContent.CreateUrlContent(System.Uri,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationContent.cs#L40C13-L40C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationContent.cs#L40C13-L40C62" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationContent.CreateXhtmlContent(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationContent.cs#L45C13-L45C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationContent.cs#L45C13-L45C90" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationContent.CreateXmlContent(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationContent.cs#L50C13-L50C126" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationContent.cs#L50C13-L50C126" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationContent.CreateXmlContent(System.Object,System.Runtime.Serialization.XmlObjectSerializer)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationContent.cs#L55C13-L55C120" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationContent.cs#L55C13-L55C120" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationContent.CreateXmlContent(System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationContent.cs#L60C13-L60C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationContent.cs#L60C13-L60C57" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationContent.CreateXmlContent(System.Object,System.Xml.Serialization.XmlSerializer)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationContent.cs#L65C13-L65C109" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationContent.cs#L65C13-L65C109" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationContent.Clone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationContent.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationContent.cs" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationContent.WriteTo(System.Xml.XmlWriter,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationContent.cs#L72C13-L98C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationContent.cs#L72C13-L98C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationContent.WriteContentsTo(System.Xml.XmlWriter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationContent.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationContent.cs" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationContent.AttributeExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationContent.cs#L23C20-L23C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationContent.cs#L23C20-L23C87" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationContent.Type", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationContent.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationContent.cs" } ], "DocsId": "T:System.ServiceModel.Syndication.SyndicationContent", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationContent.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationContent.cs" }, { "Members": [ { "DocsId": "M:System.ServiceModel.Syndication.SyndicationElementExtension.#ctor(System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtension.cs#L22C9-L42C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtension.cs#L22C9-L42C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationElementExtension.#ctor(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtension.cs#L44C76-L46C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtension.cs#L44C76-L46C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationElementExtension.#ctor(System.Object,System.Runtime.Serialization.XmlObjectSerializer)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtension.cs#L49C15-L51C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtension.cs#L49C15-L51C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationElementExtension.#ctor(System.String,System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtension.cs#L54C15-L56C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtension.cs#L54C15-L56C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationElementExtension.#ctor(System.String,System.String,System.Object,System.Runtime.Serialization.XmlObjectSerializer)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtension.cs#L58C9-L75C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtension.cs#L58C9-L75C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationElementExtension.#ctor(System.Object,System.Xml.Serialization.XmlSerializer)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtension.cs#L77C9-L87C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtension.cs#L77C9-L87C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationElementExtension.GetObject``1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtension.cs#L123C54-L123C123" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtension.cs#L123C54-L123C123" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationElementExtension.GetObject``1(System.Runtime.Serialization.XmlObjectSerializer)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtension.cs#L127C13-L140C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtension.cs#L127C13-L140C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationElementExtension.GetObject``1(System.Xml.Serialization.XmlSerializer)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtension.cs#L144C13-L157C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtension.cs#L144C13-L157C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationElementExtension.GetReader", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtension.cs#L161C13-L174C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtension.cs#L161C13-L174C27" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationElementExtension.WriteTo(System.Xml.XmlWriter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtension.cs#L179C13-L195C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtension.cs#L179C13-L195C10" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationElementExtension.OuterName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtension.cs#L101C17-L106C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtension.cs#L101C17-L106C35" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationElementExtension.OuterNamespace", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtension.cs#L114C17-L119C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtension.cs#L114C17-L119C40" } ], "DocsId": "T:System.ServiceModel.Syndication.SyndicationElementExtension", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtension.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtension.cs" }, { "Members": [ { "DocsId": "M:System.ServiceModel.Syndication.SyndicationElementExtensionCollection.Add(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtensionCollection.cs#L44C13-L52C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtensionCollection.cs#L44C13-L52C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationElementExtensionCollection.Add(System.String,System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtensionCollection.cs#L56C13-L57C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtensionCollection.cs#L56C13-L57C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationElementExtensionCollection.Add(System.Object,System.Runtime.Serialization.DataContractSerializer)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtensionCollection.cs#L61C13-L62C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtensionCollection.cs#L61C13-L62C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationElementExtensionCollection.Add(System.String,System.String,System.Object,System.Runtime.Serialization.XmlObjectSerializer)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtensionCollection.cs#L66C13-L73C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtensionCollection.cs#L66C13-L73C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationElementExtensionCollection.Add(System.Object,System.Xml.Serialization.XmlSerializer)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtensionCollection.cs#L77C13-L84C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtensionCollection.cs#L77C13-L84C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationElementExtensionCollection.Add(System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtensionCollection.cs#L88C13-L94C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtensionCollection.cs#L88C13-L94C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationElementExtensionCollection.GetReaderAtElementExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtensionCollection.cs#L98C13-L101C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtensionCollection.cs#L98C13-L101C27" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationElementExtensionCollection.ReadElementExtensions``1(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtensionCollection.cs#L106C13-L106C137" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtensionCollection.cs#L106C13-L106C137" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationElementExtensionCollection.ReadElementExtensions``1(System.String,System.String,System.Runtime.Serialization.XmlObjectSerializer)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtensionCollection.cs#L111C13-L116C100" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtensionCollection.cs#L111C13-L116C100" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationElementExtensionCollection.ReadElementExtensions``1(System.String,System.String,System.Xml.Serialization.XmlSerializer)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtensionCollection.cs#L121C13-L126C100" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtensionCollection.cs#L121C13-L126C100" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationElementExtensionCollection.ClearItems", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtensionCollection.cs#L159C13-L163C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtensionCollection.cs#L159C13-L163C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationElementExtensionCollection.InsertItem(System.Int32,System.ServiceModel.Syndication.SyndicationElementExtension)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtensionCollection.cs#L167C13-L178C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtensionCollection.cs#L167C13-L178C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationElementExtensionCollection.RemoveItem(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtensionCollection.cs#L182C13-L186C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtensionCollection.cs#L182C13-L186C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationElementExtensionCollection.SetItem(System.Int32,System.ServiceModel.Syndication.SyndicationElementExtension)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtensionCollection.cs#L190C13-L198C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtensionCollection.cs#L190C13-L198C10" } ], "DocsId": "T:System.ServiceModel.Syndication.SyndicationElementExtensionCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtensionCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationElementExtensionCollection.cs" }, { "Members": [ { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeed.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L28C36-L30C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L28C36-L30C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeed.#ctor(System.Collections.Generic.IEnumerable{System.ServiceModel.Syndication.SyndicationItem})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L32C70-L34C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L32C70-L34C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeed.#ctor(System.String,System.String,System.Uri)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L37C15-L39C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L37C15-L39C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeed.#ctor(System.String,System.String,System.Uri,System.Collections.Generic.IEnumerable{System.ServiceModel.Syndication.SyndicationItem})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L42C15-L44C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L42C15-L44C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeed.#ctor(System.String,System.String,System.Uri,System.String,System.DateTimeOffset)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L47C15-L49C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L47C15-L49C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeed.#ctor(System.String,System.String,System.Uri,System.String,System.DateTimeOffset,System.Collections.Generic.IEnumerable{System.ServiceModel.Syndication.SyndicationItem})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L51C9-L68C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L51C9-L68C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeed.#ctor(System.ServiceModel.Syndication.SyndicationFeed,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L70C9-L109C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L70C9-L109C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeed.Load(System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L410C65-L410C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L410C65-L410C94" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeed.Load``1(System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L414C13-L432C105" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L414C13-L432C105" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeed.Clone(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L437C13-L437C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L437C13-L437C58" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeed.GetAtom10Formatter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L440C60-L440C89" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L440C60-L440C89" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeed.GetRss20Formatter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L442C58-L442C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L442C58-L442C81" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeed.GetRss20Formatter(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L446C13-L446C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L446C13-L446C76" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeed.SaveAsAtom10(System.Xml.XmlWriter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L451C13-L452C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L451C13-L452C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeed.SaveAsRss20(System.Xml.XmlWriter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L456C13-L457C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L456C13-L457C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeed.CreateCategory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L461C13-L461C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L461C13-L461C46" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeed.CreateItem", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L466C13-L466C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L466C13-L466C42" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeed.CreateLink", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L471C13-L471C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L471C13-L471C42" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeed.CreatePerson", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L476C13-L476C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L476C13-L476C44" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeed.TryParseAttribute(System.String,System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L481C13-L481C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L481C13-L481C26" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeed.TryParseElement(System.Xml.XmlReader,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L486C13-L486C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L486C13-L486C26" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeed.WriteAttributeExtensions(System.Xml.XmlWriter,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L491C13-L492C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L491C13-L492C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeed.WriteElementExtensions(System.Xml.XmlWriter,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L496C13-L497C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L496C13-L497C10" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationFeed.AttributeExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L111C76-L111C107" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L111C76-L111C107" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationFeed.Authors", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L115C20-L115C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L115C20-L115C82" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationFeed.BaseUri", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L119C30-L119C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L119C30-L119C34" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationFeed.Categories", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L123C20-L123C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L123C20-L123C87" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationFeed.Contributors", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L128C20-L128C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L128C20-L128C87" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationFeed.Copyright", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L131C51-L131C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L131C51-L131C55" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationFeed.Description", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L133C53-L133C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L133C53-L133C57" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationFeed.ElementExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L135C75-L135C104" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L135C75-L135C104" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationFeed.Generator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L137C35-L137C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L137C35-L137C39" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationFeed.Id", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L139C28-L139C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L139C28-L139C32" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationFeed.ImageUrl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L141C31-L141C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L141C31-L141C35" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationFeed.Items", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L145C20-L145C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L145C20-L145C78" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationFeed.Language", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L149C34-L149C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L149C34-L149C38" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationFeed.LastUpdatedTime", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L157C17-L162C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L157C17-L162C41" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationFeed.Links", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L173C20-L173C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L173C20-L173C78" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationFeed.Title", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L176C47-L176C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L176C47-L176C51" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationFeed.Documentation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L182C20-L182C98" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L182C20-L182C98" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationFeed.TimeToLive", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L190C20-L190C92" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L190C20-L190C92" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationFeed.SkipHours", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L208C17-L215C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L208C17-L215C42" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationFeed.SkipDays", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L225C17-L232C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L225C17-L232C41" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationFeed.TextInput", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L240C20-L240C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs#L240C20-L240C90" } ], "DocsId": "T:System.ServiceModel.Syndication.SyndicationFeed", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeed.cs" }, { "Members": [ { "DocsId": "M:System.ServiceModel.Syndication.TryParseDateTimeCallback.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs" }, { "DocsId": "M:System.ServiceModel.Syndication.TryParseDateTimeCallback.Invoke(System.ServiceModel.Syndication.XmlDateTimeData,System.DateTimeOffset@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs" }, { "DocsId": "M:System.ServiceModel.Syndication.TryParseDateTimeCallback.BeginInvoke(System.ServiceModel.Syndication.XmlDateTimeData,System.DateTimeOffset@,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs" }, { "DocsId": "M:System.ServiceModel.Syndication.TryParseDateTimeCallback.EndInvoke(System.DateTimeOffset@,System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs" } ], "DocsId": "T:System.ServiceModel.Syndication.TryParseDateTimeCallback", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs" }, { "Members": [ { "DocsId": "M:System.ServiceModel.Syndication.TryParseUriCallback.#ctor(System.Object,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs" }, { "DocsId": "M:System.ServiceModel.Syndication.TryParseUriCallback.Invoke(System.ServiceModel.Syndication.XmlUriData,System.Uri@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs" }, { "DocsId": "M:System.ServiceModel.Syndication.TryParseUriCallback.BeginInvoke(System.ServiceModel.Syndication.XmlUriData,System.Uri@,System.AsyncCallback,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs" }, { "DocsId": "M:System.ServiceModel.Syndication.TryParseUriCallback.EndInvoke(System.Uri@,System.IAsyncResult)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs" } ], "DocsId": "T:System.ServiceModel.Syndication.TryParseUriCallback", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs" }, { "Members": [ { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeedFormatter.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L38C62-L23C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L38C62-L23C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeedFormatter.#ctor(System.ServiceModel.Syndication.SyndicationFeed)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L38C62-L34C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L38C62-L34C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeedFormatter.CanRead(System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeedFormatter.ReadFrom(System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeedFormatter.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L57C46-L57C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L57C46-L57C90" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeedFormatter.WriteTo(System.Xml.XmlWriter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeedFormatter.CreateCategory(System.ServiceModel.Syndication.SyndicationFeed)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L63C13-L68C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L63C13-L68C87" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeedFormatter.CreateCategory(System.ServiceModel.Syndication.SyndicationItem)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L73C13-L78C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L73C13-L78C87" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeedFormatter.CreateItem(System.ServiceModel.Syndication.SyndicationFeed)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L83C13-L88C79" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L83C13-L88C79" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeedFormatter.CreateLink(System.ServiceModel.Syndication.SyndicationFeed)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L93C13-L98C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L93C13-L98C81" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeedFormatter.CreateLink(System.ServiceModel.Syndication.SyndicationItem)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L103C13-L108C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L103C13-L108C81" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeedFormatter.CreatePerson(System.ServiceModel.Syndication.SyndicationFeed)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L113C13-L118C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L113C13-L118C83" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeedFormatter.CreatePerson(System.ServiceModel.Syndication.SyndicationItem)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L123C13-L128C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L123C13-L128C83" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeedFormatter.LoadElementExtensions(System.Xml.XmlReader,System.ServiceModel.Syndication.SyndicationFeed,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L133C13-L139C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L133C13-L139C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeedFormatter.LoadElementExtensions(System.Xml.XmlReader,System.ServiceModel.Syndication.SyndicationItem,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L143C13-L149C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L143C13-L149C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeedFormatter.LoadElementExtensions(System.Xml.XmlReader,System.ServiceModel.Syndication.SyndicationCategory,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L153C13-L159C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L153C13-L159C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeedFormatter.LoadElementExtensions(System.Xml.XmlReader,System.ServiceModel.Syndication.SyndicationLink,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L163C13-L169C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L163C13-L169C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeedFormatter.LoadElementExtensions(System.Xml.XmlReader,System.ServiceModel.Syndication.SyndicationPerson,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L173C13-L179C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L173C13-L179C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeedFormatter.TryParseAttribute(System.String,System.String,System.String,System.ServiceModel.Syndication.SyndicationFeed,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L183C13-L192C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L183C13-L192C69" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeedFormatter.TryParseAttribute(System.String,System.String,System.String,System.ServiceModel.Syndication.SyndicationItem,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L197C13-L206C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L197C13-L206C69" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeedFormatter.TryParseAttribute(System.String,System.String,System.String,System.ServiceModel.Syndication.SyndicationCategory,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L211C13-L220C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L211C13-L220C73" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeedFormatter.TryParseAttribute(System.String,System.String,System.String,System.ServiceModel.Syndication.SyndicationLink,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L225C13-L234C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L225C13-L234C69" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeedFormatter.TryParseAttribute(System.String,System.String,System.String,System.ServiceModel.Syndication.SyndicationPerson,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L239C13-L248C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L239C13-L248C71" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeedFormatter.TryParseContent(System.Xml.XmlReader,System.ServiceModel.Syndication.SyndicationItem,System.String,System.String,System.ServiceModel.Syndication.SyndicationContent@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L253C13-L253C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L253C13-L253C84" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeedFormatter.TryParseElement(System.Xml.XmlReader,System.ServiceModel.Syndication.SyndicationFeed,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L258C13-L263C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L258C13-L263C58" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeedFormatter.TryParseElement(System.Xml.XmlReader,System.ServiceModel.Syndication.SyndicationItem,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L268C13-L273C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L268C13-L273C58" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeedFormatter.TryParseElement(System.Xml.XmlReader,System.ServiceModel.Syndication.SyndicationCategory,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L278C13-L283C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L278C13-L283C62" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeedFormatter.TryParseElement(System.Xml.XmlReader,System.ServiceModel.Syndication.SyndicationLink,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L288C13-L293C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L288C13-L293C58" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeedFormatter.TryParseElement(System.Xml.XmlReader,System.ServiceModel.Syndication.SyndicationPerson,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L298C13-L303C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L298C13-L303C60" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeedFormatter.WriteAttributeExtensions(System.Xml.XmlWriter,System.ServiceModel.Syndication.SyndicationFeed,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L308C13-L314C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L308C13-L314C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeedFormatter.WriteAttributeExtensions(System.Xml.XmlWriter,System.ServiceModel.Syndication.SyndicationItem,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L318C13-L324C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L318C13-L324C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeedFormatter.WriteAttributeExtensions(System.Xml.XmlWriter,System.ServiceModel.Syndication.SyndicationCategory,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L328C13-L334C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L328C13-L334C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeedFormatter.WriteAttributeExtensions(System.Xml.XmlWriter,System.ServiceModel.Syndication.SyndicationLink,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L338C13-L344C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L338C13-L344C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeedFormatter.WriteAttributeExtensions(System.Xml.XmlWriter,System.ServiceModel.Syndication.SyndicationPerson,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L348C13-L354C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L348C13-L354C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeedFormatter.WriteElementExtensions(System.Xml.XmlWriter,System.ServiceModel.Syndication.SyndicationFeed,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L358C13-L364C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L358C13-L364C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeedFormatter.WriteElementExtensions(System.Xml.XmlWriter,System.ServiceModel.Syndication.SyndicationItem,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L368C13-L374C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L368C13-L374C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeedFormatter.WriteElementExtensions(System.Xml.XmlWriter,System.ServiceModel.Syndication.SyndicationCategory,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L378C13-L384C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L378C13-L384C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeedFormatter.WriteElementExtensions(System.Xml.XmlWriter,System.ServiceModel.Syndication.SyndicationLink,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L388C13-L394C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L388C13-L394C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeedFormatter.WriteElementExtensions(System.Xml.XmlWriter,System.ServiceModel.Syndication.SyndicationPerson,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L398C13-L404C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L398C13-L404C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeedFormatter.SetFeed(System.ServiceModel.Syndication.SyndicationFeed)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L408C13-L414C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L408C13-L414C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationFeedFormatter.CreateFeedInstance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationFeedFormatter.Feed", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L36C40-L36C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L36C40-L36C45" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationFeedFormatter.UriParser", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L38C48-L38C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L38C48-L38C52" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationFeedFormatter.DateTimeParser", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L41C58-L41C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs#L41C58-L41C62" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationFeedFormatter.Version", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs" } ], "DocsId": "T:System.ServiceModel.Syndication.SyndicationFeedFormatter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationFeedFormatter.cs" }, { "Members": [ { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItem.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L22C36-L24C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L22C36-L24C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItem.#ctor(System.String,System.String,System.Uri)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L27C15-L29C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L27C15-L29C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItem.#ctor(System.String,System.String,System.Uri,System.String,System.DateTimeOffset)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L32C15-L34C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L32C15-L34C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItem.#ctor(System.String,System.ServiceModel.Syndication.SyndicationContent,System.Uri,System.String,System.DateTimeOffset)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L36C9-L49C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L36C9-L49C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItem.#ctor(System.ServiceModel.Syndication.SyndicationItem)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L51C9-L76C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L51C9-L76C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItem.Load(System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L156C65-L156C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L156C65-L156C94" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItem.Load``1(System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L160C13-L178C105" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L160C13-L178C105" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItem.AddPermalink(System.Uri)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L184C13-L191C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L184C13-L191C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItem.Clone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L193C51-L193C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L193C51-L193C76" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItem.GetAtom10Formatter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L195C60-L195C89" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L195C60-L195C89" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItem.GetRss20Formatter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L197C58-L197C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L197C58-L197C81" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItem.GetRss20Formatter(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L201C13-L201C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L201C13-L201C76" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItem.SaveAsAtom10(System.Xml.XmlWriter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L206C13-L207C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L206C13-L207C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItem.SaveAsRss20(System.Xml.XmlWriter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L211C13-L212C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L211C13-L212C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItem.CreateCategory", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L216C13-L216C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L216C13-L216C46" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItem.CreateLink", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L221C13-L221C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L221C13-L221C42" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItem.CreatePerson", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L226C13-L226C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L226C13-L226C44" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItem.TryParseAttribute(System.String,System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L231C13-L231C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L231C13-L231C26" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItem.TryParseContent(System.Xml.XmlReader,System.String,System.String,System.ServiceModel.Syndication.SyndicationContent@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L236C13-L237C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L236C13-L237C26" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItem.TryParseElement(System.Xml.XmlReader,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L242C13-L242C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L242C13-L242C26" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItem.WriteAttributeExtensions(System.Xml.XmlWriter,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L247C13-L248C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L247C13-L248C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItem.WriteElementExtensions(System.Xml.XmlWriter,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L252C13-L253C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L252C13-L253C10" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationItem.AttributeExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L78C76-L78C107" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L78C76-L78C107" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationItem.Authors", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L82C20-L82C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L82C20-L82C82" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationItem.BaseUri", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L85C30-L85C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L85C30-L85C34" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationItem.Categories", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L89C20-L89C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L89C20-L89C87" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationItem.Content", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L92C45-L92C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L92C45-L92C49" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationItem.Contributors", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L96C20-L96C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L96C20-L96C87" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationItem.Copyright", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L99C51-L99C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L99C51-L99C55" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationItem.ElementExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L101C75-L101C104" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L101C75-L101C104" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationItem.Id", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L103C28-L103C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L103C28-L103C32" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationItem.LastUpdatedTime", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L111C17-L116C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L111C17-L116C41" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationItem.Links", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L127C20-L127C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L127C20-L127C78" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationItem.PublishDate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L136C17-L141C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L136C17-L141C37" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationItem.SourceFeed", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L150C45-L150C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L150C45-L150C49" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationItem.Summary", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L152C49-L152C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L152C49-L152C53" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationItem.Title", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L154C47-L154C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs#L154C47-L154C51" } ], "DocsId": "T:System.ServiceModel.Syndication.SyndicationItem", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItem.cs" }, { "Members": [ { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItemFormatter.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L14C9-L17C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L14C9-L17C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItemFormatter.#ctor(System.ServiceModel.Syndication.SyndicationItem)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L19C9-L27C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L19C9-L27C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItemFormatter.CanRead(System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItemFormatter.ReadFrom(System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItemFormatter.ToString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L37C46-L37C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L37C46-L37C90" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItemFormatter.WriteTo(System.Xml.XmlWriter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItemFormatter.SetItem(System.ServiceModel.Syndication.SyndicationItem)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L43C13-L49C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L43C13-L49C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItemFormatter.CreateCategory(System.ServiceModel.Syndication.SyndicationItem)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L63C86-L63C131" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L63C86-L63C131" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItemFormatter.CreateLink(System.ServiceModel.Syndication.SyndicationItem)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L65C78-L65C119" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L65C78-L65C119" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItemFormatter.CreatePerson(System.ServiceModel.Syndication.SyndicationItem)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L67C82-L67C125" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L67C82-L67C125" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItemFormatter.LoadElementExtensions(System.Xml.XmlReader,System.ServiceModel.Syndication.SyndicationItem,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L71C13-L72C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L71C13-L72C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItemFormatter.LoadElementExtensions(System.Xml.XmlReader,System.ServiceModel.Syndication.SyndicationCategory,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L76C13-L77C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L76C13-L77C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItemFormatter.LoadElementExtensions(System.Xml.XmlReader,System.ServiceModel.Syndication.SyndicationLink,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L81C13-L82C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L81C13-L82C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItemFormatter.LoadElementExtensions(System.Xml.XmlReader,System.ServiceModel.Syndication.SyndicationPerson,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L86C13-L87C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L86C13-L87C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItemFormatter.TryParseAttribute(System.String,System.String,System.String,System.ServiceModel.Syndication.SyndicationItem,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L91C13-L91C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L91C13-L91C95" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItemFormatter.TryParseAttribute(System.String,System.String,System.String,System.ServiceModel.Syndication.SyndicationCategory,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L96C13-L96C99" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L96C13-L96C99" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItemFormatter.TryParseAttribute(System.String,System.String,System.String,System.ServiceModel.Syndication.SyndicationLink,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L101C13-L101C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L101C13-L101C95" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItemFormatter.TryParseAttribute(System.String,System.String,System.String,System.ServiceModel.Syndication.SyndicationPerson,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L106C13-L106C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L106C13-L106C97" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItemFormatter.TryParseContent(System.Xml.XmlReader,System.ServiceModel.Syndication.SyndicationItem,System.String,System.String,System.ServiceModel.Syndication.SyndicationContent@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L111C13-L111C110" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L111C13-L111C110" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItemFormatter.TryParseElement(System.Xml.XmlReader,System.ServiceModel.Syndication.SyndicationItem,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L116C13-L116C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L116C13-L116C84" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItemFormatter.TryParseElement(System.Xml.XmlReader,System.ServiceModel.Syndication.SyndicationCategory,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L121C13-L121C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L121C13-L121C88" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItemFormatter.TryParseElement(System.Xml.XmlReader,System.ServiceModel.Syndication.SyndicationLink,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L126C13-L126C84" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L126C13-L126C84" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItemFormatter.TryParseElement(System.Xml.XmlReader,System.ServiceModel.Syndication.SyndicationPerson,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L131C13-L131C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L131C13-L131C86" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItemFormatter.WriteAttributeExtensions(System.Xml.XmlWriter,System.ServiceModel.Syndication.SyndicationItem,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L136C13-L137C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L136C13-L137C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItemFormatter.WriteAttributeExtensions(System.Xml.XmlWriter,System.ServiceModel.Syndication.SyndicationCategory,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L141C13-L142C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L141C13-L142C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItemFormatter.WriteAttributeExtensions(System.Xml.XmlWriter,System.ServiceModel.Syndication.SyndicationLink,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L146C13-L147C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L146C13-L147C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItemFormatter.WriteAttributeExtensions(System.Xml.XmlWriter,System.ServiceModel.Syndication.SyndicationPerson,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L151C13-L152C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L151C13-L152C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItemFormatter.WriteElementExtensions(System.Xml.XmlWriter,System.ServiceModel.Syndication.SyndicationItem,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L156C13-L157C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L156C13-L157C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItemFormatter.CreateItemInstance", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItemFormatter.WriteElementExtensions(System.Xml.XmlWriter,System.ServiceModel.Syndication.SyndicationCategory,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L163C13-L164C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L163C13-L164C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItemFormatter.WriteElementExtensions(System.Xml.XmlWriter,System.ServiceModel.Syndication.SyndicationLink,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L168C13-L169C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L168C13-L169C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationItemFormatter.WriteElementExtensions(System.Xml.XmlWriter,System.ServiceModel.Syndication.SyndicationPerson,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L173C13-L174C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L173C13-L174C10" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationItemFormatter.Item", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L29C40-L29C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs#L29C40-L29C45" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationItemFormatter.Version", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs" } ], "DocsId": "T:System.ServiceModel.Syndication.SyndicationItemFormatter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationItemFormatter.cs" }, { "Members": [ { "DocsId": "M:System.ServiceModel.Syndication.SyndicationLink.#ctor(System.Uri)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs#L15C43-L17C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs#L15C43-L17C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationLink.#ctor(System.Uri,System.String,System.String,System.String,System.Int64)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs#L19C9-L32C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs#L19C9-L32C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationLink.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs#L34C36-L36C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs#L34C36-L36C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationLink.#ctor(System.ServiceModel.Syndication.SyndicationLink)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs#L38C9-L52C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs#L38C9-L52C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationLink.CreateAlternateLink(System.Uri)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs#L84C13-L84C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs#L84C13-L84C51" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationLink.CreateAlternateLink(System.Uri,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs#L89C13-L89C95" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs#L89C13-L89C95" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationLink.CreateMediaEnclosureLink(System.Uri,System.String,System.Int64)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs#L94C13-L94C99" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs#L94C13-L94C99" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationLink.CreateSelfLink(System.Uri)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs#L99C13-L99C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs#L99C13-L99C46" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationLink.CreateSelfLink(System.Uri,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs#L104C13-L104C90" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs#L104C13-L104C90" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationLink.Clone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs#L107C51-L107C76" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs#L107C51-L107C76" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationLink.GetAbsoluteUri", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs#L111C13-L128C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs#L111C13-L128C29" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationLink.TryParseAttribute(System.String,System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs#L134C13-L134C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs#L134C13-L134C26" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationLink.TryParseElement(System.Xml.XmlReader,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs#L139C13-L139C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs#L139C13-L139C26" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationLink.WriteAttributeExtensions(System.Xml.XmlWriter,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs#L144C13-L145C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs#L144C13-L145C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationLink.WriteElementExtensions(System.Xml.XmlWriter,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs#L149C13-L150C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs#L149C13-L150C10" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationLink.AttributeExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs#L54C76-L54C107" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs#L54C76-L54C107" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationLink.BaseUri", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs#L56C30-L56C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs#L56C30-L56C34" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationLink.ElementExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs#L58C75-L58C104" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs#L58C75-L58C104" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationLink.Length", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs#L62C20-L62C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs#L62C20-L62C27" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationLink.MediaType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs#L74C35-L74C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs#L74C35-L74C39" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationLink.RelationshipType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs#L76C42-L76C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs#L76C42-L76C46" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationLink.Title", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs#L78C31-L78C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs#L78C31-L78C35" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationLink.Uri", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs#L80C26-L80C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs#L80C26-L80C30" } ], "DocsId": "T:System.ServiceModel.Syndication.SyndicationLink", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationLink.cs" }, { "Members": [ { "DocsId": "M:System.ServiceModel.Syndication.SyndicationPerson.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationPerson.cs#L15C38-L17C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationPerson.cs#L15C38-L17C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationPerson.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationPerson.cs#L19C50-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationPerson.cs#L19C50-L21C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationPerson.#ctor(System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationPerson.cs#L23C9-L28C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationPerson.cs#L23C9-L28C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationPerson.#ctor(System.ServiceModel.Syndication.SyndicationPerson)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationPerson.cs#L30C9-L41C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationPerson.cs#L30C9-L41C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationPerson.Clone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationPerson.cs#L53C53-L53C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationPerson.cs#L53C53-L53C80" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationPerson.TryParseAttribute(System.String,System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationPerson.cs#L57C13-L57C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationPerson.cs#L57C13-L57C26" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationPerson.TryParseElement(System.Xml.XmlReader,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationPerson.cs#L62C13-L62C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationPerson.cs#L62C13-L62C26" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationPerson.WriteAttributeExtensions(System.Xml.XmlWriter,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationPerson.cs#L67C13-L68C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationPerson.cs#L67C13-L68C10" }, { "DocsId": "M:System.ServiceModel.Syndication.SyndicationPerson.WriteElementExtensions(System.Xml.XmlWriter,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationPerson.cs#L72C13-L73C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationPerson.cs#L72C13-L73C10" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationPerson.AttributeExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationPerson.cs#L43C76-L43C107" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationPerson.cs#L43C76-L43C107" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationPerson.ElementExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationPerson.cs#L45C75-L45C104" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationPerson.cs#L45C75-L45C104" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationPerson.Email", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationPerson.cs#L47C31-L47C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationPerson.cs#L47C31-L47C35" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationPerson.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationPerson.cs#L49C30-L49C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationPerson.cs#L49C30-L49C34" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationPerson.Uri", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationPerson.cs#L51C29-L51C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationPerson.cs#L51C29-L51C33" } ], "DocsId": "T:System.ServiceModel.Syndication.SyndicationPerson", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationPerson.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationPerson.cs" }, { "Members": [ { "DocsId": "M:System.ServiceModel.Syndication.SyndicationTextInput.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationTextInput.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationTextInput.cs" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationTextInput.Description", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationTextInput.cs#L8C37-L8C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationTextInput.cs#L8C37-L8C41" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationTextInput.Title", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationTextInput.cs#L9C31-L9C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationTextInput.cs#L9C31-L9C35" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationTextInput.Link", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationTextInput.cs#L10C39-L10C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationTextInput.cs#L10C39-L10C43" }, { "DocsId": "P:System.ServiceModel.Syndication.SyndicationTextInput.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationTextInput.cs#L11C30-L11C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationTextInput.cs#L11C30-L11C34" } ], "DocsId": "T:System.ServiceModel.Syndication.SyndicationTextInput", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationTextInput.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationTextInput.cs" }, { "Members": [ { "DocsId": "F:System.ServiceModel.Syndication.SyndicationVersions.Atom10", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationVersions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationVersions.cs" }, { "DocsId": "F:System.ServiceModel.Syndication.SyndicationVersions.Rss20", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationVersions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationVersions.cs" } ], "DocsId": "T:System.ServiceModel.Syndication.SyndicationVersions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationVersions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/SyndicationVersions.cs" }, { "Members": [ { "DocsId": "M:System.ServiceModel.Syndication.TextSyndicationContent.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/TextSyndicationContent.cs#L14C54-L16C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/TextSyndicationContent.cs#L14C54-L16C10" }, { "DocsId": "M:System.ServiceModel.Syndication.TextSyndicationContent.#ctor(System.String,System.ServiceModel.Syndication.TextSyndicationContentKind)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/TextSyndicationContent.cs#L18C9-L27C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/TextSyndicationContent.cs#L18C9-L27C10" }, { "DocsId": "M:System.ServiceModel.Syndication.TextSyndicationContent.#ctor(System.ServiceModel.Syndication.TextSyndicationContent)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/TextSyndicationContent.cs#L29C75-L34C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/TextSyndicationContent.cs#L29C75-L34C10" }, { "DocsId": "M:System.ServiceModel.Syndication.TextSyndicationContent.Clone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/TextSyndicationContent.cs#L46C55-L46C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/TextSyndicationContent.cs#L46C55-L46C87" }, { "DocsId": "M:System.ServiceModel.Syndication.TextSyndicationContent.WriteContentsTo(System.Xml.XmlWriter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/TextSyndicationContent.cs#L50C13-L59C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/TextSyndicationContent.cs#L50C13-L59C10" }, { "DocsId": "P:System.ServiceModel.Syndication.TextSyndicationContent.Text", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/TextSyndicationContent.cs#L36C30-L36C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/TextSyndicationContent.cs#L36C30-L36C34" }, { "DocsId": "P:System.ServiceModel.Syndication.TextSyndicationContent.Type", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/TextSyndicationContent.cs#L39C13-L43C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/TextSyndicationContent.cs#L39C13-L16707566C0" } ], "DocsId": "T:System.ServiceModel.Syndication.TextSyndicationContent", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/TextSyndicationContent.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/TextSyndicationContent.cs" }, { "Members": [ { "DocsId": "F:System.ServiceModel.Syndication.TextSyndicationContentKind.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/TextSyndicationContentKind.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/TextSyndicationContentKind.cs" }, { "DocsId": "F:System.ServiceModel.Syndication.TextSyndicationContentKind.Plaintext", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/TextSyndicationContentKind.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/TextSyndicationContentKind.cs" }, { "DocsId": "F:System.ServiceModel.Syndication.TextSyndicationContentKind.Html", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/TextSyndicationContentKind.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/TextSyndicationContentKind.cs" }, { "DocsId": "F:System.ServiceModel.Syndication.TextSyndicationContentKind.XHtml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/TextSyndicationContentKind.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/TextSyndicationContentKind.cs" } ], "DocsId": "T:System.ServiceModel.Syndication.TextSyndicationContentKind", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/TextSyndicationContentKind.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/TextSyndicationContentKind.cs" }, { "Members": [ { "DocsId": "M:System.ServiceModel.Syndication.UrlSyndicationContent.#ctor(System.Uri,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/UrlSyndicationContent.cs#L14C67-L23C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/UrlSyndicationContent.cs#L14C67-L23C10" }, { "DocsId": "M:System.ServiceModel.Syndication.UrlSyndicationContent.#ctor(System.ServiceModel.Syndication.UrlSyndicationContent)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/UrlSyndicationContent.cs#L25C73-L30C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/UrlSyndicationContent.cs#L25C73-L30C10" }, { "DocsId": "M:System.ServiceModel.Syndication.UrlSyndicationContent.Clone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/UrlSyndicationContent.cs#L36C55-L36C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/UrlSyndicationContent.cs#L36C55-L36C86" }, { "DocsId": "M:System.ServiceModel.Syndication.UrlSyndicationContent.WriteContentsTo(System.Xml.XmlWriter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/UrlSyndicationContent.cs#L40C13-L41C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/UrlSyndicationContent.cs#L40C13-L41C10" }, { "DocsId": "P:System.ServiceModel.Syndication.UrlSyndicationContent.Type", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/UrlSyndicationContent.cs#L32C40-L32C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/UrlSyndicationContent.cs#L32C40-L32C50" }, { "DocsId": "P:System.ServiceModel.Syndication.UrlSyndicationContent.Url", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/UrlSyndicationContent.cs#L34C26-L34C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/UrlSyndicationContent.cs#L34C26-L34C30" } ], "DocsId": "T:System.ServiceModel.Syndication.UrlSyndicationContent", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/UrlSyndicationContent.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/UrlSyndicationContent.cs" }, { "Members": [ { "DocsId": "M:System.ServiceModel.Syndication.Workspace.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Workspace.cs#L15C9-L17C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Workspace.cs#L15C9-L17C10" }, { "DocsId": "M:System.ServiceModel.Syndication.Workspace.#ctor(System.String,System.Collections.Generic.IEnumerable{System.ServiceModel.Syndication.ResourceCollectionInfo})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Workspace.cs#L19C91-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Workspace.cs#L19C91-L21C10" }, { "DocsId": "M:System.ServiceModel.Syndication.Workspace.#ctor(System.ServiceModel.Syndication.TextSyndicationContent,System.Collections.Generic.IEnumerable{System.ServiceModel.Syndication.ResourceCollectionInfo})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Workspace.cs#L23C9-L34C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Workspace.cs#L23C9-L34C10" }, { "DocsId": "M:System.ServiceModel.Syndication.Workspace.CreateResourceCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Workspace.cs#L51C13-L51C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Workspace.cs#L51C13-L51C49" }, { "DocsId": "M:System.ServiceModel.Syndication.Workspace.TryParseAttribute(System.String,System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Workspace.cs#L56C13-L56C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Workspace.cs#L56C13-L56C26" }, { "DocsId": "M:System.ServiceModel.Syndication.Workspace.TryParseElement(System.Xml.XmlReader,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Workspace.cs#L61C13-L61C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Workspace.cs#L61C13-L61C26" }, { "DocsId": "M:System.ServiceModel.Syndication.Workspace.WriteAttributeExtensions(System.Xml.XmlWriter,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Workspace.cs#L66C13-L67C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Workspace.cs#L66C13-L67C10" }, { "DocsId": "M:System.ServiceModel.Syndication.Workspace.WriteElementExtensions(System.Xml.XmlWriter,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Workspace.cs#L71C13-L72C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Workspace.cs#L71C13-L72C10" }, { "DocsId": "P:System.ServiceModel.Syndication.Workspace.AttributeExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Workspace.cs#L36C76-L36C107" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Workspace.cs#L36C76-L36C107" }, { "DocsId": "P:System.ServiceModel.Syndication.Workspace.BaseUri", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Workspace.cs#L38C30-L38C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Workspace.cs#L38C30-L38C34" }, { "DocsId": "P:System.ServiceModel.Syndication.Workspace.Collections", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Workspace.cs#L42C20-L42C91" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Workspace.cs#L42C20-L42C91" }, { "DocsId": "P:System.ServiceModel.Syndication.Workspace.ElementExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Workspace.cs#L45C75-L45C104" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Workspace.cs#L45C75-L45C104" }, { "DocsId": "P:System.ServiceModel.Syndication.Workspace.Title", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Workspace.cs#L47C47-L47C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Workspace.cs#L47C47-L47C51" } ], "DocsId": "T:System.ServiceModel.Syndication.Workspace", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Workspace.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/Workspace.cs" }, { "Members": [ { "DocsId": "M:System.ServiceModel.Syndication.XmlDateTimeData.#ctor(System.String,System.Xml.XmlQualifiedName)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/XmlDateTimeData.cs#L12C13-L14C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/XmlDateTimeData.cs#L12C13-L14C10" }, { "DocsId": "P:System.ServiceModel.Syndication.XmlDateTimeData.DateTimeString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/XmlDateTimeData.cs#L16C40-L16C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/XmlDateTimeData.cs#L16C40-L16C44" }, { "DocsId": "P:System.ServiceModel.Syndication.XmlDateTimeData.ElementQualifiedName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/XmlDateTimeData.cs#L18C56-L18C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/XmlDateTimeData.cs#L18C56-L18C60" } ], "DocsId": "T:System.ServiceModel.Syndication.XmlDateTimeData", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/XmlDateTimeData.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/XmlDateTimeData.cs" }, { "Members": [ { "DocsId": "M:System.ServiceModel.Syndication.XmlSyndicationContent.#ctor(System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/XmlSyndicationContent.cs#L20C9-L54C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/XmlSyndicationContent.cs#L20C9-L54C10" }, { "DocsId": "M:System.ServiceModel.Syndication.XmlSyndicationContent.#ctor(System.String,System.Object,System.Runtime.Serialization.XmlObjectSerializer)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/XmlSyndicationContent.cs#L56C9-L60C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/XmlSyndicationContent.cs#L56C9-L60C10" }, { "DocsId": "M:System.ServiceModel.Syndication.XmlSyndicationContent.#ctor(System.String,System.Object,System.Xml.Serialization.XmlSerializer)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/XmlSyndicationContent.cs#L62C9-L66C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/XmlSyndicationContent.cs#L62C9-L66C10" }, { "DocsId": "M:System.ServiceModel.Syndication.XmlSyndicationContent.#ctor(System.String,System.ServiceModel.Syndication.SyndicationElementExtension)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/XmlSyndicationContent.cs#L68C9-L77C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/XmlSyndicationContent.cs#L68C9-L77C10" }, { "DocsId": "M:System.ServiceModel.Syndication.XmlSyndicationContent.#ctor(System.ServiceModel.Syndication.XmlSyndicationContent)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/XmlSyndicationContent.cs#L79C73-L85C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/XmlSyndicationContent.cs#L79C73-L85C10" }, { "DocsId": "M:System.ServiceModel.Syndication.XmlSyndicationContent.Clone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/XmlSyndicationContent.cs#L91C55-L91C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/XmlSyndicationContent.cs#L91C55-L91C86" }, { "DocsId": "M:System.ServiceModel.Syndication.XmlSyndicationContent.GetReaderAtContent", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/XmlSyndicationContent.cs#L95C13-L96C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/XmlSyndicationContent.cs#L95C13-L96C48" }, { "DocsId": "M:System.ServiceModel.Syndication.XmlSyndicationContent.ReadContent``1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/XmlSyndicationContent.cs#L99C52-L99C103" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/XmlSyndicationContent.cs#L99C52-L99C103" }, { "DocsId": "M:System.ServiceModel.Syndication.XmlSyndicationContent.ReadContent``1(System.Runtime.Serialization.XmlObjectSerializer)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/XmlSyndicationContent.cs#L103C13-L118C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/XmlSyndicationContent.cs#L103C13-L118C10" }, { "DocsId": "M:System.ServiceModel.Syndication.XmlSyndicationContent.ReadContent``1(System.Xml.Serialization.XmlSerializer)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/XmlSyndicationContent.cs#L122C13-L137C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/XmlSyndicationContent.cs#L122C13-L137C10" }, { "DocsId": "M:System.ServiceModel.Syndication.XmlSyndicationContent.WriteContentsTo(System.Xml.XmlWriter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/XmlSyndicationContent.cs#L142C13-L167C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/XmlSyndicationContent.cs#L142C13-L167C10" }, { "DocsId": "P:System.ServiceModel.Syndication.XmlSyndicationContent.Extension", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/XmlSyndicationContent.cs#L87C56-L87C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/XmlSyndicationContent.cs#L87C56-L87C60" }, { "DocsId": "P:System.ServiceModel.Syndication.XmlSyndicationContent.Type", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/XmlSyndicationContent.cs#L89C40-L89C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/XmlSyndicationContent.cs#L89C40-L89C45" } ], "DocsId": "T:System.ServiceModel.Syndication.XmlSyndicationContent", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/XmlSyndicationContent.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/XmlSyndicationContent.cs" }, { "Members": [ { "DocsId": "M:System.ServiceModel.Syndication.XmlUriData.#ctor(System.String,System.UriKind,System.Xml.XmlQualifiedName)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/XmlUriData.cs#L12C13-L15C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/XmlUriData.cs#L12C13-L15C10" }, { "DocsId": "P:System.ServiceModel.Syndication.XmlUriData.ElementQualifiedName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/XmlUriData.cs#L17C56-L17C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/XmlUriData.cs#L17C56-L17C60" }, { "DocsId": "P:System.ServiceModel.Syndication.XmlUriData.UriKind", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/XmlUriData.cs#L19C34-L19C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/XmlUriData.cs#L19C34-L19C38" }, { "DocsId": "P:System.ServiceModel.Syndication.XmlUriData.UriString", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/XmlUriData.cs#L21C35-L21C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/XmlUriData.cs#L21C35-L21C39" } ], "DocsId": "T:System.ServiceModel.Syndication.XmlUriData", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/XmlUriData.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceModel.Syndication/src/System/ServiceModel/Syndication/XmlUriData.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/System.ServiceProcess.ServiceController.json b/xml/SourceLinkInformation/net-9.0/System.ServiceProcess.ServiceController.json index a136a15cbd7..6ba2d786ca9 100644 --- a/xml/SourceLinkInformation/net-9.0/System.ServiceProcess.ServiceController.json +++ b/xml/SourceLinkInformation/net-9.0/System.ServiceProcess.ServiceController.json @@ -1,519 +1,518 @@ { "Assembly": "System.ServiceProcess.ServiceController", - "GUID": "AF7BDED6B9E949489919CCD6680F351FFFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "CE5722B9E3A746059C4967EC5294CE68FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "F:System.ServiceProcess.PowerBroadcastStatus.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/PowerBroadcastStatus.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/PowerBroadcastStatus.cs" }, { "DocsId": "F:System.ServiceProcess.PowerBroadcastStatus.BatteryLow", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/PowerBroadcastStatus.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/PowerBroadcastStatus.cs" }, { "DocsId": "F:System.ServiceProcess.PowerBroadcastStatus.OemEvent", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/PowerBroadcastStatus.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/PowerBroadcastStatus.cs" }, { "DocsId": "F:System.ServiceProcess.PowerBroadcastStatus.PowerStatusChange", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/PowerBroadcastStatus.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/PowerBroadcastStatus.cs" }, { "DocsId": "F:System.ServiceProcess.PowerBroadcastStatus.QuerySuspend", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/PowerBroadcastStatus.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/PowerBroadcastStatus.cs" }, { "DocsId": "F:System.ServiceProcess.PowerBroadcastStatus.QuerySuspendFailed", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/PowerBroadcastStatus.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/PowerBroadcastStatus.cs" }, { "DocsId": "F:System.ServiceProcess.PowerBroadcastStatus.ResumeAutomatic", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/PowerBroadcastStatus.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/PowerBroadcastStatus.cs" }, { "DocsId": "F:System.ServiceProcess.PowerBroadcastStatus.ResumeCritical", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/PowerBroadcastStatus.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/PowerBroadcastStatus.cs" }, { "DocsId": "F:System.ServiceProcess.PowerBroadcastStatus.ResumeSuspend", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/PowerBroadcastStatus.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/PowerBroadcastStatus.cs" }, { "DocsId": "F:System.ServiceProcess.PowerBroadcastStatus.Suspend", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/PowerBroadcastStatus.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/PowerBroadcastStatus.cs" } ], "DocsId": "T:System.ServiceProcess.PowerBroadcastStatus", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/PowerBroadcastStatus.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/PowerBroadcastStatus.cs" }, { "Members": [ { "DocsId": "M:System.ServiceProcess.ServiceBase.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L34C9-L50C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L34C9-L50C10" }, { "DocsId": "M:System.ServiceProcess.ServiceBase.RequestAdditionalTime(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L59C9-L74C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L59C9-L74C10" }, { "DocsId": "M:System.ServiceProcess.ServiceBase.RequestAdditionalTime(System.TimeSpan)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L83C61-L83C107" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L83C61-L83C107" }, { "DocsId": "M:System.ServiceProcess.ServiceBase.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L304C13-L308C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L304C13-L308C10" }, { "DocsId": "M:System.ServiceProcess.ServiceBase.OnContinue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L320C9-L320C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L320C9-L320C10" }, { "DocsId": "M:System.ServiceProcess.ServiceBase.OnPause", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L331C9-L331C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L331C9-L331C10" }, { "DocsId": "M:System.ServiceProcess.ServiceBase.OnPowerEvent(System.ServiceProcess.PowerBroadcastStatus)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L341C13-L341C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L341C13-L341C25" }, { "DocsId": "M:System.ServiceProcess.ServiceBase.OnSessionChange(System.ServiceProcess.SessionChangeDescription)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L350C9-L350C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L350C9-L350C10" }, { "DocsId": "M:System.ServiceProcess.ServiceBase.OnShutdown", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L361C9-L361C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L361C9-L361C10" }, { "DocsId": "M:System.ServiceProcess.ServiceBase.OnStart(System.String[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L380C9-L380C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L380C9-L380C10" }, { "DocsId": "M:System.ServiceProcess.ServiceBase.OnStop", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L391C9-L391C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L391C9-L391C10" }, { "DocsId": "M:System.ServiceProcess.ServiceBase.OnCustomCommand(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L572C9-L572C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L572C9-L572C10" }, { "DocsId": "M:System.ServiceProcess.ServiceBase.Run(System.ServiceProcess.ServiceBase[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L581C13-L643C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L581C13-L643C10" }, { "DocsId": "M:System.ServiceProcess.ServiceBase.Run(System.ServiceProcess.ServiceBase)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L653C13-L657C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L653C13-L657C10" }, { "DocsId": "M:System.ServiceProcess.ServiceBase.Stop", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L661C13-L662C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L661C13-L662C10" }, { "DocsId": "M:System.ServiceProcess.ServiceBase.ServiceMainCallback(System.Int32,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L854C9-L947C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L854C9-L947C10" }, { "DocsId": "F:System.ServiceProcess.ServiceBase.MaxNameLength", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs" }, { "DocsId": "P:System.ServiceProcess.ServiceBase.AutoLog", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L100C31-L100C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L100C31-L100C35" }, { "DocsId": "P:System.ServiceProcess.ServiceBase.ExitCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L110C17-L110C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L110C17-L110C46" }, { "DocsId": "P:System.ServiceProcess.ServiceBase.CanHandlePowerEvent", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L127C17-L127C83" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L127C17-L127C83" }, { "DocsId": "P:System.ServiceProcess.ServiceBase.CanHandleSessionChangeEvent", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L153C17-L153C86" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L153C17-L153C86" }, { "DocsId": "P:System.ServiceProcess.ServiceBase.CanPauseAndContinue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L179C17-L179C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L179C17-L179C87" }, { "DocsId": "P:System.ServiceProcess.ServiceBase.CanShutdown", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L205C17-L205C81" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L205C17-L205C81" }, { "DocsId": "P:System.ServiceProcess.ServiceBase.CanStop", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L231C17-L231C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L231C17-L231C77" }, { "DocsId": "P:System.ServiceProcess.ServiceBase.EventLog", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L254C13-L257C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L254C13-L257C14" }, { "DocsId": "P:System.ServiceProcess.ServiceBase.ServiceHandle", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L264C17-L264C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L264C17-L264C38" }, { "DocsId": "P:System.ServiceProcess.ServiceBase.ServiceName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L275C17-L275C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs#L275C17-L275C37" } ], "DocsId": "T:System.ServiceProcess.ServiceBase", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceBase.cs" }, { "Members": [ { "DocsId": "M:System.ServiceProcess.ServiceController.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L42C9-L46C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L42C9-L46C10" }, { "DocsId": "M:System.ServiceProcess.ServiceController.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L53C15-L55C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L53C15-L55C10" }, { "DocsId": "M:System.ServiceProcess.ServiceController.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L63C9-L80C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L63C9-L80C10" }, { "DocsId": "M:System.ServiceProcess.ServiceController.Close", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L474C13-L483C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L474C13-L483C10" }, { "DocsId": "M:System.ServiceProcess.ServiceController.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L490C13-L493C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L490C13-L493C10" }, { "DocsId": "M:System.ServiceProcess.ServiceController.GetDevices", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L667C13-L667C51" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L667C13-L667C51" }, { "DocsId": "M:System.ServiceProcess.ServiceController.GetDevices(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L677C13-L677C103" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L677C13-L677C103" }, { "DocsId": "M:System.ServiceProcess.ServiceController.GetServices", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L707C13-L707C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L707C13-L707C52" }, { "DocsId": "M:System.ServiceProcess.ServiceController.GetServices(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L717C13-L717C102" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L717C13-L717C102" }, { "DocsId": "M:System.ServiceProcess.ServiceController.Pause", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L809C13-L818C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L809C13-L818C10" }, { "DocsId": "M:System.ServiceProcess.ServiceController.Continue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L825C13-L833C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L825C13-L833C10" }, { "DocsId": "M:System.ServiceProcess.ServiceController.ExecuteCommand(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L841C13-L849C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L841C13-L849C10" }, { "DocsId": "M:System.ServiceProcess.ServiceController.Refresh", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L856C13-L860C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L856C13-L860C10" }, { "DocsId": "M:System.ServiceProcess.ServiceController.Start", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L867C13-L868C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L867C13-L868C10" }, { "DocsId": "M:System.ServiceProcess.ServiceController.Start(System.String[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L875C13-L915C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L875C13-L915C10" }, { "DocsId": "M:System.ServiceProcess.ServiceController.Stop", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L924C13-L925C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L924C13-L925C10" }, { "DocsId": "M:System.ServiceProcess.ServiceController.Stop(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L944C13-L968C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L944C13-L968C10" }, { "DocsId": "M:System.ServiceProcess.ServiceController.WaitForStatus(System.ServiceProcess.ServiceControllerStatus)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L976C13-L977C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L976C13-L977C10" }, { "DocsId": "M:System.ServiceProcess.ServiceController.WaitForStatus(System.ServiceProcess.ServiceControllerStatus,System.TimeSpan)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L986C13-L999C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L986C13-L999C10" }, { "DocsId": "P:System.ServiceProcess.ServiceController.CanPauseAndContinue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L122C17-L123C104" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L122C17-L123C104" }, { "DocsId": "P:System.ServiceProcess.ServiceController.CanShutdown", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L134C17-L135C98" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L134C17-L135C98" }, { "DocsId": "P:System.ServiceProcess.ServiceController.CanStop", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L146C17-L147C94" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L146C17-L147C94" }, { "DocsId": "P:System.ServiceProcess.ServiceController.DisplayName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L158C17-L160C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L158C17-L160C37" }, { "DocsId": "P:System.ServiceProcess.ServiceController.DependentServices", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L187C17-L234C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L187C17-L234C14" }, { "DocsId": "P:System.ServiceProcess.ServiceController.MachineName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L244C17-L244C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L244C17-L244C37" }, { "DocsId": "P:System.ServiceProcess.ServiceController.ServiceName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L271C17-L273C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L271C17-L273C30" }, { "DocsId": "P:System.ServiceProcess.ServiceController.ServicesDependedOn", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L304C17-L381C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L304C17-L381C14" }, { "DocsId": "P:System.ServiceProcess.ServiceController.StartType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L388C17-L418C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L388C17-L418C14" }, { "DocsId": "P:System.ServiceProcess.ServiceController.ServiceHandle", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L425C17-L425C93" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L425C17-L425C93" }, { "DocsId": "P:System.ServiceProcess.ServiceController.Status", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L439C17-L440C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L439C17-L440C32" }, { "DocsId": "P:System.ServiceProcess.ServiceController.ServiceType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L454C17-L455C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs#L454C17-L455C43" } ], "DocsId": "T:System.ServiceProcess.ServiceController", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceController.cs" }, { "Members": [ { "DocsId": "F:System.ServiceProcess.ServiceControllerStatus.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceControllerStatus.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceControllerStatus.cs" }, { "DocsId": "F:System.ServiceProcess.ServiceControllerStatus.ContinuePending", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceControllerStatus.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceControllerStatus.cs" }, { "DocsId": "F:System.ServiceProcess.ServiceControllerStatus.Paused", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceControllerStatus.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceControllerStatus.cs" }, { "DocsId": "F:System.ServiceProcess.ServiceControllerStatus.PausePending", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceControllerStatus.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceControllerStatus.cs" }, { "DocsId": "F:System.ServiceProcess.ServiceControllerStatus.Running", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceControllerStatus.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceControllerStatus.cs" }, { "DocsId": "F:System.ServiceProcess.ServiceControllerStatus.StartPending", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceControllerStatus.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceControllerStatus.cs" }, { "DocsId": "F:System.ServiceProcess.ServiceControllerStatus.Stopped", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceControllerStatus.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceControllerStatus.cs" }, { "DocsId": "F:System.ServiceProcess.ServiceControllerStatus.StopPending", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceControllerStatus.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceControllerStatus.cs" } ], "DocsId": "T:System.ServiceProcess.ServiceControllerStatus", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceControllerStatus.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceControllerStatus.cs" }, { "Members": [ { "DocsId": "F:System.ServiceProcess.ServiceStartMode.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceStartMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceStartMode.cs" }, { "DocsId": "F:System.ServiceProcess.ServiceStartMode.Manual", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceStartMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceStartMode.cs" }, { "DocsId": "F:System.ServiceProcess.ServiceStartMode.Automatic", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceStartMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceStartMode.cs" }, { "DocsId": "F:System.ServiceProcess.ServiceStartMode.Disabled", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceStartMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceStartMode.cs" }, { "DocsId": "F:System.ServiceProcess.ServiceStartMode.Boot", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceStartMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceStartMode.cs" }, { "DocsId": "F:System.ServiceProcess.ServiceStartMode.System", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceStartMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceStartMode.cs" } ], "DocsId": "T:System.ServiceProcess.ServiceStartMode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceStartMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceStartMode.cs" }, { "Members": [ { "DocsId": "M:System.ServiceProcess.ServiceProcessDescriptionAttribute.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceProcessDescriptionAttribute.cs#L21C73-L23C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceProcessDescriptionAttribute.cs#L21C73-L23C10" }, { "DocsId": "P:System.ServiceProcess.ServiceProcessDescriptionAttribute.Description", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceProcessDescriptionAttribute.cs#L32C17-L37C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceProcessDescriptionAttribute.cs#L32C17-L37C41" } ], "DocsId": "T:System.ServiceProcess.ServiceProcessDescriptionAttribute", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceProcessDescriptionAttribute.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceProcessDescriptionAttribute.cs" }, { "Members": [ { "DocsId": "F:System.ServiceProcess.ServiceType.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceType.cs" }, { "DocsId": "F:System.ServiceProcess.ServiceType.Adapter", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceType.cs" }, { "DocsId": "F:System.ServiceProcess.ServiceType.FileSystemDriver", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceType.cs" }, { "DocsId": "F:System.ServiceProcess.ServiceType.InteractiveProcess", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceType.cs" }, { "DocsId": "F:System.ServiceProcess.ServiceType.KernelDriver", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceType.cs" }, { "DocsId": "F:System.ServiceProcess.ServiceType.RecognizerDriver", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceType.cs" }, { "DocsId": "F:System.ServiceProcess.ServiceType.Win32OwnProcess", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceType.cs" }, { "DocsId": "F:System.ServiceProcess.ServiceType.Win32ShareProcess", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceType.cs" } ], "DocsId": "T:System.ServiceProcess.ServiceType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceType.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/ServiceType.cs" }, { "Members": [ { "DocsId": "M:System.ServiceProcess.SessionChangeDescription.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/SessionChangeDescription.cs#L24C13-L24C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/SessionChangeDescription.cs#L24C13-L24C36" }, { "DocsId": "M:System.ServiceProcess.SessionChangeDescription.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/SessionChangeDescription.cs#L27C13-L27C67" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/SessionChangeDescription.cs#L27C13-L27C67" }, { "DocsId": "M:System.ServiceProcess.SessionChangeDescription.Equals(System.ServiceProcess.SessionChangeDescription)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/SessionChangeDescription.cs#L30C13-L31C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/SessionChangeDescription.cs#L30C13-L31C55" }, { "DocsId": "M:System.ServiceProcess.SessionChangeDescription.op_Equality(System.ServiceProcess.SessionChangeDescription,System.ServiceProcess.SessionChangeDescription)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/SessionChangeDescription.cs#L34C13-L34C24" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/SessionChangeDescription.cs#L34C13-L34C24" }, { "DocsId": "M:System.ServiceProcess.SessionChangeDescription.op_Inequality(System.ServiceProcess.SessionChangeDescription,System.ServiceProcess.SessionChangeDescription)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/SessionChangeDescription.cs#L37C13-L37C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/SessionChangeDescription.cs#L37C13-L37C25" }, { "DocsId": "P:System.ServiceProcess.SessionChangeDescription.Reason", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/SessionChangeDescription.cs#L19C45-L19C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/SessionChangeDescription.cs#L19C45-L19C49" }, { "DocsId": "P:System.ServiceProcess.SessionChangeDescription.SessionId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/SessionChangeDescription.cs#L21C32-L21C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/SessionChangeDescription.cs#L21C32-L21C36" } ], "DocsId": "T:System.ServiceProcess.SessionChangeDescription", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/SessionChangeDescription.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/SessionChangeDescription.cs" }, { "Members": [ { "DocsId": "F:System.ServiceProcess.SessionChangeReason.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/SessionChangeReason.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/SessionChangeReason.cs" }, { "DocsId": "F:System.ServiceProcess.SessionChangeReason.ConsoleConnect", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/SessionChangeReason.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/SessionChangeReason.cs" }, { "DocsId": "F:System.ServiceProcess.SessionChangeReason.ConsoleDisconnect", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/SessionChangeReason.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/SessionChangeReason.cs" }, { "DocsId": "F:System.ServiceProcess.SessionChangeReason.RemoteConnect", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/SessionChangeReason.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/SessionChangeReason.cs" }, { "DocsId": "F:System.ServiceProcess.SessionChangeReason.RemoteDisconnect", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/SessionChangeReason.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/SessionChangeReason.cs" }, { "DocsId": "F:System.ServiceProcess.SessionChangeReason.SessionLogon", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/SessionChangeReason.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/SessionChangeReason.cs" }, { "DocsId": "F:System.ServiceProcess.SessionChangeReason.SessionLogoff", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/SessionChangeReason.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/SessionChangeReason.cs" }, { "DocsId": "F:System.ServiceProcess.SessionChangeReason.SessionLock", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/SessionChangeReason.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/SessionChangeReason.cs" }, { "DocsId": "F:System.ServiceProcess.SessionChangeReason.SessionUnlock", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/SessionChangeReason.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/SessionChangeReason.cs" }, { "DocsId": "F:System.ServiceProcess.SessionChangeReason.SessionRemoteControl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/SessionChangeReason.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/SessionChangeReason.cs" } ], "DocsId": "T:System.ServiceProcess.SessionChangeReason", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/SessionChangeReason.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/SessionChangeReason.cs" }, { "Members": [ { "DocsId": "M:System.ServiceProcess.TimeoutException.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/TimeoutException.cs#L15C9-L18C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/TimeoutException.cs#L15C9-L18C10" }, { "DocsId": "M:System.ServiceProcess.TimeoutException.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/TimeoutException.cs#L20C52-L23C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/TimeoutException.cs#L20C52-L23C10" }, { "DocsId": "M:System.ServiceProcess.TimeoutException.#ctor(System.String,System.Exception)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/TimeoutException.cs#L26C15-L29C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/TimeoutException.cs#L26C15-L29C10" }, { "DocsId": "M:System.ServiceProcess.TimeoutException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/TimeoutException.cs#L36C15-L38C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/TimeoutException.cs#L36C15-L38C10" } ], "DocsId": "T:System.ServiceProcess.TimeoutException", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/TimeoutException.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.ServiceProcess.ServiceController/src/System/ServiceProcess/TimeoutException.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/System.Speech.json b/xml/SourceLinkInformation/net-9.0/System.Speech.json index 8f629816791..980d21c7db7 100644 --- a/xml/SourceLinkInformation/net-9.0/System.Speech.json +++ b/xml/SourceLinkInformation/net-9.0/System.Speech.json @@ -1,3730 +1,3729 @@ { "Assembly": "System.Speech", - "GUID": "0E4C817307C2457BA3F1276DC253D315FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "4AB5E496407A41ABB2DED1E04DAAA08BFFFFFFFF", "Types": [ { "Members": [ { "DocsId": "P:System.Speech.Synthesis.BookmarkReachedEventArgs.Bookmark", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/BookmarkEventArgs.cs#L23C17-L23C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/BookmarkEventArgs.cs#L23C17-L23C34" }, { "DocsId": "P:System.Speech.Synthesis.BookmarkReachedEventArgs.AudioPosition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/BookmarkEventArgs.cs#L30C17-L30C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/BookmarkEventArgs.cs#L30C17-L30C39" } ], "DocsId": "T:System.Speech.Synthesis.BookmarkReachedEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/BookmarkEventArgs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/BookmarkEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Speech.Synthesis.FilePrompt.#ctor(System.String,System.Speech.Synthesis.SynthesisMediaType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/FilePrompt.cs#L13C15-L15C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/FilePrompt.cs#L13C15-L15C10" }, { "DocsId": "M:System.Speech.Synthesis.FilePrompt.#ctor(System.Uri,System.Speech.Synthesis.SynthesisMediaType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/FilePrompt.cs#L17C15-L19C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/FilePrompt.cs#L17C15-L19C10" } ], "DocsId": "T:System.Speech.Synthesis.FilePrompt", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/FilePrompt.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/FilePrompt.cs" }, { "Members": [ { "DocsId": "M:System.Speech.Synthesis.InstalledVoice.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/InstalledVoice.cs#L51C13-L57C190" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/InstalledVoice.cs#L51C13-L57C190" }, { "DocsId": "M:System.Speech.Synthesis.InstalledVoice.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/InstalledVoice.cs#L61C13-L61C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/InstalledVoice.cs#L61C13-L61C49" }, { "DocsId": "P:System.Speech.Synthesis.InstalledVoice.VoiceInfo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/InstalledVoice.cs#L31C17-L31C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/InstalledVoice.cs#L31C17-L31C31" }, { "DocsId": "P:System.Speech.Synthesis.InstalledVoice.Enabled", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/InstalledVoice.cs#L38C17-L38C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/InstalledVoice.cs#L38C17-L38C33" } ], "DocsId": "T:System.Speech.Synthesis.InstalledVoice", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/InstalledVoice.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/InstalledVoice.cs" }, { "Members": [ { "DocsId": "P:System.Speech.Synthesis.PhonemeReachedEventArgs.Phoneme", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PhonemeEventArgs.cs#L23C19-L23C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PhonemeEventArgs.cs#L23C19-L23C42" }, { "DocsId": "P:System.Speech.Synthesis.PhonemeReachedEventArgs.AudioPosition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PhonemeEventArgs.cs#L27C19-L27C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PhonemeEventArgs.cs#L27C19-L27C41" }, { "DocsId": "P:System.Speech.Synthesis.PhonemeReachedEventArgs.Duration", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PhonemeEventArgs.cs#L31C19-L31C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PhonemeEventArgs.cs#L31C19-L31C36" }, { "DocsId": "P:System.Speech.Synthesis.PhonemeReachedEventArgs.Emphasis", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PhonemeEventArgs.cs#L35C19-L35C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PhonemeEventArgs.cs#L35C19-L35C36" }, { "DocsId": "P:System.Speech.Synthesis.PhonemeReachedEventArgs.NextPhoneme", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PhonemeEventArgs.cs#L39C19-L39C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PhonemeEventArgs.cs#L39C19-L39C39" } ], "DocsId": "T:System.Speech.Synthesis.PhonemeReachedEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PhonemeEventArgs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PhonemeEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Speech.Synthesis.Prompt.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/Prompt.cs#L15C15-L17C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/Prompt.cs#L15C15-L17C10" }, { "DocsId": "M:System.Speech.Synthesis.Prompt.#ctor(System.Speech.Synthesis.PromptBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/Prompt.cs#L18C9-L24C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/Prompt.cs#L18C9-L24C10" }, { "DocsId": "M:System.Speech.Synthesis.Prompt.#ctor(System.String,System.Speech.Synthesis.SynthesisTextFormat)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/Prompt.cs#L27C9-L39C106" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/Prompt.cs#L27C9-L39C106" }, { "DocsId": "P:System.Speech.Synthesis.Prompt.IsCompleted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/Prompt.cs#L87C17-L87C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/Prompt.cs#L87C17-L87C35" } ], "DocsId": "T:System.Speech.Synthesis.Prompt", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/Prompt.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/Prompt.cs" }, { "Members": [ { "DocsId": "F:System.Speech.Synthesis.SynthesisMediaType.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/Prompt.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/Prompt.cs" }, { "DocsId": "F:System.Speech.Synthesis.SynthesisMediaType.Text", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/Prompt.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/Prompt.cs" }, { "DocsId": "F:System.Speech.Synthesis.SynthesisMediaType.Ssml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/Prompt.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/Prompt.cs" }, { "DocsId": "F:System.Speech.Synthesis.SynthesisMediaType.WaveAudio", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/Prompt.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/Prompt.cs" } ], "DocsId": "T:System.Speech.Synthesis.SynthesisMediaType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/Prompt.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/Prompt.cs" }, { "Members": [ { "DocsId": "F:System.Speech.Synthesis.SynthesisTextFormat.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/Prompt.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/Prompt.cs" }, { "DocsId": "F:System.Speech.Synthesis.SynthesisTextFormat.Text", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/Prompt.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/Prompt.cs" }, { "DocsId": "F:System.Speech.Synthesis.SynthesisTextFormat.Ssml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/Prompt.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/Prompt.cs" } ], "DocsId": "T:System.Speech.Synthesis.SynthesisTextFormat", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/Prompt.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/Prompt.cs" }, { "Members": [ { "DocsId": "M:System.Speech.Synthesis.PromptBuilder.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L20C15-L22C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L20C15-L22C10" }, { "DocsId": "M:System.Speech.Synthesis.PromptBuilder.#ctor(System.Globalization.CultureInfo)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L985C9-L35C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L985C9-L35C10" }, { "DocsId": "M:System.Speech.Synthesis.PromptBuilder.ClearContent", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L48C13-L50C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L48C13-L50C10" }, { "DocsId": "M:System.Speech.Synthesis.PromptBuilder.AppendText(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L57C13-L63C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L57C13-L63C10" }, { "DocsId": "M:System.Speech.Synthesis.PromptBuilder.AppendText(System.String,System.Speech.Synthesis.PromptRate)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L66C13-L101C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L66C13-L101C10" }, { "DocsId": "M:System.Speech.Synthesis.PromptBuilder.AppendText(System.String,System.Speech.Synthesis.PromptVolume)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L104C13-L141C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L104C13-L141C10" }, { "DocsId": "M:System.Speech.Synthesis.PromptBuilder.AppendText(System.String,System.Speech.Synthesis.PromptEmphasis)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L144C13-L162C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L144C13-L162C10" }, { "DocsId": "M:System.Speech.Synthesis.PromptBuilder.StartStyle(System.Speech.Synthesis.PromptStyle)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L165C13-L249C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L165C13-L249C10" }, { "DocsId": "M:System.Speech.Synthesis.PromptBuilder.EndStyle", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L252C13-L268C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L252C13-L268C10" }, { "DocsId": "M:System.Speech.Synthesis.PromptBuilder.StartVoice(System.Speech.Synthesis.VoiceInfo)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L271C13-L318C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L271C13-L318C10" }, { "DocsId": "M:System.Speech.Synthesis.PromptBuilder.StartVoice(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L321C13-L324C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L321C13-L324C10" }, { "DocsId": "M:System.Speech.Synthesis.PromptBuilder.StartVoice(System.Speech.Synthesis.VoiceGender)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L327C13-L328C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L327C13-L328C10" }, { "DocsId": "M:System.Speech.Synthesis.PromptBuilder.StartVoice(System.Speech.Synthesis.VoiceGender,System.Speech.Synthesis.VoiceAge)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L331C13-L332C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L331C13-L332C10" }, { "DocsId": "M:System.Speech.Synthesis.PromptBuilder.StartVoice(System.Speech.Synthesis.VoiceGender,System.Speech.Synthesis.VoiceAge,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L335C13-L336C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L335C13-L336C10" }, { "DocsId": "M:System.Speech.Synthesis.PromptBuilder.StartVoice(System.Globalization.CultureInfo)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L339C13-L340C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L339C13-L340C10" }, { "DocsId": "M:System.Speech.Synthesis.PromptBuilder.EndVoice", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L343C13-L349C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L343C13-L349C10" }, { "DocsId": "M:System.Speech.Synthesis.PromptBuilder.StartParagraph", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L354C13-L355C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L354C13-L355C10" }, { "DocsId": "M:System.Speech.Synthesis.PromptBuilder.StartParagraph(System.Globalization.CultureInfo)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L359C13-L379C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L359C13-L379C10" }, { "DocsId": "M:System.Speech.Synthesis.PromptBuilder.EndParagraph", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L382C13-L387C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L382C13-L387C10" }, { "DocsId": "M:System.Speech.Synthesis.PromptBuilder.StartSentence", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L390C13-L391C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L390C13-L391C10" }, { "DocsId": "M:System.Speech.Synthesis.PromptBuilder.StartSentence(System.Globalization.CultureInfo)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L395C13-L416C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L395C13-L416C10" }, { "DocsId": "M:System.Speech.Synthesis.PromptBuilder.EndSentence", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L419C13-L424C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L419C13-L424C10" }, { "DocsId": "M:System.Speech.Synthesis.PromptBuilder.AppendTextWithHint(System.String,System.Speech.Synthesis.SayAs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L427C13-L543C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L427C13-L543C10" }, { "DocsId": "M:System.Speech.Synthesis.PromptBuilder.AppendTextWithHint(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L546C13-L557C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L546C13-L557C10" }, { "DocsId": "M:System.Speech.Synthesis.PromptBuilder.AppendTextWithPronunciation(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L560C13-L574C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L560C13-L574C10" }, { "DocsId": "M:System.Speech.Synthesis.PromptBuilder.AppendTextWithAlias(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L577C13-L588C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L577C13-L588C10" }, { "DocsId": "M:System.Speech.Synthesis.PromptBuilder.AppendBreak", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L592C13-L595C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L592C13-L595C10" }, { "DocsId": "M:System.Speech.Synthesis.PromptBuilder.AppendBreak(System.Speech.Synthesis.PromptBreak)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L599C13-L638C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L599C13-L638C10" }, { "DocsId": "M:System.Speech.Synthesis.PromptBuilder.AppendBreak(System.TimeSpan)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L642C13-L654C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L642C13-L654C10" }, { "DocsId": "M:System.Speech.Synthesis.PromptBuilder.AppendAudio(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L659C13-L675C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L659C13-L675C10" }, { "DocsId": "M:System.Speech.Synthesis.PromptBuilder.AppendAudio(System.Uri)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L678C13-L688C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L678C13-L688C10" }, { "DocsId": "M:System.Speech.Synthesis.PromptBuilder.AppendAudio(System.Uri,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L691C13-L702C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L691C13-L702C10" }, { "DocsId": "M:System.Speech.Synthesis.PromptBuilder.AppendBookmark(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L707C13-L717C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L707C13-L717C10" }, { "DocsId": "M:System.Speech.Synthesis.PromptBuilder.AppendPromptBuilder(System.Speech.Synthesis.PromptBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L720C13-L727C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L720C13-L727C10" }, { "DocsId": "M:System.Speech.Synthesis.PromptBuilder.AppendSsml(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L730C13-L733C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L730C13-L733C10" }, { "DocsId": "M:System.Speech.Synthesis.PromptBuilder.AppendSsml(System.Uri)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L736C13-L751C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L736C13-L751C10" }, { "DocsId": "M:System.Speech.Synthesis.PromptBuilder.AppendSsml(System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L754C13-L757C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L754C13-L757C10" }, { "DocsId": "M:System.Speech.Synthesis.PromptBuilder.AppendSsmlMarkup(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L763C13-L766C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L763C13-L766C10" }, { "DocsId": "M:System.Speech.Synthesis.PromptBuilder.ToXml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L770C20-L815C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L770C20-L815C10" }, { "DocsId": "P:System.Speech.Synthesis.PromptBuilder.IsEmpty", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L824C17-L824C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L824C17-L824C45" }, { "DocsId": "P:System.Speech.Synthesis.PromptBuilder.Culture", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L831C17-L831C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs#L831C17-L831C33" } ], "DocsId": "T:System.Speech.Synthesis.PromptBuilder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptBuilder.cs" }, { "Members": [ { "DocsId": "P:System.Speech.Synthesis.PromptEventArgs.Prompt", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptEventArgs.cs#L25C17-L25C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptEventArgs.cs#L25C17-L25C32" } ], "DocsId": "T:System.Speech.Synthesis.PromptEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptEventArgs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptEventArgs.cs" }, { "Members": [], "DocsId": "T:System.Speech.Synthesis.SpeakStartedEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptEventArgs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Speech.Synthesis.PromptStyle.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs#L10C9-L12C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs#L10C9-L12C10" }, { "DocsId": "M:System.Speech.Synthesis.PromptStyle.#ctor(System.Speech.Synthesis.PromptRate)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs#L13C9-L16C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs#L13C9-L16C10" }, { "DocsId": "M:System.Speech.Synthesis.PromptStyle.#ctor(System.Speech.Synthesis.PromptVolume)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs#L17C9-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs#L17C9-L20C10" }, { "DocsId": "M:System.Speech.Synthesis.PromptStyle.#ctor(System.Speech.Synthesis.PromptEmphasis)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs#L21C9-L24C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs#L21C9-L24C10" }, { "DocsId": "P:System.Speech.Synthesis.PromptStyle.Rate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs#L35C17-L35C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs#L35C17-L35C30" }, { "DocsId": "P:System.Speech.Synthesis.PromptStyle.Volume", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs#L46C17-L46C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs#L46C17-L46C32" }, { "DocsId": "P:System.Speech.Synthesis.PromptStyle.Emphasis", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs#L57C17-L57C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs#L57C17-L57C34" } ], "DocsId": "T:System.Speech.Synthesis.PromptStyle", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "Members": [ { "DocsId": "F:System.Speech.Synthesis.SayAs.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.SayAs.SpellOut", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.SayAs.NumberOrdinal", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.SayAs.NumberCardinal", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.SayAs.Date", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.SayAs.DayMonthYear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.SayAs.MonthDayYear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.SayAs.YearMonthDay", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.SayAs.YearMonth", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.SayAs.MonthYear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.SayAs.MonthDay", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.SayAs.DayMonth", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.SayAs.Year", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.SayAs.Month", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.SayAs.Day", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.SayAs.Time", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.SayAs.Time24", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.SayAs.Time12", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.SayAs.Telephone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.SayAs.Text", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" } ], "DocsId": "T:System.Speech.Synthesis.SayAs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "Members": [ { "DocsId": "F:System.Speech.Synthesis.VoiceGender.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.VoiceGender.NotSet", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.VoiceGender.Male", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.VoiceGender.Female", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.VoiceGender.Neutral", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" } ], "DocsId": "T:System.Speech.Synthesis.VoiceGender", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "Members": [ { "DocsId": "F:System.Speech.Synthesis.VoiceAge.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.VoiceAge.NotSet", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.VoiceAge.Child", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.VoiceAge.Teen", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.VoiceAge.Adult", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.VoiceAge.Senior", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" } ], "DocsId": "T:System.Speech.Synthesis.VoiceAge", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "Members": [ { "DocsId": "F:System.Speech.Synthesis.PromptRate.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.PromptRate.NotSet", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.PromptRate.ExtraFast", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.PromptRate.Fast", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.PromptRate.Medium", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.PromptRate.Slow", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.PromptRate.ExtraSlow", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" } ], "DocsId": "T:System.Speech.Synthesis.PromptRate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "Members": [ { "DocsId": "F:System.Speech.Synthesis.PromptVolume.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.PromptVolume.NotSet", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.PromptVolume.Silent", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.PromptVolume.ExtraSoft", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.PromptVolume.Soft", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.PromptVolume.Medium", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.PromptVolume.Loud", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.PromptVolume.ExtraLoud", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.PromptVolume.Default", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" } ], "DocsId": "T:System.Speech.Synthesis.PromptVolume", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "Members": [ { "DocsId": "F:System.Speech.Synthesis.PromptEmphasis.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.PromptEmphasis.NotSet", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.PromptEmphasis.Strong", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.PromptEmphasis.Moderate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.PromptEmphasis.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.PromptEmphasis.Reduced", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" } ], "DocsId": "T:System.Speech.Synthesis.PromptEmphasis", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "Members": [ { "DocsId": "F:System.Speech.Synthesis.PromptBreak.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.PromptBreak.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.PromptBreak.ExtraSmall", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.PromptBreak.Small", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.PromptBreak.Medium", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.PromptBreak.Large", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "DocsId": "F:System.Speech.Synthesis.PromptBreak.ExtraLarge", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" } ], "DocsId": "T:System.Speech.Synthesis.PromptBreak", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/PromptStyle.cs" }, { "Members": [], "DocsId": "T:System.Speech.Synthesis.SpeakCompletedEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeakCompletedEventArgs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeakCompletedEventArgs.cs" }, { "Members": [ { "DocsId": "P:System.Speech.Synthesis.SpeakProgressEventArgs.AudioPosition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeakProgressEventArgs.cs#L22C17-L22C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeakProgressEventArgs.cs#L22C17-L22C39" }, { "DocsId": "P:System.Speech.Synthesis.SpeakProgressEventArgs.CharacterPosition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeakProgressEventArgs.cs#L29C17-L29C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeakProgressEventArgs.cs#L29C17-L29C34" }, { "DocsId": "P:System.Speech.Synthesis.SpeakProgressEventArgs.CharacterCount", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeakProgressEventArgs.cs#L36C17-L36C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeakProgressEventArgs.cs#L36C17-L36C34" }, { "DocsId": "P:System.Speech.Synthesis.SpeakProgressEventArgs.Text", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeakProgressEventArgs.cs#L47C17-L47C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeakProgressEventArgs.cs#L47C17-L47C30" } ], "DocsId": "T:System.Speech.Synthesis.SpeakProgressEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeakProgressEventArgs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeakProgressEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Speech.Synthesis.SpeechSynthesizer.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L18C9-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L18C9-L20C10" }, { "DocsId": "M:System.Speech.Synthesis.SpeechSynthesizer.Finalize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L24C13-L25C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L24C13-L25C10" }, { "DocsId": "M:System.Speech.Synthesis.SpeechSynthesizer.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L28C13-L30C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L28C13-L30C10" }, { "DocsId": "M:System.Speech.Synthesis.SpeechSynthesizer.SelectVoice(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L37C13-L46C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L37C13-L46C10" }, { "DocsId": "M:System.Speech.Synthesis.SpeechSynthesizer.SelectVoiceByHints(System.Speech.Synthesis.VoiceGender)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L49C13-L50C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L49C13-L50C10" }, { "DocsId": "M:System.Speech.Synthesis.SpeechSynthesizer.SelectVoiceByHints(System.Speech.Synthesis.VoiceGender,System.Speech.Synthesis.VoiceAge)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L53C13-L54C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L53C13-L54C10" }, { "DocsId": "M:System.Speech.Synthesis.SpeechSynthesizer.SelectVoiceByHints(System.Speech.Synthesis.VoiceGender,System.Speech.Synthesis.VoiceAge,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L57C13-L58C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L57C13-L58C10" }, { "DocsId": "M:System.Speech.Synthesis.SpeechSynthesizer.SelectVoiceByHints(System.Speech.Synthesis.VoiceGender,System.Speech.Synthesis.VoiceAge,System.Int32,System.Globalization.CultureInfo)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L61C13-L85C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L61C13-L85C10" }, { "DocsId": "M:System.Speech.Synthesis.SpeechSynthesizer.SpeakAsync(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L88C13-L92C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L88C13-L92C27" }, { "DocsId": "M:System.Speech.Synthesis.SpeechSynthesizer.SpeakAsync(System.Speech.Synthesis.Prompt)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L96C13-L100C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L96C13-L100C10" }, { "DocsId": "M:System.Speech.Synthesis.SpeechSynthesizer.SpeakSsmlAsync(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L103C13-L107C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L103C13-L107C27" }, { "DocsId": "M:System.Speech.Synthesis.SpeechSynthesizer.SpeakAsync(System.Speech.Synthesis.PromptBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L111C13-L115C27" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L111C13-L115C27" }, { "DocsId": "M:System.Speech.Synthesis.SpeechSynthesizer.Speak(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L119C13-L120C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L119C13-L120C10" }, { "DocsId": "M:System.Speech.Synthesis.SpeechSynthesizer.Speak(System.Speech.Synthesis.Prompt)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L123C13-L134C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L123C13-L134C10" }, { "DocsId": "M:System.Speech.Synthesis.SpeechSynthesizer.Speak(System.Speech.Synthesis.PromptBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L137C13-L138C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L137C13-L138C10" }, { "DocsId": "M:System.Speech.Synthesis.SpeechSynthesizer.SpeakSsml(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L141C13-L142C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L141C13-L142C10" }, { "DocsId": "M:System.Speech.Synthesis.SpeechSynthesizer.Pause", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L150C13-L155C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L150C13-L155C10" }, { "DocsId": "M:System.Speech.Synthesis.SpeechSynthesizer.Resume", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L162C13-L167C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L162C13-L167C10" }, { "DocsId": "M:System.Speech.Synthesis.SpeechSynthesizer.SpeakAsyncCancel(System.Speech.Synthesis.Prompt)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L174C13-L177C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L174C13-L177C10" }, { "DocsId": "M:System.Speech.Synthesis.SpeechSynthesizer.SpeakAsyncCancelAll", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L184C13-L185C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L184C13-L185C10" }, { "DocsId": "M:System.Speech.Synthesis.SpeechSynthesizer.SetOutputToWaveFile(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L189C13-L193C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L189C13-L193C10" }, { "DocsId": "M:System.Speech.Synthesis.SpeechSynthesizer.SetOutputToWaveFile(System.String,System.Speech.AudioFormat.SpeechAudioFormatInfo)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L197C13-L202C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L197C13-L202C10" }, { "DocsId": "M:System.Speech.Synthesis.SpeechSynthesizer.SetOutputToWaveStream(System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L205C13-L208C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L205C13-L208C10" }, { "DocsId": "M:System.Speech.Synthesis.SpeechSynthesizer.SetOutputToAudioStream(System.IO.Stream,System.Speech.AudioFormat.SpeechAudioFormatInfo)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L211C13-L215C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L211C13-L215C10" }, { "DocsId": "M:System.Speech.Synthesis.SpeechSynthesizer.SetOutputToDefaultAudioDevice", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L218C13-L219C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L218C13-L219C10" }, { "DocsId": "M:System.Speech.Synthesis.SpeechSynthesizer.SetOutputToNull", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L224C13-L237C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L224C13-L237C10" }, { "DocsId": "M:System.Speech.Synthesis.SpeechSynthesizer.GetCurrentlySpokenPrompt", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L241C13-L241C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L241C13-L241C44" }, { "DocsId": "M:System.Speech.Synthesis.SpeechSynthesizer.GetInstalledVoices", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L245C13-L245C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L245C13-L245C62" }, { "DocsId": "M:System.Speech.Synthesis.SpeechSynthesizer.GetInstalledVoices(System.Globalization.CultureInfo)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L249C13-L256C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L249C13-L256C65" }, { "DocsId": "M:System.Speech.Synthesis.SpeechSynthesizer.AddLexicon(System.Uri,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L260C13-L263C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L260C13-L263C10" }, { "DocsId": "M:System.Speech.Synthesis.SpeechSynthesizer.RemoveLexicon(System.Uri)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L266C13-L269C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L266C13-L269C10" }, { "DocsId": "E:System.Speech.Synthesis.SpeechSynthesizer.SpeakStarted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L277C17-L279C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L277C17-L279C14" }, { "DocsId": "E:System.Speech.Synthesis.SpeechSynthesizer.SpeakCompleted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L292C17-L294C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L292C17-L294C14" }, { "DocsId": "E:System.Speech.Synthesis.SpeechSynthesizer.SpeakProgress", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L307C17-L309C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L307C17-L309C14" }, { "DocsId": "E:System.Speech.Synthesis.SpeechSynthesizer.BookmarkReached", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L322C17-L324C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L322C17-L324C14" }, { "DocsId": "E:System.Speech.Synthesis.SpeechSynthesizer.VoiceChange", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L337C17-L339C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L337C17-L339C14" }, { "DocsId": "E:System.Speech.Synthesis.SpeechSynthesizer.PhonemeReached", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L354C17-L356C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L354C17-L356C14" }, { "DocsId": "E:System.Speech.Synthesis.SpeechSynthesizer.VisemeReached", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L369C17-L371C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L369C17-L371C14" }, { "DocsId": "E:System.Speech.Synthesis.SpeechSynthesizer.StateChanged", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L386C17-L388C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L386C17-L388C14" }, { "DocsId": "P:System.Speech.Synthesis.SpeechSynthesizer.State", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L406C17-L406C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L406C17-L406C47" }, { "DocsId": "P:System.Speech.Synthesis.SpeechSynthesizer.Rate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L413C17-L413C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L413C17-L413C46" }, { "DocsId": "P:System.Speech.Synthesis.SpeechSynthesizer.Volume", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L428C17-L428C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L428C17-L428C48" }, { "DocsId": "P:System.Speech.Synthesis.SpeechSynthesizer.Voice", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L444C17-L444C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs#L444C17-L444C70" } ], "DocsId": "T:System.Speech.Synthesis.SpeechSynthesizer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs" }, { "Members": [ { "DocsId": "F:System.Speech.Synthesis.SynthesizerState.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs" }, { "DocsId": "F:System.Speech.Synthesis.SynthesizerState.Ready", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs" }, { "DocsId": "F:System.Speech.Synthesis.SynthesizerState.Speaking", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs" }, { "DocsId": "F:System.Speech.Synthesis.SynthesizerState.Paused", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs" } ], "DocsId": "T:System.Speech.Synthesis.SynthesizerState", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs" }, { "Members": [ { "DocsId": "F:System.Speech.Synthesis.SynthesizerEmphasis.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs" }, { "DocsId": "F:System.Speech.Synthesis.SynthesizerEmphasis.Stressed", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs" }, { "DocsId": "F:System.Speech.Synthesis.SynthesizerEmphasis.Emphasized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs" } ], "DocsId": "T:System.Speech.Synthesis.SynthesizerEmphasis", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SpeechSynthesizer.cs" }, { "Members": [ { "DocsId": "P:System.Speech.Synthesis.StateChangedEventArgs.State", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SynthesizerStateChangedEventArgs.cs#L24C17-L24C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SynthesizerStateChangedEventArgs.cs#L24C17-L24C31" }, { "DocsId": "P:System.Speech.Synthesis.StateChangedEventArgs.PreviousState", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SynthesizerStateChangedEventArgs.cs#L31C17-L31C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SynthesizerStateChangedEventArgs.cs#L31C17-L31C39" } ], "DocsId": "T:System.Speech.Synthesis.StateChangedEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/SynthesizerStateChangedEventArgs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/SynthesizerStateChangedEventArgs.cs" }, { "Members": [ { "DocsId": "P:System.Speech.Synthesis.VisemeReachedEventArgs.Viseme", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/VisemeEventArgs.cs#L23C19-L23C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/VisemeEventArgs.cs#L23C19-L23C41" }, { "DocsId": "P:System.Speech.Synthesis.VisemeReachedEventArgs.AudioPosition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/VisemeEventArgs.cs#L27C19-L27C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/VisemeEventArgs.cs#L27C19-L27C41" }, { "DocsId": "P:System.Speech.Synthesis.VisemeReachedEventArgs.Duration", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/VisemeEventArgs.cs#L31C19-L31C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/VisemeEventArgs.cs#L31C19-L31C36" }, { "DocsId": "P:System.Speech.Synthesis.VisemeReachedEventArgs.Emphasis", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/VisemeEventArgs.cs#L35C19-L35C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/VisemeEventArgs.cs#L35C19-L35C36" }, { "DocsId": "P:System.Speech.Synthesis.VisemeReachedEventArgs.NextViseme", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/VisemeEventArgs.cs#L39C19-L39C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/VisemeEventArgs.cs#L39C19-L39C38" } ], "DocsId": "T:System.Speech.Synthesis.VisemeReachedEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/VisemeEventArgs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/VisemeEventArgs.cs" }, { "Members": [ { "DocsId": "P:System.Speech.Synthesis.VoiceChangeEventArgs.Voice", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/VoiceChangeEventArgs.cs#L21C17-L21C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/VoiceChangeEventArgs.cs#L21C17-L21C31" } ], "DocsId": "T:System.Speech.Synthesis.VoiceChangeEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/VoiceChangeEventArgs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/VoiceChangeEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Speech.Synthesis.VoiceInfo.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/VoiceInfo.cs#L127C13-L132C100" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/VoiceInfo.cs#L127C13-L132C100" }, { "DocsId": "M:System.Speech.Synthesis.VoiceInfo.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/VoiceInfo.cs#L141C13-L141C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/VoiceInfo.cs#L141C13-L141C40" }, { "DocsId": "P:System.Speech.Synthesis.VoiceInfo.Gender", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/VoiceInfo.cs#L151C17-L151C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/VoiceInfo.cs#L151C17-L151C32" }, { "DocsId": "P:System.Speech.Synthesis.VoiceInfo.Age", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/VoiceInfo.cs#L158C17-L158C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/VoiceInfo.cs#L158C17-L158C29" }, { "DocsId": "P:System.Speech.Synthesis.VoiceInfo.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/VoiceInfo.cs#L165C17-L165C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/VoiceInfo.cs#L165C17-L165C30" }, { "DocsId": "P:System.Speech.Synthesis.VoiceInfo.Culture", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/VoiceInfo.cs#L178C17-L178C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/VoiceInfo.cs#L178C17-L178C33" }, { "DocsId": "P:System.Speech.Synthesis.VoiceInfo.Id", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/VoiceInfo.cs#L185C17-L185C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/VoiceInfo.cs#L185C17-L185C28" }, { "DocsId": "P:System.Speech.Synthesis.VoiceInfo.Description", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/VoiceInfo.cs#L192C17-L192C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/VoiceInfo.cs#L192C17-L192C53" }, { "DocsId": "P:System.Speech.Synthesis.VoiceInfo.SupportedAudioFormats", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/VoiceInfo.cs#L200C17-L200C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/VoiceInfo.cs#L200C17-L200C38" }, { "DocsId": "P:System.Speech.Synthesis.VoiceInfo.AdditionalInfo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/VoiceInfo.cs#L204C62-L204C151" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/VoiceInfo.cs#L204C62-L204C151" } ], "DocsId": "T:System.Speech.Synthesis.VoiceInfo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/VoiceInfo.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/VoiceInfo.cs" }, { "Members": [ { "DocsId": "M:System.Speech.Synthesis.TtsEngine.TtsEngineSsml.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L22C9-L22C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L22C9-L22C56" }, { "DocsId": "M:System.Speech.Synthesis.TtsEngine.TtsEngineSsml.GetOutputFormat(System.Speech.Synthesis.TtsEngine.SpeakOutputFormat,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "M:System.Speech.Synthesis.TtsEngine.TtsEngineSsml.AddLexicon(System.Uri,System.String,System.Speech.Synthesis.TtsEngine.ITtsEngineSite)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "M:System.Speech.Synthesis.TtsEngine.TtsEngineSsml.RemoveLexicon(System.Uri,System.Speech.Synthesis.TtsEngine.ITtsEngineSite)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "M:System.Speech.Synthesis.TtsEngine.TtsEngineSsml.Speak(System.Speech.Synthesis.TtsEngine.TextFragment[],System.IntPtr,System.Speech.Synthesis.TtsEngine.ITtsEngineSite)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" } ], "DocsId": "T:System.Speech.Synthesis.TtsEngine.TtsEngineSsml", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "Members": [ { "DocsId": "M:System.Speech.Synthesis.TtsEngine.SpeechEventInfo.#ctor(System.Int16,System.Int16,System.Int32,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L80C13-L84C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L80C13-L84C10" }, { "DocsId": "M:System.Speech.Synthesis.TtsEngine.SpeechEventInfo.op_Equality(System.Speech.Synthesis.TtsEngine.SpeechEventInfo,System.Speech.Synthesis.TtsEngine.SpeechEventInfo)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L87C13-L87C169" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L87C13-L87C169" }, { "DocsId": "M:System.Speech.Synthesis.TtsEngine.SpeechEventInfo.op_Inequality(System.Speech.Synthesis.TtsEngine.SpeechEventInfo,System.Speech.Synthesis.TtsEngine.SpeechEventInfo)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L91C13-L91C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L91C13-L91C40" }, { "DocsId": "M:System.Speech.Synthesis.TtsEngine.SpeechEventInfo.Equals(System.Speech.Synthesis.TtsEngine.SpeechEventInfo)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L95C13-L95C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L95C13-L95C34" }, { "DocsId": "M:System.Speech.Synthesis.TtsEngine.SpeechEventInfo.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L99C13-L104C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L99C13-L104C49" }, { "DocsId": "M:System.Speech.Synthesis.TtsEngine.SpeechEventInfo.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L108C13-L108C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L108C13-L108C39" }, { "DocsId": "P:System.Speech.Synthesis.TtsEngine.SpeechEventInfo.EventId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L62C38-L62C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L62C38-L62C54" }, { "DocsId": "P:System.Speech.Synthesis.TtsEngine.SpeechEventInfo.ParameterType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L63C44-L63C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L63C44-L63C66" }, { "DocsId": "P:System.Speech.Synthesis.TtsEngine.SpeechEventInfo.Param1", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L68C35-L68C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L68C35-L68C50" }, { "DocsId": "P:System.Speech.Synthesis.TtsEngine.SpeechEventInfo.Param2", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L73C38-L73C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L73C38-L73C53" } ], "DocsId": "T:System.Speech.Synthesis.TtsEngine.SpeechEventInfo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "Members": [ { "DocsId": "M:System.Speech.Synthesis.TtsEngine.ITtsEngineSite.AddEvents(System.Speech.Synthesis.TtsEngine.SpeechEventInfo[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "M:System.Speech.Synthesis.TtsEngine.ITtsEngineSite.Write(System.IntPtr,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "M:System.Speech.Synthesis.TtsEngine.ITtsEngineSite.GetSkipInfo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "M:System.Speech.Synthesis.TtsEngine.ITtsEngineSite.CompleteSkip(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "M:System.Speech.Synthesis.TtsEngine.ITtsEngineSite.LoadResource(System.Uri,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "P:System.Speech.Synthesis.TtsEngine.ITtsEngineSite.EventInterest", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "P:System.Speech.Synthesis.TtsEngine.ITtsEngineSite.Actions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "P:System.Speech.Synthesis.TtsEngine.ITtsEngineSite.Rate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "P:System.Speech.Synthesis.TtsEngine.ITtsEngineSite.Volume", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" } ], "DocsId": "T:System.Speech.Synthesis.TtsEngine.ITtsEngineSite", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "Members": [ { "DocsId": "M:System.Speech.Synthesis.TtsEngine.SkipInfo.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L157C9-L159C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L157C9-L159C10" }, { "DocsId": "P:System.Speech.Synthesis.TtsEngine.SkipInfo.Type", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L139C17-L139C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L139C17-L139C30" }, { "DocsId": "P:System.Speech.Synthesis.TtsEngine.SkipInfo.Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L150C17-L150C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L150C17-L150C31" } ], "DocsId": "T:System.Speech.Synthesis.TtsEngine.SkipInfo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "Members": [ { "DocsId": "M:System.Speech.Synthesis.TtsEngine.TextFragment.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L207C9-L174C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L207C9-L174C10" }, { "DocsId": "P:System.Speech.Synthesis.TtsEngine.TextFragment.State", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L175C44-L175C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L175C44-L175C58" }, { "DocsId": "P:System.Speech.Synthesis.TtsEngine.TextFragment.TextToSpeak", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L176C43-L176C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L176C43-L176C63" }, { "DocsId": "P:System.Speech.Synthesis.TtsEngine.TextFragment.TextOffset", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L177C39-L177C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L177C39-L177C58" }, { "DocsId": "P:System.Speech.Synthesis.TtsEngine.TextFragment.TextLength", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L178C39-L178C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L178C39-L178C58" } ], "DocsId": "T:System.Speech.Synthesis.TtsEngine.TextFragment", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "Members": [ { "DocsId": "M:System.Speech.Synthesis.TtsEngine.FragmentState.#ctor(System.Speech.Synthesis.TtsEngine.TtsEngineAction,System.Int32,System.Int32,System.Int32,System.Speech.Synthesis.TtsEngine.SayAs,System.Speech.Synthesis.TtsEngine.Prosody,System.Char[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L230C13-L237C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L230C13-L237C10" }, { "DocsId": "M:System.Speech.Synthesis.TtsEngine.FragmentState.op_Equality(System.Speech.Synthesis.TtsEngine.FragmentState,System.Speech.Synthesis.TtsEngine.FragmentState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L240C13-L240C277" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L240C13-L240C277" }, { "DocsId": "M:System.Speech.Synthesis.TtsEngine.FragmentState.op_Inequality(System.Speech.Synthesis.TtsEngine.FragmentState,System.Speech.Synthesis.TtsEngine.FragmentState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L244C13-L244C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L244C13-L244C40" }, { "DocsId": "M:System.Speech.Synthesis.TtsEngine.FragmentState.Equals(System.Speech.Synthesis.TtsEngine.FragmentState)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L248C13-L248C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L248C13-L248C34" }, { "DocsId": "M:System.Speech.Synthesis.TtsEngine.FragmentState.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L252C13-L257C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L252C13-L257C47" }, { "DocsId": "M:System.Speech.Synthesis.TtsEngine.FragmentState.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L261C13-L261C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L261C13-L261C39" }, { "DocsId": "P:System.Speech.Synthesis.TtsEngine.FragmentState.Action", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L215C47-L215C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L215C47-L215C62" }, { "DocsId": "P:System.Speech.Synthesis.TtsEngine.FragmentState.LangId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L216C35-L216C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L216C35-L216C50" }, { "DocsId": "P:System.Speech.Synthesis.TtsEngine.FragmentState.Emphasis", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L217C37-L217C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L217C37-L217C54" }, { "DocsId": "P:System.Speech.Synthesis.TtsEngine.FragmentState.Duration", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L218C37-L218C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L218C37-L218C54" }, { "DocsId": "P:System.Speech.Synthesis.TtsEngine.FragmentState.SayAs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L219C36-L219C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L219C36-L219C50" }, { "DocsId": "P:System.Speech.Synthesis.TtsEngine.FragmentState.Prosody", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L220C40-L220C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L220C40-L220C56" }, { "DocsId": "P:System.Speech.Synthesis.TtsEngine.FragmentState.Phoneme", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L221C39-L221C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L221C39-L221C55" } ], "DocsId": "T:System.Speech.Synthesis.TtsEngine.FragmentState", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "Members": [ { "DocsId": "M:System.Speech.Synthesis.TtsEngine.Prosody.GetContourPoints", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L280C52-L280C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L280C52-L280C74" }, { "DocsId": "M:System.Speech.Synthesis.TtsEngine.Prosody.SetContourPoints(System.Speech.Synthesis.TtsEngine.ContourPoint[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L283C13-L286C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L283C13-L286C10" }, { "DocsId": "M:System.Speech.Synthesis.TtsEngine.Prosody.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L287C9-L293C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L287C9-L293C10" }, { "DocsId": "P:System.Speech.Synthesis.TtsEngine.Prosody.Pitch", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L275C44-L275C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L275C44-L275C58" }, { "DocsId": "P:System.Speech.Synthesis.TtsEngine.Prosody.Range", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L276C44-L276C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L276C44-L276C58" }, { "DocsId": "P:System.Speech.Synthesis.TtsEngine.Prosody.Rate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L277C43-L277C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L277C43-L277C56" }, { "DocsId": "P:System.Speech.Synthesis.TtsEngine.Prosody.Duration", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L278C37-L278C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L278C37-L278C54" }, { "DocsId": "P:System.Speech.Synthesis.TtsEngine.Prosody.Volume", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L279C45-L279C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L279C45-L279C60" } ], "DocsId": "T:System.Speech.Synthesis.TtsEngine.Prosody", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "Members": [ { "DocsId": "M:System.Speech.Synthesis.TtsEngine.ContourPoint.#ctor(System.Single,System.Single,System.Speech.Synthesis.TtsEngine.ContourPointChangeType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L322C13-L325C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L322C13-L325C10" }, { "DocsId": "M:System.Speech.Synthesis.TtsEngine.ContourPoint.op_Equality(System.Speech.Synthesis.TtsEngine.ContourPoint,System.Speech.Synthesis.TtsEngine.ContourPoint)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L328C13-L328C140" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L328C13-L328C140" }, { "DocsId": "M:System.Speech.Synthesis.TtsEngine.ContourPoint.op_Inequality(System.Speech.Synthesis.TtsEngine.ContourPoint,System.Speech.Synthesis.TtsEngine.ContourPoint)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L332C13-L332C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L332C13-L332C40" }, { "DocsId": "M:System.Speech.Synthesis.TtsEngine.ContourPoint.Equals(System.Speech.Synthesis.TtsEngine.ContourPoint)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L336C13-L336C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L336C13-L336C34" }, { "DocsId": "M:System.Speech.Synthesis.TtsEngine.ContourPoint.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L340C13-L345C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L340C13-L345C46" }, { "DocsId": "M:System.Speech.Synthesis.TtsEngine.ContourPoint.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L349C13-L349C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L349C13-L349C39" }, { "DocsId": "P:System.Speech.Synthesis.TtsEngine.ContourPoint.Start", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L317C36-L317C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L317C36-L317C50" }, { "DocsId": "P:System.Speech.Synthesis.TtsEngine.ContourPoint.Change", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L318C37-L318C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L318C37-L318C52" }, { "DocsId": "P:System.Speech.Synthesis.TtsEngine.ContourPoint.ChangeType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L319C58-L319C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L319C58-L319C77" } ], "DocsId": "T:System.Speech.Synthesis.TtsEngine.ContourPoint", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "Members": [ { "DocsId": "M:System.Speech.Synthesis.TtsEngine.ProsodyNumber.#ctor(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L366C13-L370C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L366C13-L370C10" }, { "DocsId": "M:System.Speech.Synthesis.TtsEngine.ProsodyNumber.#ctor(System.Single)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L373C13-L377C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L373C13-L377C10" }, { "DocsId": "M:System.Speech.Synthesis.TtsEngine.ProsodyNumber.op_Equality(System.Speech.Synthesis.TtsEngine.ProsodyNumber,System.Speech.Synthesis.TtsEngine.ProsodyNumber)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L380C13-L380C256" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L380C13-L380C256" }, { "DocsId": "M:System.Speech.Synthesis.TtsEngine.ProsodyNumber.op_Inequality(System.Speech.Synthesis.TtsEngine.ProsodyNumber,System.Speech.Synthesis.TtsEngine.ProsodyNumber)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L384C13-L384C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L384C13-L384C56" }, { "DocsId": "M:System.Speech.Synthesis.TtsEngine.ProsodyNumber.Equals(System.Speech.Synthesis.TtsEngine.ProsodyNumber)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L388C13-L388C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L388C13-L388C34" }, { "DocsId": "M:System.Speech.Synthesis.TtsEngine.ProsodyNumber.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L392C13-L397C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L392C13-L397C47" }, { "DocsId": "M:System.Speech.Synthesis.TtsEngine.ProsodyNumber.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L401C13-L401C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L401C13-L401C39" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.ProsodyNumber.AbsoluteNumber", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "P:System.Speech.Synthesis.TtsEngine.ProsodyNumber.SsmlAttributeId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L359C44-L359C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L359C44-L359C68" }, { "DocsId": "P:System.Speech.Synthesis.TtsEngine.ProsodyNumber.IsNumberPercent", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L360C45-L360C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L360C45-L360C63" }, { "DocsId": "P:System.Speech.Synthesis.TtsEngine.ProsodyNumber.Number", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L361C37-L361C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L361C37-L361C52" }, { "DocsId": "P:System.Speech.Synthesis.TtsEngine.ProsodyNumber.Unit", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L362C41-L362C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L362C41-L362C54" } ], "DocsId": "T:System.Speech.Synthesis.TtsEngine.ProsodyNumber", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "Members": [ { "DocsId": "M:System.Speech.Synthesis.TtsEngine.SayAs.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "P:System.Speech.Synthesis.TtsEngine.SayAs.InterpretAs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L412C43-L412C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L412C43-L412C63" }, { "DocsId": "P:System.Speech.Synthesis.TtsEngine.SayAs.Format", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L413C38-L413C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L413C38-L413C53" }, { "DocsId": "P:System.Speech.Synthesis.TtsEngine.SayAs.Detail", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L414C38-L414C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs#L414C38-L414C53" } ], "DocsId": "T:System.Speech.Synthesis.TtsEngine.SayAs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "Members": [ { "DocsId": "F:System.Speech.Synthesis.TtsEngine.TtsEngineAction.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.TtsEngineAction.Speak", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.TtsEngineAction.Silence", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.TtsEngineAction.Pronounce", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.TtsEngineAction.Bookmark", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.TtsEngineAction.SpellOut", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.TtsEngineAction.StartSentence", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.TtsEngineAction.StartParagraph", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.TtsEngineAction.ParseUnknownTag", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" } ], "DocsId": "T:System.Speech.Synthesis.TtsEngine.TtsEngineAction", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "Members": [ { "DocsId": "F:System.Speech.Synthesis.TtsEngine.EmphasisWord.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.EmphasisWord.Default", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.EmphasisWord.Strong", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.EmphasisWord.Moderate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.EmphasisWord.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.EmphasisWord.Reduced", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" } ], "DocsId": "T:System.Speech.Synthesis.TtsEngine.EmphasisWord", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "Members": [ { "DocsId": "F:System.Speech.Synthesis.TtsEngine.EmphasisBreak.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.EmphasisBreak.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.EmphasisBreak.ExtraWeak", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.EmphasisBreak.Weak", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.EmphasisBreak.Medium", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.EmphasisBreak.Strong", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.EmphasisBreak.ExtraStrong", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.EmphasisBreak.Default", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" } ], "DocsId": "T:System.Speech.Synthesis.TtsEngine.EmphasisBreak", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "Members": [ { "DocsId": "F:System.Speech.Synthesis.TtsEngine.ProsodyPitch.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.ProsodyPitch.Default", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.ProsodyPitch.ExtraLow", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.ProsodyPitch.Low", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.ProsodyPitch.Medium", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.ProsodyPitch.High", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.ProsodyPitch.ExtraHigh", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" } ], "DocsId": "T:System.Speech.Synthesis.TtsEngine.ProsodyPitch", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "Members": [ { "DocsId": "F:System.Speech.Synthesis.TtsEngine.ProsodyRange.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.ProsodyRange.Default", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.ProsodyRange.ExtraLow", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.ProsodyRange.Low", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.ProsodyRange.Medium", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.ProsodyRange.High", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.ProsodyRange.ExtraHigh", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" } ], "DocsId": "T:System.Speech.Synthesis.TtsEngine.ProsodyRange", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "Members": [ { "DocsId": "F:System.Speech.Synthesis.TtsEngine.ProsodyRate.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.ProsodyRate.Default", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.ProsodyRate.ExtraSlow", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.ProsodyRate.Slow", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.ProsodyRate.Medium", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.ProsodyRate.Fast", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.ProsodyRate.ExtraFast", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" } ], "DocsId": "T:System.Speech.Synthesis.TtsEngine.ProsodyRate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "Members": [ { "DocsId": "F:System.Speech.Synthesis.TtsEngine.ProsodyVolume.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.ProsodyVolume.Default", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.ProsodyVolume.Silent", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.ProsodyVolume.ExtraSoft", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.ProsodyVolume.Soft", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.ProsodyVolume.Medium", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.ProsodyVolume.Loud", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.ProsodyVolume.ExtraLoud", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" } ], "DocsId": "T:System.Speech.Synthesis.TtsEngine.ProsodyVolume", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "Members": [ { "DocsId": "F:System.Speech.Synthesis.TtsEngine.ProsodyUnit.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.ProsodyUnit.Default", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.ProsodyUnit.Hz", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.ProsodyUnit.Semitone", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" } ], "DocsId": "T:System.Speech.Synthesis.TtsEngine.ProsodyUnit", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "Members": [ { "DocsId": "F:System.Speech.Synthesis.TtsEngine.TtsEventId.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.TtsEventId.StartInputStream", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.TtsEventId.EndInputStream", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.TtsEventId.VoiceChange", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.TtsEventId.Bookmark", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.TtsEventId.WordBoundary", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.TtsEventId.Phoneme", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.TtsEventId.SentenceBoundary", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.TtsEventId.Viseme", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.TtsEventId.AudioLevel", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" } ], "DocsId": "T:System.Speech.Synthesis.TtsEngine.TtsEventId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "Members": [ { "DocsId": "F:System.Speech.Synthesis.TtsEngine.EventParameterType.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.EventParameterType.Undefined", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.EventParameterType.Token", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.EventParameterType.Object", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.EventParameterType.Pointer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.EventParameterType.String", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" } ], "DocsId": "T:System.Speech.Synthesis.TtsEngine.EventParameterType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "Members": [ { "DocsId": "F:System.Speech.Synthesis.TtsEngine.SpeakOutputFormat.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.SpeakOutputFormat.WaveFormat", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.SpeakOutputFormat.Text", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" } ], "DocsId": "T:System.Speech.Synthesis.TtsEngine.SpeakOutputFormat", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "Members": [ { "DocsId": "F:System.Speech.Synthesis.TtsEngine.ContourPointChangeType.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.ContourPointChangeType.Hz", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "DocsId": "F:System.Speech.Synthesis.TtsEngine.ContourPointChangeType.Percentage", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" } ], "DocsId": "T:System.Speech.Synthesis.TtsEngine.ContourPointChangeType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Synthesis/TTSEngine/TTSEngineTypes.cs" }, { "Members": [ { "DocsId": "P:System.Speech.Recognition.AudioLevelUpdatedEventArgs.AudioLevel", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/AudioLevelUpdatedEventArgs.cs#L22C19-L22C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/AudioLevelUpdatedEventArgs.cs#L22C19-L22C38" } ], "DocsId": "T:System.Speech.Recognition.AudioLevelUpdatedEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/AudioLevelUpdatedEventArgs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/AudioLevelUpdatedEventArgs.cs" }, { "Members": [ { "DocsId": "F:System.Speech.Recognition.AudioSignalProblem.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/AudioSignalProblem.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/AudioSignalProblem.cs" }, { "DocsId": "F:System.Speech.Recognition.AudioSignalProblem.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/AudioSignalProblem.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/AudioSignalProblem.cs" }, { "DocsId": "F:System.Speech.Recognition.AudioSignalProblem.TooNoisy", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/AudioSignalProblem.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/AudioSignalProblem.cs" }, { "DocsId": "F:System.Speech.Recognition.AudioSignalProblem.NoSignal", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/AudioSignalProblem.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/AudioSignalProblem.cs" }, { "DocsId": "F:System.Speech.Recognition.AudioSignalProblem.TooLoud", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/AudioSignalProblem.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/AudioSignalProblem.cs" }, { "DocsId": "F:System.Speech.Recognition.AudioSignalProblem.TooSoft", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/AudioSignalProblem.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/AudioSignalProblem.cs" }, { "DocsId": "F:System.Speech.Recognition.AudioSignalProblem.TooFast", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/AudioSignalProblem.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/AudioSignalProblem.cs" }, { "DocsId": "F:System.Speech.Recognition.AudioSignalProblem.TooSlow", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/AudioSignalProblem.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/AudioSignalProblem.cs" } ], "DocsId": "T:System.Speech.Recognition.AudioSignalProblem", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/AudioSignalProblem.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/AudioSignalProblem.cs" }, { "Members": [ { "DocsId": "P:System.Speech.Recognition.AudioSignalProblemOccurredEventArgs.AudioSignalProblem", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/AudioSignalProblemOccurredEventArgs.cs#L25C19-L25C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/AudioSignalProblemOccurredEventArgs.cs#L25C19-L25C46" }, { "DocsId": "P:System.Speech.Recognition.AudioSignalProblemOccurredEventArgs.AudioLevel", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/AudioSignalProblemOccurredEventArgs.cs#L29C19-L29C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/AudioSignalProblemOccurredEventArgs.cs#L29C19-L29C38" }, { "DocsId": "P:System.Speech.Recognition.AudioSignalProblemOccurredEventArgs.AudioPosition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/AudioSignalProblemOccurredEventArgs.cs#L33C19-L33C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/AudioSignalProblemOccurredEventArgs.cs#L33C19-L33C41" }, { "DocsId": "P:System.Speech.Recognition.AudioSignalProblemOccurredEventArgs.RecognizerAudioPosition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/AudioSignalProblemOccurredEventArgs.cs#L37C19-L37C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/AudioSignalProblemOccurredEventArgs.cs#L37C19-L37C46" } ], "DocsId": "T:System.Speech.Recognition.AudioSignalProblemOccurredEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/AudioSignalProblemOccurredEventArgs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/AudioSignalProblemOccurredEventArgs.cs" }, { "Members": [ { "DocsId": "F:System.Speech.Recognition.AudioState.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/AudioState.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/AudioState.cs" }, { "DocsId": "F:System.Speech.Recognition.AudioState.Stopped", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/AudioState.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/AudioState.cs" }, { "DocsId": "F:System.Speech.Recognition.AudioState.Silence", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/AudioState.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/AudioState.cs" }, { "DocsId": "F:System.Speech.Recognition.AudioState.Speech", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/AudioState.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/AudioState.cs" } ], "DocsId": "T:System.Speech.Recognition.AudioState", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/AudioState.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/AudioState.cs" }, { "Members": [ { "DocsId": "P:System.Speech.Recognition.AudioStateChangedEventArgs.AudioState", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/AudioStateChangedEventArgs.cs#L22C19-L22C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/AudioStateChangedEventArgs.cs#L22C19-L22C38" } ], "DocsId": "T:System.Speech.Recognition.AudioStateChangedEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/AudioStateChangedEventArgs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/AudioStateChangedEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Speech.Recognition.Choices.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/Choices.cs#L81C9-L17C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/Choices.cs#L81C9-L17C10" }, { "DocsId": "M:System.Speech.Recognition.Choices.#ctor(System.String[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/Choices.cs#L81C9-L24C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/Choices.cs#L81C9-L24C10" }, { "DocsId": "M:System.Speech.Recognition.Choices.#ctor(System.Speech.Recognition.GrammarBuilder[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/Choices.cs#L81C9-L31C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/Choices.cs#L81C9-L31C10" }, { "DocsId": "M:System.Speech.Recognition.Choices.Add(System.String[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/Choices.cs#L39C13-L47C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/Choices.cs#L39C13-L47C10" }, { "DocsId": "M:System.Speech.Recognition.Choices.Add(System.Speech.Recognition.GrammarBuilder[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/Choices.cs#L51C13-L59C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/Choices.cs#L51C13-L59C10" }, { "DocsId": "M:System.Speech.Recognition.Choices.ToGrammarBuilder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/Choices.cs#L62C13-L62C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/Choices.cs#L62C13-L62C45" } ], "DocsId": "T:System.Speech.Recognition.Choices", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/Choices.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/Choices.cs" }, { "Members": [ { "DocsId": "M:System.Speech.Recognition.DictationGrammar.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/DictationGrammar.cs#L20C37-L22C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/DictationGrammar.cs#L20C37-L22C10" }, { "DocsId": "M:System.Speech.Recognition.DictationGrammar.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/DictationGrammar.cs#L25C49-L27C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/DictationGrammar.cs#L25C49-L27C10" }, { "DocsId": "M:System.Speech.Recognition.DictationGrammar.SetDictationContext(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/DictationGrammar.cs#L34C13-L43C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/DictationGrammar.cs#L34C13-L43C10" } ], "DocsId": "T:System.Speech.Recognition.DictationGrammar", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/DictationGrammar.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/DictationGrammar.cs" }, { "Members": [ { "DocsId": "P:System.Speech.Recognition.EmulateRecognizeCompletedEventArgs.Result", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/EmulateRecognizeCompletedEventArgs.cs#L23C19-L23C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/EmulateRecognizeCompletedEventArgs.cs#L23C19-L23C34" } ], "DocsId": "T:System.Speech.Recognition.EmulateRecognizeCompletedEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/EmulateRecognizeCompletedEventArgs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/EmulateRecognizeCompletedEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Speech.Recognition.Grammar.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/Grammar.cs#L37C15-L39C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/Grammar.cs#L37C15-L39C10" }, { "DocsId": "M:System.Speech.Recognition.Grammar.#ctor(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/Grammar.cs#L41C15-L43C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/Grammar.cs#L41C15-L43C10" }, { "DocsId": "M:System.Speech.Recognition.Grammar.#ctor(System.String,System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/Grammar.cs#L1115C9-L56C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/Grammar.cs#L1115C9-L56C10" }, { "DocsId": "M:System.Speech.Recognition.Grammar.#ctor(System.Speech.Recognition.SrgsGrammar.SrgsDocument)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/Grammar.cs#L58C15-L60C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/Grammar.cs#L58C15-L60C10" }, { "DocsId": "M:System.Speech.Recognition.Grammar.#ctor(System.Speech.Recognition.SrgsGrammar.SrgsDocument,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/Grammar.cs#L62C15-L64C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/Grammar.cs#L62C15-L64C10" }, { "DocsId": "M:System.Speech.Recognition.Grammar.#ctor(System.Speech.Recognition.SrgsGrammar.SrgsDocument,System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/Grammar.cs#L66C15-L68C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/Grammar.cs#L66C15-L68C10" }, { "DocsId": "M:System.Speech.Recognition.Grammar.#ctor(System.Speech.Recognition.SrgsGrammar.SrgsDocument,System.String,System.Uri)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/Grammar.cs#L71C15-L73C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/Grammar.cs#L71C15-L73C10" }, { "DocsId": "M:System.Speech.Recognition.Grammar.#ctor(System.Speech.Recognition.SrgsGrammar.SrgsDocument,System.String,System.Uri,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/Grammar.cs#L1115C9-L83C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/Grammar.cs#L1115C9-L83C10" }, { "DocsId": "M:System.Speech.Recognition.Grammar.#ctor(System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/Grammar.cs#L85C15-L87C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/Grammar.cs#L85C15-L87C10" }, { "DocsId": "M:System.Speech.Recognition.Grammar.#ctor(System.IO.Stream,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/Grammar.cs#L89C15-L91C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/Grammar.cs#L89C15-L91C10" }, { "DocsId": "M:System.Speech.Recognition.Grammar.#ctor(System.IO.Stream,System.String,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/Grammar.cs#L93C15-L95C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/Grammar.cs#L93C15-L95C10" }, { "DocsId": "M:System.Speech.Recognition.Grammar.#ctor(System.IO.Stream,System.String,System.Uri)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/Grammar.cs#L98C15-L100C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/Grammar.cs#L98C15-L100C10" }, { "DocsId": "M:System.Speech.Recognition.Grammar.#ctor(System.IO.Stream,System.String,System.Uri,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/Grammar.cs#L1115C9-L113C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/Grammar.cs#L1115C9-L113C10" }, { "DocsId": "M:System.Speech.Recognition.Grammar.#ctor(System.Speech.Recognition.GrammarBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/Grammar.cs#L1115C9-L121C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/Grammar.cs#L1115C9-L121C10" }, { "DocsId": "M:System.Speech.Recognition.Grammar.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/Grammar.cs#L1115C9-L131C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/Grammar.cs#L1115C9-L131C10" }, { "DocsId": "M:System.Speech.Recognition.Grammar.StgInit(System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/Grammar.cs#L134C13-L136C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/Grammar.cs#L134C13-L136C10" }, { "DocsId": "M:System.Speech.Recognition.Grammar.LoadLocalizedGrammarFromType(System.Type,System.Object[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/Grammar.cs#L146C13-L189C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/Grammar.cs#L146C13-L189C10" }, { "DocsId": "E:System.Speech.Recognition.Grammar.SpeechRecognized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/Grammar.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/Grammar.cs" }, { "DocsId": "P:System.Speech.Recognition.Grammar.Enabled", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/Grammar.cs#L200C19-L200C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/Grammar.cs#L200C19-L200C35" }, { "DocsId": "P:System.Speech.Recognition.Grammar.Weight", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/Grammar.cs#L216C19-L216C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/Grammar.cs#L216C19-L216C34" }, { "DocsId": "P:System.Speech.Recognition.Grammar.Priority", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/Grammar.cs#L239C19-L239C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/Grammar.cs#L239C19-L239C36" }, { "DocsId": "P:System.Speech.Recognition.Grammar.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/Grammar.cs#L259C19-L259C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/Grammar.cs#L259C19-L259C39" }, { "DocsId": "P:System.Speech.Recognition.Grammar.RuleName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/Grammar.cs#L264C19-L264C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/Grammar.cs#L264C19-L264C36" }, { "DocsId": "P:System.Speech.Recognition.Grammar.Loaded", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/Grammar.cs#L268C19-L268C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/Grammar.cs#L268C19-L268C63" }, { "DocsId": "P:System.Speech.Recognition.Grammar.IsStg", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/Grammar.cs#L375C19-L375C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/Grammar.cs#L375C19-L375C33" }, { "DocsId": "P:System.Speech.Recognition.Grammar.ResourceName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/Grammar.cs#L583C17-L583C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/Grammar.cs#L583C17-L583C35" } ], "DocsId": "T:System.Speech.Recognition.Grammar", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/Grammar.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/Grammar.cs" }, { "Members": [ { "DocsId": "M:System.Speech.Recognition.GrammarBuilder.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L459C9-L25C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L459C9-L25C10" }, { "DocsId": "M:System.Speech.Recognition.GrammarBuilder.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L28C15-L31C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L28C15-L31C10" }, { "DocsId": "M:System.Speech.Recognition.GrammarBuilder.#ctor(System.String,System.Speech.Recognition.SubsetMatchingMode)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L34C15-L37C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L34C15-L37C10" }, { "DocsId": "M:System.Speech.Recognition.GrammarBuilder.#ctor(System.String,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L40C15-L43C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L40C15-L43C10" }, { "DocsId": "M:System.Speech.Recognition.GrammarBuilder.#ctor(System.Speech.Recognition.GrammarBuilder,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L46C15-L49C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L46C15-L49C10" }, { "DocsId": "M:System.Speech.Recognition.GrammarBuilder.#ctor(System.Speech.Recognition.Choices)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L52C15-L55C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L52C15-L55C10" }, { "DocsId": "M:System.Speech.Recognition.GrammarBuilder.#ctor(System.Speech.Recognition.SemanticResultKey)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L58C15-L61C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L58C15-L61C10" }, { "DocsId": "M:System.Speech.Recognition.GrammarBuilder.#ctor(System.Speech.Recognition.SemanticResultValue)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L64C15-L67C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L64C15-L67C10" }, { "DocsId": "M:System.Speech.Recognition.GrammarBuilder.Append(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L77C13-L80C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L77C13-L80C10" }, { "DocsId": "M:System.Speech.Recognition.GrammarBuilder.Append(System.String,System.Speech.Recognition.SubsetMatchingMode)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L84C13-L88C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L84C13-L88C10" }, { "DocsId": "M:System.Speech.Recognition.GrammarBuilder.Append(System.String,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L92C13-L105C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L92C13-L105C10" }, { "DocsId": "M:System.Speech.Recognition.GrammarBuilder.Append(System.Speech.Recognition.GrammarBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L111C13-L134C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L111C13-L134C10" }, { "DocsId": "M:System.Speech.Recognition.GrammarBuilder.Append(System.Speech.Recognition.Choices)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L140C13-L143C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L140C13-L143C10" }, { "DocsId": "M:System.Speech.Recognition.GrammarBuilder.Append(System.Speech.Recognition.SemanticResultKey)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L147C13-L150C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L147C13-L150C10" }, { "DocsId": "M:System.Speech.Recognition.GrammarBuilder.Append(System.Speech.Recognition.SemanticResultValue)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L154C13-L157C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L154C13-L157C10" }, { "DocsId": "M:System.Speech.Recognition.GrammarBuilder.Append(System.Speech.Recognition.GrammarBuilder,System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L161C13-L176C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L161C13-L176C10" }, { "DocsId": "M:System.Speech.Recognition.GrammarBuilder.AppendDictation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L182C13-L183C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L182C13-L183C10" }, { "DocsId": "M:System.Speech.Recognition.GrammarBuilder.AppendDictation(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L187C13-L190C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L187C13-L190C10" }, { "DocsId": "M:System.Speech.Recognition.GrammarBuilder.AppendWildcard", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L196C13-L197C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L196C13-L197C10" }, { "DocsId": "M:System.Speech.Recognition.GrammarBuilder.AppendRuleReference(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L204C13-L217C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L204C13-L217C10" }, { "DocsId": "M:System.Speech.Recognition.GrammarBuilder.AppendRuleReference(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L224C13-L238C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L224C13-L238C10" }, { "DocsId": "M:System.Speech.Recognition.GrammarBuilder.op_Addition(System.String,System.Speech.Recognition.GrammarBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L273C13-L273C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L273C13-L273C41" }, { "DocsId": "M:System.Speech.Recognition.GrammarBuilder.Add(System.String,System.Speech.Recognition.GrammarBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L278C13-L282C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L278C13-L282C28" }, { "DocsId": "M:System.Speech.Recognition.GrammarBuilder.op_Addition(System.Speech.Recognition.GrammarBuilder,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L287C13-L287C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L287C13-L287C41" }, { "DocsId": "M:System.Speech.Recognition.GrammarBuilder.Add(System.Speech.Recognition.GrammarBuilder,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L292C13-L296C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L292C13-L296C28" }, { "DocsId": "M:System.Speech.Recognition.GrammarBuilder.op_Addition(System.Speech.Recognition.Choices,System.Speech.Recognition.GrammarBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L301C13-L301C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L301C13-L301C42" }, { "DocsId": "M:System.Speech.Recognition.GrammarBuilder.Add(System.Speech.Recognition.Choices,System.Speech.Recognition.GrammarBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L306C13-L311C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L306C13-L311C28" }, { "DocsId": "M:System.Speech.Recognition.GrammarBuilder.op_Addition(System.Speech.Recognition.GrammarBuilder,System.Speech.Recognition.Choices)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L316C13-L316C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L316C13-L316C42" }, { "DocsId": "M:System.Speech.Recognition.GrammarBuilder.Add(System.Speech.Recognition.GrammarBuilder,System.Speech.Recognition.Choices)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L321C13-L326C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L321C13-L326C28" }, { "DocsId": "M:System.Speech.Recognition.GrammarBuilder.op_Addition(System.Speech.Recognition.GrammarBuilder,System.Speech.Recognition.GrammarBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L331C13-L331C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L331C13-L331C44" }, { "DocsId": "M:System.Speech.Recognition.GrammarBuilder.Add(System.Speech.Recognition.GrammarBuilder,System.Speech.Recognition.GrammarBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L336C13-L341C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L336C13-L341C28" }, { "DocsId": "M:System.Speech.Recognition.GrammarBuilder.op_Implicit(System.String)~System.Speech.Recognition.GrammarBuilder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L343C73-L343C107" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L343C73-L343C107" }, { "DocsId": "M:System.Speech.Recognition.GrammarBuilder.op_Implicit(System.Speech.Recognition.Choices)~System.Speech.Recognition.GrammarBuilder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L344C75-L344C110" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L344C75-L344C110" }, { "DocsId": "M:System.Speech.Recognition.GrammarBuilder.op_Implicit(System.Speech.Recognition.SemanticResultKey)~System.Speech.Recognition.GrammarBuilder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L345C89-L345C128" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L345C89-L345C128" }, { "DocsId": "M:System.Speech.Recognition.GrammarBuilder.op_Implicit(System.Speech.Recognition.SemanticResultValue)~System.Speech.Recognition.GrammarBuilder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L346C93-L346C134" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L346C93-L346C134" }, { "DocsId": "P:System.Speech.Recognition.GrammarBuilder.DebugShowPhrases", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L243C17-L243C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L243C17-L243C37" }, { "DocsId": "P:System.Speech.Recognition.GrammarBuilder.Culture", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L254C17-L254C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs#L254C17-L254C33" } ], "DocsId": "T:System.Speech.Recognition.GrammarBuilder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/GrammarBuilder.cs" }, { "Members": [ { "DocsId": "P:System.Speech.Recognition.LoadGrammarCompletedEventArgs.Grammar", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/LoadGrammarCompletedEventArgs.cs#L25C19-L25C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/LoadGrammarCompletedEventArgs.cs#L25C19-L25C35" } ], "DocsId": "T:System.Speech.Recognition.LoadGrammarCompletedEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/LoadGrammarCompletedEventArgs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/LoadGrammarCompletedEventArgs.cs" }, { "Members": [ { "DocsId": "P:System.Speech.Recognition.RecognizeCompletedEventArgs.Result", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/RecognizeCompletedEventArgs.cs#L29C19-L29C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/RecognizeCompletedEventArgs.cs#L29C19-L29C34" }, { "DocsId": "P:System.Speech.Recognition.RecognizeCompletedEventArgs.InitialSilenceTimeout", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/RecognizeCompletedEventArgs.cs#L33C19-L33C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/RecognizeCompletedEventArgs.cs#L33C19-L33C49" }, { "DocsId": "P:System.Speech.Recognition.RecognizeCompletedEventArgs.BabbleTimeout", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/RecognizeCompletedEventArgs.cs#L37C19-L37C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/RecognizeCompletedEventArgs.cs#L37C19-L37C41" }, { "DocsId": "P:System.Speech.Recognition.RecognizeCompletedEventArgs.InputStreamEnded", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/RecognizeCompletedEventArgs.cs#L41C19-L41C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/RecognizeCompletedEventArgs.cs#L41C19-L41C44" }, { "DocsId": "P:System.Speech.Recognition.RecognizeCompletedEventArgs.AudioPosition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/RecognizeCompletedEventArgs.cs#L45C19-L45C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/RecognizeCompletedEventArgs.cs#L45C19-L45C41" } ], "DocsId": "T:System.Speech.Recognition.RecognizeCompletedEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/RecognizeCompletedEventArgs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/RecognizeCompletedEventArgs.cs" }, { "Members": [ { "DocsId": "F:System.Speech.Recognition.RecognizeMode.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/RecognizeMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/RecognizeMode.cs" }, { "DocsId": "F:System.Speech.Recognition.RecognizeMode.Single", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/RecognizeMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/RecognizeMode.cs" }, { "DocsId": "F:System.Speech.Recognition.RecognizeMode.Multiple", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/RecognizeMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/RecognizeMode.cs" } ], "DocsId": "T:System.Speech.Recognition.RecognizeMode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/RecognizeMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/RecognizeMode.cs" }, { "Members": [ { "DocsId": "M:System.Speech.Recognition.RecognizerInfo.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/RecognizerInfo.cs#L100C13-L102C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/RecognizerInfo.cs#L100C13-L102C10" }, { "DocsId": "P:System.Speech.Recognition.RecognizerInfo.Id", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/RecognizerInfo.cs#L109C19-L109C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/RecognizerInfo.cs#L109C19-L109C30" }, { "DocsId": "P:System.Speech.Recognition.RecognizerInfo.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/RecognizerInfo.cs#L113C19-L113C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/RecognizerInfo.cs#L113C19-L113C32" }, { "DocsId": "P:System.Speech.Recognition.RecognizerInfo.Description", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/RecognizerInfo.cs#L117C19-L117C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/RecognizerInfo.cs#L117C19-L117C39" }, { "DocsId": "P:System.Speech.Recognition.RecognizerInfo.Culture", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/RecognizerInfo.cs#L121C19-L121C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/RecognizerInfo.cs#L121C19-L121C35" }, { "DocsId": "P:System.Speech.Recognition.RecognizerInfo.SupportedAudioFormats", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/RecognizerInfo.cs#L125C19-L125C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/RecognizerInfo.cs#L125C19-L125C49" }, { "DocsId": "P:System.Speech.Recognition.RecognizerInfo.AdditionalInfo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/RecognizerInfo.cs#L129C19-L129C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/RecognizerInfo.cs#L129C19-L129C38" } ], "DocsId": "T:System.Speech.Recognition.RecognizerInfo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/RecognizerInfo.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/RecognizerInfo.cs" }, { "Members": [ { "DocsId": "F:System.Speech.Recognition.RecognizerState.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/RecognizerState.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/RecognizerState.cs" }, { "DocsId": "F:System.Speech.Recognition.RecognizerState.Stopped", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/RecognizerState.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/RecognizerState.cs" }, { "DocsId": "F:System.Speech.Recognition.RecognizerState.Listening", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/RecognizerState.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/RecognizerState.cs" } ], "DocsId": "T:System.Speech.Recognition.RecognizerState", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/RecognizerState.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/RecognizerState.cs" }, { "Members": [ { "DocsId": "P:System.Speech.Recognition.StateChangedEventArgs.RecognizerState", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/RecognizerStateChangedEventArgs.cs#L22C19-L22C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/RecognizerStateChangedEventArgs.cs#L22C19-L22C43" } ], "DocsId": "T:System.Speech.Recognition.StateChangedEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/RecognizerStateChangedEventArgs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/RecognizerStateChangedEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Speech.Recognition.SemanticResultKey.#ctor(System.String,System.String[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SemanticResultKey.cs#L24C15-L34C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SemanticResultKey.cs#L24C15-L34C10" }, { "DocsId": "M:System.Speech.Recognition.SemanticResultKey.#ctor(System.String,System.Speech.Recognition.GrammarBuilder[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SemanticResultKey.cs#L37C15-L47C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SemanticResultKey.cs#L37C15-L47C10" }, { "DocsId": "M:System.Speech.Recognition.SemanticResultKey.ToGrammarBuilder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SemanticResultKey.cs#L54C13-L54C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SemanticResultKey.cs#L54C13-L54C45" } ], "DocsId": "T:System.Speech.Recognition.SemanticResultKey", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SemanticResultKey.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SemanticResultKey.cs" }, { "Members": [ { "DocsId": "M:System.Speech.Recognition.SemanticResultValue.#ctor(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SemanticResultValue.cs#L14C9-L19C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SemanticResultValue.cs#L14C9-L19C10" }, { "DocsId": "M:System.Speech.Recognition.SemanticResultValue.#ctor(System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SemanticResultValue.cs#L20C9-L26C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SemanticResultValue.cs#L20C9-L26C10" }, { "DocsId": "M:System.Speech.Recognition.SemanticResultValue.#ctor(System.Speech.Recognition.GrammarBuilder,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SemanticResultValue.cs#L27C9-L33C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SemanticResultValue.cs#L27C9-L33C10" }, { "DocsId": "M:System.Speech.Recognition.SemanticResultValue.ToGrammarBuilder", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SemanticResultValue.cs#L40C13-L40C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SemanticResultValue.cs#L40C13-L40C45" } ], "DocsId": "T:System.Speech.Recognition.SemanticResultValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SemanticResultValue.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SemanticResultValue.cs" }, { "Members": [ { "DocsId": "P:System.Speech.Recognition.SpeechDetectedEventArgs.AudioPosition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechDetectedEventArgs.cs#L22C19-L22C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechDetectedEventArgs.cs#L22C19-L22C41" } ], "DocsId": "T:System.Speech.Recognition.SpeechDetectedEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechDetectedEventArgs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechDetectedEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Speech.Recognition.SpeechRecognitionEngine.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L21C9-L24C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L21C9-L24C10" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognitionEngine.#ctor(System.Globalization.CultureInfo)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L25C9-L55C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L25C9-L55C10" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognitionEngine.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L56C9-L70C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L56C9-L70C10" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognitionEngine.#ctor(System.Speech.Recognition.RecognizerInfo)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L71C9-L76C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L71C9-L76C10" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognitionEngine.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L79C13-L81C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L79C13-L81C10" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognitionEngine.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L84C13-L98C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L84C13-L98C10" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognitionEngine.InstalledRecognizers", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L107C13-L130C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L107C13-L130C72" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognitionEngine.SetInputToWaveFile(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L227C13-L230C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L227C13-L230C10" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognitionEngine.SetInputToWaveStream(System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L233C13-L234C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L233C13-L234C10" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognitionEngine.SetInputToAudioStream(System.IO.Stream,System.Speech.AudioFormat.SpeechAudioFormatInfo)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L237C13-L241C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L237C13-L241C10" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognitionEngine.SetInputToNull", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L246C13-L247C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L246C13-L247C10" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognitionEngine.SetInputToDefaultAudioDevice", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L252C13-L253C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L252C13-L253C10" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognitionEngine.Recognize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L261C13-L261C71" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L261C13-L261C71" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognitionEngine.Recognize(System.TimeSpan)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L265C13-L270C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L265C13-L270C62" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognitionEngine.RecognizeAsync", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L276C13-L277C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L276C13-L277C10" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognitionEngine.RecognizeAsync(System.Speech.Recognition.RecognizeMode)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L282C13-L288C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L282C13-L288C10" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognitionEngine.RecognizeAsyncCancel", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L293C13-L294C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L293C13-L294C10" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognitionEngine.RecognizeAsyncStop", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L299C13-L300C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L299C13-L300C10" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognitionEngine.QueryRecognizerSetting(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L305C13-L305C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L305C13-L305C65" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognitionEngine.UpdateRecognizerSetting(System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L309C13-L310C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L309C13-L310C10" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognitionEngine.UpdateRecognizerSetting(System.String,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L313C13-L314C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L313C13-L314C10" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognitionEngine.LoadGrammar(System.Speech.Recognition.Grammar)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L317C13-L318C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L317C13-L318C10" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognitionEngine.LoadGrammarAsync(System.Speech.Recognition.Grammar)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L321C13-L322C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L321C13-L322C10" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognitionEngine.UnloadGrammar(System.Speech.Recognition.Grammar)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L325C13-L326C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L325C13-L326C10" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognitionEngine.UnloadAllGrammars", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L329C13-L330C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L329C13-L330C10" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognitionEngine.EmulateRecognize(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L333C13-L333C136" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L333C13-L333C136" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognitionEngine.EmulateRecognize(System.String,System.Globalization.CompareOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L337C13-L342C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L337C13-L342C73" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognitionEngine.EmulateRecognize(System.Speech.Recognition.RecognizedWordUnit[],System.Globalization.CompareOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L346C13-L351C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L346C13-L351C73" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognitionEngine.EmulateRecognizeAsync(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L355C13-L356C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L355C13-L356C10" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognitionEngine.EmulateRecognizeAsync(System.String,System.Globalization.CompareOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L359C13-L365C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L359C13-L365C10" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognitionEngine.EmulateRecognizeAsync(System.Speech.Recognition.RecognizedWordUnit[],System.Globalization.CompareOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L368C13-L374C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L368C13-L374C10" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognitionEngine.RequestRecognizerUpdate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L379C13-L380C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L379C13-L380C10" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognitionEngine.RequestRecognizerUpdate(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L383C13-L384C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L383C13-L384C10" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognitionEngine.RequestRecognizerUpdate(System.Object,System.TimeSpan)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L387C13-L388C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L387C13-L388C10" }, { "DocsId": "E:System.Speech.Recognition.SpeechRecognitionEngine.RecognizeCompleted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs" }, { "DocsId": "E:System.Speech.Recognition.SpeechRecognitionEngine.EmulateRecognizeCompleted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs" }, { "DocsId": "E:System.Speech.Recognition.SpeechRecognitionEngine.LoadGrammarCompleted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs" }, { "DocsId": "E:System.Speech.Recognition.SpeechRecognitionEngine.SpeechDetected", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs" }, { "DocsId": "E:System.Speech.Recognition.SpeechRecognitionEngine.SpeechRecognized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs" }, { "DocsId": "E:System.Speech.Recognition.SpeechRecognitionEngine.SpeechRecognitionRejected", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs" }, { "DocsId": "E:System.Speech.Recognition.SpeechRecognitionEngine.RecognizerUpdateReached", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs" }, { "DocsId": "E:System.Speech.Recognition.SpeechRecognitionEngine.SpeechHypothesized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L417C17-L423C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L417C17-L423C14" }, { "DocsId": "E:System.Speech.Recognition.SpeechRecognitionEngine.AudioSignalProblemOccurred", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L441C17-L447C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L441C17-L447C14" }, { "DocsId": "E:System.Speech.Recognition.SpeechRecognitionEngine.AudioLevelUpdated", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L465C17-L471C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L465C17-L471C14" }, { "DocsId": "E:System.Speech.Recognition.SpeechRecognitionEngine.AudioStateChanged", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L489C17-L495C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L489C17-L495C14" }, { "DocsId": "P:System.Speech.Recognition.SpeechRecognitionEngine.InitialSilenceTimeout", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L141C19-L141C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L141C19-L141C57" }, { "DocsId": "P:System.Speech.Recognition.SpeechRecognitionEngine.BabbleTimeout", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L147C19-L147C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L147C19-L147C49" }, { "DocsId": "P:System.Speech.Recognition.SpeechRecognitionEngine.EndSilenceTimeout", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L153C19-L153C127" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L153C19-L153C127" }, { "DocsId": "P:System.Speech.Recognition.SpeechRecognitionEngine.EndSilenceTimeoutAmbiguous", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L166C19-L166C135" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L166C19-L166C135" }, { "DocsId": "P:System.Speech.Recognition.SpeechRecognitionEngine.Grammars", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L180C19-L180C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L180C19-L180C44" }, { "DocsId": "P:System.Speech.Recognition.SpeechRecognitionEngine.RecognizerInfo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L186C19-L186C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L186C19-L186C50" }, { "DocsId": "P:System.Speech.Recognition.SpeechRecognitionEngine.AudioState", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L192C19-L192C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L192C19-L192C46" }, { "DocsId": "P:System.Speech.Recognition.SpeechRecognitionEngine.AudioLevel", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L198C19-L198C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L198C19-L198C46" }, { "DocsId": "P:System.Speech.Recognition.SpeechRecognitionEngine.RecognizerAudioPosition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L204C19-L204C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L204C19-L204C59" }, { "DocsId": "P:System.Speech.Recognition.SpeechRecognitionEngine.AudioPosition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L210C19-L210C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L210C19-L210C49" }, { "DocsId": "P:System.Speech.Recognition.SpeechRecognitionEngine.AudioFormat", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L214C19-L214C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L214C19-L214C47" }, { "DocsId": "P:System.Speech.Recognition.SpeechRecognitionEngine.MaxAlternates", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L218C19-L218C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs#L218C19-L218C49" } ], "DocsId": "T:System.Speech.Recognition.SpeechRecognitionEngine", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognitionEngine.cs" }, { "Members": [ { "DocsId": "M:System.Speech.Recognition.SpeechRecognizer.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L17C9-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L17C9-L20C10" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognizer.Dispose", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L23C13-L25C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L23C13-L25C10" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognizer.Dispose(System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L28C13-L42C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L28C13-L42C10" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognizer.LoadGrammar(System.Speech.Recognition.Grammar)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L116C13-L117C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L116C13-L117C10" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognizer.LoadGrammarAsync(System.Speech.Recognition.Grammar)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L120C13-L121C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L120C13-L121C10" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognizer.UnloadGrammar(System.Speech.Recognition.Grammar)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L124C13-L125C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L124C13-L125C10" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognizer.UnloadAllGrammars", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L128C13-L129C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L128C13-L129C10" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognizer.EmulateRecognize(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L132C13-L138C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L132C13-L138C88" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognizer.EmulateRecognize(System.String,System.Globalization.CompareOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L143C13-L149C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L143C13-L149C88" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognizer.EmulateRecognize(System.Speech.Recognition.RecognizedWordUnit[],System.Globalization.CompareOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L154C13-L160C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L154C13-L160C88" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognizer.EmulateRecognizeAsync(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L165C13-L171C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L165C13-L171C88" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognizer.EmulateRecognizeAsync(System.String,System.Globalization.CompareOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L176C13-L182C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L176C13-L182C88" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognizer.EmulateRecognizeAsync(System.Speech.Recognition.RecognizedWordUnit[],System.Globalization.CompareOptions)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L187C13-L193C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L187C13-L193C88" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognizer.RequestRecognizerUpdate", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L200C13-L201C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L200C13-L201C10" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognizer.RequestRecognizerUpdate(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L204C13-L205C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L204C13-L205C10" }, { "DocsId": "M:System.Speech.Recognition.SpeechRecognizer.RequestRecognizerUpdate(System.Object,System.TimeSpan)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L208C13-L209C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L208C13-L209C10" }, { "DocsId": "E:System.Speech.Recognition.SpeechRecognizer.StateChanged", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs" }, { "DocsId": "E:System.Speech.Recognition.SpeechRecognizer.EmulateRecognizeCompleted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs" }, { "DocsId": "E:System.Speech.Recognition.SpeechRecognizer.LoadGrammarCompleted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs" }, { "DocsId": "E:System.Speech.Recognition.SpeechRecognizer.SpeechDetected", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs" }, { "DocsId": "E:System.Speech.Recognition.SpeechRecognizer.SpeechRecognized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs" }, { "DocsId": "E:System.Speech.Recognition.SpeechRecognizer.SpeechRecognitionRejected", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs" }, { "DocsId": "E:System.Speech.Recognition.SpeechRecognizer.RecognizerUpdateReached", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs" }, { "DocsId": "E:System.Speech.Recognition.SpeechRecognizer.SpeechHypothesized", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L236C17-L242C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L236C17-L242C14" }, { "DocsId": "E:System.Speech.Recognition.SpeechRecognizer.AudioSignalProblemOccurred", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L260C17-L266C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L260C17-L266C14" }, { "DocsId": "E:System.Speech.Recognition.SpeechRecognizer.AudioLevelUpdated", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L284C17-L290C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L284C17-L290C14" }, { "DocsId": "E:System.Speech.Recognition.SpeechRecognizer.AudioStateChanged", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L308C17-L314C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L308C17-L314C14" }, { "DocsId": "P:System.Speech.Recognition.SpeechRecognizer.State", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L51C19-L51C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L51C19-L51C41" }, { "DocsId": "P:System.Speech.Recognition.SpeechRecognizer.Enabled", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L57C19-L57C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L57C19-L57C43" }, { "DocsId": "P:System.Speech.Recognition.SpeechRecognizer.PauseRecognizerOnRecognition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L62C19-L62C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L62C19-L62C64" }, { "DocsId": "P:System.Speech.Recognition.SpeechRecognizer.Grammars", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L69C19-L69C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L69C19-L69C44" }, { "DocsId": "P:System.Speech.Recognition.SpeechRecognizer.RecognizerInfo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L75C19-L75C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L75C19-L75C50" }, { "DocsId": "P:System.Speech.Recognition.SpeechRecognizer.AudioState", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L81C19-L81C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L81C19-L81C46" }, { "DocsId": "P:System.Speech.Recognition.SpeechRecognizer.AudioLevel", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L87C19-L87C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L87C19-L87C46" }, { "DocsId": "P:System.Speech.Recognition.SpeechRecognizer.AudioPosition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L93C19-L93C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L93C19-L93C49" }, { "DocsId": "P:System.Speech.Recognition.SpeechRecognizer.RecognizerAudioPosition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L99C19-L99C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L99C19-L99C59" }, { "DocsId": "P:System.Speech.Recognition.SpeechRecognizer.AudioFormat", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L103C19-L103C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L103C19-L103C47" }, { "DocsId": "P:System.Speech.Recognition.SpeechRecognizer.MaxAlternates", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L107C19-L107C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs#L107C19-L107C49" } ], "DocsId": "T:System.Speech.Recognition.SpeechRecognizer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechRecognizer.cs" }, { "Members": [ { "DocsId": "M:System.Speech.Recognition.SpeechUI.SendTextFeedback(System.Speech.Recognition.RecognitionResult,System.String,System.Boolean)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechUI.cs#L15C13-L18C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechUI.cs#L15C13-L18C73" } ], "DocsId": "T:System.Speech.Recognition.SpeechUI", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SpeechUI.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SpeechUI.cs" }, { "Members": [ { "DocsId": "F:System.Speech.Recognition.SubsetMatchingMode.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SubsetMatchingMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SubsetMatchingMode.cs" }, { "DocsId": "F:System.Speech.Recognition.SubsetMatchingMode.Subsequence", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SubsetMatchingMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SubsetMatchingMode.cs" }, { "DocsId": "F:System.Speech.Recognition.SubsetMatchingMode.OrderedSubset", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SubsetMatchingMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SubsetMatchingMode.cs" }, { "DocsId": "F:System.Speech.Recognition.SubsetMatchingMode.SubsequenceContentRequired", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SubsetMatchingMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SubsetMatchingMode.cs" }, { "DocsId": "F:System.Speech.Recognition.SubsetMatchingMode.OrderedSubsetContentRequired", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SubsetMatchingMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SubsetMatchingMode.cs" } ], "DocsId": "T:System.Speech.Recognition.SubsetMatchingMode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SubsetMatchingMode.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SubsetMatchingMode.cs" }, { "Members": [ { "DocsId": "P:System.Speech.Recognition.RecognizerUpdateReachedEventArgs.UserToken", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/UpdateEventArgs.cs#L25C19-L25C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/UpdateEventArgs.cs#L25C19-L25C37" }, { "DocsId": "P:System.Speech.Recognition.RecognizerUpdateReachedEventArgs.AudioPosition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/UpdateEventArgs.cs#L29C19-L29C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/UpdateEventArgs.cs#L29C19-L29C41" } ], "DocsId": "T:System.Speech.Recognition.RecognizerUpdateReachedEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/UpdateEventArgs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/UpdateEventArgs.cs" }, { "Members": [ { "DocsId": "P:System.Speech.Recognition.RecognitionEventArgs.Result", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/RecognitionEventArgs.cs#L20C19-L20C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/RecognitionEventArgs.cs#L20C19-L20C34" } ], "DocsId": "T:System.Speech.Recognition.RecognitionEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/RecognitionEventArgs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/RecognitionEventArgs.cs" }, { "Members": [], "DocsId": "T:System.Speech.Recognition.SpeechRecognizedEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/RecognitionEventArgs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/RecognitionEventArgs.cs" }, { "Members": [], "DocsId": "T:System.Speech.Recognition.SpeechRecognitionRejectedEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/RecognitionEventArgs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/RecognitionEventArgs.cs" }, { "Members": [], "DocsId": "T:System.Speech.Recognition.SpeechHypothesizedEventArgs", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/RecognitionEventArgs.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/RecognitionEventArgs.cs" }, { "Members": [ { "DocsId": "M:System.Speech.Recognition.RecognitionResult.GetAudioForWordRange(System.Speech.Recognition.RecognizedWordUnit,System.Speech.Recognition.RecognizedWordUnit)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/RecognitionResult.cs#L65C13-L68C139" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/RecognitionResult.cs#L65C13-L68C139" }, { "DocsId": "M:System.Speech.Recognition.RecognitionResult.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/RecognitionResult.cs#L74C13-L113C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/RecognitionResult.cs#L74C13-L113C10" }, { "DocsId": "P:System.Speech.Recognition.RecognitionResult.Audio", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/RecognitionResult.cs#L150C17-L193C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/RecognitionResult.cs#L150C17-L193C31" }, { "DocsId": "P:System.Speech.Recognition.RecognitionResult.Alternates", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/RecognitionResult.cs#L203C17-L203C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/RecognitionResult.cs#L203C17-L203C82" } ], "DocsId": "T:System.Speech.Recognition.RecognitionResult", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/RecognitionResult.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/RecognitionResult.cs" }, { "Members": [ { "DocsId": "M:System.Speech.Recognition.RecognizedAudio.WriteToWaveStream(System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/RecognizedAudio.cs#L48C13-L59C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/RecognizedAudio.cs#L48C13-L59C10" }, { "DocsId": "M:System.Speech.Recognition.RecognizedAudio.WriteToAudioStream(System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/RecognizedAudio.cs#L64C13-L70C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/RecognizedAudio.cs#L64C13-L70C10" }, { "DocsId": "M:System.Speech.Recognition.RecognizedAudio.GetRange(System.TimeSpan,System.TimeSpan)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/RecognizedAudio.cs#L75C13-L104C119" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/RecognizedAudio.cs#L75C13-L104C119" }, { "DocsId": "P:System.Speech.Recognition.RecognizedAudio.Format", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/RecognizedAudio.cs#L23C19-L23C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/RecognizedAudio.cs#L23C19-L23C39" }, { "DocsId": "P:System.Speech.Recognition.RecognizedAudio.StartTime", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/RecognizedAudio.cs#L29C19-L29C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/RecognizedAudio.cs#L29C19-L29C37" }, { "DocsId": "P:System.Speech.Recognition.RecognizedAudio.AudioPosition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/RecognizedAudio.cs#L36C19-L36C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/RecognizedAudio.cs#L36C19-L36C41" }, { "DocsId": "P:System.Speech.Recognition.RecognizedAudio.Duration", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/RecognizedAudio.cs#L42C19-L42C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/RecognizedAudio.cs#L42C19-L42C41" } ], "DocsId": "T:System.Speech.Recognition.RecognizedAudio", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/RecognizedAudio.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/RecognizedAudio.cs" }, { "Members": [ { "DocsId": "M:System.Speech.Recognition.RecognizedPhrase.ConstructSmlFromSemantics", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/RecognizedPhrase.cs#L37C13-L78C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/RecognizedPhrase.cs#L37C13-L78C29" }, { "DocsId": "P:System.Speech.Recognition.RecognizedPhrase.Text", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/RecognizedPhrase.cs#L88C17-L142C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/RecognizedPhrase.cs#L88C17-L142C30" }, { "DocsId": "P:System.Speech.Recognition.RecognizedPhrase.Confidence", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/RecognizedPhrase.cs#L149C17-L149C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/RecognizedPhrase.cs#L149C17-L149C36" }, { "DocsId": "P:System.Speech.Recognition.RecognizedPhrase.Words", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/RecognizedPhrase.cs#L156C17-L211C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/RecognizedPhrase.cs#L156C17-L211C31" }, { "DocsId": "P:System.Speech.Recognition.RecognizedPhrase.Semantics", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/RecognizedPhrase.cs#L220C17-L233C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/RecognizedPhrase.cs#L220C17-L233C35" }, { "DocsId": "P:System.Speech.Recognition.RecognizedPhrase.Homophones", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/RecognizedPhrase.cs#L242C17-L260C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/RecognizedPhrase.cs#L242C17-L260C36" }, { "DocsId": "P:System.Speech.Recognition.RecognizedPhrase.Grammar", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/RecognizedPhrase.cs#L268C17-L277C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/RecognizedPhrase.cs#L268C17-L277C33" }, { "DocsId": "P:System.Speech.Recognition.RecognizedPhrase.ReplacementWordUnits", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/RecognizedPhrase.cs#L284C17-L308C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/RecognizedPhrase.cs#L284C17-L308C41" }, { "DocsId": "P:System.Speech.Recognition.RecognizedPhrase.HomophoneGroupId", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/RecognizedPhrase.cs#L315C17-L315C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/RecognizedPhrase.cs#L315C17-L315C42" } ], "DocsId": "T:System.Speech.Recognition.RecognizedPhrase", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/RecognizedPhrase.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/RecognizedPhrase.cs" }, { "Members": [ { "DocsId": "M:System.Speech.Recognition.RecognizedWordUnit.#ctor(System.String,System.Single,System.String,System.String,System.Speech.Recognition.DisplayAttributes,System.TimeSpan,System.TimeSpan)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/RecognizedWordUnit.cs#L19C9-L35C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/RecognizedWordUnit.cs#L19C9-L35C10" }, { "DocsId": "P:System.Speech.Recognition.RecognizedWordUnit.Text", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/RecognizedWordUnit.cs#L46C19-L46C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/RecognizedWordUnit.cs#L46C19-L46C32" }, { "DocsId": "P:System.Speech.Recognition.RecognizedWordUnit.Confidence", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/RecognizedWordUnit.cs#L52C19-L52C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/RecognizedWordUnit.cs#L52C19-L52C38" }, { "DocsId": "P:System.Speech.Recognition.RecognizedWordUnit.Pronunciation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/RecognizedWordUnit.cs#L58C17-L58C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/RecognizedWordUnit.cs#L58C17-L58C39" }, { "DocsId": "P:System.Speech.Recognition.RecognizedWordUnit.LexicalForm", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/RecognizedWordUnit.cs#L63C19-L63C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/RecognizedWordUnit.cs#L63C19-L63C39" }, { "DocsId": "P:System.Speech.Recognition.RecognizedWordUnit.DisplayAttributes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/RecognizedWordUnit.cs#L67C19-L67C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/RecognizedWordUnit.cs#L67C19-L67C45" } ], "DocsId": "T:System.Speech.Recognition.RecognizedWordUnit", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/RecognizedWordUnit.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/RecognizedWordUnit.cs" }, { "Members": [ { "DocsId": "F:System.Speech.Recognition.DisplayAttributes.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/RecognizedWordUnit.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/RecognizedWordUnit.cs" }, { "DocsId": "F:System.Speech.Recognition.DisplayAttributes.None", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/RecognizedWordUnit.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/RecognizedWordUnit.cs" }, { "DocsId": "F:System.Speech.Recognition.DisplayAttributes.ZeroTrailingSpaces", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/RecognizedWordUnit.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/RecognizedWordUnit.cs" }, { "DocsId": "F:System.Speech.Recognition.DisplayAttributes.OneTrailingSpace", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/RecognizedWordUnit.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/RecognizedWordUnit.cs" }, { "DocsId": "F:System.Speech.Recognition.DisplayAttributes.TwoTrailingSpaces", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/RecognizedWordUnit.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/RecognizedWordUnit.cs" }, { "DocsId": "F:System.Speech.Recognition.DisplayAttributes.ConsumeLeadingSpaces", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/RecognizedWordUnit.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/RecognizedWordUnit.cs" } ], "DocsId": "T:System.Speech.Recognition.DisplayAttributes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/RecognizedWordUnit.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/RecognizedWordUnit.cs" }, { "Members": [ { "DocsId": "P:System.Speech.Recognition.ReplacementText.DisplayAttributes", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/ReplacementText.cs#L30C17-L30C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/ReplacementText.cs#L30C17-L30C43" }, { "DocsId": "P:System.Speech.Recognition.ReplacementText.Text", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/ReplacementText.cs#L37C17-L37C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/ReplacementText.cs#L37C17-L37C30" }, { "DocsId": "P:System.Speech.Recognition.ReplacementText.FirstWordIndex", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/ReplacementText.cs#L44C17-L44C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/ReplacementText.cs#L44C17-L44C35" }, { "DocsId": "P:System.Speech.Recognition.ReplacementText.CountOfWords", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/ReplacementText.cs#L51C17-L51C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/ReplacementText.cs#L51C17-L51C38" } ], "DocsId": "T:System.Speech.Recognition.ReplacementText", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/ReplacementText.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/ReplacementText.cs" }, { "Members": [ { "DocsId": "M:System.Speech.Recognition.SemanticValue.#ctor(System.String,System.Object,System.Single)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/SemanticValue.cs#L19C9-L27C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/SemanticValue.cs#L19C9-L27C10" }, { "DocsId": "M:System.Speech.Recognition.SemanticValue.#ctor(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/SemanticValue.cs#L30C15-L32C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/SemanticValue.cs#L30C15-L32C10" }, { "DocsId": "M:System.Speech.Recognition.SemanticValue.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/SemanticValue.cs#L39C13-L53C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/SemanticValue.cs#L39C13-L53C10" }, { "DocsId": "M:System.Speech.Recognition.SemanticValue.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/SemanticValue.cs#L56C13-L56C26" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/SemanticValue.cs#L56C13-L56C26" }, { "DocsId": "M:System.Speech.Recognition.SemanticValue.Contains(System.Collections.Generic.KeyValuePair{System.String,System.Speech.Recognition.SemanticValue})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/SemanticValue.cs#L97C13-L97C97" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/SemanticValue.cs#L97C13-L97C97" }, { "DocsId": "M:System.Speech.Recognition.SemanticValue.ContainsKey(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/SemanticValue.cs#L101C13-L101C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/SemanticValue.cs#L101C13-L101C49" }, { "DocsId": "M:System.Speech.Recognition.SemanticValue.System#Collections#Generic#ICollection>#Add(System.Collections.Generic.KeyValuePair{System.String,System.Speech.Recognition.SemanticValue})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/SemanticValue.cs#L113C13-L113C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/SemanticValue.cs#L113C13-L113C78" }, { "DocsId": "M:System.Speech.Recognition.SemanticValue.System#Collections#Generic#IDictionary#Add(System.String,System.Speech.Recognition.SemanticValue)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/SemanticValue.cs#L118C13-L118C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/SemanticValue.cs#L118C13-L118C78" }, { "DocsId": "M:System.Speech.Recognition.SemanticValue.System#Collections#Generic#ICollection>#Clear", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/SemanticValue.cs#L123C13-L123C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/SemanticValue.cs#L123C13-L123C78" }, { "DocsId": "M:System.Speech.Recognition.SemanticValue.System#Collections#Generic#ICollection>#Remove(System.Collections.Generic.KeyValuePair{System.String,System.Speech.Recognition.SemanticValue})", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/SemanticValue.cs#L128C13-L128C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/SemanticValue.cs#L128C13-L128C78" }, { "DocsId": "M:System.Speech.Recognition.SemanticValue.System#Collections#Generic#IDictionary#Remove(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/SemanticValue.cs#L133C13-L133C78" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/SemanticValue.cs#L133C13-L133C78" }, { "DocsId": "M:System.Speech.Recognition.SemanticValue.System#Collections#Generic#ICollection>#CopyTo(System.Collections.Generic.KeyValuePair{System.String,System.Speech.Recognition.SemanticValue}[],System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/SemanticValue.cs#L137C13-L138C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/SemanticValue.cs#L137C13-L138C10" }, { "DocsId": "M:System.Speech.Recognition.SemanticValue.System#Collections#Generic#IEnumerable>#GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/SemanticValue.cs#L141C13-L141C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/SemanticValue.cs#L141C13-L141C48" }, { "DocsId": "M:System.Speech.Recognition.SemanticValue.System#Collections#Generic#ICollection>#get_IsReadOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/SemanticValue.cs#L146C19-L146C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/SemanticValue.cs#L146C19-L146C31" }, { "DocsId": "M:System.Speech.Recognition.SemanticValue.System#Collections#Generic#IDictionary#get_Keys", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/SemanticValue.cs#L151C19-L151C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/SemanticValue.cs#L151C19-L151C43" }, { "DocsId": "M:System.Speech.Recognition.SemanticValue.System#Collections#Generic#IDictionary#get_Values", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/SemanticValue.cs#L156C19-L156C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/SemanticValue.cs#L156C19-L156C45" }, { "DocsId": "M:System.Speech.Recognition.SemanticValue.System#Collections#IEnumerable#GetEnumerator", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/SemanticValue.cs#L160C13-L160C93" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/SemanticValue.cs#L160C13-L160C93" }, { "DocsId": "M:System.Speech.Recognition.SemanticValue.System#Collections#Generic#IDictionary#TryGetValue(System.String,System.Speech.Recognition.SemanticValue@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/SemanticValue.cs#L165C13-L165C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/SemanticValue.cs#L165C13-L165C60" }, { "DocsId": "P:System.Speech.Recognition.SemanticValue.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/SemanticValue.cs#L69C17-L69C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/SemanticValue.cs#L69C17-L69C31" }, { "DocsId": "P:System.Speech.Recognition.SemanticValue.Confidence", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/SemanticValue.cs#L82C17-L82C36" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/SemanticValue.cs#L82C17-L82C36" }, { "DocsId": "P:System.Speech.Recognition.SemanticValue.Item(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/SemanticValue.cs#L92C19-L92C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/SemanticValue.cs#L92C19-L92C43" }, { "DocsId": "P:System.Speech.Recognition.SemanticValue.Count", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/SemanticValue.cs#L105C19-L105C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/SemanticValue.cs#L105C19-L105C44" }, { "DocsId": "P:System.Speech.Recognition.SemanticValue.System#Collections#Generic#ICollection>#IsReadOnly", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/SemanticValue.cs#L146C19-L146C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/SemanticValue.cs#L146C19-L146C31" }, { "DocsId": "P:System.Speech.Recognition.SemanticValue.System#Collections#Generic#IDictionary#Keys", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/SemanticValue.cs#L151C19-L151C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/SemanticValue.cs#L151C19-L151C43" }, { "DocsId": "P:System.Speech.Recognition.SemanticValue.System#Collections#Generic#IDictionary#Values", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/SemanticValue.cs#L156C19-L156C45" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/SemanticValue.cs#L156C19-L156C45" } ], "DocsId": "T:System.Speech.Recognition.SemanticValue", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Result/SemanticValue.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Result/SemanticValue.cs" }, { "Members": [ { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsDocument.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs#L26C9-L29C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs#L26C9-L29C10" }, { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsDocument.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs#L31C9-L39C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs#L31C9-L39C10" }, { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsDocument.#ctor(System.Xml.XmlReader)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs#L40C9-L45C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs#L40C9-L45C10" }, { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsDocument.#ctor(System.Speech.Recognition.GrammarBuilder)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs#L46C9-L63C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs#L46C9-L63C10" }, { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsDocument.#ctor(System.Speech.Recognition.SrgsGrammar.SrgsRule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs#L65C57-L71C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs#L65C57-L71C10" }, { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsDocument.WriteSrgs(System.Xml.XmlWriter)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs#L78C13-L85C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs#L78C13-L85C10" }, { "DocsId": "P:System.Speech.Recognition.SrgsGrammar.SrgsDocument.XmlBase", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs#L98C17-L98C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs#L98C17-L98C41" }, { "DocsId": "P:System.Speech.Recognition.SrgsGrammar.SrgsDocument.Culture", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs#L116C17-L116C41" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs#L116C17-L116C41" }, { "DocsId": "P:System.Speech.Recognition.SrgsGrammar.SrgsDocument.Root", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs#L136C17-L136C38" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs#L136C17-L136C38" }, { "DocsId": "P:System.Speech.Recognition.SrgsGrammar.SrgsDocument.Mode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs#L154C17-L154C113" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs#L154C17-L154C113" }, { "DocsId": "P:System.Speech.Recognition.SrgsGrammar.SrgsDocument.PhoneticAlphabet", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs#L169C17-L169C72" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs#L169C17-L169C72" }, { "DocsId": "P:System.Speech.Recognition.SrgsGrammar.SrgsDocument.Rules", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs#L186C17-L186C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs#L186C17-L186C39" }, { "DocsId": "P:System.Speech.Recognition.SrgsGrammar.SrgsDocument.Language", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs#L197C17-L197C42" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs#L197C17-L197C42" }, { "DocsId": "P:System.Speech.Recognition.SrgsGrammar.SrgsDocument.Namespace", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs#L215C17-L215C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs#L215C17-L215C43" }, { "DocsId": "P:System.Speech.Recognition.SrgsGrammar.SrgsDocument.CodeBehind", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs#L233C17-L233C44" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs#L233C17-L233C44" }, { "DocsId": "P:System.Speech.Recognition.SrgsGrammar.SrgsDocument.Debug", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs#L244C17-L244C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs#L244C17-L244C39" }, { "DocsId": "P:System.Speech.Recognition.SrgsGrammar.SrgsDocument.Script", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs#L259C17-L259C40" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs#L259C17-L259C40" }, { "DocsId": "P:System.Speech.Recognition.SrgsGrammar.SrgsDocument.ImportNamespaces", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs#L275C17-L275C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs#L275C17-L275C50" }, { "DocsId": "P:System.Speech.Recognition.SrgsGrammar.SrgsDocument.AssemblyReferences", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs#L286C17-L286C52" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs#L286C17-L286C52" } ], "DocsId": "T:System.Speech.Recognition.SrgsGrammar.SrgsDocument", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs" }, { "Members": [ { "DocsId": "F:System.Speech.Recognition.SrgsGrammar.SrgsGrammarMode.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs" }, { "DocsId": "F:System.Speech.Recognition.SrgsGrammar.SrgsGrammarMode.Voice", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs" }, { "DocsId": "F:System.Speech.Recognition.SrgsGrammar.SrgsGrammarMode.Dtmf", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs" } ], "DocsId": "T:System.Speech.Recognition.SrgsGrammar.SrgsGrammarMode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs" }, { "Members": [ { "DocsId": "F:System.Speech.Recognition.SrgsGrammar.SrgsPhoneticAlphabet.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs" }, { "DocsId": "F:System.Speech.Recognition.SrgsGrammar.SrgsPhoneticAlphabet.Sapi", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs" }, { "DocsId": "F:System.Speech.Recognition.SrgsGrammar.SrgsPhoneticAlphabet.Ipa", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs" }, { "DocsId": "F:System.Speech.Recognition.SrgsGrammar.SrgsPhoneticAlphabet.Ups", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs" } ], "DocsId": "T:System.Speech.Recognition.SrgsGrammar.SrgsPhoneticAlphabet", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsDocument.cs" }, { "Members": [ { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsElement.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsElement.cs#L18C9-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsElement.cs#L18C9-L20C10" }, { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsElement.System#Speech#Internal#SrgsParser#IElement#PostParse(System.Speech.Internal.SrgsParser.IElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsElement.cs#L48C9-L48C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsElement.cs#L48C9-L48C10" } ], "DocsId": "T:System.Speech.Recognition.SrgsGrammar.SrgsElement", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsElement.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsElement.cs" }, { "Members": [ { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsGrammarCompiler.Compile(System.String,System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsGrammarCompiler.cs#L24C13-L31C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsGrammarCompiler.cs#L24C13-L31C10" }, { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsGrammarCompiler.Compile(System.Speech.Recognition.SrgsGrammar.SrgsDocument,System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsGrammarCompiler.cs#L38C13-L42C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsGrammarCompiler.cs#L38C13-L42C10" }, { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsGrammarCompiler.Compile(System.Xml.XmlReader,System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsGrammarCompiler.cs#L49C13-L53C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsGrammarCompiler.cs#L49C13-L53C10" }, { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsGrammarCompiler.CompileClassLibrary(System.String[],System.String,System.String[],System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsGrammarCompiler.cs#L60C13-L87C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsGrammarCompiler.cs#L60C13-L87C10" }, { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsGrammarCompiler.CompileClassLibrary(System.Speech.Recognition.SrgsGrammar.SrgsDocument,System.String,System.String[],System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsGrammarCompiler.cs#L94C13-L98C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsGrammarCompiler.cs#L94C13-L98C10" }, { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsGrammarCompiler.CompileClassLibrary(System.Xml.XmlReader,System.String,System.String[],System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsGrammarCompiler.cs#L105C13-L109C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsGrammarCompiler.cs#L105C13-L109C10" } ], "DocsId": "T:System.Speech.Recognition.SrgsGrammar.SrgsGrammarCompiler", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsGrammarCompiler.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsGrammarCompiler.cs" }, { "Members": [ { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsItem.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsItem.cs#L306C9-L23C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsItem.cs#L306C9-L23C10" }, { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsItem.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsItem.cs#L25C15-L30C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsItem.cs#L25C15-L30C10" }, { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsItem.#ctor(System.Speech.Recognition.SrgsGrammar.SrgsElement[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsItem.cs#L32C15-L44C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsItem.cs#L32C15-L44C10" }, { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsItem.#ctor(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsItem.cs#L46C15-L49C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsItem.cs#L46C15-L49C10" }, { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsItem.#ctor(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsItem.cs#L51C15-L54C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsItem.cs#L51C15-L54C10" }, { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsItem.#ctor(System.Int32,System.Int32,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsItem.cs#L58C15-L61C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsItem.cs#L58C15-L61C10" }, { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsItem.#ctor(System.Int32,System.Int32,System.Speech.Recognition.SrgsGrammar.SrgsElement[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsItem.cs#L63C15-L66C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsItem.cs#L63C15-L66C10" }, { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsItem.SetRepeat(System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsItem.cs#L74C13-L79C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsItem.cs#L74C13-L79C10" }, { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsItem.SetRepeat(System.Int32,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsItem.cs#L83C13-L99C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsItem.cs#L83C13-L99C10" }, { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsItem.Add(System.Speech.Recognition.SrgsGrammar.SrgsElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsItem.cs#L102C13-L105C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsItem.cs#L102C13-L105C10" }, { "DocsId": "P:System.Speech.Recognition.SrgsGrammar.SrgsItem.Elements", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsItem.cs#L114C17-L114C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsItem.cs#L114C17-L114C34" }, { "DocsId": "P:System.Speech.Recognition.SrgsGrammar.SrgsItem.RepeatProbability", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsItem.cs#L122C17-L122C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsItem.cs#L122C17-L122C43" }, { "DocsId": "P:System.Speech.Recognition.SrgsGrammar.SrgsItem.MinRepeat", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsItem.cs#L139C17-L139C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsItem.cs#L139C17-L139C62" }, { "DocsId": "P:System.Speech.Recognition.SrgsGrammar.SrgsItem.MaxRepeat", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsItem.cs#L147C17-L147C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsItem.cs#L147C17-L147C62" }, { "DocsId": "P:System.Speech.Recognition.SrgsGrammar.SrgsItem.Weight", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsItem.cs#L154C17-L154C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsItem.cs#L154C17-L154C32" } ], "DocsId": "T:System.Speech.Recognition.SrgsGrammar.SrgsItem", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsItem.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsItem.cs" }, { "Members": [ { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsNameValueTag.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsNameValueTag.cs#L18C9-L20C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsNameValueTag.cs#L18C9-L20C10" }, { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsNameValueTag.#ctor(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsNameValueTag.cs#L21C9-L26C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsNameValueTag.cs#L21C9-L26C10" }, { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsNameValueTag.#ctor(System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsNameValueTag.cs#L28C15-L31C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsNameValueTag.cs#L28C15-L31C10" }, { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsNameValueTag.System#Speech#Internal#SrgsParser#IPropertyTag#NameValue(System.Speech.Internal.SrgsParser.IElement,System.String,System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsNameValueTag.cs#L128C13-L130C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsNameValueTag.cs#L128C13-L130C10" }, { "DocsId": "P:System.Speech.Recognition.SrgsGrammar.SrgsNameValueTag.Name", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsNameValueTag.cs#L41C17-L41C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsNameValueTag.cs#L41C17-L41C30" }, { "DocsId": "P:System.Speech.Recognition.SrgsGrammar.SrgsNameValueTag.Value", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsNameValueTag.cs#L54C19-L54C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsNameValueTag.cs#L54C19-L54C33" } ], "DocsId": "T:System.Speech.Recognition.SrgsGrammar.SrgsNameValueTag", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsNameValueTag.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsNameValueTag.cs" }, { "Members": [ { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsOneOf.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsOneOf.cs#L126C9-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsOneOf.cs#L126C9-L21C10" }, { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsOneOf.#ctor(System.String[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsOneOf.cs#L23C15-L36C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsOneOf.cs#L23C15-L36C10" }, { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsOneOf.#ctor(System.Speech.Recognition.SrgsGrammar.SrgsItem[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsOneOf.cs#L38C15-L52C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsOneOf.cs#L38C15-L52C10" }, { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsOneOf.Add(System.Speech.Recognition.SrgsGrammar.SrgsItem)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsOneOf.cs#L59C13-L62C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsOneOf.cs#L59C13-L62C10" }, { "DocsId": "P:System.Speech.Recognition.SrgsGrammar.SrgsOneOf.Items", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsOneOf.cs#L73C17-L73C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsOneOf.cs#L73C17-L73C31" } ], "DocsId": "T:System.Speech.Recognition.SrgsGrammar.SrgsOneOf", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsOneOf.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsOneOf.cs" }, { "Members": [ { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsRule.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRule.cs#L26C15-L30C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRule.cs#L26C15-L30C10" }, { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsRule.#ctor(System.String,System.Speech.Recognition.SrgsGrammar.SrgsElement[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRule.cs#L32C15-L47C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRule.cs#L32C15-L47C10" }, { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsRule.Add(System.Speech.Recognition.SrgsGrammar.SrgsElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRule.cs#L54C13-L57C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRule.cs#L54C13-L57C10" }, { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsRule.System#Speech#Internal#SrgsParser#IElement#PostParse(System.Speech.Internal.SrgsParser.IElement)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRule.cs#L315C13-L316C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRule.cs#L315C13-L316C10" }, { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsRule.System#Speech#Internal#SrgsParser#IRule#CreateScript(System.Speech.Internal.SrgsParser.IGrammar,System.String,System.String,System.Speech.Internal.SrgsParser.RuleMethodScript)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRule.cs#L323C21-L343C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRule.cs#L16707566C0-L343C10" }, { "DocsId": "P:System.Speech.Recognition.SrgsGrammar.SrgsRule.Elements", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRule.cs#L66C17-L66C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRule.cs#L66C17-L66C34" }, { "DocsId": "P:System.Speech.Recognition.SrgsGrammar.SrgsRule.Id", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRule.cs#L73C17-L73C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRule.cs#L73C17-L73C28" }, { "DocsId": "P:System.Speech.Recognition.SrgsGrammar.SrgsRule.Scope", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRule.cs#L85C17-L85C31" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRule.cs#L85C17-L85C31" }, { "DocsId": "P:System.Speech.Recognition.SrgsGrammar.SrgsRule.BaseClass", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRule.cs#L101C17-L101C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRule.cs#L101C17-L101C35" }, { "DocsId": "P:System.Speech.Recognition.SrgsGrammar.SrgsRule.Script", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRule.cs#L119C17-L119C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRule.cs#L119C17-L119C32" }, { "DocsId": "P:System.Speech.Recognition.SrgsGrammar.SrgsRule.OnInit", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRule.cs#L135C17-L135C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRule.cs#L135C17-L135C32" }, { "DocsId": "P:System.Speech.Recognition.SrgsGrammar.SrgsRule.OnParse", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRule.cs#L151C17-L151C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRule.cs#L151C17-L151C33" }, { "DocsId": "P:System.Speech.Recognition.SrgsGrammar.SrgsRule.OnError", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRule.cs#L167C17-L167C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRule.cs#L167C17-L167C33" }, { "DocsId": "P:System.Speech.Recognition.SrgsGrammar.SrgsRule.OnRecognition", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRule.cs#L183C17-L183C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRule.cs#L183C17-L183C39" } ], "DocsId": "T:System.Speech.Recognition.SrgsGrammar.SrgsRule", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRule.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRule.cs" }, { "Members": [ { "DocsId": "F:System.Speech.Recognition.SrgsGrammar.SrgsRuleScope.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRule.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRule.cs" }, { "DocsId": "F:System.Speech.Recognition.SrgsGrammar.SrgsRuleScope.Public", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRule.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRule.cs" }, { "DocsId": "F:System.Speech.Recognition.SrgsGrammar.SrgsRuleScope.Private", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRule.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRule.cs" } ], "DocsId": "T:System.Speech.Recognition.SrgsGrammar.SrgsRuleScope", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRule.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRule.cs" }, { "Members": [ { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsRuleRef.#ctor(System.Uri)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRuleRef.cs#L19C9-L22C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRuleRef.cs#L19C9-L22C10" }, { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsRuleRef.#ctor(System.Uri,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRuleRef.cs#L23C9-L28C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRuleRef.cs#L23C9-L28C10" }, { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsRuleRef.#ctor(System.Uri,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRuleRef.cs#L29C9-L34C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRuleRef.cs#L29C9-L34C10" }, { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsRuleRef.#ctor(System.Uri,System.String,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRuleRef.cs#L35C9-L40C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRuleRef.cs#L35C9-L40C10" }, { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsRuleRef.#ctor(System.Speech.Recognition.SrgsGrammar.SrgsRule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRuleRef.cs#L41C9-L46C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRuleRef.cs#L41C9-L46C10" }, { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsRuleRef.#ctor(System.Speech.Recognition.SrgsGrammar.SrgsRule,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRuleRef.cs#L48C15-L53C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRuleRef.cs#L48C15-L53C10" }, { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsRuleRef.#ctor(System.Speech.Recognition.SrgsGrammar.SrgsRule,System.String,System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRuleRef.cs#L55C15-L61C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRuleRef.cs#L55C15-L61C10" }, { "DocsId": "F:System.Speech.Recognition.SrgsGrammar.SrgsRuleRef.Null", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRuleRef.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRuleRef.cs" }, { "DocsId": "F:System.Speech.Recognition.SrgsGrammar.SrgsRuleRef.Void", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRuleRef.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRuleRef.cs" }, { "DocsId": "F:System.Speech.Recognition.SrgsGrammar.SrgsRuleRef.Garbage", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRuleRef.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRuleRef.cs" }, { "DocsId": "F:System.Speech.Recognition.SrgsGrammar.SrgsRuleRef.Dictation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRuleRef.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRuleRef.cs" }, { "DocsId": "F:System.Speech.Recognition.SrgsGrammar.SrgsRuleRef.MnemonicSpelling", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRuleRef.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRuleRef.cs" }, { "DocsId": "P:System.Speech.Recognition.SrgsGrammar.SrgsRuleRef.Uri", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRuleRef.cs#L86C17-L86C29" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRuleRef.cs#L86C17-L86C29" }, { "DocsId": "P:System.Speech.Recognition.SrgsGrammar.SrgsRuleRef.SemanticKey", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRuleRef.cs#L97C17-L97C37" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRuleRef.cs#L97C17-L97C37" }, { "DocsId": "P:System.Speech.Recognition.SrgsGrammar.SrgsRuleRef.Params", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRuleRef.cs#L108C17-L108C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRuleRef.cs#L108C17-L108C32" } ], "DocsId": "T:System.Speech.Recognition.SrgsGrammar.SrgsRuleRef", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRuleRef.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRuleRef.cs" }, { "Members": [ { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsRulesCollection.Add(System.Speech.Recognition.SrgsGrammar.SrgsRule[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRulesCollection.cs#L14C13-L24C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRulesCollection.cs#L14C13-L24C10" }, { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsRulesCollection.GetKeyForItem(System.Speech.Recognition.SrgsGrammar.SrgsRule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRulesCollection.cs#L27C13-L29C28" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRulesCollection.cs#L27C13-L29C28" }, { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsRulesCollection.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRulesCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRulesCollection.cs" } ], "DocsId": "T:System.Speech.Recognition.SrgsGrammar.SrgsRulesCollection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRulesCollection.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsRulesCollection.cs" }, { "Members": [ { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsSemanticInterpretationTag.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsSemanticInterpretationTag.cs#L98C9-L19C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsSemanticInterpretationTag.cs#L98C9-L19C10" }, { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsSemanticInterpretationTag.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsSemanticInterpretationTag.cs#L98C9-L25C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsSemanticInterpretationTag.cs#L98C9-L25C10" }, { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsSemanticInterpretationTag.System#Speech#Internal#SrgsParser#ISemanticTag#Content(System.Speech.Internal.SrgsParser.IElement,System.String,System.Int32)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsSemanticInterpretationTag.cs#L91C13-L92C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsSemanticInterpretationTag.cs#L91C13-L92C10" }, { "DocsId": "P:System.Speech.Recognition.SrgsGrammar.SrgsSemanticInterpretationTag.Script", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsSemanticInterpretationTag.cs#L34C17-L34C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsSemanticInterpretationTag.cs#L34C17-L34C32" } ], "DocsId": "T:System.Speech.Recognition.SrgsGrammar.SrgsSemanticInterpretationTag", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsSemanticInterpretationTag.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsSemanticInterpretationTag.cs" }, { "Members": [ { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsSubset.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsSubset.cs#L19C15-L21C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsSubset.cs#L19C15-L21C10" }, { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsSubset.#ctor(System.String,System.Speech.Recognition.SubsetMatchingMode)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsSubset.cs#L22C9-L35C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsSubset.cs#L22C9-L35C10" }, { "DocsId": "P:System.Speech.Recognition.SrgsGrammar.SrgsSubset.MatchingMode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsSubset.cs#L44C17-L44C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsSubset.cs#L44C17-L44C35" }, { "DocsId": "P:System.Speech.Recognition.SrgsGrammar.SrgsSubset.Text", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsSubset.cs#L60C17-L60C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsSubset.cs#L60C17-L60C30" } ], "DocsId": "T:System.Speech.Recognition.SrgsGrammar.SrgsSubset", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsSubset.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsSubset.cs" }, { "Members": [ { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsText.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsText.cs#L67C9-L18C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsText.cs#L67C9-L18C10" }, { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsText.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsText.cs#L67C9-L24C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsText.cs#L67C9-L24C10" }, { "DocsId": "P:System.Speech.Recognition.SrgsGrammar.SrgsText.Text", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsText.cs#L33C17-L33C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsText.cs#L33C17-L33C30" } ], "DocsId": "T:System.Speech.Recognition.SrgsGrammar.SrgsText", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsText.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsText.cs" }, { "Members": [ { "DocsId": "M:System.Speech.Recognition.SrgsGrammar.SrgsToken.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsToken.cs#L161C9-L23C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsToken.cs#L161C9-L23C10" }, { "DocsId": "P:System.Speech.Recognition.SrgsGrammar.SrgsToken.Text", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsToken.cs#L32C17-L32C30" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsToken.cs#L32C17-L32C30" }, { "DocsId": "P:System.Speech.Recognition.SrgsGrammar.SrgsToken.Pronunciation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsToken.cs#L51C17-L51C39" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsToken.cs#L51C17-L51C39" }, { "DocsId": "P:System.Speech.Recognition.SrgsGrammar.SrgsToken.Display", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsToken.cs#L63C17-L63C33" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsToken.cs#L63C17-L63C33" } ], "DocsId": "T:System.Speech.Recognition.SrgsGrammar.SrgsToken", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsToken.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/Recognition/SrgsGrammar/SrgsToken.cs" }, { "Members": [ { "DocsId": "F:System.Speech.AudioFormat.EncodingFormat.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/AudioFormat/EncodingFormat.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/AudioFormat/EncodingFormat.cs" }, { "DocsId": "F:System.Speech.AudioFormat.EncodingFormat.Pcm", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/AudioFormat/EncodingFormat.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/AudioFormat/EncodingFormat.cs" }, { "DocsId": "F:System.Speech.AudioFormat.EncodingFormat.ALaw", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/AudioFormat/EncodingFormat.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/AudioFormat/EncodingFormat.cs" }, { "DocsId": "F:System.Speech.AudioFormat.EncodingFormat.ULaw", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/AudioFormat/EncodingFormat.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/AudioFormat/EncodingFormat.cs" } ], "DocsId": "T:System.Speech.AudioFormat.EncodingFormat", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/AudioFormat/EncodingFormat.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/AudioFormat/EncodingFormat.cs" }, { "Members": [ { "DocsId": "M:System.Speech.AudioFormat.SpeechAudioFormatInfo.#ctor(System.Speech.AudioFormat.EncodingFormat,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Byte[])", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/AudioFormat/SpeechAudioFormatInfo.cs#L63C15-L76C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/AudioFormat/SpeechAudioFormatInfo.cs#L63C15-L76C10" }, { "DocsId": "M:System.Speech.AudioFormat.SpeechAudioFormatInfo.#ctor(System.Int32,System.Speech.AudioFormat.AudioBitsPerSample,System.Speech.AudioFormat.AudioChannel)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/AudioFormat/SpeechAudioFormatInfo.cs#L78C15-L83C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/AudioFormat/SpeechAudioFormatInfo.cs#L78C15-L83C10" }, { "DocsId": "M:System.Speech.AudioFormat.SpeechAudioFormatInfo.FormatSpecificData", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/AudioFormat/SpeechAudioFormatInfo.cs#L101C46-L101C89" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/AudioFormat/SpeechAudioFormatInfo.cs#L101C46-L101C89" }, { "DocsId": "M:System.Speech.AudioFormat.SpeechAudioFormatInfo.Equals(System.Object)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/AudioFormat/SpeechAudioFormatInfo.cs#L104C13-L130C25" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/AudioFormat/SpeechAudioFormatInfo.cs#L104C13-L130C25" }, { "DocsId": "M:System.Speech.AudioFormat.SpeechAudioFormatInfo.GetHashCode", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/AudioFormat/SpeechAudioFormatInfo.cs#L134C13-L134C57" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/AudioFormat/SpeechAudioFormatInfo.cs#L134C13-L134C57" }, { "DocsId": "P:System.Speech.AudioFormat.SpeechAudioFormatInfo.AverageBytesPerSecond", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/AudioFormat/SpeechAudioFormatInfo.cs#L89C50-L89C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/AudioFormat/SpeechAudioFormatInfo.cs#L89C50-L89C80" }, { "DocsId": "P:System.Speech.AudioFormat.SpeechAudioFormatInfo.BitsPerSample", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/AudioFormat/SpeechAudioFormatInfo.cs#L91C42-L91C64" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/AudioFormat/SpeechAudioFormatInfo.cs#L91C42-L91C64" }, { "DocsId": "P:System.Speech.AudioFormat.SpeechAudioFormatInfo.BlockAlign", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/AudioFormat/SpeechAudioFormatInfo.cs#L93C39-L93C58" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/AudioFormat/SpeechAudioFormatInfo.cs#L93C39-L93C58" }, { "DocsId": "P:System.Speech.AudioFormat.SpeechAudioFormatInfo.EncodingFormat", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/AudioFormat/SpeechAudioFormatInfo.cs#L94C54-L94C77" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/AudioFormat/SpeechAudioFormatInfo.cs#L94C54-L94C77" }, { "DocsId": "P:System.Speech.AudioFormat.SpeechAudioFormatInfo.ChannelCount", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/AudioFormat/SpeechAudioFormatInfo.cs#L95C41-L95C62" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/AudioFormat/SpeechAudioFormatInfo.cs#L95C41-L95C62" }, { "DocsId": "P:System.Speech.AudioFormat.SpeechAudioFormatInfo.SamplesPerSecond", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/AudioFormat/SpeechAudioFormatInfo.cs#L96C45-L96C70" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/AudioFormat/SpeechAudioFormatInfo.cs#L96C45-L96C70" } ], "DocsId": "T:System.Speech.AudioFormat.SpeechAudioFormatInfo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/AudioFormat/SpeechAudioFormatInfo.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/AudioFormat/SpeechAudioFormatInfo.cs" }, { "Members": [ { "DocsId": "F:System.Speech.AudioFormat.AudioChannel.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/AudioFormat/SpeechAudioFormatInfo.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/AudioFormat/SpeechAudioFormatInfo.cs" }, { "DocsId": "F:System.Speech.AudioFormat.AudioChannel.Mono", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/AudioFormat/SpeechAudioFormatInfo.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/AudioFormat/SpeechAudioFormatInfo.cs" }, { "DocsId": "F:System.Speech.AudioFormat.AudioChannel.Stereo", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/AudioFormat/SpeechAudioFormatInfo.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/AudioFormat/SpeechAudioFormatInfo.cs" } ], "DocsId": "T:System.Speech.AudioFormat.AudioChannel", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/AudioFormat/SpeechAudioFormatInfo.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/AudioFormat/SpeechAudioFormatInfo.cs" }, { "Members": [ { "DocsId": "F:System.Speech.AudioFormat.AudioBitsPerSample.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/AudioFormat/SpeechAudioFormatInfo.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/AudioFormat/SpeechAudioFormatInfo.cs" }, { "DocsId": "F:System.Speech.AudioFormat.AudioBitsPerSample.Eight", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/AudioFormat/SpeechAudioFormatInfo.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/AudioFormat/SpeechAudioFormatInfo.cs" }, { "DocsId": "F:System.Speech.AudioFormat.AudioBitsPerSample.Sixteen", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/AudioFormat/SpeechAudioFormatInfo.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/AudioFormat/SpeechAudioFormatInfo.cs" } ], "DocsId": "T:System.Speech.AudioFormat.AudioBitsPerSample", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Speech/src/AudioFormat/SpeechAudioFormatInfo.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Speech/src/AudioFormat/SpeechAudioFormatInfo.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/System.Threading.AccessControl.json b/xml/SourceLinkInformation/net-9.0/System.Threading.AccessControl.json index 2b49ae27759..8a173cc4bac 100644 --- a/xml/SourceLinkInformation/net-9.0/System.Threading.AccessControl.json +++ b/xml/SourceLinkInformation/net-9.0/System.Threading.AccessControl.json @@ -1,531 +1,530 @@ { "Assembly": "System.Threading.AccessControl", - "GUID": "9266ECAF13DB44B6862C72CC8BA506A0FFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "533F2415F265493A8B5259D1D4453204FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "F:System.Security.AccessControl.MutexRights.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs" }, { "DocsId": "F:System.Security.AccessControl.MutexRights.Modify", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs" }, { "DocsId": "F:System.Security.AccessControl.MutexRights.Delete", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs" }, { "DocsId": "F:System.Security.AccessControl.MutexRights.ReadPermissions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs" }, { "DocsId": "F:System.Security.AccessControl.MutexRights.ChangePermissions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs" }, { "DocsId": "F:System.Security.AccessControl.MutexRights.TakeOwnership", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs" }, { "DocsId": "F:System.Security.AccessControl.MutexRights.Synchronize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs" }, { "DocsId": "F:System.Security.AccessControl.MutexRights.FullControl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs" } ], "DocsId": "T:System.Security.AccessControl.MutexRights", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs" }, { "Members": [ { "DocsId": "M:System.Security.AccessControl.MutexAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.MutexRights,System.Security.AccessControl.AccessControlType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs#L48C15-L50C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs#L48C15-L50C10" }, { "DocsId": "M:System.Security.AccessControl.MutexAccessRule.#ctor(System.String,System.Security.AccessControl.MutexRights,System.Security.AccessControl.AccessControlType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs#L53C15-L55C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs#L53C15-L55C10" }, { "DocsId": "P:System.Security.AccessControl.MutexAccessRule.MutexRights", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs#L80C19-L80C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs#L80C19-L80C55" } ], "DocsId": "T:System.Security.AccessControl.MutexAccessRule", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs" }, { "Members": [ { "DocsId": "M:System.Security.AccessControl.MutexAuditRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.MutexRights,System.Security.AccessControl.AuditFlags)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs#L88C15-L90C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs#L88C15-L90C10" }, { "DocsId": "P:System.Security.AccessControl.MutexAuditRule.MutexRights", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs#L99C19-L99C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs#L99C19-L99C55" } ], "DocsId": "T:System.Security.AccessControl.MutexAuditRule", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs" }, { "Members": [ { "DocsId": "M:System.Security.AccessControl.MutexSecurity.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs#L107C15-L109C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs#L107C15-L109C10" }, { "DocsId": "M:System.Security.AccessControl.MutexSecurity.#ctor(System.String,System.Security.AccessControl.AccessControlSections)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs#L112C15-L115C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs#L112C15-L115C10" }, { "DocsId": "M:System.Security.AccessControl.MutexSecurity.AccessRuleFactory(System.Security.Principal.IdentityReference,System.Int32,System.Boolean,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Security.AccessControl.AccessControlType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs#L144C13-L144C126" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs#L144C13-L144C126" }, { "DocsId": "M:System.Security.AccessControl.MutexSecurity.AuditRuleFactory(System.Security.Principal.IdentityReference,System.Int32,System.Boolean,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Security.AccessControl.AuditFlags)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs#L149C13-L149C126" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs#L149C13-L149C126" }, { "DocsId": "M:System.Security.AccessControl.MutexSecurity.AddAccessRule(System.Security.AccessControl.MutexAccessRule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs#L189C13-L190C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs#L189C13-L190C10" }, { "DocsId": "M:System.Security.AccessControl.MutexSecurity.SetAccessRule(System.Security.AccessControl.MutexAccessRule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs#L194C13-L195C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs#L194C13-L195C10" }, { "DocsId": "M:System.Security.AccessControl.MutexSecurity.ResetAccessRule(System.Security.AccessControl.MutexAccessRule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs#L199C13-L200C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs#L199C13-L200C10" }, { "DocsId": "M:System.Security.AccessControl.MutexSecurity.RemoveAccessRule(System.Security.AccessControl.MutexAccessRule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs#L204C13-L204C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs#L204C13-L204C48" }, { "DocsId": "M:System.Security.AccessControl.MutexSecurity.RemoveAccessRuleAll(System.Security.AccessControl.MutexAccessRule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs#L209C13-L210C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs#L209C13-L210C10" }, { "DocsId": "M:System.Security.AccessControl.MutexSecurity.RemoveAccessRuleSpecific(System.Security.AccessControl.MutexAccessRule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs#L214C13-L215C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs#L214C13-L215C10" }, { "DocsId": "M:System.Security.AccessControl.MutexSecurity.AddAuditRule(System.Security.AccessControl.MutexAuditRule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs#L219C13-L220C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs#L219C13-L220C10" }, { "DocsId": "M:System.Security.AccessControl.MutexSecurity.SetAuditRule(System.Security.AccessControl.MutexAuditRule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs#L224C13-L225C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs#L224C13-L225C10" }, { "DocsId": "M:System.Security.AccessControl.MutexSecurity.RemoveAuditRule(System.Security.AccessControl.MutexAuditRule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs#L229C13-L229C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs#L229C13-L229C47" }, { "DocsId": "M:System.Security.AccessControl.MutexSecurity.RemoveAuditRuleAll(System.Security.AccessControl.MutexAuditRule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs#L234C13-L235C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs#L234C13-L235C10" }, { "DocsId": "M:System.Security.AccessControl.MutexSecurity.RemoveAuditRuleSpecific(System.Security.AccessControl.MutexAuditRule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs#L239C13-L240C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs#L239C13-L240C10" }, { "DocsId": "P:System.Security.AccessControl.MutexSecurity.AccessRightType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs#L244C19-L244C46" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs#L244C19-L244C46" }, { "DocsId": "P:System.Security.AccessControl.MutexSecurity.AccessRuleType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs#L249C19-L249C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs#L249C19-L249C50" }, { "DocsId": "P:System.Security.AccessControl.MutexSecurity.AuditRuleType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs#L254C19-L254C49" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs#L254C19-L254C49" } ], "DocsId": "T:System.Security.AccessControl.MutexSecurity", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/MutexSecurity.cs" }, { "Members": [ { "DocsId": "F:System.Security.AccessControl.EventWaitHandleRights.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs" }, { "DocsId": "F:System.Security.AccessControl.EventWaitHandleRights.Modify", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs" }, { "DocsId": "F:System.Security.AccessControl.EventWaitHandleRights.Delete", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs" }, { "DocsId": "F:System.Security.AccessControl.EventWaitHandleRights.ReadPermissions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs" }, { "DocsId": "F:System.Security.AccessControl.EventWaitHandleRights.ChangePermissions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs" }, { "DocsId": "F:System.Security.AccessControl.EventWaitHandleRights.TakeOwnership", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs" }, { "DocsId": "F:System.Security.AccessControl.EventWaitHandleRights.Synchronize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs" }, { "DocsId": "F:System.Security.AccessControl.EventWaitHandleRights.FullControl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs" } ], "DocsId": "T:System.Security.AccessControl.EventWaitHandleRights", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs" }, { "Members": [ { "DocsId": "M:System.Security.AccessControl.EventWaitHandleAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.EventWaitHandleRights,System.Security.AccessControl.AccessControlType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs#L47C15-L49C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs#L47C15-L49C10" }, { "DocsId": "M:System.Security.AccessControl.EventWaitHandleAccessRule.#ctor(System.String,System.Security.AccessControl.EventWaitHandleRights,System.Security.AccessControl.AccessControlType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs#L52C15-L54C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs#L52C15-L54C10" }, { "DocsId": "P:System.Security.AccessControl.EventWaitHandleAccessRule.EventWaitHandleRights", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs#L79C19-L79C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs#L79C19-L79C65" } ], "DocsId": "T:System.Security.AccessControl.EventWaitHandleAccessRule", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs" }, { "Members": [ { "DocsId": "M:System.Security.AccessControl.EventWaitHandleAuditRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.EventWaitHandleRights,System.Security.AccessControl.AuditFlags)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs#L87C15-L89C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs#L87C15-L89C10" }, { "DocsId": "P:System.Security.AccessControl.EventWaitHandleAuditRule.EventWaitHandleRights", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs#L105C19-L105C65" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs#L105C19-L105C65" } ], "DocsId": "T:System.Security.AccessControl.EventWaitHandleAuditRule", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs" }, { "Members": [ { "DocsId": "M:System.Security.AccessControl.EventWaitHandleSecurity.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs#L113C15-L115C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs#L113C15-L115C10" }, { "DocsId": "M:System.Security.AccessControl.EventWaitHandleSecurity.AccessRuleFactory(System.Security.Principal.IdentityReference,System.Int32,System.Boolean,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Security.AccessControl.AccessControlType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs#L150C13-L150C136" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs#L150C13-L150C136" }, { "DocsId": "M:System.Security.AccessControl.EventWaitHandleSecurity.AuditRuleFactory(System.Security.Principal.IdentityReference,System.Int32,System.Boolean,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Security.AccessControl.AuditFlags)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs#L155C13-L155C136" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs#L155C13-L155C136" }, { "DocsId": "M:System.Security.AccessControl.EventWaitHandleSecurity.AddAccessRule(System.Security.AccessControl.EventWaitHandleAccessRule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs#L199C13-L200C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs#L199C13-L200C10" }, { "DocsId": "M:System.Security.AccessControl.EventWaitHandleSecurity.SetAccessRule(System.Security.AccessControl.EventWaitHandleAccessRule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs#L204C13-L205C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs#L204C13-L205C10" }, { "DocsId": "M:System.Security.AccessControl.EventWaitHandleSecurity.ResetAccessRule(System.Security.AccessControl.EventWaitHandleAccessRule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs#L209C13-L210C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs#L209C13-L210C10" }, { "DocsId": "M:System.Security.AccessControl.EventWaitHandleSecurity.RemoveAccessRule(System.Security.AccessControl.EventWaitHandleAccessRule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs#L214C13-L214C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs#L214C13-L214C48" }, { "DocsId": "M:System.Security.AccessControl.EventWaitHandleSecurity.RemoveAccessRuleAll(System.Security.AccessControl.EventWaitHandleAccessRule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs#L219C13-L220C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs#L219C13-L220C10" }, { "DocsId": "M:System.Security.AccessControl.EventWaitHandleSecurity.RemoveAccessRuleSpecific(System.Security.AccessControl.EventWaitHandleAccessRule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs#L224C13-L225C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs#L224C13-L225C10" }, { "DocsId": "M:System.Security.AccessControl.EventWaitHandleSecurity.AddAuditRule(System.Security.AccessControl.EventWaitHandleAuditRule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs#L229C13-L230C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs#L229C13-L230C10" }, { "DocsId": "M:System.Security.AccessControl.EventWaitHandleSecurity.SetAuditRule(System.Security.AccessControl.EventWaitHandleAuditRule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs#L234C13-L235C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs#L234C13-L235C10" }, { "DocsId": "M:System.Security.AccessControl.EventWaitHandleSecurity.RemoveAuditRule(System.Security.AccessControl.EventWaitHandleAuditRule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs#L239C13-L239C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs#L239C13-L239C47" }, { "DocsId": "M:System.Security.AccessControl.EventWaitHandleSecurity.RemoveAuditRuleAll(System.Security.AccessControl.EventWaitHandleAuditRule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs#L244C13-L245C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs#L244C13-L245C10" }, { "DocsId": "M:System.Security.AccessControl.EventWaitHandleSecurity.RemoveAuditRuleSpecific(System.Security.AccessControl.EventWaitHandleAuditRule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs#L249C13-L250C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs#L249C13-L250C10" }, { "DocsId": "P:System.Security.AccessControl.EventWaitHandleSecurity.AccessRightType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs#L254C19-L254C56" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs#L254C19-L254C56" }, { "DocsId": "P:System.Security.AccessControl.EventWaitHandleSecurity.AccessRuleType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs#L259C19-L259C60" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs#L259C19-L259C60" }, { "DocsId": "P:System.Security.AccessControl.EventWaitHandleSecurity.AuditRuleType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs#L264C19-L264C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs#L264C19-L264C59" } ], "DocsId": "T:System.Security.AccessControl.EventWaitHandleSecurity", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/EventWaitHandleSecurity.cs" }, { "Members": [ { "DocsId": "F:System.Security.AccessControl.SemaphoreRights.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs" }, { "DocsId": "F:System.Security.AccessControl.SemaphoreRights.Modify", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs" }, { "DocsId": "F:System.Security.AccessControl.SemaphoreRights.Delete", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs" }, { "DocsId": "F:System.Security.AccessControl.SemaphoreRights.ReadPermissions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs" }, { "DocsId": "F:System.Security.AccessControl.SemaphoreRights.ChangePermissions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs" }, { "DocsId": "F:System.Security.AccessControl.SemaphoreRights.TakeOwnership", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs" }, { "DocsId": "F:System.Security.AccessControl.SemaphoreRights.Synchronize", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs" }, { "DocsId": "F:System.Security.AccessControl.SemaphoreRights.FullControl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs" } ], "DocsId": "T:System.Security.AccessControl.SemaphoreRights", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs" }, { "Members": [ { "DocsId": "M:System.Security.AccessControl.SemaphoreAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.SemaphoreRights,System.Security.AccessControl.AccessControlType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs#L44C15-L46C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs#L44C15-L46C10" }, { "DocsId": "M:System.Security.AccessControl.SemaphoreAccessRule.#ctor(System.String,System.Security.AccessControl.SemaphoreRights,System.Security.AccessControl.AccessControlType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs#L49C15-L51C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs#L49C15-L51C10" }, { "DocsId": "P:System.Security.AccessControl.SemaphoreAccessRule.SemaphoreRights", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs#L76C19-L76C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs#L76C19-L76C59" } ], "DocsId": "T:System.Security.AccessControl.SemaphoreAccessRule", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs" }, { "Members": [ { "DocsId": "M:System.Security.AccessControl.SemaphoreAuditRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.SemaphoreRights,System.Security.AccessControl.AuditFlags)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs#L83C15-L85C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs#L83C15-L85C10" }, { "DocsId": "P:System.Security.AccessControl.SemaphoreAuditRule.SemaphoreRights", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs#L94C19-L94C59" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs#L94C19-L94C59" } ], "DocsId": "T:System.Security.AccessControl.SemaphoreAuditRule", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs" }, { "Members": [ { "DocsId": "M:System.Security.AccessControl.SemaphoreSecurity.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs#L101C15-L103C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs#L101C15-L103C10" }, { "DocsId": "M:System.Security.AccessControl.SemaphoreSecurity.#ctor(System.String,System.Security.AccessControl.AccessControlSections)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs#L106C15-L109C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs#L106C15-L109C10" }, { "DocsId": "M:System.Security.AccessControl.SemaphoreSecurity.AccessRuleFactory(System.Security.Principal.IdentityReference,System.Int32,System.Boolean,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Security.AccessControl.AccessControlType)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs#L138C13-L138C130" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs#L138C13-L138C130" }, { "DocsId": "M:System.Security.AccessControl.SemaphoreSecurity.AuditRuleFactory(System.Security.Principal.IdentityReference,System.Int32,System.Boolean,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Security.AccessControl.AuditFlags)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs#L143C13-L143C130" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs#L143C13-L143C130" }, { "DocsId": "M:System.Security.AccessControl.SemaphoreSecurity.AddAccessRule(System.Security.AccessControl.SemaphoreAccessRule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs#L183C13-L184C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs#L183C13-L184C10" }, { "DocsId": "M:System.Security.AccessControl.SemaphoreSecurity.SetAccessRule(System.Security.AccessControl.SemaphoreAccessRule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs#L188C13-L189C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs#L188C13-L189C10" }, { "DocsId": "M:System.Security.AccessControl.SemaphoreSecurity.ResetAccessRule(System.Security.AccessControl.SemaphoreAccessRule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs#L193C13-L194C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs#L193C13-L194C10" }, { "DocsId": "M:System.Security.AccessControl.SemaphoreSecurity.RemoveAccessRule(System.Security.AccessControl.SemaphoreAccessRule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs#L198C13-L198C48" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs#L198C13-L198C48" }, { "DocsId": "M:System.Security.AccessControl.SemaphoreSecurity.RemoveAccessRuleAll(System.Security.AccessControl.SemaphoreAccessRule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs#L203C13-L204C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs#L203C13-L204C10" }, { "DocsId": "M:System.Security.AccessControl.SemaphoreSecurity.RemoveAccessRuleSpecific(System.Security.AccessControl.SemaphoreAccessRule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs#L208C13-L209C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs#L208C13-L209C10" }, { "DocsId": "M:System.Security.AccessControl.SemaphoreSecurity.AddAuditRule(System.Security.AccessControl.SemaphoreAuditRule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs#L213C13-L214C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs#L213C13-L214C10" }, { "DocsId": "M:System.Security.AccessControl.SemaphoreSecurity.SetAuditRule(System.Security.AccessControl.SemaphoreAuditRule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs#L218C13-L219C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs#L218C13-L219C10" }, { "DocsId": "M:System.Security.AccessControl.SemaphoreSecurity.RemoveAuditRule(System.Security.AccessControl.SemaphoreAuditRule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs#L223C13-L223C47" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs#L223C13-L223C47" }, { "DocsId": "M:System.Security.AccessControl.SemaphoreSecurity.RemoveAuditRuleAll(System.Security.AccessControl.SemaphoreAuditRule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs#L228C13-L229C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs#L228C13-L229C10" }, { "DocsId": "M:System.Security.AccessControl.SemaphoreSecurity.RemoveAuditRuleSpecific(System.Security.AccessControl.SemaphoreAuditRule)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs#L233C13-L234C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs#L233C13-L234C10" }, { "DocsId": "P:System.Security.AccessControl.SemaphoreSecurity.AccessRightType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs#L238C19-L238C50" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs#L238C19-L238C50" }, { "DocsId": "P:System.Security.AccessControl.SemaphoreSecurity.AccessRuleType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs#L243C19-L243C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs#L243C19-L243C54" }, { "DocsId": "P:System.Security.AccessControl.SemaphoreSecurity.AuditRuleType", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs#L248C19-L248C53" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs#L248C19-L248C53" } ], "DocsId": "T:System.Security.AccessControl.SemaphoreSecurity", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Security/AccessControl/SemaphoreSecurity.cs" }, { "Members": [ { "DocsId": "M:System.Threading.EventWaitHandleAcl.Create(System.Boolean,System.Threading.EventResetMode,System.String,System.Boolean@,System.Security.AccessControl.EventWaitHandleSecurity)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Threading/EventWaitHandleAcl.cs#L31C13-L77C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Threading/EventWaitHandleAcl.cs#L31C13-L77C55" }, { "DocsId": "M:System.Threading.EventWaitHandleAcl.OpenExisting(System.String,System.Security.AccessControl.EventWaitHandleRights)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Threading/EventWaitHandleAcl.cs#L95C13-L109C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Threading/EventWaitHandleAcl.cs#L95C13-L109C35" }, { "DocsId": "M:System.Threading.EventWaitHandleAcl.TryOpenExisting(System.String,System.Security.AccessControl.EventWaitHandleRights,System.Threading.EventWaitHandle@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Threading/EventWaitHandleAcl.cs#L125C13-L125C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Threading/EventWaitHandleAcl.cs#L125C13-L125C87" } ], "DocsId": "T:System.Threading.EventWaitHandleAcl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Threading/EventWaitHandleAcl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Threading/EventWaitHandleAcl.cs" }, { "Members": [ { "DocsId": "M:System.Threading.MutexAcl.Create(System.Boolean,System.String,System.Boolean@,System.Security.AccessControl.MutexSecurity)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Threading/MutexAcl.cs#L25C13-L68C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Threading/MutexAcl.cs#L25C13-L68C55" }, { "DocsId": "M:System.Threading.MutexAcl.OpenExisting(System.String,System.Security.AccessControl.MutexRights)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Threading/MutexAcl.cs#L86C13-L100C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Threading/MutexAcl.cs#L86C13-L100C35" }, { "DocsId": "M:System.Threading.MutexAcl.TryOpenExisting(System.String,System.Security.AccessControl.MutexRights,System.Threading.Mutex@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Threading/MutexAcl.cs#L116C13-L116C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Threading/MutexAcl.cs#L116C13-L116C87" } ], "DocsId": "T:System.Threading.MutexAcl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Threading/MutexAcl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Threading/MutexAcl.cs" }, { "Members": [ { "DocsId": "M:System.Threading.SemaphoreAcl.Create(System.Int32,System.Int32,System.String,System.Boolean@,System.Security.AccessControl.SemaphoreSecurity)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Threading/SemaphoreAcl.cs#L29C13-L82C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Threading/SemaphoreAcl.cs#L29C13-L82C55" }, { "DocsId": "M:System.Threading.SemaphoreAcl.OpenExisting(System.String,System.Security.AccessControl.SemaphoreRights)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Threading/SemaphoreAcl.cs#L101C13-L115C35" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Threading/SemaphoreAcl.cs#L101C13-L115C35" }, { "DocsId": "M:System.Threading.SemaphoreAcl.TryOpenExisting(System.String,System.Security.AccessControl.SemaphoreRights,System.Threading.Semaphore@)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Threading/SemaphoreAcl.cs#L131C13-L131C87" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Threading/SemaphoreAcl.cs#L131C13-L131C87" } ], "DocsId": "T:System.Threading.SemaphoreAcl", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Threading/SemaphoreAcl.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Threading/SemaphoreAcl.cs" }, { "Members": [ { "DocsId": "M:System.Threading.ThreadingAclExtensions.GetAccessControl(System.Threading.EventWaitHandle)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Threading/ThreadingAclExtensions.cs#L16C13-L16C166" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Threading/ThreadingAclExtensions.cs#L16C13-L16C166" }, { "DocsId": "M:System.Threading.ThreadingAclExtensions.SetAccessControl(System.Threading.EventWaitHandle,System.Security.AccessControl.EventWaitHandleSecurity)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Threading/ThreadingAclExtensions.cs#L21C13-L24C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Threading/ThreadingAclExtensions.cs#L21C13-L24C10" }, { "DocsId": "M:System.Threading.ThreadingAclExtensions.GetAccessControl(System.Threading.Mutex)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Threading/ThreadingAclExtensions.cs#L28C13-L28C155" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Threading/ThreadingAclExtensions.cs#L28C13-L28C155" }, { "DocsId": "M:System.Threading.ThreadingAclExtensions.SetAccessControl(System.Threading.Mutex,System.Security.AccessControl.MutexSecurity)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Threading/ThreadingAclExtensions.cs#L33C13-L36C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Threading/ThreadingAclExtensions.cs#L33C13-L36C10" }, { "DocsId": "M:System.Threading.ThreadingAclExtensions.GetAccessControl(System.Threading.Semaphore)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Threading/ThreadingAclExtensions.cs#L40C13-L40C163" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Threading/ThreadingAclExtensions.cs#L40C13-L40C163" }, { "DocsId": "M:System.Threading.ThreadingAclExtensions.SetAccessControl(System.Threading.Semaphore,System.Security.AccessControl.SemaphoreSecurity)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Threading/ThreadingAclExtensions.cs#L45C13-L48C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Threading/ThreadingAclExtensions.cs#L45C13-L48C10" } ], "DocsId": "T:System.Threading.ThreadingAclExtensions", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Threading.AccessControl/src/System/Threading/ThreadingAclExtensions.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Threading.AccessControl/src/System/Threading/ThreadingAclExtensions.cs" } ] } \ No newline at end of file diff --git a/xml/SourceLinkInformation/net-9.0/System.Windows.Extensions.json b/xml/SourceLinkInformation/net-9.0/System.Windows.Extensions.json index bd7d641083b..8ae71f409f4 100644 --- a/xml/SourceLinkInformation/net-9.0/System.Windows.Extensions.json +++ b/xml/SourceLinkInformation/net-9.0/System.Windows.Extensions.json @@ -1,211 +1,210 @@ { "Assembly": "System.Windows.Extensions", - "GUID": "FCE6958BBE634A42B0B2F704A519B75BFFFFFFFF", - "Tag": "sb3+XhJN2vxJryIyYNi38yjWJthxmljoLkgJgDFV8CM=", + "GUID": "F7230C50FB614A3F960E5C7207AA1A47FFFFFFFF", "Types": [ { "Members": [ { "DocsId": "M:System.Xaml.Permissions.XamlAccessLevel.AssemblyAccessTo(System.Reflection.Assembly)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Xaml/Permissions/XamlAccessLevel.cs#L19C13-L19C66" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Xaml/Permissions/XamlAccessLevel.cs#L19C13-L19C66" }, { "DocsId": "M:System.Xaml.Permissions.XamlAccessLevel.AssemblyAccessTo(System.Reflection.AssemblyName)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Xaml/Permissions/XamlAccessLevel.cs#L24C13-L24C69" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Xaml/Permissions/XamlAccessLevel.cs#L24C13-L24C69" }, { "DocsId": "M:System.Xaml.Permissions.XamlAccessLevel.PrivateAccessTo(System.Type)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Xaml/Permissions/XamlAccessLevel.cs#L29C13-L29C80" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Xaml/Permissions/XamlAccessLevel.cs#L29C13-L29C80" }, { "DocsId": "M:System.Xaml.Permissions.XamlAccessLevel.PrivateAccessTo(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Xaml/Permissions/XamlAccessLevel.cs#L34C13-L38C73" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Xaml/Permissions/XamlAccessLevel.cs#L34C13-L38C73" }, { "DocsId": "P:System.Xaml.Permissions.XamlAccessLevel.AssemblyAccessToAssemblyName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Xaml/Permissions/XamlAccessLevel.cs#L43C19-L43C63" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Xaml/Permissions/XamlAccessLevel.cs#L43C19-L43C63" }, { "DocsId": "P:System.Xaml.Permissions.XamlAccessLevel.PrivateAccessToTypeName", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Xaml/Permissions/XamlAccessLevel.cs#L46C50-L46C54" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Xaml/Permissions/XamlAccessLevel.cs#L46C50-L46C54" } ], "DocsId": "T:System.Xaml.Permissions.XamlAccessLevel", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Xaml/Permissions/XamlAccessLevel.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Xaml/Permissions/XamlAccessLevel.cs" }, { "Members": [ { "DocsId": "M:System.Media.SoundPlayer.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L23C9-L52C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L23C9-L52C10" }, { "DocsId": "M:System.Media.SoundPlayer.#ctor(System.String)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L54C52-L57C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L54C52-L57C10" }, { "DocsId": "M:System.Media.SoundPlayer.#ctor(System.IO.Stream)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L59C46-L62C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L59C46-L62C10" }, { "DocsId": "M:System.Media.SoundPlayer.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L23C9-L70C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L23C9-L70C55" }, { "DocsId": "M:System.Media.SoundPlayer.LoadAsync", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L137C13-L164C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L137C13-L164C10" }, { "DocsId": "M:System.Media.SoundPlayer.Load", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L189C13-L203C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L189C13-L203C10" }, { "DocsId": "M:System.Media.SoundPlayer.Play", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L347C13-L348C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L347C13-L348C10" }, { "DocsId": "M:System.Media.SoundPlayer.PlaySync", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L352C13-L353C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L352C13-L353C10" }, { "DocsId": "M:System.Media.SoundPlayer.PlayLooping", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L357C13-L358C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L357C13-L358C10" }, { "DocsId": "M:System.Media.SoundPlayer.Stop", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L441C13-L442C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L441C13-L442C10" }, { "DocsId": "M:System.Media.SoundPlayer.OnLoadCompleted(System.ComponentModel.AsyncCompletedEventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L482C13-L483C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L482C13-L483C10" }, { "DocsId": "M:System.Media.SoundPlayer.OnSoundLocationChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L487C13-L488C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L487C13-L488C10" }, { "DocsId": "M:System.Media.SoundPlayer.OnStreamChanged(System.EventArgs)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L492C13-L493C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L492C13-L493C10" }, { "DocsId": "M:System.Media.SoundPlayer.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L739C13-L739C55" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L739C13-L739C55" }, { "DocsId": "E:System.Media.SoundPlayer.LoadCompleted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L448C17-L449C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L448C17-L449C14" }, { "DocsId": "E:System.Media.SoundPlayer.SoundLocationChanged", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L460C17-L461C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L460C17-L461C14" }, { "DocsId": "E:System.Media.SoundPlayer.StreamChanged", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L472C17-L473C14" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L472C17-L473C14" }, { "DocsId": "P:System.Media.SoundPlayer.LoadTimeout", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L75C20-L75C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L75C20-L75C32" }, { "DocsId": "P:System.Media.SoundPlayer.SoundLocation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L89C20-L89C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L89C20-L89C34" }, { "DocsId": "P:System.Media.SoundPlayer.Stream", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L110C17-L115C32" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L110C17-L115C32" }, { "DocsId": "P:System.Media.SoundPlayer.IsLoadCompleted", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L129C39-L129C43" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L129C39-L129C43" }, { "DocsId": "P:System.Media.SoundPlayer.Tag", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L131C30-L131C34" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs#L131C30-L131C34" } ], "DocsId": "T:System.Media.SoundPlayer", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Media/SoundPlayer.cs" }, { "Members": [ { "DocsId": "M:System.Media.SystemSound.Play", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Media/SystemSound.cs#L17C13-L18C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Media/SystemSound.cs#L17C13-L18C10" } ], "DocsId": "T:System.Media.SystemSound", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Media/SystemSound.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Media/SystemSound.cs" }, { "Members": [ { "DocsId": "P:System.Media.SystemSounds.Asterisk", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Media/SystemSounds.cs#L16C20-L16C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Media/SystemSounds.cs#L16C20-L16C82" }, { "DocsId": "P:System.Media.SystemSounds.Beep", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Media/SystemSounds.cs#L21C20-L21C68" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Media/SystemSounds.cs#L21C20-L21C68" }, { "DocsId": "P:System.Media.SystemSounds.Exclamation", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Media/SystemSounds.cs#L26C20-L26C88" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Media/SystemSounds.cs#L26C20-L26C88" }, { "DocsId": "P:System.Media.SystemSounds.Hand", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Media/SystemSounds.cs#L31C20-L31C74" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Media/SystemSounds.cs#L31C20-L31C74" }, { "DocsId": "P:System.Media.SystemSounds.Question", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Media/SystemSounds.cs#L36C20-L36C82" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Media/SystemSounds.cs#L36C20-L36C82" } ], "DocsId": "T:System.Media.SystemSounds", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Media/SystemSounds.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Media/SystemSounds.cs" }, { "Members": [ { "DocsId": "F:System.Security.Cryptography.X509Certificates.X509SelectionFlag.value__", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Security/Cryptography/X509Certificates/X509Certificate2UI.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Security/Cryptography/X509Certificates/X509Certificate2UI.cs" }, { "DocsId": "F:System.Security.Cryptography.X509Certificates.X509SelectionFlag.SingleSelection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Security/Cryptography/X509Certificates/X509Certificate2UI.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Security/Cryptography/X509Certificates/X509Certificate2UI.cs" }, { "DocsId": "F:System.Security.Cryptography.X509Certificates.X509SelectionFlag.MultiSelection", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Security/Cryptography/X509Certificates/X509Certificate2UI.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Security/Cryptography/X509Certificates/X509Certificate2UI.cs" } ], "DocsId": "T:System.Security.Cryptography.X509Certificates.X509SelectionFlag", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Security/Cryptography/X509Certificates/X509Certificate2UI.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Security/Cryptography/X509Certificates/X509Certificate2UI.cs" }, { "Members": [ { "DocsId": "M:System.Security.Cryptography.X509Certificates.X509Certificate2UI.DisplayCertificate(System.Security.Cryptography.X509Certificates.X509Certificate2)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Security/Cryptography/X509Certificates/X509Certificate2UI.cs#L23C13-L26C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Security/Cryptography/X509Certificates/X509Certificate2UI.cs#L23C13-L26C10" }, { "DocsId": "M:System.Security.Cryptography.X509Certificates.X509Certificate2UI.DisplayCertificate(System.Security.Cryptography.X509Certificates.X509Certificate2,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Security/Cryptography/X509Certificates/X509Certificate2UI.cs#L30C13-L33C10" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Security/Cryptography/X509Certificates/X509Certificate2UI.cs#L30C13-L33C10" }, { "DocsId": "M:System.Security.Cryptography.X509Certificates.X509Certificate2UI.SelectFromCollection(System.Security.Cryptography.X509Certificates.X509Certificate2Collection,System.String,System.String,System.Security.Cryptography.X509Certificates.X509SelectionFlag)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Security/Cryptography/X509Certificates/X509Certificate2UI.cs#L37C13-L37C105" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Security/Cryptography/X509Certificates/X509Certificate2UI.cs#L37C13-L37C105" }, { "DocsId": "M:System.Security.Cryptography.X509Certificates.X509Certificate2UI.SelectFromCollection(System.Security.Cryptography.X509Certificates.X509Certificate2Collection,System.String,System.String,System.Security.Cryptography.X509Certificates.X509SelectionFlag,System.IntPtr)", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Security/Cryptography/X509Certificates/X509Certificate2UI.cs#L42C13-L42C104" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Security/Cryptography/X509Certificates/X509Certificate2UI.cs#L42C13-L42C104" }, { "DocsId": "M:System.Security.Cryptography.X509Certificates.X509Certificate2UI.#ctor", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Security/Cryptography/X509Certificates/X509Certificate2UI.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Security/Cryptography/X509Certificates/X509Certificate2UI.cs" } ], "DocsId": "T:System.Security.Cryptography.X509Certificates.X509Certificate2UI", - "SourceLink": "https://github.com/dotnet/runtime/blob/9e6ba1f68c6a9c7206dacdf1e4cac67ea19931eb/src/libraries/System.Windows.Extensions/src/System/Security/Cryptography/X509Certificates/X509Certificate2UI.cs" + "SourceLink": "https://github.com/dotnet/runtime/blob/d0d6fed6c0eedd962ddc0f68554682064e9e11ca/src/libraries/System.Windows.Extensions/src/System/Security/Cryptography/X509Certificates/X509Certificate2UI.cs" } ] } \ No newline at end of file diff --git a/xml/System.CodeDom.Compiler/IndentedTextWriter.xml b/xml/System.CodeDom.Compiler/IndentedTextWriter.xml index 83b71427a66..40d086c91c2 100644 --- a/xml/System.CodeDom.Compiler/IndentedTextWriter.xml +++ b/xml/System.CodeDom.Compiler/IndentedTextWriter.xml @@ -1369,6 +1369,55 @@ To be added. + + + + + + + + Method + + System.Runtime + 9.0.0.0 + + + netstandard + + + System.IO + + + System.Runtime.Extensions + + + System.Void + + + + + + [System.Diagnostics.CodeAnalysis.StringSyntax("CompositeFormat")] + [<System.Diagnostics.CodeAnalysis.StringSyntax("CompositeFormat")>] + + + + + + + [System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 2 })] + [<System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 2 })>] + + + + + + To be added. + To be added. + To be added. + To be added. + + @@ -2415,6 +2464,55 @@ To be added. + + + + + + + + Method + + System.Runtime + 9.0.0.0 + + + netstandard + + + System.IO + + + System.Runtime.Extensions + + + System.Void + + + + + + [System.Diagnostics.CodeAnalysis.StringSyntax("CompositeFormat")] + [<System.Diagnostics.CodeAnalysis.StringSyntax("CompositeFormat")>] + + + + + + + [System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 2 })] + [<System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 2 })>] + + + + + + To be added. + To be added. + To be added. + To be added. + + diff --git a/xml/System.ComponentModel.Design/DesignerActionUIService.xml b/xml/System.ComponentModel.Design/DesignerActionUIService.xml index 2639c798624..ea43b7d547a 100644 --- a/xml/System.ComponentModel.Design/DesignerActionUIService.xml +++ b/xml/System.ComponentModel.Design/DesignerActionUIService.xml @@ -35,6 +35,16 @@ System.IDisposable + + + [System.Runtime.CompilerServices.Nullable(0)] + [<System.Runtime.CompilerServices.Nullable(0)>] + + + [System.Runtime.CompilerServices.NullableContext(2)] + [<System.Runtime.CompilerServices.NullableContext(2)>] + + Manages the user interface (UI) for a smart tag panel. This class cannot be inherited. @@ -67,12 +77,13 @@ - + + Event System.Design @@ -162,12 +173,13 @@ - + + Method System.Design @@ -210,12 +222,13 @@ - + + Method System.Design @@ -280,6 +293,12 @@ 8.0.0.0 9.0.0.0 + + + [System.Runtime.CompilerServices.NullableContext(1)] + [<System.Runtime.CompilerServices.NullableContext(1)>] + + System.Boolean @@ -296,12 +315,13 @@ - + + Method System.Design diff --git a/xml/System.ComponentModel.Design/DesignerActionUIStateChangeEventArgs.xml b/xml/System.ComponentModel.Design/DesignerActionUIStateChangeEventArgs.xml index 1e0cc9a1cbd..1007e4784df 100644 --- a/xml/System.ComponentModel.Design/DesignerActionUIStateChangeEventArgs.xml +++ b/xml/System.ComponentModel.Design/DesignerActionUIStateChangeEventArgs.xml @@ -31,6 +31,16 @@ System.EventArgs + + + [System.Runtime.CompilerServices.Nullable(0)] + [<System.Runtime.CompilerServices.Nullable(0)>] + + + [System.Runtime.CompilerServices.NullableContext(2)] + [<System.Runtime.CompilerServices.NullableContext(2)>] + + Provides data for the event. @@ -48,12 +58,13 @@ - + + Constructor System.Design @@ -148,12 +159,13 @@ - + + Property System.Design diff --git a/xml/System.ComponentModel/AmbientValueAttribute.xml b/xml/System.ComponentModel/AmbientValueAttribute.xml index e331c3e6974..26efbe8c144 100644 --- a/xml/System.ComponentModel/AmbientValueAttribute.xml +++ b/xml/System.ComponentModel/AmbientValueAttribute.xml @@ -531,7 +531,7 @@ 9.0.0.0 - + [System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("Generic TypeConverters may require the generic types to be annotated. For example, NullableConverter requires the underlying type to be DynamicallyAccessedMembers All.")] [<System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("Generic TypeConverters may require the generic types to be annotated. For example, NullableConverter requires the underlying type to be DynamicallyAccessedMembers All.")>] diff --git a/xml/System.ComponentModel/DefaultValueAttribute.xml b/xml/System.ComponentModel/DefaultValueAttribute.xml index ca685a2528f..e9f2f51b763 100644 --- a/xml/System.ComponentModel/DefaultValueAttribute.xml +++ b/xml/System.ComponentModel/DefaultValueAttribute.xml @@ -767,7 +767,7 @@ 2.1.0.0 - + [System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("Generic TypeConverters may require the generic types to be annotated. For example, NullableConverter requires the underlying type to be DynamicallyAccessedMembers All.")] [<System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("Generic TypeConverters may require the generic types to be annotated. For example, NullableConverter requires the underlying type to be DynamicallyAccessedMembers All.")>] diff --git a/xml/System.ComponentModel/EnumConverter.xml b/xml/System.ComponentModel/EnumConverter.xml index 0e8e919621e..40ab953841d 100644 --- a/xml/System.ComponentModel/EnumConverter.xml +++ b/xml/System.ComponentModel/EnumConverter.xml @@ -129,7 +129,7 @@ Windows=1, Exchange=2, BizTalk=3 - + [System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembers(System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicFields | System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicParameterlessConstructor)] [<System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembers(System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicFields | System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicParameterlessConstructor)>] @@ -525,7 +525,7 @@ Windows=1, Exchange=2, BizTalk=3 2.1.0.0 - + [System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembers(System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicFields | System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicParameterlessConstructor)] [<System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembers(System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicFields | System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicParameterlessConstructor)>] diff --git a/xml/System.ComponentModel/TypeDescriptor.xml b/xml/System.ComponentModel/TypeDescriptor.xml index 4b85616962d..52d85823c4d 100644 --- a/xml/System.ComponentModel/TypeDescriptor.xml +++ b/xml/System.ComponentModel/TypeDescriptor.xml @@ -642,6 +642,14 @@ [set: System.Runtime.CompilerServices.NullableContext(2)] [<set: System.Runtime.CompilerServices.NullableContext(2)>] + + [get: System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("COM type descriptors are not trim-compatible.")] + [<get: System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("COM type descriptors are not trim-compatible.")>] + + + [set: System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("COM type descriptors are not trim-compatible.")] + [<set: System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("COM type descriptors are not trim-compatible.")>] + [System.Obsolete("This property has been deprecated. Use a type description provider to supply type information for COM types instead. http://go.microsoft.com/fwlink/?linkid=14202")] [<System.Obsolete("This property has been deprecated. Use a type description provider to supply type information for COM types instead. http://go.microsoft.com/fwlink/?linkid=14202")>] @@ -703,6 +711,10 @@ [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)] [<System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)>] + + [get: System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("COM type descriptors are not trim-compatible.")] + [<get: System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("COM type descriptors are not trim-compatible.")>] + System.Type diff --git a/xml/System.Drawing.Imaging/ColorPalette.xml b/xml/System.Drawing.Imaging/ColorPalette.xml index 17d2a264d4f..7f6fb7c7d65 100644 --- a/xml/System.Drawing.Imaging/ColorPalette.xml +++ b/xml/System.Drawing.Imaging/ColorPalette.xml @@ -55,12 +55,12 @@ - - + + - - - + + + Constructor System.Drawing.Common @@ -70,7 +70,15 @@ System.Drawing - + + + + [System.ParamArray] + [<System.ParamArray>] + + + + [System.ParamArray] @@ -81,17 +89,18 @@ To be added. + To be added. To be added. To be added. - - + + - - - + + + Constructor System.Drawing.Common @@ -101,21 +110,23 @@ System.Drawing - + + To be added. + To be added. To be added. To be added. - - + + - - - + + + Method System.Drawing.Common @@ -124,22 +135,18 @@ System.Drawing - - - [System.Runtime.Versioning.RequiresPreviewFeatures] - [<System.Runtime.Versioning.RequiresPreviewFeatures>] - - System.Drawing.Imaging.ColorPalette - + + To be added. + To be added. To be added. To be added. To be added. diff --git a/xml/System.Drawing.Imaging/PaletteType.xml b/xml/System.Drawing.Imaging/PaletteType.xml index 88efd64d390..60bfe3dd29f 100644 --- a/xml/System.Drawing.Imaging/PaletteType.xml +++ b/xml/System.Drawing.Imaging/PaletteType.xml @@ -37,13 +37,13 @@ To be added. - - - - - - - + + + + + + + Field System.Drawing.Common diff --git a/xml/System.Drawing/Bitmap.xml b/xml/System.Drawing/Bitmap.xml index 5a110757ea9..d064f6c07dc 100644 --- a/xml/System.Drawing/Bitmap.xml +++ b/xml/System.Drawing/Bitmap.xml @@ -843,12 +843,6 @@ System.Drawing - - - [System.Runtime.Versioning.RequiresPreviewFeatures] - [<System.Runtime.Versioning.RequiresPreviewFeatures>] - - System.Void @@ -880,10 +874,6 @@ [System.Runtime.CompilerServices.NullableContext(2)] [<System.Runtime.CompilerServices.NullableContext(2)>] - - [System.Runtime.Versioning.RequiresPreviewFeatures] - [<System.Runtime.Versioning.RequiresPreviewFeatures>] - System.Void diff --git a/xml/System.Formats.Asn1/AsnDecoder.xml b/xml/System.Formats.Asn1/AsnDecoder.xml index a8ea5151060..6a263b0e11f 100644 --- a/xml/System.Formats.Asn1/AsnDecoder.xml +++ b/xml/System.Formats.Asn1/AsnDecoder.xml @@ -22,6 +22,35 @@ To be added. + + + + + + + + Method + + System.Formats.Asn1 + 9.0.0.0 + + + System.Nullable<System.Int32> + + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + + @@ -1126,6 +1155,37 @@ The contents are not valid under the current encoding rules. . is , but . is not correct for the method. + + + + + + + + Method + + System.Formats.Asn1 + 9.0.0.0 + + + System.Boolean + + + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + + diff --git a/xml/System.Formats.Cbor/CborContentException.xml b/xml/System.Formats.Cbor/CborContentException.xml index b18024bee13..f01c76bdff2 100644 --- a/xml/System.Formats.Cbor/CborContentException.xml +++ b/xml/System.Formats.Cbor/CborContentException.xml @@ -55,8 +55,7 @@ The error message that explains the reason for the exception. - Initializes a new instance of the class using the provided message. - + Initializes a new instance of the class using the provided message. To be added. @@ -95,8 +94,7 @@ The object that holds the serialized object data. The contextual information about the source or destination. - Initializes a new instance of the class with serialized data. - + Initializes a new instance of the class with serialized data. To be added. @@ -122,8 +120,7 @@ The exception that is the cause of the current exception. Initializes a new instance of the class, - using the provided message and exception that is the cause of this exception. - + using the provided message and exception that is the cause of this exception. To be added. diff --git a/xml/System.Formats.Cbor/CborReader.xml b/xml/System.Formats.Cbor/CborReader.xml index 66b714654b7..ebc4b587b46 100644 --- a/xml/System.Formats.Cbor/CborReader.xml +++ b/xml/System.Formats.Cbor/CborReader.xml @@ -1237,8 +1237,7 @@ The CBOR-encoded data to read. Resets the instance over the specified with unchanged configuration. - and are unchanged. - + and are unchanged. To be added. diff --git a/xml/System.IO.Compression/ZipArchiveEntry.xml b/xml/System.IO.Compression/ZipArchiveEntry.xml index 11c26663ac7..cbd5adb9b0b 100644 --- a/xml/System.IO.Compression/ZipArchiveEntry.xml +++ b/xml/System.IO.Compression/ZipArchiveEntry.xml @@ -157,7 +157,7 @@ If the comment byte length is larger than , it will System.Int64 - Gets the compressed size of the entry in the zip archive. + Gets the compressed size, expressed in bytes, of the entry in the zip archive. The compressed size of the entry in the zip archive. , it will System.Int64 - Gets the uncompressed size of the entry in the zip archive. + Gets the uncompressed size, expressed in bytes, of the entry in the zip archive. The uncompressed size of the entry in the zip archive. System.IO.Pipes + 9.0.0.0 netstandard + + [System.Runtime.Versioning.SupportedOSPlatform("windows")] + [<System.Runtime.Versioning.SupportedOSPlatform("windows")>] + [System.Security.SecuritySafeCritical] [<System.Security.SecuritySafeCritical>] - - - - - - + + + + + + The name of the remote computer to connect to, or "." to specify the local computer. diff --git a/xml/System.IO.Pipes/PipeAccessRights.xml b/xml/System.IO.Pipes/PipeAccessRights.xml index d21a3044a44..a7418dd3db8 100644 --- a/xml/System.IO.Pipes/PipeAccessRights.xml +++ b/xml/System.IO.Pipes/PipeAccessRights.xml @@ -22,6 +22,13 @@ 3.5.0.0 4.0.0.0 + + System.IO.Pipes + 9.0.0.0 + + + + System.Enum @@ -63,7 +70,6 @@ 6.0.0.0 7.0.0.0 8.0.0.0 - 9.0.0.0 System.Core @@ -71,6 +77,10 @@ 3.5.0.0 4.0.0.0 + + System.IO.Pipes + 9.0.0.0 + System.IO.Pipes.PipeAccessRights @@ -95,7 +105,6 @@ 6.0.0.0 7.0.0.0 8.0.0.0 - 9.0.0.0 System.Core @@ -103,6 +112,10 @@ 3.5.0.0 4.0.0.0 + + System.IO.Pipes + 9.0.0.0 + System.IO.Pipes.PipeAccessRights @@ -127,7 +140,6 @@ 6.0.0.0 7.0.0.0 8.0.0.0 - 9.0.0.0 System.Core @@ -135,6 +147,10 @@ 3.5.0.0 4.0.0.0 + + System.IO.Pipes + 9.0.0.0 + System.IO.Pipes.PipeAccessRights @@ -159,7 +175,6 @@ 6.0.0.0 7.0.0.0 8.0.0.0 - 9.0.0.0 System.Core @@ -167,6 +182,10 @@ 3.5.0.0 4.0.0.0 + + System.IO.Pipes + 9.0.0.0 + System.IO.Pipes.PipeAccessRights @@ -191,7 +210,6 @@ 6.0.0.0 7.0.0.0 8.0.0.0 - 9.0.0.0 System.Core @@ -199,6 +217,10 @@ 3.5.0.0 4.0.0.0 + + System.IO.Pipes + 9.0.0.0 + System.IO.Pipes.PipeAccessRights @@ -223,7 +245,6 @@ 6.0.0.0 7.0.0.0 8.0.0.0 - 9.0.0.0 System.Core @@ -231,6 +252,10 @@ 3.5.0.0 4.0.0.0 + + System.IO.Pipes + 9.0.0.0 + System.IO.Pipes.PipeAccessRights @@ -255,7 +280,6 @@ 6.0.0.0 7.0.0.0 8.0.0.0 - 9.0.0.0 System.Core @@ -263,6 +287,10 @@ 3.5.0.0 4.0.0.0 + + System.IO.Pipes + 9.0.0.0 + System.IO.Pipes.PipeAccessRights @@ -287,7 +315,6 @@ 6.0.0.0 7.0.0.0 8.0.0.0 - 9.0.0.0 System.Core @@ -295,6 +322,10 @@ 3.5.0.0 4.0.0.0 + + System.IO.Pipes + 9.0.0.0 + System.IO.Pipes.PipeAccessRights @@ -319,7 +350,6 @@ 6.0.0.0 7.0.0.0 8.0.0.0 - 9.0.0.0 System.Core @@ -327,6 +357,10 @@ 3.5.0.0 4.0.0.0 + + System.IO.Pipes + 9.0.0.0 + System.IO.Pipes.PipeAccessRights @@ -351,7 +385,6 @@ 6.0.0.0 7.0.0.0 8.0.0.0 - 9.0.0.0 System.Core @@ -359,6 +392,10 @@ 3.5.0.0 4.0.0.0 + + System.IO.Pipes + 9.0.0.0 + System.IO.Pipes.PipeAccessRights @@ -383,7 +420,6 @@ 6.0.0.0 7.0.0.0 8.0.0.0 - 9.0.0.0 System.Core @@ -391,6 +427,10 @@ 3.5.0.0 4.0.0.0 + + System.IO.Pipes + 9.0.0.0 + System.IO.Pipes.PipeAccessRights @@ -415,7 +455,6 @@ 6.0.0.0 7.0.0.0 8.0.0.0 - 9.0.0.0 System.Core @@ -423,6 +462,10 @@ 3.5.0.0 4.0.0.0 + + System.IO.Pipes + 9.0.0.0 + System.IO.Pipes.PipeAccessRights @@ -447,7 +490,6 @@ 6.0.0.0 7.0.0.0 8.0.0.0 - 9.0.0.0 System.Core @@ -455,6 +497,10 @@ 3.5.0.0 4.0.0.0 + + System.IO.Pipes + 9.0.0.0 + System.IO.Pipes.PipeAccessRights @@ -479,7 +525,6 @@ 6.0.0.0 7.0.0.0 8.0.0.0 - 9.0.0.0 System.Core @@ -487,6 +532,10 @@ 3.5.0.0 4.0.0.0 + + System.IO.Pipes + 9.0.0.0 + System.IO.Pipes.PipeAccessRights @@ -511,7 +560,6 @@ 6.0.0.0 7.0.0.0 8.0.0.0 - 9.0.0.0 System.Core @@ -519,6 +567,10 @@ 3.5.0.0 4.0.0.0 + + System.IO.Pipes + 9.0.0.0 + System.IO.Pipes.PipeAccessRights @@ -543,7 +595,6 @@ 6.0.0.0 7.0.0.0 8.0.0.0 - 9.0.0.0 System.Core @@ -551,6 +602,10 @@ 3.5.0.0 4.0.0.0 + + System.IO.Pipes + 9.0.0.0 + System.IO.Pipes.PipeAccessRights @@ -575,7 +630,6 @@ 6.0.0.0 7.0.0.0 8.0.0.0 - 9.0.0.0 System.Core @@ -583,6 +637,10 @@ 3.5.0.0 4.0.0.0 + + System.IO.Pipes + 9.0.0.0 + System.IO.Pipes.PipeAccessRights diff --git a/xml/System.IO/Path.xml b/xml/System.IO/Path.xml index 9848ba52d6f..07e9aacfe54 100644 --- a/xml/System.IO/Path.xml +++ b/xml/System.IO/Path.xml @@ -57,6 +57,14 @@ + + [System.Runtime.CompilerServices.Nullable(0)] + [<System.Runtime.CompilerServices.Nullable(0)>] + + + [System.Runtime.CompilerServices.NullableContext(1)] + [<System.Runtime.CompilerServices.NullableContext(1)>] + [System.Runtime.InteropServices.ComVisible(true)] [<System.Runtime.InteropServices.ComVisible(true)>] @@ -304,6 +312,47 @@ This method is intended to concatenate individual strings into a single string t + + + + + + + + Method + + System.Runtime + 9.0.0.0 + + + System.Runtime.Extensions + + + mscorlib + + + netstandard + + + System.String + + + + + + [System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 1 })] + [<System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 1 })>] + + + + + + To be added. + To be added. + To be added. + To be added. + + @@ -340,7 +389,7 @@ This method is intended to concatenate individual strings into a single string t 9.0.0.0 - + [System.Runtime.CompilerServices.NullableContext(1)] [<System.Runtime.CompilerServices.NullableContext(1)>] @@ -430,7 +479,7 @@ If any element in `paths` but the last one is not a drive and does not end with 9.0.0.0 - + [System.Runtime.CompilerServices.NullableContext(1)] [<System.Runtime.CompilerServices.NullableContext(1)>] @@ -517,7 +566,7 @@ If any element in `paths` but the last one is not a drive and does not end with 9.0.0.0 - + [System.Runtime.CompilerServices.NullableContext(1)] [<System.Runtime.CompilerServices.NullableContext(1)>] @@ -604,7 +653,7 @@ If any element in `paths` but the last one is not a drive and does not end with 9.0.0.0 - + [System.Runtime.CompilerServices.NullableContext(1)] [<System.Runtime.CompilerServices.NullableContext(1)>] @@ -772,6 +821,12 @@ The following example displays field values on Windows and 8.0.0.0 9.0.0.0 + + + [System.Runtime.CompilerServices.NullableContext(0)] + [<System.Runtime.CompilerServices.NullableContext(0)>] + + System.Boolean @@ -929,6 +984,12 @@ Unlike , this method returns `true` f 8.0.0.0 9.0.0.0 + + + [System.Runtime.CompilerServices.NullableContext(0)] + [<System.Runtime.CompilerServices.NullableContext(0)>] + + System.ReadOnlySpan<System.Char> @@ -1070,6 +1131,12 @@ Note: In + [System.Runtime.CompilerServices.NullableContext(0)] + [<System.Runtime.CompilerServices.NullableContext(0)>] + + System.ReadOnlySpan<System.Char> @@ -1197,6 +1264,12 @@ This method obtains the extension of `path` by searching `path` for a period (.) 8.0.0.0 9.0.0.0 + + + [System.Runtime.CompilerServices.NullableContext(0)] + [<System.Runtime.CompilerServices.NullableContext(0)>] + + System.ReadOnlySpan<System.Char> @@ -1330,6 +1403,12 @@ For a list of common I/O tasks, see [Common I/O Tasks](/dotnet/standard/io/commo 8.0.0.0 9.0.0.0 + + + [System.Runtime.CompilerServices.NullableContext(0)] + [<System.Runtime.CompilerServices.NullableContext(0)>] + + System.ReadOnlySpan<System.Char> @@ -1461,7 +1540,7 @@ For a list of common I/O tasks, see [Common I/O Tasks](/dotnet/standard/io/commo 9.0.0.0 - + [System.Runtime.CompilerServices.NullableContext(1)] [<System.Runtime.CompilerServices.NullableContext(1)>] @@ -1560,7 +1639,7 @@ For more information on file path formats on Windows, see [File path formats on 9.0.0.0 - + [System.Runtime.CompilerServices.NullableContext(1)] [<System.Runtime.CompilerServices.NullableContext(1)>] @@ -1642,7 +1721,7 @@ The following example defines a variable, `basePath`, to represent an applicatio 9.0.0.0 - + [System.Runtime.CompilerServices.NullableContext(1)] [<System.Runtime.CompilerServices.NullableContext(1)>] @@ -1710,7 +1789,7 @@ The following example defines a variable, `basePath`, to represent an applicatio 9.0.0.0 - + [System.Runtime.CompilerServices.NullableContext(1)] [<System.Runtime.CompilerServices.NullableContext(1)>] @@ -1767,6 +1846,12 @@ The following example defines a variable, `basePath`, to represent an applicatio 8.0.0.0 9.0.0.0 + + + [System.Runtime.CompilerServices.NullableContext(0)] + [<System.Runtime.CompilerServices.NullableContext(0)>] + + System.ReadOnlySpan<System.Char> @@ -1970,7 +2055,7 @@ The following example demonstrates a use of the `GetPathRoot` method. 9.0.0.0 - + [System.Runtime.CompilerServices.NullableContext(1)] [<System.Runtime.CompilerServices.NullableContext(1)>] @@ -2030,7 +2115,7 @@ Unlike , 9.0.0.0 - + [System.Runtime.CompilerServices.NullableContext(1)] [<System.Runtime.CompilerServices.NullableContext(1)>] @@ -2104,7 +2189,7 @@ Paths are resolved by calling the method be 9.0.0.0 - + [System.Runtime.CompilerServices.NullableContext(1)] [<System.Runtime.CompilerServices.NullableContext(1)>] @@ -2182,7 +2267,7 @@ On .NET 7 and earlier versions, when using this method on Windows, the 9.0.0.0 - + [System.Runtime.CompilerServices.NullableContext(1)] [<System.Runtime.CompilerServices.NullableContext(1)>] @@ -2282,6 +2367,12 @@ C:\Users\UserName\AppData\Local\Temp\ 8.0.0.0 9.0.0.0 + + + [System.Runtime.CompilerServices.NullableContext(0)] + [<System.Runtime.CompilerServices.NullableContext(0)>] + + System.Boolean @@ -2434,7 +2525,7 @@ A trailing period in `path` is not considered an extension. [System.Obsolete("Path.InvalidPathChars has been deprecated. Use GetInvalidPathChars or GetInvalidFileNameChars instead.")] [<System.Obsolete("Path.InvalidPathChars has been deprecated. Use GetInvalidPathChars or GetInvalidFileNameChars instead.")>] - + [System.Runtime.CompilerServices.Nullable(1)] [<System.Runtime.CompilerServices.Nullable(1)>] @@ -2515,6 +2606,12 @@ There is a difference between a fully qualified path (as indicated by the `IsPat 8.0.0.0 9.0.0.0 + + + [System.Runtime.CompilerServices.NullableContext(0)] + [<System.Runtime.CompilerServices.NullableContext(0)>] + + System.Boolean @@ -2564,7 +2661,7 @@ There is a difference between a fully qualified path (as indicated by the `IsPat 9.0.0.0 - + [System.Runtime.CompilerServices.NullableContext(1)] [<System.Runtime.CompilerServices.NullableContext(1)>] @@ -2641,6 +2738,12 @@ Note that rooted paths can be either absolute (that is, fully qualified) or rela 8.0.0.0 9.0.0.0 + + + [System.Runtime.CompilerServices.NullableContext(0)] + [<System.Runtime.CompilerServices.NullableContext(0)>] + + System.Boolean @@ -2744,6 +2847,47 @@ Note that rooted paths can be either absolute (that is, fully qualified) or rela How to: Write Text to a File + + + + + + + + Method + + System.Runtime + 9.0.0.0 + + + System.Runtime.Extensions + + + mscorlib + + + netstandard + + + System.String + + + + + + [System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 2 })] + [<System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 2 })>] + + + + + + To be added. + To be added. + To be added. + To be added. + + @@ -2772,7 +2916,7 @@ Note that rooted paths can be either absolute (that is, fully qualified) or rela 9.0.0.0 - + [System.Runtime.CompilerServices.NullableContext(1)] [<System.Runtime.CompilerServices.NullableContext(1)>] @@ -2847,6 +2991,12 @@ Not all invalid characters for directory and file names are interpreted as unacc 8.0.0.0 9.0.0.0 + + + [System.Runtime.CompilerServices.NullableContext(0)] + [<System.Runtime.CompilerServices.NullableContext(0)>] + + System.String @@ -2983,6 +3133,12 @@ Not all invalid characters for directory and file names are interpreted as unacc 8.0.0.0 9.0.0.0 + + + [System.Runtime.CompilerServices.NullableContext(0)] + [<System.Runtime.CompilerServices.NullableContext(0)>] + + System.String @@ -3121,6 +3277,12 @@ Not all invalid characters for directory and file names are interpreted as unacc 8.0.0.0 9.0.0.0 + + + [System.Runtime.CompilerServices.NullableContext(0)] + [<System.Runtime.CompilerServices.NullableContext(0)>] + + System.String @@ -3318,6 +3480,12 @@ Not all invalid characters for directory and file names are interpreted as unacc 8.0.0.0 9.0.0.0 + + + [System.Runtime.CompilerServices.NullableContext(0)] + [<System.Runtime.CompilerServices.NullableContext(0)>] + + System.ReadOnlySpan<System.Char> @@ -3359,7 +3527,7 @@ Not all invalid characters for directory and file names are interpreted as unacc 9.0.0.0 - + [System.Runtime.CompilerServices.NullableContext(1)] [<System.Runtime.CompilerServices.NullableContext(1)>] @@ -3421,6 +3589,12 @@ The destination character span must be large enough to hold the concatenated pat 8.0.0.0 9.0.0.0 + + + [System.Runtime.CompilerServices.NullableContext(0)] + [<System.Runtime.CompilerServices.NullableContext(0)>] + + System.Boolean @@ -3478,6 +3652,12 @@ The destination character span must be large enough to hold the concatenated pat 8.0.0.0 9.0.0.0 + + + [System.Runtime.CompilerServices.NullableContext(0)] + [<System.Runtime.CompilerServices.NullableContext(0)>] + + System.Boolean diff --git a/xml/System.IO/StreamWriter.xml b/xml/System.IO/StreamWriter.xml index aef81553f33..55f3ededc78 100644 --- a/xml/System.IO/StreamWriter.xml +++ b/xml/System.IO/StreamWriter.xml @@ -2063,6 +2063,58 @@ See for a descr + + + + + + + + Method + + System.Runtime + 9.0.0.0 + + + System.IO + + + mscorlib + + + netstandard + + + System.Runtime.Extensions + + + System.Void + + + + + + [System.Diagnostics.CodeAnalysis.StringSyntax("CompositeFormat")] + [<System.Diagnostics.CodeAnalysis.StringSyntax("CompositeFormat")>] + + + + + + + [System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 2 })] + [<System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 2 })>] + + + + + + To be added. + To be added. + To be added. + To be added. + + @@ -2862,6 +2914,58 @@ See for a d + + + + + + + + Method + + System.Runtime + 9.0.0.0 + + + System.IO + + + mscorlib + + + netstandard + + + System.Runtime.Extensions + + + System.Void + + + + + + [System.Diagnostics.CodeAnalysis.StringSyntax("CompositeFormat")] + [<System.Diagnostics.CodeAnalysis.StringSyntax("CompositeFormat")>] + + + + + + + [System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 2 })] + [<System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 2 })>] + + + + + + To be added. + To be added. + To be added. + To be added. + + diff --git a/xml/System.IO/TextWriter.xml b/xml/System.IO/TextWriter.xml index ebfa98d5b48..2eff70961ca 100644 --- a/xml/System.IO/TextWriter.xml +++ b/xml/System.IO/TextWriter.xml @@ -2416,6 +2416,58 @@ This method is equivalent to `Write(stringBuilder.ToString())`, but it uses the How to: Write Text to a File + + + + + + + + Method + + System.Runtime + 9.0.0.0 + + + System.IO + + + mscorlib + + + netstandard + + + System.Runtime.Extensions + + + System.Void + + + + + + [System.Diagnostics.CodeAnalysis.StringSyntax("CompositeFormat")] + [<System.Diagnostics.CodeAnalysis.StringSyntax("CompositeFormat")>] + + + + + + + [System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 2 })] + [<System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 2 })>] + + + + + + To be added. + To be added. + To be added. + To be added. + + @@ -4513,6 +4565,58 @@ For a list of common I/O tasks, see [Common I/O Tasks](/dotnet/standard/io/commo How to: Write Text to a File + + + + + + + + Method + + System.Runtime + 9.0.0.0 + + + System.IO + + + mscorlib + + + netstandard + + + System.Runtime.Extensions + + + System.Void + + + + + + [System.Diagnostics.CodeAnalysis.StringSyntax("CompositeFormat")] + [<System.Diagnostics.CodeAnalysis.StringSyntax("CompositeFormat")>] + + + + + + + [System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 2 })] + [<System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 2 })>] + + + + + + To be added. + To be added. + To be added. + To be added. + + diff --git a/xml/System.Net.Http/HttpDiagnosticsHttpRequestMessageExtensions.xml b/xml/System.Net.Http/HttpDiagnosticsHttpRequestMessageExtensions.xml index 95221faecbc..d16d53b3884 100644 --- a/xml/System.Net.Http/HttpDiagnosticsHttpRequestMessageExtensions.xml +++ b/xml/System.Net.Http/HttpDiagnosticsHttpRequestMessageExtensions.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Http.Diagnostics 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -42,7 +43,7 @@ Method Microsoft.Extensions.Http.Diagnostics - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -71,7 +72,7 @@ Method Microsoft.Extensions.Http.Diagnostics - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/System.Net.Http/HttpResilienceHttpRequestMessageExtensions.xml b/xml/System.Net.Http/HttpResilienceHttpRequestMessageExtensions.xml index 23cbaf2ec76..f02ce754d70 100644 --- a/xml/System.Net.Http/HttpResilienceHttpRequestMessageExtensions.xml +++ b/xml/System.Net.Http/HttpResilienceHttpRequestMessageExtensions.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Http.Resilience 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -42,7 +43,7 @@ Method Microsoft.Extensions.Http.Resilience - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -70,7 +71,7 @@ Method Microsoft.Extensions.Http.Resilience - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/System.Net/HttpDiagnosticsHttpWebRequestExtensions.xml b/xml/System.Net/HttpDiagnosticsHttpWebRequestExtensions.xml index 44400ce4c46..6dc6cb39ec0 100644 --- a/xml/System.Net/HttpDiagnosticsHttpWebRequestExtensions.xml +++ b/xml/System.Net/HttpDiagnosticsHttpWebRequestExtensions.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Http.Diagnostics 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -42,7 +43,7 @@ Method Microsoft.Extensions.Http.Diagnostics - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -71,7 +72,7 @@ Method Microsoft.Extensions.Http.Diagnostics - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/System.Numerics/IFloatingPoint`1.xml b/xml/System.Numerics/IFloatingPoint`1.xml index 468955a1e0d..266cfd11200 100644 --- a/xml/System.Numerics/IFloatingPoint`1.xml +++ b/xml/System.Numerics/IFloatingPoint`1.xml @@ -152,6 +152,84 @@ To be added. + + + + + + + + Method + + System.Runtime + 9.0.0.0 + + + TInteger + + + + + + [System.Runtime.CompilerServices.Nullable(0)] + [<System.Runtime.CompilerServices.Nullable(0)>] + + + + System.Numerics.IBinaryInteger<TInteger> + + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + + + + + + + + + + Method + + System.Runtime + 9.0.0.0 + + + TInteger + + + + + + [System.Runtime.CompilerServices.Nullable(0)] + [<System.Runtime.CompilerServices.Nullable(0)>] + + + + System.Numerics.IBinaryInteger<TInteger> + + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + + diff --git a/xml/System.Numerics/Vector.xml b/xml/System.Numerics/Vector.xml index 286ca9fef0d..c341e792b61 100644 --- a/xml/System.Numerics/Vector.xml +++ b/xml/System.Numerics/Vector.xml @@ -1759,6 +1759,34 @@ Note that this method returns a instead of an integral type To be added. + + + + + + + + Method + + System.Numerics.Vectors + 9.0.0.0 + + + netstandard + + + System.Numerics.Vector<System.Int32> + + + + + + To be added. + To be added. + To be added. + To be added. + + @@ -1797,6 +1825,34 @@ Note that this method returns a instead of an integral type To be added. + + + + + + + + Method + + System.Numerics.Vectors + 9.0.0.0 + + + netstandard + + + System.Numerics.Vector<System.Int64> + + + + + + To be added. + To be added. + To be added. + To be added. + + @@ -1923,6 +1979,40 @@ Note that this method returns a instead of an integral type To be added. + + + + + + + + Method + + System.Numerics.Vectors + 9.0.0.0 + + + netstandard + + + + [System.CLSCompliant(false)] + [<System.CLSCompliant(false)>] + + + + System.Numerics.Vector<System.UInt32> + + + + + + To be added. + To be added. + To be added. + To be added. + + @@ -1967,6 +2057,40 @@ Note that this method returns a instead of an integral type To be added. + + + + + + + + Method + + System.Numerics.Vectors + 9.0.0.0 + + + netstandard + + + + [System.CLSCompliant(false)] + [<System.CLSCompliant(false)>] + + + + System.Numerics.Vector<System.UInt64> + + + + + + To be added. + To be added. + To be added. + To be added. + + diff --git a/xml/System.Reflection.Emit/ILGenerator.xml b/xml/System.Reflection.Emit/ILGenerator.xml index 108437e3295..d6a53359115 100644 --- a/xml/System.Reflection.Emit/ILGenerator.xml +++ b/xml/System.Reflection.Emit/ILGenerator.xml @@ -2530,12 +2530,17 @@ The following code example emits two methods, a `varargs` method and a method th - - + + - - - + + + + + + + + Method mscorlib @@ -2545,6 +2550,7 @@ The following code example emits two methods, a `varargs` method and a method th System.Reflection.Emit.ILGeneration + 9.0.0.0 netstandard @@ -2553,11 +2559,11 @@ The following code example emits two methods, a `varargs` method and a method th System.Void - - - - - + + + + + The document for which the sequence point is being defined. @@ -2583,6 +2589,41 @@ The following code example emits two methods, a `varargs` method and a method th This belongs to a . + + + + + + + + Method + + System.Reflection.Emit.ILGeneration + 9.0.0.0 + + + netstandard + + + System.Void + + + + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + + diff --git a/xml/System.Reflection.Emit/LocalBuilder.xml b/xml/System.Reflection.Emit/LocalBuilder.xml index b5de41728c6..eecf019b51b 100644 --- a/xml/System.Reflection.Emit/LocalBuilder.xml +++ b/xml/System.Reflection.Emit/LocalBuilder.xml @@ -297,6 +297,7 @@ System.Reflection.Emit.ILGeneration + 9.0.0.0 netstandard @@ -305,7 +306,7 @@ System.Void - + The name of the local variable. @@ -399,6 +400,33 @@ This local is defined in a dynamic method, rather than in a method of a dynamic type. + + + + + + + + Method + + System.Reflection.Emit.ILGeneration + 9.0.0.0 + + + netstandard + + + System.Void + + + + + + To be added. + To be added. + To be added. + + diff --git a/xml/System.Reflection.Emit/ModuleBuilder.xml b/xml/System.Reflection.Emit/ModuleBuilder.xml index 987f8a6f37e..2420c55d271 100644 --- a/xml/System.Reflection.Emit/ModuleBuilder.xml +++ b/xml/System.Reflection.Emit/ModuleBuilder.xml @@ -253,6 +253,35 @@ To be added. + + + + + + + Method + + System.Reflection.Emit + 9.0.0.0 + + + netstandard + + + System.Diagnostics.SymbolStore.ISymbolDocumentWriter + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + + @@ -269,11 +298,16 @@ System.Reflection.Emit + 9.0.0.0 netstandard + + [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)] + [<System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)>] + [System.Security.SecuritySafeCritical] [<System.Security.SecuritySafeCritical>] @@ -283,10 +317,10 @@ System.Diagnostics.SymbolStore.ISymbolDocumentWriter - - - - + + + + The URL for the document. @@ -319,6 +353,35 @@ This method is called on a dynamic module that is not a debug module. + + + + + + + Method + + System.Reflection.Emit + 9.0.0.0 + + + netstandard + + + System.Diagnostics.SymbolStore.ISymbolDocumentWriter + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + + diff --git a/xml/System.Reflection.Emit/PersistedAssemblyBuilder.xml b/xml/System.Reflection.Emit/PersistedAssemblyBuilder.xml index 415c54c3f13..348466a39b4 100644 --- a/xml/System.Reflection.Emit/PersistedAssemblyBuilder.xml +++ b/xml/System.Reflection.Emit/PersistedAssemblyBuilder.xml @@ -154,6 +154,41 @@ To be added. + + + + + + + + Method + + System.Reflection.Emit + 9.0.0.0 + + + + [System.CLSCompliant(false)] + [<System.CLSCompliant(false)>] + + + + System.Reflection.Metadata.Ecma335.MetadataBuilder + + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + + diff --git a/xml/System.Reflection/TypeExtensions.xml b/xml/System.Reflection/TypeExtensions.xml index 6df9055626c..d09985d4b35 100644 --- a/xml/System.Reflection/TypeExtensions.xml +++ b/xml/System.Reflection/TypeExtensions.xml @@ -157,23 +157,38 @@ - - - - - - + + + + + + + Method System.Reflection.TypeExtensions - 4.1.5.0 + 4.0.0.0 + 4.1.0.0 + 4.1.2.0 + 5.0.0.0 + 6.0.0.0 + 7.0.0.0 + 8.0.0.0 + 9.0.0.0 - System.Reflection.EventInfo + System.Reflection.EventInfo - - + + + + [System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembers(System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicEvents)] + [<System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembers(System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicEvents)>] + + + + To be added. @@ -184,24 +199,39 @@ - - - - - - + + + + + + + Method System.Reflection.TypeExtensions - 4.1.5.0 + 4.0.0.0 + 4.1.0.0 + 4.1.2.0 + 5.0.0.0 + 6.0.0.0 + 7.0.0.0 + 8.0.0.0 + 9.0.0.0 - System.Reflection.EventInfo + System.Reflection.EventInfo - - - + + + + [System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembers(System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.NonPublicEvents | System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicEvents)] + [<System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembers(System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.NonPublicEvents | System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicEvents)>] + + + + + To be added. @@ -213,22 +243,36 @@ - - - - - - + + + + + + Method System.Reflection.TypeExtensions - 4.1.5.0 + 4.0.0.0 + 4.1.0.0 + 4.1.2.0 + 5.0.0.0 + 6.0.0.0 + 7.0.0.0 + 8.0.0.0 + 9.0.0.0 - System.Reflection.EventInfo[] + System.Reflection.EventInfo[] - + + + + [System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembers(System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicEvents)] + [<System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembers(System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicEvents)>] + + + To be added. @@ -279,23 +323,38 @@ - - - - - - + + + + + + + Method System.Reflection.TypeExtensions - 4.1.5.0 + 4.0.0.0 + 4.1.0.0 + 4.1.2.0 + 5.0.0.0 + 6.0.0.0 + 7.0.0.0 + 8.0.0.0 + 9.0.0.0 - System.Reflection.FieldInfo + System.Reflection.FieldInfo - - + + + + [System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembers(System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicFields)] + [<System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembers(System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicFields)>] + + + + To be added. @@ -306,39 +365,24 @@ - - - - - - - + + + + + + Method System.Reflection.TypeExtensions - 4.0.0.0 - 4.1.0.0 - 4.1.2.0 - 5.0.0.0 - 6.0.0.0 - 7.0.0.0 - 8.0.0.0 - 9.0.0.0 + 4.1.5.0 - System.Reflection.FieldInfo + System.Reflection.FieldInfo - - - - [System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembers(System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.NonPublicFields | System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicFields)] - [<System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembers(System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.NonPublicFields | System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicFields)>] - - - - - + + + To be added. @@ -448,12 +492,37 @@ - - - - - - + + + + + + + Method + + System.Reflection.TypeExtensions + 4.1.5.0 + + + System.Type[] + + + + + + To be added. + To be added. + To be added. + To be added. + + + + + + + + + Method System.Reflection.TypeExtensions @@ -467,32 +536,34 @@ 9.0.0.0 - System.Type[] + System.Reflection.MemberInfo[] - [System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembers(System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.Interfaces)] - [<System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembers(System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.Interfaces)>] + [System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembers(System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicConstructors | System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicEvents | System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicFields | System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicMethods | System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicNestedTypes | System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicProperties)] + [<System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembers(System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicConstructors | System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicEvents | System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicFields | System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicMethods | System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicNestedTypes | System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicProperties)>] + To be added. + To be added. To be added. To be added. To be added. - - - - - - + + + + + + Method System.Reflection.TypeExtensions @@ -504,22 +575,24 @@ + To be added. To be added. + To be added. To be added. To be added. To be added. - - - - - - - + + + + + + + Method System.Reflection.TypeExtensions @@ -539,69 +612,54 @@ - [System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembers(System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.All)] - [<System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembers(System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.All)>] + [System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembers(System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicConstructors | System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicEvents | System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicFields | System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicMethods | System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicNestedTypes | System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicProperties)] + [<System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembers(System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicConstructors | System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicEvents | System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicFields | System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicMethods | System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicNestedTypes | System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicProperties)>] - - To be added. - To be added. - To be added. To be added. To be added. To be added. - - - - - - + + + + + + Method System.Reflection.TypeExtensions - 4.0.0.0 - 4.1.0.0 - 4.1.2.0 - 5.0.0.0 - 6.0.0.0 - 7.0.0.0 - 8.0.0.0 - 9.0.0.0 + 4.1.5.0 - System.Reflection.MemberInfo[] + System.Reflection.MemberInfo[] - - - - [System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembers(System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicConstructors | System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicEvents | System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicFields | System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicMethods | System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicNestedTypes | System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicProperties)] - [<System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembers(System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicConstructors | System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicEvents | System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicFields | System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicMethods | System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicNestedTypes | System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicProperties)>] - - - + + To be added. + To be added. To be added. To be added. To be added. - - - - - - - + + + + + + + + Method System.Reflection.TypeExtensions @@ -615,45 +673,18 @@ 9.0.0.0 - System.Reflection.MemberInfo[] + System.Reflection.MethodInfo - [System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembers(System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.All)] - [<System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembers(System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.All)>] + [System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembers(System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicMethods)] + [<System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembers(System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicMethods)>] - - - - To be added. - To be added. - To be added. - To be added. - To be added. - - - - - - - - - - Method - - System.Reflection.TypeExtensions - 4.1.5.0 - - - System.Reflection.MethodInfo - - - - + To be added. @@ -664,24 +695,39 @@ - - - - - - + + + + + + + Method System.Reflection.TypeExtensions - 4.1.5.0 + 4.0.0.0 + 4.1.0.0 + 4.1.2.0 + 5.0.0.0 + 6.0.0.0 + 7.0.0.0 + 8.0.0.0 + 9.0.0.0 - System.Reflection.MethodInfo + System.Reflection.MethodInfo - - - + + + + [System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembers(System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.NonPublicMethods | System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicMethods)] + [<System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembers(System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.NonPublicMethods | System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicMethods)>] + + + + + To be added. @@ -737,36 +783,22 @@ - - - - - - + + + + + + Method System.Reflection.TypeExtensions - 4.0.0.0 - 4.1.0.0 - 4.1.2.0 - 5.0.0.0 - 6.0.0.0 - 7.0.0.0 - 8.0.0.0 - 9.0.0.0 + 4.1.5.0 - System.Reflection.MethodInfo[] + System.Reflection.MethodInfo[] - - - - [System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembers(System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicMethods)] - [<System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembers(System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicMethods)>] - - - + To be added. @@ -817,39 +849,24 @@ - - - - - - - + + + + + + Method System.Reflection.TypeExtensions - 4.0.0.0 - 4.1.0.0 - 4.1.2.0 - 5.0.0.0 - 6.0.0.0 - 7.0.0.0 - 8.0.0.0 - 9.0.0.0 + 4.1.5.0 - System.Type + System.Type - - - - [System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembers(System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.NonPublicNestedTypes | System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicNestedTypes)] - [<System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembers(System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.NonPublicNestedTypes | System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicNestedTypes)>] - - - - - + + + To be added. @@ -861,37 +878,23 @@ - - - - - - + + + + + + Method System.Reflection.TypeExtensions - 4.0.0.0 - 4.1.0.0 - 4.1.2.0 - 5.0.0.0 - 6.0.0.0 - 7.0.0.0 - 8.0.0.0 - 9.0.0.0 + 4.1.5.0 - System.Type[] + System.Type[] - - - - [System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembers(System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.NonPublicNestedTypes | System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicNestedTypes)] - [<System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembers(System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.NonPublicNestedTypes | System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicNestedTypes)>] - - - - + + To be added. @@ -982,23 +985,38 @@ - - - - - - + + + + + + + Method System.Reflection.TypeExtensions - 4.1.5.0 + 4.0.0.0 + 4.1.0.0 + 4.1.2.0 + 5.0.0.0 + 6.0.0.0 + 7.0.0.0 + 8.0.0.0 + 9.0.0.0 - System.Reflection.PropertyInfo + System.Reflection.PropertyInfo - - + + + + [System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembers(System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicProperties)] + [<System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembers(System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicProperties)>] + + + + To be added. @@ -1053,46 +1071,24 @@ - - - - - - - + + + + + + Method System.Reflection.TypeExtensions - 4.0.0.0 - 4.1.0.0 - 4.1.2.0 - 5.0.0.0 - 6.0.0.0 - 7.0.0.0 - 8.0.0.0 - 9.0.0.0 + 4.1.5.0 - System.Reflection.PropertyInfo + System.Reflection.PropertyInfo - - - - [System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembers(System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicProperties)] - [<System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembers(System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicProperties)>] - - - - - - - - [System.Runtime.CompilerServices.Nullable(2)] - [<System.Runtime.CompilerServices.Nullable(2)>] - - - + + + To be added. diff --git a/xml/System.Runtime.CompilerServices/RuntimeHelpers.xml b/xml/System.Runtime.CompilerServices/RuntimeHelpers.xml index c4e4bb8a1bc..ea63a986517 100644 --- a/xml/System.Runtime.CompilerServices/RuntimeHelpers.xml +++ b/xml/System.Runtime.CompilerServices/RuntimeHelpers.xml @@ -115,6 +115,45 @@ To be added. + + + + + + + + Method + + System.Runtime + 9.0.0.0 + + + mscorlib + + + netstandard + + + + [System.Runtime.CompilerServices.NullableContext(2)] + [<System.Runtime.CompilerServices.NullableContext(2)>] + + + + System.Object + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + + @@ -1367,6 +1406,37 @@ This method is intended for compiler use rather than use directly in code. `T` m The module constructor throws an exception. + + + + + + + + Method + + System.Runtime + 9.0.0.0 + + + mscorlib + + + netstandard + + + System.Int32 + + + + + + To be added. + To be added. + To be added. + To be added. + + diff --git a/xml/System.Runtime.CompilerServices/Unsafe.xml b/xml/System.Runtime.CompilerServices/Unsafe.xml index 928d3f31368..af2a6d26bb5 100644 --- a/xml/System.Runtime.CompilerServices/Unsafe.xml +++ b/xml/System.Runtime.CompilerServices/Unsafe.xml @@ -961,12 +961,17 @@ int ComputeSumOfElements(ref readonly int refToFirstElement, nint numElements) - - + + - - - + + + + + + + + Method System.Runtime @@ -977,7 +982,7 @@ int ComputeSumOfElements(ref readonly int refToFirstElement, nint numElements) System.Runtime.CompilerServices.Unsafe - + [System.Runtime.CompilerServices.NullableContext(0)] [<System.Runtime.CompilerServices.NullableContext(0)>] @@ -992,6 +997,12 @@ int ComputeSumOfElements(ref readonly int refToFirstElement, nint numElements) NotNullableValueTypeConstraint System.ValueType + + + [System.Runtime.CompilerServices.Nullable(2)] + [<System.Runtime.CompilerServices.Nullable(2)>] + + @@ -999,6 +1010,12 @@ int ComputeSumOfElements(ref readonly int refToFirstElement, nint numElements) NotNullableValueTypeConstraint System.ValueType + + + [System.Runtime.CompilerServices.Nullable(2)] + [<System.Runtime.CompilerServices.Nullable(2)>] + + diff --git a/xml/System.Runtime.InteropServices/NFloat.xml b/xml/System.Runtime.InteropServices/NFloat.xml index ac93f88c1dc..588c6177855 100644 --- a/xml/System.Runtime.InteropServices/NFloat.xml +++ b/xml/System.Runtime.InteropServices/NFloat.xml @@ -1017,6 +1017,102 @@ This computes `arctan(x) / π` in the interval `[-0.5, +0.5]`. To be added. + + + + + + + + Method + + M:System.Numerics.IFloatingPoint`1.ConvertToInteger``1(`0) + + + System.Runtime.InteropServices + 9.0.0.0 + + + + [System.Runtime.CompilerServices.NullableContext(1)] + [<System.Runtime.CompilerServices.NullableContext(1)>] + + + + TInteger + + + + + + [System.Runtime.CompilerServices.Nullable(0)] + [<System.Runtime.CompilerServices.Nullable(0)>] + + + + System.Numerics.IBinaryInteger<TInteger> + + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + + + + + + + + + + Method + + M:System.Numerics.IFloatingPoint`1.ConvertToIntegerNative``1(`0) + + + System.Runtime.InteropServices + 9.0.0.0 + + + + [System.Runtime.CompilerServices.NullableContext(1)] + [<System.Runtime.CompilerServices.NullableContext(1)>] + + + + TInteger + + + + + + [System.Runtime.CompilerServices.Nullable(0)] + [<System.Runtime.CompilerServices.Nullable(0)>] + + + + System.Numerics.IBinaryInteger<TInteger> + + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + + diff --git a/xml/System.Runtime.Intrinsics.Arm/AdvSimd+Arm64.xml b/xml/System.Runtime.Intrinsics.Arm/AdvSimd+Arm64.xml index 77dcaa8be8d..15681129b9b 100644 --- a/xml/System.Runtime.Intrinsics.Arm/AdvSimd+Arm64.xml +++ b/xml/System.Runtime.Intrinsics.Arm/AdvSimd+Arm64.xml @@ -20854,6 +20854,12 @@ 8.0.0.0 9.0.0.0 + + + [System.Obsolete("The underlying hardware instruction does not perform a signed saturate narrowing operation, and it always returns an unsigned result. Use the unsigned overload instead.", DiagnosticId="SYSLIB0055", UrlFormat="https://aka.ms/dotnet-warnings/{0}")] + [<System.Obsolete("The underlying hardware instruction does not perform a signed saturate narrowing operation, and it always returns an unsigned result. Use the unsigned overload instead.", DiagnosticId="SYSLIB0055", UrlFormat="https://aka.ms/dotnet-warnings/{0}")>] + + System.Runtime.Intrinsics.Vector64<System.SByte> @@ -20895,6 +20901,12 @@ 8.0.0.0 9.0.0.0 + + + [System.Obsolete("The underlying hardware instruction does not perform a signed saturate narrowing operation, and it always returns an unsigned result. Use the unsigned overload instead.", DiagnosticId="SYSLIB0055", UrlFormat="https://aka.ms/dotnet-warnings/{0}")] + [<System.Obsolete("The underlying hardware instruction does not perform a signed saturate narrowing operation, and it always returns an unsigned result. Use the unsigned overload instead.", DiagnosticId="SYSLIB0055", UrlFormat="https://aka.ms/dotnet-warnings/{0}")>] + + System.Runtime.Intrinsics.Vector64<System.Int16> @@ -20936,6 +20948,12 @@ 8.0.0.0 9.0.0.0 + + + [System.Obsolete("The underlying hardware instruction does not perform a signed saturate narrowing operation, and it always returns an unsigned result. Use the unsigned overload instead.", DiagnosticId="SYSLIB0055", UrlFormat="https://aka.ms/dotnet-warnings/{0}")] + [<System.Obsolete("The underlying hardware instruction does not perform a signed saturate narrowing operation, and it always returns an unsigned result. Use the unsigned overload instead.", DiagnosticId="SYSLIB0055", UrlFormat="https://aka.ms/dotnet-warnings/{0}")>] + + System.Runtime.Intrinsics.Vector64<System.Int32> diff --git a/xml/System.Runtime.Intrinsics.Arm/AdvSimd.xml b/xml/System.Runtime.Intrinsics.Arm/AdvSimd.xml index 5bad606bd2d..d26c906e136 100644 --- a/xml/System.Runtime.Intrinsics.Arm/AdvSimd.xml +++ b/xml/System.Runtime.Intrinsics.Arm/AdvSimd.xml @@ -56500,6 +56500,12 @@ 8.0.0.0 9.0.0.0 + + + [System.Obsolete("The underlying hardware instruction does not perform a signed saturate narrowing operation, and it always returns an unsigned result. Use the unsigned overload instead.", DiagnosticId="SYSLIB0055", UrlFormat="https://aka.ms/dotnet-warnings/{0}")] + [<System.Obsolete("The underlying hardware instruction does not perform a signed saturate narrowing operation, and it always returns an unsigned result. Use the unsigned overload instead.", DiagnosticId="SYSLIB0055", UrlFormat="https://aka.ms/dotnet-warnings/{0}")>] + + System.Runtime.Intrinsics.Vector64<System.SByte> @@ -56542,6 +56548,12 @@ 8.0.0.0 9.0.0.0 + + + [System.Obsolete("The underlying hardware instruction does not perform a signed saturate narrowing operation, and it always returns an unsigned result. Use the unsigned overload instead.", DiagnosticId="SYSLIB0055", UrlFormat="https://aka.ms/dotnet-warnings/{0}")] + [<System.Obsolete("The underlying hardware instruction does not perform a signed saturate narrowing operation, and it always returns an unsigned result. Use the unsigned overload instead.", DiagnosticId="SYSLIB0055", UrlFormat="https://aka.ms/dotnet-warnings/{0}")>] + + System.Runtime.Intrinsics.Vector64<System.Int16> @@ -56584,6 +56596,12 @@ 8.0.0.0 9.0.0.0 + + + [System.Obsolete("The underlying hardware instruction does not perform a signed saturate narrowing operation, and it always returns an unsigned result. Use the unsigned overload instead.", DiagnosticId="SYSLIB0055", UrlFormat="https://aka.ms/dotnet-warnings/{0}")] + [<System.Obsolete("The underlying hardware instruction does not perform a signed saturate narrowing operation, and it always returns an unsigned result. Use the unsigned overload instead.", DiagnosticId="SYSLIB0055", UrlFormat="https://aka.ms/dotnet-warnings/{0}")>] + + System.Runtime.Intrinsics.Vector64<System.Int32> @@ -56796,6 +56814,12 @@ 8.0.0.0 9.0.0.0 + + + [System.Obsolete("The underlying hardware instruction does not perform a signed saturate narrowing operation, and it always returns an unsigned result. Use the unsigned overload instead.", DiagnosticId="SYSLIB0055", UrlFormat="https://aka.ms/dotnet-warnings/{0}")] + [<System.Obsolete("The underlying hardware instruction does not perform a signed saturate narrowing operation, and it always returns an unsigned result. Use the unsigned overload instead.", DiagnosticId="SYSLIB0055", UrlFormat="https://aka.ms/dotnet-warnings/{0}")>] + + System.Runtime.Intrinsics.Vector128<System.Int16> @@ -56840,6 +56864,12 @@ 8.0.0.0 9.0.0.0 + + + [System.Obsolete("The underlying hardware instruction does not perform a signed saturate narrowing operation, and it always returns an unsigned result. Use the unsigned overload instead.", DiagnosticId="SYSLIB0055", UrlFormat="https://aka.ms/dotnet-warnings/{0}")] + [<System.Obsolete("The underlying hardware instruction does not perform a signed saturate narrowing operation, and it always returns an unsigned result. Use the unsigned overload instead.", DiagnosticId="SYSLIB0055", UrlFormat="https://aka.ms/dotnet-warnings/{0}")>] + + System.Runtime.Intrinsics.Vector128<System.Int32> @@ -56884,6 +56914,12 @@ 8.0.0.0 9.0.0.0 + + + [System.Obsolete("The underlying hardware instruction does not perform a signed saturate narrowing operation, and it always returns an unsigned result. Use the unsigned overload instead.", DiagnosticId="SYSLIB0055", UrlFormat="https://aka.ms/dotnet-warnings/{0}")] + [<System.Obsolete("The underlying hardware instruction does not perform a signed saturate narrowing operation, and it always returns an unsigned result. Use the unsigned overload instead.", DiagnosticId="SYSLIB0055", UrlFormat="https://aka.ms/dotnet-warnings/{0}")>] + + System.Runtime.Intrinsics.Vector128<System.SByte> diff --git a/xml/System.Runtime.Intrinsics/Vector128.xml b/xml/System.Runtime.Intrinsics/Vector128.xml index 9af07358474..ee003a65282 100644 --- a/xml/System.Runtime.Intrinsics/Vector128.xml +++ b/xml/System.Runtime.Intrinsics/Vector128.xml @@ -1697,6 +1697,31 @@ To be added. + + + + + + + + Method + + System.Runtime.Intrinsics + 9.0.0.0 + + + System.Runtime.Intrinsics.Vector128<System.Int32> + + + + + + To be added. + To be added. + To be added. + To be added. + + @@ -1724,6 +1749,31 @@ To be added. + + + + + + + + Method + + System.Runtime.Intrinsics + 9.0.0.0 + + + System.Runtime.Intrinsics.Vector128<System.Int64> + + + + + + To be added. + To be added. + To be added. + To be added. + + @@ -1817,6 +1867,37 @@ To be added. + + + + + + + + Method + + System.Runtime.Intrinsics + 9.0.0.0 + + + + [System.CLSCompliant(false)] + [<System.CLSCompliant(false)>] + + + + System.Runtime.Intrinsics.Vector128<System.UInt32> + + + + + + To be added. + To be added. + To be added. + To be added. + + @@ -1850,6 +1931,37 @@ To be added. + + + + + + + + Method + + System.Runtime.Intrinsics + 9.0.0.0 + + + + [System.CLSCompliant(false)] + [<System.CLSCompliant(false)>] + + + + System.Runtime.Intrinsics.Vector128<System.UInt64> + + + + + + To be added. + To be added. + To be added. + To be added. + + diff --git a/xml/System.Runtime.Intrinsics/Vector256.xml b/xml/System.Runtime.Intrinsics/Vector256.xml index 6b036eaf5bd..92befd116bc 100644 --- a/xml/System.Runtime.Intrinsics/Vector256.xml +++ b/xml/System.Runtime.Intrinsics/Vector256.xml @@ -1518,6 +1518,31 @@ To be added. + + + + + + + + Method + + System.Runtime.Intrinsics + 9.0.0.0 + + + System.Runtime.Intrinsics.Vector256<System.Int32> + + + + + + To be added. + To be added. + To be added. + To be added. + + @@ -1545,6 +1570,31 @@ To be added. + + + + + + + + Method + + System.Runtime.Intrinsics + 9.0.0.0 + + + System.Runtime.Intrinsics.Vector256<System.Int64> + + + + + + To be added. + To be added. + To be added. + To be added. + + @@ -1638,6 +1688,37 @@ To be added. + + + + + + + + Method + + System.Runtime.Intrinsics + 9.0.0.0 + + + + [System.CLSCompliant(false)] + [<System.CLSCompliant(false)>] + + + + System.Runtime.Intrinsics.Vector256<System.UInt32> + + + + + + To be added. + To be added. + To be added. + To be added. + + @@ -1671,6 +1752,37 @@ To be added. + + + + + + + + Method + + System.Runtime.Intrinsics + 9.0.0.0 + + + + [System.CLSCompliant(false)] + [<System.CLSCompliant(false)>] + + + + System.Runtime.Intrinsics.Vector256<System.UInt64> + + + + + + To be added. + To be added. + To be added. + To be added. + + diff --git a/xml/System.Runtime.Intrinsics/Vector512.xml b/xml/System.Runtime.Intrinsics/Vector512.xml index 9460a29f9e8..3c5ad25cefe 100644 --- a/xml/System.Runtime.Intrinsics/Vector512.xml +++ b/xml/System.Runtime.Intrinsics/Vector512.xml @@ -1246,6 +1246,31 @@ To be added. + + + + + + + + Method + + System.Runtime.Intrinsics + 9.0.0.0 + + + System.Runtime.Intrinsics.Vector512<System.Int32> + + + + + + To be added. + To be added. + To be added. + To be added. + + @@ -1272,6 +1297,31 @@ To be added. + + + + + + + + Method + + System.Runtime.Intrinsics + 9.0.0.0 + + + System.Runtime.Intrinsics.Vector512<System.Int64> + + + + + + To be added. + To be added. + To be added. + To be added. + + @@ -1362,6 +1412,37 @@ To be added. + + + + + + + + Method + + System.Runtime.Intrinsics + 9.0.0.0 + + + + [System.CLSCompliant(false)] + [<System.CLSCompliant(false)>] + + + + System.Runtime.Intrinsics.Vector512<System.UInt32> + + + + + + To be added. + To be added. + To be added. + To be added. + + @@ -1394,6 +1475,37 @@ To be added. + + + + + + + + Method + + System.Runtime.Intrinsics + 9.0.0.0 + + + + [System.CLSCompliant(false)] + [<System.CLSCompliant(false)>] + + + + System.Runtime.Intrinsics.Vector512<System.UInt64> + + + + + + To be added. + To be added. + To be added. + To be added. + + diff --git a/xml/System.Runtime.Intrinsics/Vector64.xml b/xml/System.Runtime.Intrinsics/Vector64.xml index 03800aab61e..5c15cd0d666 100644 --- a/xml/System.Runtime.Intrinsics/Vector64.xml +++ b/xml/System.Runtime.Intrinsics/Vector64.xml @@ -1400,6 +1400,31 @@ To be added. + + + + + + + + Method + + System.Runtime.Intrinsics + 9.0.0.0 + + + System.Runtime.Intrinsics.Vector64<System.Int32> + + + + + + To be added. + To be added. + To be added. + To be added. + + @@ -1427,6 +1452,31 @@ To be added. + + + + + + + + Method + + System.Runtime.Intrinsics + 9.0.0.0 + + + System.Runtime.Intrinsics.Vector64<System.Int64> + + + + + + To be added. + To be added. + To be added. + To be added. + + @@ -1520,6 +1570,37 @@ To be added. + + + + + + + + Method + + System.Runtime.Intrinsics + 9.0.0.0 + + + + [System.CLSCompliant(false)] + [<System.CLSCompliant(false)>] + + + + System.Runtime.Intrinsics.Vector64<System.UInt32> + + + + + + To be added. + To be added. + To be added. + To be added. + + @@ -1553,6 +1634,37 @@ To be added. + + + + + + + + Method + + System.Runtime.Intrinsics + 9.0.0.0 + + + + [System.CLSCompliant(false)] + [<System.CLSCompliant(false)>] + + + + System.Runtime.Intrinsics.Vector64<System.UInt64> + + + + + + To be added. + To be added. + To be added. + To be added. + + diff --git a/xml/System.Security.Cryptography/Shake128.xml b/xml/System.Security.Cryptography/Shake128.xml index b770ad49e17..bd693239884 100644 --- a/xml/System.Security.Cryptography/Shake128.xml +++ b/xml/System.Security.Cryptography/Shake128.xml @@ -103,6 +103,34 @@ The object has already been disposed. + + + + + + + + Method + + System.Security.Cryptography + 9.0.0.0 + + + + [System.Runtime.CompilerServices.NullableContext(1)] + [<System.Runtime.CompilerServices.NullableContext(1)>] + + + + System.Security.Cryptography.Shake128 + + + + To be added. + To be added. + To be added. + + @@ -559,5 +587,81 @@ To be added. + + + + + + + + Method + + System.Security.Cryptography + 9.0.0.0 + + + + [System.Runtime.CompilerServices.NullableContext(1)] + [<System.Runtime.CompilerServices.NullableContext(1)>] + + + + System.Byte[] + + + + + + To be added. + To be added. + To be added. + To be added. + + + + + + + + + + Method + + System.Security.Cryptography + 9.0.0.0 + + + System.Void + + + + + + To be added. + To be added. + To be added. + + + + + + + + + + Method + + System.Security.Cryptography + 9.0.0.0 + + + System.Void + + + + To be added. + To be added. + + diff --git a/xml/System.Security.Cryptography/Shake256.xml b/xml/System.Security.Cryptography/Shake256.xml index a2a7befa9ab..b778f7a6bcc 100644 --- a/xml/System.Security.Cryptography/Shake256.xml +++ b/xml/System.Security.Cryptography/Shake256.xml @@ -103,6 +103,34 @@ The object has already been disposed. + + + + + + + + Method + + System.Security.Cryptography + 9.0.0.0 + + + + [System.Runtime.CompilerServices.NullableContext(1)] + [<System.Runtime.CompilerServices.NullableContext(1)>] + + + + System.Security.Cryptography.Shake256 + + + + To be added. + To be added. + To be added. + + @@ -559,5 +587,81 @@ To be added. + + + + + + + + Method + + System.Security.Cryptography + 9.0.0.0 + + + + [System.Runtime.CompilerServices.NullableContext(1)] + [<System.Runtime.CompilerServices.NullableContext(1)>] + + + + System.Byte[] + + + + + + To be added. + To be added. + To be added. + To be added. + + + + + + + + + + Method + + System.Security.Cryptography + 9.0.0.0 + + + System.Void + + + + + + To be added. + To be added. + To be added. + + + + + + + + + + Method + + System.Security.Cryptography + 9.0.0.0 + + + System.Void + + + + To be added. + To be added. + + diff --git a/xml/System.Text.Json.Nodes/JsonArray.xml b/xml/System.Text.Json.Nodes/JsonArray.xml index 0b5b9831b9e..06ff7040c6d 100644 --- a/xml/System.Text.Json.Nodes/JsonArray.xml +++ b/xml/System.Text.Json.Nodes/JsonArray.xml @@ -87,6 +87,34 @@ It is safe to perform multiple concurrent read operations on a To be added. + + + + + + + + Constructor + + System.Text.Json + 9.0.0.0 + + + + + + [System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 2 })] + [<System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 2 })>] + + + + + + To be added. + To be added. + To be added. + + @@ -120,6 +148,36 @@ It is safe to perform multiple concurrent read operations on a To be added. + + + + + + + + Constructor + + System.Text.Json + 9.0.0.0 + + + + + + + [System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 2 })] + [<System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 2 })>] + + + + + + To be added. + To be added. + To be added. + To be added. + + @@ -370,10 +428,14 @@ It is safe to perform multiple concurrent read operations on a 9.0.0.0 - + [System.Runtime.CompilerServices.IteratorStateMachine(typeof(System.Text.Json.Nodes.JsonArray+<GetValues>d__9<>))] [<System.Runtime.CompilerServices.IteratorStateMachine(typeof(System.Text.Json.Nodes.JsonArray+<GetValues>d__9<>))>] + + [System.Runtime.CompilerServices.IteratorStateMachine(typeof(System.Text.Json.Nodes.JsonArray+<GetValues>d__11<>))] + [<System.Runtime.CompilerServices.IteratorStateMachine(typeof(System.Text.Json.Nodes.JsonArray+<GetValues>d__11<>))>] + [System.Runtime.CompilerServices.NullableContext(1)] [<System.Runtime.CompilerServices.NullableContext(1)>] diff --git a/xml/System.Text.Json.Serialization.Metadata/JsonTypeInfoResolver.xml b/xml/System.Text.Json.Serialization.Metadata/JsonTypeInfoResolver.xml index 3b1e2720bab..787854f4206 100644 --- a/xml/System.Text.Json.Serialization.Metadata/JsonTypeInfoResolver.xml +++ b/xml/System.Text.Json.Serialization.Metadata/JsonTypeInfoResolver.xml @@ -30,6 +30,38 @@ To be added. + + + + + + + + Method + + System.Text.Json + 9.0.0.0 + + + System.Text.Json.Serialization.Metadata.IJsonTypeInfoResolver + + + + + + [System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 2 })] + [<System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 2 })>] + + + + + + To be added. + To be added. + To be added. + To be added. + + diff --git a/xml/System.Text.Json.Serialization/JsonSourceGenerationOptionsAttribute.xml b/xml/System.Text.Json.Serialization/JsonSourceGenerationOptionsAttribute.xml index 81ad2b97977..bbaf3349a75 100644 --- a/xml/System.Text.Json.Serialization/JsonSourceGenerationOptionsAttribute.xml +++ b/xml/System.Text.Json.Serialization/JsonSourceGenerationOptionsAttribute.xml @@ -21,6 +21,14 @@ [System.AttributeUsage(System.AttributeTargets.Class, AllowMultiple=false)] [<System.AttributeUsage(System.AttributeTargets.Class, AllowMultiple=false)>] + + [System.Runtime.CompilerServices.Nullable(0)] + [<System.Runtime.CompilerServices.Nullable(0)>] + + + [System.Runtime.CompilerServices.NullableContext(2)] + [<System.Runtime.CompilerServices.NullableContext(2)>] + Instructs the System.Text.Json source generator to assume the specified options will be used at run time via . @@ -358,6 +366,27 @@ To be added. + + + + + + + + Property + + System.Text.Json + 9.0.0.0 + + + System.String + + + To be added. + To be added. + To be added. + + diff --git a/xml/System.Text.Json/JsonSerializerOptions.xml b/xml/System.Text.Json/JsonSerializerOptions.xml index 56263c0a2ab..a7965cb0b50 100644 --- a/xml/System.Text.Json/JsonSerializerOptions.xml +++ b/xml/System.Text.Json/JsonSerializerOptions.xml @@ -875,6 +875,27 @@ Going past this depth throws a . The max depth is set to a negative value. + + + + + + + + Property + + System.Text.Json + 9.0.0.0 + + + System.String + + + To be added. + To be added. + To be added. + + diff --git a/xml/System.Text.Json/JsonWriterOptions.xml b/xml/System.Text.Json/JsonWriterOptions.xml index cd95613e54b..f353bf93822 100644 --- a/xml/System.Text.Json/JsonWriterOptions.xml +++ b/xml/System.Text.Json/JsonWriterOptions.xml @@ -25,8 +25,8 @@ [<System.Runtime.CompilerServices.Nullable(0)>] - [System.Runtime.CompilerServices.NullableContext(2)] - [<System.Runtime.CompilerServices.NullableContext(2)>] + [System.Runtime.CompilerServices.NullableContext(1)] + [<System.Runtime.CompilerServices.NullableContext(1)>] @@ -67,6 +67,18 @@ For more information, see [How to write custom serializers and deserializers wit [get: System.Runtime.CompilerServices.IsReadOnly] [<get: System.Runtime.CompilerServices.IsReadOnly>] + + [System.Runtime.CompilerServices.Nullable(2)] + [<System.Runtime.CompilerServices.Nullable(2)>] + + + [get: System.Runtime.CompilerServices.NullableContext(2)] + [<get: System.Runtime.CompilerServices.NullableContext(2)>] + + + [set: System.Runtime.CompilerServices.NullableContext(2)] + [<set: System.Runtime.CompilerServices.NullableContext(2)>] + System.Text.Encodings.Web.JavaScriptEncoder @@ -194,6 +206,27 @@ Reading past this depth will throw a Thrown when the max depth is set to a negative value. + + + + + + + + Property + + System.Text.Json + 9.0.0.0 + + + System.String + + + To be added. + To be added. + To be added. + + diff --git a/xml/System.Text/RedactionStringBuilderExtensions.xml b/xml/System.Text/RedactionStringBuilderExtensions.xml index 234345610be..207221ec733 100644 --- a/xml/System.Text/RedactionStringBuilderExtensions.xml +++ b/xml/System.Text/RedactionStringBuilderExtensions.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Compliance.Abstractions 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -42,7 +43,7 @@ Method Microsoft.Extensions.Compliance.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -89,7 +90,7 @@ Method Microsoft.Extensions.Compliance.Abstractions - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/System.Text/StringBuilder.xml b/xml/System.Text/StringBuilder.xml index 0e969b9761a..3c0dc5ce0e6 100644 --- a/xml/System.Text/StringBuilder.xml +++ b/xml/System.Text/StringBuilder.xml @@ -2642,6 +2642,53 @@ The following example shows how to call many of the methods defined by the Enumeration Format Strings + + + + + + + + Method + + System.Runtime + 9.0.0.0 + + + mscorlib + + + netstandard + + + System.Text.StringBuilder + + + + + + [System.Diagnostics.CodeAnalysis.StringSyntax("CompositeFormat")] + [<System.Diagnostics.CodeAnalysis.StringSyntax("CompositeFormat")>] + + + + + + + [System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 2 })] + [<System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 2 })>] + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + + @@ -2939,6 +2986,62 @@ The following example shows how to call many of the methods defined by the Enumeration Format Strings + + + + + + + + Method + + System.Runtime + 9.0.0.0 + + + mscorlib + + + netstandard + + + System.Text.StringBuilder + + + + + + [System.Runtime.CompilerServices.Nullable(2)] + [<System.Runtime.CompilerServices.Nullable(2)>] + + + + + + + [System.Diagnostics.CodeAnalysis.StringSyntax("CompositeFormat")] + [<System.Diagnostics.CodeAnalysis.StringSyntax("CompositeFormat")>] + + + + + + + [System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 2 })] + [<System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 2 })>] + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + + @@ -3847,6 +3950,86 @@ The following example shows how to call many of the methods defined by the To be added. + + + + + + + + Method + + System.Runtime + 9.0.0.0 + + + mscorlib + + + netstandard + + + System.Text.StringBuilder + + + + + + + [System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 2 })] + [<System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 2 })>] + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + + + + + + + + + + Method + + System.Runtime + 9.0.0.0 + + + mscorlib + + + netstandard + + + System.Text.StringBuilder + + + + + + + [System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 2 })] + [<System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 2 })>] + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + + @@ -3960,6 +4143,100 @@ The following example shows how to call many of the methods defined by the To be added. + + + + + + + + Method + + System.Runtime + 9.0.0.0 + + + mscorlib + + + netstandard + + + System.Text.StringBuilder + + + + + + [System.Runtime.CompilerServices.Nullable(2)] + [<System.Runtime.CompilerServices.Nullable(2)>] + + + + + + + [System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 2 })] + [<System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 2 })>] + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + + + + + + + + + + Method + + System.Runtime + 9.0.0.0 + + + mscorlib + + + netstandard + + + System.Text.StringBuilder + + + + + + [System.Runtime.CompilerServices.Nullable(2)] + [<System.Runtime.CompilerServices.Nullable(2)>] + + + + + + + [System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 2 })] + [<System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 2 })>] + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + + diff --git a/xml/System.Threading.Channels/Channel.xml b/xml/System.Threading.Channels/Channel.xml index d1f1aea619a..c6db2098830 100644 --- a/xml/System.Threading.Channels/Channel.xml +++ b/xml/System.Threading.Channels/Channel.xml @@ -240,5 +240,74 @@ To be added. + + + + + + + + Method + + System.Threading.Channels + 9.0.0.0 + + + System.Threading.Channels.Channel<T> + + + + + + [System.Runtime.CompilerServices.Nullable(2)] + [<System.Runtime.CompilerServices.Nullable(2)>] + + + + + + + To be added. + To be added. + To be added. + To be added. + + + + + + + + + + Method + + System.Threading.Channels + 9.0.0.0 + + + System.Threading.Channels.Channel<T> + + + + + + [System.Runtime.CompilerServices.Nullable(2)] + [<System.Runtime.CompilerServices.Nullable(2)>] + + + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + + diff --git a/xml/System.Threading.Channels/UnboundedPrioritizedChannelOptions`1.xml b/xml/System.Threading.Channels/UnboundedPrioritizedChannelOptions`1.xml new file mode 100644 index 00000000000..5a8085d4b9c --- /dev/null +++ b/xml/System.Threading.Channels/UnboundedPrioritizedChannelOptions`1.xml @@ -0,0 +1,77 @@ + + + + + + + + + System.Threading.Channels + 9.0.0.0 + + + + + + [System.Runtime.CompilerServices.Nullable(2)] + [<System.Runtime.CompilerServices.Nullable(2)>] + + + + + + System.Threading.Channels.ChannelOptions + + + + To be added. + To be added. + To be added. + + + + + + + + + Constructor + + System.Threading.Channels + 9.0.0.0 + + + + To be added. + To be added. + + + + + + + + + + Property + + System.Threading.Channels + 9.0.0.0 + + + + [System.Runtime.CompilerServices.Nullable(new System.Byte[] { 2, 1 })] + [<System.Runtime.CompilerServices.Nullable(new System.Byte[] { 2, 1 })>] + + + + System.Collections.Generic.IComparer<T> + + + To be added. + To be added. + To be added. + + + + diff --git a/xml/System.Threading.Tasks/Task.xml b/xml/System.Threading.Tasks/Task.xml index 383c9d02db6..f76abd290bd 100644 --- a/xml/System.Threading.Tasks/Task.xml +++ b/xml/System.Threading.Tasks/Task.xml @@ -5387,6 +5387,52 @@ timeout is greater than Waits for all of the provided objects to complete execution. + + + + + + + + Method + + System.Runtime + 9.0.0.0 + + + System.Threading.Tasks + + + mscorlib + + + netstandard + + + + [System.Runtime.Versioning.UnsupportedOSPlatform("browser")] + [<System.Runtime.Versioning.UnsupportedOSPlatform("browser")>] + + + + System.Void + + + + + + [System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 1 })] + [<System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 1 })>] + + + + + + To be added. + To be added. + To be added. + + @@ -5465,6 +5511,46 @@ timeout is greater than An exception was thrown during the execution of at least one of the instances. + + + + + + + Method + + System.Runtime + 9.0.0.0 + + + System.Threading.Tasks + + + mscorlib + + + netstandard + + + + [System.Runtime.Versioning.UnsupportedOSPlatform("browser")] + [<System.Runtime.Versioning.UnsupportedOSPlatform("browser")>] + + + + System.Void + + + + + + + To be added. + To be added. + To be added. + To be added. + + @@ -6326,6 +6412,47 @@ timeout is greater than The collection contained a task. + + + + + + + + Method + + System.Runtime + 9.0.0.0 + + + System.Threading.Tasks + + + mscorlib + + + netstandard + + + System.Threading.Tasks.Task + + + + + + [System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 1 })] + [<System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 1 })>] + + + + + + To be added. + To be added. + To be added. + To be added. + + @@ -6495,6 +6622,58 @@ timeout is greater than The collection contained a task. + + + + + + + + Method + + System.Runtime + 9.0.0.0 + + + System.Threading.Tasks + + + mscorlib + + + netstandard + + + System.Threading.Tasks.Task<TResult[]> + + + + + + [System.Runtime.CompilerServices.Nullable(2)] + [<System.Runtime.CompilerServices.Nullable(2)>] + + + + + + + + + [System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 1, 1 })] + [<System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 1, 1 })>] + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + + @@ -6652,6 +6831,47 @@ timeout is greater than The array contained a null task, or was empty. + + + + + + + + Method + + System.Runtime + 9.0.0.0 + + + System.Threading.Tasks + + + mscorlib + + + netstandard + + + System.Threading.Tasks.Task<System.Threading.Tasks.Task> + + + + + + [System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 1 })] + [<System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 1 })>] + + + + + + To be added. + To be added. + To be added. + To be added. + + @@ -6832,6 +7052,58 @@ The returned task will complete when any of the supplied tasks has completed. T The array contained a null task, or was empty. + + + + + + + + Method + + System.Runtime + 9.0.0.0 + + + System.Threading.Tasks + + + mscorlib + + + netstandard + + + System.Threading.Tasks.Task<System.Threading.Tasks.Task<TResult>> + + + + + + [System.Runtime.CompilerServices.Nullable(2)] + [<System.Runtime.CompilerServices.Nullable(2)>] + + + + + + + + + [System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 1, 1 })] + [<System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 1, 1 })>] + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + + @@ -6970,6 +7242,271 @@ The returned task will complete when any of the supplied tasks has completed. T or was . + + + + + + + + Method + + System.Runtime + 9.0.0.0 + + + System.Threading.Tasks + + + mscorlib + + + netstandard + + + System.Collections.Generic.IAsyncEnumerable<System.Threading.Tasks.Task> + + + + + + To be added. + To be added. + To be added. + To be added. + + + + + + + + + + Method + + System.Runtime + 9.0.0.0 + + + System.Threading.Tasks + + + mscorlib + + + netstandard + + + System.Collections.Generic.IAsyncEnumerable<System.Threading.Tasks.Task> + + + + + + [System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 1 })] + [<System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 1 })>] + + + + + + To be added. + To be added. + To be added. + To be added. + + + + + + + + + + Method + + System.Runtime + 9.0.0.0 + + + System.Threading.Tasks + + + mscorlib + + + netstandard + + + System.Collections.Generic.IAsyncEnumerable<System.Threading.Tasks.Task> + + + + + + [System.ParamArray] + [<System.ParamArray>] + + + + + + To be added. + To be added. + To be added. + To be added. + + + + + + + + + + Method + + System.Runtime + 9.0.0.0 + + + System.Threading.Tasks + + + mscorlib + + + netstandard + + + System.Collections.Generic.IAsyncEnumerable<System.Threading.Tasks.Task<TResult>> + + + + + + [System.Runtime.CompilerServices.Nullable(2)] + [<System.Runtime.CompilerServices.Nullable(2)>] + + + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + + + + + + + + + + Method + + System.Runtime + 9.0.0.0 + + + System.Threading.Tasks + + + mscorlib + + + netstandard + + + System.Collections.Generic.IAsyncEnumerable<System.Threading.Tasks.Task<TResult>> + + + + + + [System.Runtime.CompilerServices.Nullable(2)] + [<System.Runtime.CompilerServices.Nullable(2)>] + + + + + + + + + [System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 1, 1 })] + [<System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 1, 1 })>] + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + + + + + + + + + + Method + + System.Runtime + 9.0.0.0 + + + System.Threading.Tasks + + + mscorlib + + + netstandard + + + System.Collections.Generic.IAsyncEnumerable<System.Threading.Tasks.Task<TResult>> + + + + + + [System.Runtime.CompilerServices.Nullable(2)] + [<System.Runtime.CompilerServices.Nullable(2)>] + + + + + + + + + [System.ParamArray] + [<System.ParamArray>] + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + + diff --git a/xml/System.Threading.Tasks/TaskExtensions.xml b/xml/System.Threading.Tasks/TaskExtensions.xml index 6daa344062f..9c775f74b32 100644 --- a/xml/System.Threading.Tasks/TaskExtensions.xml +++ b/xml/System.Threading.Tasks/TaskExtensions.xml @@ -59,7 +59,9 @@ - Provides a set of static (Shared in Visual Basic) methods for working with specific kinds of instances. + + Provides a set of static methods for . + To be added. Task Parallel Library (TPL) Task-based Asynchronous Programming diff --git a/xml/System.Threading/CancellationTokenSource.xml b/xml/System.Threading/CancellationTokenSource.xml index 17b07246cd6..9ee95d7499f 100644 --- a/xml/System.Threading/CancellationTokenSource.xml +++ b/xml/System.Threading/CancellationTokenSource.xml @@ -647,6 +647,52 @@ Creates a that will be in the canceled state when any of the source tokens are in the canceled state. + + + + + + + + Method + + System.Runtime + 9.0.0.0 + + + System.Threading.Tasks + + + mscorlib + + + netstandard + + + + [System.Runtime.CompilerServices.NullableContext(0)] + [<System.Runtime.CompilerServices.NullableContext(0)>] + + + + System.Threading.CancellationTokenSource + + + [System.Runtime.CompilerServices.Nullable(1)] + [<System.Runtime.CompilerServices.Nullable(1)>] + + + + + + + + To be added. + To be added. + To be added. + To be added. + + diff --git a/xml/System.Threading/Lock+Scope.xml b/xml/System.Threading/Lock+Scope.xml index 496adeaaa19..c53bbb27f44 100644 --- a/xml/System.Threading/Lock+Scope.xml +++ b/xml/System.Threading/Lock+Scope.xml @@ -24,8 +24,18 @@ - To be added. - To be added. + Represents a that might have been entered. + + method, which returns a representing the lock that was entered, and with a language construct that automatically disposes the , such as the C# `using` keyword. Disposing the `Scope` exits the lock. Ensure that is called even in case of exceptions. + +For more information, see and the Remarks for . + + ]]> + @@ -45,8 +55,19 @@ - To be added. - To be added. + Exits the lock if the represents a lock that was entered. + + is matched with a on the `Scope` returned by `EnterScope`. + +For more information, see the Remarks for . + + ]]> + + The represents a lock that was entered and the current thread does not hold the lock. diff --git a/xml/System.Threading/Lock.xml b/xml/System.Threading/Lock.xml index e7e3c517f03..a3b1f894604 100644 --- a/xml/System.Threading/Lock.xml +++ b/xml/System.Threading/Lock.xml @@ -20,8 +20,34 @@ - To be added. - To be added. + Provides a mechanism for achieving mutual exclusion in regions of code between different threads. + + class can be used to define regions of code that require mutually exclusive access between threads of a process, commonly called critical sections, to prevent concurrent accesses to a resource. A `Lock` can be entered and exited, where the region of code between the enter and exit is a critical section associated with the lock. A thread that enters a lock is said to hold or own the lock until it exits the lock. At most one thread can hold a lock at any given time. A thread can hold multiple locks. A thread can enter a lock multiple times before exiting it, such as recursively. A thread that can't enter a lock immediately can wait until the lock can be entered or until a specified timeout expires. + +When using the or methods to enter a lock: +- Ensure that the thread exits the lock with even in case of exceptions, such as in C# by using a `try/finally` block. +- When the lock is being entered and exited in a C# `async` method, ensure that there is no `await` between the enter and exit. Locks are held by threads and the code following an `await` might run on a different thread. + +It is recommended to use the method with a language construct that automatically disposes the returned such as the C# `using` keyword, or to use the C# `lock` keyword, as these ensure that the lock is exited in exceptional cases. These patterns might also have performance benefits over using `Enter/TryEnter` and `Exit`. The following code fragment illustrates various patterns for entering and exiting a lock. + +:::code language="csharp" source="~/snippets/csharp/System.Threading/Lock/Overview/UsagePatterns.cs" id="Snippet1"::: + +When using the C# `lock` keyword or similar to enter and exit a lock, the type of the expression must be precisely `System.Threading.Lock`. If the type of the expression is anything else, such as `Object` or a generic type like `T`, a different implementation that is not interchangeable can be used instead (such as ). For more information, see the relevant [compiler speclet](https://github.com/dotnet/csharplang/blob/main/proposals/lock-object.md). + + can interrupt threads that are waiting to enter a lock. On Windows STA threads, waits for locks allow message pumping that can run other code on the same thread during a wait. Some features of the waits can be overridden by a custom . + +> [!NOTE] +> A thread that enters a lock, including multiple times such as recursively, must exit the lock the same number of times to fully exit the lock and allow other threads to enter the lock. If a thread exits while holding a `Lock`, the behavior of the `Lock` becomes undefined. + +> [!CAUTION] +> If, on a code path, a thread might enter multiple locks before exiting them, ensure that all code paths that might enter any two of those locks on the same thread enter them in the same order. Otherwise, it could lead to deadlocks. For example, consider that on one code path thread `T1` enters lock `L1` then lock `L2` before exiting both, and on another code path thread `T2` enters both locks in the inverse order. In that scenario, it would be possible for the following order of events to occur: `T1` enters `L1`, `T2` enters `L2`, `T1` tries to enter `L2` and waits, `T2` tries to enter `L1` and waits. There's a deadlock between `T1` and `T2` that can't be resolved, and any other threads that try to enter either lock in the future will also hang. + + ]]> + @@ -37,7 +63,7 @@ - To be added. + Initializes a new instance of the class. To be added. @@ -58,8 +84,19 @@ - To be added. - To be added. + Enters the lock, waiting if necessary until the lock can be entered. + + . + + ]]> + + The lock has reached the limit of repeated entries by the current thread. The limit is implementation-defined and is intended to be high enough that it would not be reached in normal situations. @@ -79,9 +116,22 @@ - To be added. - To be added. - To be added. + Enters the lock, waiting if necessary until the lock can be entered. + A that can be disposed to exit the lock. + + to exit the lock as many times as it has entered the lock. + +This method is intended to be used with a language construct that automatically disposes the , such as the C# `using` keyword. + +For more information, see the Remarks for . + + ]]> + + The lock has reached the limit of repeated entries by the current thread. The limit is implementation-defined and is intended to be high enough that it would not be reached in normal situations. @@ -101,8 +151,19 @@ - To be added. - To be added. + Exits the lock. + + . + + ]]> + + The current thread does not hold the lock. @@ -121,8 +182,9 @@ System.Boolean - To be added. - To be added. + Gets a value that indicates whether the lock is held by the current thread. + + if the current thread holds the lock; otherwise, . To be added. @@ -143,9 +205,21 @@ - To be added. - To be added. - To be added. + Tries to enter the lock without waiting. + + if the lock was entered by the current thread; otherwise, . + + . + + ]]> + + The lock has reached the limit of repeated entries by the current thread. The limit is implementation-defined and is intended to be high enough that it would not be reached in normal situations. @@ -167,10 +241,24 @@ - To be added. - To be added. - To be added. - To be added. + The number of milliseconds to wait until the lock can be entered. Specify Timeout.Infinite (-1) to wait indefinitely, or 0 to not wait. + Tries to enter the lock, waiting if necessary for the specified number of milliseconds until the lock can be entered. + + if the lock was entered by the current thread; otherwise, . + + . + + ]]> + + + is less than -1. + The lock has reached the limit of repeated entries by the current thread. The limit is implementation-defined and is intended to be high enough that it would not be reached in normal situations. @@ -192,10 +280,24 @@ - To be added. - To be added. - To be added. - To be added. + A that represents the number of milliseconds to wait until the lock can be entered. Specify a value that represents Timeout.Infinite (-1) milliseconds to wait indefinitely, or a value that represents 0 milliseconds to not wait. + Tries to enter the lock, waiting if necessary until the lock can be entered or until the specified timeout expires. + + if the lock was entered by the current thread; otherwise, . + + . + + ]]> + + + , after its conversion to an integer millisecond value, represents a value that is less than -1 milliseconds or greater than Int32.MaxValue milliseconds. + The lock has reached the limit of repeated entries by the current thread. The limit is implementation-defined and is intended to be high enough that it would not be reached in normal situations. diff --git a/xml/System.Windows.Forms.Design/ControlDesigner.xml b/xml/System.Windows.Forms.Design/ControlDesigner.xml index 5172328629e..e9dc670c2b8 100644 --- a/xml/System.Windows.Forms.Design/ControlDesigner.xml +++ b/xml/System.Windows.Forms.Design/ControlDesigner.xml @@ -90,12 +90,13 @@ - + + Field System.Design @@ -112,6 +113,12 @@ 8.0.0.0 9.0.0.0 + + + [System.Runtime.CompilerServices.Nullable(2)] + [<System.Runtime.CompilerServices.Nullable(2)>] + + System.Windows.Forms.AccessibleObject @@ -151,6 +158,16 @@ 8.0.0.0 9.0.0.0 + + + [System.Runtime.CompilerServices.Nullable(1)] + [<System.Runtime.CompilerServices.Nullable(1)>] + + + [get: System.Runtime.CompilerServices.NullableContext(1)] + [<get: System.Runtime.CompilerServices.NullableContext(1)>] + + System.Windows.Forms.AccessibleObject @@ -191,6 +208,16 @@ 8.0.0.0 9.0.0.0 + + + [System.Runtime.CompilerServices.Nullable(1)] + [<System.Runtime.CompilerServices.Nullable(1)>] + + + [get: System.Runtime.CompilerServices.NullableContext(1)] + [<get: System.Runtime.CompilerServices.NullableContext(1)>] + + System.Collections.ICollection @@ -296,12 +323,13 @@ - + + Property System.Design @@ -317,6 +345,16 @@ 8.0.0.0 9.0.0.0 + + + [System.Runtime.CompilerServices.Nullable(2)] + [<System.Runtime.CompilerServices.Nullable(2)>] + + + [get: System.Runtime.CompilerServices.NullableContext(2)] + [<get: System.Runtime.CompilerServices.NullableContext(2)>] + + System.Windows.Forms.Design.Behavior.BehaviorService @@ -349,6 +387,12 @@ 8.0.0.0 9.0.0.0 + + + [System.Runtime.CompilerServices.NullableContext(1)] + [<System.Runtime.CompilerServices.NullableContext(1)>] + + System.Boolean @@ -396,6 +440,16 @@ 8.0.0.0 9.0.0.0 + + + [System.Runtime.CompilerServices.Nullable(1)] + [<System.Runtime.CompilerServices.Nullable(1)>] + + + [get: System.Runtime.CompilerServices.NullableContext(1)] + [<get: System.Runtime.CompilerServices.NullableContext(1)>] + + System.Windows.Forms.Control @@ -473,6 +527,12 @@ 8.0.0.0 9.0.0.0 + + + [System.Runtime.CompilerServices.NullableContext(1)] + [<System.Runtime.CompilerServices.NullableContext(1)>] + + System.Void @@ -559,6 +619,12 @@ 8.0.0.0 9.0.0.0 + + + [System.Runtime.CompilerServices.NullableContext(1)] + [<System.Runtime.CompilerServices.NullableContext(1)>] + + System.Boolean @@ -686,6 +752,12 @@ 8.0.0.0 9.0.0.0 + + + [System.Runtime.CompilerServices.NullableContext(1)] + [<System.Runtime.CompilerServices.NullableContext(1)>] + + System.Windows.Forms.Design.Behavior.ControlBodyGlyph @@ -832,12 +904,13 @@ - + + Property System.Design @@ -853,6 +926,16 @@ 8.0.0.0 9.0.0.0 + + + [System.Runtime.CompilerServices.Nullable(2)] + [<System.Runtime.CompilerServices.Nullable(2)>] + + + [get: System.Runtime.CompilerServices.NullableContext(2)] + [<get: System.Runtime.CompilerServices.NullableContext(2)>] + + System.ComponentModel.InheritanceAttribute @@ -1015,12 +1098,13 @@ - + + Method System.Design @@ -1036,6 +1120,12 @@ 8.0.0.0 9.0.0.0 + + + [System.Runtime.CompilerServices.NullableContext(2)] + [<System.Runtime.CompilerServices.NullableContext(2)>] + + System.Windows.Forms.Design.ControlDesigner @@ -1760,12 +1850,13 @@ - + + Property System.Design @@ -1781,6 +1872,16 @@ 8.0.0.0 9.0.0.0 + + + [System.Runtime.CompilerServices.Nullable(2)] + [<System.Runtime.CompilerServices.Nullable(2)>] + + + [get: System.Runtime.CompilerServices.NullableContext(2)] + [<get: System.Runtime.CompilerServices.NullableContext(2)>] + + System.ComponentModel.IComponent @@ -1942,6 +2043,14 @@ [get: System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")] [<get: System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")>] + + [System.Runtime.CompilerServices.Nullable(1)] + [<System.Runtime.CompilerServices.Nullable(1)>] + + + [get: System.Runtime.CompilerServices.NullableContext(1)] + [<get: System.Runtime.CompilerServices.NullableContext(1)>] + System.Collections.IList diff --git a/xml/System.Windows.Forms/Control.xml b/xml/System.Windows.Forms/Control.xml index b6761d1d532..f0d6d2bf73b 100644 --- a/xml/System.Windows.Forms/Control.xml +++ b/xml/System.Windows.Forms/Control.xml @@ -12292,12 +12292,16 @@ MyControl.Font = New Font(MyControl.Font, _ - - + + - + - + + + + + Method System.Windows.Forms @@ -13133,12 +13137,16 @@ MyControl.Font = New Font(MyControl.Font, _ - - + + - + - + + + + + Method System.Windows.Forms diff --git a/xml/System.Windows.Forms/DataGridView.xml b/xml/System.Windows.Forms/DataGridView.xml index 13134ae00e8..2bcd52779c6 100644 --- a/xml/System.Windows.Forms/DataGridView.xml +++ b/xml/System.Windows.Forms/DataGridView.xml @@ -14833,12 +14833,16 @@ The control replaces and extends the - - + + - + - + + + + + Method System.Windows.Forms @@ -15308,12 +15312,16 @@ The control replaces and extends the - - + + - + - + + + + + Method System.Windows.Forms diff --git a/xml/System.Windows.Forms/Form.xml b/xml/System.Windows.Forms/Form.xml index ca9addd3d3b..7411c8b822b 100644 --- a/xml/System.Windows.Forms/Form.xml +++ b/xml/System.Windows.Forms/Form.xml @@ -4576,12 +4576,16 @@ By default Windows Forms anchors MDI children to the bottom left of the parent f - - + + - + - + + + + + Method System.Windows.Forms diff --git a/xml/System.Windows.Forms/RadioButton.xml b/xml/System.Windows.Forms/RadioButton.xml index 89d944540a1..8d8e0c05857 100644 --- a/xml/System.Windows.Forms/RadioButton.xml +++ b/xml/System.Windows.Forms/RadioButton.xml @@ -787,12 +787,16 @@ - - + + - + - + + + + + Method System.Windows.Forms diff --git a/xml/System.Windows.Forms/TabControl.xml b/xml/System.Windows.Forms/TabControl.xml index 848f18a4195..d7b300d1cc4 100644 --- a/xml/System.Windows.Forms/TabControl.xml +++ b/xml/System.Windows.Forms/TabControl.xml @@ -1949,12 +1949,16 @@ - - + + - + - + + + + + Method System.Windows.Forms @@ -2185,12 +2189,16 @@ - - + + - + - + + + + + Method System.Windows.Forms diff --git a/xml/System.Windows.Forms/TabPage.xml b/xml/System.Windows.Forms/TabPage.xml index c9741b29c0f..48383406421 100644 --- a/xml/System.Windows.Forms/TabPage.xml +++ b/xml/System.Windows.Forms/TabPage.xml @@ -995,12 +995,16 @@ If you set the property, the - - + + - + - + + + + + Method System.Windows.Forms @@ -1046,12 +1050,16 @@ If you set the property, the - - + + - + - + + + + + Method System.Windows.Forms diff --git a/xml/System.Windows.Forms/TableLayoutStyle.xml b/xml/System.Windows.Forms/TableLayoutStyle.xml index fddc0ecf579..83d081b1b06 100644 --- a/xml/System.Windows.Forms/TableLayoutStyle.xml +++ b/xml/System.Windows.Forms/TableLayoutStyle.xml @@ -32,6 +32,10 @@ [System.Runtime.CompilerServices.NullableContext(2)] [<System.Runtime.CompilerServices.NullableContext(2)>] + + [System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembers(System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicConstructors)] + [<System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembers(System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicConstructors)>] + Implements the basic functionality that represents the appearance and behavior of a table layout. diff --git a/xml/System.Windows.Forms/ToolStrip.xml b/xml/System.Windows.Forms/ToolStrip.xml index f3f93eb32ac..7cfb4334d4c 100644 --- a/xml/System.Windows.Forms/ToolStrip.xml +++ b/xml/System.Windows.Forms/ToolStrip.xml @@ -3852,12 +3852,16 @@ - - + + - + - + + + + + Method System.Windows.Forms diff --git a/xml/System/Console.xml b/xml/System/Console.xml index e7e0ace8b4a..abe6c62c59b 100644 --- a/xml/System/Console.xml +++ b/xml/System/Console.xml @@ -5386,6 +5386,49 @@ This method can be used to reacquire the standard output stream after it has bee Composite Formatting + + + + + + + + Method + + System.Console + 9.0.0.0 + + + netstandard + + + System.Void + + + + + + [System.Diagnostics.CodeAnalysis.StringSyntax("CompositeFormat")] + [<System.Diagnostics.CodeAnalysis.StringSyntax("CompositeFormat")>] + + + + + + + [System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 2 })] + [<System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 2 })>] + + + + + + To be added. + To be added. + To be added. + To be added. + + @@ -6904,6 +6947,49 @@ This method can be used to reacquire the standard output stream after it has bee Composite Formatting + + + + + + + + Method + + System.Console + 9.0.0.0 + + + netstandard + + + System.Void + + + + + + [System.Diagnostics.CodeAnalysis.StringSyntax("CompositeFormat")] + [<System.Diagnostics.CodeAnalysis.StringSyntax("CompositeFormat")>] + + + + + + + [System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 2 })] + [<System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 2 })>] + + + + + + To be added. + To be added. + To be added. + To be added. + + diff --git a/xml/System/Decimal.xml b/xml/System/Decimal.xml index 323ec105c9a..87e57db66fa 100644 --- a/xml/System/Decimal.xml +++ b/xml/System/Decimal.xml @@ -1395,6 +1395,114 @@ + + + + + + + + Method + + M:System.Numerics.IFloatingPoint`1.ConvertToInteger``1(`0) + + + System.Runtime + 9.0.0.0 + + + mscorlib + + + netstandard + + + + [System.Runtime.CompilerServices.NullableContext(1)] + [<System.Runtime.CompilerServices.NullableContext(1)>] + + + + TInteger + + + + + + [System.Runtime.CompilerServices.Nullable(0)] + [<System.Runtime.CompilerServices.Nullable(0)>] + + + + System.Numerics.IBinaryInteger<TInteger> + + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + + + + + + + + + + Method + + M:System.Numerics.IFloatingPoint`1.ConvertToIntegerNative``1(`0) + + + System.Runtime + 9.0.0.0 + + + mscorlib + + + netstandard + + + + [System.Runtime.CompilerServices.NullableContext(1)] + [<System.Runtime.CompilerServices.NullableContext(1)>] + + + + TInteger + + + + + + [System.Runtime.CompilerServices.Nullable(0)] + [<System.Runtime.CompilerServices.Nullable(0)>] + + + + System.Numerics.IBinaryInteger<TInteger> + + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + + diff --git a/xml/System/Delegate.xml b/xml/System/Delegate.xml index 1a5d232221f..e0d4801fd43 100644 --- a/xml/System/Delegate.xml +++ b/xml/System/Delegate.xml @@ -459,6 +459,50 @@ For examples, see [Supplemental API remarks for System.Delegate.CreateDelegate]( + + + + + + + + Method + + System.Runtime + 9.0.0.0 + + + mscorlib + + + netstandard + + + + [System.Runtime.CompilerServices.NullableContext(2)] + [<System.Runtime.CompilerServices.NullableContext(2)>] + + + + System.Delegate + + + + + + [System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 2 })] + [<System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 2 })>] + + + + + + To be added. + To be added. + To be added. + To be added. + + diff --git a/xml/System/Double.xml b/xml/System/Double.xml index c6421a49f64..b2f35ef9b45 100644 --- a/xml/System/Double.xml +++ b/xml/System/Double.xml @@ -1186,6 +1186,114 @@ The following code example illustrates the use of `CompareTo` in the context of + + + + + + + + Method + + M:System.Numerics.IFloatingPoint`1.ConvertToInteger``1(`0) + + + System.Runtime + 9.0.0.0 + + + mscorlib + + + netstandard + + + + [System.Runtime.CompilerServices.NullableContext(1)] + [<System.Runtime.CompilerServices.NullableContext(1)>] + + + + TInteger + + + + + + [System.Runtime.CompilerServices.Nullable(0)] + [<System.Runtime.CompilerServices.Nullable(0)>] + + + + System.Numerics.IBinaryInteger<TInteger> + + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + + + + + + + + + + Method + + M:System.Numerics.IFloatingPoint`1.ConvertToIntegerNative``1(`0) + + + System.Runtime + 9.0.0.0 + + + mscorlib + + + netstandard + + + + [System.Runtime.CompilerServices.NullableContext(1)] + [<System.Runtime.CompilerServices.NullableContext(1)>] + + + + TInteger + + + + + + [System.Runtime.CompilerServices.Nullable(0)] + [<System.Runtime.CompilerServices.Nullable(0)>] + + + + System.Numerics.IBinaryInteger<TInteger> + + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + + diff --git a/xml/System/Enum.xml b/xml/System/Enum.xml index a7286f16db1..f6c1a16c478 100644 --- a/xml/System/Enum.xml +++ b/xml/System/Enum.xml @@ -700,12 +700,11 @@ - + - Method System.Runtime @@ -721,12 +720,6 @@ netstandard - - - [System.Runtime.CompilerServices.NullableContext(0)] - [<System.Runtime.CompilerServices.NullableContext(0)>] - - System.String[] @@ -739,7 +732,7 @@ System.ValueType - + [System.Runtime.CompilerServices.Nullable(0)] [<System.Runtime.CompilerServices.Nullable(0)>] diff --git a/xml/System/FakeLoggerServiceProviderExtensions.xml b/xml/System/FakeLoggerServiceProviderExtensions.xml index f1b8ce8758d..6ee95aab013 100644 --- a/xml/System/FakeLoggerServiceProviderExtensions.xml +++ b/xml/System/FakeLoggerServiceProviderExtensions.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Diagnostics.Testing 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -32,7 +33,7 @@ Method Microsoft.Extensions.Diagnostics.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/System/FakeRedactionServiceProviderExtensions.xml b/xml/System/FakeRedactionServiceProviderExtensions.xml index 73ee0658d3b..1b995424773 100644 --- a/xml/System/FakeRedactionServiceProviderExtensions.xml +++ b/xml/System/FakeRedactionServiceProviderExtensions.xml @@ -9,6 +9,7 @@ Microsoft.Extensions.Compliance.Testing 8.0.0.0 8.4.0.0 + 8.5.0.0 9.0.0.0 @@ -32,7 +33,7 @@ Method Microsoft.Extensions.Compliance.Testing - 8.4.0.0 + 8.5.0.0 9.0.0.0 diff --git a/xml/System/Half.xml b/xml/System/Half.xml index 680cd6b5f37..1c978f72cdd 100644 --- a/xml/System/Half.xml +++ b/xml/System/Half.xml @@ -950,6 +950,102 @@ This computes `arctan(x) / π` in the interval `[-0.5, +0.5]`. is not of type . + + + + + + + + Method + + M:System.Numerics.IFloatingPoint`1.ConvertToInteger``1(`0) + + + System.Runtime + 9.0.0.0 + + + + [System.Runtime.CompilerServices.NullableContext(1)] + [<System.Runtime.CompilerServices.NullableContext(1)>] + + + + TInteger + + + + + + [System.Runtime.CompilerServices.Nullable(0)] + [<System.Runtime.CompilerServices.Nullable(0)>] + + + + System.Numerics.IBinaryInteger<TInteger> + + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + + + + + + + + + + Method + + M:System.Numerics.IFloatingPoint`1.ConvertToIntegerNative``1(`0) + + + System.Runtime + 9.0.0.0 + + + + [System.Runtime.CompilerServices.NullableContext(1)] + [<System.Runtime.CompilerServices.NullableContext(1)>] + + + + TInteger + + + + + + [System.Runtime.CompilerServices.Nullable(0)] + [<System.Runtime.CompilerServices.Nullable(0)>] + + + + System.Numerics.IBinaryInteger<TInteger> + + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + + diff --git a/xml/System/Single.xml b/xml/System/Single.xml index 78502726ed6..5ad760d6611 100644 --- a/xml/System/Single.xml +++ b/xml/System/Single.xml @@ -1185,6 +1185,114 @@ The following code example demonstrates generic and nongeneric versions of the < + + + + + + + + Method + + M:System.Numerics.IFloatingPoint`1.ConvertToInteger``1(`0) + + + System.Runtime + 9.0.0.0 + + + mscorlib + + + netstandard + + + + [System.Runtime.CompilerServices.NullableContext(1)] + [<System.Runtime.CompilerServices.NullableContext(1)>] + + + + TInteger + + + + + + [System.Runtime.CompilerServices.Nullable(0)] + [<System.Runtime.CompilerServices.Nullable(0)>] + + + + System.Numerics.IBinaryInteger<TInteger> + + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + + + + + + + + + + Method + + M:System.Numerics.IFloatingPoint`1.ConvertToIntegerNative``1(`0) + + + System.Runtime + 9.0.0.0 + + + mscorlib + + + netstandard + + + + [System.Runtime.CompilerServices.NullableContext(1)] + [<System.Runtime.CompilerServices.NullableContext(1)>] + + + + TInteger + + + + + + [System.Runtime.CompilerServices.Nullable(0)] + [<System.Runtime.CompilerServices.Nullable(0)>] + + + + System.Numerics.IBinaryInteger<TInteger> + + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + + diff --git a/xml/System/String.xml b/xml/System/String.xml index bd18229ed22..09e767433f7 100644 --- a/xml/System/String.xml +++ b/xml/System/String.xml @@ -3034,6 +3034,82 @@ The following example demonstrates the use of the + + + + + + + + Method + + System.Runtime + 9.0.0.0 + + + mscorlib + + + netstandard + + + System.String + + + + + + [System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 2 })] + [<System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 2 })>] + + + + + + To be added. + To be added. + To be added. + To be added. + + + + + + + + + + Method + + System.Runtime + 9.0.0.0 + + + mscorlib + + + netstandard + + + System.String + + + + + + [System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 2 })] + [<System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 2 })>] + + + + + + To be added. + To be added. + To be added. + To be added. + + @@ -5483,6 +5559,53 @@ The index of a format item is less than zero, or greater than or equal to the le Enumeration Format Strings + + + + + + + + Method + + System.Runtime + 9.0.0.0 + + + mscorlib + + + netstandard + + + System.String + + + + + + [System.Diagnostics.CodeAnalysis.StringSyntax("CompositeFormat")] + [<System.Diagnostics.CodeAnalysis.StringSyntax("CompositeFormat")>] + + + + + + + [System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 2 })] + [<System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 2 })>] + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + + @@ -5700,6 +5823,62 @@ The index of a format item is less than zero, or greater than or equal to the le Enumeration Format Strings + + + + + + + + Method + + System.Runtime + 9.0.0.0 + + + mscorlib + + + netstandard + + + System.String + + + + + + [System.Runtime.CompilerServices.Nullable(2)] + [<System.Runtime.CompilerServices.Nullable(2)>] + + + + + + + [System.Diagnostics.CodeAnalysis.StringSyntax("CompositeFormat")] + [<System.Diagnostics.CodeAnalysis.StringSyntax("CompositeFormat")>] + + + + + + + [System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 2 })] + [<System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 2 })>] + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + + @@ -8588,6 +8767,86 @@ The following example creates a string array, and then passes each element of th The length of the resulting string overflows the maximum allowed length (Int32.MaxValue). + + + + + + + + Method + + System.Runtime + 9.0.0.0 + + + mscorlib + + + netstandard + + + System.String + + + + + + + [System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 2 })] + [<System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 2 })>] + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + + + + + + + + + + Method + + System.Runtime + 9.0.0.0 + + + mscorlib + + + netstandard + + + System.String + + + + + + + [System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 2 })] + [<System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 2 })>] + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + + @@ -8853,6 +9112,100 @@ The following example uses the Sieve of Eratosthenes algorithm to calculate the + + + + + + + + Method + + System.Runtime + 9.0.0.0 + + + mscorlib + + + netstandard + + + System.String + + + + + + [System.Runtime.CompilerServices.Nullable(2)] + [<System.Runtime.CompilerServices.Nullable(2)>] + + + + + + + [System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 2 })] + [<System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 2 })>] + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + + + + + + + + + + Method + + System.Runtime + 9.0.0.0 + + + mscorlib + + + netstandard + + + System.String + + + + + + [System.Runtime.CompilerServices.Nullable(2)] + [<System.Runtime.CompilerServices.Nullable(2)>] + + + + + + + [System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 2 })] + [<System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 2 })>] + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + + @@ -11975,6 +12328,49 @@ The following example demonstrates how to extract individual words from a block + + + + + + + + Method + + System.Runtime + 9.0.0.0 + + + mscorlib + + + netstandard + + + + [System.Runtime.CompilerServices.NullableContext(0)] + [<System.Runtime.CompilerServices.NullableContext(0)>] + + + + System.String[] + + + [System.Runtime.CompilerServices.Nullable(1)] + [<System.Runtime.CompilerServices.Nullable(1)>] + + + + + + + + To be added. + To be added. + To be added. + To be added. + + @@ -15775,6 +16171,49 @@ The following example uses the `Trim(System.Char[])` method to remove space, ast + + + + + + + + Method + + System.Runtime + 9.0.0.0 + + + mscorlib + + + netstandard + + + + [System.Runtime.CompilerServices.NullableContext(0)] + [<System.Runtime.CompilerServices.NullableContext(0)>] + + + + System.String + + + [System.Runtime.CompilerServices.Nullable(1)] + [<System.Runtime.CompilerServices.Nullable(1)>] + + + + + + + + To be added. + To be added. + To be added. + To be added. + + @@ -15964,6 +16403,49 @@ The following example demonstrates how you can use the `TrimEnd(System.Char[])` + + + + + + + + Method + + System.Runtime + 9.0.0.0 + + + mscorlib + + + netstandard + + + + [System.Runtime.CompilerServices.NullableContext(0)] + [<System.Runtime.CompilerServices.NullableContext(0)>] + + + + System.String + + + [System.Runtime.CompilerServices.Nullable(1)] + [<System.Runtime.CompilerServices.Nullable(1)>] + + + + + + + + To be added. + To be added. + To be added. + To be added. + + @@ -16165,6 +16647,49 @@ The following example then illustrates a call to the `StripComments` method. + + + + + + + + Method + + System.Runtime + 9.0.0.0 + + + mscorlib + + + netstandard + + + + [System.Runtime.CompilerServices.NullableContext(0)] + [<System.Runtime.CompilerServices.NullableContext(0)>] + + + + System.String + + + [System.Runtime.CompilerServices.Nullable(1)] + [<System.Runtime.CompilerServices.Nullable(1)>] + + + + + + + + To be added. + To be added. + To be added. + To be added. + + diff --git a/xml/ns-Microsoft.Extensions.Caching.Hybrid.xml b/xml/ns-Microsoft.Extensions.Caching.Hybrid.xml new file mode 100644 index 00000000000..71090afec4e --- /dev/null +++ b/xml/ns-Microsoft.Extensions.Caching.Hybrid.xml @@ -0,0 +1,6 @@ + + + To be added. + To be added. + +